jmvanel

RSS example 1 in Turtle

Jan 29th, 2014
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Prolog 1.07 KB | None | 0 0
  1. #Processed by Id: cwm.py,v 1.197 2007/12/13 15:38:39 syosi Exp
  2.         #    using base file:///home/jmv/data/rss_example2.rdf
  3.        
  4. #  Notation3 generation by
  5. #       notation3.py,v 1.200 2007/12/11 21:18:08 syosi Exp
  6.  
  7. #   Base was: file:///home/jmv/data/rss_example2.rdf
  8.     @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
  9.    
  10.     <http://example.org/item/>     a <http://purl.org/rss/1.0/item>;
  11.          <http://purl.org/rss/1.0/link> "http://example.org/item/";
  12.          <http://purl.org/rss/1.0/modules/content/encoded> "<p>What a <em>beautiful</em> day!</p>";
  13.          <http://purl.org/rss/1.0/title> "The Example Item" .
  14.    
  15.     <http://example.org/rss.rdf>     a <http://purl.org/rss/1.0/channel>;
  16.          <http://purl.org/rss/1.0/description> "Simply for the purpose of demonstration.";
  17.          <http://purl.org/rss/1.0/items>  [
  18.              a rdf:Seq;
  19.              rdf:_1 <http://example.org/item/> ];
  20.          <http://purl.org/rss/1.0/link> "http://www.example.org";
  21.          <http://purl.org/rss/1.0/title> "Example Feed" .
  22.    
  23. #ENDS
Advertisement
Add Comment
Please, Sign In to add comment