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));
}
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');
}
'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/'));
}