1,885
edits
Changes
RDF
,no edit summary
RDF is the '''Resource Development Description Framework'''. It is a way of organizing multiple, different internet resources. It describes what they are (URL, mailbox, mail message, newsgroup, etc), and how they relate to each other. Also, one RDF can dynamically update another RDF over a network.
RDF is a general way of describing data that will give more powerto applications that use that data. This is done by reducing all collections into nuggets of information called ''triples this metadata''. It is intended for situations where information needs to displayed '''and''' processed by an application. RDF was originally based on identifying things using Web identifiers called URI's (Uniform Resource Identifiers). It can now use URI, literal, or blanks.
=Links= *Resource Development Description Framework on Mozilla.org
:http://www.mozilla.org/rdf/doc/
:http://developer.mozilla.org/en/docs/RDF_in_Fifty_Words_or_Less
Example based on http://developer.mozilla.org/en/docs/RDF_in_Fifty_Words_or_Less
= Code =
"The title of this resource is 'Tony Benn'" <PRE> <rdf:RDF xmlns:rdf=artifacts"http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> <rdf:Description rdf:about="http://en.wikipedia.org/wiki/Tony_Benn"> <dc:title>Tony Benn</dc:title> <dc:publisher>Wikipedia</dc:publisher> </rdf:Description> </rdf:RDF> </PRE> code example from wikipedia =Artifacts= *RDF Specifications::http://www.w3.org/TR/rdf-syntax-grammar/ =Comunications= *Mozilla Developer's Newsgroup for RDF:[http://groups.google.ca/group/mozilla.dev.tech.rdf?lnk=srg&hl=en mozilla.dev.tech.rdf] *Netscape's Public Mozilla channel for RDF::[http://groups.google.ca/group/netscape.public.mozilla.rdf?lnk=sg&hl=en netscape.public.mozilla.rdf]