├── .gitattributes ├── .gitignore ├── Data ├── Calderon │ ├── EST-Frontmatter-1.0.tei │ ├── EST-Prince3.css │ ├── EST-Readme.txt │ ├── EST-content-1.0.txt │ ├── EST-table.sql │ ├── Processed │ │ ├── EST.html │ │ ├── EST.xml │ │ ├── images │ │ │ ├── new-cover.jpg │ │ │ └── qr20738.png │ │ └── images@2 │ │ │ └── new-cover.jpg │ ├── README.md │ ├── convert.pl │ ├── imageinfo.xml │ ├── makedb.pl │ ├── makemdf.pl │ ├── makexdxf.pl │ ├── metadata.xml │ └── process.bat ├── Encarnacion │ ├── EspanolBisaya-1.0.tei │ ├── Processed │ │ ├── EspanolBisaya-utf8.txt │ │ ├── EspanolBisaya.html │ │ ├── EspanolBisaya.xml │ │ ├── images@1 │ │ │ ├── fin.png │ │ │ ├── new-cover.jpg │ │ │ ├── qr69948.png │ │ │ └── titlepage.png │ │ └── images@2 │ │ │ ├── fin.png │ │ │ ├── new-cover.jpg │ │ │ ├── qr69948.png │ │ │ └── titlepage.png │ ├── README.md │ ├── imageinfo.xml │ ├── metadata.xml │ ├── old │ │ ├── EDEB-tag.pl │ │ ├── Encarnacion-Remainder-0.0.tei │ │ ├── identry.pl │ │ ├── refvide.pl │ │ └── schw.pl │ ├── process.pl │ ├── regularize.pat │ └── tei2html.config ├── Kaufmann │ ├── Documentation │ │ ├── Mill Hill Missionaries.txt │ │ └── Philippine Dictionaries.txt │ ├── KVED-Body-0.1.txt │ ├── KVED-Errata-0.1.tei │ ├── KVED-Introduction-0.2.tei │ ├── KVED-Prince.css │ ├── KVED-Prince3.css │ ├── KVED-Structure.sql │ ├── KVED-Structure.xsd │ ├── KVED-db.pl │ ├── KVED-entities.pl │ ├── KVED-include.pl │ ├── KVED-process.pl │ ├── KVED-sort.pl │ ├── KVED-tag.pl │ ├── KVED-tei.pl │ ├── Processed │ │ ├── KVED.html │ │ ├── KVED.txt │ │ ├── KVED.xml │ │ ├── images │ │ │ └── new-cover.jpg │ │ └── images@2 │ │ │ └── new-cover.jpg │ ├── SQL │ │ └── structure-sqlite.sql │ ├── dic2xdxf.xsl │ ├── dollars.pat │ └── imageinfo.xml ├── Nigg │ ├── NTEETD-tag.pl │ ├── Processed │ │ ├── TagalogDictionary.html │ │ ├── TagalogDictionary.txt │ │ └── TagalogDictionary.xml │ ├── body-EN-TL-0.1.tei │ ├── body-TL-EN-0.1.tei │ ├── body-names-0.1.tei │ ├── front-matter-0.1.tei │ ├── include.pl │ ├── metadata.xml │ ├── process.pl │ └── projectID443d0168ca689_P3_latest.txt └── Wolff │ ├── Documentation │ ├── adding-expansions.txt │ ├── article.txt │ ├── ceb-tables.txt │ ├── checklist.txt │ ├── forms.html │ ├── from_paper_to_app.txt │ ├── pgdp-wikipage.txt │ └── project-description.txt │ ├── Old │ ├── F-round-results │ │ ├── pgclean.pl │ │ ├── projectID4904c65b1fb34_F2_latest.txt │ │ ├── projectID4904cc5425a6f_F1_latest.txt │ │ ├── projectID4904cc6388000_F1_latest.txt │ │ ├── projectID4904cc703eed2_F1_saved.txt │ │ ├── projectID4904cc7df05c5_F1_latest.txt │ │ ├── projectID4904cc918727b_F1_latest.txt │ │ ├── projectID4904cc9eb99f0_F1_latest.txt │ │ ├── projectID4904ccad4618b_F1_latest.txt │ │ ├── projectID4904ccc7e3ae5_F1_latest.txt │ │ ├── projectID4904ccd44eeb4_F1_latest.txt │ │ ├── projectID4904cce7e1aaa_F1_latest.txt │ │ └── projectID4904ccf460ed6_F1_saved.txt │ ├── P-round-results │ │ ├── WCED-catpars.pl │ │ ├── WCED-tag.pl │ │ ├── WCED-tag2.pl │ │ ├── WCED-tag3.xsl │ │ ├── process.pl │ │ ├── projectID4904c65b1fb34_P3_latest.txt │ │ ├── projectID4904cc5425a6f_P3_latest.txt │ │ ├── projectID4904cc6388000_P3_latest.txt │ │ ├── projectID4904cc703eed2_P3_latest.txt │ │ ├── projectID4904cc7df05c5_P2_latest.txt │ │ ├── projectID4904cc918727b_P1_latest.txt │ │ ├── projectID4904cc9eb99f0_P3_latest.txt │ │ ├── projectID4904ccad4618b_P1_latest.txt │ │ ├── projectID4904ccc7e3ae5_P1_latest.txt │ │ ├── projectID4904ccd44eeb4_P1_latest.txt │ │ ├── projectID4904cce7e1aaa_P1_latest.txt │ │ ├── projectID4904ccf460ed6_P1_latest.txt │ │ └── sample-entry.xml │ └── Text-Only │ │ ├── WCED-A.txt │ │ ├── WCED-B.txt │ │ ├── WCED-D.txt │ │ ├── WCED-G.txt │ │ ├── WCED-H.txt │ │ ├── WCED-I.txt │ │ ├── WCED-K.txt │ │ ├── WCED-L.txt │ │ ├── WCED-M.txt │ │ ├── WCED-N.txt │ │ ├── WCED-P.txt │ │ ├── WCED-R.txt │ │ ├── WCED-S.txt │ │ ├── WCED-T.txt │ │ ├── WCED-U.txt │ │ ├── WCED-W.txt │ │ ├── WCED-Y.txt │ │ ├── WCED-addenda.txt │ │ ├── WCED-backmatter.txt │ │ ├── WCED-frontmatter.txt │ │ └── concat.bat │ ├── Processed │ ├── WCED-complete-utf8.txt │ ├── WCED-complete.html │ ├── WCED-complete.xml │ └── images │ │ └── qrcode.png │ ├── SQL │ ├── A.sql │ ├── B.sql │ ├── D.sql │ ├── G.sql │ ├── H.sql │ ├── I.sql │ ├── K.sql │ ├── L.sql │ ├── M.sql │ ├── N.sql │ ├── P.sql │ ├── R.sql │ ├── S.sql │ ├── T.sql │ ├── U.sql │ ├── W.sql │ ├── Y.sql │ ├── addenda.sql │ ├── structure-sqlite.sql │ └── structure.sql │ ├── WCED-A.tei │ ├── WCED-B.tei │ ├── WCED-D.tei │ ├── WCED-G.tei │ ├── WCED-H.tei │ ├── WCED-I.tei │ ├── WCED-K.tei │ ├── WCED-L.tei │ ├── WCED-M.tei │ ├── WCED-N.tei │ ├── WCED-P.tei │ ├── WCED-Prince.css │ ├── WCED-R.tei │ ├── WCED-S.tei │ ├── WCED-T.tei │ ├── WCED-U.tei │ ├── WCED-W.tei │ ├── WCED-Y.tei │ ├── WCED-abbr.pl │ ├── WCED-addenda.tei │ ├── WCED-backmatter-0.0.tei │ ├── WCED-collect.xsl │ ├── WCED-complete.xsl │ ├── WCED-db.xsl │ ├── WCED-downtag.pl │ ├── WCED-downtag.xsl │ ├── WCED-frontmatter-0.1.tei │ ├── WCED-samples.tei │ ├── WCED-support.xsl │ ├── WCED-text.pl │ ├── WCED-uptag1.pl │ ├── WCED-uptag2.xsl │ ├── WCED-uptag3.xsl │ ├── WCED-view.xsl │ ├── custom.css │ ├── imageinfo.xml │ ├── images │ ├── cover-trial.jpg │ └── cover-trial720.jpg │ ├── inches.pl │ ├── metadata.xml │ ├── numberParagraphs.pl │ ├── process.pl │ ├── readme.md │ ├── runsaxon.pl │ ├── tei2html.config │ └── toEntities.pl ├── README.md └── Wiki ├── DatabaseStructure.md ├── EditInterface.md ├── UseScenarios.md ├── UserInterface.md └── VerbConjugation.md /.gitattributes: -------------------------------------------------------------------------------- 1 | *.tei encoding=cp1252 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/.gitignore -------------------------------------------------------------------------------- /Data/Calderon/EST-Frontmatter-1.0.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Calderon/EST-Frontmatter-1.0.tei -------------------------------------------------------------------------------- /Data/Calderon/EST-Prince3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Calderon/EST-Prince3.css -------------------------------------------------------------------------------- /Data/Calderon/EST-Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Calderon/EST-Readme.txt -------------------------------------------------------------------------------- /Data/Calderon/EST-content-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Calderon/EST-content-1.0.txt -------------------------------------------------------------------------------- /Data/Calderon/EST-table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Calderon/EST-table.sql -------------------------------------------------------------------------------- /Data/Calderon/Processed/EST.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Calderon/Processed/EST.html -------------------------------------------------------------------------------- /Data/Calderon/Processed/EST.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Calderon/Processed/EST.xml -------------------------------------------------------------------------------- /Data/Calderon/Processed/images/new-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Calderon/Processed/images/new-cover.jpg -------------------------------------------------------------------------------- /Data/Calderon/Processed/images/qr20738.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Calderon/Processed/images/qr20738.png -------------------------------------------------------------------------------- /Data/Calderon/Processed/images@2/new-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Calderon/Processed/images@2/new-cover.jpg -------------------------------------------------------------------------------- /Data/Calderon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Calderon/README.md -------------------------------------------------------------------------------- /Data/Calderon/convert.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Calderon/convert.pl -------------------------------------------------------------------------------- /Data/Calderon/imageinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Calderon/imageinfo.xml -------------------------------------------------------------------------------- /Data/Calderon/makedb.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Calderon/makedb.pl -------------------------------------------------------------------------------- /Data/Calderon/makemdf.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Calderon/makemdf.pl -------------------------------------------------------------------------------- /Data/Calderon/makexdxf.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Calderon/makexdxf.pl -------------------------------------------------------------------------------- /Data/Calderon/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Calderon/metadata.xml -------------------------------------------------------------------------------- /Data/Calderon/process.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Calderon/process.bat -------------------------------------------------------------------------------- /Data/Encarnacion/EspanolBisaya-1.0.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Encarnacion/EspanolBisaya-1.0.tei -------------------------------------------------------------------------------- /Data/Encarnacion/Processed/EspanolBisaya-utf8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Encarnacion/Processed/EspanolBisaya-utf8.txt -------------------------------------------------------------------------------- /Data/Encarnacion/Processed/EspanolBisaya.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Encarnacion/Processed/EspanolBisaya.html -------------------------------------------------------------------------------- /Data/Encarnacion/Processed/EspanolBisaya.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Encarnacion/Processed/EspanolBisaya.xml -------------------------------------------------------------------------------- /Data/Encarnacion/Processed/images@1/fin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Encarnacion/Processed/images@1/fin.png -------------------------------------------------------------------------------- /Data/Encarnacion/Processed/images@1/new-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Encarnacion/Processed/images@1/new-cover.jpg -------------------------------------------------------------------------------- /Data/Encarnacion/Processed/images@1/qr69948.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Encarnacion/Processed/images@1/qr69948.png -------------------------------------------------------------------------------- /Data/Encarnacion/Processed/images@1/titlepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Encarnacion/Processed/images@1/titlepage.png -------------------------------------------------------------------------------- /Data/Encarnacion/Processed/images@2/fin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Encarnacion/Processed/images@2/fin.png -------------------------------------------------------------------------------- /Data/Encarnacion/Processed/images@2/new-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Encarnacion/Processed/images@2/new-cover.jpg -------------------------------------------------------------------------------- /Data/Encarnacion/Processed/images@2/qr69948.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Encarnacion/Processed/images@2/qr69948.png -------------------------------------------------------------------------------- /Data/Encarnacion/Processed/images@2/titlepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Encarnacion/Processed/images@2/titlepage.png -------------------------------------------------------------------------------- /Data/Encarnacion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Encarnacion/README.md -------------------------------------------------------------------------------- /Data/Encarnacion/imageinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Encarnacion/imageinfo.xml -------------------------------------------------------------------------------- /Data/Encarnacion/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Encarnacion/metadata.xml -------------------------------------------------------------------------------- /Data/Encarnacion/old/EDEB-tag.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Encarnacion/old/EDEB-tag.pl -------------------------------------------------------------------------------- /Data/Encarnacion/old/Encarnacion-Remainder-0.0.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Encarnacion/old/Encarnacion-Remainder-0.0.tei -------------------------------------------------------------------------------- /Data/Encarnacion/old/identry.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Encarnacion/old/identry.pl -------------------------------------------------------------------------------- /Data/Encarnacion/old/refvide.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Encarnacion/old/refvide.pl -------------------------------------------------------------------------------- /Data/Encarnacion/old/schw.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Encarnacion/old/schw.pl -------------------------------------------------------------------------------- /Data/Encarnacion/process.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Encarnacion/process.pl -------------------------------------------------------------------------------- /Data/Encarnacion/regularize.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Encarnacion/regularize.pat -------------------------------------------------------------------------------- /Data/Encarnacion/tei2html.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Encarnacion/tei2html.config -------------------------------------------------------------------------------- /Data/Kaufmann/Documentation/Mill Hill Missionaries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Kaufmann/Documentation/Mill Hill Missionaries.txt -------------------------------------------------------------------------------- /Data/Kaufmann/Documentation/Philippine Dictionaries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Kaufmann/Documentation/Philippine Dictionaries.txt -------------------------------------------------------------------------------- /Data/Kaufmann/KVED-Body-0.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Kaufmann/KVED-Body-0.1.txt -------------------------------------------------------------------------------- /Data/Kaufmann/KVED-Errata-0.1.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Kaufmann/KVED-Errata-0.1.tei -------------------------------------------------------------------------------- /Data/Kaufmann/KVED-Introduction-0.2.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Kaufmann/KVED-Introduction-0.2.tei -------------------------------------------------------------------------------- /Data/Kaufmann/KVED-Prince.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Kaufmann/KVED-Prince.css -------------------------------------------------------------------------------- /Data/Kaufmann/KVED-Prince3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Kaufmann/KVED-Prince3.css -------------------------------------------------------------------------------- /Data/Kaufmann/KVED-Structure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Kaufmann/KVED-Structure.sql -------------------------------------------------------------------------------- /Data/Kaufmann/KVED-Structure.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Kaufmann/KVED-Structure.xsd -------------------------------------------------------------------------------- /Data/Kaufmann/KVED-db.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Kaufmann/KVED-db.pl -------------------------------------------------------------------------------- /Data/Kaufmann/KVED-entities.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Kaufmann/KVED-entities.pl -------------------------------------------------------------------------------- /Data/Kaufmann/KVED-include.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Kaufmann/KVED-include.pl -------------------------------------------------------------------------------- /Data/Kaufmann/KVED-process.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Kaufmann/KVED-process.pl -------------------------------------------------------------------------------- /Data/Kaufmann/KVED-sort.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Kaufmann/KVED-sort.pl -------------------------------------------------------------------------------- /Data/Kaufmann/KVED-tag.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Kaufmann/KVED-tag.pl -------------------------------------------------------------------------------- /Data/Kaufmann/KVED-tei.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Kaufmann/KVED-tei.pl -------------------------------------------------------------------------------- /Data/Kaufmann/Processed/KVED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Kaufmann/Processed/KVED.html -------------------------------------------------------------------------------- /Data/Kaufmann/Processed/KVED.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Kaufmann/Processed/KVED.txt -------------------------------------------------------------------------------- /Data/Kaufmann/Processed/KVED.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Kaufmann/Processed/KVED.xml -------------------------------------------------------------------------------- /Data/Kaufmann/Processed/images/new-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Kaufmann/Processed/images/new-cover.jpg -------------------------------------------------------------------------------- /Data/Kaufmann/Processed/images@2/new-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Kaufmann/Processed/images@2/new-cover.jpg -------------------------------------------------------------------------------- /Data/Kaufmann/SQL/structure-sqlite.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Kaufmann/SQL/structure-sqlite.sql -------------------------------------------------------------------------------- /Data/Kaufmann/dic2xdxf.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Kaufmann/dic2xdxf.xsl -------------------------------------------------------------------------------- /Data/Kaufmann/dollars.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Kaufmann/dollars.pat -------------------------------------------------------------------------------- /Data/Kaufmann/imageinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Kaufmann/imageinfo.xml -------------------------------------------------------------------------------- /Data/Nigg/NTEETD-tag.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Nigg/NTEETD-tag.pl -------------------------------------------------------------------------------- /Data/Nigg/Processed/TagalogDictionary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Nigg/Processed/TagalogDictionary.html -------------------------------------------------------------------------------- /Data/Nigg/Processed/TagalogDictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Nigg/Processed/TagalogDictionary.txt -------------------------------------------------------------------------------- /Data/Nigg/Processed/TagalogDictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Nigg/Processed/TagalogDictionary.xml -------------------------------------------------------------------------------- /Data/Nigg/body-EN-TL-0.1.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Nigg/body-EN-TL-0.1.tei -------------------------------------------------------------------------------- /Data/Nigg/body-TL-EN-0.1.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Nigg/body-TL-EN-0.1.tei -------------------------------------------------------------------------------- /Data/Nigg/body-names-0.1.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Nigg/body-names-0.1.tei -------------------------------------------------------------------------------- /Data/Nigg/front-matter-0.1.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Nigg/front-matter-0.1.tei -------------------------------------------------------------------------------- /Data/Nigg/include.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Nigg/include.pl -------------------------------------------------------------------------------- /Data/Nigg/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Nigg/metadata.xml -------------------------------------------------------------------------------- /Data/Nigg/process.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Nigg/process.pl -------------------------------------------------------------------------------- /Data/Nigg/projectID443d0168ca689_P3_latest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Nigg/projectID443d0168ca689_P3_latest.txt -------------------------------------------------------------------------------- /Data/Wolff/Documentation/adding-expansions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Documentation/adding-expansions.txt -------------------------------------------------------------------------------- /Data/Wolff/Documentation/article.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Documentation/article.txt -------------------------------------------------------------------------------- /Data/Wolff/Documentation/ceb-tables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Documentation/ceb-tables.txt -------------------------------------------------------------------------------- /Data/Wolff/Documentation/checklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Documentation/checklist.txt -------------------------------------------------------------------------------- /Data/Wolff/Documentation/forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Documentation/forms.html -------------------------------------------------------------------------------- /Data/Wolff/Documentation/from_paper_to_app.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Documentation/from_paper_to_app.txt -------------------------------------------------------------------------------- /Data/Wolff/Documentation/pgdp-wikipage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Documentation/pgdp-wikipage.txt -------------------------------------------------------------------------------- /Data/Wolff/Documentation/project-description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Documentation/project-description.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/F-round-results/pgclean.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/F-round-results/pgclean.pl -------------------------------------------------------------------------------- /Data/Wolff/Old/F-round-results/projectID4904c65b1fb34_F2_latest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/F-round-results/projectID4904c65b1fb34_F2_latest.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/F-round-results/projectID4904cc5425a6f_F1_latest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/F-round-results/projectID4904cc5425a6f_F1_latest.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/F-round-results/projectID4904cc6388000_F1_latest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/F-round-results/projectID4904cc6388000_F1_latest.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/F-round-results/projectID4904cc703eed2_F1_saved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/F-round-results/projectID4904cc703eed2_F1_saved.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/F-round-results/projectID4904cc7df05c5_F1_latest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/F-round-results/projectID4904cc7df05c5_F1_latest.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/F-round-results/projectID4904cc918727b_F1_latest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/F-round-results/projectID4904cc918727b_F1_latest.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/F-round-results/projectID4904cc9eb99f0_F1_latest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/F-round-results/projectID4904cc9eb99f0_F1_latest.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/F-round-results/projectID4904ccad4618b_F1_latest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/F-round-results/projectID4904ccad4618b_F1_latest.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/F-round-results/projectID4904ccc7e3ae5_F1_latest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/F-round-results/projectID4904ccc7e3ae5_F1_latest.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/F-round-results/projectID4904ccd44eeb4_F1_latest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/F-round-results/projectID4904ccd44eeb4_F1_latest.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/F-round-results/projectID4904cce7e1aaa_F1_latest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/F-round-results/projectID4904cce7e1aaa_F1_latest.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/F-round-results/projectID4904ccf460ed6_F1_saved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/F-round-results/projectID4904ccf460ed6_F1_saved.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/P-round-results/WCED-catpars.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/P-round-results/WCED-catpars.pl -------------------------------------------------------------------------------- /Data/Wolff/Old/P-round-results/WCED-tag.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/P-round-results/WCED-tag.pl -------------------------------------------------------------------------------- /Data/Wolff/Old/P-round-results/WCED-tag2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/P-round-results/WCED-tag2.pl -------------------------------------------------------------------------------- /Data/Wolff/Old/P-round-results/WCED-tag3.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/P-round-results/WCED-tag3.xsl -------------------------------------------------------------------------------- /Data/Wolff/Old/P-round-results/process.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/P-round-results/process.pl -------------------------------------------------------------------------------- /Data/Wolff/Old/P-round-results/projectID4904c65b1fb34_P3_latest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/P-round-results/projectID4904c65b1fb34_P3_latest.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/P-round-results/projectID4904cc5425a6f_P3_latest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/P-round-results/projectID4904cc5425a6f_P3_latest.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/P-round-results/projectID4904cc6388000_P3_latest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/P-round-results/projectID4904cc6388000_P3_latest.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/P-round-results/projectID4904cc703eed2_P3_latest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/P-round-results/projectID4904cc703eed2_P3_latest.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/P-round-results/projectID4904cc7df05c5_P2_latest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/P-round-results/projectID4904cc7df05c5_P2_latest.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/P-round-results/projectID4904cc918727b_P1_latest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/P-round-results/projectID4904cc918727b_P1_latest.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/P-round-results/projectID4904cc9eb99f0_P3_latest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/P-round-results/projectID4904cc9eb99f0_P3_latest.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/P-round-results/projectID4904ccad4618b_P1_latest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/P-round-results/projectID4904ccad4618b_P1_latest.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/P-round-results/projectID4904ccc7e3ae5_P1_latest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/P-round-results/projectID4904ccc7e3ae5_P1_latest.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/P-round-results/projectID4904ccd44eeb4_P1_latest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/P-round-results/projectID4904ccd44eeb4_P1_latest.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/P-round-results/projectID4904cce7e1aaa_P1_latest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/P-round-results/projectID4904cce7e1aaa_P1_latest.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/P-round-results/projectID4904ccf460ed6_P1_latest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/P-round-results/projectID4904ccf460ed6_P1_latest.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/P-round-results/sample-entry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/P-round-results/sample-entry.xml -------------------------------------------------------------------------------- /Data/Wolff/Old/Text-Only/WCED-A.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/Text-Only/WCED-A.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/Text-Only/WCED-B.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/Text-Only/WCED-B.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/Text-Only/WCED-D.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/Text-Only/WCED-D.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/Text-Only/WCED-G.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/Text-Only/WCED-G.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/Text-Only/WCED-H.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/Text-Only/WCED-H.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/Text-Only/WCED-I.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/Text-Only/WCED-I.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/Text-Only/WCED-K.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/Text-Only/WCED-K.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/Text-Only/WCED-L.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/Text-Only/WCED-L.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/Text-Only/WCED-M.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/Text-Only/WCED-M.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/Text-Only/WCED-N.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/Text-Only/WCED-N.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/Text-Only/WCED-P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/Text-Only/WCED-P.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/Text-Only/WCED-R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/Text-Only/WCED-R.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/Text-Only/WCED-S.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/Text-Only/WCED-S.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/Text-Only/WCED-T.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/Text-Only/WCED-T.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/Text-Only/WCED-U.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/Text-Only/WCED-U.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/Text-Only/WCED-W.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/Text-Only/WCED-W.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/Text-Only/WCED-Y.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/Text-Only/WCED-Y.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/Text-Only/WCED-addenda.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/Text-Only/WCED-addenda.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/Text-Only/WCED-backmatter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/Text-Only/WCED-backmatter.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/Text-Only/WCED-frontmatter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/Text-Only/WCED-frontmatter.txt -------------------------------------------------------------------------------- /Data/Wolff/Old/Text-Only/concat.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Old/Text-Only/concat.bat -------------------------------------------------------------------------------- /Data/Wolff/Processed/WCED-complete-utf8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Processed/WCED-complete-utf8.txt -------------------------------------------------------------------------------- /Data/Wolff/Processed/WCED-complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Processed/WCED-complete.html -------------------------------------------------------------------------------- /Data/Wolff/Processed/WCED-complete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Processed/WCED-complete.xml -------------------------------------------------------------------------------- /Data/Wolff/Processed/images/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/Processed/images/qrcode.png -------------------------------------------------------------------------------- /Data/Wolff/SQL/A.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/SQL/A.sql -------------------------------------------------------------------------------- /Data/Wolff/SQL/B.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/SQL/B.sql -------------------------------------------------------------------------------- /Data/Wolff/SQL/D.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/SQL/D.sql -------------------------------------------------------------------------------- /Data/Wolff/SQL/G.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/SQL/G.sql -------------------------------------------------------------------------------- /Data/Wolff/SQL/H.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/SQL/H.sql -------------------------------------------------------------------------------- /Data/Wolff/SQL/I.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/SQL/I.sql -------------------------------------------------------------------------------- /Data/Wolff/SQL/K.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/SQL/K.sql -------------------------------------------------------------------------------- /Data/Wolff/SQL/L.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/SQL/L.sql -------------------------------------------------------------------------------- /Data/Wolff/SQL/M.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/SQL/M.sql -------------------------------------------------------------------------------- /Data/Wolff/SQL/N.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/SQL/N.sql -------------------------------------------------------------------------------- /Data/Wolff/SQL/P.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/SQL/P.sql -------------------------------------------------------------------------------- /Data/Wolff/SQL/R.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/SQL/R.sql -------------------------------------------------------------------------------- /Data/Wolff/SQL/S.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/SQL/S.sql -------------------------------------------------------------------------------- /Data/Wolff/SQL/T.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/SQL/T.sql -------------------------------------------------------------------------------- /Data/Wolff/SQL/U.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/SQL/U.sql -------------------------------------------------------------------------------- /Data/Wolff/SQL/W.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/SQL/W.sql -------------------------------------------------------------------------------- /Data/Wolff/SQL/Y.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/SQL/Y.sql -------------------------------------------------------------------------------- /Data/Wolff/SQL/addenda.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/SQL/addenda.sql -------------------------------------------------------------------------------- /Data/Wolff/SQL/structure-sqlite.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/SQL/structure-sqlite.sql -------------------------------------------------------------------------------- /Data/Wolff/SQL/structure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/SQL/structure.sql -------------------------------------------------------------------------------- /Data/Wolff/WCED-A.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-A.tei -------------------------------------------------------------------------------- /Data/Wolff/WCED-B.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-B.tei -------------------------------------------------------------------------------- /Data/Wolff/WCED-D.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-D.tei -------------------------------------------------------------------------------- /Data/Wolff/WCED-G.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-G.tei -------------------------------------------------------------------------------- /Data/Wolff/WCED-H.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-H.tei -------------------------------------------------------------------------------- /Data/Wolff/WCED-I.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-I.tei -------------------------------------------------------------------------------- /Data/Wolff/WCED-K.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-K.tei -------------------------------------------------------------------------------- /Data/Wolff/WCED-L.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-L.tei -------------------------------------------------------------------------------- /Data/Wolff/WCED-M.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-M.tei -------------------------------------------------------------------------------- /Data/Wolff/WCED-N.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-N.tei -------------------------------------------------------------------------------- /Data/Wolff/WCED-P.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-P.tei -------------------------------------------------------------------------------- /Data/Wolff/WCED-Prince.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-Prince.css -------------------------------------------------------------------------------- /Data/Wolff/WCED-R.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-R.tei -------------------------------------------------------------------------------- /Data/Wolff/WCED-S.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-S.tei -------------------------------------------------------------------------------- /Data/Wolff/WCED-T.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-T.tei -------------------------------------------------------------------------------- /Data/Wolff/WCED-U.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-U.tei -------------------------------------------------------------------------------- /Data/Wolff/WCED-W.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-W.tei -------------------------------------------------------------------------------- /Data/Wolff/WCED-Y.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-Y.tei -------------------------------------------------------------------------------- /Data/Wolff/WCED-abbr.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-abbr.pl -------------------------------------------------------------------------------- /Data/Wolff/WCED-addenda.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-addenda.tei -------------------------------------------------------------------------------- /Data/Wolff/WCED-backmatter-0.0.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-backmatter-0.0.tei -------------------------------------------------------------------------------- /Data/Wolff/WCED-collect.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-collect.xsl -------------------------------------------------------------------------------- /Data/Wolff/WCED-complete.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-complete.xsl -------------------------------------------------------------------------------- /Data/Wolff/WCED-db.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-db.xsl -------------------------------------------------------------------------------- /Data/Wolff/WCED-downtag.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-downtag.pl -------------------------------------------------------------------------------- /Data/Wolff/WCED-downtag.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-downtag.xsl -------------------------------------------------------------------------------- /Data/Wolff/WCED-frontmatter-0.1.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-frontmatter-0.1.tei -------------------------------------------------------------------------------- /Data/Wolff/WCED-samples.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-samples.tei -------------------------------------------------------------------------------- /Data/Wolff/WCED-support.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-support.xsl -------------------------------------------------------------------------------- /Data/Wolff/WCED-text.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-text.pl -------------------------------------------------------------------------------- /Data/Wolff/WCED-uptag1.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-uptag1.pl -------------------------------------------------------------------------------- /Data/Wolff/WCED-uptag2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-uptag2.xsl -------------------------------------------------------------------------------- /Data/Wolff/WCED-uptag3.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-uptag3.xsl -------------------------------------------------------------------------------- /Data/Wolff/WCED-view.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/WCED-view.xsl -------------------------------------------------------------------------------- /Data/Wolff/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/custom.css -------------------------------------------------------------------------------- /Data/Wolff/imageinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/imageinfo.xml -------------------------------------------------------------------------------- /Data/Wolff/images/cover-trial.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/images/cover-trial.jpg -------------------------------------------------------------------------------- /Data/Wolff/images/cover-trial720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/images/cover-trial720.jpg -------------------------------------------------------------------------------- /Data/Wolff/inches.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/inches.pl -------------------------------------------------------------------------------- /Data/Wolff/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/metadata.xml -------------------------------------------------------------------------------- /Data/Wolff/numberParagraphs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/numberParagraphs.pl -------------------------------------------------------------------------------- /Data/Wolff/process.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/process.pl -------------------------------------------------------------------------------- /Data/Wolff/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/readme.md -------------------------------------------------------------------------------- /Data/Wolff/runsaxon.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/runsaxon.pl -------------------------------------------------------------------------------- /Data/Wolff/tei2html.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/tei2html.config -------------------------------------------------------------------------------- /Data/Wolff/toEntities.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Data/Wolff/toEntities.pl -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/README.md -------------------------------------------------------------------------------- /Wiki/DatabaseStructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Wiki/DatabaseStructure.md -------------------------------------------------------------------------------- /Wiki/EditInterface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Wiki/EditInterface.md -------------------------------------------------------------------------------- /Wiki/UseScenarios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Wiki/UseScenarios.md -------------------------------------------------------------------------------- /Wiki/UserInterface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Wiki/UserInterface.md -------------------------------------------------------------------------------- /Wiki/VerbConjugation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhellingman/phildict/HEAD/Wiki/VerbConjugation.md --------------------------------------------------------------------------------