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
13 Dec, 2021
17 commits
  • Remove docbook manual and associated files
    ed6fe012
    Jay Berkenbilt authored
    2021-12-13 11:20:14 -0500  
    Browse Code »
  • Minor doc cleanup, update spelling checker
    39779dd3
    Jay Berkenbilt authored
    2021-12-13 11:20:14 -0500  
    Browse Code »
  • Doc: update requirements for building the documentation
    948c4546
    Jay Berkenbilt authored
    2021-12-13 11:20:14 -0500  
    Browse Code »
  • Remove "Indices and tables" ...
    aaea245a
    This was inserted by sphinx-quickstart, but it doesn't do anything for us.
    Jay Berkenbilt authored
    2021-12-13 11:20:14 -0500  
    Browse Code »
  • Explicitly mark perl codeblock as such
    e10e7874
    Jay Berkenbilt authored
    2021-12-13 11:20:14 -0500  
    Browse Code »
  • Replace xref links to :ref: ...
    cac844e0
    Pandoc doesn't convert <xref> correctly, but it does so consistently,
    so this commit just changes all xref links to :ref:.
    Jay Berkenbilt authored
    2021-12-13 11:20:14 -0500  
    Browse Code »
  • Replace <firstterm> with emphasis ...
    1b55906a
    At one time, it seems that I was starting to use the <firstterm>
    feature of docbook, but I forgot about it long ago, and there is
    nothing consistent. In the absence of an actual glossary, just use
    emphasis for terminology and don't tag it in any special way. This
    could be fixed later if we wanted to.
    Jay Berkenbilt authored
    2021-12-13 11:20:14 -0500  
    Browse Code »
  • Convert the original xml comment to an rst comment
    e5a7d932
    Jay Berkenbilt authored
    2021-12-13 11:20:14 -0500  
    Browse Code »
  • Replace <replaceable> with {...} ...
    d13a6032
    All occurrences are in :file: or :samp: now.
    Jay Berkenbilt authored
    2021-12-13 11:20:14 -0500  
    Browse Code »
  • Wrap remaining replaceables in :samp:
    0fdbb957
    Jay Berkenbilt authored
    2021-12-13 11:20:14 -0500  
    Browse Code »
  • Relabel replaceable in samp or file ...
    f4531e8a
    Replace @1@replaceable@1@...@2@replaceable@2@ with
    @3@replaceable@3@...@3@replaceable@3@ inside of :samp: and :file: so
    that all remaining @1@replaceable@1@...@2@replaceable@2@ are outside.
    Since the {...} syntax for replaceable only works in :samp: and
    :file:, we will have to enclose the remaining ones in :samp: for them
    to work.
    Jay Berkenbilt authored
    2021-12-13 11:20:14 -0500  
    Browse Code »
  • Convert <option> to :samp: and clean up literal blocks ...
    bf4d1078
    :option: is stronger and assumes a reference to a list of options.
    Since we don't have that yet, just use :samp: for options. Inside
    literal code blocks, there is no expansion, so just remove markup.
    Jay Berkenbilt authored
    2021-12-13 11:20:14 -0500  
    Browse Code »
  • Replace things previously marked with <filename> with :file:`...`
    b764ba95
    Jay Berkenbilt authored
    2021-12-13 11:20:14 -0500  
    Browse Code »
  • Replace command|application with :command:`...` ...
    15b87d76
    Replace @1@...@2@ stuff from prior to the conversion with new
    representation.
    Jay Berkenbilt authored
    2021-12-13 11:20:14 -0500  
    Browse Code »
  • doc: fix whitespace and indentation in pandoc output ...
    cf3b9a77
    Pandoc indented lists with two spaces after the dash, which is ugly
    and messes up emacs fill-paragraph. I transformed the spacing using a
    combination of this perl script and manual edits. I verified that the
    HTML generated by sphinx was identical before and after the edits and
    that this commit contains only whitespace changes. The perl script as
    it stands does not do indentation quite right for variable lists, but
    there were only about 8 cases that it missed, so I just fixed them
    manually.
    
    ```perl
    #!/usr/bin/env perl
    require 5.008;
    use warnings;
    use strict;
    use File::Basename;
    
    my $whoami = basename($0);
    
    my @liststack = ();
    
    while (<>)
    {
        if (m/^( *-  )\S/)
        {
            my $pre = $1;
            while ((scalar(@liststack) > 0) &&
                   ($liststack[-1] >= length($pre)))
            {
                pop(@liststack);
            }
            if ((scalar(@liststack) == 0) && ($pre =~ m/^ /))
            {
                push(@liststack, 1);
            }
            push(@liststack, length($pre));
            my $n = scalar(@liststack);
            #print "** $n\n";
            my $newpre = ('  ' x ($n - 1)) . '- ';
            s/^$pre/$newpre/;
        }
        elsif (scalar(@liststack) > 0)
        {
            if ($_ ne "\n")
            {
                while (scalar(@liststack) > 0)
                {
                    my $pre = m/^( *)/;
                    if (length($1) < $liststack[-1])
                    {
                        #print "XXX pop\n";
                        pop(@liststack);
                    }
                    else
                    {
                        last;
                    }
                }
                my $n = scalar(@liststack);
                #print "** $n\n";
                my $indent = '  ' x $n;
                s/^ +/$indent/;
            }
        }
        print;
    }
    ```
    Jay Berkenbilt authored
    2021-12-13 11:20:14 -0500  
    Browse Code »
  • Fix errors introduced by pandoc ...
    3d5d42ef
    These showed up as warnings from sphinx-build
    Jay Berkenbilt authored
    2021-12-13 11:20:14 -0500  
    Browse Code »
  • Switch build from docbook manual to sphinx ...
    a372a988
    Also remove linearization from qpdf-manual.pdf. It's a small file, and
    removing the dependency on the qpdf executable significantly shortens
    build times.
    Jay Berkenbilt authored
    2021-12-13 11:16:21 -0500  
    Browse Code »

