├── INSTALL.txt ├── LICENSE ├── README ├── README.md ├── about.html ├── catalog.html ├── collection.xconf ├── collectionInfo.html ├── controller.xql ├── editing.html ├── error-page.html ├── expath-pkg.xml ├── faq.html ├── gallery.html ├── getAccuracyRatios.xq ├── getCroppedImage.xq ├── getEditRatios.xq ├── getLatestEditedFileDate.xq ├── getRecentDocs.xq ├── getRunInfo.xq ├── getTeiVolume.xq ├── getZippedCollection.xq ├── get_trainingset.xq ├── get_trainingset_images.xq ├── hello.html ├── index.html ├── info.html ├── latest-edits.html ├── latest.html ├── lucene_search.xq ├── modules ├── addIndexWordAfter.xq ├── addLineBelow.xq ├── app.xql ├── config.xqm ├── ctsUrns.xql ├── deleteElement.xq ├── deleteLine.xq ├── getTeiVolume.xq ├── getZippedCollection.xq ├── laceSvg.xql ├── teiGeneration.xql ├── teiPreflight.xql ├── teiValidation.xql ├── update.xql ├── updateCTSUrn.xq ├── updateMany.xq ├── updateSVGRects.xq ├── updateWord.xq ├── updateWords.xq ├── urnLibrary.xql ├── view.xql └── xqsuiteTest.xql ├── old-index.html ├── pre-install.xql ├── repo-counts.xq ├── repo.xml ├── resources ├── css │ ├── bootstrap-3.0.3.min.css │ ├── hocr.css │ ├── spellcheck_report.css │ └── style.css ├── font │ ├── GFSPorson.ttf │ ├── GFSPorson.woff │ ├── cardo-v11-greek_latin-ext_greek-ext_latin-regular.ttf │ ├── cardo-v11-greek_latin-ext_greek-ext_latin-regular.woff │ └── cardo-v11-greek_latin-ext_greek-ext_latin-regular.woff2 ├── images │ └── lace_16x16.ico ├── javascript │ ├── bootstrap-3.0.3.min.js │ ├── bootstrap.min.js │ ├── clean_text.js │ ├── context_menu.js │ ├── cts-greek-texts.js │ ├── cts-greek-texts.json │ ├── draw_svg_boxes.js │ ├── edit_text.js │ ├── jquery-3.4.1.min.js │ ├── jquery.focus.js │ ├── jquery.min.js │ ├── js.cookie.js │ ├── lace-context-menu.js │ ├── lace_config.js │ ├── loadsource.js │ ├── run_dropdown_menu.js │ └── typeahead.bundle.js ├── schemas │ ├── tei-epidoc.rng │ └── teisimple.rng ├── xml │ └── urns.xml └── xslt │ ├── getZippedCollection.xq │ ├── hocr_to_plain_text.xsl │ └── validation_to_xhtml.xsl ├── runs.html ├── search.html ├── side_by_side_view.html ├── teiPreflight.html ├── teiValidation.html ├── templates ├── page-fluid.html ├── page-margins.html └── page.html ├── update.html ├── urn_library.html └── urns_to_json.xq /INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/INSTALL.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/README.md -------------------------------------------------------------------------------- /about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/about.html -------------------------------------------------------------------------------- /catalog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/catalog.html -------------------------------------------------------------------------------- /collection.xconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/collection.xconf -------------------------------------------------------------------------------- /collectionInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/collectionInfo.html -------------------------------------------------------------------------------- /controller.xql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/controller.xql -------------------------------------------------------------------------------- /editing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/editing.html -------------------------------------------------------------------------------- /error-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/error-page.html -------------------------------------------------------------------------------- /expath-pkg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/expath-pkg.xml -------------------------------------------------------------------------------- /faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/faq.html -------------------------------------------------------------------------------- /gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/gallery.html -------------------------------------------------------------------------------- /getAccuracyRatios.xq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/getAccuracyRatios.xq -------------------------------------------------------------------------------- /getCroppedImage.xq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/getCroppedImage.xq -------------------------------------------------------------------------------- /getEditRatios.xq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/getEditRatios.xq -------------------------------------------------------------------------------- /getLatestEditedFileDate.xq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/getLatestEditedFileDate.xq -------------------------------------------------------------------------------- /getRecentDocs.xq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/getRecentDocs.xq -------------------------------------------------------------------------------- /getRunInfo.xq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/getRunInfo.xq -------------------------------------------------------------------------------- /getTeiVolume.xq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/getTeiVolume.xq -------------------------------------------------------------------------------- /getZippedCollection.xq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/getZippedCollection.xq -------------------------------------------------------------------------------- /get_trainingset.xq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/get_trainingset.xq -------------------------------------------------------------------------------- /get_trainingset_images.xq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/get_trainingset_images.xq -------------------------------------------------------------------------------- /hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/hello.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/index.html -------------------------------------------------------------------------------- /info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/info.html -------------------------------------------------------------------------------- /latest-edits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/latest-edits.html -------------------------------------------------------------------------------- /latest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/latest.html -------------------------------------------------------------------------------- /lucene_search.xq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/lucene_search.xq -------------------------------------------------------------------------------- /modules/addIndexWordAfter.xq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/modules/addIndexWordAfter.xq -------------------------------------------------------------------------------- /modules/addLineBelow.xq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/modules/addLineBelow.xq -------------------------------------------------------------------------------- /modules/app.xql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/modules/app.xql -------------------------------------------------------------------------------- /modules/config.xqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/modules/config.xqm -------------------------------------------------------------------------------- /modules/ctsUrns.xql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/modules/ctsUrns.xql -------------------------------------------------------------------------------- /modules/deleteElement.xq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/modules/deleteElement.xq -------------------------------------------------------------------------------- /modules/deleteLine.xq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/modules/deleteLine.xq -------------------------------------------------------------------------------- /modules/getTeiVolume.xq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/modules/getTeiVolume.xq -------------------------------------------------------------------------------- /modules/getZippedCollection.xq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/modules/getZippedCollection.xq -------------------------------------------------------------------------------- /modules/laceSvg.xql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/modules/laceSvg.xql -------------------------------------------------------------------------------- /modules/teiGeneration.xql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/modules/teiGeneration.xql -------------------------------------------------------------------------------- /modules/teiPreflight.xql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/modules/teiPreflight.xql -------------------------------------------------------------------------------- /modules/teiValidation.xql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/modules/teiValidation.xql -------------------------------------------------------------------------------- /modules/update.xql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/modules/update.xql -------------------------------------------------------------------------------- /modules/updateCTSUrn.xq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/modules/updateCTSUrn.xq -------------------------------------------------------------------------------- /modules/updateMany.xq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/modules/updateMany.xq -------------------------------------------------------------------------------- /modules/updateSVGRects.xq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/modules/updateSVGRects.xq -------------------------------------------------------------------------------- /modules/updateWord.xq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/modules/updateWord.xq -------------------------------------------------------------------------------- /modules/updateWords.xq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/modules/updateWords.xq -------------------------------------------------------------------------------- /modules/urnLibrary.xql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/modules/urnLibrary.xql -------------------------------------------------------------------------------- /modules/view.xql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/modules/view.xql -------------------------------------------------------------------------------- /modules/xqsuiteTest.xql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/modules/xqsuiteTest.xql -------------------------------------------------------------------------------- /old-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/old-index.html -------------------------------------------------------------------------------- /pre-install.xql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/pre-install.xql -------------------------------------------------------------------------------- /repo-counts.xq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/repo-counts.xq -------------------------------------------------------------------------------- /repo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/repo.xml -------------------------------------------------------------------------------- /resources/css/bootstrap-3.0.3.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/css/bootstrap-3.0.3.min.css -------------------------------------------------------------------------------- /resources/css/hocr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/css/hocr.css -------------------------------------------------------------------------------- /resources/css/spellcheck_report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/css/spellcheck_report.css -------------------------------------------------------------------------------- /resources/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/css/style.css -------------------------------------------------------------------------------- /resources/font/GFSPorson.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/font/GFSPorson.ttf -------------------------------------------------------------------------------- /resources/font/GFSPorson.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/font/GFSPorson.woff -------------------------------------------------------------------------------- /resources/font/cardo-v11-greek_latin-ext_greek-ext_latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/font/cardo-v11-greek_latin-ext_greek-ext_latin-regular.ttf -------------------------------------------------------------------------------- /resources/font/cardo-v11-greek_latin-ext_greek-ext_latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/font/cardo-v11-greek_latin-ext_greek-ext_latin-regular.woff -------------------------------------------------------------------------------- /resources/font/cardo-v11-greek_latin-ext_greek-ext_latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/font/cardo-v11-greek_latin-ext_greek-ext_latin-regular.woff2 -------------------------------------------------------------------------------- /resources/images/lace_16x16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/images/lace_16x16.ico -------------------------------------------------------------------------------- /resources/javascript/bootstrap-3.0.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/javascript/bootstrap-3.0.3.min.js -------------------------------------------------------------------------------- /resources/javascript/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/javascript/bootstrap.min.js -------------------------------------------------------------------------------- /resources/javascript/clean_text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/javascript/clean_text.js -------------------------------------------------------------------------------- /resources/javascript/context_menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/javascript/context_menu.js -------------------------------------------------------------------------------- /resources/javascript/cts-greek-texts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/javascript/cts-greek-texts.js -------------------------------------------------------------------------------- /resources/javascript/cts-greek-texts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/javascript/cts-greek-texts.json -------------------------------------------------------------------------------- /resources/javascript/draw_svg_boxes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/javascript/draw_svg_boxes.js -------------------------------------------------------------------------------- /resources/javascript/edit_text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/javascript/edit_text.js -------------------------------------------------------------------------------- /resources/javascript/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/javascript/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /resources/javascript/jquery.focus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/javascript/jquery.focus.js -------------------------------------------------------------------------------- /resources/javascript/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/javascript/jquery.min.js -------------------------------------------------------------------------------- /resources/javascript/js.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/javascript/js.cookie.js -------------------------------------------------------------------------------- /resources/javascript/lace-context-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/javascript/lace-context-menu.js -------------------------------------------------------------------------------- /resources/javascript/lace_config.js: -------------------------------------------------------------------------------- 1 | var exist_server_address = "http://localhost:8080"; 2 | -------------------------------------------------------------------------------- /resources/javascript/loadsource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/javascript/loadsource.js -------------------------------------------------------------------------------- /resources/javascript/run_dropdown_menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/javascript/run_dropdown_menu.js -------------------------------------------------------------------------------- /resources/javascript/typeahead.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/javascript/typeahead.bundle.js -------------------------------------------------------------------------------- /resources/schemas/tei-epidoc.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/schemas/tei-epidoc.rng -------------------------------------------------------------------------------- /resources/schemas/teisimple.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/schemas/teisimple.rng -------------------------------------------------------------------------------- /resources/xml/urns.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/xml/urns.xml -------------------------------------------------------------------------------- /resources/xslt/getZippedCollection.xq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/xslt/getZippedCollection.xq -------------------------------------------------------------------------------- /resources/xslt/hocr_to_plain_text.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/xslt/hocr_to_plain_text.xsl -------------------------------------------------------------------------------- /resources/xslt/validation_to_xhtml.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/resources/xslt/validation_to_xhtml.xsl -------------------------------------------------------------------------------- /runs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/runs.html -------------------------------------------------------------------------------- /search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/search.html -------------------------------------------------------------------------------- /side_by_side_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/side_by_side_view.html -------------------------------------------------------------------------------- /teiPreflight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/teiPreflight.html -------------------------------------------------------------------------------- /teiValidation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/teiValidation.html -------------------------------------------------------------------------------- /templates/page-fluid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/templates/page-fluid.html -------------------------------------------------------------------------------- /templates/page-margins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/templates/page-margins.html -------------------------------------------------------------------------------- /templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/templates/page.html -------------------------------------------------------------------------------- /update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/update.html -------------------------------------------------------------------------------- /urn_library.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/urn_library.html -------------------------------------------------------------------------------- /urns_to_json.xq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brobertson/Lace2/HEAD/urns_to_json.xq --------------------------------------------------------------------------------