add cc:license to RSS streams

darcs-hash:20080608201917-84dde-ba5c877c01c0200f379c4433799b1f752a9817df.gz
This commit is contained in:
Evan Prodromou 2008-06-08 16:19:17 -04:00
parent daf5b82183
commit 53ae2cc3f9
1 changed files with 5 additions and 0 deletions

View File

@ -76,6 +76,7 @@ class Rss10Action extends Action {
common_element('title', NULL, $channel['title']);
common_element('link', NULL, $channel['link']);
common_element('description', NULL, $channel['description']);
common_element('cc:licence', NULL, $config['license']['url']);
if ($image) {
common_element('image', array('rdf:resource' => $image));
@ -107,12 +108,14 @@ class Rss10Action extends Action {
}
function show_item($notice) {
global $config;
$nurl = common_local_url('shownotice', array('notice' => $notice->id));
common_element_start('item', array('rdf:about' => $notice->uri));
common_element('title', NULL, $notice->created);
common_element('link', NULL, $nurl);
common_element('description', NULL, $notice->content);
common_element('dc:date', NULL, common_date_w3dtf($notice->created));
common_element('cc:licence', NULL, $config['license']['url']);
common_element_end('item');
}
@ -124,6 +127,8 @@ class Rss10Action extends Action {
'http://www.w3.org/1999/02/22-rdf-syntax-ns#',
'xmlns:dc' =>
'http://purl.org/dc/elements/1.1/',
'xmlns:cc' =>
'http://web.resource.org/cc/',
'xmlns' => 'http://purl.org/rss/1.0/'));
}