Logo white

OpenSystemsDevelopment / qpdf

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Commits 4,691
  • Compare
  • Branches 1
  • Tags 0
  • qpdf
  • include
10 Nov, 2025
1 commit
  • Refactor: replace `BaseDictionary::replaceKey` method with `BaseHandle::replace`… ...
    44bd9db1
    … for clarity and consistency across dictionary operations.
    m-holger authored
    2025-11-10 14:25:45 +0000  
    Browse Dir »

08 Nov, 2025
3 commits
  • Refactor QPDFFormFieldObjectHelper: extract logic into `impl::FormField`, clean … ...
    6ad83cfd
    …up method implementations, and simplify member handling.
    m-holger authored
    2025-11-08 22:09:32 +0000  
    Browse Dir »
  • Refactor QPDFFormFieldObjectHelper: simplify Members handling by using std::shar… ...
    d33e5a9c
    …ed_ptr and forward declaration.
    m-holger authored
    2025-11-08 22:09:32 +0000  
    Browse Dir »
  • Add `nullify` method to `BaseHandle` for setting objects to a mutable null.
    edbaeff2
    m-holger authored
    2025-11-08 13:10:28 +0000  
    Browse Dir »

05 Nov, 2025
2 commits
  • Refactor `QPDFFileSpecObjectHelper`: simplify dictionary access, streamline stri… ...
    9cbc87e1
    …ng handling with `qpdf::String`, and clean up `Members` class implementation.
    m-holger authored
    2025-11-05 17:38:36 +0000  
    Browse Dir »
  • Refactor `QPDFEFStreamObjectHelper`: move `Members` class implementation to `.cc… ...
    72bda79c
    …` file and eliminate unneccessary creation of `Members` object.
    m-holger authored
    2025-11-05 13:54:16 +0000  
    Browse Dir »

04 Nov, 2025
1 commit
  • Refactor `QPDFObjectHandle`: replace `getObj` with `BaseHandle::obj_sp` for impr… ...
    906034d9
    …oved shared pointer handling, remove deprecated object methods, and update all references.
    m-holger authored
    2025-11-04 16:05:46 +0000  
    Browse Dir »

31 Oct, 2025
3 commits
  • Refactor `QPDF::validatePDFVersion`: relocate from `QPDF` to `Objects`, update u… ...
    ed2fb6a8
    …sages, and clean up `QPDF.hh`.
    m-holger authored
    2025-10-31 16:52:34 +0000  
    Browse Dir »
  • Refactor `QPDF` pattern-finding methods: relocate `findHeader`, `findStartxref`,… ...
    85b96841
    … and `findEndstream` to `Objects`, remove `QPDF::PatternFinder` class, and update related logic for improved encapsulation.
    m-holger authored
    2025-10-31 13:43:32 +0000  
    Browse Dir »
  • Refactor `QPDF` type conversion helpers: relocate methods to `qpdf::Doc::Common`… ...
    8ded7ff5
    …, replace direct calls with `QIntC` equivalents, and clean up `QPDF.hh`.
    m-holger authored
    2025-10-31 12:59:35 +0000  
    Browse Dir »

30 Oct, 2025
1 commit
  • Refactor `QPDFAcroFormDocumentHelper::traverseField`: add validation for `/Paren… ...
    5d0210a5
    …t` consistency to handle invalid entries, and improve loop detection logic.
    m-holger authored
    2025-10-30 02:36:31 +0000  
    Browse Dir »

28 Oct, 2025
1 commit
  • Refactor `QPDFAcroFormDocumentHelper`: simplify `traverseField`, remove `visited… ...
    9a3f2969
    …` parameter, update conditional checks, and streamline logic for field and annotation handling.
    
    Tighten validation of the PDF spec requirements that form fields form a tree and that widget annotations have a single parent by utilizing `field_to` and `annotation_to_field` in the loop detection check.
    m-holger authored
    2025-10-28 13:08:02 +0000  
    Browse Dir »

27 Oct, 2025
1 commit
  • Deprecate QPDF::compute_encryption_key
    cafcf6bd
    m-holger authored
    2025-10-27 19:39:53 +0000  
    Browse Dir »

