Skip to content

Commit a6997e7

Browse files
committed
More documentation updates.
1 parent 5ff913e commit a6997e7

4 files changed

Lines changed: 28 additions & 9 deletions

File tree

doc/index.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
font-size: 16pt;
88
margin: 54pt 36pt;
99
}
10+
.center {
11+
text-align: center;
12+
}
1013
code, kbd, pre, tt {
1114
font-family: monospace;
1215
}
@@ -61,11 +64,13 @@
6164
}
6265
--></style>
6366
<title>Documentation for CUPS Library v3</title>
67+
<meta name='keywords' content='Programming, Internet Printing Protocol, File Formats'>
6468
</head>
6569
<body>
66-
<h1 style="text-align: center;"><img src="cups.png" width="64" height="64" alt="CUPS"><br>
70+
<h1 class="center"><img src="cups.png" width="64" height="64" alt="CUPS"><br>
6771
Documentation for CUPS Library v3</h1>
6872

73+
6974
<h2>Man Pages</h2>
7075
<ul>
7176
<li>ippeveprinter(1) - An IPP Everywhere Printer Application for CUPS: <a href="ippeveprinter.html">HTML</a></li>

doc/spec-ipp.html

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
font-size: 16pt;
1818
margin: 54pt 36pt;
1919
}
20+
.center {
21+
text-align: center;
22+
}
2023
code, kbd, pre, tt {
2124
font-family: monospace;
2225
}
@@ -67,7 +70,9 @@
6770
<meta name='keywords' content='Programming, Internet Printing Protocol'>
6871
</head>
6972
<body>
70-
<h1>CUPS Implementation of IPP</h1>
73+
<h1 class="center"><img src="cups.png" width="64" height="64" alt="CUPS"><br>
74+
CUPS Implementation of IPP</h1>
75+
<p class="center">Last Updated October 4, 2023</p>
7176

7277

7378
<h2 id='INTRODUCTION'>Introduction</h2>
@@ -113,13 +118,13 @@ <h3 id='IPP_URIS'>IPP URIs</h3>
113118
<dt><tt>SCHEME://HOSTNAME:PORT/admin</tt></dt>
114119
<dd>Used for all administrative operations (deprecated).</dd>
115120

116-
<dt><tt>SCHEME://HOSTNAME:PORT/classes/NAME</tt></dt>
121+
<dt><tt>SCHEME://HOSTNAME:PORT/classes/PRINTER-NAME</tt></dt>
117122
<dd>Specifies a printer class (deprecated).</dd>
118123

119-
<dt><tt>SCHEME://HOSTNAME:PORT/ipp/print/NAME</tt></dt>
124+
<dt><tt>SCHEME://HOSTNAME:PORT/ipp/print/PRINTER-NAME</tt></dt>
120125
<dd>Specifies a printer (deprecated).</dd>
121126

122-
<dt><tt>SCHEME://HOSTNAME:PORT/ipp/print/NAME/JOB-ID</tt></dt>
127+
<dt><tt>SCHEME://HOSTNAME:PORT/ipp/print/PRINTER-NAME/JOB-ID</tt></dt>
123128
<dd>Specifies a job (deprecated).</dd>
124129

125130
<dt><tt>SCHEME://HOSTNAME:PORT/ipp/system</tt></dt>
@@ -128,7 +133,7 @@ <h3 id='IPP_URIS'>IPP URIs</h3>
128133
<dt><tt>SCHEME://HOSTNAME:PORT/jobs/JOB-ID</tt></dt>
129134
<dd>Specifies a job (deprecated).</dd>
130135

131-
<dt><tt>SCHEME://HOSTNAME:PORT/printers/NAME</tt></dt>
136+
<dt><tt>SCHEME://HOSTNAME:PORT/printers/PRINTER-NAME</tt></dt>
132137
<dd>Specifies a printer (deprecated).</dd>
133138
</dl>
134139
<p>So a typical printer URI would be "ipp://foo.example.com/ipp/print/LaserJet".</p>

doc/spec-raster.html

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
font-size: 16pt;
1818
margin: 54pt 36pt;
1919
}
20+
.center {
21+
text-align: center;
22+
}
2023
code, kbd, pre, tt {
2124
font-family: monospace;
2225
}
@@ -71,14 +74,17 @@
7174
}
7275
--></style>
7376
<title>CUPS Raster Format</title>
77+
<meta name='keywords' content='Programming, File Formats'>
7478
</head>
7579
<body>
76-
<h1>CUPS Raster Format</h1>
80+
<h1 class="center"><img src="cups.png" width="64" height="64" alt="CUPS"><br>
81+
CUPS Raster Format</h1>
82+
<p class="center">Last Updated October 4, 2023</p>
7783

78-
<p>CUPS Raster files are device-dependent raster image files that contain a PostScript page device dictionary and device-dependent raster imagery for each page in the document. These files are used to transfer raster data from the PostScript and image file RIPs to device-dependent filters that convert the raster data to a printable format.</p>
7984

85+
<h2 id='INTRODUCTION'>Introduction</h2>
86+
<p>CUPS Raster files are device-dependent raster image files that contain a PostScript page device dictionary and device-dependent raster imagery for each page in the document. These files are used to transfer raster data from the PostScript and image file RIPs to device-dependent filters that convert the raster data to a printable format.</p>
8087
<p>CUPS 1.0 and 1.1 used version 1 of the raster format. CUPS 1.2 and later use version 2 (compressed) and version 3 (uncompressed) that are a superset of the version 1 raster format. All three versions of CUPS Raster are streamable formats, and applications using the CUPS Imaging API (the cupsRaster* functions) can read all formats without code changes.</p>
81-
8288
<p>The registered MIME media type for CUPS Raster files is <code>application/vnd.cups-raster</code>.</p>
8389

8490

man/man.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ body {
33
font-size: 16pt;
44
margin: 54pt 36pt;
55
}
6+
.center {
7+
text-align: center;
8+
}
69
code, kbd, pre, tt {
710
font-family: monospace;
811
}

0 commit comments

Comments
 (0)