diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-12-05 10:24:45 -0500 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-12-05 10:24:45 -0500 |
commit | 3568b567936bd579664f6c25ea030fe9333a5d50 (patch) | |
tree | e5b4f66a8e185ccffe93979d9a14c2fb7d839d51 /lib | |
parent | 0a4905035a9aae78585b41021da311ca7ee5a7a7 (diff) |
use content namespace to add HTML to the notice output
darcs-hash:20081205152445-84dde-62b3560fae1b1505528826e91939af89b8afd971.gz
Diffstat (limited to 'lib')
-rw-r--r-- | lib/rssaction.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/rssaction.php b/lib/rssaction.php index 0152f25bc..aa6e3daee 100644 --- a/lib/rssaction.php +++ b/lib/rssaction.php @@ -132,6 +132,24 @@ class Rss10Action extends Action { common_element('sioc:has_creator', array('rdf:resource' => $creator_uri)); common_element('laconica:postIcon', array('rdf:resource' => common_profile_avatar_url($profile))); common_element('cc:licence', array('rdf:resource' => common_config('license', 'url'))); + common_element_start('content:items'); + common_element_start('rdf:Bag'); + common_element_start('rdf:li'); + common_element_start('content:item'); + common_element('content:format', array('rdf:resource' => + 'http://www.w3.org/1999/xhtml')); + common_text($notice->rendered); + common_element_end('content:item'); + common_element_end('rdf:li'); + common_element_start('rdf:li'); + common_element_start('content:item'); + common_element('content:format', array('rdf:resource' => + 'http://www.isi.edu/in-notes/iana/assignments/media-types/text/plain')); + common_text(common_xml_safe_str($notice->content)); + common_element_end('content:item'); + common_element_end('rdf:li'); + common_element_end('rdf:Bag'); + common_element_end('content:items'); common_element_end('item'); $this->creators[$creator_uri] = $profile; } @@ -165,6 +183,8 @@ class Rss10Action extends Action { 'http://purl.org/dc/elements/1.1/', 'xmlns:cc' => 'http://web.resource.org/cc/', + 'xmlns:content' => + 'http://purl.org/rss/1.0/modules/content/', 'xmlns:foaf' => 'http://xmlns.com/foaf/0.1/', 'xmlns:sioc' => |