├── .coveragerc ├── .gitattributes ├── .github └── dependabot.yml ├── .gitignore ├── .travis.yml ├── CHANGES ├── COPYING ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README ├── README.rst ├── VERSION.txt ├── classifiers.txt ├── docs ├── .gitignore ├── Makefile ├── changes.rst ├── conf.py ├── converters.rst ├── hacking │ ├── directory-layout.rst │ ├── directory-layout │ │ ├── bin.rst │ │ ├── pyhwp-tests.rst │ │ ├── pyhwp.rst │ │ ├── root.rst │ │ └── tools.rst │ ├── hack-n-test.rst │ ├── index.rst │ └── setup-env.rst ├── hwp5.rst ├── hwp5proc.rst ├── index.rst ├── intro.rst ├── static │ └── .gitignore ├── templates │ └── .gitignore └── translated │ ├── en │ └── LC_MESSAGES │ │ ├── converters.po │ │ ├── hwp5proc.po │ │ ├── index.po │ │ └── intro.po │ └── ko │ └── LC_MESSAGES │ ├── converters.po │ ├── hwp5proc.po │ ├── index.po │ └── intro.po ├── etc ├── pylint.rc └── testlog.conf ├── ez_setup.py ├── misc ├── cleanup-pyc.py ├── copylxml.py ├── docs-upload ├── fix-coverage.py ├── install-lxml.py.in ├── mkdir.py ├── oxt-build.in ├── prepare-hwp5-xsl-fixtures.py ├── redirect.py ├── test-cli.in ├── test-cli.py ├── test-coverage ├── test-for-bisect ├── test-in-lo.py ├── test-pypi.in ├── test-sdist ├── test-sdist.in ├── test-upload.in ├── test-xsl.in └── upload ├── notebooks └── .gitignore ├── oxt ├── Addons.xcu ├── Filter.xcu ├── META-INF │ └── manifest.xml ├── Makefile ├── Types.xcu ├── components.py ├── description.xml ├── description │ ├── desc_en.txt │ └── desc_ko.txt ├── doc │ └── references.txt └── registration │ └── COPYING.txt ├── pyhwp_uno ├── hwp5_uno │ ├── __init__.py │ └── tests │ │ ├── __init__.py │ │ └── test_hwp5_uno.py └── setup.py ├── release-hooks ├── prerelease.after │ └── 10-docs-build ├── prerelease.before │ └── 0-docs-update-po ├── release.after │ ├── 10-test-pypi │ └── 20-docs-upload └── release.before │ └── 20-upload-to-testpypi ├── requirements.in ├── requirements.txt ├── requirements ├── dev.in ├── dev.txt ├── docs.in ├── docs.txt ├── lint.in ├── lint.txt ├── test.in └── test.txt ├── samples ├── setup.cfg ├── setup.py ├── src ├── README.rst └── hwp5 │ ├── COPYING │ ├── README │ ├── VERSION.txt │ ├── __init__.py │ ├── binmodel │ ├── __init__.py │ ├── _shared.py │ ├── controlchar.py │ ├── controls │ │ ├── __init__.py │ │ ├── _shared.py │ │ ├── bookmark_control.py │ │ ├── columns_def.py │ │ ├── common_controls.py │ │ ├── dutmal.py │ │ ├── field.py │ │ ├── gshape_object_control.py │ │ ├── header_footer.py │ │ ├── hidden_comment.py │ │ ├── index_marker.py │ │ ├── note.py │ │ ├── numbering.py │ │ ├── page_hide.py │ │ ├── page_number_position.py │ │ ├── page_odd_even.py │ │ ├── section_def.py │ │ ├── table_control.py │ │ └── tcps_control.py │ ├── tagid16_document_properties.py │ ├── tagid17_id_mappings.py │ ├── tagid18_bin_data.py │ ├── tagid19_face_name.py │ ├── tagid20_border_fill.py │ ├── tagid21_char_shape.py │ ├── tagid22_tab_def.py │ ├── tagid23_numbering.py │ ├── tagid24_bullet.py │ ├── tagid25_para_shape.py │ ├── tagid26_style.py │ ├── tagid27_doc_data.py │ ├── tagid28_distribute_doc_data.py │ ├── tagid30_compatible_document.py │ ├── tagid31_layout_compatibility.py │ ├── tagid32_unknown.py │ ├── tagid50_para_header.py │ ├── tagid51_para_text.py │ ├── tagid52_para_char_shape.py │ ├── tagid53_para_line_seg.py │ ├── tagid54_para_range_tag.py │ ├── tagid55_ctrl_header.py │ ├── tagid56_list_header.py │ ├── tagid57_page_def.py │ ├── tagid58_footnote_shape.py │ ├── tagid59_page_border_fill.py │ ├── tagid60_shape_component.py │ ├── tagid61_table.py │ ├── tagid62_shape_component_line.py │ ├── tagid63_shape_component_rectangle.py │ ├── tagid64_shape_component_ellipse.py │ ├── tagid65_shape_component_arc.py │ ├── tagid66_shape_component_polygon.py │ ├── tagid67_shape_component_curve.py │ ├── tagid68_shape_component_ole.py │ ├── tagid69_shape_component_picture.py │ ├── tagid70_shape_component_container.py │ ├── tagid71_ctrl_data.py │ ├── tagid72_ctrl_eqedit.py │ ├── tagid74_shape_component_textart.py │ ├── tagid75_form_object.py │ ├── tagid76_memo_shape.py │ ├── tagid77_memo_list.py │ ├── tagid78_forbidden_char.py │ ├── tagid79_chart_data.py │ └── tagid99_shape_component_unknown.py │ ├── binspec.py │ ├── bintype.py │ ├── charsets.py │ ├── cli.py │ ├── compressed.py │ ├── dataio.py │ ├── distdoc.py │ ├── errors.py │ ├── filestructure.py │ ├── hwp5html.py │ ├── hwp5odt.py │ ├── hwp5proc.py │ ├── hwp5txt.py │ ├── hwp5view.py │ ├── importhelper.py │ ├── locale │ ├── hwp5html.pot │ ├── hwp5odt.pot │ ├── hwp5proc.pot │ ├── hwp5txt.pot │ ├── hwp5view.pot │ └── ko │ │ └── LC_MESSAGES │ │ ├── hwp5html.po │ │ ├── hwp5odt.po │ │ ├── hwp5proc.po │ │ ├── hwp5txt.po │ │ └── hwp5view.po │ ├── msoleprops.py │ ├── odf-relaxng │ ├── OpenDocument-manifest-schema-v1.0-os.rng │ ├── OpenDocument-manifest-schema-v1.1.rng │ ├── OpenDocument-schema-v1.0-os.rng │ ├── OpenDocument-schema-v1.1.rng │ ├── OpenDocument-strict-schema-v1.1.rng │ ├── OpenDocument-v1.2-os-dsig-schema.rng │ ├── OpenDocument-v1.2-os-manifest-schema.rng │ ├── OpenDocument-v1.2-os-metadata.owl │ ├── OpenDocument-v1.2-os-package-metadata.owl │ └── OpenDocument-v1.2-os-schema.rng │ ├── plat │ ├── __init__.py │ ├── _lxml.py │ ├── _uno │ │ ├── __init__.py │ │ ├── adapters.py │ │ ├── services.py │ │ └── ucb.py │ ├── gir_gsf.py │ ├── javax_transform.py │ ├── jython_poifs.py │ ├── olefileio.py │ ├── xmllint.py │ └── xsltproc.py │ ├── proc │ ├── __init__.py │ ├── cat.py │ ├── diststream.py │ ├── find.py │ ├── header.py │ ├── ls.py │ ├── models.py │ ├── rawunz.py │ ├── records.py │ ├── summaryinfo.py │ ├── unpack.py │ ├── version.py │ └── xml.py │ ├── recordstream.py │ ├── storage │ ├── __init__.py │ ├── fs.py │ └── ole.py │ ├── summaryinfo.py │ ├── tagids.py │ ├── transforms │ └── __init__.py │ ├── treeop.py │ ├── utils.py │ ├── xmldump_flat.py │ ├── xmlformat.py │ ├── xmlmodel.py │ ├── xsl │ ├── binspec2html.xsl │ ├── hwp5css-common.xsl │ ├── hwp5css.xsl │ ├── hwp5fodt.xsl │ ├── hwp5html.xsl │ ├── odt │ │ ├── common.xsl │ │ ├── content.xsl │ │ ├── document.xsl │ │ └── styles.xsl │ └── plaintext.xsl │ └── zlib_raw_codec.py ├── stdeb.cfg ├── tests ├── README.rst ├── cli_tests │ ├── hwp5html.txt │ ├── hwp5odt.txt │ ├── hwp5proc.txt │ └── hwp5txt.txt ├── hwp5_cli_tests.sh ├── hwp5_tests │ ├── __init__.py │ ├── fixtures │ │ ├── 5000-footnote-shape.dat │ │ ├── 5005-shapecomponent-with-colorpattern-and-gradation.dat │ │ ├── 5006-controldata.record │ │ ├── 5017-shapecomponent-with-colorpattern-and-gradation.bin │ │ ├── __init__.py │ │ ├── aligns.html.d │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── aligns.hwp │ │ ├── aligns.hwp.bodytext.section0.json │ │ ├── aligns.hwp.docinfo.json │ │ ├── aligns.hwp.formatted.xml │ │ ├── aligns.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── borderfill.html.d │ │ │ ├── bindata │ │ │ │ └── BIN0001.jpg │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── borderfill.hwp │ │ ├── borderfill.hwp.bodytext.section0.json │ │ ├── borderfill.hwp.docinfo.json │ │ ├── borderfill.hwp.formatted.xml │ │ ├── borderfill.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── bindata │ │ │ │ └── BIN0001.jpg │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── charshape.html.d │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── charshape.hwp │ │ ├── charshape.hwp.bodytext.section0.json │ │ ├── charshape.hwp.docinfo.json │ │ ├── charshape.hwp.formatted.xml │ │ ├── charshape.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── charstyle.html.d │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── charstyle.hwp │ │ ├── charstyle.hwp.bodytext.section0.json │ │ ├── charstyle.hwp.docinfo.json │ │ ├── charstyle.hwp.formatted.xml │ │ ├── charstyle.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── facename.html.d │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── facename.hwp │ │ ├── facename.hwp.bodytext.section0.json │ │ ├── facename.hwp.docinfo.json │ │ ├── facename.hwp.formatted.xml │ │ ├── facename.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── facename2.html.d │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── facename2.hwp │ │ ├── facename2.hwp.bodytext.section0.json │ │ ├── facename2.hwp.docinfo.json │ │ ├── facename2.hwp.formatted.xml │ │ ├── facename2.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── footnote-endnote.html.d │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── footnote-endnote.hwp │ │ ├── footnote-endnote.hwp.bodytext.section0.json │ │ ├── footnote-endnote.hwp.docinfo.json │ │ ├── footnote-endnote.hwp.formatted.xml │ │ ├── footnote-endnote.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── headerfooter.html.d │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── headerfooter.hwp │ │ ├── headerfooter.hwp.bodytext.section0.json │ │ ├── headerfooter.hwp.docinfo.json │ │ ├── headerfooter.hwp.formatted.xml │ │ ├── headerfooter.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── issue144-fields-crossing-lineseg-boundary.html.d │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── issue144-fields-crossing-lineseg-boundary.hwp │ │ ├── issue144-fields-crossing-lineseg-boundary.hwp.bodytext.section0.json │ │ ├── issue144-fields-crossing-lineseg-boundary.hwp.docinfo.json │ │ ├── issue144-fields-crossing-lineseg-boundary.hwp.formatted.xml │ │ ├── issue144-fields-crossing-lineseg-boundary.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── issue30.html.d │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── issue30.hwp │ │ ├── issue30.hwp.bodytext.section0.json │ │ ├── issue30.hwp.docinfo.json │ │ ├── issue30.hwp.formatted.xml │ │ ├── issue30.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── linespacing.html.d │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── linespacing.hwp │ │ ├── linespacing.hwp.bodytext.section0.json │ │ ├── linespacing.hwp.docinfo.json │ │ ├── linespacing.hwp.formatted.xml │ │ ├── linespacing.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── lists-bullet.html.d │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── lists-bullet.hwp │ │ ├── lists-bullet.hwp.bodytext.section0.json │ │ ├── lists-bullet.hwp.docinfo.json │ │ ├── lists-bullet.hwp.formatted.xml │ │ ├── lists-bullet.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── lists.html.d │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── lists.hwp │ │ ├── lists.hwp.bodytext.section0.json │ │ ├── lists.hwp.docinfo.json │ │ ├── lists.hwp.formatted.xml │ │ ├── lists.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── match-field-start-end.dat │ │ ├── matrix.html.d │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── matrix.hwp │ │ ├── matrix.hwp.bodytext.section0.json │ │ ├── matrix.hwp.docinfo.json │ │ ├── matrix.hwp.formatted.xml │ │ ├── matrix.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── multicolumns-in-common-controls.html.d │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── multicolumns-in-common-controls.hwp │ │ ├── multicolumns-in-common-controls.hwp.bodytext.section0.json │ │ ├── multicolumns-in-common-controls.hwp.docinfo.json │ │ ├── multicolumns-in-common-controls.hwp.formatted.xml │ │ ├── multicolumns-in-common-controls.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── multicolumns-layout.html.d │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── multicolumns-layout.hwp │ │ ├── multicolumns-layout.hwp.bodytext.section0.json │ │ ├── multicolumns-layout.hwp.docinfo.json │ │ ├── multicolumns-layout.hwp.formatted.xml │ │ ├── multicolumns-layout.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── multicolumns-widths.html.d │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── multicolumns-widths.hwp │ │ ├── multicolumns-widths.hwp.bodytext.section0.json │ │ ├── multicolumns-widths.hwp.docinfo.json │ │ ├── multicolumns-widths.hwp.formatted.xml │ │ ├── multicolumns-widths.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── multicolumns.html.d │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── multicolumns.hwp │ │ ├── multicolumns.hwp.bodytext.section0.json │ │ ├── multicolumns.hwp.docinfo.json │ │ ├── multicolumns.hwp.formatted.xml │ │ ├── multicolumns.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── nonhwp5stg │ │ │ └── dummy │ │ ├── nonole.txt │ │ ├── pagedefs.html.d │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── pagedefs.hwp │ │ ├── pagedefs.hwp.bodytext.section0.json │ │ ├── pagedefs.hwp.docinfo.json │ │ ├── pagedefs.hwp.formatted.xml │ │ ├── pagedefs.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── paragraph-split-page.html.d │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── paragraph-split-page.hwp │ │ ├── paragraph-split-page.hwp.bodytext.section0.json │ │ ├── paragraph-split-page.hwp.docinfo.json │ │ ├── paragraph-split-page.hwp.formatted.xml │ │ ├── paragraph-split-page.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── parashape.html.d │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── parashape.hwp │ │ ├── parashape.hwp.bodytext.section0.json │ │ ├── parashape.hwp.docinfo.json │ │ ├── parashape.hwp.formatted.xml │ │ ├── parashape.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── password-12345.hwp │ │ ├── sample-5017-pics.html.d │ │ │ ├── bindata │ │ │ │ ├── BIN0001.jpg │ │ │ │ ├── BIN0002.jpg │ │ │ │ ├── BIN0003.jpg │ │ │ │ ├── BIN0004.jpg │ │ │ │ ├── BIN0005.jpg │ │ │ │ ├── BIN0006.jpg │ │ │ │ ├── BIN0007.jpg │ │ │ │ ├── BIN0008.jpg │ │ │ │ ├── BIN0009.jpg │ │ │ │ ├── BIN000A.jpg │ │ │ │ ├── BIN000B.jpg │ │ │ │ └── BIN000C.jpg │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── sample-5017-pics.hwp │ │ ├── sample-5017-pics.hwp.bodytext.section0.json │ │ ├── sample-5017-pics.hwp.docinfo.json │ │ ├── sample-5017-pics.hwp.formatted.xml │ │ ├── sample-5017-pics.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── bindata │ │ │ │ ├── BIN0001.jpg │ │ │ │ ├── BIN0002.jpg │ │ │ │ ├── BIN0003.jpg │ │ │ │ ├── BIN0004.jpg │ │ │ │ ├── BIN0005.jpg │ │ │ │ ├── BIN0006.jpg │ │ │ │ ├── BIN0007.jpg │ │ │ │ ├── BIN0008.jpg │ │ │ │ ├── BIN0009.jpg │ │ │ │ ├── BIN000A.jpg │ │ │ │ ├── BIN000B.jpg │ │ │ │ └── BIN000C.jpg │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── sample-5017.html.d │ │ │ ├── bindata │ │ │ │ ├── BIN0002.jpg │ │ │ │ ├── BIN0002.png │ │ │ │ └── BIN0003.png │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── sample-5017.hwp │ │ ├── sample-5017.hwp.bodytext.section0.json │ │ ├── sample-5017.hwp.docinfo.json │ │ ├── sample-5017.hwp.formatted.xml │ │ ├── sample-5017.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── bindata │ │ │ │ ├── BIN0002.jpg │ │ │ │ ├── BIN0002.png │ │ │ │ └── BIN0003.png │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── shapecomponent-rect-fill.html.d │ │ │ ├── bindata │ │ │ │ └── BIN0001.jpg │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── shapecomponent-rect-fill.hwp │ │ ├── shapecomponent-rect-fill.hwp.bodytext.section0.json │ │ ├── shapecomponent-rect-fill.hwp.docinfo.json │ │ ├── shapecomponent-rect-fill.hwp.formatted.xml │ │ ├── shapecomponent-rect-fill.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── bindata │ │ │ │ └── BIN0001.jpg │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── shapecontainer-2.html.d │ │ │ ├── bindata │ │ │ │ └── BIN0001.jpg │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── shapecontainer-2.hwp │ │ ├── shapecontainer-2.hwp.bodytext.section0.json │ │ ├── shapecontainer-2.hwp.docinfo.json │ │ ├── shapecontainer-2.hwp.formatted.xml │ │ ├── shapecontainer-2.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── bindata │ │ │ │ └── BIN0001.jpg │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── shapeline.html.d │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── shapeline.hwp │ │ ├── shapeline.hwp.bodytext.section0.json │ │ ├── shapeline.hwp.docinfo.json │ │ ├── shapeline.hwp.formatted.xml │ │ ├── shapeline.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── shapepict-scaled.html.d │ │ │ ├── bindata │ │ │ │ └── BIN0002.jpg │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── shapepict-scaled.hwp │ │ ├── shapepict-scaled.hwp.bodytext.section0.json │ │ ├── shapepict-scaled.hwp.docinfo.json │ │ ├── shapepict-scaled.hwp.formatted.xml │ │ ├── shapepict-scaled.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── bindata │ │ │ │ └── BIN0002.jpg │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── shaperect.html.d │ │ │ ├── bindata │ │ │ │ ├── BIN0001.jpg │ │ │ │ └── BIN0002.jpg │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── shaperect.hwp │ │ ├── shaperect.hwp.bodytext.section0.json │ │ ├── shaperect.hwp.docinfo.json │ │ ├── shaperect.hwp.formatted.xml │ │ ├── shaperect.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── bindata │ │ │ │ ├── BIN0001.jpg │ │ │ │ └── BIN0002.jpg │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── tabdef.html.d │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── tabdef.hwp │ │ ├── tabdef.hwp.bodytext.section0.json │ │ ├── tabdef.hwp.docinfo.json │ │ ├── tabdef.hwp.formatted.xml │ │ ├── tabdef.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── table-caption.html.d │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── table-caption.hwp │ │ ├── table-caption.hwp.bodytext.section0.json │ │ ├── table-caption.hwp.docinfo.json │ │ ├── table-caption.hwp.formatted.xml │ │ ├── table-caption.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── table-position.html.d │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── table-position.hwp │ │ ├── table-position.hwp.bodytext.section0.json │ │ ├── table-position.hwp.docinfo.json │ │ ├── table-position.hwp.formatted.xml │ │ ├── table-position.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── table.html.d │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── table.hwp │ │ ├── table.hwp.bodytext.section0.json │ │ ├── table.hwp.docinfo.json │ │ ├── table.hwp.formatted.xml │ │ ├── table.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── textbox.html.d │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── textbox.hwp │ │ ├── textbox.hwp.bodytext.section0.json │ │ ├── textbox.hwp.docinfo.json │ │ ├── textbox.hwp.formatted.xml │ │ ├── textbox.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── underline-styles.html.d │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── underline-styles.hwp │ │ ├── underline-styles.hwp.bodytext.section0.json │ │ ├── underline-styles.hwp.docinfo.json │ │ ├── underline-styles.hwp.formatted.xml │ │ ├── underline-styles.odt.d │ │ │ ├── META-INF │ │ │ │ └── manifest.xml │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ │ ├── viewtext.html.d │ │ │ ├── index.formatted.xhtml │ │ │ ├── index.xhtml │ │ │ └── styles.css │ │ ├── viewtext.hwp │ │ ├── viewtext.hwp.bodytext.section0.json │ │ ├── viewtext.hwp.docinfo.json │ │ ├── viewtext.hwp.formatted.xml │ │ └── viewtext.odt.d │ │ │ ├── META-INF │ │ │ └── manifest.xml │ │ │ ├── content.xml │ │ │ ├── manifest.rdf │ │ │ ├── mimetype │ │ │ └── styles.xml │ ├── mixin_olestg.py │ ├── mixin_relaxng.py │ ├── mixin_xslt.py │ ├── test_binmodel.py │ ├── test_bintype.py │ ├── test_compressed.py │ ├── test_dataio.py │ ├── test_distdoc.py │ ├── test_filestructure.py │ ├── test_hwp5html.py │ ├── test_hwp5odt.py │ ├── test_odtxsl.py │ ├── test_ole.py │ ├── test_plat_gir_gsf.py │ ├── test_plat_javax_transform.py │ ├── test_plat_jython_poifs.py │ ├── test_plat_lxml.py │ ├── test_plat_olefileio.py │ ├── test_plat_uno.py │ ├── test_plat_xmllint.py │ ├── test_plat_xsltproc.py │ ├── test_recordstream.py │ ├── test_storage.py │ ├── test_treeop.py │ ├── test_utils.py │ ├── test_xmlformat.py │ └── test_xmlmodel.py ├── hwp5_xsl_tests │ ├── odt-common.xml │ ├── odt-content.xml │ └── odt-styles.xml └── setup.py ├── tools ├── README.rst ├── constants │ ├── pyhwp_dev_constants.py │ └── setup.py ├── discover.lo │ ├── discover_lo.py │ └── setup.py ├── discover.lxml │ ├── discover_lxml.py │ └── setup.py ├── discover.python │ ├── discover_python.py │ └── setup.py ├── download │ ├── pyhwp_download.py │ └── setup.py ├── egg.path │ ├── egg_path.py │ └── setup.py ├── gpl │ ├── gpl │ │ ├── Pysec.py │ │ ├── __init__.py │ │ ├── parsers.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── test_gpl.py │ └── setup.py ├── jingodf │ ├── jingodf │ │ ├── __init__.py │ │ └── schema │ │ │ ├── OpenDocument-manifest-schema-v1.0-os.rng │ │ │ ├── OpenDocument-manifest-schema-v1.1.rng │ │ │ ├── OpenDocument-schema-v1.0-os.rng │ │ │ ├── OpenDocument-schema-v1.1.rng │ │ │ ├── OpenDocument-strict-schema-v1.1.rng │ │ │ ├── OpenDocument-v1.2-os-dsig-schema.rng │ │ │ ├── OpenDocument-v1.2-os-manifest-schema.rng │ │ │ ├── OpenDocument-v1.2-os-metadata.owl │ │ │ ├── OpenDocument-v1.2-os-package-metadata.owl │ │ │ └── OpenDocument-v1.2-os-schema.rng │ └── setup.py ├── jxml │ ├── jxml.coverage │ │ ├── jxml_coverage.py │ │ └── setup.py │ ├── jxml │ │ ├── __init__.py │ │ └── etree │ │ │ └── __init__.py │ ├── lxml │ │ ├── lxml │ │ │ ├── __init__.py │ │ │ └── etree │ │ │ │ └── __init__.py │ │ └── setup.py │ ├── setup.py │ └── tests │ │ ├── Makefile │ │ ├── hello.xml │ │ ├── sample.xml │ │ ├── test_jaxp.py │ │ ├── test_lxml.py │ │ ├── text-output.xsl │ │ └── xsl │ │ ├── import-test.xsl │ │ └── imported.xsl ├── oxt.tool │ ├── oxt_tool │ │ ├── __init__.py │ │ ├── backend.py │ │ ├── description.py │ │ ├── manifest.py │ │ ├── package.py │ │ ├── remote.py │ │ ├── storage │ │ │ ├── __init__.py │ │ │ ├── _zipfile.py │ │ │ ├── fs.py │ │ │ └── path.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── mixin_storage.py │ │ │ ├── test_fs.py │ │ │ ├── test_package.py │ │ │ ├── test_storage_path.py │ │ │ └── test_zipfile.py │ └── setup.py ├── pyhwp.zestreleaser.cmds │ ├── CHANGES │ ├── COPYING │ ├── README.rst │ ├── pyhwp_zestreleaser_cmds.py │ └── setup.py ├── unpack │ ├── pyhwp_unpack.py │ └── setup.py └── xsltest │ ├── setup.py │ └── xsltest │ ├── __init__.py │ └── xmltool │ ├── __init__.py │ ├── subtree.py │ ├── wrap.py │ └── xslt.py ├── tox.ini ├── tox.ini.in └── unokit ├── setup.py └── unokit ├── __init__.py ├── adapters.py ├── configuration.py ├── contexts.py ├── services.py ├── singletons.py ├── tests ├── __init__.py ├── test_configuration.py ├── test_singletons.py └── test_ucb.py ├── ucb.py └── util.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | pyhwp/hwp5/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/CHANGES -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | COPYING -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/README -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- 1 | README -------------------------------------------------------------------------------- /VERSION.txt: -------------------------------------------------------------------------------- 1 | 0.1b16.dev0 2 | -------------------------------------------------------------------------------- /classifiers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/classifiers.txt -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/changes.rst: -------------------------------------------------------------------------------- 1 | ../CHANGES -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/converters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/docs/converters.rst -------------------------------------------------------------------------------- /docs/hacking/directory-layout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/docs/hacking/directory-layout.rst -------------------------------------------------------------------------------- /docs/hacking/directory-layout/bin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/docs/hacking/directory-layout/bin.rst -------------------------------------------------------------------------------- /docs/hacking/directory-layout/pyhwp-tests.rst: -------------------------------------------------------------------------------- 1 | ../../../pyhwp-tests/README.rst -------------------------------------------------------------------------------- /docs/hacking/directory-layout/pyhwp.rst: -------------------------------------------------------------------------------- 1 | ../../../pyhwp/README.rst -------------------------------------------------------------------------------- /docs/hacking/directory-layout/root.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/docs/hacking/directory-layout/root.rst -------------------------------------------------------------------------------- /docs/hacking/directory-layout/tools.rst: -------------------------------------------------------------------------------- 1 | ../../../tools/README.rst -------------------------------------------------------------------------------- /docs/hacking/hack-n-test.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/docs/hacking/hack-n-test.rst -------------------------------------------------------------------------------- /docs/hacking/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/docs/hacking/index.rst -------------------------------------------------------------------------------- /docs/hacking/setup-env.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/docs/hacking/setup-env.rst -------------------------------------------------------------------------------- /docs/hwp5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/docs/hwp5.rst -------------------------------------------------------------------------------- /docs/hwp5proc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/docs/hwp5proc.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/intro.rst: -------------------------------------------------------------------------------- 1 | ../README.rst -------------------------------------------------------------------------------- /docs/static/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/templates/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/translated/en/LC_MESSAGES/converters.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/docs/translated/en/LC_MESSAGES/converters.po -------------------------------------------------------------------------------- /docs/translated/en/LC_MESSAGES/hwp5proc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/docs/translated/en/LC_MESSAGES/hwp5proc.po -------------------------------------------------------------------------------- /docs/translated/en/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/docs/translated/en/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /docs/translated/en/LC_MESSAGES/intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/docs/translated/en/LC_MESSAGES/intro.po -------------------------------------------------------------------------------- /docs/translated/ko/LC_MESSAGES/converters.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/docs/translated/ko/LC_MESSAGES/converters.po -------------------------------------------------------------------------------- /docs/translated/ko/LC_MESSAGES/hwp5proc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/docs/translated/ko/LC_MESSAGES/hwp5proc.po -------------------------------------------------------------------------------- /docs/translated/ko/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/docs/translated/ko/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /docs/translated/ko/LC_MESSAGES/intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/docs/translated/ko/LC_MESSAGES/intro.po -------------------------------------------------------------------------------- /etc/pylint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/etc/pylint.rc -------------------------------------------------------------------------------- /etc/testlog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/etc/testlog.conf -------------------------------------------------------------------------------- /ez_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/ez_setup.py -------------------------------------------------------------------------------- /misc/cleanup-pyc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/misc/cleanup-pyc.py -------------------------------------------------------------------------------- /misc/copylxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/misc/copylxml.py -------------------------------------------------------------------------------- /misc/docs-upload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/misc/docs-upload -------------------------------------------------------------------------------- /misc/fix-coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/misc/fix-coverage.py -------------------------------------------------------------------------------- /misc/install-lxml.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/misc/install-lxml.py.in -------------------------------------------------------------------------------- /misc/mkdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/misc/mkdir.py -------------------------------------------------------------------------------- /misc/oxt-build.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/misc/oxt-build.in -------------------------------------------------------------------------------- /misc/prepare-hwp5-xsl-fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/misc/prepare-hwp5-xsl-fixtures.py -------------------------------------------------------------------------------- /misc/redirect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/misc/redirect.py -------------------------------------------------------------------------------- /misc/test-cli.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/misc/test-cli.in -------------------------------------------------------------------------------- /misc/test-cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/misc/test-cli.py -------------------------------------------------------------------------------- /misc/test-coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/misc/test-coverage -------------------------------------------------------------------------------- /misc/test-for-bisect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/misc/test-for-bisect -------------------------------------------------------------------------------- /misc/test-in-lo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/misc/test-in-lo.py -------------------------------------------------------------------------------- /misc/test-pypi.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/misc/test-pypi.in -------------------------------------------------------------------------------- /misc/test-sdist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/misc/test-sdist -------------------------------------------------------------------------------- /misc/test-sdist.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | bash ${buildout:directory}/misc/test-sdist 3 | -------------------------------------------------------------------------------- /misc/test-upload.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/misc/test-upload.in -------------------------------------------------------------------------------- /misc/test-xsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/misc/test-xsl.in -------------------------------------------------------------------------------- /misc/upload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/misc/upload -------------------------------------------------------------------------------- /notebooks/.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints 2 | -------------------------------------------------------------------------------- /oxt/Addons.xcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/oxt/Addons.xcu -------------------------------------------------------------------------------- /oxt/Filter.xcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/oxt/Filter.xcu -------------------------------------------------------------------------------- /oxt/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/oxt/META-INF/manifest.xml -------------------------------------------------------------------------------- /oxt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/oxt/Makefile -------------------------------------------------------------------------------- /oxt/Types.xcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/oxt/Types.xcu -------------------------------------------------------------------------------- /oxt/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/oxt/components.py -------------------------------------------------------------------------------- /oxt/description.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/oxt/description.xml -------------------------------------------------------------------------------- /oxt/description/desc_en.txt: -------------------------------------------------------------------------------- 1 | This extension enables you to read HWP Documents (v5 formats only). 2 | -------------------------------------------------------------------------------- /oxt/description/desc_ko.txt: -------------------------------------------------------------------------------- 1 | 한글(HWP) 문서 (포맷 버젼 5)을 읽을 수 있습니다. 2 | -------------------------------------------------------------------------------- /oxt/doc/references.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/oxt/doc/references.txt -------------------------------------------------------------------------------- /oxt/registration/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/oxt/registration/COPYING.txt -------------------------------------------------------------------------------- /pyhwp_uno/hwp5_uno/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/pyhwp_uno/hwp5_uno/__init__.py -------------------------------------------------------------------------------- /pyhwp_uno/hwp5_uno/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhwp_uno/hwp5_uno/tests/test_hwp5_uno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/pyhwp_uno/hwp5_uno/tests/test_hwp5_uno.py -------------------------------------------------------------------------------- /pyhwp_uno/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/pyhwp_uno/setup.py -------------------------------------------------------------------------------- /release-hooks/prerelease.after/10-docs-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/release-hooks/prerelease.after/10-docs-build -------------------------------------------------------------------------------- /release-hooks/prerelease.before/0-docs-update-po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/release-hooks/prerelease.before/0-docs-update-po -------------------------------------------------------------------------------- /release-hooks/release.after/10-test-pypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/release-hooks/release.after/10-test-pypi -------------------------------------------------------------------------------- /release-hooks/release.after/20-docs-upload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/release-hooks/release.after/20-docs-upload -------------------------------------------------------------------------------- /release-hooks/release.before/20-upload-to-testpypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/release-hooks/release.before/20-upload-to-testpypi -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements/dev.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/requirements/dev.in -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/requirements/dev.txt -------------------------------------------------------------------------------- /requirements/docs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/requirements/docs.in -------------------------------------------------------------------------------- /requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/requirements/docs.txt -------------------------------------------------------------------------------- /requirements/lint.in: -------------------------------------------------------------------------------- 1 | check-manifest 2 | flake8 3 | pyroma 4 | -------------------------------------------------------------------------------- /requirements/lint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/requirements/lint.txt -------------------------------------------------------------------------------- /requirements/test.in: -------------------------------------------------------------------------------- 1 | coverage >= 7.2.3 2 | -------------------------------------------------------------------------------- /requirements/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/requirements/test.txt -------------------------------------------------------------------------------- /samples: -------------------------------------------------------------------------------- 1 | tests/hwp5_tests/fixtures/ -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/setup.py -------------------------------------------------------------------------------- /src/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/README.rst -------------------------------------------------------------------------------- /src/hwp5/COPYING: -------------------------------------------------------------------------------- 1 | ../../COPYING -------------------------------------------------------------------------------- /src/hwp5/README: -------------------------------------------------------------------------------- 1 | ../../README -------------------------------------------------------------------------------- /src/hwp5/VERSION.txt: -------------------------------------------------------------------------------- 1 | ../../VERSION.txt -------------------------------------------------------------------------------- /src/hwp5/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/__init__.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/__init__.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/_shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/_shared.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/controlchar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/controlchar.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/controls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/controls/__init__.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/controls/_shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/controls/_shared.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/controls/bookmark_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/controls/bookmark_control.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/controls/columns_def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/controls/columns_def.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/controls/common_controls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/controls/common_controls.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/controls/dutmal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/controls/dutmal.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/controls/field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/controls/field.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/controls/gshape_object_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/controls/gshape_object_control.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/controls/header_footer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/controls/header_footer.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/controls/hidden_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/controls/hidden_comment.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/controls/index_marker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/controls/index_marker.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/controls/note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/controls/note.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/controls/numbering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/controls/numbering.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/controls/page_hide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/controls/page_hide.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/controls/page_number_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/controls/page_number_position.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/controls/page_odd_even.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/controls/page_odd_even.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/controls/section_def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/controls/section_def.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/controls/table_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/controls/table_control.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/controls/tcps_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/controls/tcps_control.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid16_document_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid16_document_properties.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid17_id_mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid17_id_mappings.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid18_bin_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid18_bin_data.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid19_face_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid19_face_name.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid20_border_fill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid20_border_fill.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid21_char_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid21_char_shape.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid22_tab_def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid22_tab_def.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid23_numbering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid23_numbering.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid24_bullet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid24_bullet.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid25_para_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid25_para_shape.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid26_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid26_style.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid27_doc_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid27_doc_data.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid28_distribute_doc_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid28_distribute_doc_data.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid30_compatible_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid30_compatible_document.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid31_layout_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid31_layout_compatibility.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid32_unknown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid32_unknown.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid50_para_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid50_para_header.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid51_para_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid51_para_text.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid52_para_char_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid52_para_char_shape.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid53_para_line_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid53_para_line_seg.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid54_para_range_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid54_para_range_tag.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid55_ctrl_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid55_ctrl_header.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid56_list_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid56_list_header.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid57_page_def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid57_page_def.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid58_footnote_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid58_footnote_shape.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid59_page_border_fill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid59_page_border_fill.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid60_shape_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid60_shape_component.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid61_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid61_table.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid62_shape_component_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid62_shape_component_line.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid63_shape_component_rectangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid63_shape_component_rectangle.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid64_shape_component_ellipse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid64_shape_component_ellipse.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid65_shape_component_arc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid65_shape_component_arc.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid66_shape_component_polygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid66_shape_component_polygon.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid67_shape_component_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid67_shape_component_curve.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid68_shape_component_ole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid68_shape_component_ole.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid69_shape_component_picture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid69_shape_component_picture.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid70_shape_component_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid70_shape_component_container.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid71_ctrl_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid71_ctrl_data.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid72_ctrl_eqedit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid72_ctrl_eqedit.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid74_shape_component_textart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid74_shape_component_textart.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid75_form_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid75_form_object.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid76_memo_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid76_memo_shape.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid77_memo_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid77_memo_list.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid78_forbidden_char.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid78_forbidden_char.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid79_chart_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid79_chart_data.py -------------------------------------------------------------------------------- /src/hwp5/binmodel/tagid99_shape_component_unknown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binmodel/tagid99_shape_component_unknown.py -------------------------------------------------------------------------------- /src/hwp5/binspec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/binspec.py -------------------------------------------------------------------------------- /src/hwp5/bintype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/bintype.py -------------------------------------------------------------------------------- /src/hwp5/charsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/charsets.py -------------------------------------------------------------------------------- /src/hwp5/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/cli.py -------------------------------------------------------------------------------- /src/hwp5/compressed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/compressed.py -------------------------------------------------------------------------------- /src/hwp5/dataio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/dataio.py -------------------------------------------------------------------------------- /src/hwp5/distdoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/distdoc.py -------------------------------------------------------------------------------- /src/hwp5/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/errors.py -------------------------------------------------------------------------------- /src/hwp5/filestructure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/filestructure.py -------------------------------------------------------------------------------- /src/hwp5/hwp5html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/hwp5html.py -------------------------------------------------------------------------------- /src/hwp5/hwp5odt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/hwp5odt.py -------------------------------------------------------------------------------- /src/hwp5/hwp5proc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/hwp5proc.py -------------------------------------------------------------------------------- /src/hwp5/hwp5txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/hwp5txt.py -------------------------------------------------------------------------------- /src/hwp5/hwp5view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/hwp5view.py -------------------------------------------------------------------------------- /src/hwp5/importhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/importhelper.py -------------------------------------------------------------------------------- /src/hwp5/locale/hwp5html.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/locale/hwp5html.pot -------------------------------------------------------------------------------- /src/hwp5/locale/hwp5odt.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/locale/hwp5odt.pot -------------------------------------------------------------------------------- /src/hwp5/locale/hwp5proc.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/locale/hwp5proc.pot -------------------------------------------------------------------------------- /src/hwp5/locale/hwp5txt.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/locale/hwp5txt.pot -------------------------------------------------------------------------------- /src/hwp5/locale/hwp5view.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/locale/hwp5view.pot -------------------------------------------------------------------------------- /src/hwp5/locale/ko/LC_MESSAGES/hwp5html.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/locale/ko/LC_MESSAGES/hwp5html.po -------------------------------------------------------------------------------- /src/hwp5/locale/ko/LC_MESSAGES/hwp5odt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/locale/ko/LC_MESSAGES/hwp5odt.po -------------------------------------------------------------------------------- /src/hwp5/locale/ko/LC_MESSAGES/hwp5proc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/locale/ko/LC_MESSAGES/hwp5proc.po -------------------------------------------------------------------------------- /src/hwp5/locale/ko/LC_MESSAGES/hwp5txt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/locale/ko/LC_MESSAGES/hwp5txt.po -------------------------------------------------------------------------------- /src/hwp5/locale/ko/LC_MESSAGES/hwp5view.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/locale/ko/LC_MESSAGES/hwp5view.po -------------------------------------------------------------------------------- /src/hwp5/msoleprops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/msoleprops.py -------------------------------------------------------------------------------- /src/hwp5/odf-relaxng/OpenDocument-manifest-schema-v1.0-os.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/odf-relaxng/OpenDocument-manifest-schema-v1.0-os.rng -------------------------------------------------------------------------------- /src/hwp5/odf-relaxng/OpenDocument-manifest-schema-v1.1.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/odf-relaxng/OpenDocument-manifest-schema-v1.1.rng -------------------------------------------------------------------------------- /src/hwp5/odf-relaxng/OpenDocument-schema-v1.0-os.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/odf-relaxng/OpenDocument-schema-v1.0-os.rng -------------------------------------------------------------------------------- /src/hwp5/odf-relaxng/OpenDocument-schema-v1.1.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/odf-relaxng/OpenDocument-schema-v1.1.rng -------------------------------------------------------------------------------- /src/hwp5/odf-relaxng/OpenDocument-strict-schema-v1.1.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/odf-relaxng/OpenDocument-strict-schema-v1.1.rng -------------------------------------------------------------------------------- /src/hwp5/odf-relaxng/OpenDocument-v1.2-os-dsig-schema.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/odf-relaxng/OpenDocument-v1.2-os-dsig-schema.rng -------------------------------------------------------------------------------- /src/hwp5/odf-relaxng/OpenDocument-v1.2-os-manifest-schema.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/odf-relaxng/OpenDocument-v1.2-os-manifest-schema.rng -------------------------------------------------------------------------------- /src/hwp5/odf-relaxng/OpenDocument-v1.2-os-metadata.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/odf-relaxng/OpenDocument-v1.2-os-metadata.owl -------------------------------------------------------------------------------- /src/hwp5/odf-relaxng/OpenDocument-v1.2-os-package-metadata.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/odf-relaxng/OpenDocument-v1.2-os-package-metadata.owl -------------------------------------------------------------------------------- /src/hwp5/odf-relaxng/OpenDocument-v1.2-os-schema.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/odf-relaxng/OpenDocument-v1.2-os-schema.rng -------------------------------------------------------------------------------- /src/hwp5/plat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/plat/__init__.py -------------------------------------------------------------------------------- /src/hwp5/plat/_lxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/plat/_lxml.py -------------------------------------------------------------------------------- /src/hwp5/plat/_uno/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/plat/_uno/__init__.py -------------------------------------------------------------------------------- /src/hwp5/plat/_uno/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/plat/_uno/adapters.py -------------------------------------------------------------------------------- /src/hwp5/plat/_uno/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/plat/_uno/services.py -------------------------------------------------------------------------------- /src/hwp5/plat/_uno/ucb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/plat/_uno/ucb.py -------------------------------------------------------------------------------- /src/hwp5/plat/gir_gsf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/plat/gir_gsf.py -------------------------------------------------------------------------------- /src/hwp5/plat/javax_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/plat/javax_transform.py -------------------------------------------------------------------------------- /src/hwp5/plat/jython_poifs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/plat/jython_poifs.py -------------------------------------------------------------------------------- /src/hwp5/plat/olefileio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/plat/olefileio.py -------------------------------------------------------------------------------- /src/hwp5/plat/xmllint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/plat/xmllint.py -------------------------------------------------------------------------------- /src/hwp5/plat/xsltproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/plat/xsltproc.py -------------------------------------------------------------------------------- /src/hwp5/proc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/proc/__init__.py -------------------------------------------------------------------------------- /src/hwp5/proc/cat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/proc/cat.py -------------------------------------------------------------------------------- /src/hwp5/proc/diststream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/proc/diststream.py -------------------------------------------------------------------------------- /src/hwp5/proc/find.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/proc/find.py -------------------------------------------------------------------------------- /src/hwp5/proc/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/proc/header.py -------------------------------------------------------------------------------- /src/hwp5/proc/ls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/proc/ls.py -------------------------------------------------------------------------------- /src/hwp5/proc/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/proc/models.py -------------------------------------------------------------------------------- /src/hwp5/proc/rawunz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/proc/rawunz.py -------------------------------------------------------------------------------- /src/hwp5/proc/records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/proc/records.py -------------------------------------------------------------------------------- /src/hwp5/proc/summaryinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/proc/summaryinfo.py -------------------------------------------------------------------------------- /src/hwp5/proc/unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/proc/unpack.py -------------------------------------------------------------------------------- /src/hwp5/proc/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/proc/version.py -------------------------------------------------------------------------------- /src/hwp5/proc/xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/proc/xml.py -------------------------------------------------------------------------------- /src/hwp5/recordstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/recordstream.py -------------------------------------------------------------------------------- /src/hwp5/storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/storage/__init__.py -------------------------------------------------------------------------------- /src/hwp5/storage/fs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/storage/fs.py -------------------------------------------------------------------------------- /src/hwp5/storage/ole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/storage/ole.py -------------------------------------------------------------------------------- /src/hwp5/summaryinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/summaryinfo.py -------------------------------------------------------------------------------- /src/hwp5/tagids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/tagids.py -------------------------------------------------------------------------------- /src/hwp5/transforms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/transforms/__init__.py -------------------------------------------------------------------------------- /src/hwp5/treeop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/treeop.py -------------------------------------------------------------------------------- /src/hwp5/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/utils.py -------------------------------------------------------------------------------- /src/hwp5/xmldump_flat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/xmldump_flat.py -------------------------------------------------------------------------------- /src/hwp5/xmlformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/xmlformat.py -------------------------------------------------------------------------------- /src/hwp5/xmlmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/xmlmodel.py -------------------------------------------------------------------------------- /src/hwp5/xsl/binspec2html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/xsl/binspec2html.xsl -------------------------------------------------------------------------------- /src/hwp5/xsl/hwp5css-common.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/xsl/hwp5css-common.xsl -------------------------------------------------------------------------------- /src/hwp5/xsl/hwp5css.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/xsl/hwp5css.xsl -------------------------------------------------------------------------------- /src/hwp5/xsl/hwp5fodt.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/xsl/hwp5fodt.xsl -------------------------------------------------------------------------------- /src/hwp5/xsl/hwp5html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/xsl/hwp5html.xsl -------------------------------------------------------------------------------- /src/hwp5/xsl/odt/common.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/xsl/odt/common.xsl -------------------------------------------------------------------------------- /src/hwp5/xsl/odt/content.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/xsl/odt/content.xsl -------------------------------------------------------------------------------- /src/hwp5/xsl/odt/document.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/xsl/odt/document.xsl -------------------------------------------------------------------------------- /src/hwp5/xsl/odt/styles.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/xsl/odt/styles.xsl -------------------------------------------------------------------------------- /src/hwp5/xsl/plaintext.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/xsl/plaintext.xsl -------------------------------------------------------------------------------- /src/hwp5/zlib_raw_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/src/hwp5/zlib_raw_codec.py -------------------------------------------------------------------------------- /stdeb.cfg: -------------------------------------------------------------------------------- 1 | [pyhwp] 2 | Forced-Upstream-Version: 0.1~b2 3 | -------------------------------------------------------------------------------- /tests/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/README.rst -------------------------------------------------------------------------------- /tests/cli_tests/hwp5html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/cli_tests/hwp5html.txt -------------------------------------------------------------------------------- /tests/cli_tests/hwp5odt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/cli_tests/hwp5odt.txt -------------------------------------------------------------------------------- /tests/cli_tests/hwp5proc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/cli_tests/hwp5proc.txt -------------------------------------------------------------------------------- /tests/cli_tests/hwp5txt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/cli_tests/hwp5txt.txt -------------------------------------------------------------------------------- /tests/hwp5_cli_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_cli_tests.sh -------------------------------------------------------------------------------- /tests/hwp5_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/__init__.py -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/5000-footnote-shape.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/5000-footnote-shape.dat -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/5006-controldata.record: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/5006-controldata.record -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/__init__.py -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/aligns.html.d/index.formatted.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/aligns.html.d/index.formatted.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/aligns.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/aligns.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/aligns.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/aligns.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/aligns.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/aligns.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/aligns.hwp.bodytext.section0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/aligns.hwp.bodytext.section0.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/aligns.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/aligns.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/aligns.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/aligns.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/aligns.odt.d/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/aligns.odt.d/META-INF/manifest.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/aligns.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/aligns.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/aligns.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/aligns.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/aligns.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/aligns.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/aligns.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/borderfill.html.d/bindata/BIN0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/borderfill.html.d/bindata/BIN0001.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/borderfill.html.d/index.formatted.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/borderfill.html.d/index.formatted.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/borderfill.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/borderfill.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/borderfill.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/borderfill.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/borderfill.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/borderfill.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/borderfill.hwp.bodytext.section0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/borderfill.hwp.bodytext.section0.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/borderfill.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/borderfill.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/borderfill.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/borderfill.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/borderfill.odt.d/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/borderfill.odt.d/META-INF/manifest.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/borderfill.odt.d/bindata/BIN0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/borderfill.odt.d/bindata/BIN0001.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/borderfill.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/borderfill.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/borderfill.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/borderfill.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/borderfill.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/borderfill.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/borderfill.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/charshape.html.d/index.formatted.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/charshape.html.d/index.formatted.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/charshape.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/charshape.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/charshape.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/charshape.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/charshape.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/charshape.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/charshape.hwp.bodytext.section0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/charshape.hwp.bodytext.section0.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/charshape.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/charshape.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/charshape.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/charshape.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/charshape.odt.d/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/charshape.odt.d/META-INF/manifest.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/charshape.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/charshape.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/charshape.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/charshape.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/charshape.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/charshape.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/charshape.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/charstyle.html.d/index.formatted.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/charstyle.html.d/index.formatted.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/charstyle.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/charstyle.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/charstyle.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/charstyle.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/charstyle.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/charstyle.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/charstyle.hwp.bodytext.section0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/charstyle.hwp.bodytext.section0.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/charstyle.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/charstyle.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/charstyle.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/charstyle.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/charstyle.odt.d/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/charstyle.odt.d/META-INF/manifest.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/charstyle.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/charstyle.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/charstyle.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/charstyle.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/charstyle.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/charstyle.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/charstyle.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/facename.html.d/index.formatted.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/facename.html.d/index.formatted.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/facename.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/facename.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/facename.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/facename.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/facename.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/facename.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/facename.hwp.bodytext.section0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/facename.hwp.bodytext.section0.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/facename.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/facename.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/facename.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/facename.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/facename.odt.d/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/facename.odt.d/META-INF/manifest.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/facename.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/facename.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/facename.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/facename.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/facename.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/facename.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/facename.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/facename2.html.d/index.formatted.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/facename2.html.d/index.formatted.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/facename2.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/facename2.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/facename2.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/facename2.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/facename2.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/facename2.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/facename2.hwp.bodytext.section0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/facename2.hwp.bodytext.section0.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/facename2.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/facename2.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/facename2.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/facename2.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/facename2.odt.d/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/facename2.odt.d/META-INF/manifest.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/facename2.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/facename2.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/facename2.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/facename2.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/facename2.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/facename2.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/facename2.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/footnote-endnote.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/footnote-endnote.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/footnote-endnote.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/footnote-endnote.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/footnote-endnote.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/footnote-endnote.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/footnote-endnote.hwp.bodytext.section0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/footnote-endnote.hwp.bodytext.section0.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/footnote-endnote.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/footnote-endnote.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/footnote-endnote.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/footnote-endnote.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/footnote-endnote.odt.d/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/footnote-endnote.odt.d/META-INF/manifest.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/footnote-endnote.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/footnote-endnote.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/footnote-endnote.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/footnote-endnote.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/footnote-endnote.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/footnote-endnote.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/footnote-endnote.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/headerfooter.html.d/index.formatted.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/headerfooter.html.d/index.formatted.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/headerfooter.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/headerfooter.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/headerfooter.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/headerfooter.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/headerfooter.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/headerfooter.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/headerfooter.hwp.bodytext.section0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/headerfooter.hwp.bodytext.section0.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/headerfooter.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/headerfooter.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/headerfooter.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/headerfooter.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/headerfooter.odt.d/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/headerfooter.odt.d/META-INF/manifest.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/headerfooter.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/headerfooter.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/headerfooter.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/headerfooter.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/headerfooter.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/headerfooter.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/headerfooter.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/issue144-fields-crossing-lineseg-boundary.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/issue30.html.d/index.formatted.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/issue30.html.d/index.formatted.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/issue30.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/issue30.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/issue30.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/issue30.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/issue30.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/issue30.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/issue30.hwp.bodytext.section0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/issue30.hwp.bodytext.section0.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/issue30.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/issue30.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/issue30.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/issue30.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/issue30.odt.d/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/issue30.odt.d/META-INF/manifest.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/issue30.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/issue30.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/issue30.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/issue30.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/issue30.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/issue30.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/issue30.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/linespacing.html.d/index.formatted.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/linespacing.html.d/index.formatted.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/linespacing.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/linespacing.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/linespacing.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/linespacing.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/linespacing.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/linespacing.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/linespacing.hwp.bodytext.section0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/linespacing.hwp.bodytext.section0.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/linespacing.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/linespacing.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/linespacing.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/linespacing.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/linespacing.odt.d/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/linespacing.odt.d/META-INF/manifest.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/linespacing.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/linespacing.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/linespacing.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/linespacing.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/linespacing.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/linespacing.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/linespacing.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/lists-bullet.html.d/index.formatted.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/lists-bullet.html.d/index.formatted.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/lists-bullet.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/lists-bullet.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/lists-bullet.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/lists-bullet.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/lists-bullet.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/lists-bullet.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/lists-bullet.hwp.bodytext.section0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/lists-bullet.hwp.bodytext.section0.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/lists-bullet.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/lists-bullet.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/lists-bullet.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/lists-bullet.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/lists-bullet.odt.d/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/lists-bullet.odt.d/META-INF/manifest.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/lists-bullet.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/lists-bullet.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/lists-bullet.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/lists-bullet.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/lists-bullet.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/lists-bullet.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/lists-bullet.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/lists.html.d/index.formatted.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/lists.html.d/index.formatted.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/lists.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/lists.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/lists.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/lists.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/lists.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/lists.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/lists.hwp.bodytext.section0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/lists.hwp.bodytext.section0.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/lists.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/lists.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/lists.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/lists.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/lists.odt.d/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/lists.odt.d/META-INF/manifest.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/lists.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/lists.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/lists.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/lists.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/lists.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/lists.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/lists.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/match-field-start-end.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/match-field-start-end.dat -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/matrix.html.d/index.formatted.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/matrix.html.d/index.formatted.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/matrix.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/matrix.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/matrix.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/matrix.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/matrix.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/matrix.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/matrix.hwp.bodytext.section0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/matrix.hwp.bodytext.section0.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/matrix.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/matrix.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/matrix.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/matrix.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/matrix.odt.d/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/matrix.odt.d/META-INF/manifest.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/matrix.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/matrix.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/matrix.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/matrix.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/matrix.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/matrix.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/matrix.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns-in-common-controls.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/multicolumns-in-common-controls.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns-in-common-controls.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns-layout.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/multicolumns-layout.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns-layout.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/multicolumns-layout.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns-layout.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/multicolumns-layout.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns-layout.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/multicolumns-layout.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns-layout.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/multicolumns-layout.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns-layout.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/multicolumns-layout.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns-layout.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/multicolumns-layout.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns-layout.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns-layout.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/multicolumns-layout.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns-widths.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/multicolumns-widths.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns-widths.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/multicolumns-widths.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns-widths.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/multicolumns-widths.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns-widths.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/multicolumns-widths.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns-widths.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/multicolumns-widths.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns-widths.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/multicolumns-widths.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns-widths.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/multicolumns-widths.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns-widths.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns-widths.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/multicolumns-widths.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns.html.d/index.formatted.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/multicolumns.html.d/index.formatted.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/multicolumns.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/multicolumns.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/multicolumns.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns.hwp.bodytext.section0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/multicolumns.hwp.bodytext.section0.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/multicolumns.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/multicolumns.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns.odt.d/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/multicolumns.odt.d/META-INF/manifest.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/multicolumns.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/multicolumns.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/multicolumns.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/multicolumns.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/nonhwp5stg/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/nonole.txt: -------------------------------------------------------------------------------- 1 | non-ole file 2 | -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/pagedefs.html.d/index.formatted.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/pagedefs.html.d/index.formatted.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/pagedefs.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/pagedefs.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/pagedefs.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/pagedefs.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/pagedefs.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/pagedefs.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/pagedefs.hwp.bodytext.section0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/pagedefs.hwp.bodytext.section0.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/pagedefs.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/pagedefs.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/pagedefs.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/pagedefs.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/pagedefs.odt.d/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/pagedefs.odt.d/META-INF/manifest.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/pagedefs.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/pagedefs.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/pagedefs.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/pagedefs.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/pagedefs.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/pagedefs.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/pagedefs.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/paragraph-split-page.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/paragraph-split-page.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/paragraph-split-page.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/paragraph-split-page.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/paragraph-split-page.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/paragraph-split-page.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/paragraph-split-page.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/paragraph-split-page.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/paragraph-split-page.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/paragraph-split-page.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/paragraph-split-page.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/paragraph-split-page.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/paragraph-split-page.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/paragraph-split-page.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/paragraph-split-page.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/paragraph-split-page.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/paragraph-split-page.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/parashape.html.d/index.formatted.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/parashape.html.d/index.formatted.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/parashape.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/parashape.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/parashape.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/parashape.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/parashape.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/parashape.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/parashape.hwp.bodytext.section0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/parashape.hwp.bodytext.section0.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/parashape.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/parashape.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/parashape.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/parashape.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/parashape.odt.d/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/parashape.odt.d/META-INF/manifest.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/parashape.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/parashape.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/parashape.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/parashape.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/parashape.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/parashape.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/parashape.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/password-12345.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/password-12345.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.html.d/bindata/BIN0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.html.d/bindata/BIN0001.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.html.d/bindata/BIN0002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.html.d/bindata/BIN0002.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.html.d/bindata/BIN0003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.html.d/bindata/BIN0003.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.html.d/bindata/BIN0004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.html.d/bindata/BIN0004.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.html.d/bindata/BIN0005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.html.d/bindata/BIN0005.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.html.d/bindata/BIN0006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.html.d/bindata/BIN0006.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.html.d/bindata/BIN0007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.html.d/bindata/BIN0007.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.html.d/bindata/BIN0008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.html.d/bindata/BIN0008.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.html.d/bindata/BIN0009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.html.d/bindata/BIN0009.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.html.d/bindata/BIN000A.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.html.d/bindata/BIN000A.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.html.d/bindata/BIN000B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.html.d/bindata/BIN000B.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.html.d/bindata/BIN000C.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.html.d/bindata/BIN000C.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.hwp.bodytext.section0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.hwp.bodytext.section0.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/META-INF/manifest.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/bindata/BIN0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/bindata/BIN0001.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/bindata/BIN0002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/bindata/BIN0002.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/bindata/BIN0003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/bindata/BIN0003.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/bindata/BIN0004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/bindata/BIN0004.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/bindata/BIN0005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/bindata/BIN0005.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/bindata/BIN0006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/bindata/BIN0006.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/bindata/BIN0007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/bindata/BIN0007.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/bindata/BIN0008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/bindata/BIN0008.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/bindata/BIN0009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/bindata/BIN0009.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/bindata/BIN000A.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/bindata/BIN000A.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/bindata/BIN000B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/bindata/BIN000B.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/bindata/BIN000C.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/bindata/BIN000C.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017-pics.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017.html.d/bindata/BIN0002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017.html.d/bindata/BIN0002.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017.html.d/bindata/BIN0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017.html.d/bindata/BIN0002.png -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017.html.d/bindata/BIN0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017.html.d/bindata/BIN0003.png -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017.html.d/index.formatted.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017.html.d/index.formatted.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017.hwp.bodytext.section0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017.hwp.bodytext.section0.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017.odt.d/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017.odt.d/META-INF/manifest.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017.odt.d/bindata/BIN0002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017.odt.d/bindata/BIN0002.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017.odt.d/bindata/BIN0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017.odt.d/bindata/BIN0002.png -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017.odt.d/bindata/BIN0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017.odt.d/bindata/BIN0003.png -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/sample-5017.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/sample-5017.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapecomponent-rect-fill.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapecomponent-rect-fill.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapecomponent-rect-fill.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapecomponent-rect-fill.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapecomponent-rect-fill.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapecomponent-rect-fill.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapecomponent-rect-fill.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapecomponent-rect-fill.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapecomponent-rect-fill.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapecomponent-rect-fill.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapecomponent-rect-fill.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapecomponent-rect-fill.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapecomponent-rect-fill.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapecomponent-rect-fill.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapecomponent-rect-fill.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapecomponent-rect-fill.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapecomponent-rect-fill.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapecontainer-2.html.d/bindata/BIN0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapecontainer-2.html.d/bindata/BIN0001.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapecontainer-2.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapecontainer-2.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapecontainer-2.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapecontainer-2.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapecontainer-2.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapecontainer-2.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapecontainer-2.hwp.bodytext.section0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapecontainer-2.hwp.bodytext.section0.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapecontainer-2.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapecontainer-2.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapecontainer-2.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapecontainer-2.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapecontainer-2.odt.d/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapecontainer-2.odt.d/META-INF/manifest.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapecontainer-2.odt.d/bindata/BIN0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapecontainer-2.odt.d/bindata/BIN0001.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapecontainer-2.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapecontainer-2.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapecontainer-2.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapecontainer-2.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapecontainer-2.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapecontainer-2.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapecontainer-2.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapeline.html.d/index.formatted.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapeline.html.d/index.formatted.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapeline.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapeline.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapeline.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapeline.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapeline.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapeline.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapeline.hwp.bodytext.section0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapeline.hwp.bodytext.section0.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapeline.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapeline.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapeline.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapeline.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapeline.odt.d/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapeline.odt.d/META-INF/manifest.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapeline.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapeline.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapeline.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapeline.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapeline.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapeline.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapeline.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapepict-scaled.html.d/bindata/BIN0002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapepict-scaled.html.d/bindata/BIN0002.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapepict-scaled.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapepict-scaled.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapepict-scaled.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapepict-scaled.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapepict-scaled.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapepict-scaled.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapepict-scaled.hwp.bodytext.section0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapepict-scaled.hwp.bodytext.section0.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapepict-scaled.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapepict-scaled.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapepict-scaled.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapepict-scaled.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapepict-scaled.odt.d/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapepict-scaled.odt.d/META-INF/manifest.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapepict-scaled.odt.d/bindata/BIN0002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapepict-scaled.odt.d/bindata/BIN0002.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapepict-scaled.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapepict-scaled.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapepict-scaled.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapepict-scaled.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapepict-scaled.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shapepict-scaled.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shapepict-scaled.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shaperect.html.d/bindata/BIN0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shaperect.html.d/bindata/BIN0001.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shaperect.html.d/bindata/BIN0002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shaperect.html.d/bindata/BIN0002.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shaperect.html.d/index.formatted.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shaperect.html.d/index.formatted.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shaperect.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shaperect.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shaperect.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shaperect.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shaperect.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shaperect.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shaperect.hwp.bodytext.section0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shaperect.hwp.bodytext.section0.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shaperect.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shaperect.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shaperect.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shaperect.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shaperect.odt.d/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shaperect.odt.d/META-INF/manifest.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shaperect.odt.d/bindata/BIN0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shaperect.odt.d/bindata/BIN0001.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shaperect.odt.d/bindata/BIN0002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shaperect.odt.d/bindata/BIN0002.jpg -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shaperect.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shaperect.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shaperect.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shaperect.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shaperect.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/shaperect.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/shaperect.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/tabdef.html.d/index.formatted.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/tabdef.html.d/index.formatted.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/tabdef.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/tabdef.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/tabdef.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/tabdef.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/tabdef.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/tabdef.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/tabdef.hwp.bodytext.section0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/tabdef.hwp.bodytext.section0.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/tabdef.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/tabdef.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/tabdef.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/tabdef.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/tabdef.odt.d/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/tabdef.odt.d/META-INF/manifest.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/tabdef.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/tabdef.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/tabdef.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/tabdef.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/tabdef.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/tabdef.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/tabdef.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table-caption.html.d/index.formatted.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table-caption.html.d/index.formatted.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table-caption.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table-caption.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table-caption.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table-caption.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table-caption.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table-caption.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table-caption.hwp.bodytext.section0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table-caption.hwp.bodytext.section0.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table-caption.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table-caption.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table-caption.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table-caption.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table-caption.odt.d/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table-caption.odt.d/META-INF/manifest.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table-caption.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table-caption.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table-caption.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table-caption.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table-caption.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table-caption.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table-caption.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table-position.html.d/index.formatted.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table-position.html.d/index.formatted.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table-position.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table-position.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table-position.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table-position.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table-position.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table-position.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table-position.hwp.bodytext.section0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table-position.hwp.bodytext.section0.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table-position.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table-position.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table-position.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table-position.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table-position.odt.d/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table-position.odt.d/META-INF/manifest.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table-position.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table-position.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table-position.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table-position.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table-position.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table-position.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table-position.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table.html.d/index.formatted.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table.html.d/index.formatted.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table.hwp.bodytext.section0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table.hwp.bodytext.section0.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table.odt.d/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table.odt.d/META-INF/manifest.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/table.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/table.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/textbox.html.d/index.formatted.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/textbox.html.d/index.formatted.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/textbox.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/textbox.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/textbox.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/textbox.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/textbox.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/textbox.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/textbox.hwp.bodytext.section0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/textbox.hwp.bodytext.section0.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/textbox.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/textbox.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/textbox.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/textbox.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/textbox.odt.d/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/textbox.odt.d/META-INF/manifest.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/textbox.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/textbox.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/textbox.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/textbox.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/textbox.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/textbox.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/textbox.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/underline-styles.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/underline-styles.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/underline-styles.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/underline-styles.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/underline-styles.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/underline-styles.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/underline-styles.hwp.bodytext.section0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/underline-styles.hwp.bodytext.section0.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/underline-styles.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/underline-styles.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/underline-styles.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/underline-styles.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/underline-styles.odt.d/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/underline-styles.odt.d/META-INF/manifest.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/underline-styles.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/underline-styles.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/underline-styles.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/underline-styles.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/underline-styles.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/underline-styles.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/underline-styles.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/viewtext.html.d/index.formatted.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/viewtext.html.d/index.formatted.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/viewtext.html.d/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/viewtext.html.d/index.xhtml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/viewtext.html.d/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/viewtext.html.d/styles.css -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/viewtext.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/viewtext.hwp -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/viewtext.hwp.bodytext.section0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/viewtext.hwp.bodytext.section0.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/viewtext.hwp.docinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/viewtext.hwp.docinfo.json -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/viewtext.hwp.formatted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/viewtext.hwp.formatted.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/viewtext.odt.d/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/viewtext.odt.d/META-INF/manifest.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/viewtext.odt.d/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/viewtext.odt.d/content.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/viewtext.odt.d/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/viewtext.odt.d/manifest.rdf -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/viewtext.odt.d/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /tests/hwp5_tests/fixtures/viewtext.odt.d/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/fixtures/viewtext.odt.d/styles.xml -------------------------------------------------------------------------------- /tests/hwp5_tests/mixin_olestg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/mixin_olestg.py -------------------------------------------------------------------------------- /tests/hwp5_tests/mixin_relaxng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/mixin_relaxng.py -------------------------------------------------------------------------------- /tests/hwp5_tests/mixin_xslt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/mixin_xslt.py -------------------------------------------------------------------------------- /tests/hwp5_tests/test_binmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/test_binmodel.py -------------------------------------------------------------------------------- /tests/hwp5_tests/test_bintype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/test_bintype.py -------------------------------------------------------------------------------- /tests/hwp5_tests/test_compressed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/test_compressed.py -------------------------------------------------------------------------------- /tests/hwp5_tests/test_dataio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/test_dataio.py -------------------------------------------------------------------------------- /tests/hwp5_tests/test_distdoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/test_distdoc.py -------------------------------------------------------------------------------- /tests/hwp5_tests/test_filestructure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/test_filestructure.py -------------------------------------------------------------------------------- /tests/hwp5_tests/test_hwp5html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/test_hwp5html.py -------------------------------------------------------------------------------- /tests/hwp5_tests/test_hwp5odt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/test_hwp5odt.py -------------------------------------------------------------------------------- /tests/hwp5_tests/test_odtxsl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/test_odtxsl.py -------------------------------------------------------------------------------- /tests/hwp5_tests/test_ole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/test_ole.py -------------------------------------------------------------------------------- /tests/hwp5_tests/test_plat_gir_gsf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/test_plat_gir_gsf.py -------------------------------------------------------------------------------- /tests/hwp5_tests/test_plat_javax_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/test_plat_javax_transform.py -------------------------------------------------------------------------------- /tests/hwp5_tests/test_plat_jython_poifs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/test_plat_jython_poifs.py -------------------------------------------------------------------------------- /tests/hwp5_tests/test_plat_lxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/test_plat_lxml.py -------------------------------------------------------------------------------- /tests/hwp5_tests/test_plat_olefileio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/test_plat_olefileio.py -------------------------------------------------------------------------------- /tests/hwp5_tests/test_plat_uno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/test_plat_uno.py -------------------------------------------------------------------------------- /tests/hwp5_tests/test_plat_xmllint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/test_plat_xmllint.py -------------------------------------------------------------------------------- /tests/hwp5_tests/test_plat_xsltproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/test_plat_xsltproc.py -------------------------------------------------------------------------------- /tests/hwp5_tests/test_recordstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/test_recordstream.py -------------------------------------------------------------------------------- /tests/hwp5_tests/test_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/test_storage.py -------------------------------------------------------------------------------- /tests/hwp5_tests/test_treeop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/test_treeop.py -------------------------------------------------------------------------------- /tests/hwp5_tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/test_utils.py -------------------------------------------------------------------------------- /tests/hwp5_tests/test_xmlformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/test_xmlformat.py -------------------------------------------------------------------------------- /tests/hwp5_tests/test_xmlmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_tests/test_xmlmodel.py -------------------------------------------------------------------------------- /tests/hwp5_xsl_tests/odt-common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_xsl_tests/odt-common.xml -------------------------------------------------------------------------------- /tests/hwp5_xsl_tests/odt-content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_xsl_tests/odt-content.xml -------------------------------------------------------------------------------- /tests/hwp5_xsl_tests/odt-styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/hwp5_xsl_tests/odt-styles.xml -------------------------------------------------------------------------------- /tests/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tests/setup.py -------------------------------------------------------------------------------- /tools/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/README.rst -------------------------------------------------------------------------------- /tools/constants/pyhwp_dev_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/constants/pyhwp_dev_constants.py -------------------------------------------------------------------------------- /tools/constants/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/constants/setup.py -------------------------------------------------------------------------------- /tools/discover.lo/discover_lo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/discover.lo/discover_lo.py -------------------------------------------------------------------------------- /tools/discover.lo/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/discover.lo/setup.py -------------------------------------------------------------------------------- /tools/discover.lxml/discover_lxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/discover.lxml/discover_lxml.py -------------------------------------------------------------------------------- /tools/discover.lxml/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/discover.lxml/setup.py -------------------------------------------------------------------------------- /tools/discover.python/discover_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/discover.python/discover_python.py -------------------------------------------------------------------------------- /tools/discover.python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/discover.python/setup.py -------------------------------------------------------------------------------- /tools/download/pyhwp_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/download/pyhwp_download.py -------------------------------------------------------------------------------- /tools/download/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/download/setup.py -------------------------------------------------------------------------------- /tools/egg.path/egg_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/egg.path/egg_path.py -------------------------------------------------------------------------------- /tools/egg.path/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/egg.path/setup.py -------------------------------------------------------------------------------- /tools/gpl/gpl/Pysec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/gpl/gpl/Pysec.py -------------------------------------------------------------------------------- /tools/gpl/gpl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/gpl/gpl/__init__.py -------------------------------------------------------------------------------- /tools/gpl/gpl/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/gpl/gpl/parsers.py -------------------------------------------------------------------------------- /tools/gpl/gpl/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/gpl/gpl/tests/test_gpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/gpl/gpl/tests/test_gpl.py -------------------------------------------------------------------------------- /tools/gpl/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/gpl/setup.py -------------------------------------------------------------------------------- /tools/jingodf/jingodf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/jingodf/jingodf/__init__.py -------------------------------------------------------------------------------- /tools/jingodf/jingodf/schema/OpenDocument-manifest-schema-v1.0-os.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/jingodf/jingodf/schema/OpenDocument-manifest-schema-v1.0-os.rng -------------------------------------------------------------------------------- /tools/jingodf/jingodf/schema/OpenDocument-manifest-schema-v1.1.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/jingodf/jingodf/schema/OpenDocument-manifest-schema-v1.1.rng -------------------------------------------------------------------------------- /tools/jingodf/jingodf/schema/OpenDocument-schema-v1.0-os.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/jingodf/jingodf/schema/OpenDocument-schema-v1.0-os.rng -------------------------------------------------------------------------------- /tools/jingodf/jingodf/schema/OpenDocument-schema-v1.1.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/jingodf/jingodf/schema/OpenDocument-schema-v1.1.rng -------------------------------------------------------------------------------- /tools/jingodf/jingodf/schema/OpenDocument-strict-schema-v1.1.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/jingodf/jingodf/schema/OpenDocument-strict-schema-v1.1.rng -------------------------------------------------------------------------------- /tools/jingodf/jingodf/schema/OpenDocument-v1.2-os-dsig-schema.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/jingodf/jingodf/schema/OpenDocument-v1.2-os-dsig-schema.rng -------------------------------------------------------------------------------- /tools/jingodf/jingodf/schema/OpenDocument-v1.2-os-manifest-schema.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/jingodf/jingodf/schema/OpenDocument-v1.2-os-manifest-schema.rng -------------------------------------------------------------------------------- /tools/jingodf/jingodf/schema/OpenDocument-v1.2-os-metadata.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/jingodf/jingodf/schema/OpenDocument-v1.2-os-metadata.owl -------------------------------------------------------------------------------- /tools/jingodf/jingodf/schema/OpenDocument-v1.2-os-package-metadata.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/jingodf/jingodf/schema/OpenDocument-v1.2-os-package-metadata.owl -------------------------------------------------------------------------------- /tools/jingodf/jingodf/schema/OpenDocument-v1.2-os-schema.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/jingodf/jingodf/schema/OpenDocument-v1.2-os-schema.rng -------------------------------------------------------------------------------- /tools/jingodf/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/jingodf/setup.py -------------------------------------------------------------------------------- /tools/jxml/jxml.coverage/jxml_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/jxml/jxml.coverage/jxml_coverage.py -------------------------------------------------------------------------------- /tools/jxml/jxml.coverage/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/jxml/jxml.coverage/setup.py -------------------------------------------------------------------------------- /tools/jxml/jxml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/jxml/jxml/etree/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/jxml/jxml/etree/__init__.py -------------------------------------------------------------------------------- /tools/jxml/lxml/lxml/__init__.py: -------------------------------------------------------------------------------- 1 | from jxml import * 2 | -------------------------------------------------------------------------------- /tools/jxml/lxml/lxml/etree/__init__.py: -------------------------------------------------------------------------------- 1 | from jxml.etree import * 2 | -------------------------------------------------------------------------------- /tools/jxml/lxml/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/jxml/lxml/setup.py -------------------------------------------------------------------------------- /tools/jxml/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/jxml/setup.py -------------------------------------------------------------------------------- /tools/jxml/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/jxml/tests/Makefile -------------------------------------------------------------------------------- /tools/jxml/tests/hello.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tools/jxml/tests/sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/jxml/tests/sample.xml -------------------------------------------------------------------------------- /tools/jxml/tests/test_jaxp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/jxml/tests/test_jaxp.py -------------------------------------------------------------------------------- /tools/jxml/tests/test_lxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/jxml/tests/test_lxml.py -------------------------------------------------------------------------------- /tools/jxml/tests/text-output.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/jxml/tests/text-output.xsl -------------------------------------------------------------------------------- /tools/jxml/tests/xsl/import-test.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/jxml/tests/xsl/import-test.xsl -------------------------------------------------------------------------------- /tools/jxml/tests/xsl/imported.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/jxml/tests/xsl/imported.xsl -------------------------------------------------------------------------------- /tools/oxt.tool/oxt_tool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/oxt.tool/oxt_tool/__init__.py -------------------------------------------------------------------------------- /tools/oxt.tool/oxt_tool/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/oxt.tool/oxt_tool/backend.py -------------------------------------------------------------------------------- /tools/oxt.tool/oxt_tool/description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/oxt.tool/oxt_tool/description.py -------------------------------------------------------------------------------- /tools/oxt.tool/oxt_tool/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/oxt.tool/oxt_tool/manifest.py -------------------------------------------------------------------------------- /tools/oxt.tool/oxt_tool/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/oxt.tool/oxt_tool/package.py -------------------------------------------------------------------------------- /tools/oxt.tool/oxt_tool/remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/oxt.tool/oxt_tool/remote.py -------------------------------------------------------------------------------- /tools/oxt.tool/oxt_tool/storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/oxt.tool/oxt_tool/storage/__init__.py -------------------------------------------------------------------------------- /tools/oxt.tool/oxt_tool/storage/_zipfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/oxt.tool/oxt_tool/storage/_zipfile.py -------------------------------------------------------------------------------- /tools/oxt.tool/oxt_tool/storage/fs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/oxt.tool/oxt_tool/storage/fs.py -------------------------------------------------------------------------------- /tools/oxt.tool/oxt_tool/storage/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/oxt.tool/oxt_tool/storage/path.py -------------------------------------------------------------------------------- /tools/oxt.tool/oxt_tool/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/oxt.tool/oxt_tool/tests/mixin_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/oxt.tool/oxt_tool/tests/mixin_storage.py -------------------------------------------------------------------------------- /tools/oxt.tool/oxt_tool/tests/test_fs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/oxt.tool/oxt_tool/tests/test_fs.py -------------------------------------------------------------------------------- /tools/oxt.tool/oxt_tool/tests/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/oxt.tool/oxt_tool/tests/test_package.py -------------------------------------------------------------------------------- /tools/oxt.tool/oxt_tool/tests/test_storage_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/oxt.tool/oxt_tool/tests/test_storage_path.py -------------------------------------------------------------------------------- /tools/oxt.tool/oxt_tool/tests/test_zipfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/oxt.tool/oxt_tool/tests/test_zipfile.py -------------------------------------------------------------------------------- /tools/oxt.tool/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/oxt.tool/setup.py -------------------------------------------------------------------------------- /tools/pyhwp.zestreleaser.cmds/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/pyhwp.zestreleaser.cmds/CHANGES -------------------------------------------------------------------------------- /tools/pyhwp.zestreleaser.cmds/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/pyhwp.zestreleaser.cmds/COPYING -------------------------------------------------------------------------------- /tools/pyhwp.zestreleaser.cmds/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/pyhwp.zestreleaser.cmds/README.rst -------------------------------------------------------------------------------- /tools/pyhwp.zestreleaser.cmds/pyhwp_zestreleaser_cmds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/pyhwp.zestreleaser.cmds/pyhwp_zestreleaser_cmds.py -------------------------------------------------------------------------------- /tools/pyhwp.zestreleaser.cmds/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/pyhwp.zestreleaser.cmds/setup.py -------------------------------------------------------------------------------- /tools/unpack/pyhwp_unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/unpack/pyhwp_unpack.py -------------------------------------------------------------------------------- /tools/unpack/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/unpack/setup.py -------------------------------------------------------------------------------- /tools/xsltest/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/xsltest/setup.py -------------------------------------------------------------------------------- /tools/xsltest/xsltest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/xsltest/xsltest/__init__.py -------------------------------------------------------------------------------- /tools/xsltest/xsltest/xmltool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/xsltest/xsltest/xmltool/__init__.py -------------------------------------------------------------------------------- /tools/xsltest/xsltest/xmltool/subtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/xsltest/xsltest/xmltool/subtree.py -------------------------------------------------------------------------------- /tools/xsltest/xsltest/xmltool/wrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/xsltest/xsltest/xmltool/wrap.py -------------------------------------------------------------------------------- /tools/xsltest/xsltest/xmltool/xslt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tools/xsltest/xsltest/xmltool/xslt.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tox.ini -------------------------------------------------------------------------------- /tox.ini.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/tox.ini.in -------------------------------------------------------------------------------- /unokit/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/unokit/setup.py -------------------------------------------------------------------------------- /unokit/unokit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/unokit/unokit/__init__.py -------------------------------------------------------------------------------- /unokit/unokit/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/unokit/unokit/adapters.py -------------------------------------------------------------------------------- /unokit/unokit/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/unokit/unokit/configuration.py -------------------------------------------------------------------------------- /unokit/unokit/contexts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/unokit/unokit/contexts.py -------------------------------------------------------------------------------- /unokit/unokit/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/unokit/unokit/services.py -------------------------------------------------------------------------------- /unokit/unokit/singletons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/unokit/unokit/singletons.py -------------------------------------------------------------------------------- /unokit/unokit/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unokit/unokit/tests/test_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/unokit/unokit/tests/test_configuration.py -------------------------------------------------------------------------------- /unokit/unokit/tests/test_singletons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/unokit/unokit/tests/test_singletons.py -------------------------------------------------------------------------------- /unokit/unokit/tests/test_ucb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/unokit/unokit/tests/test_ucb.py -------------------------------------------------------------------------------- /unokit/unokit/ucb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/unokit/unokit/ucb.py -------------------------------------------------------------------------------- /unokit/unokit/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mete0r/pyhwp/HEAD/unokit/unokit/util.py --------------------------------------------------------------------------------