-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
…60d30ad01b66ba01bb67a1.
- Loading branch information
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
<!doctype html> | ||
<!-- ©2014–2016 Ruben Verborgh, Ghent University – imec --> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Comunica Web client</title> | ||
<link rel=stylesheet href="styles/yasqe.css"> | ||
<link rel=stylesheet href="styles/leaflet.css"/> | ||
<link rel=stylesheet href="styles/ldf-client.css"> | ||
<link rel=stylesheet href="//fonts.googleapis.com/css?family=Open+Sans:300,400italic,700italic,400,700"> | ||
<meta name="viewport" content="width=device-width,minimum-scale=1,maximum-scale=1"> | ||
</head> | ||
<body> | ||
<header> | ||
<a class="logo" href="https://comunica.dev/"><img src="images/logo.svg" alt="" /></a> | ||
<h1><a href="#">Query the Web of Linked Data</a></h1> | ||
<p><a href="https://comunica.dev/" target="_blank">Live in your browser, powered by Comunica</a>.</p> | ||
</header> | ||
<!--[if lte IE 9]><b>Your browser is unsupported.</b><div style="display:none"><![endif]--> | ||
<main> | ||
<fieldset class="ldf-client"> | ||
<ul> | ||
<li> | ||
<label>Choose datasources</label> | ||
<span class="details-toggle" title="Show date option"></span> | ||
<select class="datasources" multiple> | ||
<option class="extra-information" value="">Select a preset datasource, or type a custom URL</option> | ||
</select> | ||
</li> | ||
|
||
<li class="details solid-auth"> | ||
<label>Solid authentication</label> | ||
<input class="idp" type="text" placeholder="Identity provider"> | ||
<span class="webid"></span> | ||
<button class="login" disabled="true">Log in</button> | ||
</li> | ||
<li class="details"> | ||
<label>Pick a date</label> | ||
<input class="datetime" type="date"> | ||
</li> | ||
<li class="details"> | ||
<label>Set a HTTP proxy</label> | ||
<input class="httpProxy" type="text"> | ||
<button class="proxy-default">Set default</button> | ||
</li> | ||
<li class="details"> | ||
<label>Bypass cache</label> | ||
<input class="bypassCache" type="checkbox"> | ||
</li> | ||
|
||
<li> | ||
<label>Type or pick a query</label> | ||
<select class="query"></select> | ||
|
||
<div> | ||
<ul class="query-texts"> | ||
<li><a id="sparql"><img src="images/sparql.png" alt="SPARQL" />SPARQL</a></li> | ||
<li><a id="graphql"><img src="images/graphql.svg" alt="GraphQL" />GraphQL-LD</a></li> | ||
</ul> | ||
</div> | ||
|
||
<div class="query-text-containers"> | ||
<div class="query-text-container" id="tab-sparql"> | ||
<textarea class="querytext querytext-sparql yasqe" placeholder="Write a SPARQL query or select one from the list"></textarea> | ||
</div> | ||
<div class="query-text-container" id="tab-graphql"> | ||
<a href="https://gist.github.com/rubensworks/9d6eccce996317677d71944ed1087ea6" class="help" target="_blank">What is GraphQL-LD?</a> | ||
<label class="muted">GraphQL Query</label> | ||
<textarea class="querytext querytext-graphql" placeholder="Write a GraphQL query or select one from the list"></textarea> | ||
|
||
<label class="muted">JSON-LD context</label> | ||
<textarea class="querycontext querycontext-graphql" placeholder="Write a JSON-LD context to map GraphQL query fields to URIs"></textarea> | ||
|
||
<label class="muted">JSON tree results</label> | ||
<input type="checkbox" class="results-to-tree results-to-tree-graphql" /> | ||
</div> | ||
</div> | ||
</li> | ||
|
||
<li> | ||
<button class="start">Execute query</button> | ||
<button class="stop" style="display:none">Stop execution</button> | ||
<span class="timing"></span> | ||
</li> | ||
|
||
<li class="results-map-wrapper"> | ||
<label>Geospatial results</label> | ||
<div class="results-map"></div> | ||
</li> | ||
|
||
<li> | ||
<label>Query results</label> | ||
<div class="results"></div> | ||
</li> | ||
|
||
<li> | ||
<label>Execution log</label> | ||
<pre class="log"></pre> | ||
</li> | ||
</ul> | ||
</fieldset> | ||
|
||
<p> | ||
Discover how <a href="http://linkeddatafragments.org" target="_blank">Linked Data Fragments</a> | ||
enable Web-scale querying of Linked Data. | ||
</p> | ||
</main> | ||
|
||
<footer> | ||
<p> | ||
©2013–now | ||
<a href="http://www.ugent.be/" target="_blank">Ghent University</a> – | ||
<a href="http://www.imec.be/" target="_blank">imec</a>, Belgium. | ||
<a href="https://github.com/comunica/jQuery-Widget.js">Source code</a>. | ||
<p id="comunica-version"></p> | ||
</p> | ||
</footer> | ||
|
||
<script src="scripts/ldf-client-ui.min.js"></script> | ||
<script> | ||
jQuery(function ($) { | ||
$('.ldf-client').queryui({ settings: 'queries.json' }); | ||
}); | ||
</script> | ||
</body> | ||
</html> |
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
/* @preserve | ||
* Leaflet 1.9.4, a JS library for interactive maps. https://leafletjs.com | ||
* (c) 2010-2023 Vladimir Agafonkin, (c) 2010-2011 CloudMade | ||
*/ | ||
|
||
/*! | ||
* Sizzle CSS Selector Engine v1.10.16 | ||
* http://sizzlejs.com/ | ||
* | ||
* Copyright 2013 jQuery Foundation, Inc. and other contributors | ||
* Released under the MIT license | ||
* http://jquery.org/license | ||
* | ||
* Date: 2014-01-13 | ||
*/ | ||
|
||
/*! | ||
* Sizzle CSS Selector Engine v2.2.1 | ||
* http://sizzlejs.com/ | ||
* | ||
* Copyright jQuery Foundation and other contributors | ||
* Released under the MIT license | ||
* http://jquery.org/license | ||
* | ||
* Date: 2015-10-17 | ||
*/ | ||
|
||
/*! | ||
* The buffer module from node.js, for the browser. | ||
* | ||
* @author Feross Aboukhadijeh <http://feross.org> | ||
* @license MIT | ||
*/ | ||
|
||
/*! | ||
* The buffer module from node.js, for the browser. | ||
* | ||
* @author Feross Aboukhadijeh <https://feross.org> | ||
* @license MIT | ||
*/ | ||
|
||
/*! | ||
* jQuery JavaScript Library v2.1.0 | ||
* http://jquery.com/ | ||
* | ||
* Includes Sizzle.js | ||
* http://sizzlejs.com/ | ||
* | ||
* Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors | ||
* Released under the MIT license | ||
* http://jquery.org/license | ||
* | ||
* Date: 2014-01-23T21:10Z | ||
*/ | ||
|
||
/*! | ||
* jQuery JavaScript Library v2.2.4 | ||
* http://jquery.com/ | ||
* | ||
* Includes Sizzle.js | ||
* http://sizzlejs.com/ | ||
* | ||
* Copyright jQuery Foundation and other contributors | ||
* Released under the MIT license | ||
* http://jquery.org/license | ||
* | ||
* Date: 2016-05-20T17:23Z | ||
*/ | ||
|
||
/*! | ||
Chosen, a Select Box Enhancer for jQuery and Prototype | ||
by Patrick Filler for Harvest, http://getharvest.com | ||
|
||
Version 1.1.0 | ||
based on the fork https://github.com/koenpunt/chosen/releases/tag/v1.1.0 | ||
with custom enhancements by Ruben Verborgh: | ||
- auto-select new element if no other options available | ||
- accept suggestions after tab or space | ||
- replaced 'chosen-container' by 'chosen' | ||
and custom enhancements by Ruben Taelman: | ||
- Inherit all classes from <option> to the auto-generated <li> for multi-selects | ||
- Inherit all classes from <option> to the auto-generated <span> for single-selects | ||
|
||
MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md | ||
This file is generated by `grunt build`, do not edit it by hand. | ||
*/ | ||
|
||
/*! (c) Stefan Thomas | https://github.com/bitcoinjs/bitcoinjs-lib | ||
*/ | ||
|
||
/*! (c) Tom Wu | http://www-cs-students.stanford.edu/~tjw/jsbn/ | ||
*/ | ||
|
||
/*! @license MIT ©2014–2016 Ruben Verborgh, Ghent University – imec */ | ||
|
||
/*! Mike Samuel (c) 2009 | code.google.com/p/json-sans-eval | ||
*/ | ||
|
||
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */ | ||
|
||
/*! queue-microtask. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */ | ||
|
||
/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */ | ||
|
||
/** @license | ||
* | ||
* Copyright (C) 2012 K. Arthur Endsley ([email protected]) | ||
* Michigan Tech Research Institute (MTRI) | ||
* 3600 Green Court, Suite 100, Ann Arbor, MI, 48105 | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
*/ |
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/*! | ||
* The buffer module from node.js, for the browser. | ||
* | ||
* @author Feross Aboukhadijeh <http://feross.org> | ||
* @license MIT | ||
*/ | ||
|
||
/*! | ||
* The buffer module from node.js, for the browser. | ||
* | ||
* @author Feross Aboukhadijeh <https://feross.org> | ||
* @license MIT | ||
*/ | ||
|
||
/*! (c) Stefan Thomas | https://github.com/bitcoinjs/bitcoinjs-lib | ||
*/ | ||
|
||
/*! (c) Tom Wu | http://www-cs-students.stanford.edu/~tjw/jsbn/ | ||
*/ | ||
|
||
/*! Mike Samuel (c) 2009 | code.google.com/p/json-sans-eval | ||
*/ | ||
|
||
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */ | ||
|
||
/*! queue-microtask. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */ | ||
|
||
/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */ | ||
|
||
/** | ||
* Character class utilities for XML NS 1.0 edition 3. | ||
* | ||
* @author Louis-Dominique Dubeau | ||
* @license MIT | ||
* @copyright Louis-Dominique Dubeau | ||
*/ | ||
|
||
/** | ||
* Character classes and associated utilities for the 2nd edition of XML 1.1. | ||
* | ||
* @author Louis-Dominique Dubeau | ||
* @license MIT | ||
* @copyright Louis-Dominique Dubeau | ||
*/ | ||
|
||
/** | ||
* Character classes and associated utilities for the 5th edition of XML 1.0. | ||
* | ||
* @author Louis-Dominique Dubeau | ||
* @license MIT | ||
* @copyright Louis-Dominique Dubeau | ||
*/ |
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"@context": ["https://www.w3.org/ns/solid/oidc-context.jsonld"], | ||
"client_id": "https://comunica.github.io/comunica-feature-link-traversal-web-clients/builds/solid-base-priority-queue/solid-client-id.jsonld", | ||
"client_name": "Comunica Web Client", | ||
"redirect_uris": ["https://comunica.github.io/comunica-feature-link-traversal-web-clients/builds/solid-base-priority-queue/"], | ||
"post_logout_redirect_uris": ["https://comunica.github.io/comunica-feature-link-traversal-web-clients/builds/solid-base-priority-queue/"], | ||
"client_uri": "https://comunica.github.io/comunica-feature-link-traversal-web-clients/builds/solid-base-priority-queue/", | ||
"logo_uri" : "https://comunica.github.io/comunica-feature-link-traversal-web-clients/builds/solid-base-priority-queue/images/logo.svg", | ||
"scope" : "openid profile offline_access webid", | ||
"grant_types" : ["refresh_token","authorization_code"], | ||
"response_types" : ["code"], | ||
"default_max_age" : 3600, | ||
"require_auth_time" : true | ||
} |