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
08 Feb, 2022
5 commits
  • Add PDFVersion class
    8082af09
    Jay Berkenbilt authored
    2022-02-08 12:34:14 -0500  
    Browse Dir »
  • Revert an incorrect correction
    014dcb02
    Jay Berkenbilt authored
    2022-02-08 12:34:14 -0500  
    Browse Dir »
  • WHITESPACE ONLY -- expand tabs in source code ...
    cb769c62
    This comment expands all tabs using an 8-character tab-width. You
    should ignore this commit when using git blame or use git blame -w.
    
    In the early days, I used to use tabs where possible for indentation,
    since emacs did this automatically. In recent years, I have switched
    to only using spaces, which means qpdf source code has been a mixture
    of spaces and tabs. I have avoided cleaning this up because of not
    wanting gratuitous whitespaces change to cloud the output of git
    blame, but I changed my mind after discussing with users who view qpdf
    source code in editors/IDEs that have other tab widths by default and
    in light of the fact that I am planning to start applying automatic
    code formatting soon.
    Jay Berkenbilt authored
    2022-02-08 11:51:15 -0500  
    Browse Dir »
  • Fix doc typos
    716381f6
    m-holger authored
    2022-02-08 11:50:58 -0500  
    Browse Dir »
  • Clarify qpdf's representation of names in the API ...
    68e4aec0
    Clarify that names are to appear in canonical form with PDF escaping
    resolved when used in non-parsing QPDFObjectHandle APIs and their C
    API counterparts. See https://github.com/qpdf/qpdf/discussions/625.
    Jay Berkenbilt authored
    2022-02-08 09:09:23 -0500  
    Browse Dir »

07 Feb, 2022
5 commits
  • Update for clean compile with POINTERHOLDER_TRANSITION=2
    c62e8e2b
    Jay Berkenbilt authored
    2022-02-07 17:38:22 -0500  
    Browse Dir »
  • Replace PointerHolder arrays with shared_ptr arrays where possible ...
    40f1946d
    Replace PointerHolder arrays wherever it can be done without breaking ABI.
    Jay Berkenbilt authored
    2022-02-07 17:38:22 -0500  
    Browse Dir »
  • Rework PointerHolder transition to make it smoother ...
    dd4f3022
    * Don't surprise people with deprecation warnings
    * Provide detailed instructions and support for the transition
    Jay Berkenbilt authored
    2022-02-07 17:38:20 -0500  
    Browse Dir »
  • Add QUtil::make_shared_array to help with PointerHolder transition
    df2f5c6a
    Jay Berkenbilt authored
    2022-02-07 14:08:46 -0500  
    Browse Dir »
  • Add getBufferSharedPointer() to Pl_Buffer and QPDFWriter
    cfaae47d
    Jay Berkenbilt authored
    2022-02-07 12:53:28 -0500  
    Browse Dir »

06 Feb, 2022
3 commits
  • Comment, ChangeLog, release note for new contribution
    6a2456f7
    Jay Berkenbilt authored
    2022-02-06 11:27:02 -0500  
    Browse Dir »
  • C-API expose QPDFObjectHandle::getKeyIfDict
    5901fcad
    m-holger authored
    2022-02-06 11:21:15 -0500  
    Browse Dir »
  • Add method QPDFObjectHandle::getKeyIfDict
    83710603
    m-holger authored
    2022-02-06 11:21:15 -0500  
    Browse Dir »

05 Feb, 2022
7 commits
  • C-API expose QPDFObjectHandle::getValueAs... accessors
    2ed5f49a
    m-holger authored
    2022-02-05 19:40:30 -0500  
    Browse Dir »
  • Stop using std::iterator (fixes #618) ...
    af3f74de
    Create the typedefs directly in iterators rather than deriving from
    the deprecated std::iterator class.
    Jay Berkenbilt authored
    2022-02-05 11:29:25 -0500  
    Browse Dir »
  • Add operator ""_qpdf for creating QPDFObjectHandle literals
    7fb22740
    Jay Berkenbilt authored
    2022-02-05 11:29:25 -0500  
    Browse Dir »
  • Add qpdf_empty_pdf to C API
    b48a0ff0
    Jay Berkenbilt authored
    2022-02-05 11:29:25 -0500  
    Browse Dir »
  • API contract: qpdf_get_qpdf_version() returns a static
    8cf7f2bf
    Jay Berkenbilt authored
    2022-02-05 11:24:56 -0500  
    Browse Dir »
  • Improve use of std::unique_ptr ...
    5f3f7882
    * Use unique_ptr in place of shared_ptr in some cases
    * unique_ptr for arrays does not require a custom deleter
    * use std::make_unique (c++14) where possible
    Jay Berkenbilt authored
    2022-02-05 11:24:56 -0500  
    Browse Dir »
  • Add new QPDFObjectHandle::getValueAs... accessors
    e58b1174
    m-holger authored
    2022-02-05 11:24:35 -0500  
    Browse Dir »

04 Feb, 2022
7 commits
  • Update copyright for 2022
    cfaa2de8
    Jay Berkenbilt authored
    2022-02-04 16:36:22 -0500  
    Browse Dir »
  • Add qpdf version macros to qpdf/DLL.h
    8eab616d
    Jay Berkenbilt authored
    2022-02-04 13:41:01 -0500  
    Browse Dir »
  • Replace containers of PointerHolder with containers of std::shared_ptr ...
    abc300f0
    None of these are in the public API.
    Jay Berkenbilt authored
    2022-02-04 13:12:37 -0500  
    Browse Dir »
  • JSON: use std::shared_ptr internally
    f0c2e0ef
    Jay Berkenbilt authored
    2022-02-04 13:12:37 -0500  
    Browse Dir »
  • PointerHolder: deprecate getPointer() and getRefcount() ...
    9044a240
    Use get() and use_count() instead. Add #define
    NO_POINTERHOLDER_DEPRECATION to remove deprecation markers for these
    only.
    
    This commit also removes all deprecated PointerHolder API calls from
    qpdf's code except in PointerHolder's test suite, which must continue
    to test the deprecated APIs.
    Jay Berkenbilt authored
    2022-02-04 13:12:37 -0500  
    Browse Dir »
  • PointerHolder: add get() and use_count() for forward compatibility ...
    f727bc94
    PointerHolder will be replaced with shared_ptr, so let people start
    moving.
    Jay Berkenbilt authored
    2022-02-04 13:12:37 -0500  
    Browse Dir »
  • C-API add two binary UTF8 funtions ...
    95e7d36b
    add qpdf_oh_new_binary_unicode_string and qpdf_oh_get_binary_utf8_value
    m-holger authored
    2022-02-04 13:10:51 -0500  
    Browse Dir »

02 Feb, 2022
1 commit
  • Fix some doc typos
    e813176b
    m-holger authored
    2022-02-02 14:07:32 -0600  
    Browse Dir »

01 Feb, 2022
7 commits
  • QPDFJob: let initializeFromArgv just take argv, not argc ...
    42bff9f4
    Let argv be a null-terminated array. There is already code that
    assumes this, and it makes it easier to construct the arguments.
    Jay Berkenbilt authored
    2022-02-01 13:50:58 -0500  
    Browse Dir »
  • Finish QPDFJob examples and add tests for them
    a0d9d992
    Jay Berkenbilt authored
    2022-02-01 13:50:58 -0500  
    Browse Dir »
  • Make QPDFArgParser accept const argv ...
    b02d37bc
    This makes it much more convention to use the initializeFromArgv
    functions since you can use string literals.
    Jay Berkenbilt authored
    2022-02-01 13:50:58 -0500  
    Browse Dir »
  • Add qpdfjob-c.h -- simple C API around parts of QPDFJob
    bc4e2320
    Jay Berkenbilt authored
    2022-02-01 09:04:55 -0500  
    Browse Dir »
  • Move more code from qpdf.cc into QPDFJob
    b42f3e1d
    Jay Berkenbilt authored
    2022-02-01 09:04:55 -0500  
    Browse Dir »
  • QPDFJob: documentation
    cc5485da
    Jay Berkenbilt authored
    2022-02-01 09:04:55 -0500  
    Browse Dir »
  • generate_auto_job: generate overloaded config decls for optional ...
    5a7bb347
    For optional parameter/choices, generate an overloaded config method
    that takes no arguments. This makes it possible to convert from a bare
    argument to one that takes an optional parameter without breaking
    binary compatibility.
    Jay Berkenbilt authored
    2022-02-01 09:04:55 -0500  
    Browse Dir »

31 Jan, 2022
5 commits
  • Add optional version to --json
    e3506253
    Jay Berkenbilt authored
    2022-01-31 15:57:45 -0500  
    Browse Dir »
  • Change filename or path to file in json and QPDFJob ...
    caa00556
    Use "file" consistently for specifying a file path. We use "filename"
    when adding attachments for a completely different purpose.
    Jay Berkenbilt authored
    2022-01-31 15:57:45 -0500  
    Browse Dir »
  • QPDFJob: rename function that returns job schema
    f99e0af4
    Jay Berkenbilt authored
    2022-01-31 15:57:45 -0500  
    Browse Dir »
  • QPDFJob: partial mode for initializeFromJson
    1355d95d
    Jay Berkenbilt authored
    2022-01-31 15:57:45 -0500  
    Browse Dir »
  • Keep JSONHandler and QPDFArgParser private ...
    28278e27
    Since the functionality of argument parsing has moved into QPDFJob,
    these classes no longer need to be public. Their methods still have to
    be in the library's binary interface so they can be tested in libtests.
    Jay Berkenbilt authored
    2022-01-31 15:57:45 -0500  
    Browse Dir »