22 Oct, 2025
1 commit
  • Refactor `QPDFWriter`: update `Writer` in `QPDFJob` usage to use `qpdf::Writer` … ...
    bc6e62b9
    …with encapsulated `Config`, replace `qcf` with `d_cfg` for improved consistency, and adjust related logic for maintainability.
    m-holger authored
    2025-10-22 15:38:20 +0100  
    Browse Dir »

16 Oct, 2025
1 commit
  • Refactor `Lin` linearization hints: rename and encapsulate data structures.
    dd3de389
    m-holger authored
    2025-10-16 00:56:21 +0100  
    Browse Dir »

15 Oct, 2025
2 commits
  • Refactor optimization structures: move `ObjUser` and `UpdateObjectMapsFrame` to … ...
    256f0633
    …`Lin`, encapsulate optimization data within `Lin`, update usage across the codebase, and streamline related logic in `QPDF_linearization`.
    m-holger authored
    2025-10-15 23:56:50 +0100  
    Browse Dir »
  • Refactor `QPDFJob` configuration: replace direct member access with `Doc::Config… ...
    089b817b
    …` methods, update usage across codebase, and streamline related logic.
    m-holger authored
    2025-10-15 22:13:40 +0100  
    Browse Dir »

14 Oct, 2025
1 commit
  • Refactor annotation flattening: move `flattenAnnotationsForPage` to `Pages` from… ...
    68754ee8
    … `QPDFPageDocumentHelper`, consolidate redundant logic, and streamline method calls.
    m-holger authored
    2025-10-14 14:04:03 +0100  
    Browse Dir »

13 Oct, 2025
1 commit
  • Refactor `QPDF`: move warnings and damaged PDF handling logic to `Common` class,… ...
    cc9facdb
    … streamline error handling, and improve encapsulation.
    m-holger authored
    2025-10-13 13:40:34 +0100  
    Browse Dir »

09 Oct, 2025
4 commits
  • Refactor stream copying: move `copyStreamData` logic into `Stream::copy_data_to`… ...
    19073b46
    … and streamline stream handling.
    m-holger authored
    2025-10-09 12:10:43 +0100  
    Browse Dir »
  • Refactor `ForeignStreamData`: move to `Streams::Copier::Data`, improve encapsula… ...
    0889eba4
    …tion, and streamline stream registration logic.
    m-holger authored
    2025-10-09 11:29:50 +0100  
    Browse Dir »
  • Remove `pipeForeignStreamData`: inline logic into `Streams::Copier::pipeStreamDa… ...
    95424109
    …ta`and streamline foreign stream handling.
    m-holger authored
    2025-10-09 11:08:30 +0100  
    Browse Dir »
  • Refactor `CopiedStreamDataProvider`: move functionality to `Streams::Copier`, im… ...
    eadfa25b
    …prove encapsulation, and streamline stream data handling.
    m-holger authored
    2025-10-09 10:39:19 +0100  
    Browse Dir »

