Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

qpdf-htmldoc-11.2.0-1.1 RPM for noarch

From OpenSuSE Ports Tumbleweed for noarch

Name: qpdf-htmldoc Distribution: openSUSE:Factory:zSystems
Version: 11.2.0 Vendor: openSUSE
Release: 1.1 Build date: Mon Dec 5 18:12:42 2022
Group: Documentation/HTML Build host: s390zp25
Size: 6274128 Source RPM: qpdf-11.2.0-1.1.src.rpm
Packager: https://bugs.opensuse.org
Url: https://qpdf.sourceforge.io/
Summary: Documentation files for qpdf
This package contains the documentation for qpdf

Provides

Requires

License

Apache-2.0

Changelog

* Sat Dec 03 2022 Dirk Müller <dmueller@suse.com>
  - update to 11.2.0:
    * Move stream creation functions in the QPDF object where they belong. The ones
      in QPDFObjectHandle are not deprecated and will stick around.
    * Add some convenience methods to QPDFTokenizer::Token for testing token types.
      This is part of qpdf’s lexical layer and will not be needed by most developers.
    * Fix issue with missing symbols in the mingw build.
    * Fix major performance bug with the OpenSSL crypto provider. This bug was
      causing a 6x to 12x slowdown for encrypted files when OpenSSL 3 was in use.
      This includes the default Windows builds distributed with the qpdf release.
    * Fix obscure bug involving appended files that reuse an object number that was
      used as a cross reference stream in an earlier stage of the file.
* Wed Oct 12 2022 C J <c.j@tuta.io>
  - update to 11.1.1:
    * Bug fixes for #778 & #789
    * Code tidying and performance improvements
  - version 11.1.0: Build fixes
  - version 11.0.0:
    * Replacement of PointerHolder with std::shared_ptr
    * JSON output mode is now at version 2
    * Performance improvements, cleanup and refactoring.
    * CLI: breaking changes:
      The --show-encryption flag now provides encryption information
      even if a correct password is not supplied.
      Default json output version with --json has changed from 1 to 2.
      The --allow-weak-crypto flag is now mandatory when explicitly
      creating files with weak cryptographic algorithms.
    * API: breaking changes:
      Deprecate QPDFObject.hh for removal in qpdf 12.
      Pipeline::write use unsigned char const* instead of unsigned char*.
      Deprecated QPDFAcroFormDocumentHelper::copyFieldsFromForeignPage.
      The function passed to and called by QPDFJob::doIfVerbose now
      takes a Pipeline& argument instead of a std::ostream& argument.
      Remove pre qpdf-8.4.0 encryption API methods from QPDFWriter and
      their corresponding C API functions.
      QPDFObjectHandle::warnIfPossible no longer takes an optional
      argument to throw an exception if there is no description.
      QPDF objects can no longer be copied or assigned to.
    * CLI Enhancements
    * Library Enhancements:
      A new object QPDFLogger has been added.
      In QPDFObjectHandle, new methods insertItemAndGetNew,
      appendItemAndGetNew, and replaceKeyAndGetNew. New methods
      eraseItemAndGetOld, replaceKeyAndGetOld, and removeKeyAndGetOld.
      QPDFObjectHandle::isDestroyed method.
      QPDFObjectHandle::getOwningQPDF method now returns a null pointer
      when the owning QPDF object has been destroyed.
      QPDFObjectHandle::getQPDF is an alternative to
      QPDFObjectHandle::getOwningQPDF.
      Add method QPDFObjectHandle::isSameObjectAs.
      New factory method QPDF::create() returns a std::shared_ptr<QPDF>.
      New Pipeline methods have been added to reduce the amount of casting
      that is needed (write, writeCstr, writeString, operator <<)
      New Pipeline type Pl_OStream writes to a std::ostream.
      New Pipeline type Pl_String appends to a std::string.
      New Pipeline type Pl_Function.
      Methods have been added to QUtil for converting PDF timestamps and
      QPDFTime objects to ISO-8601 timestamps.
      Enhancement to JSON class.
      Add new functions to the C API for qpdfjob that use a qpdfjob_handle.
      QPDFJob::registerProgressReporter & qpdfjob_register_progress_reporter
      as a custom progress reporter with QPDFJob.
      New overloads: QPDFObjectHandle::StreamDataProvider::provideStreamData
      with QPDFObjGen const& instead of object ID and generation parameters.
      In QPDFPageObjectHelper, add a copy_if_fallback parameter to most of
      the page bounding box methods.
      Add a move constructor to the Buffer class.
    * Other changes:
      In JSON v1 mode: "objects" key now reflects the repaired pages
      tree if "pages" is specified.
      Chapter "Contributing to qpdf" was added to the documentation.
      The qpdf source code is now formatted automatically with clang-format.
  - drop obsolete patches:
    disable-newpdf-renderer.patch
    qpdf-10.6.3-grep-3.8.patch