12 Dec, 2021
10 commits
  • Insert output of pandoc as is ...
    abb6a16e
    pandoc -f docbook -t rst qpdf-manual.xml >| /tmp/a.rst
    Insert /tmp/a.rst into existing index.rst
    Jay Berkenbilt authored
    2021-12-12 16:29:13 -0500  
    Browse Code »
  • Sphinx docs: tweak output of sphinx-quickstart
    22d53f92
    Jay Berkenbilt authored
    2021-12-12 16:29:13 -0500  
    Browse Code »
  • Create initial sphinx document sources ...
    f8787d9f
    Run sphinx-quickstart. Throw everything away except conf.py and
    index.rst. We will incorporate this into our own build system.
    Jay Berkenbilt authored
    2021-12-12 16:29:13 -0500  
    Browse Code »
  • Prepare for docbook -> rst: replace SGML entitles ...
    9a5d16a4
    We were using SGML entities for various non-ASCII characters so they
    could convert properly for both HTML and print, but this is no longer
    necessary as we move from docbook to RST, so just replace them. Note
    that the conversions done by sphinx automatically handle "smart
    quotes", so it works to just use regular quotes in place of &LDQUO;
    and &RDQUO;.
    Jay Berkenbilt authored
    2021-12-12 16:29:13 -0500  
    Browse Code »
  • Prepare for docbook -> rst: protect a comment so it survives pandoc
    f80a0da3
    Jay Berkenbilt authored
    2021-12-12 16:29:13 -0500  
    Browse Code »
  • Prepare for docbook -> rst: protect some XML elements ...
    78206a46
    Pandoc docbook -> rst fails to convert the following elements, so
    change them to @1@tag@1@ ... @2@tag@2@ for later processing. This way,
    they will survive the conversion, and we can deal with them later.
    
    <application>
    <command>
    <filename>
    <firstterm>
    <option>
    <replaceable>
    Jay Berkenbilt authored
    2021-12-12 16:29:13 -0500  
    Browse Code »
  • doc: Replace Gajic with Gajić (finally) ...
    f721fed9
    With docbook, this was not converted properly in the PDF version, but
    since we are moving out of docbook, we can just put the Unicode
    character in the source.
    Jay Berkenbilt authored
    2021-12-12 16:29:13 -0500  
    Browse Code »
  • doc: remove unneeded footnote ...
    8aa9a66e
    Footnotes are yucky in online documentation, and the one footnote in
    the doc is no longer needed, so remove it.
    Jay Berkenbilt authored
    2021-12-12 16:29:13 -0500  
    Browse Code »
  • TODO: doc conversion notes ...
    e5c2bd8b
    Make a list of things that need to be done while converting docbook to
    sphinx/rst.
    Jay Berkenbilt authored
    2021-12-12 16:29:13 -0500  
    Browse Code »
  • TODO
    29384eca
    Jay Berkenbilt authored
    2021-12-12 14:58:22 -0500  
    Browse Code »