06 Oct, 2025
10 commits
  • Refactor `ObjCopier` into `Objects::Foreign::Copier`: improve encapsulation, str… ...
    c5bf0fdf
    …eamline foreign object handling, and simplify method structure.
    m-holger authored
    2025-10-06 16:11:24 +0100  
    Browse Dir »
  • Refactor `reserveObjects`: move logic to `ObjCopier::reserve_objects`, simplify … ...
    242ddf15
    …object reservation, and streamline method usage.
    m-holger authored
    2025-10-06 15:38:11 +0100  
    Browse Dir »
  • Refactor `replaceForeignIndirectObjects`: move logic to `ObjCopier::replace_indi… ...
    decd3650
    …rect_object`, simplify object replacement, and streamline method usage.
    m-holger authored
    2025-10-06 15:36:11 +0100  
    Browse Dir »
  • Refactor `CopiedStreamDataProvider` and `pipeForeignStreamData`: remove redundan… ...
    43f2fa1d
    …t usage of `std::shared_ptr`, simplify stream data management, and enforce `final` specifier.
    m-holger authored
    2025-10-06 15:28:55 +0100  
    Browse Dir »
  • Refactor `ObjectHandle` to introduce `offset()` method ...
    38f45c73
    Replace `getParsedOffset()` with the new `offset()` method across `QPDFObjectHandle` and related classes for consistent offset handling. Simplify logic and remove redundant `getParsedOffset()` implementation.
    m-holger authored
    2025-10-06 15:23:44 +0100  
    Browse Dir »
  • Move `getXRefTableInternal` to `QPDF::Doc::Objects` and update references for im… ...
    9c3deb93
    …proved encapsulation.
    m-holger authored
    2025-10-06 14:59:11 +0100  
    Browse Dir »
  • Create `Linearization` class in `QPDF::Doc` and update references ...
    a8e30477
    Encapsulate linearization-related logic in `QPDF::Doc::Linearization`. Refactor methods, relocate implementations, and update all references accordingly to streamline and centralize linearization functionality.
    m-holger authored
    2025-10-06 14:00:24 +0100  
    Browse Dir »
  • Create `Pages` class in `QPDF::Doc` and update references ...
    0f07ecdd
    Relocate `Pages` methods to `QPDF::Doc` for improved encapsulation of page-related logic. Adjust all references and methods to use the new placement.
    m-holger authored
    2025-10-06 13:51:46 +0100  
    Browse Dir »
  • Rename `pages` to `page_dh` in `QPDF::Doc` and update references ...
    50f21ae7
    Refactor `pages` method and related members in `QPDF::Doc` to `page_dh`. Update all associated references to reflect the change.
    m-holger authored
    2025-10-06 13:42:45 +0100  
    Browse Dir »
  • Move `Objects` to `QPDF::Doc` and update references ...
    e0ebf44f
    Relocate `Objects` to `QPDF::Doc` for improved encapsulation of object-related logic. Adjust all relevant methods and references to use the new placement.
    m-holger authored
    2025-10-06 13:35:10 +0100  
    Browse Dir »

05 Oct, 2025
7 commits
  • Refactor `QPDF::EncryptionData`: move to private `QPDF::Doc::Encryption` and update references.
    d6ce922e
    m-holger authored
    2025-10-05 12:46:17 +0100  
    Browse Dir »
  • Move `reconstructed_xref` to `QPDF::Doc` and update references ...
    070b38bf
    Relocate `reconstructed_xref` to `QPDF::Doc` for improved encapsulation of cross-reference reconstruction state. Adjust all references to use the updated placement.
    m-holger authored
    2025-10-05 12:25:25 +0100  
    Browse Dir »
  • Move `StreamCopier` to `QPDF::Doc` and update references ...
    0885a160
    Relocate `StreamCopier` to `QPDF::Doc` for improved encapsulation of stream copying functionality. Adjust all references to use the updated placement.
    m-holger authored
    2025-10-05 12:16:06 +0100  
    Browse Dir »
  • Move `JobSetter` to `QPDF::Doc` and update references ...
    d67ad8b7
    Relocate `JobSetter` to `QPDF::Doc` for improved encapsulation of job-related logic. Adjust all references to use the new placement.
    m-holger authored
    2025-10-05 12:09:58 +0100  
    Browse Dir »
  • Move `Writer` to `QPDF::Doc` and update references ...
    c030d31c
    Relocate `Writer` to `QPDF::Doc` for better encapsulation of writer-related logic. Adjust all references to use the new placement.
    m-holger authored
    2025-10-05 12:06:29 +0100  
    Browse Dir »
  • Move `Pipe` to `QPDF::Doc::Streams` and update references ...
    09d758b0
    Relocate `Pipe` functionality to `QPDF::Doc::Streams` for improved encapsulation of stream-related logic. Adjust all references to use the new placement.
    m-holger authored
    2025-10-05 12:00:00 +0100  
    Browse Dir »
  • Move `Resolver` to `QPDF::Doc` and update references ...
    5e292cff
    Relocate `Resolver` to `QPDF::Doc` for improved encapsulation of resolution logic. Adjust all references accordingly to use the new placement.
    m-holger authored
    2025-10-05 11:53:43 +0100  
    Browse Dir »