Commit e9887aaa9d6a0f0aa81e1cf5a4700bac4d2b5f23

Authored by m-holger
1 parent c7a47caf

Update various 'QPDF's to 'qpdf'

NOTICE.md
1   -QPDF is copyright (c) 2005-2021 Jay Berkenbilt, 2022-2025 Jay Berkenbilt and Manfred Holger
  1 +qpdf is copyright (c) 2005-2021 Jay Berkenbilt, 2022-2025 Jay Berkenbilt and Manfred Holger
2 2  
3 3 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
4 4  
... ...
README.md
... ... @@ -10,7 +10,7 @@ render PDFs or perform text extraction, and it does not contain higher-level int
10 10 It is a low-level tool for working with the structure of PDF files and can be a valuable tool for anyone who wants to do
11 11 programmatic or command-line-based manipulation of PDF files.
12 12  
13   -The [qpdf Manual](https://qpdf.readthedocs.io) is hosted online at https://qpdf.readthedocs.io. The project website
  13 +The [qpdf manual](https://qpdf.readthedocs.io) is hosted online at https://qpdf.readthedocs.io. The project website
14 14 is https://qpdf.sourceforge.io. The source code repository is hosted at GitHub: https://github.com/qpdf/qpdf.
15 15  
16 16 # Verifying Distributions
... ...
appimage/qpdf.appdata.xml
... ... @@ -4,29 +4,29 @@
4 4 <id>org.QPDF.qpdf.desktop</id>
5 5 <metadata_license>MIT</metadata_license>
6 6 <project_license>Apache-2.0</project_license>
7   - <name>QPDF</name>
  7 + <name>qpdf</name>
8 8 <summary>Structural, content-preserving transformations on PDF files</summary>
9 9 <description>
10   - <p> QPDF is a command-line program that does structural, content-preserving transformations on PDF files.
  10 + <p> qpdf is a command-line program that does structural, content-preserving transformations on PDF files.
11 11 It could have been called something like pdf-to-pdf.
12 12 It also provides many useful capabilities to developers of PDF-producing software or for people
13 13 who just want to look at the innards of a PDF file to learn more about how they work.</p>
14   - <p> QPDF is capable of creating linearized (also known as web-optimized) files and encrypted files.
  14 + <p> qpdf is capable of creating linearized (also known as web-optimized) files and encrypted files.
15 15 It is also capable of converting PDF files with object streams (also known as compressed objects)
16 16 to files with no compressed objects or to generate object streams from files that don't have them
17   - (or even those that already do). QPDF also supports a special mode designed to allow you to edit
  17 + (or even those that already do). qpdf also supports a special mode designed to allow you to edit
18 18 the content of PDF files in a text editor. For more details, please see the documentation links
19 19 below.</p>
20   - <p> QPDF includes support for merging and splitting PDFs through the ability to copy objects from one PDF
21   - file into another and to manipulate the list of pages in a PDF file. The QPDF library also makes
  20 + <p> qpdf includes support for merging and splitting PDFs through the ability to copy objects from one PDF
  21 + file into another and to manipulate the list of pages in a PDF file. The qpdf library also makes
22 22 it possible for you to create PDF files from scratch. In this mode, you are responsible for
23   - supplying all the contents of the file, while the QPDF library takes care off all the syntactical
  23 + supplying all the contents of the file, while the qpdf library takes care off all the syntactical
24 24 representation of the objects, creation of cross references tables and, if you use them, object
25 25 streams, encryption, linearization, and other syntactic details.</p>
26   - <p>QPDF is not a PDF content creation library, a PDF viewer, or a program capable of converting PDF into
27   - other formats. In particular, QPDF knows nothing about the semantics of PDF content streams.
  26 + <p>qpdf is not a PDF content creation library, a PDF viewer, or a program capable of converting PDF into
  27 + other formats. In particular, qpdf knows nothing about the semantics of PDF content streams.
28 28 If you are looking for something that can do that, you should look elsewhere.
29   - However, once you have a valid PDF file, QPDF can be used to transform that file in ways perhaps
  29 + However, once you have a valid PDF file, qpdf can be used to transform that file in ways perhaps
30 30 your original PDF creation can't handle. For example, programs generate simple PDF files but
31 31 can't password-protect them, web-optimize them, or perform other transformations of that type.</p>
32 32 </description>
... ...
libqpdf/QPDFJob_argv.cc
... ... @@ -117,7 +117,8 @@ ArgParser::argCopyright()
117 117 << "\n"
118 118 << "Copyright (c) 2005-2021 Jay Berkenbilt\n"
119 119 << "Copyright (c) 2022-2025 Jay Berkenbilt and Manfred Holger\n"
120   - << "QPDF is licensed under the Apache License, Version 2.0 (the \"License\");\n"
  120 + << "\n"
  121 + << "qpdf is licensed under the Apache License, Version 2.0 (the \"License\");\n"
121 122 << "you may not use this file except in compliance with the License.\n"
122 123 << "You may obtain a copy of the License at\n"
123 124 << "\n"
... ...
manual/conf.py
... ... @@ -12,7 +12,7 @@ import sys
12 12  
13 13 sys.path.append(os.path.abspath("./_ext"))
14 14  
15   -project = 'QPDF'
  15 +project = 'qpdf'
16 16 copyright = '2005-2021 Jay Berkenbilt, 2022-2025 Jay Berkenbilt and Manfred Holger'
17 17 author = 'Jay Berkenbilt'
18 18 here = os.path.dirname(os.path.realpath(__file__))
... ...