├── .dockerignore ├── .gitignore ├── .jscsrc ├── API.md ├── Dockerfile ├── INSTALL.md ├── LICENSE ├── Makefile ├── README.md ├── app.psgi ├── dev ├── apache.mk ├── debian.mk ├── docker-ocr-gt.sh ├── docker.mk └── plackup.mk ├── dist ├── .htaccess ├── error-tags.json ├── example │ ├── .gitignore │ ├── fileadmin │ │ ├── 417576986 │ │ │ ├── hocr │ │ │ │ └── 417576986_0013.hocr │ │ │ ├── max │ │ │ │ └── 417576986_0013.jpg │ │ │ └── thumbs │ │ │ │ └── 417576986_0013.jpg │ │ └── digi │ │ │ └── 445442158 │ │ │ ├── hocr │ │ │ ├── 445442158_0010.hocr │ │ │ └── 445442158_0126.hocr │ │ │ ├── max │ │ │ ├── 445442158_0010.jpg │ │ │ └── 445442158_0126.jpg │ │ │ └── thumbs │ │ │ ├── 445442158_0010.jpg │ │ │ └── 445442158_0126.jpg │ └── ocr-corrections │ │ └── digi │ │ └── 417576986 │ │ └── gt │ │ └── 0013 │ │ ├── comment-line-0001.txt │ │ ├── comment-line-0002.txt │ │ ├── comment-line-0003.txt │ │ ├── comment-line-0004.txt │ │ ├── comment-line-0005.txt │ │ ├── comment-line-0006.txt │ │ ├── comment-line-0007.txt │ │ ├── comment-line-0008.txt │ │ ├── comment-line-0009.txt │ │ ├── comment-line-0010.txt │ │ ├── comment-line-0011.txt │ │ ├── comment-line-0012.txt │ │ ├── comment-line-0013.txt │ │ ├── comment-line-0014.txt │ │ ├── comment-line-0015.txt │ │ ├── comment-line-0016.txt │ │ ├── comment-line-0017.txt │ │ ├── comment-line-0018.txt │ │ ├── comment-line-0019.txt │ │ ├── comment-line-0020.txt │ │ ├── comment-line-0021.txt │ │ ├── comment-line-0022.txt │ │ ├── comment-line-0023.txt │ │ ├── comment-line-0024.txt │ │ ├── comment-line-0025.txt │ │ ├── comment-line-0026.txt │ │ ├── comment-line-0027.txt │ │ ├── comment-page.txt │ │ ├── line-0001.png │ │ ├── line-0001.txt │ │ ├── line-0002.png │ │ ├── line-0002.txt │ │ ├── line-0003.png │ │ ├── line-0003.txt │ │ ├── line-0004.png │ │ ├── line-0004.txt │ │ ├── line-0005.png │ │ ├── line-0005.txt │ │ ├── line-0006.png │ │ ├── line-0006.txt │ │ ├── line-0007.png │ │ ├── line-0007.txt │ │ ├── line-0008.png │ │ ├── line-0008.txt │ │ ├── line-0009.png │ │ ├── line-0009.txt │ │ ├── line-0010.png │ │ ├── line-0010.txt │ │ ├── line-0011.png │ │ ├── line-0011.txt │ │ ├── line-0012.png │ │ ├── line-0012.txt │ │ ├── line-0013.png │ │ ├── line-0013.txt │ │ ├── line-0014.png │ │ ├── line-0014.txt │ │ ├── line-0015.png │ │ ├── line-0015.txt │ │ ├── line-0016.png │ │ ├── line-0016.txt │ │ ├── line-0017.png │ │ ├── line-0017.txt │ │ ├── line-0018.png │ │ ├── line-0018.txt │ │ ├── line-0019.png │ │ ├── line-0019.txt │ │ ├── line-0020.png │ │ ├── line-0020.txt │ │ ├── line-0021.png │ │ ├── line-0021.txt │ │ ├── line-0022.png │ │ ├── line-0022.txt │ │ ├── line-0023.png │ │ ├── line-0023.txt │ │ ├── line-0024.png │ │ ├── line-0024.txt │ │ ├── line-0025.png │ │ ├── line-0025.txt │ │ ├── line-0026.png │ │ ├── line-0026.txt │ │ ├── line-0027.png │ │ └── line-0027.txt ├── favicon.ico ├── fonts.css ├── fonts │ ├── ebgaramond-062f9836b0ca1cd9fd58a60f5dc892f4fbecd7fc.svg │ ├── ebgaramond-d272d39ffc142ce90cbc15e70627bf6721558adb.ttf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── index.html ├── ocr-gt-tools.cgi ├── ocr-gt-tools.css ├── ocr-gt-tools.default.yml ├── ocr-gt-tools.js ├── ocropus-gtedit-wrapper.sh ├── special-chars.json ├── vendor.css ├── vendor.js └── vendor.js.map ├── doc ├── error-tags.json ├── ocr-gt-tools.apache.yml ├── ocr-gt-tools.docker.yml ├── screenshots │ ├── cheatsheet-2016-05-04.png │ ├── screenshot-2016-04-26.png │ ├── screenshot.png │ └── sidebar-2016-05-04.png ├── special-chars.json └── user-scripts │ ├── README.md │ └── scrape-wiki.user.js ├── js ├── app.js ├── model │ ├── cheatsheet.js │ ├── error-tags.js │ ├── history.js │ ├── line.js │ ├── page.js │ └── settings.js ├── utils.js └── views │ ├── animation-view.js │ ├── cheatsheet-view.js │ ├── dropzone-view.js │ ├── history-view.js │ ├── line-view.js │ ├── page-view.js │ ├── selectbar.js │ ├── sidebar.js │ └── toolbar.js ├── ocr-gt-tools.cgi ├── ocr-gt-tools.js ├── ocr-gt-tools.pug ├── ocr-gt-tools.styl ├── package.json └── test.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/.jscsrc -------------------------------------------------------------------------------- /API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/API.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/Dockerfile -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/README.md -------------------------------------------------------------------------------- /app.psgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/app.psgi -------------------------------------------------------------------------------- /dev/apache.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dev/apache.mk -------------------------------------------------------------------------------- /dev/debian.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dev/debian.mk -------------------------------------------------------------------------------- /dev/docker-ocr-gt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dev/docker-ocr-gt.sh -------------------------------------------------------------------------------- /dev/docker.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dev/docker.mk -------------------------------------------------------------------------------- /dev/plackup.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dev/plackup.mk -------------------------------------------------------------------------------- /dist/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/.htaccess -------------------------------------------------------------------------------- /dist/error-tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/error-tags.json -------------------------------------------------------------------------------- /dist/example/.gitignore: -------------------------------------------------------------------------------- 1 | .pynative 2 | ocr-corrections/digi/445442158 3 | -------------------------------------------------------------------------------- /dist/example/fileadmin/417576986/hocr/417576986_0013.hocr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/fileadmin/417576986/hocr/417576986_0013.hocr -------------------------------------------------------------------------------- /dist/example/fileadmin/417576986/max/417576986_0013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/fileadmin/417576986/max/417576986_0013.jpg -------------------------------------------------------------------------------- /dist/example/fileadmin/417576986/thumbs/417576986_0013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/fileadmin/417576986/thumbs/417576986_0013.jpg -------------------------------------------------------------------------------- /dist/example/fileadmin/digi/445442158/hocr/445442158_0010.hocr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/fileadmin/digi/445442158/hocr/445442158_0010.hocr -------------------------------------------------------------------------------- /dist/example/fileadmin/digi/445442158/hocr/445442158_0126.hocr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/fileadmin/digi/445442158/hocr/445442158_0126.hocr -------------------------------------------------------------------------------- /dist/example/fileadmin/digi/445442158/max/445442158_0010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/fileadmin/digi/445442158/max/445442158_0010.jpg -------------------------------------------------------------------------------- /dist/example/fileadmin/digi/445442158/max/445442158_0126.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/fileadmin/digi/445442158/max/445442158_0126.jpg -------------------------------------------------------------------------------- /dist/example/fileadmin/digi/445442158/thumbs/445442158_0010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/fileadmin/digi/445442158/thumbs/445442158_0010.jpg -------------------------------------------------------------------------------- /dist/example/fileadmin/digi/445442158/thumbs/445442158_0126.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/fileadmin/digi/445442158/thumbs/445442158_0126.jpg -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/comment-line-0001.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/comment-line-0002.txt: -------------------------------------------------------------------------------- 1 | #wrong-image-section 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/comment-line-0003.txt: -------------------------------------------------------------------------------- 1 | #wrong-image-section 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/comment-line-0004.txt: -------------------------------------------------------------------------------- 1 | #text-italic 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/comment-line-0005.txt: -------------------------------------------------------------------------------- 1 | dqdwq 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/comment-line-0006.txt: -------------------------------------------------------------------------------- 1 | #text-italic 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/comment-line-0007.txt: -------------------------------------------------------------------------------- 1 | #text-italic 2 | #wrong-image-section 3 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/comment-line-0008.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/comment-line-0009.txt: -------------------------------------------------------------------------------- 1 | #text-italic 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/comment-line-0010.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/comment-line-0011.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/comment-line-0012.txt: -------------------------------------------------------------------------------- 1 | #text-italic 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/comment-line-0013.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/comment-line-0014.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/comment-line-0015.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/comment-line-0016.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/comment-line-0017.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/comment-line-0018.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/comment-line-0019.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/comment-line-0020.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/comment-line-0021.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/comment-line-0022.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/comment-line-0023.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/comment-line-0024.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/comment-line-0025.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/comment-line-0026.txt: -------------------------------------------------------------------------------- 1 | oben abgeschnitten 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/comment-line-0027.txt: -------------------------------------------------------------------------------- 1 | #wrong-image-section 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/comment-page.txt: -------------------------------------------------------------------------------- 1 | Unvollst\xE4ndig erfasst 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0001.png -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0001.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0002.png -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0002.txt: -------------------------------------------------------------------------------- 1 | distinguer les principes des 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0003.png -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0003.txt -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0004.png -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0004.txt: -------------------------------------------------------------------------------- 1 | exceptions; & c'est ce que fait 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0005.png -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0005.txt: -------------------------------------------------------------------------------- 1 | une institution. Il y a long temts 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0006.png -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0006.txt -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0007.png -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0007.txt -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0008.png -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0008.txt -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0009.png -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0009.txt: -------------------------------------------------------------------------------- 1 | de favoir. C'est aussi ce qui m'a<br class=""> 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0010.png -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0010.txt: -------------------------------------------------------------------------------- 1 | porté à composer le Catechis- 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0011.png -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0011.txt -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0012.png -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0012.txt: -------------------------------------------------------------------------------- 1 | methode des études. Sans ce se- 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0013.png -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0013.txt: -------------------------------------------------------------------------------- 1 | cours on marche à tâtons, on 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0014.png -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0014.txt: -------------------------------------------------------------------------------- 1 | commence par de petits détail, 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0015.png -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0015.txt: -------------------------------------------------------------------------------- 1 | on suit l'autorité du premier 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0016.png -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0016.txt: -------------------------------------------------------------------------------- 1 | venu, on ne forme que des 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0017.png -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0017.txt -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0018.png -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0018.txt: -------------------------------------------------------------------------------- 1 | nes. 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0019.png -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0019.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0020.png -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0020.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0021.png -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0021.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0022.png -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0022.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0023.png -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0023.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0024.png -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0024.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0025.png -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0025.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0026.png -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0026.txt: -------------------------------------------------------------------------------- 1 | a iij 2 | -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/example/ocr-corrections/digi/417576986/gt/0013/line-0027.png -------------------------------------------------------------------------------- /dist/example/ocr-corrections/digi/417576986/gt/0013/line-0027.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/favicon.ico -------------------------------------------------------------------------------- /dist/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/fonts.css -------------------------------------------------------------------------------- /dist/fonts/ebgaramond-062f9836b0ca1cd9fd58a60f5dc892f4fbecd7fc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/fonts/ebgaramond-062f9836b0ca1cd9fd58a60f5dc892f4fbecd7fc.svg -------------------------------------------------------------------------------- /dist/fonts/ebgaramond-d272d39ffc142ce90cbc15e70627bf6721558adb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/fonts/ebgaramond-d272d39ffc142ce90cbc15e70627bf6721558adb.ttf -------------------------------------------------------------------------------- /dist/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /dist/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /dist/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /dist/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /dist/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/ocr-gt-tools.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/ocr-gt-tools.cgi -------------------------------------------------------------------------------- /dist/ocr-gt-tools.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/ocr-gt-tools.css -------------------------------------------------------------------------------- /dist/ocr-gt-tools.default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/ocr-gt-tools.default.yml -------------------------------------------------------------------------------- /dist/ocr-gt-tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/ocr-gt-tools.js -------------------------------------------------------------------------------- /dist/ocropus-gtedit-wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/ocropus-gtedit-wrapper.sh -------------------------------------------------------------------------------- /dist/special-chars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/special-chars.json -------------------------------------------------------------------------------- /dist/vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/vendor.css -------------------------------------------------------------------------------- /dist/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/vendor.js -------------------------------------------------------------------------------- /dist/vendor.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/dist/vendor.js.map -------------------------------------------------------------------------------- /doc/error-tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/doc/error-tags.json -------------------------------------------------------------------------------- /doc/ocr-gt-tools.apache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/doc/ocr-gt-tools.apache.yml -------------------------------------------------------------------------------- /doc/ocr-gt-tools.docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/doc/ocr-gt-tools.docker.yml -------------------------------------------------------------------------------- /doc/screenshots/cheatsheet-2016-05-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/doc/screenshots/cheatsheet-2016-05-04.png -------------------------------------------------------------------------------- /doc/screenshots/screenshot-2016-04-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/doc/screenshots/screenshot-2016-04-26.png -------------------------------------------------------------------------------- /doc/screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/doc/screenshots/screenshot.png -------------------------------------------------------------------------------- /doc/screenshots/sidebar-2016-05-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/doc/screenshots/sidebar-2016-05-04.png -------------------------------------------------------------------------------- /doc/special-chars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/doc/special-chars.json -------------------------------------------------------------------------------- /doc/user-scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/doc/user-scripts/README.md -------------------------------------------------------------------------------- /doc/user-scripts/scrape-wiki.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/doc/user-scripts/scrape-wiki.user.js -------------------------------------------------------------------------------- /js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/js/app.js -------------------------------------------------------------------------------- /js/model/cheatsheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/js/model/cheatsheet.js -------------------------------------------------------------------------------- /js/model/error-tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/js/model/error-tags.js -------------------------------------------------------------------------------- /js/model/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/js/model/history.js -------------------------------------------------------------------------------- /js/model/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/js/model/line.js -------------------------------------------------------------------------------- /js/model/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/js/model/page.js -------------------------------------------------------------------------------- /js/model/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/js/model/settings.js -------------------------------------------------------------------------------- /js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/js/utils.js -------------------------------------------------------------------------------- /js/views/animation-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/js/views/animation-view.js -------------------------------------------------------------------------------- /js/views/cheatsheet-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/js/views/cheatsheet-view.js -------------------------------------------------------------------------------- /js/views/dropzone-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/js/views/dropzone-view.js -------------------------------------------------------------------------------- /js/views/history-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/js/views/history-view.js -------------------------------------------------------------------------------- /js/views/line-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/js/views/line-view.js -------------------------------------------------------------------------------- /js/views/page-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/js/views/page-view.js -------------------------------------------------------------------------------- /js/views/selectbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/js/views/selectbar.js -------------------------------------------------------------------------------- /js/views/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/js/views/sidebar.js -------------------------------------------------------------------------------- /js/views/toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/js/views/toolbar.js -------------------------------------------------------------------------------- /ocr-gt-tools.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/ocr-gt-tools.cgi -------------------------------------------------------------------------------- /ocr-gt-tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/ocr-gt-tools.js -------------------------------------------------------------------------------- /ocr-gt-tools.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/ocr-gt-tools.pug -------------------------------------------------------------------------------- /ocr-gt-tools.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/ocr-gt-tools.styl -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/package.json -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UB-Mannheim/ocr-gt-tools/HEAD/test.sh --------------------------------------------------------------------------------