├── .github └── workflows │ ├── codeql.yml │ ├── dockerhub.yml │ └── unittest.yml ├── .gitignore ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── RELEASE.md ├── docs └── screenshot.png ├── gresources ├── css │ └── theme.css ├── gtk │ └── menus.ui ├── icons │ ├── icon-feature-border.svg │ ├── icon-features.svg │ ├── icon-split.svg │ ├── icon.png │ ├── logo-small.xcf │ ├── logo.png │ ├── logo.xcf │ ├── page-icons.xcf │ ├── page-loading.png │ ├── page-missing.png │ ├── split-horizontal.svg │ └── split-vertical.svg └── ocrd-browser.gresource.xml ├── init.sh ├── ocrd_browser ├── __init__.py ├── application.py ├── main.py ├── model │ ├── __init__.py │ ├── document.py │ ├── page.py │ └── page_xml_renderer.py ├── resources │ ├── __init__.py │ ├── about-dialog.ui │ ├── main-window.ui │ ├── open-dialog.ui │ ├── page-list.ui │ └── save-dialog.ui ├── ui.gresource ├── ui │ ├── __init__.py │ ├── dialogs.py │ ├── icon_store.py │ ├── page_browser.py │ ├── page_store.py │ └── window.py ├── util │ ├── __init__.py │ ├── config.py │ ├── file_groups.py │ ├── gtk.py │ ├── image.py │ ├── launcher.py │ └── streams.py └── view │ ├── __init__.py │ ├── base.py │ ├── diff.py │ ├── empty.py │ ├── html.py │ ├── images.py │ ├── manager.py │ ├── page.py │ ├── registry.py │ ├── text.py │ └── xml.py ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt ├── serve.py ├── setup.cfg ├── setup.py ├── share ├── applications │ └── org.readmachine.ocrd-browser.desktop └── mime │ └── packages │ └── org.readmachine.ocrd-browser.xml └── tests ├── __init__.py ├── example ├── config │ └── simple.conf └── workspaces │ ├── aletheiaexamplepage │ ├── OCR-D-GT-IMG-BIN │ │ ├── PAGE_2017.tif │ │ ├── PAGE_2018.tif │ │ └── PAGE_2019.tif │ ├── OCR-D-GT-IMG │ │ ├── PAGE_2017.jpg │ │ ├── PAGE_2018.jpg │ │ └── PAGE_2019.jpg │ ├── OCR-D-GT-PAGE │ │ ├── PAGE_2017.xml │ │ ├── PAGE_2018.xml │ │ └── PAGE_2019.xml │ └── mets.xml │ ├── heavy quoting │ ├── OCR-D-GT PÆGE │ │ ├── PAGE_0017 PÄGE.xml │ │ └── PAGE_0020 PÄGE.xml │ ├── OCR-D-IMG │ │ ├── INPUT 0017.tif │ │ └── INPUT 0020.tif │ └── mets.xml │ ├── kant_aufklaerung_1784_bin │ ├── OCR-D-GT-ALTO │ │ ├── PAGE_0017_ALTO.xml │ │ └── PAGE_0020_ALTO.xml │ ├── OCR-D-GT-PAGE │ │ ├── PAGE_0017_PAGE.xml │ │ └── PAGE_0020_PAGE.xml │ ├── OCR-D-IMG-BIN │ │ ├── OCR-D-IMG-BIN_0001.IMG-BIN.png │ │ ├── OCR-D-IMG-BIN_0001.xml │ │ ├── OCR-D-IMG-BIN_0002.IMG-BIN.png │ │ └── OCR-D-IMG-BIN_0002.xml │ ├── OCR-D-IMG │ │ ├── INPUT_0017.tif │ │ └── INPUT_0020.tif │ └── mets.xml │ ├── kant_aufklaerung_1784_missing_image │ ├── OCR-D-GT-PAGE │ │ ├── PAGE_0017_PAGE.xml │ │ └── PAGE_0020_PAGE.xml │ ├── OCR-D-IMG │ │ ├── INPUT_0017.tif │ │ └── INPUT_0020.tif │ └── mets.xml │ ├── kant_aufklaerung_1784_missing_xml │ ├── OCR-D-GT-ALTO │ │ ├── PAGE_0017_ALTO.xml │ │ └── PAGE_0020_ALTO.xml │ ├── OCR-D-GT-PAGE │ │ └── PAGE_0017_PAGE.xml │ ├── OCR-D-IMG │ │ ├── INPUT_0017.tif │ │ └── INPUT_0020.tif │ └── mets.xml │ └── no_ocrd_d_img_group │ ├── OCR-D-IMG-PNG │ ├── IMG_001.png │ └── page-100-105.png │ └── mets.xml ├── model ├── __init__.py ├── test_document.py ├── test_page.py └── test_page_xml_renderer.py ├── ui └── test_icon_store.py ├── util ├── __init__.py ├── test_config.py ├── test_file_groups.py ├── test_image.py └── test_launcher.py └── view ├── __init__.py ├── test_images.py ├── test_manager.py ├── test_page.py ├── test_registry.py └── test_xml.py /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dockerhub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/.github/workflows/dockerhub.yml -------------------------------------------------------------------------------- /.github/workflows/unittest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/.github/workflows/unittest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/RELEASE.md -------------------------------------------------------------------------------- /docs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/docs/screenshot.png -------------------------------------------------------------------------------- /gresources/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/gresources/css/theme.css -------------------------------------------------------------------------------- /gresources/gtk/menus.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/gresources/gtk/menus.ui -------------------------------------------------------------------------------- /gresources/icons/icon-feature-border.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/gresources/icons/icon-feature-border.svg -------------------------------------------------------------------------------- /gresources/icons/icon-features.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/gresources/icons/icon-features.svg -------------------------------------------------------------------------------- /gresources/icons/icon-split.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/gresources/icons/icon-split.svg -------------------------------------------------------------------------------- /gresources/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/gresources/icons/icon.png -------------------------------------------------------------------------------- /gresources/icons/logo-small.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/gresources/icons/logo-small.xcf -------------------------------------------------------------------------------- /gresources/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/gresources/icons/logo.png -------------------------------------------------------------------------------- /gresources/icons/logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/gresources/icons/logo.xcf -------------------------------------------------------------------------------- /gresources/icons/page-icons.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/gresources/icons/page-icons.xcf -------------------------------------------------------------------------------- /gresources/icons/page-loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/gresources/icons/page-loading.png -------------------------------------------------------------------------------- /gresources/icons/page-missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/gresources/icons/page-missing.png -------------------------------------------------------------------------------- /gresources/icons/split-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/gresources/icons/split-horizontal.svg -------------------------------------------------------------------------------- /gresources/icons/split-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/gresources/icons/split-vertical.svg -------------------------------------------------------------------------------- /gresources/ocrd-browser.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/gresources/ocrd-browser.gresource.xml -------------------------------------------------------------------------------- /init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/init.sh -------------------------------------------------------------------------------- /ocrd_browser/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.5.5' 2 | -------------------------------------------------------------------------------- /ocrd_browser/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/application.py -------------------------------------------------------------------------------- /ocrd_browser/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/main.py -------------------------------------------------------------------------------- /ocrd_browser/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/model/__init__.py -------------------------------------------------------------------------------- /ocrd_browser/model/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/model/document.py -------------------------------------------------------------------------------- /ocrd_browser/model/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/model/page.py -------------------------------------------------------------------------------- /ocrd_browser/model/page_xml_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/model/page_xml_renderer.py -------------------------------------------------------------------------------- /ocrd_browser/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ocrd_browser/resources/about-dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/resources/about-dialog.ui -------------------------------------------------------------------------------- /ocrd_browser/resources/main-window.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/resources/main-window.ui -------------------------------------------------------------------------------- /ocrd_browser/resources/open-dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/resources/open-dialog.ui -------------------------------------------------------------------------------- /ocrd_browser/resources/page-list.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/resources/page-list.ui -------------------------------------------------------------------------------- /ocrd_browser/resources/save-dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/resources/save-dialog.ui -------------------------------------------------------------------------------- /ocrd_browser/ui.gresource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/ui.gresource -------------------------------------------------------------------------------- /ocrd_browser/ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/ui/__init__.py -------------------------------------------------------------------------------- /ocrd_browser/ui/dialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/ui/dialogs.py -------------------------------------------------------------------------------- /ocrd_browser/ui/icon_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/ui/icon_store.py -------------------------------------------------------------------------------- /ocrd_browser/ui/page_browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/ui/page_browser.py -------------------------------------------------------------------------------- /ocrd_browser/ui/page_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/ui/page_store.py -------------------------------------------------------------------------------- /ocrd_browser/ui/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/ui/window.py -------------------------------------------------------------------------------- /ocrd_browser/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/util/__init__.py -------------------------------------------------------------------------------- /ocrd_browser/util/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/util/config.py -------------------------------------------------------------------------------- /ocrd_browser/util/file_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/util/file_groups.py -------------------------------------------------------------------------------- /ocrd_browser/util/gtk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/util/gtk.py -------------------------------------------------------------------------------- /ocrd_browser/util/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/util/image.py -------------------------------------------------------------------------------- /ocrd_browser/util/launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/util/launcher.py -------------------------------------------------------------------------------- /ocrd_browser/util/streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/util/streams.py -------------------------------------------------------------------------------- /ocrd_browser/view/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/view/__init__.py -------------------------------------------------------------------------------- /ocrd_browser/view/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/view/base.py -------------------------------------------------------------------------------- /ocrd_browser/view/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/view/diff.py -------------------------------------------------------------------------------- /ocrd_browser/view/empty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/view/empty.py -------------------------------------------------------------------------------- /ocrd_browser/view/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/view/html.py -------------------------------------------------------------------------------- /ocrd_browser/view/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/view/images.py -------------------------------------------------------------------------------- /ocrd_browser/view/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/view/manager.py -------------------------------------------------------------------------------- /ocrd_browser/view/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/view/page.py -------------------------------------------------------------------------------- /ocrd_browser/view/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/view/registry.py -------------------------------------------------------------------------------- /ocrd_browser/view/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/view/text.py -------------------------------------------------------------------------------- /ocrd_browser/view/xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/ocrd_browser/view/xml.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/requirements.txt -------------------------------------------------------------------------------- /serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/serve.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/setup.py -------------------------------------------------------------------------------- /share/applications/org.readmachine.ocrd-browser.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/share/applications/org.readmachine.ocrd-browser.desktop -------------------------------------------------------------------------------- /share/mime/packages/org.readmachine.ocrd-browser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/share/mime/packages/org.readmachine.ocrd-browser.xml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/example/config/simple.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/config/simple.conf -------------------------------------------------------------------------------- /tests/example/workspaces/aletheiaexamplepage/OCR-D-GT-IMG-BIN/PAGE_2017.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/aletheiaexamplepage/OCR-D-GT-IMG-BIN/PAGE_2017.tif -------------------------------------------------------------------------------- /tests/example/workspaces/aletheiaexamplepage/OCR-D-GT-IMG-BIN/PAGE_2018.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/aletheiaexamplepage/OCR-D-GT-IMG-BIN/PAGE_2018.tif -------------------------------------------------------------------------------- /tests/example/workspaces/aletheiaexamplepage/OCR-D-GT-IMG-BIN/PAGE_2019.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/aletheiaexamplepage/OCR-D-GT-IMG-BIN/PAGE_2019.tif -------------------------------------------------------------------------------- /tests/example/workspaces/aletheiaexamplepage/OCR-D-GT-IMG/PAGE_2017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/aletheiaexamplepage/OCR-D-GT-IMG/PAGE_2017.jpg -------------------------------------------------------------------------------- /tests/example/workspaces/aletheiaexamplepage/OCR-D-GT-IMG/PAGE_2018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/aletheiaexamplepage/OCR-D-GT-IMG/PAGE_2018.jpg -------------------------------------------------------------------------------- /tests/example/workspaces/aletheiaexamplepage/OCR-D-GT-IMG/PAGE_2019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/aletheiaexamplepage/OCR-D-GT-IMG/PAGE_2019.jpg -------------------------------------------------------------------------------- /tests/example/workspaces/aletheiaexamplepage/OCR-D-GT-PAGE/PAGE_2017.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/aletheiaexamplepage/OCR-D-GT-PAGE/PAGE_2017.xml -------------------------------------------------------------------------------- /tests/example/workspaces/aletheiaexamplepage/OCR-D-GT-PAGE/PAGE_2018.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/aletheiaexamplepage/OCR-D-GT-PAGE/PAGE_2018.xml -------------------------------------------------------------------------------- /tests/example/workspaces/aletheiaexamplepage/OCR-D-GT-PAGE/PAGE_2019.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/aletheiaexamplepage/OCR-D-GT-PAGE/PAGE_2019.xml -------------------------------------------------------------------------------- /tests/example/workspaces/aletheiaexamplepage/mets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/aletheiaexamplepage/mets.xml -------------------------------------------------------------------------------- /tests/example/workspaces/heavy quoting/OCR-D-GT PÆGE/PAGE_0017 PÄGE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/heavy quoting/OCR-D-GT PÆGE/PAGE_0017 PÄGE.xml -------------------------------------------------------------------------------- /tests/example/workspaces/heavy quoting/OCR-D-GT PÆGE/PAGE_0020 PÄGE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/heavy quoting/OCR-D-GT PÆGE/PAGE_0020 PÄGE.xml -------------------------------------------------------------------------------- /tests/example/workspaces/heavy quoting/OCR-D-IMG/INPUT 0017.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/heavy quoting/OCR-D-IMG/INPUT 0017.tif -------------------------------------------------------------------------------- /tests/example/workspaces/heavy quoting/OCR-D-IMG/INPUT 0020.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/heavy quoting/OCR-D-IMG/INPUT 0020.tif -------------------------------------------------------------------------------- /tests/example/workspaces/heavy quoting/mets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/heavy quoting/mets.xml -------------------------------------------------------------------------------- /tests/example/workspaces/kant_aufklaerung_1784_bin/OCR-D-GT-ALTO/PAGE_0017_ALTO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/kant_aufklaerung_1784_bin/OCR-D-GT-ALTO/PAGE_0017_ALTO.xml -------------------------------------------------------------------------------- /tests/example/workspaces/kant_aufklaerung_1784_bin/OCR-D-GT-ALTO/PAGE_0020_ALTO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/kant_aufklaerung_1784_bin/OCR-D-GT-ALTO/PAGE_0020_ALTO.xml -------------------------------------------------------------------------------- /tests/example/workspaces/kant_aufklaerung_1784_bin/OCR-D-GT-PAGE/PAGE_0017_PAGE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/kant_aufklaerung_1784_bin/OCR-D-GT-PAGE/PAGE_0017_PAGE.xml -------------------------------------------------------------------------------- /tests/example/workspaces/kant_aufklaerung_1784_bin/OCR-D-GT-PAGE/PAGE_0020_PAGE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/kant_aufklaerung_1784_bin/OCR-D-GT-PAGE/PAGE_0020_PAGE.xml -------------------------------------------------------------------------------- /tests/example/workspaces/kant_aufklaerung_1784_bin/OCR-D-IMG-BIN/OCR-D-IMG-BIN_0001.IMG-BIN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/kant_aufklaerung_1784_bin/OCR-D-IMG-BIN/OCR-D-IMG-BIN_0001.IMG-BIN.png -------------------------------------------------------------------------------- /tests/example/workspaces/kant_aufklaerung_1784_bin/OCR-D-IMG-BIN/OCR-D-IMG-BIN_0001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/kant_aufklaerung_1784_bin/OCR-D-IMG-BIN/OCR-D-IMG-BIN_0001.xml -------------------------------------------------------------------------------- /tests/example/workspaces/kant_aufklaerung_1784_bin/OCR-D-IMG-BIN/OCR-D-IMG-BIN_0002.IMG-BIN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/kant_aufklaerung_1784_bin/OCR-D-IMG-BIN/OCR-D-IMG-BIN_0002.IMG-BIN.png -------------------------------------------------------------------------------- /tests/example/workspaces/kant_aufklaerung_1784_bin/OCR-D-IMG-BIN/OCR-D-IMG-BIN_0002.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/kant_aufklaerung_1784_bin/OCR-D-IMG-BIN/OCR-D-IMG-BIN_0002.xml -------------------------------------------------------------------------------- /tests/example/workspaces/kant_aufklaerung_1784_bin/OCR-D-IMG/INPUT_0017.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/kant_aufklaerung_1784_bin/OCR-D-IMG/INPUT_0017.tif -------------------------------------------------------------------------------- /tests/example/workspaces/kant_aufklaerung_1784_bin/OCR-D-IMG/INPUT_0020.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/kant_aufklaerung_1784_bin/OCR-D-IMG/INPUT_0020.tif -------------------------------------------------------------------------------- /tests/example/workspaces/kant_aufklaerung_1784_bin/mets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/kant_aufklaerung_1784_bin/mets.xml -------------------------------------------------------------------------------- /tests/example/workspaces/kant_aufklaerung_1784_missing_image/OCR-D-GT-PAGE/PAGE_0017_PAGE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/kant_aufklaerung_1784_missing_image/OCR-D-GT-PAGE/PAGE_0017_PAGE.xml -------------------------------------------------------------------------------- /tests/example/workspaces/kant_aufklaerung_1784_missing_image/OCR-D-GT-PAGE/PAGE_0020_PAGE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/kant_aufklaerung_1784_missing_image/OCR-D-GT-PAGE/PAGE_0020_PAGE.xml -------------------------------------------------------------------------------- /tests/example/workspaces/kant_aufklaerung_1784_missing_image/OCR-D-IMG/INPUT_0017.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/kant_aufklaerung_1784_missing_image/OCR-D-IMG/INPUT_0017.tif -------------------------------------------------------------------------------- /tests/example/workspaces/kant_aufklaerung_1784_missing_image/OCR-D-IMG/INPUT_0020.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/kant_aufklaerung_1784_missing_image/OCR-D-IMG/INPUT_0020.tif -------------------------------------------------------------------------------- /tests/example/workspaces/kant_aufklaerung_1784_missing_image/mets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/kant_aufklaerung_1784_missing_image/mets.xml -------------------------------------------------------------------------------- /tests/example/workspaces/kant_aufklaerung_1784_missing_xml/OCR-D-GT-ALTO/PAGE_0017_ALTO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/kant_aufklaerung_1784_missing_xml/OCR-D-GT-ALTO/PAGE_0017_ALTO.xml -------------------------------------------------------------------------------- /tests/example/workspaces/kant_aufklaerung_1784_missing_xml/OCR-D-GT-ALTO/PAGE_0020_ALTO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/kant_aufklaerung_1784_missing_xml/OCR-D-GT-ALTO/PAGE_0020_ALTO.xml -------------------------------------------------------------------------------- /tests/example/workspaces/kant_aufklaerung_1784_missing_xml/OCR-D-GT-PAGE/PAGE_0017_PAGE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/kant_aufklaerung_1784_missing_xml/OCR-D-GT-PAGE/PAGE_0017_PAGE.xml -------------------------------------------------------------------------------- /tests/example/workspaces/kant_aufklaerung_1784_missing_xml/OCR-D-IMG/INPUT_0017.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/kant_aufklaerung_1784_missing_xml/OCR-D-IMG/INPUT_0017.tif -------------------------------------------------------------------------------- /tests/example/workspaces/kant_aufklaerung_1784_missing_xml/OCR-D-IMG/INPUT_0020.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/kant_aufklaerung_1784_missing_xml/OCR-D-IMG/INPUT_0020.tif -------------------------------------------------------------------------------- /tests/example/workspaces/kant_aufklaerung_1784_missing_xml/mets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/kant_aufklaerung_1784_missing_xml/mets.xml -------------------------------------------------------------------------------- /tests/example/workspaces/no_ocrd_d_img_group/OCR-D-IMG-PNG/IMG_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/no_ocrd_d_img_group/OCR-D-IMG-PNG/IMG_001.png -------------------------------------------------------------------------------- /tests/example/workspaces/no_ocrd_d_img_group/OCR-D-IMG-PNG/page-100-105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/no_ocrd_d_img_group/OCR-D-IMG-PNG/page-100-105.png -------------------------------------------------------------------------------- /tests/example/workspaces/no_ocrd_d_img_group/mets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/example/workspaces/no_ocrd_d_img_group/mets.xml -------------------------------------------------------------------------------- /tests/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model/test_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/model/test_document.py -------------------------------------------------------------------------------- /tests/model/test_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/model/test_page.py -------------------------------------------------------------------------------- /tests/model/test_page_xml_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/model/test_page_xml_renderer.py -------------------------------------------------------------------------------- /tests/ui/test_icon_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/ui/test_icon_store.py -------------------------------------------------------------------------------- /tests/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/util/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/util/test_config.py -------------------------------------------------------------------------------- /tests/util/test_file_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/util/test_file_groups.py -------------------------------------------------------------------------------- /tests/util/test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/util/test_image.py -------------------------------------------------------------------------------- /tests/util/test_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/util/test_launcher.py -------------------------------------------------------------------------------- /tests/view/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/view/test_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/view/test_images.py -------------------------------------------------------------------------------- /tests/view/test_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/view/test_manager.py -------------------------------------------------------------------------------- /tests/view/test_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/view/test_page.py -------------------------------------------------------------------------------- /tests/view/test_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/view/test_registry.py -------------------------------------------------------------------------------- /tests/view/test_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnesk/browse-ocrd/HEAD/tests/view/test_xml.py --------------------------------------------------------------------------------