Difference between revisions of "RSS 1.0"
(New page: {{incomplete}} {{Filetype| license_url=True| web_statement=True| more_permissions=True }} RSS 1.0 is a syndication (feed) format. The [http://web.resource.org/rss/1.0/spec specifica...) |
|||
Line 8: | Line 8: | ||
== Specifying a License == | == Specifying a License == | ||
+ | |||
+ | RSS 1.0 is encoded as RDF/XML. A license may applied to a channel, entry or image by adding an appropriate triple. The predicate should be http://creativecommons.org/ns#license. Older deployments may exist which use http://web.resource.org/cc/ as the root of the Creative Commons namespace. | ||
+ | |||
+ | The following example shows licensing at both the channel and entry levels. | ||
+ | |||
+ | <code><pre> | ||
+ | <?xml version="1.0" encoding="utf-8"?> | ||
+ | |||
+ | <rdf:RDF | ||
+ | xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | ||
+ | xmlns:cc="http://creativecommons.org/ns#" | ||
+ | xmlns="http://purl.org/rss/1.0/" | ||
+ | > | ||
+ | |||
+ | <channel rdf:about="http://meerkat.oreillynet.com/?_fl=rss1.0"> | ||
+ | <title>Meerkat</title> | ||
+ | <link>http://meerkat.oreillynet.com</link> | ||
+ | <description>Meerkat: An Open Wire Service</description> | ||
+ | <cc:license rdf:resource="http://www.creativecommons.org/licenses/example1" /> | ||
+ | |||
+ | <items> | ||
+ | <rdf:Seq> | ||
+ | <rdf:li resource="http://c.moreover.com/click/here.pl?r123" /> | ||
+ | </rdf:Seq> | ||
+ | </items> | ||
+ | |||
+ | </channel> | ||
+ | |||
+ | <item rdf:about="http://c.moreover.com/click/here.pl?r123"> | ||
+ | <title>XML: A Disruptive Technology</title> | ||
+ | <link>http://c.moreover.com/click/here.pl?r123</link> | ||
+ | <cc:license rdf:resource="http://www.creativecommons.org/licenses/example2" /> | ||
+ | </item> | ||
+ | </rdf:RDF> | ||
+ | </pre></code> | ||
== Additional Metadata == | == Additional Metadata == | ||
+ | |||
+ | {{incomplete}} |
Revision as of 18:41, 10 October 2007
File Type Information | ||
---|---|---|
Supports embedding license URL: | supports_license_url::True | |
Supports embedding web statement: | supports_web_statement::True | |
Supports embedding more permissions: | supports_more_permissions::True | |
Metadata Location: | [[Metadata location::{{{metadata_location}}}]] | (unknown) }} | |
Metadata Format: | [[Metadata format::{{{metadata_format}}}]] | (unknown) }} |
RSS 1.0 is a syndication (feed) format. The specification was published December 6, 2000. A module specification has been published for inclusion of licensing information in the feed.
Specifying a License
RSS 1.0 is encoded as RDF/XML. A license may applied to a channel, entry or image by adding an appropriate triple. The predicate should be http://creativecommons.org/ns#license. Older deployments may exist which use http://web.resource.org/cc/ as the root of the Creative Commons namespace.
The following example shows licensing at both the channel and entry levels.
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns="http://purl.org/rss/1.0/"
>
<channel rdf:about="http://meerkat.oreillynet.com/?_fl=rss1.0">
<title>Meerkat</title>
<link>http://meerkat.oreillynet.com</link>
<description>Meerkat: An Open Wire Service</description>
<cc:license rdf:resource="http://www.creativecommons.org/licenses/example1" />
<items>
<rdf:Seq>
<rdf:li resource="http://c.moreover.com/click/here.pl?r123" />
</rdf:Seq>
</items>
</channel>
<item rdf:about="http://c.moreover.com/click/here.pl?r123">
<title>XML: A Disruptive Technology</title>
<link>http://c.moreover.com/click/here.pl?r123</link>
<cc:license rdf:resource="http://www.creativecommons.org/licenses/example2" />
</item>
</rdf:RDF>