├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── cypress ├── .gitignore ├── README.md ├── cypress.config.js ├── cypress │ ├── e2e │ │ └── import_category │ │ │ └── create_project.cy.js │ ├── fixtures │ │ └── fixtures.js │ ├── plugins │ │ └── index.js │ └── support │ │ ├── commands.js │ │ ├── e2e.js │ │ └── openrefine_api.js ├── package.json ├── run_headless.sh └── yarn.lock ├── module ├── MOD-INF │ ├── .gitignore │ ├── controller.js │ └── module.properties ├── externals │ └── suggest │ │ ├── css │ │ └── suggest-4_3.min.css │ │ └── suggest-4_3a.js ├── langs │ ├── translation-ar.json │ ├── translation-az.json │ ├── translation-bn.json │ ├── translation-bn_IN.json │ ├── translation-br.json │ ├── translation-ca.json │ ├── translation-ceb.json │ ├── translation-cs.json │ ├── translation-da.json │ ├── translation-de.json │ ├── translation-el.json │ ├── translation-en.json │ ├── translation-en_GB.json │ ├── translation-es.json │ ├── translation-eu.json │ ├── translation-fa.json │ ├── translation-fi.json │ ├── translation-fil.json │ ├── translation-fr.json │ ├── translation-gl.json │ ├── translation-he.json │ ├── translation-hi.json │ ├── translation-hu.json │ ├── translation-id.json │ ├── translation-it.json │ ├── translation-iu.json │ ├── translation-ja.json │ ├── translation-ko.json │ ├── translation-ml.json │ ├── translation-mr.json │ ├── translation-nb_NO.json │ ├── translation-nl.json │ ├── translation-pa.json │ ├── translation-pa_PK.json │ ├── translation-pl.json │ ├── translation-pt.json │ ├── translation-pt_BR.json │ ├── translation-pt_PT.json │ ├── translation-ro.json │ ├── translation-ru.json │ ├── translation-sv.json │ ├── translation-ta.json │ ├── translation-tl.json │ ├── translation-tr.json │ ├── translation-uk.json │ ├── translation-zh_Hans.json │ └── translation-zh_Hant.json ├── scripts │ ├── index │ │ ├── category-suggest.js │ │ ├── commons-importing-controller.js │ │ ├── commons-parsing-panel.html │ │ ├── commons-source-ui.js │ │ └── import-from-commons-form.html │ └── project │ │ └── thumbnail-renderer.js └── styles │ ├── commons-importing-controller.less │ └── thumbnails.less ├── pom.xml └── src ├── assembly └── extension.xml ├── main └── java │ └── org │ └── openrefine │ └── extensions │ └── commons │ ├── functions │ ├── ExtractCategories.java │ └── ExtractFromTemplate.java │ ├── importer │ ├── CategoryWithDepth.java │ ├── CommonsImporter.java │ ├── CommonsImportingController.java │ ├── FileFetcher.java │ ├── FileRecord.java │ ├── FileRecordToRows.java │ ├── HttpClient.java │ └── RelatedCategoryFetcher.java │ └── utils │ └── WikitextParsingUtilities.java └── test ├── conf └── tests.xml └── java └── org └── openrefine └── extensions └── commons ├── functions ├── ExtractCategoriesTests.java └── ExtractFromTemplateTest.java ├── importer ├── CommonsImporterTest.java ├── CommonsImportingControllerTest.java ├── FileFetcherTest.java ├── FileRecordToRowsTest.java └── RelatedCategoryFetcherTest.java └── utils ├── HistoryEntryManagerStub.java ├── ProjectManagerStub.java └── RefineServletStub.java /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/README.md -------------------------------------------------------------------------------- /cypress/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/cypress/.gitignore -------------------------------------------------------------------------------- /cypress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/cypress/README.md -------------------------------------------------------------------------------- /cypress/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/cypress/cypress.config.js -------------------------------------------------------------------------------- /cypress/cypress/e2e/import_category/create_project.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/cypress/cypress/e2e/import_category/create_project.cy.js -------------------------------------------------------------------------------- /cypress/cypress/fixtures/fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/cypress/cypress/fixtures/fixtures.js -------------------------------------------------------------------------------- /cypress/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/cypress/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/cypress/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/cypress/cypress/support/e2e.js -------------------------------------------------------------------------------- /cypress/cypress/support/openrefine_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/cypress/cypress/support/openrefine_api.js -------------------------------------------------------------------------------- /cypress/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/cypress/package.json -------------------------------------------------------------------------------- /cypress/run_headless.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/cypress/run_headless.sh -------------------------------------------------------------------------------- /cypress/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/cypress/yarn.lock -------------------------------------------------------------------------------- /module/MOD-INF/.gitignore: -------------------------------------------------------------------------------- 1 | /classes/ 2 | -------------------------------------------------------------------------------- /module/MOD-INF/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/module/MOD-INF/controller.js -------------------------------------------------------------------------------- /module/MOD-INF/module.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/module/MOD-INF/module.properties -------------------------------------------------------------------------------- /module/externals/suggest/css/suggest-4_3.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/module/externals/suggest/css/suggest-4_3.min.css -------------------------------------------------------------------------------- /module/externals/suggest/suggest-4_3a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/module/externals/suggest/suggest-4_3a.js -------------------------------------------------------------------------------- /module/langs/translation-ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/module/langs/translation-ar.json -------------------------------------------------------------------------------- /module/langs/translation-az.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-bn.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-bn_IN.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-br.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/module/langs/translation-ca.json -------------------------------------------------------------------------------- /module/langs/translation-ceb.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/module/langs/translation-cs.json -------------------------------------------------------------------------------- /module/langs/translation-da.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-de.json: -------------------------------------------------------------------------------- 1 | { 2 | "commons-import/preparing": "Vorbereitung…" 3 | } 4 | -------------------------------------------------------------------------------- /module/langs/translation-el.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/module/langs/translation-en.json -------------------------------------------------------------------------------- /module/langs/translation-en_GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/module/langs/translation-en_GB.json -------------------------------------------------------------------------------- /module/langs/translation-es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/module/langs/translation-es.json -------------------------------------------------------------------------------- /module/langs/translation-eu.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-fa.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-fi.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-fil.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/module/langs/translation-fr.json -------------------------------------------------------------------------------- /module/langs/translation-gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/module/langs/translation-gl.json -------------------------------------------------------------------------------- /module/langs/translation-he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/module/langs/translation-he.json -------------------------------------------------------------------------------- /module/langs/translation-hi.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-hu.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-id.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/module/langs/translation-it.json -------------------------------------------------------------------------------- /module/langs/translation-iu.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/module/langs/translation-ja.json -------------------------------------------------------------------------------- /module/langs/translation-ko.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-ml.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-mr.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-nb_NO.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-nl.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-pa.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-pa_PK.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-pl.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-pt.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-pt_BR.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-pt_PT.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-ro.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-ru.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-sv.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/module/langs/translation-ta.json -------------------------------------------------------------------------------- /module/langs/translation-tl.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/module/langs/translation-tr.json -------------------------------------------------------------------------------- /module/langs/translation-uk.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-zh_Hans.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/langs/translation-zh_Hant.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/scripts/index/category-suggest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/module/scripts/index/category-suggest.js -------------------------------------------------------------------------------- /module/scripts/index/commons-importing-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/module/scripts/index/commons-importing-controller.js -------------------------------------------------------------------------------- /module/scripts/index/commons-parsing-panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/module/scripts/index/commons-parsing-panel.html -------------------------------------------------------------------------------- /module/scripts/index/commons-source-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/module/scripts/index/commons-source-ui.js -------------------------------------------------------------------------------- /module/scripts/index/import-from-commons-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/module/scripts/index/import-from-commons-form.html -------------------------------------------------------------------------------- /module/scripts/project/thumbnail-renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/module/scripts/project/thumbnail-renderer.js -------------------------------------------------------------------------------- /module/styles/commons-importing-controller.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/module/styles/commons-importing-controller.less -------------------------------------------------------------------------------- /module/styles/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/module/styles/thumbnails.less -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/pom.xml -------------------------------------------------------------------------------- /src/assembly/extension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/src/assembly/extension.xml -------------------------------------------------------------------------------- /src/main/java/org/openrefine/extensions/commons/functions/ExtractCategories.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/src/main/java/org/openrefine/extensions/commons/functions/ExtractCategories.java -------------------------------------------------------------------------------- /src/main/java/org/openrefine/extensions/commons/functions/ExtractFromTemplate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/src/main/java/org/openrefine/extensions/commons/functions/ExtractFromTemplate.java -------------------------------------------------------------------------------- /src/main/java/org/openrefine/extensions/commons/importer/CategoryWithDepth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/src/main/java/org/openrefine/extensions/commons/importer/CategoryWithDepth.java -------------------------------------------------------------------------------- /src/main/java/org/openrefine/extensions/commons/importer/CommonsImporter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/src/main/java/org/openrefine/extensions/commons/importer/CommonsImporter.java -------------------------------------------------------------------------------- /src/main/java/org/openrefine/extensions/commons/importer/CommonsImportingController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/src/main/java/org/openrefine/extensions/commons/importer/CommonsImportingController.java -------------------------------------------------------------------------------- /src/main/java/org/openrefine/extensions/commons/importer/FileFetcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/src/main/java/org/openrefine/extensions/commons/importer/FileFetcher.java -------------------------------------------------------------------------------- /src/main/java/org/openrefine/extensions/commons/importer/FileRecord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/src/main/java/org/openrefine/extensions/commons/importer/FileRecord.java -------------------------------------------------------------------------------- /src/main/java/org/openrefine/extensions/commons/importer/FileRecordToRows.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/src/main/java/org/openrefine/extensions/commons/importer/FileRecordToRows.java -------------------------------------------------------------------------------- /src/main/java/org/openrefine/extensions/commons/importer/HttpClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/src/main/java/org/openrefine/extensions/commons/importer/HttpClient.java -------------------------------------------------------------------------------- /src/main/java/org/openrefine/extensions/commons/importer/RelatedCategoryFetcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/src/main/java/org/openrefine/extensions/commons/importer/RelatedCategoryFetcher.java -------------------------------------------------------------------------------- /src/main/java/org/openrefine/extensions/commons/utils/WikitextParsingUtilities.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/src/main/java/org/openrefine/extensions/commons/utils/WikitextParsingUtilities.java -------------------------------------------------------------------------------- /src/test/conf/tests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/src/test/conf/tests.xml -------------------------------------------------------------------------------- /src/test/java/org/openrefine/extensions/commons/functions/ExtractCategoriesTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/src/test/java/org/openrefine/extensions/commons/functions/ExtractCategoriesTests.java -------------------------------------------------------------------------------- /src/test/java/org/openrefine/extensions/commons/functions/ExtractFromTemplateTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/src/test/java/org/openrefine/extensions/commons/functions/ExtractFromTemplateTest.java -------------------------------------------------------------------------------- /src/test/java/org/openrefine/extensions/commons/importer/CommonsImporterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/src/test/java/org/openrefine/extensions/commons/importer/CommonsImporterTest.java -------------------------------------------------------------------------------- /src/test/java/org/openrefine/extensions/commons/importer/CommonsImportingControllerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/src/test/java/org/openrefine/extensions/commons/importer/CommonsImportingControllerTest.java -------------------------------------------------------------------------------- /src/test/java/org/openrefine/extensions/commons/importer/FileFetcherTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/src/test/java/org/openrefine/extensions/commons/importer/FileFetcherTest.java -------------------------------------------------------------------------------- /src/test/java/org/openrefine/extensions/commons/importer/FileRecordToRowsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/src/test/java/org/openrefine/extensions/commons/importer/FileRecordToRowsTest.java -------------------------------------------------------------------------------- /src/test/java/org/openrefine/extensions/commons/importer/RelatedCategoryFetcherTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/src/test/java/org/openrefine/extensions/commons/importer/RelatedCategoryFetcherTest.java -------------------------------------------------------------------------------- /src/test/java/org/openrefine/extensions/commons/utils/HistoryEntryManagerStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/src/test/java/org/openrefine/extensions/commons/utils/HistoryEntryManagerStub.java -------------------------------------------------------------------------------- /src/test/java/org/openrefine/extensions/commons/utils/ProjectManagerStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/src/test/java/org/openrefine/extensions/commons/utils/ProjectManagerStub.java -------------------------------------------------------------------------------- /src/test/java/org/openrefine/extensions/commons/utils/RefineServletStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRefine/CommonsExtension/HEAD/src/test/java/org/openrefine/extensions/commons/utils/RefineServletStub.java --------------------------------------------------------------------------------