UNPKG

perfectkb-yate

Version:

Yet Another Turtle Editor, forked from YASQE

96 lines (81 loc) 4.47 kB
<!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>