├── .gitignore ├── .mailmap ├── BENCHMARK.txt ├── Dockerfile ├── INSTALL.txt ├── LICENSE.txt ├── MANIFEST ├── README.rst ├── RELEASE-0.78.0.md ├── archive ├── CHANGES.txt ├── RELEASE-0.12.0 ├── RELEASE-0.13.0 ├── RELEASE-0.14.0 ├── RELEASE-0.14.1 ├── RELEASE-0.14.2 ├── RELEASE-0.14.3 ├── RELEASE-0.14.4 ├── RELEASE-0.14.5 ├── RELEASE-0.14.6 ├── RELEASE-0.14.7 ├── RELEASE-0.14.8 ├── RELEASE-0.15.0 ├── RELEASE-0.15.1 ├── RELEASE-0.15.2 ├── RELEASE-0.15.3 ├── RELEASE-0.15.4 ├── RELEASE-0.15.5 ├── RELEASE-0.15.6 ├── RELEASE-0.16.0 ├── RELEASE-0.16.1 ├── RELEASE-0.16.10 ├── RELEASE-0.16.2 ├── RELEASE-0.16.3 ├── RELEASE-0.16.4 ├── RELEASE-0.16.5 ├── RELEASE-0.16.6 ├── RELEASE-0.16.7 ├── RELEASE-0.16.8 ├── RELEASE-0.16.9 ├── RELEASE-0.20.0 ├── RELEASE-0.20.1 ├── RELEASE-0.20.2 ├── RELEASE-0.20.3 ├── RELEASE-0.20.4 ├── RELEASE-0.20.5 ├── RELEASE-0.20.6 ├── RELEASE-0.20.7 ├── RELEASE-0.20.8 ├── RELEASE-0.50.0 ├── RELEASE-0.50.1 ├── RELEASE-0.50.2 ├── RELEASE-0.50.3 ├── RELEASE-0.50.4 ├── RELEASE-0.50.5 ├── RELEASE-0.50.6 ├── RELEASE-0.50.7 ├── RELEASE-0.50.8 ├── RELEASE-0.60.0 ├── RELEASE-0.60.1 ├── RELEASE-0.60.2 ├── RELEASE-0.60.3 ├── RELEASE-0.60.4 ├── RELEASE-0.60.5 ├── RELEASE-0.60.6 ├── RELEASE-0.60.7 ├── RELEASE-0.60.8 ├── RELEASE-0.61.0 ├── RELEASE-0.61.1 ├── RELEASE-0.61.2 ├── RELEASE-0.61.3 ├── RELEASE-0.61.4 ├── RELEASE-0.61.5 ├── RELEASE-0.62.0 ├── RELEASE-0.62.1 ├── RELEASE-0.62.2 ├── RELEASE-0.62.3 ├── RELEASE-0.62.4 ├── RELEASE-0.62.5 ├── RELEASE-0.62.6 ├── RELEASE-0.62.7 ├── RELEASE-0.62.8 ├── RELEASE-0.62.9 ├── RELEASE-0.75.0 ├── RELEASE-0.75.1 ├── RELEASE-0.75.2 ├── RELEASE-0.76.0.md ├── RELEASE-0.77.0.md ├── UPGRADE-0.14.0 ├── UPGRADE-0.15.0 ├── UPGRADE-0.16.0 ├── UPGRADE-0.16.2 ├── UPGRADE-0.16.3 ├── UPGRADE-0.20.0 ├── UPGRADE-0.50.0 ├── UPGRADE-0.60.0 ├── UPGRADE-0.61.0 ├── UPGRADE-0.62.0 └── UPGRADE-0.75.0 ├── circle.yml ├── docs ├── .gitignore ├── autodoc │ └── index.rst ├── conf.py ├── csv.rst ├── datatypes.rst ├── figures-src │ ├── gettext_l10n.svg │ ├── handlers.dot │ ├── packages.dot │ ├── stl.svg │ ├── task_tracker.png │ └── workflow.dot ├── fs.rst ├── handlers.rst ├── html.rst ├── http.rst ├── ical.rst ├── igettext.rst ├── index.rst ├── ipkg.rst ├── odf.rst ├── rss.rst ├── stl.rst ├── uri.rst ├── web.rst ├── windows.rst ├── workflow.rst ├── xapian.rst └── xml.rst ├── itools ├── __init__.py ├── core │ ├── __init__.py │ ├── _unix.py │ ├── _win.py │ ├── cache.py │ ├── freeze.py │ ├── lazy.py │ ├── mimetypes_.py │ ├── odict.py │ ├── prototypes.py │ ├── timezones.py │ └── utils.py ├── csv │ ├── __init__.py │ ├── csv_.py │ ├── parser.py │ └── table.py ├── database │ ├── __init__.py │ ├── backends │ │ ├── __init__.py │ │ ├── catalog.py │ │ ├── git.py │ │ ├── lfs.py │ │ ├── patchs.py │ │ └── registry.py │ ├── exceptions.py │ ├── fields.py │ ├── git.py │ ├── magic_.py │ ├── metadata.py │ ├── metadata_parser.py │ ├── pathtrie.py │ ├── queries.py │ ├── registry.py │ ├── resources.py │ ├── ro.py │ └── rw.py ├── datatypes │ ├── __init__.py │ ├── base.py │ ├── datetime_.py │ ├── languages.py │ └── primitive.py ├── fs │ ├── __init__.py │ ├── common.py │ └── lfs.py ├── gettext │ ├── __init__.py │ ├── domains.py │ ├── mo.py │ └── po.py ├── handlers │ ├── __init__.py │ ├── archive.py │ ├── base.py │ ├── config.py │ ├── file.py │ ├── folder.py │ ├── image.py │ ├── js.py │ ├── registry.py │ ├── text.py │ └── utils.py ├── html │ ├── __init__.py │ ├── filters.py │ ├── html-lat1.ent │ ├── html-special.ent │ ├── html-symbol.ent │ ├── html.py │ ├── html4.01-strict.dtd │ ├── parser.py │ ├── schema.py │ ├── xhtml-lat1.ent │ ├── xhtml-special.ent │ ├── xhtml-symbol.ent │ ├── xhtml.py │ ├── xhtml1-frameset.dtd │ ├── xhtml1-strict.dtd │ └── xhtml1-transitional.dtd ├── i18n │ ├── __init__.py │ ├── accept.py │ ├── fuzzy.py │ ├── languages.py │ ├── locale_.py │ └── oracle.py ├── ical │ ├── __init__.py │ ├── datatypes.py │ └── icalendar.py ├── locale │ ├── ca.po │ ├── de.po │ ├── en.po │ ├── es.po │ ├── fr.po │ ├── it.po │ ├── locale.pot │ ├── nl.po │ ├── nl_BE.po │ └── zh.po ├── loop │ ├── __init__.py │ └── loop.py ├── odf │ ├── OpenDocument-v1.2-cd05-schema.rng │ ├── __init__.py │ ├── odf.py │ ├── officeshots.ppm │ ├── oo.py │ ├── schema.py │ ├── square.svm │ ├── thumb.pdf │ ├── thumb.png │ └── thumb.svg ├── office │ ├── __init__.py │ ├── doctotext.cc │ ├── office.py │ ├── ole.py │ ├── ooxml.py │ ├── ppt.py │ └── rtf.py ├── pdf │ ├── __init__.py │ └── pdf.py ├── pkg │ ├── __init__.py │ ├── build.py │ ├── build_gulp.py │ ├── git.py │ ├── handlers.py │ ├── update_locale.py │ └── utils.py ├── python │ ├── __init__.py │ └── python.py ├── relaxng │ ├── __init__.py │ └── relaxng.py ├── rss │ ├── __init__.py │ └── rss.py ├── srx │ ├── __init__.py │ ├── default.srx │ ├── segment.py │ └── srx.py ├── stl │ ├── __init__.py │ ├── schema.py │ └── stl.py ├── tmx │ ├── __init__.py │ ├── tmx.py │ └── tmx14.dtd ├── uri │ ├── __init__.py │ ├── generic.py │ ├── mailto.py │ ├── registry.py │ └── uri.py ├── validators │ ├── __init__.py │ ├── base.py │ ├── database.py │ ├── exceptions.py │ ├── files.py │ ├── password.py │ ├── registry.py │ └── test_view.py ├── web │ ├── __init__.py │ ├── context.py │ ├── dispatcher.py │ ├── entities.py │ ├── exceptions.py │ ├── headers.py │ ├── messages.py │ ├── router.py │ ├── static.py │ ├── utils.py │ └── views.py ├── workflow │ ├── HOWTO.txt │ ├── TODO.txt │ ├── __init__.py │ └── workflow.py ├── xliff │ ├── __init__.py │ ├── schema.py │ ├── xliff.dtd │ └── xliff.py ├── xml │ ├── __init__.py │ ├── arp.c │ ├── arp.h │ ├── doctype.c │ ├── dublin_core.py │ ├── namespaces.py │ ├── parser.c │ ├── parser.h │ ├── pyparser.c │ ├── utils.py │ └── xml.py └── xmlfile │ ├── __init__.py │ ├── errors.py │ ├── i18n.py │ └── xmlfile.py ├── requirements.txt ├── scripts ├── idb-inspect.py ├── igettext-build.py ├── igettext-extract.py ├── igettext-merge.py ├── ipkg-build.py ├── ipkg-docs.py ├── ipkg-quality.py └── ipkg-update-locale.py ├── setup.conf ├── setup.py └── test ├── bench_xml.py ├── bench_xml_expat.py ├── bench_xml_itools.py ├── bench_xml_itools_c.c ├── fables └── database │ ├── 00.txt │ ├── 01.txt │ ├── 02.txt │ ├── 03.txt │ ├── 04.txt │ ├── 05.txt │ ├── 06.txt │ ├── 07.txt │ ├── 08.txt │ ├── 09.txt │ ├── 10.txt │ ├── 11.txt │ ├── 12.txt │ ├── 13.txt │ ├── 14.txt │ ├── 15.txt │ ├── 16.txt │ ├── 17.txt │ ├── 18.txt │ ├── 19.txt │ ├── 20.txt │ ├── 21.txt │ ├── 22.txt │ ├── 23.txt │ ├── 24.txt │ ├── 25.txt │ ├── 26.txt │ ├── 27.txt │ ├── 28.txt │ ├── 29.txt │ ├── 30.txt │ ├── 99.txt.fr │ ├── hello.txt.de │ ├── hello.txt.en │ ├── hello.txt.es │ └── hello.txt.fr ├── handlers └── test.tar.gz ├── odf ├── Document.odp ├── Document.ods └── Document.odt ├── test.py ├── test_core.py ├── test_csv.py ├── test_database.py ├── test_datatypes.py ├── test_dispatcher.py ├── test_fs.py ├── test_gettext.py ├── test_handlers.py ├── test_html.py ├── test_i18n.py ├── test_ical.py ├── test_odf.py ├── test_rss.py ├── test_srx.py ├── test_stl.py ├── test_tmx.py ├── test_uri.py ├── test_validators.py ├── test_web.py ├── test_workflow.py ├── test_xliff.py ├── test_xml.py ├── test_xmlfile.py └── tests ├── gettext_en_es.xlf ├── hello.txt ├── index.html.en ├── localizermsgs.tmx ├── sample-rss-2.xml ├── test.csv ├── test_adv.csv └── test_vtimezone.ics /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/.mailmap -------------------------------------------------------------------------------- /BENCHMARK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/BENCHMARK.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/Dockerfile -------------------------------------------------------------------------------- /INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/INSTALL.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/MANIFEST -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/README.rst -------------------------------------------------------------------------------- /RELEASE-0.78.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/RELEASE-0.78.0.md -------------------------------------------------------------------------------- /archive/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/CHANGES.txt -------------------------------------------------------------------------------- /archive/RELEASE-0.12.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.12.0 -------------------------------------------------------------------------------- /archive/RELEASE-0.13.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.13.0 -------------------------------------------------------------------------------- /archive/RELEASE-0.14.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.14.0 -------------------------------------------------------------------------------- /archive/RELEASE-0.14.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.14.1 -------------------------------------------------------------------------------- /archive/RELEASE-0.14.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.14.2 -------------------------------------------------------------------------------- /archive/RELEASE-0.14.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.14.3 -------------------------------------------------------------------------------- /archive/RELEASE-0.14.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.14.4 -------------------------------------------------------------------------------- /archive/RELEASE-0.14.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.14.5 -------------------------------------------------------------------------------- /archive/RELEASE-0.14.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.14.6 -------------------------------------------------------------------------------- /archive/RELEASE-0.14.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.14.7 -------------------------------------------------------------------------------- /archive/RELEASE-0.14.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.14.8 -------------------------------------------------------------------------------- /archive/RELEASE-0.15.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.15.0 -------------------------------------------------------------------------------- /archive/RELEASE-0.15.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.15.1 -------------------------------------------------------------------------------- /archive/RELEASE-0.15.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.15.2 -------------------------------------------------------------------------------- /archive/RELEASE-0.15.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.15.3 -------------------------------------------------------------------------------- /archive/RELEASE-0.15.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.15.4 -------------------------------------------------------------------------------- /archive/RELEASE-0.15.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.15.5 -------------------------------------------------------------------------------- /archive/RELEASE-0.15.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.15.6 -------------------------------------------------------------------------------- /archive/RELEASE-0.16.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.16.0 -------------------------------------------------------------------------------- /archive/RELEASE-0.16.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.16.1 -------------------------------------------------------------------------------- /archive/RELEASE-0.16.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.16.10 -------------------------------------------------------------------------------- /archive/RELEASE-0.16.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.16.2 -------------------------------------------------------------------------------- /archive/RELEASE-0.16.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.16.3 -------------------------------------------------------------------------------- /archive/RELEASE-0.16.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.16.4 -------------------------------------------------------------------------------- /archive/RELEASE-0.16.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.16.5 -------------------------------------------------------------------------------- /archive/RELEASE-0.16.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.16.6 -------------------------------------------------------------------------------- /archive/RELEASE-0.16.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.16.7 -------------------------------------------------------------------------------- /archive/RELEASE-0.16.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.16.8 -------------------------------------------------------------------------------- /archive/RELEASE-0.16.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.16.9 -------------------------------------------------------------------------------- /archive/RELEASE-0.20.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.20.0 -------------------------------------------------------------------------------- /archive/RELEASE-0.20.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.20.1 -------------------------------------------------------------------------------- /archive/RELEASE-0.20.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.20.2 -------------------------------------------------------------------------------- /archive/RELEASE-0.20.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.20.3 -------------------------------------------------------------------------------- /archive/RELEASE-0.20.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.20.4 -------------------------------------------------------------------------------- /archive/RELEASE-0.20.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.20.5 -------------------------------------------------------------------------------- /archive/RELEASE-0.20.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.20.6 -------------------------------------------------------------------------------- /archive/RELEASE-0.20.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.20.7 -------------------------------------------------------------------------------- /archive/RELEASE-0.20.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.20.8 -------------------------------------------------------------------------------- /archive/RELEASE-0.50.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.50.0 -------------------------------------------------------------------------------- /archive/RELEASE-0.50.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.50.1 -------------------------------------------------------------------------------- /archive/RELEASE-0.50.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.50.2 -------------------------------------------------------------------------------- /archive/RELEASE-0.50.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.50.3 -------------------------------------------------------------------------------- /archive/RELEASE-0.50.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.50.4 -------------------------------------------------------------------------------- /archive/RELEASE-0.50.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.50.5 -------------------------------------------------------------------------------- /archive/RELEASE-0.50.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.50.6 -------------------------------------------------------------------------------- /archive/RELEASE-0.50.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.50.7 -------------------------------------------------------------------------------- /archive/RELEASE-0.50.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.50.8 -------------------------------------------------------------------------------- /archive/RELEASE-0.60.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.60.0 -------------------------------------------------------------------------------- /archive/RELEASE-0.60.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.60.1 -------------------------------------------------------------------------------- /archive/RELEASE-0.60.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.60.2 -------------------------------------------------------------------------------- /archive/RELEASE-0.60.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.60.3 -------------------------------------------------------------------------------- /archive/RELEASE-0.60.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.60.4 -------------------------------------------------------------------------------- /archive/RELEASE-0.60.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.60.5 -------------------------------------------------------------------------------- /archive/RELEASE-0.60.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.60.6 -------------------------------------------------------------------------------- /archive/RELEASE-0.60.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.60.7 -------------------------------------------------------------------------------- /archive/RELEASE-0.60.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.60.8 -------------------------------------------------------------------------------- /archive/RELEASE-0.61.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.61.0 -------------------------------------------------------------------------------- /archive/RELEASE-0.61.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.61.1 -------------------------------------------------------------------------------- /archive/RELEASE-0.61.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.61.2 -------------------------------------------------------------------------------- /archive/RELEASE-0.61.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.61.3 -------------------------------------------------------------------------------- /archive/RELEASE-0.61.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.61.4 -------------------------------------------------------------------------------- /archive/RELEASE-0.61.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.61.5 -------------------------------------------------------------------------------- /archive/RELEASE-0.62.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.62.0 -------------------------------------------------------------------------------- /archive/RELEASE-0.62.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.62.1 -------------------------------------------------------------------------------- /archive/RELEASE-0.62.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.62.2 -------------------------------------------------------------------------------- /archive/RELEASE-0.62.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.62.3 -------------------------------------------------------------------------------- /archive/RELEASE-0.62.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.62.4 -------------------------------------------------------------------------------- /archive/RELEASE-0.62.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.62.5 -------------------------------------------------------------------------------- /archive/RELEASE-0.62.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.62.6 -------------------------------------------------------------------------------- /archive/RELEASE-0.62.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.62.7 -------------------------------------------------------------------------------- /archive/RELEASE-0.62.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.62.8 -------------------------------------------------------------------------------- /archive/RELEASE-0.62.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.62.9 -------------------------------------------------------------------------------- /archive/RELEASE-0.75.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.75.0 -------------------------------------------------------------------------------- /archive/RELEASE-0.75.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.75.1 -------------------------------------------------------------------------------- /archive/RELEASE-0.75.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.75.2 -------------------------------------------------------------------------------- /archive/RELEASE-0.76.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.76.0.md -------------------------------------------------------------------------------- /archive/RELEASE-0.77.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/RELEASE-0.77.0.md -------------------------------------------------------------------------------- /archive/UPGRADE-0.14.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/UPGRADE-0.14.0 -------------------------------------------------------------------------------- /archive/UPGRADE-0.15.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/UPGRADE-0.15.0 -------------------------------------------------------------------------------- /archive/UPGRADE-0.16.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/UPGRADE-0.16.0 -------------------------------------------------------------------------------- /archive/UPGRADE-0.16.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/UPGRADE-0.16.2 -------------------------------------------------------------------------------- /archive/UPGRADE-0.16.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/UPGRADE-0.16.3 -------------------------------------------------------------------------------- /archive/UPGRADE-0.20.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/UPGRADE-0.20.0 -------------------------------------------------------------------------------- /archive/UPGRADE-0.50.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/UPGRADE-0.50.0 -------------------------------------------------------------------------------- /archive/UPGRADE-0.60.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/UPGRADE-0.60.0 -------------------------------------------------------------------------------- /archive/UPGRADE-0.61.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/UPGRADE-0.61.0 -------------------------------------------------------------------------------- /archive/UPGRADE-0.62.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/UPGRADE-0.62.0 -------------------------------------------------------------------------------- /archive/UPGRADE-0.75.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/archive/UPGRADE-0.75.0 -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/circle.yml -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | figures 3 | autodoc/modules 4 | -------------------------------------------------------------------------------- /docs/autodoc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/docs/autodoc/index.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/csv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/docs/csv.rst -------------------------------------------------------------------------------- /docs/datatypes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/docs/datatypes.rst -------------------------------------------------------------------------------- /docs/figures-src/gettext_l10n.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/docs/figures-src/gettext_l10n.svg -------------------------------------------------------------------------------- /docs/figures-src/handlers.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/docs/figures-src/handlers.dot -------------------------------------------------------------------------------- /docs/figures-src/packages.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/docs/figures-src/packages.dot -------------------------------------------------------------------------------- /docs/figures-src/stl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/docs/figures-src/stl.svg -------------------------------------------------------------------------------- /docs/figures-src/task_tracker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/docs/figures-src/task_tracker.png -------------------------------------------------------------------------------- /docs/figures-src/workflow.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/docs/figures-src/workflow.dot -------------------------------------------------------------------------------- /docs/fs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/docs/fs.rst -------------------------------------------------------------------------------- /docs/handlers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/docs/handlers.rst -------------------------------------------------------------------------------- /docs/html.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/docs/html.rst -------------------------------------------------------------------------------- /docs/http.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/docs/http.rst -------------------------------------------------------------------------------- /docs/ical.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/docs/ical.rst -------------------------------------------------------------------------------- /docs/igettext.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/docs/igettext.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/ipkg.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/docs/ipkg.rst -------------------------------------------------------------------------------- /docs/odf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/docs/odf.rst -------------------------------------------------------------------------------- /docs/rss.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/docs/rss.rst -------------------------------------------------------------------------------- /docs/stl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/docs/stl.rst -------------------------------------------------------------------------------- /docs/uri.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/docs/uri.rst -------------------------------------------------------------------------------- /docs/web.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/docs/web.rst -------------------------------------------------------------------------------- /docs/windows.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/docs/windows.rst -------------------------------------------------------------------------------- /docs/workflow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/docs/workflow.rst -------------------------------------------------------------------------------- /docs/xapian.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/docs/xapian.rst -------------------------------------------------------------------------------- /docs/xml.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/docs/xml.rst -------------------------------------------------------------------------------- /itools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/__init__.py -------------------------------------------------------------------------------- /itools/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/core/__init__.py -------------------------------------------------------------------------------- /itools/core/_unix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/core/_unix.py -------------------------------------------------------------------------------- /itools/core/_win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/core/_win.py -------------------------------------------------------------------------------- /itools/core/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/core/cache.py -------------------------------------------------------------------------------- /itools/core/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/core/freeze.py -------------------------------------------------------------------------------- /itools/core/lazy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/core/lazy.py -------------------------------------------------------------------------------- /itools/core/mimetypes_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/core/mimetypes_.py -------------------------------------------------------------------------------- /itools/core/odict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/core/odict.py -------------------------------------------------------------------------------- /itools/core/prototypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/core/prototypes.py -------------------------------------------------------------------------------- /itools/core/timezones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/core/timezones.py -------------------------------------------------------------------------------- /itools/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/core/utils.py -------------------------------------------------------------------------------- /itools/csv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/csv/__init__.py -------------------------------------------------------------------------------- /itools/csv/csv_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/csv/csv_.py -------------------------------------------------------------------------------- /itools/csv/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/csv/parser.py -------------------------------------------------------------------------------- /itools/csv/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/csv/table.py -------------------------------------------------------------------------------- /itools/database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/database/__init__.py -------------------------------------------------------------------------------- /itools/database/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/database/backends/__init__.py -------------------------------------------------------------------------------- /itools/database/backends/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/database/backends/catalog.py -------------------------------------------------------------------------------- /itools/database/backends/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/database/backends/git.py -------------------------------------------------------------------------------- /itools/database/backends/lfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/database/backends/lfs.py -------------------------------------------------------------------------------- /itools/database/backends/patchs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/database/backends/patchs.py -------------------------------------------------------------------------------- /itools/database/backends/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/database/backends/registry.py -------------------------------------------------------------------------------- /itools/database/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/database/exceptions.py -------------------------------------------------------------------------------- /itools/database/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/database/fields.py -------------------------------------------------------------------------------- /itools/database/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/database/git.py -------------------------------------------------------------------------------- /itools/database/magic_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/database/magic_.py -------------------------------------------------------------------------------- /itools/database/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/database/metadata.py -------------------------------------------------------------------------------- /itools/database/metadata_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/database/metadata_parser.py -------------------------------------------------------------------------------- /itools/database/pathtrie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/database/pathtrie.py -------------------------------------------------------------------------------- /itools/database/queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/database/queries.py -------------------------------------------------------------------------------- /itools/database/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/database/registry.py -------------------------------------------------------------------------------- /itools/database/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/database/resources.py -------------------------------------------------------------------------------- /itools/database/ro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/database/ro.py -------------------------------------------------------------------------------- /itools/database/rw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/database/rw.py -------------------------------------------------------------------------------- /itools/datatypes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/datatypes/__init__.py -------------------------------------------------------------------------------- /itools/datatypes/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/datatypes/base.py -------------------------------------------------------------------------------- /itools/datatypes/datetime_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/datatypes/datetime_.py -------------------------------------------------------------------------------- /itools/datatypes/languages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/datatypes/languages.py -------------------------------------------------------------------------------- /itools/datatypes/primitive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/datatypes/primitive.py -------------------------------------------------------------------------------- /itools/fs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/fs/__init__.py -------------------------------------------------------------------------------- /itools/fs/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/fs/common.py -------------------------------------------------------------------------------- /itools/fs/lfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/fs/lfs.py -------------------------------------------------------------------------------- /itools/gettext/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/gettext/__init__.py -------------------------------------------------------------------------------- /itools/gettext/domains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/gettext/domains.py -------------------------------------------------------------------------------- /itools/gettext/mo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/gettext/mo.py -------------------------------------------------------------------------------- /itools/gettext/po.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/gettext/po.py -------------------------------------------------------------------------------- /itools/handlers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/handlers/__init__.py -------------------------------------------------------------------------------- /itools/handlers/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/handlers/archive.py -------------------------------------------------------------------------------- /itools/handlers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/handlers/base.py -------------------------------------------------------------------------------- /itools/handlers/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/handlers/config.py -------------------------------------------------------------------------------- /itools/handlers/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/handlers/file.py -------------------------------------------------------------------------------- /itools/handlers/folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/handlers/folder.py -------------------------------------------------------------------------------- /itools/handlers/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/handlers/image.py -------------------------------------------------------------------------------- /itools/handlers/js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/handlers/js.py -------------------------------------------------------------------------------- /itools/handlers/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/handlers/registry.py -------------------------------------------------------------------------------- /itools/handlers/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/handlers/text.py -------------------------------------------------------------------------------- /itools/handlers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/handlers/utils.py -------------------------------------------------------------------------------- /itools/html/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/html/__init__.py -------------------------------------------------------------------------------- /itools/html/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/html/filters.py -------------------------------------------------------------------------------- /itools/html/html-lat1.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/html/html-lat1.ent -------------------------------------------------------------------------------- /itools/html/html-special.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/html/html-special.ent -------------------------------------------------------------------------------- /itools/html/html-symbol.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/html/html-symbol.ent -------------------------------------------------------------------------------- /itools/html/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/html/html.py -------------------------------------------------------------------------------- /itools/html/html4.01-strict.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/html/html4.01-strict.dtd -------------------------------------------------------------------------------- /itools/html/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/html/parser.py -------------------------------------------------------------------------------- /itools/html/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/html/schema.py -------------------------------------------------------------------------------- /itools/html/xhtml-lat1.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/html/xhtml-lat1.ent -------------------------------------------------------------------------------- /itools/html/xhtml-special.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/html/xhtml-special.ent -------------------------------------------------------------------------------- /itools/html/xhtml-symbol.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/html/xhtml-symbol.ent -------------------------------------------------------------------------------- /itools/html/xhtml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/html/xhtml.py -------------------------------------------------------------------------------- /itools/html/xhtml1-frameset.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/html/xhtml1-frameset.dtd -------------------------------------------------------------------------------- /itools/html/xhtml1-strict.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/html/xhtml1-strict.dtd -------------------------------------------------------------------------------- /itools/html/xhtml1-transitional.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/html/xhtml1-transitional.dtd -------------------------------------------------------------------------------- /itools/i18n/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/i18n/__init__.py -------------------------------------------------------------------------------- /itools/i18n/accept.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/i18n/accept.py -------------------------------------------------------------------------------- /itools/i18n/fuzzy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/i18n/fuzzy.py -------------------------------------------------------------------------------- /itools/i18n/languages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/i18n/languages.py -------------------------------------------------------------------------------- /itools/i18n/locale_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/i18n/locale_.py -------------------------------------------------------------------------------- /itools/i18n/oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/i18n/oracle.py -------------------------------------------------------------------------------- /itools/ical/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/ical/__init__.py -------------------------------------------------------------------------------- /itools/ical/datatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/ical/datatypes.py -------------------------------------------------------------------------------- /itools/ical/icalendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/ical/icalendar.py -------------------------------------------------------------------------------- /itools/locale/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/locale/ca.po -------------------------------------------------------------------------------- /itools/locale/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/locale/de.po -------------------------------------------------------------------------------- /itools/locale/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/locale/en.po -------------------------------------------------------------------------------- /itools/locale/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/locale/es.po -------------------------------------------------------------------------------- /itools/locale/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/locale/fr.po -------------------------------------------------------------------------------- /itools/locale/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/locale/it.po -------------------------------------------------------------------------------- /itools/locale/locale.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/locale/locale.pot -------------------------------------------------------------------------------- /itools/locale/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/locale/nl.po -------------------------------------------------------------------------------- /itools/locale/nl_BE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/locale/nl_BE.po -------------------------------------------------------------------------------- /itools/locale/zh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/locale/zh.po -------------------------------------------------------------------------------- /itools/loop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/loop/__init__.py -------------------------------------------------------------------------------- /itools/loop/loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/loop/loop.py -------------------------------------------------------------------------------- /itools/odf/OpenDocument-v1.2-cd05-schema.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/odf/OpenDocument-v1.2-cd05-schema.rng -------------------------------------------------------------------------------- /itools/odf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/odf/__init__.py -------------------------------------------------------------------------------- /itools/odf/odf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/odf/odf.py -------------------------------------------------------------------------------- /itools/odf/officeshots.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/odf/officeshots.ppm -------------------------------------------------------------------------------- /itools/odf/oo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/odf/oo.py -------------------------------------------------------------------------------- /itools/odf/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/odf/schema.py -------------------------------------------------------------------------------- /itools/odf/square.svm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/odf/square.svm -------------------------------------------------------------------------------- /itools/odf/thumb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/odf/thumb.pdf -------------------------------------------------------------------------------- /itools/odf/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/odf/thumb.png -------------------------------------------------------------------------------- /itools/odf/thumb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/odf/thumb.svg -------------------------------------------------------------------------------- /itools/office/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/office/__init__.py -------------------------------------------------------------------------------- /itools/office/doctotext.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/office/doctotext.cc -------------------------------------------------------------------------------- /itools/office/office.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/office/office.py -------------------------------------------------------------------------------- /itools/office/ole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/office/ole.py -------------------------------------------------------------------------------- /itools/office/ooxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/office/ooxml.py -------------------------------------------------------------------------------- /itools/office/ppt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/office/ppt.py -------------------------------------------------------------------------------- /itools/office/rtf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/office/rtf.py -------------------------------------------------------------------------------- /itools/pdf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/pdf/__init__.py -------------------------------------------------------------------------------- /itools/pdf/pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/pdf/pdf.py -------------------------------------------------------------------------------- /itools/pkg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/pkg/__init__.py -------------------------------------------------------------------------------- /itools/pkg/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/pkg/build.py -------------------------------------------------------------------------------- /itools/pkg/build_gulp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/pkg/build_gulp.py -------------------------------------------------------------------------------- /itools/pkg/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/pkg/git.py -------------------------------------------------------------------------------- /itools/pkg/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/pkg/handlers.py -------------------------------------------------------------------------------- /itools/pkg/update_locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/pkg/update_locale.py -------------------------------------------------------------------------------- /itools/pkg/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/pkg/utils.py -------------------------------------------------------------------------------- /itools/python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/python/__init__.py -------------------------------------------------------------------------------- /itools/python/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/python/python.py -------------------------------------------------------------------------------- /itools/relaxng/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/relaxng/__init__.py -------------------------------------------------------------------------------- /itools/relaxng/relaxng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/relaxng/relaxng.py -------------------------------------------------------------------------------- /itools/rss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/rss/__init__.py -------------------------------------------------------------------------------- /itools/rss/rss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/rss/rss.py -------------------------------------------------------------------------------- /itools/srx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/srx/__init__.py -------------------------------------------------------------------------------- /itools/srx/default.srx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/srx/default.srx -------------------------------------------------------------------------------- /itools/srx/segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/srx/segment.py -------------------------------------------------------------------------------- /itools/srx/srx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/srx/srx.py -------------------------------------------------------------------------------- /itools/stl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/stl/__init__.py -------------------------------------------------------------------------------- /itools/stl/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/stl/schema.py -------------------------------------------------------------------------------- /itools/stl/stl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/stl/stl.py -------------------------------------------------------------------------------- /itools/tmx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/tmx/__init__.py -------------------------------------------------------------------------------- /itools/tmx/tmx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/tmx/tmx.py -------------------------------------------------------------------------------- /itools/tmx/tmx14.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/tmx/tmx14.dtd -------------------------------------------------------------------------------- /itools/uri/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/uri/__init__.py -------------------------------------------------------------------------------- /itools/uri/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/uri/generic.py -------------------------------------------------------------------------------- /itools/uri/mailto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/uri/mailto.py -------------------------------------------------------------------------------- /itools/uri/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/uri/registry.py -------------------------------------------------------------------------------- /itools/uri/uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/uri/uri.py -------------------------------------------------------------------------------- /itools/validators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/validators/__init__.py -------------------------------------------------------------------------------- /itools/validators/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/validators/base.py -------------------------------------------------------------------------------- /itools/validators/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/validators/database.py -------------------------------------------------------------------------------- /itools/validators/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/validators/exceptions.py -------------------------------------------------------------------------------- /itools/validators/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/validators/files.py -------------------------------------------------------------------------------- /itools/validators/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/validators/password.py -------------------------------------------------------------------------------- /itools/validators/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/validators/registry.py -------------------------------------------------------------------------------- /itools/validators/test_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/validators/test_view.py -------------------------------------------------------------------------------- /itools/web/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/web/__init__.py -------------------------------------------------------------------------------- /itools/web/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/web/context.py -------------------------------------------------------------------------------- /itools/web/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/web/dispatcher.py -------------------------------------------------------------------------------- /itools/web/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/web/entities.py -------------------------------------------------------------------------------- /itools/web/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/web/exceptions.py -------------------------------------------------------------------------------- /itools/web/headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/web/headers.py -------------------------------------------------------------------------------- /itools/web/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/web/messages.py -------------------------------------------------------------------------------- /itools/web/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/web/router.py -------------------------------------------------------------------------------- /itools/web/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/web/static.py -------------------------------------------------------------------------------- /itools/web/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/web/utils.py -------------------------------------------------------------------------------- /itools/web/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/web/views.py -------------------------------------------------------------------------------- /itools/workflow/HOWTO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/workflow/HOWTO.txt -------------------------------------------------------------------------------- /itools/workflow/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/workflow/TODO.txt -------------------------------------------------------------------------------- /itools/workflow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/workflow/__init__.py -------------------------------------------------------------------------------- /itools/workflow/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/workflow/workflow.py -------------------------------------------------------------------------------- /itools/xliff/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/xliff/__init__.py -------------------------------------------------------------------------------- /itools/xliff/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/xliff/schema.py -------------------------------------------------------------------------------- /itools/xliff/xliff.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/xliff/xliff.dtd -------------------------------------------------------------------------------- /itools/xliff/xliff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/xliff/xliff.py -------------------------------------------------------------------------------- /itools/xml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/xml/__init__.py -------------------------------------------------------------------------------- /itools/xml/arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/xml/arp.c -------------------------------------------------------------------------------- /itools/xml/arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/xml/arp.h -------------------------------------------------------------------------------- /itools/xml/doctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/xml/doctype.c -------------------------------------------------------------------------------- /itools/xml/dublin_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/xml/dublin_core.py -------------------------------------------------------------------------------- /itools/xml/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/xml/namespaces.py -------------------------------------------------------------------------------- /itools/xml/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/xml/parser.c -------------------------------------------------------------------------------- /itools/xml/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/xml/parser.h -------------------------------------------------------------------------------- /itools/xml/pyparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/xml/pyparser.c -------------------------------------------------------------------------------- /itools/xml/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/xml/utils.py -------------------------------------------------------------------------------- /itools/xml/xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/xml/xml.py -------------------------------------------------------------------------------- /itools/xmlfile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/xmlfile/__init__.py -------------------------------------------------------------------------------- /itools/xmlfile/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/xmlfile/errors.py -------------------------------------------------------------------------------- /itools/xmlfile/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/xmlfile/i18n.py -------------------------------------------------------------------------------- /itools/xmlfile/xmlfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/itools/xmlfile/xmlfile.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/idb-inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/scripts/idb-inspect.py -------------------------------------------------------------------------------- /scripts/igettext-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/scripts/igettext-build.py -------------------------------------------------------------------------------- /scripts/igettext-extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/scripts/igettext-extract.py -------------------------------------------------------------------------------- /scripts/igettext-merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/scripts/igettext-merge.py -------------------------------------------------------------------------------- /scripts/ipkg-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/scripts/ipkg-build.py -------------------------------------------------------------------------------- /scripts/ipkg-docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/scripts/ipkg-docs.py -------------------------------------------------------------------------------- /scripts/ipkg-quality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/scripts/ipkg-quality.py -------------------------------------------------------------------------------- /scripts/ipkg-update-locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/scripts/ipkg-update-locale.py -------------------------------------------------------------------------------- /setup.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/setup.conf -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/setup.py -------------------------------------------------------------------------------- /test/bench_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/bench_xml.py -------------------------------------------------------------------------------- /test/bench_xml_expat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/bench_xml_expat.py -------------------------------------------------------------------------------- /test/bench_xml_itools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/bench_xml_itools.py -------------------------------------------------------------------------------- /test/bench_xml_itools_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/bench_xml_itools_c.c -------------------------------------------------------------------------------- /test/fables/database/00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/00.txt -------------------------------------------------------------------------------- /test/fables/database/01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/01.txt -------------------------------------------------------------------------------- /test/fables/database/02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/02.txt -------------------------------------------------------------------------------- /test/fables/database/03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/03.txt -------------------------------------------------------------------------------- /test/fables/database/04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/04.txt -------------------------------------------------------------------------------- /test/fables/database/05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/05.txt -------------------------------------------------------------------------------- /test/fables/database/06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/06.txt -------------------------------------------------------------------------------- /test/fables/database/07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/07.txt -------------------------------------------------------------------------------- /test/fables/database/08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/08.txt -------------------------------------------------------------------------------- /test/fables/database/09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/09.txt -------------------------------------------------------------------------------- /test/fables/database/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/10.txt -------------------------------------------------------------------------------- /test/fables/database/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/11.txt -------------------------------------------------------------------------------- /test/fables/database/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/12.txt -------------------------------------------------------------------------------- /test/fables/database/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/13.txt -------------------------------------------------------------------------------- /test/fables/database/14.txt: -------------------------------------------------------------------------------- 1 | The Hares and the Frogs -------------------------------------------------------------------------------- /test/fables/database/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/15.txt -------------------------------------------------------------------------------- /test/fables/database/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/16.txt -------------------------------------------------------------------------------- /test/fables/database/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/17.txt -------------------------------------------------------------------------------- /test/fables/database/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/18.txt -------------------------------------------------------------------------------- /test/fables/database/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/19.txt -------------------------------------------------------------------------------- /test/fables/database/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/20.txt -------------------------------------------------------------------------------- /test/fables/database/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/21.txt -------------------------------------------------------------------------------- /test/fables/database/22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/22.txt -------------------------------------------------------------------------------- /test/fables/database/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/23.txt -------------------------------------------------------------------------------- /test/fables/database/24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/24.txt -------------------------------------------------------------------------------- /test/fables/database/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/25.txt -------------------------------------------------------------------------------- /test/fables/database/26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/26.txt -------------------------------------------------------------------------------- /test/fables/database/27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/27.txt -------------------------------------------------------------------------------- /test/fables/database/28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/28.txt -------------------------------------------------------------------------------- /test/fables/database/29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/29.txt -------------------------------------------------------------------------------- /test/fables/database/30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/30.txt -------------------------------------------------------------------------------- /test/fables/database/99.txt.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/fables/database/99.txt.fr -------------------------------------------------------------------------------- /test/fables/database/hello.txt.de: -------------------------------------------------------------------------------- 1 | Hallo welt 2 | -------------------------------------------------------------------------------- /test/fables/database/hello.txt.en: -------------------------------------------------------------------------------- 1 | Hello world 2 | -------------------------------------------------------------------------------- /test/fables/database/hello.txt.es: -------------------------------------------------------------------------------- 1 | Hola mundo 2 | -------------------------------------------------------------------------------- /test/fables/database/hello.txt.fr: -------------------------------------------------------------------------------- 1 | Bonjour le monde 2 | -------------------------------------------------------------------------------- /test/handlers/test.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/handlers/test.tar.gz -------------------------------------------------------------------------------- /test/odf/Document.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/odf/Document.odp -------------------------------------------------------------------------------- /test/odf/Document.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/odf/Document.ods -------------------------------------------------------------------------------- /test/odf/Document.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/odf/Document.odt -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/test.py -------------------------------------------------------------------------------- /test/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/test_core.py -------------------------------------------------------------------------------- /test/test_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/test_csv.py -------------------------------------------------------------------------------- /test/test_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/test_database.py -------------------------------------------------------------------------------- /test/test_datatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/test_datatypes.py -------------------------------------------------------------------------------- /test/test_dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/test_dispatcher.py -------------------------------------------------------------------------------- /test/test_fs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/test_fs.py -------------------------------------------------------------------------------- /test/test_gettext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/test_gettext.py -------------------------------------------------------------------------------- /test/test_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/test_handlers.py -------------------------------------------------------------------------------- /test/test_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/test_html.py -------------------------------------------------------------------------------- /test/test_i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/test_i18n.py -------------------------------------------------------------------------------- /test/test_ical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/test_ical.py -------------------------------------------------------------------------------- /test/test_odf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/test_odf.py -------------------------------------------------------------------------------- /test/test_rss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/test_rss.py -------------------------------------------------------------------------------- /test/test_srx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/test_srx.py -------------------------------------------------------------------------------- /test/test_stl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/test_stl.py -------------------------------------------------------------------------------- /test/test_tmx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/test_tmx.py -------------------------------------------------------------------------------- /test/test_uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/test_uri.py -------------------------------------------------------------------------------- /test/test_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/test_validators.py -------------------------------------------------------------------------------- /test/test_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/test_web.py -------------------------------------------------------------------------------- /test/test_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/test_workflow.py -------------------------------------------------------------------------------- /test/test_xliff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/test_xliff.py -------------------------------------------------------------------------------- /test/test_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/test_xml.py -------------------------------------------------------------------------------- /test/test_xmlfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/test_xmlfile.py -------------------------------------------------------------------------------- /test/tests/gettext_en_es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/tests/gettext_en_es.xlf -------------------------------------------------------------------------------- /test/tests/hello.txt: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /test/tests/index.html.en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/tests/index.html.en -------------------------------------------------------------------------------- /test/tests/localizermsgs.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/tests/localizermsgs.tmx -------------------------------------------------------------------------------- /test/tests/sample-rss-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/tests/sample-rss-2.xml -------------------------------------------------------------------------------- /test/tests/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/tests/test.csv -------------------------------------------------------------------------------- /test/tests/test_adv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/tests/test_adv.csv -------------------------------------------------------------------------------- /test/tests/test_vtimezone.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hforge/itools/HEAD/test/tests/test_vtimezone.ics --------------------------------------------------------------------------------