forked from Triply-Dev/YASGUI.YASQE-deprecated
-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
95 lines (81 loc) · 4.37 KB
/
index.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>YATE</title>
<link rel="icon" type="image/png" href="doc/imgs/favicon.png">
<link href="dist/yate.min.css" rel="stylesheet" type="text/css" />
<link href="doc/doc.min.css" rel="stylesheet" type="text/css" />
</head>
<body>
<a href="https://github.com/perfectkb/yate" target="_blank"><img style="z-index: 1; position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
<!-- Fixed navbar -->
<div class="navbar navbar-inverse" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">YATE</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#">About</a></li>
<li><a href="doc/">Documentation</a></li>
<li><a target="_blank" href="http://yasqe.yasgui.org/">original YASQE</a></li>
<li><a target="_blank" href="http://laurensrietveld.nl">The author of YASGUI</a></li>
<li><a target="_blank" href="http://maxime-lefrancois.info/">The author of this fork</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<div class="container" role="main">
<div class="jumbotron ">
<div class="row">
<div class="col-md-3">
<img class="img-responsive" src="doc/imgs/yate.png">
</div>
<div class="col-md-9">
<h1>Yet Another Turtle Editor - <em>forked from YASQE</em></h1>
</div>
</div>
</div>
<div class="row" id="aboutYQuery">
<div class="col-md-12">
<h1>About YATE</h1>
YASQE is part of the regular <a target="_blank" href='http://about.yasgui.org'>YASGUI<a href="">YASQE</a> is part of the regular <a target="_blank" href='http://about.yasgui.org'>YASGUI</a> web application. YASQE provides a simple syntax highlighted text area, bundled with features such as autocompletion, and the option to query SPARQL endpoints.<br/>
YATE is a fork for the simpler <a target="_blank" href='https://www.w3.org/TR/turtle/'>Turtle</a> syntax.
<div id="showcase"></div>
<code>var yate = YATE(document.getElementById("showcase"));</code> <br>
(or, if you would like to instantiate YATE from an existing text area, use <code>var yate = YATE.fromTextArea(document.getElementById('textAreaItem'));</code>
</div>
</div>
<div class="row" id="thanks">
<div class="col-md-12">
<h1>Thanks!</h1>
A big thanks goes out to:
<ul>
<li>Laurens Rietveld for his great work on the <a href="http://yasqe.yasgui.org/" target="_blank">YASQE library</a></li>
</ul>
A big thanks transitively goes out to:
<ul>
<li>The people behind the <a href="http://openuplabs.tso.co.uk/demos/sparqleditor" target="_blank">Flint SPARQL editor</a> for publishing the javascript SPARQL grammar</li>
<li>Marijn Haverbeke for his great work on the <a href="http://codemirror.net" target="_blank">CodeMirror library</a> syntax highlighting library</li>
<li>Pierre-Yves Vandenbussche and Bernard Vatant for their useful <a href='http://lov.okfn.org/' target="_blank">Linked Open Vocabularies service</a>, of which Laurens use the <a target="_blank" href="lov.okfn.org/dataset/lov/apidoc/">API</a> to autocomplete properties and classes
<li>Richard Cyganiak for his simple but effective <a href='http://prefix.cc' target="_blank">Prefix.cc</a> service, which Laurens use for autocompleting prefixes.
</ul>
</div>
</div>
</div> <!-- /container -->
<script src="dist/yate.bundled.min.js"></script>
<script src="doc/doc.min.js"></script>
<script type="text/javascript">
var yate = YATE(document.getElementById("showcase"));
</script>
</body>
</html>