├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yaml ├── pom.xml ├── proms.ttl ├── src └── main │ ├── java │ └── it │ │ └── essepuntato │ │ └── lode │ │ ├── GetSource.java │ │ ├── LODEConfiguration.java │ │ ├── LodeServlet.java │ │ ├── MimeType.java │ │ └── SourceExtractor.java │ ├── resources │ └── jetty │ │ ├── jetty.xml │ │ └── override-web.xml │ └── webapp │ ├── LODELogo.png │ ├── META-INF │ └── MANIFEST.MF │ ├── Primer.css │ ├── WEB-INF │ └── web.xml │ ├── ajax-loader.gif │ ├── common-functions.xsl │ ├── config.properties │ ├── de.xml │ ├── en.xml │ ├── extra.css │ ├── extraction.xsl │ ├── favicon.ico │ ├── fr.xml │ ├── it.xml │ ├── jquery.js │ ├── jquery.scrollTo.js │ ├── lode.html │ ├── marked.min.js │ ├── owl.css │ ├── pellet.properties │ ├── rec.css │ ├── structural-reasoner.xsl │ └── swrl-module.xsl └── test └── cpannotationschema ├── html ├── extract_test_en.html ├── extract_test_en_files │ ├── Primer.css │ ├── extra.css │ ├── jquery.js │ ├── jquery_002.js │ ├── marked.js │ ├── owl.css │ └── rec.css ├── extract_test_fr.html ├── extract_test_fr_files │ ├── Primer.css │ ├── extra.css │ ├── jquery.js │ ├── jquery_002.js │ ├── marked.js │ ├── owl.css │ └── rec.css ├── extract_test_it.html └── extract_test_it_files │ ├── Primer.css │ ├── extra.css │ ├── jquery.js │ ├── jquery_002.js │ ├── marked.js │ ├── owl.css │ └── rec.css └── test.owl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/pom.xml -------------------------------------------------------------------------------- /proms.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/proms.ttl -------------------------------------------------------------------------------- /src/main/java/it/essepuntato/lode/GetSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/src/main/java/it/essepuntato/lode/GetSource.java -------------------------------------------------------------------------------- /src/main/java/it/essepuntato/lode/LODEConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/src/main/java/it/essepuntato/lode/LODEConfiguration.java -------------------------------------------------------------------------------- /src/main/java/it/essepuntato/lode/LodeServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/src/main/java/it/essepuntato/lode/LodeServlet.java -------------------------------------------------------------------------------- /src/main/java/it/essepuntato/lode/MimeType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/src/main/java/it/essepuntato/lode/MimeType.java -------------------------------------------------------------------------------- /src/main/java/it/essepuntato/lode/SourceExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/src/main/java/it/essepuntato/lode/SourceExtractor.java -------------------------------------------------------------------------------- /src/main/resources/jetty/jetty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/src/main/resources/jetty/jetty.xml -------------------------------------------------------------------------------- /src/main/resources/jetty/override-web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/src/main/resources/jetty/override-web.xml -------------------------------------------------------------------------------- /src/main/webapp/LODELogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/src/main/webapp/LODELogo.png -------------------------------------------------------------------------------- /src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /src/main/webapp/Primer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/src/main/webapp/Primer.css -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /src/main/webapp/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/src/main/webapp/ajax-loader.gif -------------------------------------------------------------------------------- /src/main/webapp/common-functions.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/src/main/webapp/common-functions.xsl -------------------------------------------------------------------------------- /src/main/webapp/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/src/main/webapp/config.properties -------------------------------------------------------------------------------- /src/main/webapp/de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/src/main/webapp/de.xml -------------------------------------------------------------------------------- /src/main/webapp/en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/src/main/webapp/en.xml -------------------------------------------------------------------------------- /src/main/webapp/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/src/main/webapp/extra.css -------------------------------------------------------------------------------- /src/main/webapp/extraction.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/src/main/webapp/extraction.xsl -------------------------------------------------------------------------------- /src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /src/main/webapp/fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/src/main/webapp/fr.xml -------------------------------------------------------------------------------- /src/main/webapp/it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/src/main/webapp/it.xml -------------------------------------------------------------------------------- /src/main/webapp/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/src/main/webapp/jquery.js -------------------------------------------------------------------------------- /src/main/webapp/jquery.scrollTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/src/main/webapp/jquery.scrollTo.js -------------------------------------------------------------------------------- /src/main/webapp/lode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/src/main/webapp/lode.html -------------------------------------------------------------------------------- /src/main/webapp/marked.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/src/main/webapp/marked.min.js -------------------------------------------------------------------------------- /src/main/webapp/owl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/src/main/webapp/owl.css -------------------------------------------------------------------------------- /src/main/webapp/pellet.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/src/main/webapp/pellet.properties -------------------------------------------------------------------------------- /src/main/webapp/rec.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/src/main/webapp/rec.css -------------------------------------------------------------------------------- /src/main/webapp/structural-reasoner.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/src/main/webapp/structural-reasoner.xsl -------------------------------------------------------------------------------- /src/main/webapp/swrl-module.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/src/main/webapp/swrl-module.xsl -------------------------------------------------------------------------------- /test/cpannotationschema/html/extract_test_en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/test/cpannotationschema/html/extract_test_en.html -------------------------------------------------------------------------------- /test/cpannotationschema/html/extract_test_en_files/Primer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/test/cpannotationschema/html/extract_test_en_files/Primer.css -------------------------------------------------------------------------------- /test/cpannotationschema/html/extract_test_en_files/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/test/cpannotationschema/html/extract_test_en_files/extra.css -------------------------------------------------------------------------------- /test/cpannotationschema/html/extract_test_en_files/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/test/cpannotationschema/html/extract_test_en_files/jquery.js -------------------------------------------------------------------------------- /test/cpannotationschema/html/extract_test_en_files/jquery_002.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/test/cpannotationschema/html/extract_test_en_files/jquery_002.js -------------------------------------------------------------------------------- /test/cpannotationschema/html/extract_test_en_files/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/test/cpannotationschema/html/extract_test_en_files/marked.js -------------------------------------------------------------------------------- /test/cpannotationschema/html/extract_test_en_files/owl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/test/cpannotationschema/html/extract_test_en_files/owl.css -------------------------------------------------------------------------------- /test/cpannotationschema/html/extract_test_en_files/rec.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/test/cpannotationschema/html/extract_test_en_files/rec.css -------------------------------------------------------------------------------- /test/cpannotationschema/html/extract_test_fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/test/cpannotationschema/html/extract_test_fr.html -------------------------------------------------------------------------------- /test/cpannotationschema/html/extract_test_fr_files/Primer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/test/cpannotationschema/html/extract_test_fr_files/Primer.css -------------------------------------------------------------------------------- /test/cpannotationschema/html/extract_test_fr_files/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/test/cpannotationschema/html/extract_test_fr_files/extra.css -------------------------------------------------------------------------------- /test/cpannotationschema/html/extract_test_fr_files/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/test/cpannotationschema/html/extract_test_fr_files/jquery.js -------------------------------------------------------------------------------- /test/cpannotationschema/html/extract_test_fr_files/jquery_002.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/test/cpannotationschema/html/extract_test_fr_files/jquery_002.js -------------------------------------------------------------------------------- /test/cpannotationschema/html/extract_test_fr_files/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/test/cpannotationschema/html/extract_test_fr_files/marked.js -------------------------------------------------------------------------------- /test/cpannotationschema/html/extract_test_fr_files/owl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/test/cpannotationschema/html/extract_test_fr_files/owl.css -------------------------------------------------------------------------------- /test/cpannotationschema/html/extract_test_fr_files/rec.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/test/cpannotationschema/html/extract_test_fr_files/rec.css -------------------------------------------------------------------------------- /test/cpannotationschema/html/extract_test_it.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/test/cpannotationschema/html/extract_test_it.html -------------------------------------------------------------------------------- /test/cpannotationschema/html/extract_test_it_files/Primer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/test/cpannotationschema/html/extract_test_it_files/Primer.css -------------------------------------------------------------------------------- /test/cpannotationschema/html/extract_test_it_files/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/test/cpannotationschema/html/extract_test_it_files/extra.css -------------------------------------------------------------------------------- /test/cpannotationschema/html/extract_test_it_files/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/test/cpannotationschema/html/extract_test_it_files/jquery.js -------------------------------------------------------------------------------- /test/cpannotationschema/html/extract_test_it_files/jquery_002.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/test/cpannotationschema/html/extract_test_it_files/jquery_002.js -------------------------------------------------------------------------------- /test/cpannotationschema/html/extract_test_it_files/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/test/cpannotationschema/html/extract_test_it_files/marked.js -------------------------------------------------------------------------------- /test/cpannotationschema/html/extract_test_it_files/owl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/test/cpannotationschema/html/extract_test_it_files/owl.css -------------------------------------------------------------------------------- /test/cpannotationschema/html/extract_test_it_files/rec.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/test/cpannotationschema/html/extract_test_it_files/rec.css -------------------------------------------------------------------------------- /test/cpannotationschema/test.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essepuntato/LODE/HEAD/test/cpannotationschema/test.owl --------------------------------------------------------------------------------