| Apache-XPointer-RDQL documentation | view source | Contained in the Apache-XPointer-RDQL distribution. |
Apache::XPointer::RDQL::RDFStore - mod_perl handler to address XML fragments using the RDF Data Query Language.
<Directory /foo/bar>
<FilesMatch "\.rdf$">
SetHandler perl-script
PerlHandler Apache::XPointer::RDQL::RDFStore
PerlSetVar XPointerSendRangeAs "XML"
</FilesMatch>
</Directory>
#
my $ua = LWP::UserAgent->new();
my $req = HTTP::Request->new(GET => "http://example.com/foo/bar/baz.rdf");
$req->header("Range" => qq(SELECT ?title, ?link
WHERE
(?item, <rdf:type>, <rss:item>),
(?item, <rss::title>, ?title),
(?item, <rss::link>, ?link)
USING
rdf for <http://www.w3.org/1999/02/22-rdf-syntax-ns#>,
rss for <http://purl.org/rss/1.0/>));
$req->header("Accept" => "application/rdf+xml");
my $res = $ua->request($req);
Apache::XPointer::RDQL::RDFStore is a mod_perl handler to address XML fragments using the HTTP 1.1 Range and Accept headers and the XPath scheme, as described in the paper : A Semantic Web Resource Protocol: XPointer and HTTP.
Additionally, the handler may also be configured to recognize a conventional CGI parameter as a valid range identifier.
If no 'range' property is found, then the original document is sent unaltered.
If an Accept header is specified with no corresponding match, then the server will return (406) HTTP_NOT_ACCEPTABLE.
Successful queries will return (206) HTTP_PARTIAL_CONTENT.
Return matches as one of the following content-types :
--match
Content-type: text/xml; charset=UTF-8
<rdf:RDF
xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'
xmlns:rdfstore='http://rdfstore.sourceforge.net/contexts/'
xmlns:voc0='http://purl.org/rss/1.0/'>
<rdf:Description rdf:about='rdf:resource:rdfstore123'>
<voc0:title>The Daily Cartoon for November 15</voc0:title>
<voc0:link>http://feeds.feedburner.com/BenHammersleysDangerousPrecedent?m=1</voc0:link>
</rdf:Description>
</rdf:RDF>
--match
Content-type: text/xml; charset=UTF-8
<rdf:RDF
xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'
xmlns:rdfstore='http://rdfstore.sourceforge.net/contexts/'
xmlns:voc0='http://purl.org/rss/1.0/'>
<rdf:Description rdf:about='rdf:resource:rdfstore456'>
<voc0:title>Releasing RadioPod</voc0:title>
<voc0:link>http://feeds.feedburner.com/BenHammersleysDangerousPrecedent?m=178</voc0:link>
</rdf:Description>
</rdf:RDF>
--match--
<rdf:RDF
xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'
xmlns:rdfstore='http://rdfstore.sourceforge.net/contexts/'
xmlns:voc0='http://purl.org/rss/1.0/'>
<rdf:Description rdf:about='rdf:resource:rdfstoreS789'>
<rdf:type rdf:resource='http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq' />
<rdf:type rdf:resource='x-urn:cpan:ascope:apache-xpointer-rdql:range'/ >
<rdf:li rdf:resource='http://www.w3.org/1999/02/22-rdf-syntax-ns#_1' />
<rdf:li rdf:resource='http://www.w3.org/1999/02/22-rdf-syntax-ns#_2' />
</rdf:Description>
<rdf:Description rdf:about='http://www.w3.org/1999/02/22-rdf-syntax-ns#_1'>
<voc0:title>The Daily Cartoon for November 15</voc0:title>
<voc0:link>http://feeds.feedburner.com/BenHammersleysDangerousPrecedent?m=1</voc0:link>
</rdf:Description>
<rdf:Description rdf:about='http://www.w3.org/1999/02/22-rdf-syntax-ns#_2'>
<voc0:title>Releasing RadioPod</voc0:title>
<voc0:link>http://feeds.feedburner.com/BenHammersleysDangerousPrecedent?m=178</voc0:link>
</rdf:Description>
</rdf:RDF>
Required
If set to On then the handler will check for CGI parameters as well as HTTP headers. CGI parameters are checked only if no matching HTTP header is present.
Case insensitive.
The name of the CGI parameter to check for an RDQL range.
Default is range
The name of the CGI parameter to list one or more acceptable content types for a response.
Default is accept
This handler will work with both mod_perl 1.x and mod_perl 2.x.
1.1
$Date: 2004/11/16 04:33:33 $
Aaron Straup Cope <ascope@cpan.org>
Copyright (c) 2004 Aaron Straup Cope. All rights reserved.
This is free software, you may use it and distribute it under the same terms as Perl itself.
| Apache-XPointer-RDQL documentation | view source | Contained in the Apache-XPointer-RDQL distribution. |