Created
April 11, 2018 05:44
-
-
Save ryantm/83a0018e4eafbea41f4af26e953edc95 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/nix/store/rvqwm2782sknhyqm8xf84k7lpr12l4fn-apache-jena-fuseki-3.7.0 | |
├── bin | |
│ ├── fuseki | |
│ ├── fuseki-server | |
│ ├── s-delete | |
│ ├── s-get | |
│ ├── s-head | |
│ ├── soh | |
│ ├── s-post | |
│ ├── s-put | |
│ ├── s-query | |
│ ├── s-update | |
│ └── s-update-form | |
├── fuseki | |
├── fuseki-backup | |
├── fuseki-server | |
├── fuseki-server.bat | |
├── fuseki-server.jar | |
├── fuseki.service | |
├── fuseki.war | |
├── LICENSE | |
├── NOTICE | |
├── README | |
└── webapp | |
├── admin-logs.html | |
├── css | |
│ ├── bootstrap.css.map | |
│ ├── bootstrap.min.css | |
│ ├── bootstrap-select.min.css | |
│ ├── bootstrap-theme.css.map | |
│ ├── bootstrap-theme.min.css | |
│ ├── codemirror.css | |
│ ├── codemirror.min.css | |
│ ├── font-awesome.min.css | |
│ ├── fui.css | |
│ ├── jquery.dataTables.css | |
│ ├── jquery.fileupload.css | |
│ ├── jquery.fileupload-noscript.css | |
│ ├── jquery.fileupload-ui.css | |
│ ├── jquery.fileupload-ui-noscript.css | |
│ ├── pivot.min.css | |
│ ├── qonsole.css | |
│ ├── yasqe.min.css | |
│ └── yasr.min.css | |
├── dataset.html | |
├── documentation.html | |
├── fonts | |
│ ├── FontAwesome.otf | |
│ ├── fontawesome-webfont.eot | |
│ ├── fontawesome-webfont.svg | |
│ ├── fontawesome-webfont.ttf | |
│ ├── fontawesome-webfont.woff | |
│ ├── glyphicons-halflings-regular.eot | |
│ ├── glyphicons-halflings-regular.svg | |
│ ├── glyphicons-halflings-regular.ttf | |
│ └── glyphicons-halflings-regular.woff | |
├── images | |
│ ├── back_disabled.png | |
│ ├── back_enabled_hover.png | |
│ ├── back_enabled.png | |
│ ├── favicon.ico | |
│ ├── forward_disabled.png | |
│ ├── forward_enabled_hover.png | |
│ ├── forward_enabled.png | |
│ ├── jena-logo-notext-small.png | |
│ ├── sort_asc_disabled.png | |
│ ├── sort_asc.png | |
│ ├── sort_both.png | |
│ ├── sort_desc_disabled.png | |
│ ├── sort_desc.png | |
│ └── wait30.gif | |
├── index.html | |
├── js | |
│ ├── app | |
│ │ ├── controllers | |
│ │ │ ├── dataset-controller.js | |
│ │ │ ├── index-controller.js | |
│ │ │ ├── manage-controller.js | |
│ │ │ ├── query-controller.js | |
│ │ │ ├── upload-controller.js | |
│ │ │ └── validation-controller.js | |
│ │ ├── fui.js | |
│ │ ├── layouts | |
│ │ ├── main.dataset.js | |
│ │ ├── main.index.js | |
│ │ ├── main.manage.js | |
│ │ ├── main.validation.js | |
│ │ ├── models | |
│ │ │ ├── dataset.js | |
│ │ │ ├── dataset-stats.js | |
│ │ │ ├── fuseki-server.js | |
│ │ │ ├── task.js | |
│ │ │ └── validation-options.js | |
│ │ ├── qonsole-config.js | |
│ │ ├── routers | |
│ │ ├── services | |
│ │ │ ├── ping-service.js | |
│ │ │ └── validation-service.js | |
│ │ ├── templates | |
│ │ │ ├── dataset-edit.tpl | |
│ │ │ ├── dataset-info.tpl | |
│ │ │ ├── dataset-management.tpl | |
│ │ │ ├── dataset-selection-list.tpl | |
│ │ │ ├── dataset-selector.tpl | |
│ │ │ ├── dataset-simple-create.tpl | |
│ │ │ ├── dataset-stats.tpl | |
│ │ │ ├── file-upload.tpl | |
│ │ │ └── uploadable-file.tpl | |
│ │ ├── util | |
│ │ │ └── page-utils.js | |
│ │ └── views | |
│ │ ├── dataset-edit.js | |
│ │ ├── dataset-info.js | |
│ │ ├── dataset-management.js | |
│ │ ├── datasets-dropdown-list.js | |
│ │ ├── dataset-selection-list.js | |
│ │ ├── dataset-selector.js | |
│ │ ├── dataset-simple-create.js | |
│ │ ├── dataset-stats.js | |
│ │ ├── file-upload.js | |
│ │ ├── tabbed-view-manager.js | |
│ │ ├── uploadable-file.js | |
│ │ └── validation-options.js | |
│ ├── common-config.js | |
│ └── lib | |
│ ├── addon | |
│ │ └── fold | |
│ │ ├── brace-fold.js | |
│ │ ├── comment-fold.js | |
│ │ ├── foldcode.js | |
│ │ ├── foldgutter.js | |
│ │ └── xml-fold.js | |
│ ├── backbone.js | |
│ ├── backbone.marionette.js | |
│ ├── backbone-min.js | |
│ ├── bootstrap.min.js | |
│ ├── bootstrap-select.min.js | |
│ ├── html5shiv.js | |
│ ├── jquery-1.10.2.js | |
│ ├── jquery-1.10.2.min.js | |
│ ├── jquery.dataTables.min.js | |
│ ├── jquery.fileupload.js | |
│ ├── jquery.fileupload.local.js | |
│ ├── jquery.form.js | |
│ ├── jquery.iframe-transport.js | |
│ ├── jquery-ui.min.js | |
│ ├── jquery.ui.widget.js | |
│ ├── jquery.xdomainrequest.js | |
│ ├── lib | |
│ │ └── codemirror.js | |
│ ├── mode | |
│ │ ├── javascript | |
│ │ │ └── javascript.js | |
│ │ ├── sparql | |
│ │ │ └── sparql.js | |
│ │ ├── turtle | |
│ │ │ └── turtle.js | |
│ │ └── xml | |
│ │ └── xml.js | |
│ ├── pivot.js | |
│ ├── pivot.min.js | |
│ ├── pivot.min.js.map | |
│ ├── plugins | |
│ │ └── text.js | |
│ ├── qonsole.js | |
│ ├── refresh.sh | |
│ ├── require.js | |
│ ├── require.min.js | |
│ ├── respond.min.js | |
│ ├── sprintf-0.7-beta1.js | |
│ ├── underscore.js | |
│ ├── yasqe.min.js | |
│ ├── yasqe.min.js.map | |
│ ├── yasr.min.js | |
│ └── yasr.min.js.map | |
├── manage.html | |
├── services.html | |
├── test | |
│ └── test-fuseki-config.ttl | |
├── validate.html | |
└── WEB-INF | |
└── web.xml | |
27 directories, 154 files |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment