├── .gitignore ├── LICENSE ├── Procfile ├── Procfile.dev ├── README.md ├── README_cache └── html │ ├── __packages │ ├── get_data_29c6e2185f47aa220c47f700b4e40084.RData │ ├── get_data_29c6e2185f47aa220c47f700b4e40084.rdb │ └── get_data_29c6e2185f47aa220c47f700b4e40084.rdx ├── app.py ├── blog_notes.txt ├── data └── python_standard_libs.pickle ├── dummy_data.py ├── github_zip_worker.py ├── jobs.py ├── main.py ├── models ├── __init__.py ├── academic.py ├── byline.py ├── contribution.py ├── cran_package.py ├── dedup_special_cases.py ├── entity.py ├── github_api.py ├── github_repo.py ├── github_repo_deplines.py ├── old_project_tables.py ├── package.py ├── package_jobs.py ├── person.py ├── pypi_package.py ├── python.py ├── rev_dep_node.py ├── search.py ├── tags.py └── zip_getter.py ├── providers ├── __init__.py ├── cran_reverse_dependencies.py ├── crantastic_daily_downloads.py ├── full_text_source.py ├── github.py └── github_subscribers.py ├── refresh.py ├── requirements.txt ├── rq_worker.py ├── scripts ├── get_pypi_packages_metadata.py ├── github_users.py ├── run_igraph.sh ├── update_contributors.sh ├── update_cran_impact.sh ├── update_dedup_people.sh ├── update_github_links.sh ├── update_impact.sh ├── update_impact_people.sh └── update_research_software.sh ├── sql ├── all_named_deps.sql ├── all_project_names.sql ├── bigquery_all_github_r.sql ├── calc_average_outdegree.sql ├── count_unique_github_repo_dependencies.sql ├── cran_github_questions.sql ├── create_dep_nodes.sql ├── create_dep_nodes_ncol.sql ├── create_tags_table.sql ├── db-performance.sql ├── find_academic_tags.sql ├── make_project_names_table.sql ├── packages_on_github.sql ├── requirements.sql ├── score_centering.sql ├── select_top_starred_distinct_hash.sql ├── set_github_names_based_on_setup_py_hash.sql ├── set_person_is_organization.sql ├── set_unique_import_name.sql ├── top_named_deps.sql └── top_named_deps_github_ids.sql ├── static ├── bower_components │ ├── angular-snap │ │ ├── .bower.json │ │ ├── LICENSE-MIT │ │ ├── angular-snap-only.css │ │ ├── angular-snap-only.min.css │ │ ├── angular-snap.css │ │ ├── angular-snap.js │ │ ├── angular-snap.min.css │ │ ├── angular-snap.min.js │ │ ├── bower.json │ │ └── package.json │ ├── angular │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-csp.css │ │ ├── angular.js │ │ ├── angular.min.js │ │ ├── angular.min.js.gzip │ │ ├── angular.min.js.map │ │ ├── bower.json │ │ └── package.json │ └── snapjs │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── component.json │ │ ├── demo │ │ ├── apps │ │ │ ├── classNames.html │ │ │ ├── default.html │ │ │ ├── dragElement.html │ │ │ ├── expand.html │ │ │ ├── hyperextend.html │ │ │ ├── noDrag.html │ │ │ ├── ratchet │ │ │ │ ├── ratchet.css │ │ │ │ ├── ratchet.js │ │ │ │ └── template.html │ │ │ ├── rightDisabled.html │ │ │ ├── settings.html │ │ │ ├── skinnyThreshold.html │ │ │ └── toggles.html │ │ ├── assets │ │ │ ├── demo.css │ │ │ ├── demo.js │ │ │ ├── drag.png │ │ │ ├── graph.png │ │ │ └── open.png │ │ └── index.html │ │ ├── snap.css │ │ ├── snap.js │ │ └── snap.min.js ├── codekit-config.json ├── dist │ ├── angular-libs.js │ ├── templates.js │ └── ti.js ├── gruntFile.js ├── img │ ├── favicon.png │ ├── favicon.psd │ ├── html.png │ ├── html.psd │ ├── impactstory-biomed-tall.png │ ├── impactstory-biomed.png │ ├── impactstory-logo.png │ ├── impactstory-logo.psd │ ├── impactstory-software.png │ ├── java.png │ ├── java.psd │ ├── javascript.png │ ├── js.psd │ ├── logo-circle.png │ ├── logo-white-big.png │ ├── logo-white.png │ ├── logo.png │ ├── orcid.gif │ ├── perl.png │ ├── perl.psd │ ├── php.png │ ├── php.psd │ ├── python.png │ ├── r-logo-flat.psd │ ├── r-logo.png │ ├── r.png │ ├── servers.jpg │ ├── servers.psd │ ├── shell.png │ ├── shell.psd │ ├── tex-logo.psd │ ├── tex.png │ ├── wheel.psd │ └── wheel │ │ ├── 0.png │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── nearly-all.png │ │ └── tiny.png ├── less │ ├── css │ │ └── main.css │ ├── elements.less │ └── main.less ├── package.json ├── src │ ├── app.js │ ├── directives │ │ ├── badge.js │ │ ├── badge.tpl.html │ │ ├── langageIcon.js │ │ ├── language-icon.tpl.html │ │ ├── wheel-popover.tpl.html │ │ ├── wheel.js │ │ └── wheel.tpl.html │ ├── filterService.js │ ├── footer │ │ ├── footer.js │ │ └── footer.tpl.html │ ├── formatterService.js │ ├── header │ │ ├── header.js │ │ ├── header.tpl.html │ │ └── search-result.tpl.html │ ├── package-page │ │ ├── package-page.tpl.html │ │ └── packagePage.js │ ├── person-page │ │ ├── person-page.js │ │ └── person-page.tpl.html │ ├── resources.js │ ├── services │ │ ├── articleService.js │ │ ├── currentUserService.js │ │ ├── pageService.js │ │ └── profileService.js │ ├── snippet │ │ ├── package-impact-popover.tpl.html │ │ ├── package-snippet.js │ │ ├── package-snippet.tpl.html │ │ ├── person-impact-popover.tpl.html │ │ ├── person-mini.tpl.html │ │ ├── person-snippet.tpl.html │ │ └── tag-snippet.tpl.html │ ├── static-pages │ │ ├── about.tpl.html │ │ ├── landing-page.js │ │ └── landing.tpl.html │ ├── tag-page │ │ ├── tag-page.js │ │ └── tag-page.tpl.html │ └── top │ │ ├── top.js │ │ └── top.tpl.html └── vendor │ ├── angular-snap.js │ ├── ng-progress.js │ └── snap.js ├── templates ├── coming-soon.html ├── debug_api.html └── index.html ├── test ├── __init__.py ├── data │ ├── __init__.py │ └── github_users_jasonpriem.json ├── test_byline.py ├── test_cran_package.py └── utils.py ├── update.py ├── util.py └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/Procfile -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- 1 | web: gunicorn views:app --reload 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/README.md -------------------------------------------------------------------------------- /README_cache/html/__packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/README_cache/html/__packages -------------------------------------------------------------------------------- /README_cache/html/get_data_29c6e2185f47aa220c47f700b4e40084.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/README_cache/html/get_data_29c6e2185f47aa220c47f700b4e40084.RData -------------------------------------------------------------------------------- /README_cache/html/get_data_29c6e2185f47aa220c47f700b4e40084.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/README_cache/html/get_data_29c6e2185f47aa220c47f700b4e40084.rdb -------------------------------------------------------------------------------- /README_cache/html/get_data_29c6e2185f47aa220c47f700b4e40084.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/README_cache/html/get_data_29c6e2185f47aa220c47f700b4e40084.rdx -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/app.py -------------------------------------------------------------------------------- /blog_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/blog_notes.txt -------------------------------------------------------------------------------- /data/python_standard_libs.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/data/python_standard_libs.pickle -------------------------------------------------------------------------------- /dummy_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/dummy_data.py -------------------------------------------------------------------------------- /github_zip_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/github_zip_worker.py -------------------------------------------------------------------------------- /jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/jobs.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/main.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/academic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/models/academic.py -------------------------------------------------------------------------------- /models/byline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/models/byline.py -------------------------------------------------------------------------------- /models/contribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/models/contribution.py -------------------------------------------------------------------------------- /models/cran_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/models/cran_package.py -------------------------------------------------------------------------------- /models/dedup_special_cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/models/dedup_special_cases.py -------------------------------------------------------------------------------- /models/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/models/entity.py -------------------------------------------------------------------------------- /models/github_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/models/github_api.py -------------------------------------------------------------------------------- /models/github_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/models/github_repo.py -------------------------------------------------------------------------------- /models/github_repo_deplines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/models/github_repo_deplines.py -------------------------------------------------------------------------------- /models/old_project_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/models/old_project_tables.py -------------------------------------------------------------------------------- /models/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/models/package.py -------------------------------------------------------------------------------- /models/package_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/models/package_jobs.py -------------------------------------------------------------------------------- /models/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/models/person.py -------------------------------------------------------------------------------- /models/pypi_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/models/pypi_package.py -------------------------------------------------------------------------------- /models/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/models/python.py -------------------------------------------------------------------------------- /models/rev_dep_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/models/rev_dep_node.py -------------------------------------------------------------------------------- /models/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/models/search.py -------------------------------------------------------------------------------- /models/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/models/tags.py -------------------------------------------------------------------------------- /models/zip_getter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/models/zip_getter.py -------------------------------------------------------------------------------- /providers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /providers/cran_reverse_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/providers/cran_reverse_dependencies.py -------------------------------------------------------------------------------- /providers/crantastic_daily_downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/providers/crantastic_daily_downloads.py -------------------------------------------------------------------------------- /providers/full_text_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/providers/full_text_source.py -------------------------------------------------------------------------------- /providers/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/providers/github.py -------------------------------------------------------------------------------- /providers/github_subscribers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/providers/github_subscribers.py -------------------------------------------------------------------------------- /refresh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/refresh.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/requirements.txt -------------------------------------------------------------------------------- /rq_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/rq_worker.py -------------------------------------------------------------------------------- /scripts/get_pypi_packages_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/scripts/get_pypi_packages_metadata.py -------------------------------------------------------------------------------- /scripts/github_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/scripts/github_users.py -------------------------------------------------------------------------------- /scripts/run_igraph.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/scripts/run_igraph.sh -------------------------------------------------------------------------------- /scripts/update_contributors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/scripts/update_contributors.sh -------------------------------------------------------------------------------- /scripts/update_cran_impact.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/scripts/update_cran_impact.sh -------------------------------------------------------------------------------- /scripts/update_dedup_people.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/scripts/update_dedup_people.sh -------------------------------------------------------------------------------- /scripts/update_github_links.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/scripts/update_github_links.sh -------------------------------------------------------------------------------- /scripts/update_impact.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/scripts/update_impact.sh -------------------------------------------------------------------------------- /scripts/update_impact_people.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/scripts/update_impact_people.sh -------------------------------------------------------------------------------- /scripts/update_research_software.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/scripts/update_research_software.sh -------------------------------------------------------------------------------- /sql/all_named_deps.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/sql/all_named_deps.sql -------------------------------------------------------------------------------- /sql/all_project_names.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/sql/all_project_names.sql -------------------------------------------------------------------------------- /sql/bigquery_all_github_r.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/sql/bigquery_all_github_r.sql -------------------------------------------------------------------------------- /sql/calc_average_outdegree.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/sql/calc_average_outdegree.sql -------------------------------------------------------------------------------- /sql/count_unique_github_repo_dependencies.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/sql/count_unique_github_repo_dependencies.sql -------------------------------------------------------------------------------- /sql/cran_github_questions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/sql/cran_github_questions.sql -------------------------------------------------------------------------------- /sql/create_dep_nodes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/sql/create_dep_nodes.sql -------------------------------------------------------------------------------- /sql/create_dep_nodes_ncol.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/sql/create_dep_nodes_ncol.sql -------------------------------------------------------------------------------- /sql/create_tags_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/sql/create_tags_table.sql -------------------------------------------------------------------------------- /sql/db-performance.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/sql/db-performance.sql -------------------------------------------------------------------------------- /sql/find_academic_tags.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/sql/find_academic_tags.sql -------------------------------------------------------------------------------- /sql/make_project_names_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/sql/make_project_names_table.sql -------------------------------------------------------------------------------- /sql/packages_on_github.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/sql/packages_on_github.sql -------------------------------------------------------------------------------- /sql/requirements.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/sql/requirements.sql -------------------------------------------------------------------------------- /sql/score_centering.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/sql/score_centering.sql -------------------------------------------------------------------------------- /sql/select_top_starred_distinct_hash.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/sql/select_top_starred_distinct_hash.sql -------------------------------------------------------------------------------- /sql/set_github_names_based_on_setup_py_hash.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/sql/set_github_names_based_on_setup_py_hash.sql -------------------------------------------------------------------------------- /sql/set_person_is_organization.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/sql/set_person_is_organization.sql -------------------------------------------------------------------------------- /sql/set_unique_import_name.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/sql/set_unique_import_name.sql -------------------------------------------------------------------------------- /sql/top_named_deps.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/sql/top_named_deps.sql -------------------------------------------------------------------------------- /sql/top_named_deps_github_ids.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/sql/top_named_deps_github_ids.sql -------------------------------------------------------------------------------- /static/bower_components/angular-snap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/angular-snap/.bower.json -------------------------------------------------------------------------------- /static/bower_components/angular-snap/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/angular-snap/LICENSE-MIT -------------------------------------------------------------------------------- /static/bower_components/angular-snap/angular-snap-only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/angular-snap/angular-snap-only.css -------------------------------------------------------------------------------- /static/bower_components/angular-snap/angular-snap-only.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/angular-snap/angular-snap-only.min.css -------------------------------------------------------------------------------- /static/bower_components/angular-snap/angular-snap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/angular-snap/angular-snap.css -------------------------------------------------------------------------------- /static/bower_components/angular-snap/angular-snap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/angular-snap/angular-snap.js -------------------------------------------------------------------------------- /static/bower_components/angular-snap/angular-snap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/angular-snap/angular-snap.min.css -------------------------------------------------------------------------------- /static/bower_components/angular-snap/angular-snap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/angular-snap/angular-snap.min.js -------------------------------------------------------------------------------- /static/bower_components/angular-snap/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/angular-snap/bower.json -------------------------------------------------------------------------------- /static/bower_components/angular-snap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/angular-snap/package.json -------------------------------------------------------------------------------- /static/bower_components/angular/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/angular/.bower.json -------------------------------------------------------------------------------- /static/bower_components/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/angular/README.md -------------------------------------------------------------------------------- /static/bower_components/angular/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/angular/angular-csp.css -------------------------------------------------------------------------------- /static/bower_components/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/angular/angular.js -------------------------------------------------------------------------------- /static/bower_components/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/angular/angular.min.js -------------------------------------------------------------------------------- /static/bower_components/angular/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/angular/angular.min.js.gzip -------------------------------------------------------------------------------- /static/bower_components/angular/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/angular/angular.min.js.map -------------------------------------------------------------------------------- /static/bower_components/angular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/angular/bower.json -------------------------------------------------------------------------------- /static/bower_components/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/angular/package.json -------------------------------------------------------------------------------- /static/bower_components/snapjs/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/snapjs/.bower.json -------------------------------------------------------------------------------- /static/bower_components/snapjs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/snapjs/.gitignore -------------------------------------------------------------------------------- /static/bower_components/snapjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/snapjs/README.md -------------------------------------------------------------------------------- /static/bower_components/snapjs/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/snapjs/component.json -------------------------------------------------------------------------------- /static/bower_components/snapjs/demo/apps/classNames.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/snapjs/demo/apps/classNames.html -------------------------------------------------------------------------------- /static/bower_components/snapjs/demo/apps/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/snapjs/demo/apps/default.html -------------------------------------------------------------------------------- /static/bower_components/snapjs/demo/apps/dragElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/snapjs/demo/apps/dragElement.html -------------------------------------------------------------------------------- /static/bower_components/snapjs/demo/apps/expand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/snapjs/demo/apps/expand.html -------------------------------------------------------------------------------- /static/bower_components/snapjs/demo/apps/hyperextend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/snapjs/demo/apps/hyperextend.html -------------------------------------------------------------------------------- /static/bower_components/snapjs/demo/apps/noDrag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/snapjs/demo/apps/noDrag.html -------------------------------------------------------------------------------- /static/bower_components/snapjs/demo/apps/ratchet/ratchet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/snapjs/demo/apps/ratchet/ratchet.css -------------------------------------------------------------------------------- /static/bower_components/snapjs/demo/apps/ratchet/ratchet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/snapjs/demo/apps/ratchet/ratchet.js -------------------------------------------------------------------------------- /static/bower_components/snapjs/demo/apps/ratchet/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/snapjs/demo/apps/ratchet/template.html -------------------------------------------------------------------------------- /static/bower_components/snapjs/demo/apps/rightDisabled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/snapjs/demo/apps/rightDisabled.html -------------------------------------------------------------------------------- /static/bower_components/snapjs/demo/apps/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/snapjs/demo/apps/settings.html -------------------------------------------------------------------------------- /static/bower_components/snapjs/demo/apps/skinnyThreshold.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/snapjs/demo/apps/skinnyThreshold.html -------------------------------------------------------------------------------- /static/bower_components/snapjs/demo/apps/toggles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/snapjs/demo/apps/toggles.html -------------------------------------------------------------------------------- /static/bower_components/snapjs/demo/assets/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/snapjs/demo/assets/demo.css -------------------------------------------------------------------------------- /static/bower_components/snapjs/demo/assets/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/snapjs/demo/assets/demo.js -------------------------------------------------------------------------------- /static/bower_components/snapjs/demo/assets/drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/snapjs/demo/assets/drag.png -------------------------------------------------------------------------------- /static/bower_components/snapjs/demo/assets/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/snapjs/demo/assets/graph.png -------------------------------------------------------------------------------- /static/bower_components/snapjs/demo/assets/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/snapjs/demo/assets/open.png -------------------------------------------------------------------------------- /static/bower_components/snapjs/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/snapjs/demo/index.html -------------------------------------------------------------------------------- /static/bower_components/snapjs/snap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/snapjs/snap.css -------------------------------------------------------------------------------- /static/bower_components/snapjs/snap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/snapjs/snap.js -------------------------------------------------------------------------------- /static/bower_components/snapjs/snap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/bower_components/snapjs/snap.min.js -------------------------------------------------------------------------------- /static/codekit-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/codekit-config.json -------------------------------------------------------------------------------- /static/dist/angular-libs.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/dist/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/dist/templates.js -------------------------------------------------------------------------------- /static/dist/ti.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/dist/ti.js -------------------------------------------------------------------------------- /static/gruntFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/gruntFile.js -------------------------------------------------------------------------------- /static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/favicon.png -------------------------------------------------------------------------------- /static/img/favicon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/favicon.psd -------------------------------------------------------------------------------- /static/img/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/html.png -------------------------------------------------------------------------------- /static/img/html.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/html.psd -------------------------------------------------------------------------------- /static/img/impactstory-biomed-tall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/impactstory-biomed-tall.png -------------------------------------------------------------------------------- /static/img/impactstory-biomed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/impactstory-biomed.png -------------------------------------------------------------------------------- /static/img/impactstory-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/impactstory-logo.png -------------------------------------------------------------------------------- /static/img/impactstory-logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/impactstory-logo.psd -------------------------------------------------------------------------------- /static/img/impactstory-software.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/impactstory-software.png -------------------------------------------------------------------------------- /static/img/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/java.png -------------------------------------------------------------------------------- /static/img/java.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/java.psd -------------------------------------------------------------------------------- /static/img/javascript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/javascript.png -------------------------------------------------------------------------------- /static/img/js.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/js.psd -------------------------------------------------------------------------------- /static/img/logo-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/logo-circle.png -------------------------------------------------------------------------------- /static/img/logo-white-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/logo-white-big.png -------------------------------------------------------------------------------- /static/img/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/logo-white.png -------------------------------------------------------------------------------- /static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/logo.png -------------------------------------------------------------------------------- /static/img/orcid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/orcid.gif -------------------------------------------------------------------------------- /static/img/perl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/perl.png -------------------------------------------------------------------------------- /static/img/perl.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/perl.psd -------------------------------------------------------------------------------- /static/img/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/php.png -------------------------------------------------------------------------------- /static/img/php.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/php.psd -------------------------------------------------------------------------------- /static/img/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/python.png -------------------------------------------------------------------------------- /static/img/r-logo-flat.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/r-logo-flat.psd -------------------------------------------------------------------------------- /static/img/r-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/r-logo.png -------------------------------------------------------------------------------- /static/img/r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/r.png -------------------------------------------------------------------------------- /static/img/servers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/servers.jpg -------------------------------------------------------------------------------- /static/img/servers.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/servers.psd -------------------------------------------------------------------------------- /static/img/shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/shell.png -------------------------------------------------------------------------------- /static/img/shell.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/shell.psd -------------------------------------------------------------------------------- /static/img/tex-logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/tex-logo.psd -------------------------------------------------------------------------------- /static/img/tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/tex.png -------------------------------------------------------------------------------- /static/img/wheel.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/wheel.psd -------------------------------------------------------------------------------- /static/img/wheel/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/wheel/0.png -------------------------------------------------------------------------------- /static/img/wheel/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/wheel/1.png -------------------------------------------------------------------------------- /static/img/wheel/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/wheel/2.png -------------------------------------------------------------------------------- /static/img/wheel/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/wheel/3.png -------------------------------------------------------------------------------- /static/img/wheel/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/wheel/4.png -------------------------------------------------------------------------------- /static/img/wheel/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/wheel/5.png -------------------------------------------------------------------------------- /static/img/wheel/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/wheel/6.png -------------------------------------------------------------------------------- /static/img/wheel/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/wheel/7.png -------------------------------------------------------------------------------- /static/img/wheel/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/wheel/8.png -------------------------------------------------------------------------------- /static/img/wheel/nearly-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/wheel/nearly-all.png -------------------------------------------------------------------------------- /static/img/wheel/tiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/img/wheel/tiny.png -------------------------------------------------------------------------------- /static/less/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/less/css/main.css -------------------------------------------------------------------------------- /static/less/elements.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/less/elements.less -------------------------------------------------------------------------------- /static/less/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/less/main.less -------------------------------------------------------------------------------- /static/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/package.json -------------------------------------------------------------------------------- /static/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/app.js -------------------------------------------------------------------------------- /static/src/directives/badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/directives/badge.js -------------------------------------------------------------------------------- /static/src/directives/badge.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/directives/badge.tpl.html -------------------------------------------------------------------------------- /static/src/directives/langageIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/directives/langageIcon.js -------------------------------------------------------------------------------- /static/src/directives/language-icon.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/directives/language-icon.tpl.html -------------------------------------------------------------------------------- /static/src/directives/wheel-popover.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/directives/wheel-popover.tpl.html -------------------------------------------------------------------------------- /static/src/directives/wheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/directives/wheel.js -------------------------------------------------------------------------------- /static/src/directives/wheel.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/directives/wheel.tpl.html -------------------------------------------------------------------------------- /static/src/filterService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/filterService.js -------------------------------------------------------------------------------- /static/src/footer/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/footer/footer.js -------------------------------------------------------------------------------- /static/src/footer/footer.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/footer/footer.tpl.html -------------------------------------------------------------------------------- /static/src/formatterService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/formatterService.js -------------------------------------------------------------------------------- /static/src/header/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/header/header.js -------------------------------------------------------------------------------- /static/src/header/header.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/header/header.tpl.html -------------------------------------------------------------------------------- /static/src/header/search-result.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/header/search-result.tpl.html -------------------------------------------------------------------------------- /static/src/package-page/package-page.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/package-page/package-page.tpl.html -------------------------------------------------------------------------------- /static/src/package-page/packagePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/package-page/packagePage.js -------------------------------------------------------------------------------- /static/src/person-page/person-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/person-page/person-page.js -------------------------------------------------------------------------------- /static/src/person-page/person-page.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/person-page/person-page.tpl.html -------------------------------------------------------------------------------- /static/src/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/resources.js -------------------------------------------------------------------------------- /static/src/services/articleService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/services/articleService.js -------------------------------------------------------------------------------- /static/src/services/currentUserService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/services/currentUserService.js -------------------------------------------------------------------------------- /static/src/services/pageService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/services/pageService.js -------------------------------------------------------------------------------- /static/src/services/profileService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/services/profileService.js -------------------------------------------------------------------------------- /static/src/snippet/package-impact-popover.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/snippet/package-impact-popover.tpl.html -------------------------------------------------------------------------------- /static/src/snippet/package-snippet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/snippet/package-snippet.js -------------------------------------------------------------------------------- /static/src/snippet/package-snippet.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/snippet/package-snippet.tpl.html -------------------------------------------------------------------------------- /static/src/snippet/person-impact-popover.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/snippet/person-impact-popover.tpl.html -------------------------------------------------------------------------------- /static/src/snippet/person-mini.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/snippet/person-mini.tpl.html -------------------------------------------------------------------------------- /static/src/snippet/person-snippet.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/snippet/person-snippet.tpl.html -------------------------------------------------------------------------------- /static/src/snippet/tag-snippet.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/snippet/tag-snippet.tpl.html -------------------------------------------------------------------------------- /static/src/static-pages/about.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/static-pages/about.tpl.html -------------------------------------------------------------------------------- /static/src/static-pages/landing-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/static-pages/landing-page.js -------------------------------------------------------------------------------- /static/src/static-pages/landing.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/static-pages/landing.tpl.html -------------------------------------------------------------------------------- /static/src/tag-page/tag-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/tag-page/tag-page.js -------------------------------------------------------------------------------- /static/src/tag-page/tag-page.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/tag-page/tag-page.tpl.html -------------------------------------------------------------------------------- /static/src/top/top.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/top/top.js -------------------------------------------------------------------------------- /static/src/top/top.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/src/top/top.tpl.html -------------------------------------------------------------------------------- /static/vendor/angular-snap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/vendor/angular-snap.js -------------------------------------------------------------------------------- /static/vendor/ng-progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/vendor/ng-progress.js -------------------------------------------------------------------------------- /static/vendor/snap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/static/vendor/snap.js -------------------------------------------------------------------------------- /templates/coming-soon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/templates/coming-soon.html -------------------------------------------------------------------------------- /templates/debug_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/templates/debug_api.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/templates/index.html -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/data/github_users_jasonpriem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/test/data/github_users_jasonpriem.json -------------------------------------------------------------------------------- /test/test_byline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/test/test_byline.py -------------------------------------------------------------------------------- /test/test_cran_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/test/test_cran_package.py -------------------------------------------------------------------------------- /test/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/test/utils.py -------------------------------------------------------------------------------- /update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/update.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/util.py -------------------------------------------------------------------------------- /views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourresearch/depsy/HEAD/views.py --------------------------------------------------------------------------------