Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.73 KB | None | 0 0
  1. <html>
  2.   <head>
  3.       <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"
  4.              type="text/javascript">
  5.       </script>
  6.       <script type="text/javascript">
  7.       $(document).ready(function() {
  8.          var q='PREFIX dcterms: <http://purl.org/dc/terms/>\
  9.                 PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>\
  10.                 PREFIX dbo: <http://dbpedia.org/ontology/>\
  11.                 PREFIX dbr: <http://dbpedia.org/page/>\
  12.                 PREFIX yago: <http://dbpedia.org/class/yago/>\
  13.                 \
  14.                 select ?nombre ?X ?descripcion where {\
  15.                     ?X rdf:type yago:Bat102139199 .\
  16.                     ?X rdfs:label ?nombre.\
  17.                     ?X dbo:abstract ?descripcion.\
  18.                 } LIMIT 100\
  19.                 order by ?nombre';
  20.       $.ajax({
  21.            dataType: 'jsonp',
  22.            data: {
  23.               query: q,
  24.               format: 'application/sparql-results+json'
  25.               },
  26.            url: 'http://dbpedia.org/sparql',
  27.            success: function(data){
  28.             $(data.results.bindings).each(function(i, item){
  29.               $("#results").append("<tr><td class='persona'>"+item.nombre.value+"</td>\
  30.                                     <td><a href='"+item.X.value+"' class='uri'>"+item.nombre.value+"</a></td>\
  31.                                     <td class='nacimiento'>"+item.descripcion.value+"</td>");
  32.             });
  33.            }
  34.          });
  35.       });
  36.     </script>
  37.   </head>
  38.  
  39.   <h1>Demo Plantilla: Novelistas Chilenos</h1>
  40.   <body>
  41.     <table id="results" style="float: left">
  42.       <tr>
  43.         <th>Nombre</th>
  44.         <th>URI</th>
  45.         <th>Descripcion</th>
  46.       </tr>
  47.     </table>
  48.   </body>
  49. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement