RDF Site Summary 1.0 Modules: mod_wiki

Authors

Laurens Pit, OpenWiki

Version

Latest Version: http://openwiki.com/mod_wiki.html

DRAFT 0.1 2001-11-14

Status

Proposed

Rights

Copyright © 2001 by the Author.

Permission to use, copy, modify and distribute the RDF Site Summary 1.0 Specification 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 RDF Site Summary 1.0 Specification and accompanying documentation and does not extend to the RSS format itself.

Description

For those who like to track the recently changed pages of various wiki sources, additional fields are needed. mod_wiki adds those fields that are needed. These fields are based on what is commonly shown on RecentChanges pages of many wiki sites.

The mod_wiki RSS 1.0 module augments the RSS core and Dublin Core module's metadata with item-level elements specific to wiki data.

Namespace Declarations

Model

<item> Elements:

Example

<?xml version="1.0" encoding="ISO-8859-1"?>

 <rdf:RDF
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
     xmlns="http://purl.org/rss/1.0/"
     xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:wiki="http://purl.org/rss/1.0/modules/wiki/"
 >
<channel rdf:about="http://openwiki.com">
    <title>SandBox</title>
    <link>http://openwiki.com</link>
    <description>Bringing XML to the wiki world.</description>
</channel>

<item>
    <title>SandBox</title>
    <link>http://openwiki.com/?SandBox</link>
    <description>Added example of numbered lists</description>
    <dc:contributor>Mary McConnel</dc:contributor>
    <wiki:contributorURL>http://openwiki.com/?MaryMcConnel</wiki:contributorURL>
    <wiki:diffURL>http://openwiki.com/?p=SandBox&amp;a=diff</wiki:diffURL>
    <wiki:status>updated</wiki:status>
    <wiki:changes>23</wiki:changes>
    <wiki:changesURL>http://openwiki.com/?p=SandBox&amp;a=changes</wiki:changesURL>
    <wiki:minoredit/>
</item>

</rdf:RDF>