10 Dec, 2021
7 commits
  • Clarify docs around @filename and leading/trailing space
    08bcf644
    Jay Berkenbilt authored
    2021-12-10 15:52:28 -0500  
    Browse Code »
  • Handle bitstream overflow errors more gracefully (fixes #581) ...
    af2a71aa
    * Make it a runtime error, not a logic error
    * Include additional information
    * Capture it properly in checkLinearization
    Jay Berkenbilt authored
    2021-12-10 15:37:35 -0500  
    Browse Code »
  • C API: expose functions for indirect objects (fixes #588)
    1c62c2a3
    Jay Berkenbilt authored
    2021-12-10 14:57:35 -0500  
    Browse Code »
  • Expose QPDFObjectHandle::addTokenFilter (fixes #580)
    8e0b1533
    Jay Berkenbilt authored
    2021-12-10 13:37:07 -0500  
    Browse Code »
  • C API: overhaul error handling ...
    72c10d86
    * Handle error conditions that occur when using the object handle
      interfaces. In the past, some exceptions were not correctly
      converted to errors or warnings.
    * Add more detailed information to qpdf-c.h
    * Make it possible to work more explicitly with uninitialized objects
    Jay Berkenbilt authored
    2021-12-10 12:16:02 -0500  
    Browse Code »
  • Use a specific error code for type warnings and clarify docs
    3340dbe9
    Jay Berkenbilt authored
    2021-12-10 11:15:49 -0500  
    Browse Code »
  • Add missing unit test for register progress reporter in C API ...
    b2b2a175
    It was exercised in the pdf-linearize example but not in qpdf-ctest.
    Jay Berkenbilt authored
    2021-12-10 09:11:56 -0500  
    Browse Code »

09 Dec, 2021
6 commits
  • Split qpdf-ctest test 24 into multiple tests ...
    09f37372
    Thanks for the nudge from m-holger!
    Jay Berkenbilt authored
    2021-12-09 15:21:19 -0500  
    Browse Code »
  • Update ABI note about fluent interfaces
    c5708e91
    Jay Berkenbilt authored
    2021-12-09 10:33:31 -0500  
    Browse Code »
  • Remove notes on safe QPDFObjectHandle -- not worth doing ...
    8acb79fc
    The impact on the code would be extremely high, and using it would
    clutter the code greatly because it would break chaining like
    a.getKey("/B").getKey("/C"). There are better ways to deal with the
    issue.
    Jay Berkenbilt authored
    2021-12-09 10:33:31 -0500  
    Browse Code »
  • Refactor trap_errors to use std::function
    1faa2150
    Jay Berkenbilt authored
    2021-12-09 10:33:31 -0500  
    Browse Code »
  • Add changelog and release note for #587
    a1443636
    Jay Berkenbilt authored
    2021-12-09 10:33:31 -0500  
    Browse Code »
  • C API: qpdf_oh_is_initialized
    e3cc171d
    Jay Berkenbilt authored
    2021-12-09 10:33:31 -0500  
    Browse Code »