├── .github └── workflows │ ├── ci-backend.yml │ └── ci-frontend.yml ├── .gitignore ├── .idea └── runConfigurations │ ├── Start_Backend.xml │ └── Start_Frontend.xml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── backend ├── .gitignore ├── .pylintrc ├── app.py ├── app │ ├── __init__.py │ ├── main │ │ ├── __init__.py │ │ ├── config.py │ │ ├── controller │ │ │ ├── __init__.py │ │ │ ├── author_controller.py │ │ │ ├── family_controller.py │ │ │ ├── paper_controller.py │ │ │ ├── reference_controller.py │ │ │ └── write_controller.py │ │ ├── dto │ │ │ ├── authorDto.py │ │ │ ├── paperDto.py │ │ │ ├── referenceDto.py │ │ │ ├── relativeDto.py │ │ │ └── writeDto.py │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── author.py │ │ │ ├── paper.py │ │ │ ├── reference.py │ │ │ └── write.py │ │ └── service │ │ │ ├── __init__.py │ │ │ ├── author_service.py │ │ │ ├── family_service.py │ │ │ ├── paper_service.py │ │ │ ├── reference_service.py │ │ │ └── write_service.py │ └── test │ │ ├── __init__.py │ │ └── test_config.py ├── migrations │ ├── README │ ├── alembic.ini │ ├── env.py │ ├── script.py.mako │ └── versions │ │ ├── 87106c57074c_.py │ │ └── 9d48ba00567c_.py ├── requirements.txt └── scraper │ └── __init__.py ├── data └── insert_papers.py ├── doc ├── architecture │ └── backend.md ├── img │ ├── Screenshot.png │ ├── graph_computed_positions.png │ ├── graph_random_positions.png │ ├── img_01.png │ ├── img_02.png │ ├── img_03.png │ ├── img_04.png │ ├── img_05.png │ ├── img_06.png │ ├── img_07.png │ ├── img_08.png │ ├── img_09.png │ ├── img_10.png │ ├── img_11.png │ ├── img_12.png │ ├── img_13.png │ ├── img_14.png │ ├── img_15.png │ ├── img_16.png │ ├── img_17.png │ ├── img_18.png │ ├── img_19.png │ ├── img_20.png │ ├── img_21.png │ ├── img_22.png │ ├── img_23.png │ ├── img_24.png │ ├── img_25.png │ ├── img_26.png │ └── mockup.gif ├── meetings │ ├── 2019-10-15.pdf │ ├── 2019-11-05.md │ └── 2019-11-27.md ├── presentations │ ├── .gitignore │ ├── 2019-11-12 │ │ ├── Makefile │ │ ├── README.md │ │ ├── beamerthemeTUM.sty │ │ ├── latexrun │ │ ├── main.pdf │ │ ├── main.tex │ │ └── presentation.pdf │ ├── 2019-12-17 │ │ ├── Makefile │ │ ├── README.md │ │ ├── beamerthemeTUM.sty │ │ ├── latexrun │ │ ├── main.pdf │ │ ├── main.tex │ │ └── presentation.pdf │ └── 2020-03-10 │ │ ├── Makefile │ │ ├── README.md │ │ ├── beamerthemeTUM.sty │ │ ├── latexrun │ │ ├── main.pdf │ │ └── main.tex └── vision │ └── vision.md └── frontend ├── .gitignore ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.css ├── App.test.tsx ├── App.tsx ├── components │ ├── graph │ │ ├── CitationLink.tsx │ │ ├── PaperNode.tsx │ │ ├── PaperTooltip.tsx │ │ ├── graph.css │ │ └── index.tsx │ └── sidebar │ │ ├── PaperMenuItem.tsx │ │ ├── index.tsx │ │ └── sidebar.css ├── index.css ├── index.tsx ├── pages │ ├── AboutPage.tsx │ ├── AreasPage.tsx │ ├── PapersPage.tsx │ └── ScientistsPage.tsx ├── react-app-env.d.ts ├── serviceWorker.ts └── types │ └── paper.tsx ├── tsconfig.json └── tslint.json /.github/workflows/ci-backend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/.github/workflows/ci-backend.yml -------------------------------------------------------------------------------- /.github/workflows/ci-frontend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/.github/workflows/ci-frontend.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/runConfigurations/Start_Backend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/.idea/runConfigurations/Start_Backend.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/Start_Frontend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/.idea/runConfigurations/Start_Frontend.xml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/README.md -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/.pylintrc -------------------------------------------------------------------------------- /backend/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/app.py -------------------------------------------------------------------------------- /backend/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/app/__init__.py -------------------------------------------------------------------------------- /backend/app/main/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/app/main/__init__.py -------------------------------------------------------------------------------- /backend/app/main/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/app/main/config.py -------------------------------------------------------------------------------- /backend/app/main/controller/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/main/controller/author_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/app/main/controller/author_controller.py -------------------------------------------------------------------------------- /backend/app/main/controller/family_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/app/main/controller/family_controller.py -------------------------------------------------------------------------------- /backend/app/main/controller/paper_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/app/main/controller/paper_controller.py -------------------------------------------------------------------------------- /backend/app/main/controller/reference_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/app/main/controller/reference_controller.py -------------------------------------------------------------------------------- /backend/app/main/controller/write_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/app/main/controller/write_controller.py -------------------------------------------------------------------------------- /backend/app/main/dto/authorDto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/app/main/dto/authorDto.py -------------------------------------------------------------------------------- /backend/app/main/dto/paperDto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/app/main/dto/paperDto.py -------------------------------------------------------------------------------- /backend/app/main/dto/referenceDto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/app/main/dto/referenceDto.py -------------------------------------------------------------------------------- /backend/app/main/dto/relativeDto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/app/main/dto/relativeDto.py -------------------------------------------------------------------------------- /backend/app/main/dto/writeDto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/app/main/dto/writeDto.py -------------------------------------------------------------------------------- /backend/app/main/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/main/model/author.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/app/main/model/author.py -------------------------------------------------------------------------------- /backend/app/main/model/paper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/app/main/model/paper.py -------------------------------------------------------------------------------- /backend/app/main/model/reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/app/main/model/reference.py -------------------------------------------------------------------------------- /backend/app/main/model/write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/app/main/model/write.py -------------------------------------------------------------------------------- /backend/app/main/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/main/service/author_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/app/main/service/author_service.py -------------------------------------------------------------------------------- /backend/app/main/service/family_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/app/main/service/family_service.py -------------------------------------------------------------------------------- /backend/app/main/service/paper_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/app/main/service/paper_service.py -------------------------------------------------------------------------------- /backend/app/main/service/reference_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/app/main/service/reference_service.py -------------------------------------------------------------------------------- /backend/app/main/service/write_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/app/main/service/write_service.py -------------------------------------------------------------------------------- /backend/app/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/test/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/app/test/test_config.py -------------------------------------------------------------------------------- /backend/migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /backend/migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/migrations/alembic.ini -------------------------------------------------------------------------------- /backend/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/migrations/env.py -------------------------------------------------------------------------------- /backend/migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/migrations/script.py.mako -------------------------------------------------------------------------------- /backend/migrations/versions/87106c57074c_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/migrations/versions/87106c57074c_.py -------------------------------------------------------------------------------- /backend/migrations/versions/9d48ba00567c_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/migrations/versions/9d48ba00567c_.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /backend/scraper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/backend/scraper/__init__.py -------------------------------------------------------------------------------- /data/insert_papers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/data/insert_papers.py -------------------------------------------------------------------------------- /doc/architecture/backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/architecture/backend.md -------------------------------------------------------------------------------- /doc/img/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/Screenshot.png -------------------------------------------------------------------------------- /doc/img/graph_computed_positions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/graph_computed_positions.png -------------------------------------------------------------------------------- /doc/img/graph_random_positions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/graph_random_positions.png -------------------------------------------------------------------------------- /doc/img/img_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/img_01.png -------------------------------------------------------------------------------- /doc/img/img_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/img_02.png -------------------------------------------------------------------------------- /doc/img/img_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/img_03.png -------------------------------------------------------------------------------- /doc/img/img_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/img_04.png -------------------------------------------------------------------------------- /doc/img/img_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/img_05.png -------------------------------------------------------------------------------- /doc/img/img_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/img_06.png -------------------------------------------------------------------------------- /doc/img/img_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/img_07.png -------------------------------------------------------------------------------- /doc/img/img_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/img_08.png -------------------------------------------------------------------------------- /doc/img/img_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/img_09.png -------------------------------------------------------------------------------- /doc/img/img_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/img_10.png -------------------------------------------------------------------------------- /doc/img/img_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/img_11.png -------------------------------------------------------------------------------- /doc/img/img_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/img_12.png -------------------------------------------------------------------------------- /doc/img/img_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/img_13.png -------------------------------------------------------------------------------- /doc/img/img_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/img_14.png -------------------------------------------------------------------------------- /doc/img/img_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/img_15.png -------------------------------------------------------------------------------- /doc/img/img_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/img_16.png -------------------------------------------------------------------------------- /doc/img/img_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/img_17.png -------------------------------------------------------------------------------- /doc/img/img_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/img_18.png -------------------------------------------------------------------------------- /doc/img/img_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/img_19.png -------------------------------------------------------------------------------- /doc/img/img_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/img_20.png -------------------------------------------------------------------------------- /doc/img/img_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/img_21.png -------------------------------------------------------------------------------- /doc/img/img_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/img_22.png -------------------------------------------------------------------------------- /doc/img/img_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/img_23.png -------------------------------------------------------------------------------- /doc/img/img_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/img_24.png -------------------------------------------------------------------------------- /doc/img/img_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/img_25.png -------------------------------------------------------------------------------- /doc/img/img_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/img_26.png -------------------------------------------------------------------------------- /doc/img/mockup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/img/mockup.gif -------------------------------------------------------------------------------- /doc/meetings/2019-10-15.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/meetings/2019-10-15.pdf -------------------------------------------------------------------------------- /doc/meetings/2019-11-05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/meetings/2019-11-05.md -------------------------------------------------------------------------------- /doc/meetings/2019-11-27.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/meetings/2019-11-27.md -------------------------------------------------------------------------------- /doc/presentations/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/presentations/.gitignore -------------------------------------------------------------------------------- /doc/presentations/2019-11-12/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/presentations/2019-11-12/Makefile -------------------------------------------------------------------------------- /doc/presentations/2019-11-12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/presentations/2019-11-12/README.md -------------------------------------------------------------------------------- /doc/presentations/2019-11-12/beamerthemeTUM.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/presentations/2019-11-12/beamerthemeTUM.sty -------------------------------------------------------------------------------- /doc/presentations/2019-11-12/latexrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/presentations/2019-11-12/latexrun -------------------------------------------------------------------------------- /doc/presentations/2019-11-12/main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/presentations/2019-11-12/main.pdf -------------------------------------------------------------------------------- /doc/presentations/2019-11-12/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/presentations/2019-11-12/main.tex -------------------------------------------------------------------------------- /doc/presentations/2019-11-12/presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/presentations/2019-11-12/presentation.pdf -------------------------------------------------------------------------------- /doc/presentations/2019-12-17/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/presentations/2019-12-17/Makefile -------------------------------------------------------------------------------- /doc/presentations/2019-12-17/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/presentations/2019-12-17/README.md -------------------------------------------------------------------------------- /doc/presentations/2019-12-17/beamerthemeTUM.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/presentations/2019-12-17/beamerthemeTUM.sty -------------------------------------------------------------------------------- /doc/presentations/2019-12-17/latexrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/presentations/2019-12-17/latexrun -------------------------------------------------------------------------------- /doc/presentations/2019-12-17/main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/presentations/2019-12-17/main.pdf -------------------------------------------------------------------------------- /doc/presentations/2019-12-17/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/presentations/2019-12-17/main.tex -------------------------------------------------------------------------------- /doc/presentations/2019-12-17/presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/presentations/2019-12-17/presentation.pdf -------------------------------------------------------------------------------- /doc/presentations/2020-03-10/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/presentations/2020-03-10/Makefile -------------------------------------------------------------------------------- /doc/presentations/2020-03-10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/presentations/2020-03-10/README.md -------------------------------------------------------------------------------- /doc/presentations/2020-03-10/beamerthemeTUM.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/presentations/2020-03-10/beamerthemeTUM.sty -------------------------------------------------------------------------------- /doc/presentations/2020-03-10/latexrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/presentations/2020-03-10/latexrun -------------------------------------------------------------------------------- /doc/presentations/2020-03-10/main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/presentations/2020-03-10/main.pdf -------------------------------------------------------------------------------- /doc/presentations/2020-03-10/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/presentations/2020-03-10/main.tex -------------------------------------------------------------------------------- /doc/vision/vision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/doc/vision/vision.md -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/public/logo192.png -------------------------------------------------------------------------------- /frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/public/logo512.png -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/src/App.test.tsx -------------------------------------------------------------------------------- /frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/src/App.tsx -------------------------------------------------------------------------------- /frontend/src/components/graph/CitationLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/src/components/graph/CitationLink.tsx -------------------------------------------------------------------------------- /frontend/src/components/graph/PaperNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/src/components/graph/PaperNode.tsx -------------------------------------------------------------------------------- /frontend/src/components/graph/PaperTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/src/components/graph/PaperTooltip.tsx -------------------------------------------------------------------------------- /frontend/src/components/graph/graph.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/src/components/graph/graph.css -------------------------------------------------------------------------------- /frontend/src/components/graph/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/src/components/graph/index.tsx -------------------------------------------------------------------------------- /frontend/src/components/sidebar/PaperMenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/src/components/sidebar/PaperMenuItem.tsx -------------------------------------------------------------------------------- /frontend/src/components/sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/src/components/sidebar/index.tsx -------------------------------------------------------------------------------- /frontend/src/components/sidebar/sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/src/components/sidebar/sidebar.css -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/src/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/AboutPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/src/pages/AboutPage.tsx -------------------------------------------------------------------------------- /frontend/src/pages/AreasPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/src/pages/AreasPage.tsx -------------------------------------------------------------------------------- /frontend/src/pages/PapersPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/src/pages/PapersPage.tsx -------------------------------------------------------------------------------- /frontend/src/pages/ScientistsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/src/pages/ScientistsPage.tsx -------------------------------------------------------------------------------- /frontend/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /frontend/src/serviceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/src/serviceWorker.ts -------------------------------------------------------------------------------- /frontend/src/types/paper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/src/types/paper.tsx -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andizimmerer/research-paper-graph/HEAD/frontend/tslint.json --------------------------------------------------------------------------------