├── .gitignore ├── .skiff ├── cloudbuild-deploy.yaml └── webapp.jsonnet ├── LICENSE ├── README.md ├── api ├── .dockerignore ├── .flake8 ├── Dockerfile ├── app │ ├── __init__.py │ ├── annotations.py │ ├── metadata.py │ ├── pre_serve.py │ └── utils.py ├── config │ ├── allowed_users_local_development.txt │ └── configuration.json ├── main.py ├── pytest.ini ├── requirements.txt └── test │ ├── __init__.py │ ├── fixtures │ ├── config │ │ └── configuration.json │ ├── data │ │ └── 3febb2bed8865945e7fddc99efd791887bb7e14f │ │ │ ├── 3febb2bed8865945e7fddc99efd791887bb7e14f.pdf │ │ │ └── pdf_structure.json │ ├── status │ │ └── example@gmail.com.json │ └── users │ │ └── allowed.txt │ └── test_app.py ├── bin ├── kubeconf └── sh ├── cli ├── __init__.py ├── pawls │ ├── __init__.py │ ├── __main__.py │ ├── commands │ │ ├── __init__.py │ │ ├── assign.py │ │ ├── dataset.py │ │ ├── export.py │ │ ├── metric.py │ │ ├── preannotate.py │ │ ├── preprocess.py │ │ ├── status.py │ │ └── utils.py │ └── preprocessors │ │ ├── __init__.py │ │ ├── grobid.py │ │ ├── model.py │ │ ├── pdfplumber.py │ │ └── tesseract.py ├── readme.md ├── requirements.txt ├── setup.py └── test │ ├── __init__.py │ ├── assign_test.py │ ├── export_test.py │ ├── fixtures │ ├── anno.json │ ├── configuration.json │ └── pawls │ │ ├── 34f25a8704614163c4095b3ee2fc969b60de4698 │ │ ├── 34f25a8704614163c4095b3ee2fc969b60de4698.pdf │ │ ├── markn@example.com_annotations.json │ │ └── pdf_structure.json │ │ ├── 3febb2bed8865945e7fddc99efd791887bb7e14f │ │ ├── 3febb2bed8865945e7fddc99efd791887bb7e14f.pdf │ │ ├── markn@example.com_annotations.json │ │ └── pdf_structure.json │ │ ├── 553c58a05e25f794d24e8db8c2b8fdb9603e6a29 │ │ ├── 553c58a05e25f794d24e8db8c2b8fdb9603e6a29.pdf │ │ ├── pdf_structure.json │ │ └── shannons@example.com_annotations.json │ │ ├── name_mapping.json │ │ └── status │ │ ├── markn@example.com.json │ │ └── shannons@example.com.json │ ├── metric_test.py │ ├── preannotate_test.py │ └── status_test.py ├── docker-compose.yaml ├── proxy ├── Dockerfile ├── dist │ └── .gitignore ├── local.conf ├── nginx.conf └── prod.conf ├── scripts ├── ai2-internal │ ├── README.md │ └── fetch_pdfs.py └── generate_pdf_layouts.py ├── skiff.json ├── skiff_files └── .git_keep ├── sonar ├── Dockerfile ├── ping.py └── requirements.txt └── ui ├── .dockerignore ├── .env ├── .eslintignore ├── .eslintrc.js ├── Dockerfile ├── Dockerfile-local ├── package.json ├── public ├── favicon.ico ├── index.html └── robots.txt ├── src ├── App.tsx ├── api │ └── index.ts ├── components │ ├── AnnotationSummary.tsx │ ├── CenterOnPage.tsx │ ├── PDF.tsx │ ├── RelationModal.tsx │ ├── Selection.tsx │ ├── index.ts │ └── sidebar │ │ ├── Annotations.tsx │ │ ├── AssignedPaperList.tsx │ │ ├── Comment.tsx │ │ ├── Header.tsx │ │ ├── Labels.tsx │ │ ├── Relations.tsx │ │ ├── common.tsx │ │ ├── index.ts │ │ └── pawlsLogo.png ├── context │ ├── AnnotationStore.ts │ ├── PDFStore.ts │ └── index.ts ├── index.tsx ├── listeners │ └── index.tsx ├── pages │ ├── PDFPage.tsx │ └── index.ts ├── react-app-env.d.ts └── utils.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/.gitignore -------------------------------------------------------------------------------- /.skiff/cloudbuild-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/.skiff/cloudbuild-deploy.yaml -------------------------------------------------------------------------------- /.skiff/webapp.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/.skiff/webapp.jsonnet -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/README.md -------------------------------------------------------------------------------- /api/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/api/.dockerignore -------------------------------------------------------------------------------- /api/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/api/.flake8 -------------------------------------------------------------------------------- /api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/api/Dockerfile -------------------------------------------------------------------------------- /api/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/app/annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/api/app/annotations.py -------------------------------------------------------------------------------- /api/app/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/api/app/metadata.py -------------------------------------------------------------------------------- /api/app/pre_serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/api/app/pre_serve.py -------------------------------------------------------------------------------- /api/app/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/api/app/utils.py -------------------------------------------------------------------------------- /api/config/allowed_users_local_development.txt: -------------------------------------------------------------------------------- 1 | development_user@example.com 2 | -------------------------------------------------------------------------------- /api/config/configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/api/config/configuration.json -------------------------------------------------------------------------------- /api/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/api/main.py -------------------------------------------------------------------------------- /api/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/api/pytest.ini -------------------------------------------------------------------------------- /api/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/api/requirements.txt -------------------------------------------------------------------------------- /api/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/test/fixtures/config/configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/api/test/fixtures/config/configuration.json -------------------------------------------------------------------------------- /api/test/fixtures/data/3febb2bed8865945e7fddc99efd791887bb7e14f/3febb2bed8865945e7fddc99efd791887bb7e14f.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/api/test/fixtures/data/3febb2bed8865945e7fddc99efd791887bb7e14f/3febb2bed8865945e7fddc99efd791887bb7e14f.pdf -------------------------------------------------------------------------------- /api/test/fixtures/data/3febb2bed8865945e7fddc99efd791887bb7e14f/pdf_structure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/api/test/fixtures/data/3febb2bed8865945e7fddc99efd791887bb7e14f/pdf_structure.json -------------------------------------------------------------------------------- /api/test/fixtures/status/example@gmail.com.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/api/test/fixtures/status/example@gmail.com.json -------------------------------------------------------------------------------- /api/test/fixtures/users/allowed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/api/test/fixtures/users/allowed.txt -------------------------------------------------------------------------------- /api/test/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/api/test/test_app.py -------------------------------------------------------------------------------- /bin/kubeconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/bin/kubeconf -------------------------------------------------------------------------------- /bin/sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/bin/sh -------------------------------------------------------------------------------- /cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cli/pawls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cli/pawls/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/pawls/__main__.py -------------------------------------------------------------------------------- /cli/pawls/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/pawls/commands/__init__.py -------------------------------------------------------------------------------- /cli/pawls/commands/assign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/pawls/commands/assign.py -------------------------------------------------------------------------------- /cli/pawls/commands/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/pawls/commands/dataset.py -------------------------------------------------------------------------------- /cli/pawls/commands/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/pawls/commands/export.py -------------------------------------------------------------------------------- /cli/pawls/commands/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/pawls/commands/metric.py -------------------------------------------------------------------------------- /cli/pawls/commands/preannotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/pawls/commands/preannotate.py -------------------------------------------------------------------------------- /cli/pawls/commands/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/pawls/commands/preprocess.py -------------------------------------------------------------------------------- /cli/pawls/commands/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/pawls/commands/status.py -------------------------------------------------------------------------------- /cli/pawls/commands/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/pawls/commands/utils.py -------------------------------------------------------------------------------- /cli/pawls/preprocessors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cli/pawls/preprocessors/grobid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/pawls/preprocessors/grobid.py -------------------------------------------------------------------------------- /cli/pawls/preprocessors/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/pawls/preprocessors/model.py -------------------------------------------------------------------------------- /cli/pawls/preprocessors/pdfplumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/pawls/preprocessors/pdfplumber.py -------------------------------------------------------------------------------- /cli/pawls/preprocessors/tesseract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/pawls/preprocessors/tesseract.py -------------------------------------------------------------------------------- /cli/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/readme.md -------------------------------------------------------------------------------- /cli/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/requirements.txt -------------------------------------------------------------------------------- /cli/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/setup.py -------------------------------------------------------------------------------- /cli/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cli/test/assign_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/test/assign_test.py -------------------------------------------------------------------------------- /cli/test/export_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/test/export_test.py -------------------------------------------------------------------------------- /cli/test/fixtures/anno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/test/fixtures/anno.json -------------------------------------------------------------------------------- /cli/test/fixtures/configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/test/fixtures/configuration.json -------------------------------------------------------------------------------- /cli/test/fixtures/pawls/34f25a8704614163c4095b3ee2fc969b60de4698/34f25a8704614163c4095b3ee2fc969b60de4698.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/test/fixtures/pawls/34f25a8704614163c4095b3ee2fc969b60de4698/34f25a8704614163c4095b3ee2fc969b60de4698.pdf -------------------------------------------------------------------------------- /cli/test/fixtures/pawls/34f25a8704614163c4095b3ee2fc969b60de4698/markn@example.com_annotations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/test/fixtures/pawls/34f25a8704614163c4095b3ee2fc969b60de4698/markn@example.com_annotations.json -------------------------------------------------------------------------------- /cli/test/fixtures/pawls/34f25a8704614163c4095b3ee2fc969b60de4698/pdf_structure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/test/fixtures/pawls/34f25a8704614163c4095b3ee2fc969b60de4698/pdf_structure.json -------------------------------------------------------------------------------- /cli/test/fixtures/pawls/3febb2bed8865945e7fddc99efd791887bb7e14f/3febb2bed8865945e7fddc99efd791887bb7e14f.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/test/fixtures/pawls/3febb2bed8865945e7fddc99efd791887bb7e14f/3febb2bed8865945e7fddc99efd791887bb7e14f.pdf -------------------------------------------------------------------------------- /cli/test/fixtures/pawls/3febb2bed8865945e7fddc99efd791887bb7e14f/markn@example.com_annotations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/test/fixtures/pawls/3febb2bed8865945e7fddc99efd791887bb7e14f/markn@example.com_annotations.json -------------------------------------------------------------------------------- /cli/test/fixtures/pawls/3febb2bed8865945e7fddc99efd791887bb7e14f/pdf_structure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/test/fixtures/pawls/3febb2bed8865945e7fddc99efd791887bb7e14f/pdf_structure.json -------------------------------------------------------------------------------- /cli/test/fixtures/pawls/553c58a05e25f794d24e8db8c2b8fdb9603e6a29/553c58a05e25f794d24e8db8c2b8fdb9603e6a29.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/test/fixtures/pawls/553c58a05e25f794d24e8db8c2b8fdb9603e6a29/553c58a05e25f794d24e8db8c2b8fdb9603e6a29.pdf -------------------------------------------------------------------------------- /cli/test/fixtures/pawls/553c58a05e25f794d24e8db8c2b8fdb9603e6a29/pdf_structure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/test/fixtures/pawls/553c58a05e25f794d24e8db8c2b8fdb9603e6a29/pdf_structure.json -------------------------------------------------------------------------------- /cli/test/fixtures/pawls/553c58a05e25f794d24e8db8c2b8fdb9603e6a29/shannons@example.com_annotations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/test/fixtures/pawls/553c58a05e25f794d24e8db8c2b8fdb9603e6a29/shannons@example.com_annotations.json -------------------------------------------------------------------------------- /cli/test/fixtures/pawls/name_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/test/fixtures/pawls/name_mapping.json -------------------------------------------------------------------------------- /cli/test/fixtures/pawls/status/markn@example.com.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/test/fixtures/pawls/status/markn@example.com.json -------------------------------------------------------------------------------- /cli/test/fixtures/pawls/status/shannons@example.com.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/test/fixtures/pawls/status/shannons@example.com.json -------------------------------------------------------------------------------- /cli/test/metric_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/test/metric_test.py -------------------------------------------------------------------------------- /cli/test/preannotate_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/test/preannotate_test.py -------------------------------------------------------------------------------- /cli/test/status_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/cli/test/status_test.py -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /proxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/proxy/Dockerfile -------------------------------------------------------------------------------- /proxy/dist/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/proxy/dist/.gitignore -------------------------------------------------------------------------------- /proxy/local.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/proxy/local.conf -------------------------------------------------------------------------------- /proxy/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/proxy/nginx.conf -------------------------------------------------------------------------------- /proxy/prod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/proxy/prod.conf -------------------------------------------------------------------------------- /scripts/ai2-internal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/scripts/ai2-internal/README.md -------------------------------------------------------------------------------- /scripts/ai2-internal/fetch_pdfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/scripts/ai2-internal/fetch_pdfs.py -------------------------------------------------------------------------------- /scripts/generate_pdf_layouts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/scripts/generate_pdf_layouts.py -------------------------------------------------------------------------------- /skiff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/skiff.json -------------------------------------------------------------------------------- /skiff_files/.git_keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sonar/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/sonar/Dockerfile -------------------------------------------------------------------------------- /sonar/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/sonar/ping.py -------------------------------------------------------------------------------- /sonar/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/sonar/requirements.txt -------------------------------------------------------------------------------- /ui/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/.dockerignore -------------------------------------------------------------------------------- /ui/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/.env -------------------------------------------------------------------------------- /ui/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/.eslintignore -------------------------------------------------------------------------------- /ui/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/.eslintrc.js -------------------------------------------------------------------------------- /ui/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/Dockerfile -------------------------------------------------------------------------------- /ui/Dockerfile-local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/Dockerfile-local -------------------------------------------------------------------------------- /ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/package.json -------------------------------------------------------------------------------- /ui/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/public/favicon.ico -------------------------------------------------------------------------------- /ui/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/public/index.html -------------------------------------------------------------------------------- /ui/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/public/robots.txt -------------------------------------------------------------------------------- /ui/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/src/App.tsx -------------------------------------------------------------------------------- /ui/src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/src/api/index.ts -------------------------------------------------------------------------------- /ui/src/components/AnnotationSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/src/components/AnnotationSummary.tsx -------------------------------------------------------------------------------- /ui/src/components/CenterOnPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/src/components/CenterOnPage.tsx -------------------------------------------------------------------------------- /ui/src/components/PDF.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/src/components/PDF.tsx -------------------------------------------------------------------------------- /ui/src/components/RelationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/src/components/RelationModal.tsx -------------------------------------------------------------------------------- /ui/src/components/Selection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/src/components/Selection.tsx -------------------------------------------------------------------------------- /ui/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/src/components/index.ts -------------------------------------------------------------------------------- /ui/src/components/sidebar/Annotations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/src/components/sidebar/Annotations.tsx -------------------------------------------------------------------------------- /ui/src/components/sidebar/AssignedPaperList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/src/components/sidebar/AssignedPaperList.tsx -------------------------------------------------------------------------------- /ui/src/components/sidebar/Comment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/src/components/sidebar/Comment.tsx -------------------------------------------------------------------------------- /ui/src/components/sidebar/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/src/components/sidebar/Header.tsx -------------------------------------------------------------------------------- /ui/src/components/sidebar/Labels.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/src/components/sidebar/Labels.tsx -------------------------------------------------------------------------------- /ui/src/components/sidebar/Relations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/src/components/sidebar/Relations.tsx -------------------------------------------------------------------------------- /ui/src/components/sidebar/common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/src/components/sidebar/common.tsx -------------------------------------------------------------------------------- /ui/src/components/sidebar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/src/components/sidebar/index.ts -------------------------------------------------------------------------------- /ui/src/components/sidebar/pawlsLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/src/components/sidebar/pawlsLogo.png -------------------------------------------------------------------------------- /ui/src/context/AnnotationStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/src/context/AnnotationStore.ts -------------------------------------------------------------------------------- /ui/src/context/PDFStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/src/context/PDFStore.ts -------------------------------------------------------------------------------- /ui/src/context/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/src/context/index.ts -------------------------------------------------------------------------------- /ui/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/src/index.tsx -------------------------------------------------------------------------------- /ui/src/listeners/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/src/listeners/index.tsx -------------------------------------------------------------------------------- /ui/src/pages/PDFPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/src/pages/PDFPage.tsx -------------------------------------------------------------------------------- /ui/src/pages/index.ts: -------------------------------------------------------------------------------- 1 | export * from './PDFPage'; 2 | -------------------------------------------------------------------------------- /ui/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /ui/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/src/utils.ts -------------------------------------------------------------------------------- /ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/tsconfig.json -------------------------------------------------------------------------------- /ui/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/pawls/HEAD/ui/yarn.lock --------------------------------------------------------------------------------