The taxonomy module is a RSS 1.0 module and a RDF application enabling the identification of topics covered by a RSS channel or item.
Copyright © 2000, 2001 by the Authors.
Permission to use, copy, modify and distribute the RSS 1.0 Specification Proposal and its accompanying documentation for any purpose and without fee is hereby granted in perpetuity, provided that the above copyright notice and this paragraph appear in all copies. The copyright holders make no representation about the suitability of the specification for any purpose. It is provided "as is" without expressed or implied warranty.
This copyright applies to the RSS 1.0 Specification Proposal and accompanying documentation and does not extend to the RSS format itself.
Affords the ability to classify channels and items under one or more taxonomic schemes.
First level element:
Second level element (may be included in channel, item or taxo:topic):
<?xml version="1.0"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" 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> ... </channel> <item rdf:about="http://c.moreover.com/click/here.pl?r123" position="1"> <title>XML: A Disruptive Technology</title> <link>http://c.moreover.com/click/here.pl?r123</link> <description> XML is placing increasingly heavy loads on the existing technical infrastructure of the Internet. </description> <taxo:topics> <rdf:Bag> <rdf:li resource="http://meerkat.oreillynet.com/?c=cat23"> <rdf:li resource="http://meerkat.oreillynet.com/?c=47"> <rdf:li resource="http://dmoz.org/Computers/Data_Formats/Markup_Languages/XML/"> </rdf:Bag> </taxo:topics> </item> <taxo:topic rdf:about="http://meerkat.oreillynet.com/?c=cat23"> <taxo:link>http://meerkat.oreillynet.com/?c=cat23</taxo:link> </taxo:topic> <taxo:topic rdf:about="http://dmoz.org/Computers/Data_Formats/Markup_Languages/XML/"> <taxo:link>http://dmoz.org/Computers/Data_Formats/Markup_Languages/XML/</taxo:link> <taxo:topics> <rdf:Bag> <rdf:li resource="http://meerkat.oreillynet.com/?c=cat23"> <rdf:li resource="http://dmoz.org/Computers/Data_Formats/Markup_Languages/SGML/"> <rdf:li resource="http://dmoz.org/Computers/Programming/Internet/"> </rdf:Bag> </taxo:topics> </taxo:topics> </rdf:RDF>
<?xml version="1.0"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" 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> ... </channel> <item rdf:about="http://c.moreover.com/click/here.pl?r123" position="1"> <title>XML: A Disruptive Technology</title> <link>http://c.moreover.com/click/here.pl?r123</link> <description> XML is placing increasingly heavy loads on the existing technical infrastructure of the Internet. </description> <taxo:topics> <rdf:Bag> <rdf:li resource="http://meerkat.oreillynet.com/?c=cat23"> <rdf:li resource="http://meerkat.oreillynet.com/?c=47"> <rdf:li resource="http://dmoz.org/Computers/Data_Formats/Markup_Languages/XML/"> </rdf:Bag> </taxo:topics> </item> <taxo:topic rdf:about="http://meerkat.oreillynet.com/?c=cat23"> <taxo:link>http://meerkat.oreillynet.com/?c=cat23</taxo:link> <dc:title>Data: XML</taxo:title> <dc:description>A Meerkat channel</dc:description> </taxo:topic> <taxo:topic rdf:about="http://dmoz.org/Computers/Data_Formats/Markup_Languages/XML/"> <taxo:link>http://dmoz.org/Computers/Data_Formats/Markup_Languages/XML/</taxo:link> <dc:title>XML</taxo:title> <dc:subject>XML</dc:subject> <dc:description>DMOZ category</dc:description> <taxo:topics> <rdf:Bag> <rdf:li resource="http://meerkat.oreillynet.com/?c=cat23"> <rdf:li resource="http://dmoz.org/Computers/Data_Formats/Markup_Languages/SGML/"> <rdf:li resource="http://dmoz.org/Computers/Programming/Internet/"> </rdf:Bag> </taxo:topics> </taxo:topics> </rdf:RDF>