From: Michael Sweet Date: Fri, 21 Oct 2016 03:48:50 +0000 (-0400) Subject: Update API documentation (PR #4896). X-Git-Tag: v2.2.2~59 X-Git-Url: http://git.ipfire.org/?p=thirdparty%2Fcups.git;a=commitdiff_plain;h=8b3724f85fcf5473deb021630beeb92390ebe534;hp=c7505715caa5f6752a01a408c03388f0bb80075e Update API documentation (PR #4896). --- diff --git a/CHANGES.txt b/CHANGES.txt index e2bd1ce0a..f6288d065 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -7,7 +7,8 @@ CHANGES IN CUPS V2.2.2 (Issue #4899) - Fixed builds on systems without a working poll() implementation (Issue #4905) - - Updated localizations (PR #4895, PR #4904) + - Updated documentation (PR #4896) + - Updated localizations (PR #4895, PR #4904, PR #4908) CHANGES IN CUPS V2.2.1 diff --git a/cups/api-filter.shtml b/cups/api-filter.shtml index 1b8f6f3cf..bd90333cb 100644 --- a/cups/api-filter.shtml +++ b/cups/api-filter.shtml @@ -94,7 +94,7 @@ being printed.

Filters and backends may also receive SIGPIPE when an upstream or downstream filter/backend exits with a non-zero status. Developers should generally ignore SIGPIPE at the beginning of main() with the following function call:

-#include <signal.h>>
+#include <signal.h>
 
 ...
 
diff --git a/doc/help/api-filter.html b/doc/help/api-filter.html
index 300c3a9ca..420dcb8a6 100644
--- a/doc/help/api-filter.html
+++ b/doc/help/api-filter.html
@@ -533,7 +533,7 @@ being printed.

Filters and backends may also receive SIGPIPE when an upstream or downstream filter/backend exits with a non-zero status. Developers should generally ignore SIGPIPE at the beginning of main() with the following function call:

-#include <signal.h>>
+#include <signal.h>
 
 ...
 
diff --git a/doc/help/api-httpipp.html b/doc/help/api-httpipp.html
index f67736cf7..a19850e7a 100644
--- a/doc/help/api-httpipp.html
+++ b/doc/help/api-httpipp.html
@@ -6337,6 +6337,8 @@ are server-oriented...

Acknowledge-Job
IPP_OP_ACTIVATE_PRINTER
Start a printer
+
IPP_OP_ADD_DOCUMENT_IMAGES
+
Add-Document-Images
IPP_OP_CANCEL_CURRENT_JOB
Cancel the current job
IPP_OP_CANCEL_DOCUMENT
@@ -6468,8 +6470,6 @@ are server-oriented...

Schedule a job to print after another
IPP_OP_SEND_DOCUMENT
Add a file to a job
-
IPP_OP_SEND_HARDCOPY_DOCUMENT
-
Send-Hardcopy-Document
IPP_OP_SEND_URI
Add a URL to a job
IPP_OP_SET_DOCUMENT_ATTRIBUTES
diff --git a/doc/help/api-raster.html b/doc/help/api-raster.html index 151285e2d..28d1708ad 100644 --- a/doc/help/api-raster.html +++ b/doc/help/api-raster.html @@ -480,7 +480,7 @@ function. For example, to read raster data from the standard input, open file descriptor 0:

-#include <cups/raster.h>>
+#include <cups/raster.h>
 
 cups_raster_t *ras = cupsRasterOpen(0, CUPS_RASTER_READ);
 
@@ -507,7 +507,7 @@ hardware resolution, and so forth used for the page.

function:

-#include <cups/raster.h>>
+#include <cups/raster.h>
 
 cups_raster_t *ras = cupsRasterOpen(0, CUPS_RASTER_READ);
 cups_page_header2_t header;
@@ -530,7 +530,7 @@ function. A for loop is normally used to read the page one line
 at a time:

-#include <cups/raster.h>>
+#include <cups/raster.h>
 
 cups_raster_t *ras = cupsRasterOpen(0, CUPS_RASTER_READ);
 cups_page_header2_t header;
diff --git a/filter/api-raster.shtml b/filter/api-raster.shtml
index 35996f6fa..6d458a2ed 100644
--- a/filter/api-raster.shtml
+++ b/filter/api-raster.shtml
@@ -34,7 +34,7 @@ function. For example, to read raster data from the standard input, open
 file descriptor 0:

-#include <cups/raster.h>>
+#include <cups/raster.h>
 
 cups_raster_t *ras = cupsRasterOpen(0, CUPS_RASTER_READ);
 
@@ -61,7 +61,7 @@ hardware resolution, and so forth used for the page.

function:

-#include <cups/raster.h>>
+#include <cups/raster.h>
 
 cups_raster_t *ras = cupsRasterOpen(0, CUPS_RASTER_READ);
 cups_page_header2_t header;
@@ -84,7 +84,7 @@ function. A for loop is normally used to read the page one line
 at a time:

-#include <cups/raster.h>>
+#include <cups/raster.h>
 
 cups_raster_t *ras = cupsRasterOpen(0, CUPS_RASTER_READ);
 cups_page_header2_t header;