Mercurial > hg > dbtune-site
annotate rdf-pastebin/index.html @ 19:1e79ce3ff5f5 tip
Simplify and cut some non-working resource paths
author | Chris Cannam |
---|---|
date | Wed, 08 Nov 2017 15:27:23 +0000 |
parents | 1e44d666ced1 |
children |
rev | line source |
---|---|
Chris@0 | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
Chris@0 | 2 |
Chris@0 | 3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
Chris@0 | 4 |
Chris@0 | 5 <head> |
Chris@0 | 6 <title>DBTune - Music-Related RDF</title> |
Chris@0 | 7 |
Chris@0 | 8 <style type="text/css" media="all"> |
Chris@0 | 9 @import url(style.css); |
Chris@0 | 10 </style> |
Chris@0 | 11 <link rel="meta" type="application/rdf+xml" title="FOAF" href="http://moustaki.org/foaf.rdf" /> |
Chris@0 | 12 </head> |
Chris@0 | 13 |
Chris@0 | 14 <body> |
Chris@0 | 15 |
Chris@0 | 16 <h1 style="font-size: 250%;">RDF posting service</h1> |
Chris@0 | 17 |
Chris@0 | 18 <h2>Description</h2> |
Chris@0 | 19 <p>This service is just a small hack, allowing to post RDF and serve |
Chris@0 | 20 it from this server. This is just intended for tutorial purposes. |
Chris@0 | 21 </p> |
Chris@0 | 22 <p> |
Chris@0 | 23 To use it, you can can fill in the form below, or use <b>curl</b> |
Chris@0 | 24 at <b>http://dbtune.org:1112</b>, posting two fields: <b>name</b> |
Chris@0 | 25 and <b>turtle</b>. |
Chris@0 | 26 </p> |
Chris@0 | 27 |
Chris@0 | 28 <h2>Post it!</h2> |
Chris@0 | 29 <form method="POST" action="http://dbtune.org:1112/"> |
Chris@0 | 30 <p> |
Chris@0 | 31 Nickname: <input type="text" name="name" value="kurtjx"/> |
Chris@0 | 32 </p> |
Chris@0 | 33 <p> |
Chris@0 | 34 <textarea name="turtle" rows="30" cols="80"> |
Chris@0 | 35 @prefix foaf: <http://xmlns.com/foaf/0.1/>. |
Chris@0 | 36 @prefix owl: <http://www.w3.org/2002/07/owl#>. |
Chris@0 | 37 @prefix : <#>. |
Chris@0 | 38 |
Chris@0 | 39 # Basic description of me |
Chris@0 | 40 :me a foaf:Person. |
Chris@0 | 41 :me foaf:name "Kurt". |
Chris@0 | 42 |
Chris@0 | 43 # Where am I? Use sindice.com, type "london geonames" |
Chris@0 | 44 :me foaf:based_near <http://sws.geonames.org/6058560/>. |
Chris@0 | 45 |
Chris@0 | 46 # Other identities |
Chris@0 | 47 :me owl:sameAs <http://dbtune.org/last-fm/kurtjx>. |
Chris@0 | 48 </textarea> |
Chris@0 | 49 </p> |
Chris@0 | 50 <p> |
Chris@0 | 51 <input type="submit" name="press" value=" OK "/> |
Chris@0 | 52 </p> |
Chris@0 | 53 </form> |
Chris@0 | 54 |
Chris@0 | 55 </body> |
Chris@0 | 56 |
Chris@0 | 57 </html> |
Chris@0 | 58 |