├── .bowerrc ├── .editorconfig ├── .gitignore ├── .stylintrc ├── README.md ├── app ├── actions │ ├── active.ts │ ├── filter.ts │ ├── general.ts │ ├── index.ts │ ├── items.ts │ ├── project.ts │ ├── sources.ts │ └── verify.ts ├── components │ ├── active │ │ ├── active-component.ts │ │ ├── active.pug │ │ └── active.styl │ ├── add-source │ │ ├── add-source-component.ts │ │ ├── add-source.pug │ │ └── add-source.styl │ ├── bibliography-modal │ │ ├── bibliography-modal-component.ts │ │ ├── bibliography-modal.pug │ │ └── bibliography-modal.styl │ ├── citable-editor │ │ ├── citable-editor-component.ts │ │ ├── citable-editor.pug │ │ └── citable-editor.styl │ ├── citable │ │ ├── citable-component.ts │ │ └── citable.pug │ ├── collection-utils.ts │ ├── components.styl │ ├── configure-view │ │ ├── configure-view-component.ts │ │ ├── configure-view.pug │ │ └── configure-view.styl │ ├── edit-primary-endpoint-configuration-view │ │ ├── edit-primary-endpoint-configuration-view-component.ts │ │ └── edit-primary-endpoint-configuration-view.pug │ ├── edit-remote-endpoint-configuration-view │ │ ├── edit-remote-endpoint-configuration-view-component.ts │ │ └── edit-remote-endpoint-configuration-view.pug │ ├── edit-schema-view │ │ ├── edit-schema-view-component.ts │ │ └── edit-schema-view.pug │ ├── expand-modal │ │ ├── expand-modal-component.ts │ │ ├── expand-modal.pug │ │ └── expand-modal.styl │ ├── filter │ │ ├── filter-component.ts │ │ ├── filter.pug │ │ └── filter.styl │ ├── index.ts │ ├── misc-utils.ts │ ├── project-delete-modal │ │ ├── project-delete-modal-component.ts │ │ ├── project-delete-modal.pug │ │ └── project-delete-modal.styl │ ├── project-source-configurations-view │ │ ├── project-source-configurations-view-component.ts │ │ └── project-source-configurations-view.pug │ ├── project-sources-view │ │ ├── project-sources-view-component.ts │ │ └── project-sources-view.pug │ ├── project │ │ ├── project-component.ts │ │ ├── project.pug │ │ └── project.styl │ ├── projects-view │ │ ├── projects-view-component.ts │ │ ├── projects-view.pug │ │ └── projects-view.styl │ ├── properties-modal │ │ ├── properties-modal-component.ts │ │ ├── properties-modal.pug │ │ └── properties-modal.styl │ ├── rdfstore-test-view │ │ ├── rdfstore-test-view-component.ts │ │ └── rdfstore-test-view.pug │ ├── snapshot-warning-modal │ │ ├── snapshot-warning-modal-component.ts │ │ ├── snapshot-warning-modal.pug │ │ └── snapshot-warning-modal.styl │ ├── social-auth │ │ ├── callback-component.ts │ │ └── login-component.ts │ ├── sources │ │ ├── sources-component.ts │ │ ├── sources.pug │ │ └── sources.styl │ └── type-select │ │ ├── type-select-component.ts │ │ └── type-select.pug ├── favicon.ico ├── filters │ ├── citable-filter.ts │ ├── index.ts │ ├── make-acronym-filter.ts │ └── preferred-language-filter.ts ├── fonts │ └── calibre │ │ ├── CalibreWeb-Medium.woff │ │ ├── CalibreWeb-Medium.woff2 │ │ ├── CalibreWeb-MediumItalic.woff │ │ ├── CalibreWeb-MediumItalic.woff2 │ │ ├── CalibreWeb-Regular.woff │ │ ├── CalibreWeb-Regular.woff2 │ │ ├── CalibreWeb-RegularItalic.woff │ │ └── CalibreWeb-RegularItalic.woff2 ├── images │ ├── active │ │ ├── grip_lines.svg │ │ ├── layers.svg │ │ ├── layout.svg │ │ ├── node_menu │ │ │ ├── expand.svg │ │ │ ├── gather.svg │ │ │ ├── ghost.svg │ │ │ ├── invert.svg │ │ │ ├── link.svg │ │ │ ├── properties.svg │ │ │ ├── reconcile.svg │ │ │ └── remove.svg │ │ ├── snapshot.svg │ │ └── view_options.svg │ ├── classes │ │ ├── person.svg │ │ ├── place.svg │ │ └── work.svg │ ├── filter │ │ ├── minimise.svg │ │ └── remove.svg │ ├── general │ │ ├── plus_dark.svg │ │ └── plus_light.svg │ ├── logo │ │ └── datapen-logo.svg │ └── nav_bar │ │ ├── back.svg │ │ ├── bibliography.svg │ │ └── search.svg ├── index.pug ├── index.ts ├── models │ ├── action.ts │ ├── citable.ts │ ├── iexplore-item.ts │ ├── rdf.ts │ ├── rdfjs.ts │ ├── richnode.ts │ └── treenode.ts ├── reducers │ ├── active │ │ └── index.ts │ ├── filter │ │ └── index.ts │ ├── general │ │ └── index.ts │ ├── index.ts │ ├── project │ │ └── index.ts │ └── sources │ │ └── index.ts ├── services │ ├── fibra-sparql-service.ts │ ├── id-consolidation-utils.ts │ ├── index.ts │ ├── items-service.ts │ ├── project-service │ │ ├── data-model.ts │ │ ├── primary-endpoint-configuration.ts │ │ ├── project-service.ts │ │ ├── project-worker-service.ts │ │ ├── project.ts │ │ ├── remote-endpoint-configuration.ts │ │ └── schema.ts │ ├── property-service.ts │ ├── social-auth-service.ts │ ├── sparql-autocomplete-service.ts │ ├── sparql-item-service.ts │ ├── sparql-statistics-service.ts │ ├── sparql-update-service.ts │ └── worker-service │ │ ├── serialization-service.ts │ │ ├── worker-service.ts │ │ └── worker-worker-service.ts ├── styles │ └── main.styl └── worker-index.ts ├── design ├── active_databar_info_v1.jpg ├── all_parts_mega_picture_171010.jpg ├── expand walkthrough.pdf ├── fibra_structure_170810.pdf ├── layer-effect.pdf ├── layout_walkthrough_v1.pdf ├── layout_walkthrough_v2.pdf ├── multiple-node-placement.pdf ├── smart search and view options walkthrough.pdf ├── smart_search.gif └── snapshot scenario.pdf ├── package.json ├── state-hierarchy.md ├── tsconfig.json ├── tslint.json ├── webpack.common.config.js ├── webpack.config.js ├── webpack.deploy.config.js └── webpack.dist.config.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/.stylintrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/README.md -------------------------------------------------------------------------------- /app/actions/active.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/actions/active.ts -------------------------------------------------------------------------------- /app/actions/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/actions/filter.ts -------------------------------------------------------------------------------- /app/actions/general.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/actions/general.ts -------------------------------------------------------------------------------- /app/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/actions/index.ts -------------------------------------------------------------------------------- /app/actions/items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/actions/items.ts -------------------------------------------------------------------------------- /app/actions/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/actions/project.ts -------------------------------------------------------------------------------- /app/actions/sources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/actions/sources.ts -------------------------------------------------------------------------------- /app/actions/verify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/actions/verify.ts -------------------------------------------------------------------------------- /app/components/active/active-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/active/active-component.ts -------------------------------------------------------------------------------- /app/components/active/active.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/active/active.pug -------------------------------------------------------------------------------- /app/components/active/active.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/active/active.styl -------------------------------------------------------------------------------- /app/components/add-source/add-source-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/add-source/add-source-component.ts -------------------------------------------------------------------------------- /app/components/add-source/add-source.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/add-source/add-source.pug -------------------------------------------------------------------------------- /app/components/add-source/add-source.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/add-source/add-source.styl -------------------------------------------------------------------------------- /app/components/bibliography-modal/bibliography-modal-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/bibliography-modal/bibliography-modal-component.ts -------------------------------------------------------------------------------- /app/components/bibliography-modal/bibliography-modal.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/bibliography-modal/bibliography-modal.pug -------------------------------------------------------------------------------- /app/components/bibliography-modal/bibliography-modal.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/bibliography-modal/bibliography-modal.styl -------------------------------------------------------------------------------- /app/components/citable-editor/citable-editor-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/citable-editor/citable-editor-component.ts -------------------------------------------------------------------------------- /app/components/citable-editor/citable-editor.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/citable-editor/citable-editor.pug -------------------------------------------------------------------------------- /app/components/citable-editor/citable-editor.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/citable-editor/citable-editor.styl -------------------------------------------------------------------------------- /app/components/citable/citable-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/citable/citable-component.ts -------------------------------------------------------------------------------- /app/components/citable/citable.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/citable/citable.pug -------------------------------------------------------------------------------- /app/components/collection-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/collection-utils.ts -------------------------------------------------------------------------------- /app/components/components.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/components.styl -------------------------------------------------------------------------------- /app/components/configure-view/configure-view-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/configure-view/configure-view-component.ts -------------------------------------------------------------------------------- /app/components/configure-view/configure-view.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/configure-view/configure-view.pug -------------------------------------------------------------------------------- /app/components/configure-view/configure-view.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/configure-view/configure-view.styl -------------------------------------------------------------------------------- /app/components/edit-primary-endpoint-configuration-view/edit-primary-endpoint-configuration-view-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/edit-primary-endpoint-configuration-view/edit-primary-endpoint-configuration-view-component.ts -------------------------------------------------------------------------------- /app/components/edit-primary-endpoint-configuration-view/edit-primary-endpoint-configuration-view.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/edit-primary-endpoint-configuration-view/edit-primary-endpoint-configuration-view.pug -------------------------------------------------------------------------------- /app/components/edit-remote-endpoint-configuration-view/edit-remote-endpoint-configuration-view-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/edit-remote-endpoint-configuration-view/edit-remote-endpoint-configuration-view-component.ts -------------------------------------------------------------------------------- /app/components/edit-remote-endpoint-configuration-view/edit-remote-endpoint-configuration-view.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/edit-remote-endpoint-configuration-view/edit-remote-endpoint-configuration-view.pug -------------------------------------------------------------------------------- /app/components/edit-schema-view/edit-schema-view-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/edit-schema-view/edit-schema-view-component.ts -------------------------------------------------------------------------------- /app/components/edit-schema-view/edit-schema-view.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/edit-schema-view/edit-schema-view.pug -------------------------------------------------------------------------------- /app/components/expand-modal/expand-modal-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/expand-modal/expand-modal-component.ts -------------------------------------------------------------------------------- /app/components/expand-modal/expand-modal.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/expand-modal/expand-modal.pug -------------------------------------------------------------------------------- /app/components/expand-modal/expand-modal.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/expand-modal/expand-modal.styl -------------------------------------------------------------------------------- /app/components/filter/filter-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/filter/filter-component.ts -------------------------------------------------------------------------------- /app/components/filter/filter.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/filter/filter.pug -------------------------------------------------------------------------------- /app/components/filter/filter.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/filter/filter.styl -------------------------------------------------------------------------------- /app/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/index.ts -------------------------------------------------------------------------------- /app/components/misc-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/misc-utils.ts -------------------------------------------------------------------------------- /app/components/project-delete-modal/project-delete-modal-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/project-delete-modal/project-delete-modal-component.ts -------------------------------------------------------------------------------- /app/components/project-delete-modal/project-delete-modal.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/project-delete-modal/project-delete-modal.pug -------------------------------------------------------------------------------- /app/components/project-delete-modal/project-delete-modal.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/project-delete-modal/project-delete-modal.styl -------------------------------------------------------------------------------- /app/components/project-source-configurations-view/project-source-configurations-view-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/project-source-configurations-view/project-source-configurations-view-component.ts -------------------------------------------------------------------------------- /app/components/project-source-configurations-view/project-source-configurations-view.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/project-source-configurations-view/project-source-configurations-view.pug -------------------------------------------------------------------------------- /app/components/project-sources-view/project-sources-view-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/project-sources-view/project-sources-view-component.ts -------------------------------------------------------------------------------- /app/components/project-sources-view/project-sources-view.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/project-sources-view/project-sources-view.pug -------------------------------------------------------------------------------- /app/components/project/project-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/project/project-component.ts -------------------------------------------------------------------------------- /app/components/project/project.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/project/project.pug -------------------------------------------------------------------------------- /app/components/project/project.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/project/project.styl -------------------------------------------------------------------------------- /app/components/projects-view/projects-view-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/projects-view/projects-view-component.ts -------------------------------------------------------------------------------- /app/components/projects-view/projects-view.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/projects-view/projects-view.pug -------------------------------------------------------------------------------- /app/components/projects-view/projects-view.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/projects-view/projects-view.styl -------------------------------------------------------------------------------- /app/components/properties-modal/properties-modal-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/properties-modal/properties-modal-component.ts -------------------------------------------------------------------------------- /app/components/properties-modal/properties-modal.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/properties-modal/properties-modal.pug -------------------------------------------------------------------------------- /app/components/properties-modal/properties-modal.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/properties-modal/properties-modal.styl -------------------------------------------------------------------------------- /app/components/rdfstore-test-view/rdfstore-test-view-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/rdfstore-test-view/rdfstore-test-view-component.ts -------------------------------------------------------------------------------- /app/components/rdfstore-test-view/rdfstore-test-view.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/rdfstore-test-view/rdfstore-test-view.pug -------------------------------------------------------------------------------- /app/components/snapshot-warning-modal/snapshot-warning-modal-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/snapshot-warning-modal/snapshot-warning-modal-component.ts -------------------------------------------------------------------------------- /app/components/snapshot-warning-modal/snapshot-warning-modal.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/snapshot-warning-modal/snapshot-warning-modal.pug -------------------------------------------------------------------------------- /app/components/snapshot-warning-modal/snapshot-warning-modal.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/snapshot-warning-modal/snapshot-warning-modal.styl -------------------------------------------------------------------------------- /app/components/social-auth/callback-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/social-auth/callback-component.ts -------------------------------------------------------------------------------- /app/components/social-auth/login-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/social-auth/login-component.ts -------------------------------------------------------------------------------- /app/components/sources/sources-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/sources/sources-component.ts -------------------------------------------------------------------------------- /app/components/sources/sources.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/sources/sources.pug -------------------------------------------------------------------------------- /app/components/sources/sources.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/sources/sources.styl -------------------------------------------------------------------------------- /app/components/type-select/type-select-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/type-select/type-select-component.ts -------------------------------------------------------------------------------- /app/components/type-select/type-select.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/components/type-select/type-select.pug -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/filters/citable-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/filters/citable-filter.ts -------------------------------------------------------------------------------- /app/filters/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/filters/index.ts -------------------------------------------------------------------------------- /app/filters/make-acronym-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/filters/make-acronym-filter.ts -------------------------------------------------------------------------------- /app/filters/preferred-language-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/filters/preferred-language-filter.ts -------------------------------------------------------------------------------- /app/fonts/calibre/CalibreWeb-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/fonts/calibre/CalibreWeb-Medium.woff -------------------------------------------------------------------------------- /app/fonts/calibre/CalibreWeb-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/fonts/calibre/CalibreWeb-Medium.woff2 -------------------------------------------------------------------------------- /app/fonts/calibre/CalibreWeb-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/fonts/calibre/CalibreWeb-MediumItalic.woff -------------------------------------------------------------------------------- /app/fonts/calibre/CalibreWeb-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/fonts/calibre/CalibreWeb-MediumItalic.woff2 -------------------------------------------------------------------------------- /app/fonts/calibre/CalibreWeb-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/fonts/calibre/CalibreWeb-Regular.woff -------------------------------------------------------------------------------- /app/fonts/calibre/CalibreWeb-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/fonts/calibre/CalibreWeb-Regular.woff2 -------------------------------------------------------------------------------- /app/fonts/calibre/CalibreWeb-RegularItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/fonts/calibre/CalibreWeb-RegularItalic.woff -------------------------------------------------------------------------------- /app/fonts/calibre/CalibreWeb-RegularItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/fonts/calibre/CalibreWeb-RegularItalic.woff2 -------------------------------------------------------------------------------- /app/images/active/grip_lines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/images/active/grip_lines.svg -------------------------------------------------------------------------------- /app/images/active/layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/images/active/layers.svg -------------------------------------------------------------------------------- /app/images/active/layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/images/active/layout.svg -------------------------------------------------------------------------------- /app/images/active/node_menu/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/images/active/node_menu/expand.svg -------------------------------------------------------------------------------- /app/images/active/node_menu/gather.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/images/active/node_menu/gather.svg -------------------------------------------------------------------------------- /app/images/active/node_menu/ghost.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/images/active/node_menu/ghost.svg -------------------------------------------------------------------------------- /app/images/active/node_menu/invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/images/active/node_menu/invert.svg -------------------------------------------------------------------------------- /app/images/active/node_menu/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/images/active/node_menu/link.svg -------------------------------------------------------------------------------- /app/images/active/node_menu/properties.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/images/active/node_menu/properties.svg -------------------------------------------------------------------------------- /app/images/active/node_menu/reconcile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/images/active/node_menu/reconcile.svg -------------------------------------------------------------------------------- /app/images/active/node_menu/remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/images/active/node_menu/remove.svg -------------------------------------------------------------------------------- /app/images/active/snapshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/images/active/snapshot.svg -------------------------------------------------------------------------------- /app/images/active/view_options.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/images/active/view_options.svg -------------------------------------------------------------------------------- /app/images/classes/person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/images/classes/person.svg -------------------------------------------------------------------------------- /app/images/classes/place.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/images/classes/place.svg -------------------------------------------------------------------------------- /app/images/classes/work.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/images/classes/work.svg -------------------------------------------------------------------------------- /app/images/filter/minimise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/images/filter/minimise.svg -------------------------------------------------------------------------------- /app/images/filter/remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/images/filter/remove.svg -------------------------------------------------------------------------------- /app/images/general/plus_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/images/general/plus_dark.svg -------------------------------------------------------------------------------- /app/images/general/plus_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/images/general/plus_light.svg -------------------------------------------------------------------------------- /app/images/logo/datapen-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/images/logo/datapen-logo.svg -------------------------------------------------------------------------------- /app/images/nav_bar/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/images/nav_bar/back.svg -------------------------------------------------------------------------------- /app/images/nav_bar/bibliography.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/images/nav_bar/bibliography.svg -------------------------------------------------------------------------------- /app/images/nav_bar/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/images/nav_bar/search.svg -------------------------------------------------------------------------------- /app/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/index.pug -------------------------------------------------------------------------------- /app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/index.ts -------------------------------------------------------------------------------- /app/models/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/models/action.ts -------------------------------------------------------------------------------- /app/models/citable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/models/citable.ts -------------------------------------------------------------------------------- /app/models/iexplore-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/models/iexplore-item.ts -------------------------------------------------------------------------------- /app/models/rdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/models/rdf.ts -------------------------------------------------------------------------------- /app/models/rdfjs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/models/rdfjs.ts -------------------------------------------------------------------------------- /app/models/richnode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/models/richnode.ts -------------------------------------------------------------------------------- /app/models/treenode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/models/treenode.ts -------------------------------------------------------------------------------- /app/reducers/active/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/reducers/active/index.ts -------------------------------------------------------------------------------- /app/reducers/filter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/reducers/filter/index.ts -------------------------------------------------------------------------------- /app/reducers/general/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/reducers/general/index.ts -------------------------------------------------------------------------------- /app/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/reducers/index.ts -------------------------------------------------------------------------------- /app/reducers/project/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/reducers/project/index.ts -------------------------------------------------------------------------------- /app/reducers/sources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/reducers/sources/index.ts -------------------------------------------------------------------------------- /app/services/fibra-sparql-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/services/fibra-sparql-service.ts -------------------------------------------------------------------------------- /app/services/id-consolidation-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/services/id-consolidation-utils.ts -------------------------------------------------------------------------------- /app/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/services/index.ts -------------------------------------------------------------------------------- /app/services/items-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/services/items-service.ts -------------------------------------------------------------------------------- /app/services/project-service/data-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/services/project-service/data-model.ts -------------------------------------------------------------------------------- /app/services/project-service/primary-endpoint-configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/services/project-service/primary-endpoint-configuration.ts -------------------------------------------------------------------------------- /app/services/project-service/project-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/services/project-service/project-service.ts -------------------------------------------------------------------------------- /app/services/project-service/project-worker-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/services/project-service/project-worker-service.ts -------------------------------------------------------------------------------- /app/services/project-service/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/services/project-service/project.ts -------------------------------------------------------------------------------- /app/services/project-service/remote-endpoint-configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/services/project-service/remote-endpoint-configuration.ts -------------------------------------------------------------------------------- /app/services/project-service/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/services/project-service/schema.ts -------------------------------------------------------------------------------- /app/services/property-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/services/property-service.ts -------------------------------------------------------------------------------- /app/services/social-auth-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/services/social-auth-service.ts -------------------------------------------------------------------------------- /app/services/sparql-autocomplete-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/services/sparql-autocomplete-service.ts -------------------------------------------------------------------------------- /app/services/sparql-item-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/services/sparql-item-service.ts -------------------------------------------------------------------------------- /app/services/sparql-statistics-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/services/sparql-statistics-service.ts -------------------------------------------------------------------------------- /app/services/sparql-update-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/services/sparql-update-service.ts -------------------------------------------------------------------------------- /app/services/worker-service/serialization-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/services/worker-service/serialization-service.ts -------------------------------------------------------------------------------- /app/services/worker-service/worker-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/services/worker-service/worker-service.ts -------------------------------------------------------------------------------- /app/services/worker-service/worker-worker-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/services/worker-service/worker-worker-service.ts -------------------------------------------------------------------------------- /app/styles/main.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/styles/main.styl -------------------------------------------------------------------------------- /app/worker-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/app/worker-index.ts -------------------------------------------------------------------------------- /design/active_databar_info_v1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/design/active_databar_info_v1.jpg -------------------------------------------------------------------------------- /design/all_parts_mega_picture_171010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/design/all_parts_mega_picture_171010.jpg -------------------------------------------------------------------------------- /design/expand walkthrough.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/design/expand walkthrough.pdf -------------------------------------------------------------------------------- /design/fibra_structure_170810.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/design/fibra_structure_170810.pdf -------------------------------------------------------------------------------- /design/layer-effect.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/design/layer-effect.pdf -------------------------------------------------------------------------------- /design/layout_walkthrough_v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/design/layout_walkthrough_v1.pdf -------------------------------------------------------------------------------- /design/layout_walkthrough_v2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/design/layout_walkthrough_v2.pdf -------------------------------------------------------------------------------- /design/multiple-node-placement.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/design/multiple-node-placement.pdf -------------------------------------------------------------------------------- /design/smart search and view options walkthrough.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/design/smart search and view options walkthrough.pdf -------------------------------------------------------------------------------- /design/smart_search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/design/smart_search.gif -------------------------------------------------------------------------------- /design/snapshot scenario.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/design/snapshot scenario.pdf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/package.json -------------------------------------------------------------------------------- /state-hierarchy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/state-hierarchy.md -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/tslint.json -------------------------------------------------------------------------------- /webpack.common.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/webpack.common.config.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.deploy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/webpack.deploy.config.js -------------------------------------------------------------------------------- /webpack.dist.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanitiesplusdesign/data-pen/HEAD/webpack.dist.config.js --------------------------------------------------------------------------------