├── .gitignore ├── CHANGELOG ├── LICENSE ├── Makefile ├── README.md ├── _tags ├── debian ├── changelog ├── compat ├── control ├── copyright ├── rules └── source │ └── format ├── doc └── grammar │ ├── grammar-bnf.tex │ ├── grammar.pdf │ └── grammar.tex ├── mkdeb.sh ├── requirements.sh ├── src ├── contentstream │ ├── contentlexer.mll │ ├── contentparser.mly │ ├── contentstream.ml │ ├── contentstream.mli │ ├── operator.ml │ ├── operator.mli │ ├── resources.ml │ └── resources.mli ├── crypto │ ├── aes.ml │ ├── aes.mli │ ├── crypto.ml │ ├── crypto.mli │ ├── cryptoparse.ml │ ├── cryptoparse.mli │ ├── md5.ml │ ├── md5.mli │ ├── rc4.ml │ └── rc4.mli ├── data │ ├── directobject.ml │ ├── directobject.mli │ ├── document.ml │ ├── document.mli │ ├── graph.ml │ ├── graph.mli │ ├── indirectobject.ml │ ├── indirectobject.mli │ ├── xref.ml │ └── xref.mli ├── file.ml ├── file.mli ├── graph │ ├── graphchecker.ml │ ├── graphchecker.mli │ ├── tree.ml │ └── tree.mli ├── main.ml ├── params.ml ├── parser │ ├── common.ml │ ├── common.mli │ ├── convert.ml │ ├── convert.mli │ ├── relaxed │ │ ├── extractobjects.ml │ │ ├── extractobjects.mli │ │ ├── extractxref.ml │ │ ├── extractxref.mli │ │ ├── fetch.ml │ │ ├── fetch.mli │ │ ├── fetchcommon.ml │ │ ├── fetchcommon.mli │ │ ├── fetchcomp.ml │ │ ├── fetchcomp.mli │ │ ├── fetchimpl.ml │ │ ├── fetchimpl.mli │ │ ├── lexer.mll │ │ ├── parser.mly │ │ ├── xreflexer.mll │ │ └── xrefparser.mly │ ├── strictlexer.mll │ ├── strictparser.mly │ ├── wrap.ml │ └── wrap.mli ├── stats │ ├── holes.ml │ ├── holes.mli │ ├── stats.ml │ └── stats.mli ├── stream │ ├── ascii85.ml │ ├── ascii85.mli │ ├── asciihex.ml │ ├── asciihex.mli │ ├── lzw.ml │ ├── lzw.mli │ ├── pdfstream.ml │ ├── pdfstream.mli │ ├── predictor.ml │ ├── predictor.mli │ ├── runlength.ml │ ├── runlength.mli │ ├── zlib.ml │ └── zlib.mli ├── tools │ ├── cleanupcs.ml │ ├── cleanupcs.mli │ ├── find.ml │ └── find.mli ├── type │ ├── checkobjecttype.ml │ ├── checkobjecttype.mli │ ├── pdf │ │ ├── typesaction.ml │ │ ├── typesannot.ml │ │ ├── typescolorspace.ml │ │ ├── typesfont.ml │ │ ├── typesfunction.ml │ │ ├── typesgraphic.ml │ │ ├── typesoutline.ml │ │ ├── typespage.ml │ │ ├── typesstream.ml │ │ ├── typestransition.ml │ │ ├── typestree.ml │ │ └── typesxobject.ml │ ├── pdftypes.ml │ ├── type.ml │ ├── type.mli │ ├── typechecker.ml │ ├── typechecker.mli │ └── util.ml ├── ui │ ├── cachedfile.ml │ ├── cachedfile.mli │ ├── hexview.ml │ ├── hexview.mli │ ├── listview.ml │ ├── listview.mli │ ├── mainwindow.ml │ ├── mainwindow.mli │ ├── selectview.ml │ ├── selectview.mli │ ├── statusbar.ml │ ├── statusbar.mli │ ├── textview.ml │ ├── textview.mli │ ├── uiutils.ml │ ├── view.ml │ ├── view.mli │ ├── widget.ml │ └── widget.mli └── util │ ├── algo.ml │ ├── algo.mli │ ├── boundedint.ml │ ├── boundedint.mli │ ├── console.ml │ ├── entry.ml │ ├── entry.mli │ ├── errors.ml │ ├── errors.mli │ ├── intervals.ml │ ├── intervals.mli │ ├── intset.ml │ ├── intset.mli │ ├── key.ml │ ├── key.mli │ ├── mapkey.ml │ ├── openfile.ml │ ├── openfile.mli │ ├── print.ml │ ├── print.mli │ ├── setkey.ml │ ├── uniqueid.ml │ └── uniqueid.mli ├── test ├── TestAES.ml ├── TestAlgo.ml ├── TestBoundedint.ml ├── TestCheckType.ml ├── TestCommon.ml ├── TestConvert.ml ├── TestCryptoParse.ml ├── TestDict.ml ├── TestDirectObject.ml ├── TestDocument.ml ├── TestEntry.ml ├── TestErrors.ml ├── TestGraph.ml ├── TestIndirectObject.ml ├── TestIntervals.ml ├── TestKey.ml ├── TestLexer.ml ├── TestMD5.ml ├── TestMapkey.ml ├── TestParser.ml ├── TestRC4.ml ├── TestSetkey.ml ├── TestStream.ml ├── TestStrictLexer.ml ├── TestStrictParser.ml ├── TestTree.ml ├── TestType.ml ├── TestTypeUtil.ml ├── TestXref.ml ├── TestXrefLexer.ml ├── TestXrefParser.ml └── unit.ml └── test_files ├── cleanup ├── reencode-ascii85.clean ├── reencode-ascii85.options ├── reencode-ascii85.pdf ├── reencode-asciihex.clean ├── reencode-asciihex.options ├── reencode-asciihex.pdf ├── reencode-runlength.clean ├── reencode-runlength.options ├── reencode-runlength.pdf ├── reencode-zlib.clean ├── reencode-zlib.options └── reencode-zlib.pdf ├── negative ├── duplicates │ ├── dictionary.pdf │ ├── dictionary.stats │ └── dictionary.stats_strict ├── generation │ ├── negative.pdf │ ├── negative.stats │ ├── negative.stats_strict │ ├── negative2.pdf │ ├── negative2.stats │ └── negative2.stats_strict ├── name │ ├── badescape.pdf │ ├── badescape.stats │ └── badescape.stats_strict ├── outlines │ ├── cycle.pdf │ ├── cycle.stats │ └── cycle.stats_strict ├── pagetree │ ├── cycle.pdf │ ├── cycle.stats │ └── cycle.stats_strict ├── polymorph │ ├── polymorph.pdf │ ├── polymorph.stats │ └── polymorph.stats_strict ├── stream │ ├── recursive-length.pdf │ ├── recursive-length.stats │ ├── recursive-length.stats_strict │ ├── recursive-length2.pdf │ ├── recursive-length2.stats │ └── recursive-length2.stats_strict └── xref │ ├── badoffset.pdf │ ├── badoffset.stats │ └── badoffset.stats_strict └── positive ├── comment ├── comment.clean ├── comment.pdf ├── comment.stats ├── comment.stats_strict ├── comment.trailer ├── comment.types └── comment.xref ├── hello ├── hello.clean ├── hello.pdf ├── hello.stats ├── hello.stats_strict ├── hello.trailer ├── hello.types ├── hello.xref ├── twopages.clean ├── twopages.pdf ├── twopages.stats ├── twopages.stats_strict ├── twopages.trailer ├── twopages.types └── twopages.xref ├── name ├── escape.clean ├── escape.pdf ├── escape.stats ├── escape.stats_strict ├── escape.trailer ├── escape.types └── escape.xref └── stream ├── indirect-filter.clean ├── indirect-filter.pdf ├── indirect-filter.stats ├── indirect-filter.stats_strict ├── indirect-filter.trailer ├── indirect-filter.types ├── indirect-filter.xref ├── indirect-length.clean ├── indirect-length.pdf ├── indirect-length.stats ├── indirect-length.stats_strict ├── indirect-length.trailer ├── indirect-length.types └── indirect-length.xref /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/README.md -------------------------------------------------------------------------------- /_tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/_tags -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /doc/grammar/grammar-bnf.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/doc/grammar/grammar-bnf.tex -------------------------------------------------------------------------------- /doc/grammar/grammar.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/doc/grammar/grammar.pdf -------------------------------------------------------------------------------- /doc/grammar/grammar.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/doc/grammar/grammar.tex -------------------------------------------------------------------------------- /mkdeb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/mkdeb.sh -------------------------------------------------------------------------------- /requirements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/requirements.sh -------------------------------------------------------------------------------- /src/contentstream/contentlexer.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/contentstream/contentlexer.mll -------------------------------------------------------------------------------- /src/contentstream/contentparser.mly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/contentstream/contentparser.mly -------------------------------------------------------------------------------- /src/contentstream/contentstream.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/contentstream/contentstream.ml -------------------------------------------------------------------------------- /src/contentstream/contentstream.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/contentstream/contentstream.mli -------------------------------------------------------------------------------- /src/contentstream/operator.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/contentstream/operator.ml -------------------------------------------------------------------------------- /src/contentstream/operator.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/contentstream/operator.mli -------------------------------------------------------------------------------- /src/contentstream/resources.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/contentstream/resources.ml -------------------------------------------------------------------------------- /src/contentstream/resources.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/contentstream/resources.mli -------------------------------------------------------------------------------- /src/crypto/aes.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/crypto/aes.ml -------------------------------------------------------------------------------- /src/crypto/aes.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/crypto/aes.mli -------------------------------------------------------------------------------- /src/crypto/crypto.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/crypto/crypto.ml -------------------------------------------------------------------------------- /src/crypto/crypto.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/crypto/crypto.mli -------------------------------------------------------------------------------- /src/crypto/cryptoparse.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/crypto/cryptoparse.ml -------------------------------------------------------------------------------- /src/crypto/cryptoparse.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/crypto/cryptoparse.mli -------------------------------------------------------------------------------- /src/crypto/md5.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/crypto/md5.ml -------------------------------------------------------------------------------- /src/crypto/md5.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/crypto/md5.mli -------------------------------------------------------------------------------- /src/crypto/rc4.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/crypto/rc4.ml -------------------------------------------------------------------------------- /src/crypto/rc4.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/crypto/rc4.mli -------------------------------------------------------------------------------- /src/data/directobject.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/data/directobject.ml -------------------------------------------------------------------------------- /src/data/directobject.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/data/directobject.mli -------------------------------------------------------------------------------- /src/data/document.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/data/document.ml -------------------------------------------------------------------------------- /src/data/document.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/data/document.mli -------------------------------------------------------------------------------- /src/data/graph.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/data/graph.ml -------------------------------------------------------------------------------- /src/data/graph.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/data/graph.mli -------------------------------------------------------------------------------- /src/data/indirectobject.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/data/indirectobject.ml -------------------------------------------------------------------------------- /src/data/indirectobject.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/data/indirectobject.mli -------------------------------------------------------------------------------- /src/data/xref.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/data/xref.ml -------------------------------------------------------------------------------- /src/data/xref.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/data/xref.mli -------------------------------------------------------------------------------- /src/file.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/file.ml -------------------------------------------------------------------------------- /src/file.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/file.mli -------------------------------------------------------------------------------- /src/graph/graphchecker.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/graph/graphchecker.ml -------------------------------------------------------------------------------- /src/graph/graphchecker.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/graph/graphchecker.mli -------------------------------------------------------------------------------- /src/graph/tree.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/graph/tree.ml -------------------------------------------------------------------------------- /src/graph/tree.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/graph/tree.mli -------------------------------------------------------------------------------- /src/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/main.ml -------------------------------------------------------------------------------- /src/params.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/params.ml -------------------------------------------------------------------------------- /src/parser/common.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/parser/common.ml -------------------------------------------------------------------------------- /src/parser/common.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/parser/common.mli -------------------------------------------------------------------------------- /src/parser/convert.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/parser/convert.ml -------------------------------------------------------------------------------- /src/parser/convert.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/parser/convert.mli -------------------------------------------------------------------------------- /src/parser/relaxed/extractobjects.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/parser/relaxed/extractobjects.ml -------------------------------------------------------------------------------- /src/parser/relaxed/extractobjects.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/parser/relaxed/extractobjects.mli -------------------------------------------------------------------------------- /src/parser/relaxed/extractxref.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/parser/relaxed/extractxref.ml -------------------------------------------------------------------------------- /src/parser/relaxed/extractxref.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/parser/relaxed/extractxref.mli -------------------------------------------------------------------------------- /src/parser/relaxed/fetch.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/parser/relaxed/fetch.ml -------------------------------------------------------------------------------- /src/parser/relaxed/fetch.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/parser/relaxed/fetch.mli -------------------------------------------------------------------------------- /src/parser/relaxed/fetchcommon.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/parser/relaxed/fetchcommon.ml -------------------------------------------------------------------------------- /src/parser/relaxed/fetchcommon.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/parser/relaxed/fetchcommon.mli -------------------------------------------------------------------------------- /src/parser/relaxed/fetchcomp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/parser/relaxed/fetchcomp.ml -------------------------------------------------------------------------------- /src/parser/relaxed/fetchcomp.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/parser/relaxed/fetchcomp.mli -------------------------------------------------------------------------------- /src/parser/relaxed/fetchimpl.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/parser/relaxed/fetchimpl.ml -------------------------------------------------------------------------------- /src/parser/relaxed/fetchimpl.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/parser/relaxed/fetchimpl.mli -------------------------------------------------------------------------------- /src/parser/relaxed/lexer.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/parser/relaxed/lexer.mll -------------------------------------------------------------------------------- /src/parser/relaxed/parser.mly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/parser/relaxed/parser.mly -------------------------------------------------------------------------------- /src/parser/relaxed/xreflexer.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/parser/relaxed/xreflexer.mll -------------------------------------------------------------------------------- /src/parser/relaxed/xrefparser.mly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/parser/relaxed/xrefparser.mly -------------------------------------------------------------------------------- /src/parser/strictlexer.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/parser/strictlexer.mll -------------------------------------------------------------------------------- /src/parser/strictparser.mly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/parser/strictparser.mly -------------------------------------------------------------------------------- /src/parser/wrap.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/parser/wrap.ml -------------------------------------------------------------------------------- /src/parser/wrap.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/parser/wrap.mli -------------------------------------------------------------------------------- /src/stats/holes.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/stats/holes.ml -------------------------------------------------------------------------------- /src/stats/holes.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/stats/holes.mli -------------------------------------------------------------------------------- /src/stats/stats.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/stats/stats.ml -------------------------------------------------------------------------------- /src/stats/stats.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/stats/stats.mli -------------------------------------------------------------------------------- /src/stream/ascii85.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/stream/ascii85.ml -------------------------------------------------------------------------------- /src/stream/ascii85.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/stream/ascii85.mli -------------------------------------------------------------------------------- /src/stream/asciihex.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/stream/asciihex.ml -------------------------------------------------------------------------------- /src/stream/asciihex.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/stream/asciihex.mli -------------------------------------------------------------------------------- /src/stream/lzw.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/stream/lzw.ml -------------------------------------------------------------------------------- /src/stream/lzw.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/stream/lzw.mli -------------------------------------------------------------------------------- /src/stream/pdfstream.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/stream/pdfstream.ml -------------------------------------------------------------------------------- /src/stream/pdfstream.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/stream/pdfstream.mli -------------------------------------------------------------------------------- /src/stream/predictor.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/stream/predictor.ml -------------------------------------------------------------------------------- /src/stream/predictor.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/stream/predictor.mli -------------------------------------------------------------------------------- /src/stream/runlength.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/stream/runlength.ml -------------------------------------------------------------------------------- /src/stream/runlength.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/stream/runlength.mli -------------------------------------------------------------------------------- /src/stream/zlib.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/stream/zlib.ml -------------------------------------------------------------------------------- /src/stream/zlib.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/stream/zlib.mli -------------------------------------------------------------------------------- /src/tools/cleanupcs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/tools/cleanupcs.ml -------------------------------------------------------------------------------- /src/tools/cleanupcs.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/tools/cleanupcs.mli -------------------------------------------------------------------------------- /src/tools/find.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/tools/find.ml -------------------------------------------------------------------------------- /src/tools/find.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/tools/find.mli -------------------------------------------------------------------------------- /src/type/checkobjecttype.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/type/checkobjecttype.ml -------------------------------------------------------------------------------- /src/type/checkobjecttype.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/type/checkobjecttype.mli -------------------------------------------------------------------------------- /src/type/pdf/typesaction.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/type/pdf/typesaction.ml -------------------------------------------------------------------------------- /src/type/pdf/typesannot.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/type/pdf/typesannot.ml -------------------------------------------------------------------------------- /src/type/pdf/typescolorspace.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/type/pdf/typescolorspace.ml -------------------------------------------------------------------------------- /src/type/pdf/typesfont.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/type/pdf/typesfont.ml -------------------------------------------------------------------------------- /src/type/pdf/typesfunction.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/type/pdf/typesfunction.ml -------------------------------------------------------------------------------- /src/type/pdf/typesgraphic.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/type/pdf/typesgraphic.ml -------------------------------------------------------------------------------- /src/type/pdf/typesoutline.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/type/pdf/typesoutline.ml -------------------------------------------------------------------------------- /src/type/pdf/typespage.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/type/pdf/typespage.ml -------------------------------------------------------------------------------- /src/type/pdf/typesstream.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/type/pdf/typesstream.ml -------------------------------------------------------------------------------- /src/type/pdf/typestransition.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/type/pdf/typestransition.ml -------------------------------------------------------------------------------- /src/type/pdf/typestree.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/type/pdf/typestree.ml -------------------------------------------------------------------------------- /src/type/pdf/typesxobject.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/type/pdf/typesxobject.ml -------------------------------------------------------------------------------- /src/type/pdftypes.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/type/pdftypes.ml -------------------------------------------------------------------------------- /src/type/type.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/type/type.ml -------------------------------------------------------------------------------- /src/type/type.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/type/type.mli -------------------------------------------------------------------------------- /src/type/typechecker.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/type/typechecker.ml -------------------------------------------------------------------------------- /src/type/typechecker.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/type/typechecker.mli -------------------------------------------------------------------------------- /src/type/util.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/type/util.ml -------------------------------------------------------------------------------- /src/ui/cachedfile.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/ui/cachedfile.ml -------------------------------------------------------------------------------- /src/ui/cachedfile.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/ui/cachedfile.mli -------------------------------------------------------------------------------- /src/ui/hexview.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/ui/hexview.ml -------------------------------------------------------------------------------- /src/ui/hexview.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/ui/hexview.mli -------------------------------------------------------------------------------- /src/ui/listview.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/ui/listview.ml -------------------------------------------------------------------------------- /src/ui/listview.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/ui/listview.mli -------------------------------------------------------------------------------- /src/ui/mainwindow.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/ui/mainwindow.ml -------------------------------------------------------------------------------- /src/ui/mainwindow.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/ui/mainwindow.mli -------------------------------------------------------------------------------- /src/ui/selectview.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/ui/selectview.ml -------------------------------------------------------------------------------- /src/ui/selectview.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/ui/selectview.mli -------------------------------------------------------------------------------- /src/ui/statusbar.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/ui/statusbar.ml -------------------------------------------------------------------------------- /src/ui/statusbar.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/ui/statusbar.mli -------------------------------------------------------------------------------- /src/ui/textview.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/ui/textview.ml -------------------------------------------------------------------------------- /src/ui/textview.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/ui/textview.mli -------------------------------------------------------------------------------- /src/ui/uiutils.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/ui/uiutils.ml -------------------------------------------------------------------------------- /src/ui/view.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/ui/view.ml -------------------------------------------------------------------------------- /src/ui/view.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/ui/view.mli -------------------------------------------------------------------------------- /src/ui/widget.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/ui/widget.ml -------------------------------------------------------------------------------- /src/ui/widget.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/ui/widget.mli -------------------------------------------------------------------------------- /src/util/algo.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/util/algo.ml -------------------------------------------------------------------------------- /src/util/algo.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/util/algo.mli -------------------------------------------------------------------------------- /src/util/boundedint.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/util/boundedint.ml -------------------------------------------------------------------------------- /src/util/boundedint.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/util/boundedint.mli -------------------------------------------------------------------------------- /src/util/console.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/util/console.ml -------------------------------------------------------------------------------- /src/util/entry.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/util/entry.ml -------------------------------------------------------------------------------- /src/util/entry.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/util/entry.mli -------------------------------------------------------------------------------- /src/util/errors.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/util/errors.ml -------------------------------------------------------------------------------- /src/util/errors.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/util/errors.mli -------------------------------------------------------------------------------- /src/util/intervals.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/util/intervals.ml -------------------------------------------------------------------------------- /src/util/intervals.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/util/intervals.mli -------------------------------------------------------------------------------- /src/util/intset.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/util/intset.ml -------------------------------------------------------------------------------- /src/util/intset.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/util/intset.mli -------------------------------------------------------------------------------- /src/util/key.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/util/key.ml -------------------------------------------------------------------------------- /src/util/key.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/util/key.mli -------------------------------------------------------------------------------- /src/util/mapkey.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/util/mapkey.ml -------------------------------------------------------------------------------- /src/util/openfile.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/util/openfile.ml -------------------------------------------------------------------------------- /src/util/openfile.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/util/openfile.mli -------------------------------------------------------------------------------- /src/util/print.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/util/print.ml -------------------------------------------------------------------------------- /src/util/print.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/util/print.mli -------------------------------------------------------------------------------- /src/util/setkey.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/util/setkey.ml -------------------------------------------------------------------------------- /src/util/uniqueid.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/util/uniqueid.ml -------------------------------------------------------------------------------- /src/util/uniqueid.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/src/util/uniqueid.mli -------------------------------------------------------------------------------- /test/TestAES.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestAES.ml -------------------------------------------------------------------------------- /test/TestAlgo.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestAlgo.ml -------------------------------------------------------------------------------- /test/TestBoundedint.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestBoundedint.ml -------------------------------------------------------------------------------- /test/TestCheckType.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestCheckType.ml -------------------------------------------------------------------------------- /test/TestCommon.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestCommon.ml -------------------------------------------------------------------------------- /test/TestConvert.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestConvert.ml -------------------------------------------------------------------------------- /test/TestCryptoParse.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestCryptoParse.ml -------------------------------------------------------------------------------- /test/TestDict.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestDict.ml -------------------------------------------------------------------------------- /test/TestDirectObject.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestDirectObject.ml -------------------------------------------------------------------------------- /test/TestDocument.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestDocument.ml -------------------------------------------------------------------------------- /test/TestEntry.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestEntry.ml -------------------------------------------------------------------------------- /test/TestErrors.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestErrors.ml -------------------------------------------------------------------------------- /test/TestGraph.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestGraph.ml -------------------------------------------------------------------------------- /test/TestIndirectObject.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestIndirectObject.ml -------------------------------------------------------------------------------- /test/TestIntervals.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestIntervals.ml -------------------------------------------------------------------------------- /test/TestKey.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestKey.ml -------------------------------------------------------------------------------- /test/TestLexer.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestLexer.ml -------------------------------------------------------------------------------- /test/TestMD5.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestMD5.ml -------------------------------------------------------------------------------- /test/TestMapkey.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestMapkey.ml -------------------------------------------------------------------------------- /test/TestParser.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestParser.ml -------------------------------------------------------------------------------- /test/TestRC4.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestRC4.ml -------------------------------------------------------------------------------- /test/TestSetkey.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestSetkey.ml -------------------------------------------------------------------------------- /test/TestStream.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestStream.ml -------------------------------------------------------------------------------- /test/TestStrictLexer.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestStrictLexer.ml -------------------------------------------------------------------------------- /test/TestStrictParser.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestStrictParser.ml -------------------------------------------------------------------------------- /test/TestTree.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestTree.ml -------------------------------------------------------------------------------- /test/TestType.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestType.ml -------------------------------------------------------------------------------- /test/TestTypeUtil.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestTypeUtil.ml -------------------------------------------------------------------------------- /test/TestXref.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestXref.ml -------------------------------------------------------------------------------- /test/TestXrefLexer.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestXrefLexer.ml -------------------------------------------------------------------------------- /test/TestXrefParser.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/TestXrefParser.ml -------------------------------------------------------------------------------- /test/unit.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test/unit.ml -------------------------------------------------------------------------------- /test_files/cleanup/reencode-ascii85.clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/cleanup/reencode-ascii85.clean -------------------------------------------------------------------------------- /test_files/cleanup/reencode-ascii85.options: -------------------------------------------------------------------------------- 1 | reencode-streams=ASCII85Decode 2 | 3 | -------------------------------------------------------------------------------- /test_files/cleanup/reencode-ascii85.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/cleanup/reencode-ascii85.pdf -------------------------------------------------------------------------------- /test_files/cleanup/reencode-asciihex.clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/cleanup/reencode-asciihex.clean -------------------------------------------------------------------------------- /test_files/cleanup/reencode-asciihex.options: -------------------------------------------------------------------------------- 1 | reencode-streams=ASCIIHexDecode 2 | 3 | -------------------------------------------------------------------------------- /test_files/cleanup/reencode-asciihex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/cleanup/reencode-asciihex.pdf -------------------------------------------------------------------------------- /test_files/cleanup/reencode-runlength.clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/cleanup/reencode-runlength.clean -------------------------------------------------------------------------------- /test_files/cleanup/reencode-runlength.options: -------------------------------------------------------------------------------- 1 | reencode-streams=RunLengthDecode 2 | 3 | -------------------------------------------------------------------------------- /test_files/cleanup/reencode-runlength.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/cleanup/reencode-runlength.pdf -------------------------------------------------------------------------------- /test_files/cleanup/reencode-zlib.clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/cleanup/reencode-zlib.clean -------------------------------------------------------------------------------- /test_files/cleanup/reencode-zlib.options: -------------------------------------------------------------------------------- 1 | reencode-streams=FlateDecode 2 | 3 | -------------------------------------------------------------------------------- /test_files/cleanup/reencode-zlib.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/cleanup/reencode-zlib.pdf -------------------------------------------------------------------------------- /test_files/negative/duplicates/dictionary.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/duplicates/dictionary.pdf -------------------------------------------------------------------------------- /test_files/negative/duplicates/dictionary.stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/duplicates/dictionary.stats -------------------------------------------------------------------------------- /test_files/negative/duplicates/dictionary.stats_strict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/duplicates/dictionary.stats_strict -------------------------------------------------------------------------------- /test_files/negative/generation/negative.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/generation/negative.pdf -------------------------------------------------------------------------------- /test_files/negative/generation/negative.stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/generation/negative.stats -------------------------------------------------------------------------------- /test_files/negative/generation/negative.stats_strict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/generation/negative.stats_strict -------------------------------------------------------------------------------- /test_files/negative/generation/negative2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/generation/negative2.pdf -------------------------------------------------------------------------------- /test_files/negative/generation/negative2.stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/generation/negative2.stats -------------------------------------------------------------------------------- /test_files/negative/generation/negative2.stats_strict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/generation/negative2.stats_strict -------------------------------------------------------------------------------- /test_files/negative/name/badescape.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/name/badescape.pdf -------------------------------------------------------------------------------- /test_files/negative/name/badescape.stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/name/badescape.stats -------------------------------------------------------------------------------- /test_files/negative/name/badescape.stats_strict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/name/badescape.stats_strict -------------------------------------------------------------------------------- /test_files/negative/outlines/cycle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/outlines/cycle.pdf -------------------------------------------------------------------------------- /test_files/negative/outlines/cycle.stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/outlines/cycle.stats -------------------------------------------------------------------------------- /test_files/negative/outlines/cycle.stats_strict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/outlines/cycle.stats_strict -------------------------------------------------------------------------------- /test_files/negative/pagetree/cycle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/pagetree/cycle.pdf -------------------------------------------------------------------------------- /test_files/negative/pagetree/cycle.stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/pagetree/cycle.stats -------------------------------------------------------------------------------- /test_files/negative/pagetree/cycle.stats_strict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/pagetree/cycle.stats_strict -------------------------------------------------------------------------------- /test_files/negative/polymorph/polymorph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/polymorph/polymorph.pdf -------------------------------------------------------------------------------- /test_files/negative/polymorph/polymorph.stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/polymorph/polymorph.stats -------------------------------------------------------------------------------- /test_files/negative/polymorph/polymorph.stats_strict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/polymorph/polymorph.stats_strict -------------------------------------------------------------------------------- /test_files/negative/stream/recursive-length.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/stream/recursive-length.pdf -------------------------------------------------------------------------------- /test_files/negative/stream/recursive-length.stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/stream/recursive-length.stats -------------------------------------------------------------------------------- /test_files/negative/stream/recursive-length.stats_strict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/stream/recursive-length.stats_strict -------------------------------------------------------------------------------- /test_files/negative/stream/recursive-length2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/stream/recursive-length2.pdf -------------------------------------------------------------------------------- /test_files/negative/stream/recursive-length2.stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/stream/recursive-length2.stats -------------------------------------------------------------------------------- /test_files/negative/stream/recursive-length2.stats_strict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/stream/recursive-length2.stats_strict -------------------------------------------------------------------------------- /test_files/negative/xref/badoffset.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/xref/badoffset.pdf -------------------------------------------------------------------------------- /test_files/negative/xref/badoffset.stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/xref/badoffset.stats -------------------------------------------------------------------------------- /test_files/negative/xref/badoffset.stats_strict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/negative/xref/badoffset.stats_strict -------------------------------------------------------------------------------- /test_files/positive/comment/comment.clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/comment/comment.clean -------------------------------------------------------------------------------- /test_files/positive/comment/comment.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/comment/comment.pdf -------------------------------------------------------------------------------- /test_files/positive/comment/comment.stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/comment/comment.stats -------------------------------------------------------------------------------- /test_files/positive/comment/comment.stats_strict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/comment/comment.stats_strict -------------------------------------------------------------------------------- /test_files/positive/comment/comment.trailer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/comment/comment.trailer -------------------------------------------------------------------------------- /test_files/positive/comment/comment.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/comment/comment.types -------------------------------------------------------------------------------- /test_files/positive/comment/comment.xref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/comment/comment.xref -------------------------------------------------------------------------------- /test_files/positive/hello/hello.clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/hello/hello.clean -------------------------------------------------------------------------------- /test_files/positive/hello/hello.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/hello/hello.pdf -------------------------------------------------------------------------------- /test_files/positive/hello/hello.stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/hello/hello.stats -------------------------------------------------------------------------------- /test_files/positive/hello/hello.stats_strict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/hello/hello.stats_strict -------------------------------------------------------------------------------- /test_files/positive/hello/hello.trailer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/hello/hello.trailer -------------------------------------------------------------------------------- /test_files/positive/hello/hello.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/hello/hello.types -------------------------------------------------------------------------------- /test_files/positive/hello/hello.xref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/hello/hello.xref -------------------------------------------------------------------------------- /test_files/positive/hello/twopages.clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/hello/twopages.clean -------------------------------------------------------------------------------- /test_files/positive/hello/twopages.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/hello/twopages.pdf -------------------------------------------------------------------------------- /test_files/positive/hello/twopages.stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/hello/twopages.stats -------------------------------------------------------------------------------- /test_files/positive/hello/twopages.stats_strict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/hello/twopages.stats_strict -------------------------------------------------------------------------------- /test_files/positive/hello/twopages.trailer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/hello/twopages.trailer -------------------------------------------------------------------------------- /test_files/positive/hello/twopages.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/hello/twopages.types -------------------------------------------------------------------------------- /test_files/positive/hello/twopages.xref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/hello/twopages.xref -------------------------------------------------------------------------------- /test_files/positive/name/escape.clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/name/escape.clean -------------------------------------------------------------------------------- /test_files/positive/name/escape.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/name/escape.pdf -------------------------------------------------------------------------------- /test_files/positive/name/escape.stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/name/escape.stats -------------------------------------------------------------------------------- /test_files/positive/name/escape.stats_strict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/name/escape.stats_strict -------------------------------------------------------------------------------- /test_files/positive/name/escape.trailer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/name/escape.trailer -------------------------------------------------------------------------------- /test_files/positive/name/escape.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/name/escape.types -------------------------------------------------------------------------------- /test_files/positive/name/escape.xref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/name/escape.xref -------------------------------------------------------------------------------- /test_files/positive/stream/indirect-filter.clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/stream/indirect-filter.clean -------------------------------------------------------------------------------- /test_files/positive/stream/indirect-filter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/stream/indirect-filter.pdf -------------------------------------------------------------------------------- /test_files/positive/stream/indirect-filter.stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/stream/indirect-filter.stats -------------------------------------------------------------------------------- /test_files/positive/stream/indirect-filter.stats_strict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/stream/indirect-filter.stats_strict -------------------------------------------------------------------------------- /test_files/positive/stream/indirect-filter.trailer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/stream/indirect-filter.trailer -------------------------------------------------------------------------------- /test_files/positive/stream/indirect-filter.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/stream/indirect-filter.types -------------------------------------------------------------------------------- /test_files/positive/stream/indirect-filter.xref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/stream/indirect-filter.xref -------------------------------------------------------------------------------- /test_files/positive/stream/indirect-length.clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/stream/indirect-length.clean -------------------------------------------------------------------------------- /test_files/positive/stream/indirect-length.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/stream/indirect-length.pdf -------------------------------------------------------------------------------- /test_files/positive/stream/indirect-length.stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/stream/indirect-length.stats -------------------------------------------------------------------------------- /test_files/positive/stream/indirect-length.stats_strict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/stream/indirect-length.stats_strict -------------------------------------------------------------------------------- /test_files/positive/stream/indirect-length.trailer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/stream/indirect-length.trailer -------------------------------------------------------------------------------- /test_files/positive/stream/indirect-length.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/stream/indirect-length.types -------------------------------------------------------------------------------- /test_files/positive/stream/indirect-length.xref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caradoc-org/caradoc/HEAD/test_files/positive/stream/indirect-length.xref --------------------------------------------------------------------------------