This repository has been archived by the owner on Sep 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwikidata.html
71 lines (68 loc) · 3.57 KB
/
wikidata.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en" ng-app="WikidataApp">
<head>
<title>Cocoda - Concordance App</title>
<meta charset="utf-8">
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet" />
<link href="lib/ng-skos/ng-skos.css" rel="stylesheet" />
<link href="src/cocoda.css" rel="stylesheet" />
<!-- Used external sources -->
<script src="lib/angular/angular.min.js"></script>
<script src="lib/angular-resource.min.js"></script>
<script src="lib/angular-sanitize.min.js"></script>
<script src="lib/angular-bootstrap/ui-bootstrap-tpls-0.11.0.min.js"></script>
<script src="lib/ng-suggest/ng-suggest.js"></script>
<!-- ng-skos modules -->
<script src="src/json-text.js"></script>
<script src="src/ng-skos.js"></script>
<script src="src/services/SkosProvider.js"></script>
<script src="src/services/SkosConceptSource.js"></script>
<script src="src/services/SkosConceptListSource.js"></script>
<script src="src/directives/skosLabel.js"></script>
<script src="src/directives/skosConcept.js"></script>
<script src="src/directives/skosTree.js"></script>
<script src="src/directives/skosSearch.js"></script>
<script src="src/directives/skosMappingCollection.js"></script>
<script src="src/directives/skosMappingTable.js"></script>
<script src="src/directives/skosOccurrences.js"></script>
<script src="src/directives/skosConceptMapping.js"></script>
<!-- Controller -->
<script src="WikidataScheme.js"></script>
<script src="wikidata-app.js"></script>
</head>
<body ng-controller="myController">
<div class="main">
<div class="row" style="margin-left:0px;margin-right:0px;">
<div class="col-md-3">
<div>
<div>
<span ng-if="suggestConcept">
<input class="form-control"
suggest-typeahead="SuggestConcept(currentConcept)"
typeahead-on-select="SelectConcept($item)"
ng-model="currentConcept"
placeholder="Search by terms (typeahead)"
typeahead-loading="loadingLocations"
typeahead-editable="false"
/>
<i style="position:absolute;right:22px;top:45px;" ng-show="loadingLocations" class="glyphicon glyphicon-refresh"></i>
</span>
<div class="search-top">
<form ng-submit="selectConceptByNotation(notation)">
<span style="float:left;">
<input class="form-control search-top-input"
ng-model="notation"
placeholder="Enter full notation"
/>
</span>
<input type="submit" value="Select" class="search-top-button" ng-disabled="!notation.length" />
</form>
</div>
<div skos-concept="currentConcept"></div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>