Commit 22f5b01f54f43b1c27d9594382e8a6ec58db5dcb
1 parent
5963267b
Fix documentation errors.
Showing
4 changed files
with
24 additions
and
7 deletions
manual/qpdf-manual.xml
| ... | ... | @@ -728,6 +728,18 @@ make |
| 728 | 728 | </listitem> |
| 729 | 729 | </varlistentry> |
| 730 | 730 | <varlistentry> |
| 731 | + <term><option>--static-aes-iv</option></term> | |
| 732 | + <listitem> | |
| 733 | + <para> | |
| 734 | + Causes use of a static initialization vector for AES-CBC. | |
| 735 | + This is intended for testing only so that output files can be | |
| 736 | + reproducible. Never use it for production files. This option | |
| 737 | + in particular is not secure since it significantly weakens the | |
| 738 | + encryption. | |
| 739 | + </para> | |
| 740 | + </listitem> | |
| 741 | + </varlistentry> | |
| 742 | + <varlistentry> | |
| 731 | 743 | <term><option>--no-original-object-ids</option></term> |
| 732 | 744 | <listitem> |
| 733 | 745 | <para> | ... | ... |
manual/qpdf.1.in
| ... | ... | @@ -5,7 +5,7 @@ |
| 5 | 5 | qpdf \- PDF transformation software |
| 6 | 6 | .SH SYNOPSIS |
| 7 | 7 | .B qpdf |
| 8 | -[ \fIoptions \fR] \fIinfilename outfilename\fR | |
| 8 | +[ \fIoptions \fR] \fIinfilename [ outfilename ]\fR | |
| 9 | 9 | .SH DESCRIPTION |
| 10 | 10 | The qpdf program is used to convert one PDF file to another equivalent |
| 11 | 11 | PDF file. It is capable of performing a variety of transformations | ... | ... |
manual/zlib-flate.1.in
| ... | ... | @@ -4,18 +4,23 @@ |
| 4 | 4 | .SH NAME |
| 5 | 5 | zlib-flate \- raw zlib compression program |
| 6 | 6 | .SH SYNOPSIS |
| 7 | -.B qpdf | |
| 7 | +.B zlib-flate | |
| 8 | 8 | \fI-compress | -uncompress\fR |
| 9 | 9 | .SH DESCRIPTION |
| 10 | 10 | The zlib-flate program is part of the qpdf package. |
| 11 | 11 | .PP |
| 12 | -The zlib-flate program standard from input and writes to standard | |
| 13 | -output either compressing or compressing its input using raw zlib | |
| 14 | -compression. This program is provided primarily as a debugging tool. | |
| 15 | -It can be used to uncompress or compress raw PDF streams. | |
| 12 | +The zlib-flate program reads from standard input and writes to | |
| 13 | +standard output either compressing or compressing its input using raw | |
| 14 | +zlib compression. It can be used to uncompress or compress raw PDF | |
| 15 | +streams or other data that is compressed with raw zlib compression. | |
| 16 | +This program is provided primarily as a debugging tool, though it | |
| 17 | +could be used for other purposes, such as being called from a script | |
| 18 | +that creates simple PDF files. | |
| 16 | 19 | .PP |
| 17 | 20 | This program should not be used as a general purpose compression |
| 18 | 21 | tool. Use something like gzip(1) instead. |
| 19 | 22 | .PP |
| 20 | 23 | For details about qpdf, please see the qpdf manual, which can be found |
| 21 | 24 | in @docdir@/qpdf-manual.html or @docdir@/qpdf-manual.pdf. |
| 25 | +.SH "SEE ALSO" | |
| 26 | +qpdf(1), gzip(1) | ... | ... |
qpdf/qpdf.cc
| ... | ... | @@ -29,7 +29,7 @@ static char const* whoami = 0; |
| 29 | 29 | |
| 30 | 30 | static char const* help = "\ |
| 31 | 31 | \n\ |
| 32 | -Usage: qpdf [ options ] infilename outfilename\n\ | |
| 32 | +Usage: qpdf [ options ] infilename [ outfilename ]\n\ | |
| 33 | 33 | \n\ |
| 34 | 34 | An option summary appears below. Please see the documentation for details.\n\ |
| 35 | 35 | \n\ | ... | ... |