summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2008-12-05 10:33:25 -0500
committerEvan Prodromou <evan@controlyourself.ca>2008-12-05 10:33:25 -0500
commitb5956e5b7646b2d54f8d36996ae4dea9eae8dda5 (patch)
tree3b28909d06cc1893b08bba3893779933c23c388e /lib
parent33a054ccc03eba0caff95c04ddf99d0ac6b7ac19 (diff)
fixup the problems with the repo patch
darcs-hash:20081205153325-5ed1f-f663ec459d8d5067505ff28be39dee8c382e5814.gz
Diffstat (limited to 'lib')
-rw-r--r--lib/rssaction.php9
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/rssaction.php b/lib/rssaction.php
index aa6e3daee..f4b5b62d8 100644
--- a/lib/rssaction.php
+++ b/lib/rssaction.php
@@ -29,7 +29,7 @@ class Rss10Action extends Action {
function is_readonly() {
return true;
}
-
+
function handle($args) {
parent::handle($args);
$limit = (int) $this->trimmed('limit');
@@ -158,9 +158,8 @@ class Rss10Action extends Action {
foreach ($this->creators as $uri => $profile) {
$id = $profile->id;
$nickname = $profile->nickname;
-
common_element_start('sioc:User', array('rdf:about' => $uri));
- common_element('foaf:nick', NULL, $nickname);
+ common_element('foaf:nick', NULL, $nickname);
if ($profile->fullname) {
common_element('foaf:name', NULL, $profile->fullname);
}
@@ -170,10 +169,9 @@ class Rss10Action extends Action {
common_element_end('sioc:User');
}
}
-
+
function init_rss() {
$channel = $this->get_channel();
-
header('Content-Type: application/rdf+xml');
common_start_xml();
@@ -194,7 +192,6 @@ class Rss10Action extends Action {
'xmlns:laconica' =>
'http://laconi.ca/ont/',
'xmlns' => 'http://purl.org/rss/1.0/'));
-
common_element_start('sioc:Site', array('rdf:about' => common_root_url()));
common_element('sioc:name', NULL, common_config('site', 'name'));
common_element_start('sioc:container_of');