* Thu Sep 08 2022 Andreas Stieger <andreas.stieger@gmx.de>
  - fix build with GNU grep 3.8 (boo#1203231)
    add qpdf-10.6.3-grep-3.8.patch
* Tue Jul 19 2022 Dirk Müller <dmueller@suse.com>
  - add disable-newpdf-renderer.patch (bsc#1201642)
* Sun Mar 20 2022 Dirk Müller <dmueller@suse.com>
  - update to 10.6.3:
    * Minor internal changes to assist with building in other
      environments: rename internal bits.icc to qpdf/bits_functions.hh
      (not part of public API), enforce reordering of header files to
      prevent jpeglib.h from interfering with other headers, remove an
      unused header that was accidentally added in 10.6.0 but never
      referenced by any code.
    * Make build work and tests work when NDEBUG is defined. This
      involved a few changes to some test files but no changes to any
      library code.
    * Bug fix in JSON parser: accept \/ in a string as valid input per
      JSON spec even though we don't translate / to \/ on output.
    * Recognize PDF strings explicitly marked as UTF-8 as allowed by
      the PDF 2.0 spec. Fixes #654.
    * Bug fix: when generating appearance streams, the font size was
      substituted incorrectly from /DA if Tf was absent or the number
      preceding Tf was out of range. Fixes #655.
* Wed Feb 23 2022 Bjørn Lie <bjorn.lie@gmail.com>
  - Update to version 10.6.2:
    * Recognize strings encoded as UTF-16LE as Unicode. The PDF spec
      only allows UTF-16BE, but most readers accept UTF16-LE as well.
    * Fix a regression in command-line argument parsing to restore a
      previously undocumented behavior that some people were relying
      on.
    * Fix one more problem with mapping Unicode to PDF doc encoding.
  - Drop fix-signedness-warning.patch for real, the patch was still
    present in obs.
* Mon Feb 14 2022 Dirk Müller <dmueller@suse.com>
  - update to 10.6.1:
    * All functionality previously available only from the qpdf CLI has been
      exposed to the library using a new QPDFJob API, which includes fluent
      interfaces as well as a JSON format that's equivalent to qpdf's
      command-line arguments.
    * Many new interfaces have been added to QPDFObjectHandle and the C API to
      allow more convient ways querying types and accessing object values in a
      more type-safe fashion.
    * qpdf --help has been revamped so that help is divided into categories, and
      help is available for each option
    * The Running qpdf section of the manual has been rewritten. The manual now
      includes an index of command-line arguments.
    * see https://qpdf.readthedocs.io/en/stable/release-notes.html
* Mon Feb 14 2022 Dirk Müller <dmueller@suse.com>
  - drop build-without-pdf.patch, fix-signedness-warning.patch (upstream)
* Mon Jan 10 2022 Dirk Müller <dmueller@suse.com>
  - add fix-signedness-warning.patch (build for aarch64)
* Tue Jan 04 2022 Dirk Müller <dmueller@suse.com>
  - update to 10.5.0:
    * Since qpdf version 8, using object accessor methods on an
      instance of ``QPDFObjectHandle`` may create warnings if the
      object is not of the expected type. These warnings now have an
      error code of ``qpdf_e_object`` instead of
      ``qpdf_e_damaged_pdf``. Also, comments have been added to
      :file:`QPDFObjectHandle.hh` to explain in more detail what the
      behavior is. See :ref:`object-accessors` for a more in-depth
      discussion.
    * Add ``Pl_Buffer::getMallocBuffer()`` to initialize a buffer
      allocated with ``malloc()`` for better cross-language
      interoperability.
    * Overhaul error handling for the object handle functions C API.
      Some rare error conditions that would previously have caused a
      crash are now trapped and reported, and the functions that
      generate them return fallback values. See comments in the
      ``ERROR HANDLING`` section of :file:`include/qpdf/qpdf-c.h` for
      details. In particular, exceptions thrown by the underlying C++
      code when calling object accessors are caught and converted into
      errors. The errors can be checked by calling ``qpdf_has_error``.
      Use ``qpdf_silence_errors`` to prevent the error from being
      written to stderr.
    * Add ``qpdf_get_last_string_length`` to the C API to get the
      length of the last string that was returned. This is needed to
      handle strings that contain embedded null characters.
    * Add ``qpdf_oh_is_initialized`` and
      ``qpdf_oh_new_uninitialized`` to the C API to make it possible
      to work with uninitialized objects.
    * Add ``qpdf_oh_new_object`` to the C API. This allows you to
      clone an object handle.
    * Add ``qpdf_get_object_by_id``, ``qpdf_make_indirect_object``,
      and ``qpdf_replace_object``, exposing the corresponding methods
      in ``QPDF`` and ``QPDFObjectHandle``.
  - add build-without-pdf.patch to fix documentation installation
  - enable documentation build, enable tests, enable werror
* Fri Nov 26 2021 Dirk Müller <dmueller@suse.com>
  - update to 10.4.0:
    * From the qpdf CLI, the --allow-weak-crypto is now required to suppress a
      warning when explicitly creating PDF files using RC4 encryption. While qpdf
      will always retain the ability to read and write such files, doing so will
      require explicit acknowledgment moving forward. For qpdf 10.4, this change
      only affects the command-line tool. Starting in qpdf 11, there will be
      small API changes to require explicit acknowledgment in those cases as
      well. For additional information, see Chapter 6, Weak Cryptography.
    * Fix potential bounds error when handling shell completion that could occur
      when given bogus input.
    * Properly handle overlay/underlay on completely empty pages
    * Fix crash that could occur under certain conditions when using --pages with
      files that had form fields.
    * Make QPDF::findPage functions public.
    * Add methods to Pl_Flate to be able to receive warnings on certain recoverable
      conditions.
    * Add an extra check to the library to detect when foreign objects are inserted
      directly (instead of using QPDF::copyForeignObject) at the time of insertion
      rather than when the file is written. Catching the error sooner makes it much
      easier to locate the incorrect code.
    * Improve diagnostics around parsing --pages command-line options
* Mon May 10 2021 Ismail Dönmez <ismail@i10z.com>
  - Update to version 10.3.2
    * See http://qpdf.sourceforge.net/files/qpdf-manual.html#ref.release-notes
      for the complete changelog.
* Fri Mar 12 2021 Ismail Dönmez <idonmez@suse.com>
  - Update to version 10.3.1
    * See http://qpdf.sourceforge.net/files/qpdf-manual.html#ref.release-notes
      for the complete changelog.
* Fri Mar 05 2021 Ismail Dönmez <idonmez@suse.com>
  - Update to version 10.3.0
    * See http://qpdf.sourceforge.net/files/qpdf-manual.html#ref.release-notes
      for the complete changelog.
* Thu Feb 25 2021 Ismail Dönmez <idonmez@suse.com>
  - Update to version 10.2.0
    * See http://qpdf.sourceforge.net/files/qpdf-manual.html#ref.release-notes
      for the complete changelog.
* Tue Jan 05 2021 Ismail Dönmez <idonmez@suse.com>
  - Update to version 10.1.0
    * See http://qpdf.sourceforge.net/files/qpdf-manual.html#ref.release-notes
      for the complete changelog.
* Sun Nov 22 2020 Ismail Dönmez <idonmez@suse.com>
  - Update to version 10.0.4
    * Fix a handful of integer overflows.
* Fri Oct 30 2020 Ismail Dönmez <idonmez@suse.com>
  - Update to version 10.0.3
    * Fixes a regression introduced in 10.0.2
* Wed Oct 28 2020 Ismail Dönmez <idonmez@suse.com>
  - Update to version 10.0.2
    * Bug fixes and performance improvements
    * See http://qpdf.sourceforge.net/files/qpdf-manual.html#ref.release-notes
      for a complete changelog.
* Fri Apr 10 2020 Ismail Dönmez <idonmez@suse.com>
  - Update to version 10.0.1
    * Fixes a regression in QPDFObjectHandle::getStreamData
* Mon Apr 06 2020 Ismail Dönmez <idonmez@suse.com>
  - Update to version 10.0.0
    * Several internal optimizations
    * OpenSSL support as alternative crypto provider
    * Bug fixes
    * See http://qpdf.sourceforge.net/files/qpdf-manual.html#ref.release-notes
      for the complete changelog.
  - Add BR on pkgconfig(openssl) to add support for OpenSSL crypto
    provider and enable with --enable-crypto-openssl.
  - Drop BR on pkgconfig(gnutls) now that we have OpenSSL support.
  - Pass --disable-implicit-crypto to configure to make sure weak
    crypto code is disabled.
* Mon Jan 27 2020 Ismail Dönmez <idonmez@suse.com>
  - Update to version 9.1.1
    * fix-qdf is rewritten in C++
    * Added options --is-encrypted and --requires-password for testing
      whether a file is encrypted or requires a password other than
      the supplied (or empty) password.
    * Added encrypt key to JSON options. With the exception of the
      reconstructed user password for older encryption formats,
      this provides the same information as --show-encryption but in
      a consistent, parseable format. See output of qpdf --json-help
      for details.
    * In QDF mode, be sure not to write more than one XRef stream to a
      file, even when --preserve-unreferenced is used. fix-qdf
      assumes that there is only one XRef stream, and that it appears
      at the end of the file.
    * When externalizing inline images, properly handle images whose
      color space is a reference to an object in the page's resource
      dictionary.
* Sun Nov 17 2019 Ismail Dönmez <idonmez@suse.com>
  - Update to version 9.1.0
    * Incorporate contribution from Masamichi Hosoda to properly handle
      signature dictionaries by not including them in object streams,
      formatting the Contents key has a hexadecimal string,
      and excluding the /Contents key from encryption and decryption.
    * Incorporate contribution from Masamichi Hosoda to provide new API
      calls for getting file-level information about input and output files,
      enabling certain operations on the files at the file level rather
      than the object level. New methods include QPDF::getXRefTable(),
      QPDFObjectHandle::getParsedOffset(),
      QPDFWriter::getRenumberedObjGen(QPDFObjGen),
      and QPDFWriter::getWrittenXRefTable().
    * Support build-time and runtime selectable crypto providers.
      This includes the addition of new classes QPDFCryptoProvider
      and QPDFCryptoImpl and the recognition of the QPDF_CRYPTO_PROVIDER
      environment variable. Crypto providers are described in depth
      in Section 2.3, “Crypto Providers”.
    * Addition of the --show-crypto option in support of selectable
      crypto providers, as described in Section 2.3, “Crypto Providers”.
    * Allow :even or :odd to be appended to numeric ranges for
      specification of the even or odd pages from among the pages
      specified in the range.
    * Add BR on pkgconfig(gnutls) to add support for GnuTLS for encryption
    operations.
* Mon Oct 14 2019 Ismail Dönmez <idonmez@suse.com>
  - Update to version 9.0.2
    * Fix the name of the temporary file used by --replace-input so
      that it doesn't require path splitting and works with paths
      include directories.
* Fri Sep 20 2019 Ismail Dönmez <idonmez@suse.com>
  - Update to version 9.0.1
    * Upstream fixed bsc#1150151, removed explicit -fsigned-chars
      from CXXFLAGS
    * See included ChangeLog file for the complete changelog
* Tue Sep 10 2019 Michael Gorse <mgorse@suse.com>
  - Add -fsigned-char to CXXFLAGS. Otherwise, tests fail on ppc64le,
    s390x, and aarch64 (bsc#1150151).
* Sun Sep 01 2019 Ismail Dönmez <idonmez@suse.com>
  - Update to version 9.0.0
    * See included ChangeLog file for the complete changelog
* Mon Apr 29 2019 Ismail Dönmez <idonmez@suse.com>
  - Update to version 8.4.1
    * See included ChangeLog file for the complete changelog
* Mon Feb 04 2019 Ismail Dönmez <idonmez@suse.com>
  - Update to version 8.4.0
    See included ChangeLog file for the complete changelog
  - Drop qpdf-data-loss-fix.patch, fixed upstream.
* Mon Jan 21 2019 Ismail Dönmez <idonmez@suse.com>
  - Update to version 8.3.0
    See included ChangeLog file for the complete changelog
  - Add qpdf-data-loss-fix.patch to fix
    https://github.com/qpdf/qpdf/issues/276

Files

/usr/share/doc/packages/qpdf/html
/usr/share/doc/packages/qpdf/html/_sources
/usr/share/doc/packages/qpdf/html/_sources/acknowledgement.rst.txt
/usr/share/doc/packages/qpdf/html/_sources/cli.rst.txt
/usr/share/doc/packages/qpdf/html/_sources/contributing.rst.txt
/usr/share/doc/packages/qpdf/html/_sources/design.rst.txt
/usr/share/doc/packages/qpdf/html/_sources/download.rst.txt
/usr/share/doc/packages/qpdf/html/_sources/encryption.rst.txt
/usr/share/doc/packages/qpdf/html/_sources/index.rst.txt
/usr/share/doc/packages/qpdf/html/_sources/installation.rst.txt
/usr/share/doc/packages/qpdf/html/_sources/json.rst.txt
/usr/share/doc/packages/qpdf/html/_sources/library.rst.txt
/usr/share/doc/packages/qpdf/html/_sources/license.rst.txt
/usr/share/doc/packages/qpdf/html/_sources/linearization.rst.txt
/usr/share/doc/packages/qpdf/html/_sources/object-streams.rst.txt
/usr/share/doc/packages/qpdf/html/_sources/overview.rst.txt
/usr/share/doc/packages/qpdf/html/_sources/packaging.rst.txt
/usr/share/doc/packages/qpdf/html/_sources/qdf.rst.txt
/usr/share/doc/packages/qpdf/html/_sources/qpdf-job.rst.txt
/usr/share/doc/packages/qpdf/html/_sources/release-notes.rst.txt
/usr/share/doc/packages/qpdf/html/_sources/weak-crypto.rst.txt
/usr/share/doc/packages/qpdf/html/_static
/usr/share/doc/packages/qpdf/html/_static/_sphinx_javascript_frameworks_compat.js
/usr/share/doc/packages/qpdf/html/_static/basic.css
/usr/share/doc/packages/qpdf/html/_static/css
/usr/share/doc/packages/qpdf/html/_static/css/badge_only.css
/usr/share/doc/packages/qpdf/html/_static/css/fonts
/usr/share/doc/packages/qpdf/html/_static/css/fonts/Roboto-Slab-Bold.woff
/usr/share/doc/packages/qpdf/html/_static/css/fonts/Roboto-Slab-Bold.woff2
/usr/share/doc/packages/qpdf/html/_static/css/fonts/Roboto-Slab-Regular.woff
/usr/share/doc/packages/qpdf/html/_static/css/fonts/Roboto-Slab-Regular.woff2
/usr/share/doc/packages/qpdf/html/_static/css/fonts/fontawesome-webfont.eot
/usr/share/doc/packages/qpdf/html/_static/css/fonts/fontawesome-webfont.svg
/usr/share/doc/packages/qpdf/html/_static/css/fonts/fontawesome-webfont.ttf
/usr/share/doc/packages/qpdf/html/_static/css/fonts/fontawesome-webfont.woff
/usr/share/doc/packages/qpdf/html/_static/css/fonts/fontawesome-webfont.woff2
/usr/share/doc/packages/qpdf/html/_static/css/fonts/lato-bold-italic.woff
/usr/share/doc/packages/qpdf/html/_static/css/fonts/lato-bold-italic.woff2
/usr/share/doc/packages/qpdf/html/_static/css/fonts/lato-bold.woff
/usr/share/doc/packages/qpdf/html/_static/css/fonts/lato-bold.woff2
/usr/share/doc/packages/qpdf/html/_static/css/fonts/lato-normal-italic.woff
/usr/share/doc/packages/qpdf/html/_static/css/fonts/lato-normal-italic.woff2
/usr/share/doc/packages/qpdf/html/_static/css/fonts/lato-normal.woff
/usr/share/doc/packages/qpdf/html/_static/css/fonts/lato-normal.woff2
/usr/share/doc/packages/qpdf/html/_static/css/theme.css
/usr/share/doc/packages/qpdf/html/_static/css/wraptable.css
/usr/share/doc/packages/qpdf/html/_static/doctools.js
/usr/share/doc/packages/qpdf/html/_static/documentation_options.js
/usr/share/doc/packages/qpdf/html/_static/file.png
/usr/share/doc/packages/qpdf/html/_static/jquery-3.6.0.js
/usr/share/doc/packages/qpdf/html/_static/jquery.js
/usr/share/doc/packages/qpdf/html/_static/js
/usr/share/doc/packages/qpdf/html/_static/js/badge_only.js
/usr/share/doc/packages/qpdf/html/_static/js/html5shiv-printshiv.min.js
/usr/share/doc/packages/qpdf/html/_static/js/html5shiv.min.js
/usr/share/doc/packages/qpdf/html/_static/js/theme.js
/usr/share/doc/packages/qpdf/html/_static/language_data.js
/usr/share/doc/packages/qpdf/html/_static/minus.png
/usr/share/doc/packages/qpdf/html/_static/plus.png
/usr/share/doc/packages/qpdf/html/_static/pygments.css
/usr/share/doc/packages/qpdf/html/_static/qpdf.svg
/usr/share/doc/packages/qpdf/html/_static/searchtools.js
/usr/share/doc/packages/qpdf/html/_static/sphinx_highlight.js
/usr/share/doc/packages/qpdf/html/_static/underscore-1.13.1.js
/usr/share/doc/packages/qpdf/html/_static/underscore.js
/usr/share/doc/packages/qpdf/html/acknowledgement.html
/usr/share/doc/packages/qpdf/html/cli.html
/usr/share/doc/packages/qpdf/html/contributing.html
/usr/share/doc/packages/qpdf/html/design.html
/usr/share/doc/packages/qpdf/html/download.html
/usr/share/doc/packages/qpdf/html/encryption.html
/usr/share/doc/packages/qpdf/html/genindex.html
/usr/share/doc/packages/qpdf/html/index.html
/usr/share/doc/packages/qpdf/html/installation.html
/usr/share/doc/packages/qpdf/html/json.html
/usr/share/doc/packages/qpdf/html/library.html
/usr/share/doc/packages/qpdf/html/license.html
/usr/share/doc/packages/qpdf/html/linearization.html
/usr/share/doc/packages/qpdf/html/object-streams.html
/usr/share/doc/packages/qpdf/html/objects.inv
/usr/share/doc/packages/qpdf/html/overview.html
/usr/share/doc/packages/qpdf/html/packaging.html
/usr/share/doc/packages/qpdf/html/qdf.html
/usr/share/doc/packages/qpdf/html/qpdf-job.html
/usr/share/doc/packages/qpdf/html/qpdf-options.html
/usr/share/doc/packages/qpdf/html/release-notes.html
/usr/share/doc/packages/qpdf/html/search.html
/usr/share/doc/packages/qpdf/html/searchindex.js
/usr/share/doc/packages/qpdf/html/weak-crypto.html
/usr/share/doc/packages/qpdf/singlehtml
/usr/share/doc/packages/qpdf/singlehtml/_static
/usr/share/doc/packages/qpdf/singlehtml/_static/_sphinx_javascript_frameworks_compat.js
/usr/share/doc/packages/qpdf/singlehtml/_static/basic.css
/usr/share/doc/packages/qpdf/singlehtml/_static/css
/usr/share/doc/packages/qpdf/singlehtml/_static/css/badge_only.css
/usr/share/doc/packages/qpdf/singlehtml/_static/css/fonts
/usr/share/doc/packages/qpdf/singlehtml/_static/css/fonts/Roboto-Slab-Bold.woff
/usr/share/doc/packages/qpdf/singlehtml/_static/css/fonts/Roboto-Slab-Bold.woff2
/usr/share/doc/packages/qpdf/singlehtml/_static/css/fonts/Roboto-Slab-Regular.woff
/usr/share/doc/packages/qpdf/singlehtml/_static/css/fonts/Roboto-Slab-Regular.woff2
/usr/share/doc/packages/qpdf/singlehtml/_static/css/fonts/fontawesome-webfont.eot
/usr/share/doc/packages/qpdf/singlehtml/_static/css/fonts/fontawesome-webfont.svg
/usr/share/doc/packages/qpdf/singlehtml/_static/css/fonts/fontawesome-webfont.ttf
/usr/share/doc/packages/qpdf/singlehtml/_static/css/fonts/fontawesome-webfont.woff
/usr/share/doc/packages/qpdf/singlehtml/_static/css/fonts/fontawesome-webfont.woff2
/usr/share/doc/packages/qpdf/singlehtml/_static/css/fonts/lato-bold-italic.woff
/usr/share/doc/packages/qpdf/singlehtml/_static/css/fonts/lato-bold-italic.woff2
/usr/share/doc/packages/qpdf/singlehtml/_static/css/fonts/lato-bold.woff
/usr/share/doc/packages/qpdf/singlehtml/_static/css/fonts/lato-bold.woff2
/usr/share/doc/packages/qpdf/singlehtml/_static/css/fonts/lato-normal-italic.woff
/usr/share/doc/packages/qpdf/singlehtml/_static/css/fonts/lato-normal-italic.woff2
/usr/share/doc/packages/qpdf/singlehtml/_static/css/fonts/lato-normal.woff
/usr/share/doc/packages/qpdf/singlehtml/_static/css/fonts/lato-normal.woff2
/usr/share/doc/packages/qpdf/singlehtml/_static/css/theme.css
/usr/share/doc/packages/qpdf/singlehtml/_static/css/wraptable.css
/usr/share/doc/packages/qpdf/singlehtml/_static/doctools.js
/usr/share/doc/packages/qpdf/singlehtml/_static/documentation_options.js
/usr/share/doc/packages/qpdf/singlehtml/_static/file.png
/usr/share/doc/packages/qpdf/singlehtml/_static/jquery-3.6.0.js
/usr/share/doc/packages/qpdf/singlehtml/_static/jquery.js
/usr/share/doc/packages/qpdf/singlehtml/_static/js
/usr/share/doc/packages/qpdf/singlehtml/_static/js/badge_only.js
/usr/share/doc/packages/qpdf/singlehtml/_static/js/html5shiv-printshiv.min.js
/usr/share/doc/packages/qpdf/singlehtml/_static/js/html5shiv.min.js
/usr/share/doc/packages/qpdf/singlehtml/_static/js/theme.js
/usr/share/doc/packages/qpdf/singlehtml/_static/language_data.js
/usr/share/doc/packages/qpdf/singlehtml/_static/minus.png
/usr/share/doc/packages/qpdf/singlehtml/_static/plus.png
/usr/share/doc/packages/qpdf/singlehtml/_static/pygments.css
/usr/share/doc/packages/qpdf/singlehtml/_static/qpdf.svg
/usr/share/doc/packages/qpdf/singlehtml/_static/searchtools.js
/usr/share/doc/packages/qpdf/singlehtml/_static/sphinx_highlight.js
/usr/share/doc/packages/qpdf/singlehtml/_static/underscore-1.13.1.js
/usr/share/doc/packages/qpdf/singlehtml/_static/underscore.js
/usr/share/doc/packages/qpdf/singlehtml/index.html
/usr/share/doc/packages/qpdf/singlehtml/objects.inv


Generated by rpm2html 1.8.1

Fabrice Bellet, Fri Mar 3 23:21:47 2023