Skip to content

Commit 731e954

Browse files
committed
Merge remote-tracking branch 'remotes/origin/master' into v1.1
# Conflicts: # app/components/start/start.html
2 parents dac784d + a39a8c8 commit 731e954

File tree

2 files changed

+10
-16
lines changed

2 files changed

+10
-16
lines changed

app/components/settings/settings.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
<div class="container">
22

3-
<h2>SPARQL Queries</h2>
3+
<h2>Retrieval Options</h2>
44

55
<form name="extractionForm" class="form-horizontal well" role="form" novalidate>
66
<div class="form-group" ng-class="{ 'has-error' : extractionForm.limit.$invalid && !extractionForm.limit.$pristine }">
7-
<label class="control-label col-sm-3" for="lang">Label Language</label>
7+
<label class="control-label col-sm-3" for="lang">Language of Labels</label>
88
<div class="col-sm-4">
99
<select class="form-control" name="lang" id="lang" ng-model="vm.currentLanguage"
1010
ng-options="language.id as language.name for language in vm.availableLanguages">
1111
</select>
1212
</div>
1313

14-
<label for="limit" class="col-sm-2 control-label">Default Limit</label>
14+
<label for="limit" class="col-sm-2 control-label">Number of Classes</label>
1515
<div class="col-sm-3">
1616
<input class="form-control" name="limit" id="limit" type="number" ng-model="vm.currentLimit" min="1" required/>
1717
<p ng-show="extractionForm.limit.$invalid && !extractionForm.limit.$pristine" class="help-block">
@@ -25,7 +25,7 @@ <h2>SPARQL Queries</h2>
2525
<div class="checkbox">
2626
<label>
2727
<input type="checkbox" name="ordered" ng-model="vm.propsOrdered">
28-
fetch properties in descending order of their usage
28+
retrieve properties in descending order of their usage frequency
2929
</label>
3030
</div>
3131
</div>

app/components/start/start.html

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,12 @@
22
<div class="jumbotron">
33
<h1>LD-VOWL</h1>
44
<p>
5-
Extracts ontology information out of SPARQL endpoints and displays the extracted information in an overview visualization using the
6-
<a href="http://vowl.visualdataweb.org" target="_blank">
5+
Extract ontology information from SPARQL endpoints and display the extracted information in an overview visualization using the
6+
<a href="http://vowl.visualdataweb.org/v2/" target="_blank">
77
VOWL Notation
88
</a>
99
(with minor modifications).
1010
</p>
11-
12-
<p><strong>Endpoint requirements:</strong></p>
13-
<ul>
14-
<li>speaks SPARQL</li>
15-
<li>returns JSON</li>
16-
<li>allows CORS</li>
17-
</ul>
1811
</div>
1912

2013
<div class="well">
@@ -25,12 +18,12 @@ <h1>LD-VOWL</h1>
2518
<input name="url" id="endpoint" ng-model="start.endpoint" type="url" class="form-control"
2619
title="SPARQL endpoint URL"
2720
uib-typeahead="url for url in start.endpoints | filter:$viewValue | limitTo:8" required
28-
ng-minlength="7" typeahead-min-length="0" placeholder="Type in an URL or select some from the list"/>
21+
ng-minlength="7" typeahead-min-length="0" placeholder="Type in an URL or select one from the list"/>
2922
</div>
3023
<div class="col-sm-3">
3124
<button type="button" class="btn btn-primary" id="showGraph" ng-click="start.showGraph()"
3225
ng-disabled="endpointForm.$invalid">
33-
Show Graph &raquo;
26+
Visualize &raquo;
3427
</button>
3528
</div>
3629
</div>
@@ -40,7 +33,8 @@ <h1>LD-VOWL</h1>
4033
<uib-alert type="info" close="start.closeEndpointAlert()" style="margin-bottom: 0;">
4134
<span class="glyphicon glyphicon-info-sign" aria-hidden="true"></span>
4235
A list of endpoints can be found
43-
<a class="alert-link" href="http://sparqles.ai.wu.ac.at/availability" target="_blank">here</a>.
36+
<a class="alert-link" href="http://sparqles.ai.wu.ac.at/availability" target="_blank">here</a>.<br/>
37+
<small>Endpoint requirements: 1) speaks SPARQL, 2) returns JSON, 3) allows CORS.</small>
4438
</uib-alert>
4539
</div>
4640
</div>

0 commit comments

Comments
 (0)