|
@@ -2,13 +2,30 @@
|
|
|
{% block title %}Term Search{% endblock %}
|
|
|
{% block content %}
|
|
|
<p>Enter terms to query:</p>
|
|
|
- <ul>
|
|
|
- <li><strong>Logic:</strong> use "and" or "or" logic to concatenate multiple query criteria.</li>
|
|
|
- <li><strong>Prefix:</strong> optionally select a namespace prefix from a list of pre-configured ones.</li>
|
|
|
- <li><strong>Predicate:</strong> the fully qualified predicate URI if the prefix is empty, or the URI part following the namespace prefix (without the colon sign).</li>
|
|
|
- <li><strong>Operand:</strong> Select an operand for the comparison. The "Matches Term" operand expects an RDF literal or URI, all others a string.</li>
|
|
|
- <li><strong>Value:</strong> Value to compare against. If "Matches Term" is selected, an RDF URI literal as represented in SPARQL should be used, e.g. <pre><http://ex.org/ns/A></pre> or <pre>"title"^^xsd:string</pre>. For other operands, use a plain string without quotes.</li>
|
|
|
- </ul>
|
|
|
+ <dl>
|
|
|
+ <dt>Logic</dt>
|
|
|
+ <dd>use "and" or "or" logic to concatenate multiple query criteria.</dd>
|
|
|
+ <dt>Predicate</dt>
|
|
|
+ <dd>a fully qualified or namespace-prefixed
|
|
|
+ predicate URI in SPARQL notation, e.g.
|
|
|
+ <code><http://www.w3.org/1999/02/22-rdf-syntax-ns#type></code>
|
|
|
+ or
|
|
|
+ <code>skos:prefLabel</code>.
|
|
|
+ For a full list of namespace prefixes supported by this system,
|
|
|
+ see the collapsable namespace reference at the bottom of this page.
|
|
|
+ </dd>
|
|
|
+ <dt>Operand</dt>
|
|
|
+ <dd> Select an operand for the comparison. The "Matches Term" operand
|
|
|
+ expects an RDF literal or URI, all others a string.</dd>
|
|
|
+ <dt>Value</dt>
|
|
|
+ <dd>Value to compare against. If "Matches Term" is selected, an RDF URI
|
|
|
+ or literal in SPARQL notation should be used, e.g.
|
|
|
+ <code><http://ex.org/ns/A></code>
|
|
|
+ or
|
|
|
+ <code>"title"^^xsd:string</code>.
|
|
|
+ For other operands, use a plain string without quotes.</dd>
|
|
|
+ </dd>
|
|
|
+ </dl>
|
|
|
<form id="term-search-form" method="POST" action="">
|
|
|
<div class="my-sm-3 mb-2">
|
|
|
<label for="logic">Logic</label>
|
|
@@ -19,15 +36,6 @@
|
|
|
</div>
|
|
|
<div id="term-cont">
|
|
|
<div class="term-block form-row">
|
|
|
- <div class="form-group col-md-1">
|
|
|
- <label for="pred_ns[]">Prefix</label>
|
|
|
- <select class="form-control" name="pred_ns[]">
|
|
|
- <option selected value=""></option>
|
|
|
- {% for ns in nsm.namespaces() | sort %}
|
|
|
- <option value="{{ns[0]}}">{{ns[0]}}</option>
|
|
|
- {% endfor %}
|
|
|
- </select>
|
|
|
- </div>
|
|
|
<div class="form-group col-md-4">
|
|
|
<label for="pred[]">Predicate</label>
|
|
|
<input type="text" class="form-control" name="pred[]">
|
|
@@ -40,7 +48,7 @@
|
|
|
{% endfor %}
|
|
|
</select>
|
|
|
</div>
|
|
|
- <div class="form-group col-md-4">
|
|
|
+ <div class="form-group col-md-5">
|
|
|
<label for="val[]">Value</label>
|
|
|
<input type="text" class="form-control" name="val[]">
|
|
|
</div>
|
|
@@ -61,6 +69,20 @@
|
|
|
{% endblock %}
|
|
|
{% block tail_js %}
|
|
|
<script>
|
|
|
+ function format_fields() {
|
|
|
+ var conds = [];
|
|
|
+ var terms = ['pred', 'op', 'val'];
|
|
|
+ for (term of terms) {
|
|
|
+ $(":input[name='" + term + "[]']").each(function(i) {
|
|
|
+ if (typeof conds[i] == 'undefined') {
|
|
|
+ conds[i] = {};
|
|
|
+ }
|
|
|
+ conds[i][term] = $(this).val();
|
|
|
+ });
|
|
|
+ }
|
|
|
+ return conds
|
|
|
+ }
|
|
|
+
|
|
|
$(function(){
|
|
|
$('.term-block').first().find('.delete-row').hide();
|
|
|
$('#add-row').on('click', function(){
|
|
@@ -78,13 +100,24 @@
|
|
|
$.ajax({
|
|
|
type: 'POST',
|
|
|
url: '',
|
|
|
- data: $(this).serialize(),
|
|
|
+ data: JSON.stringify({
|
|
|
+ terms: format_fields(),
|
|
|
+ logic: $('select[name="logic"]').val(),
|
|
|
+ }),
|
|
|
+ contentType: 'application/json; charset=utf-8',
|
|
|
+ dataType: 'json',
|
|
|
encode: true
|
|
|
})
|
|
|
.done(function(data) {
|
|
|
//var cont = $('#search-results-wrap')
|
|
|
$('#search-results-wrap').removeClass('bg-danger')
|
|
|
- .html(data);
|
|
|
+ .html('<h2>Search Results</h2>'
|
|
|
+ + '<ul id="url-list"></ul>');
|
|
|
+ for (url of data) {
|
|
|
+ $('#url-list').append(
|
|
|
+ '<li><a href="' + url + '">'
|
|
|
+ + url + '</a></li>');
|
|
|
+ }
|
|
|
})
|
|
|
.fail(function(data) {
|
|
|
$('#search-results-wrap').addClass('bg-danger')
|