]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
HTML output in RSS 2.0 and Atom
authorEvan Prodromou <evan@prodromou.name>
Fri, 5 Dec 2008 16:02:05 +0000 (11:02 -0500)
committerEvan Prodromou <evan@prodromou.name>
Fri, 5 Dec 2008 16:02:05 +0000 (11:02 -0500)
darcs-hash:20081205160205-84dde-68363153ee7f4f75a7c25ca6546816b648406b8b.gz

lib/twitterapi.php

index e2b0ba164d016edf947f734a8f8a3b79eefc44b3..bf99e8052781809d2da535d7f48c0c2f762f1e20 100644 (file)
@@ -92,8 +92,8 @@ class TwitterapiAction extends Action {
                $server = common_config('site', 'server');
                $entry = array();
 
-               $entry['content'] = $profile->nickname . ': ' . common_xml_safe_str($notice->content);
-               $entry['title'] = $entry['content'];
+               $entry['content'] = common_xml_safe_str($notice->rendered);
+               $entry['title'] = $profile->nickname . ': ' . common_xml_safe_str($notice->content);
                $entry['link'] = common_local_url('shownotice', array('notice' => $notice->id));
                $entry['published'] = common_date_iso8601($notice->created);
                $entry['id'] = "tag:$server,2008:$entry[link]";
@@ -116,7 +116,7 @@ class TwitterapiAction extends Action {
                        $message->getFrom()->nickname, $message->getTo()->nickname);
 
                $entry['content'] = common_xml_safe_str($message->content);
-               $entry['link'] = $message->uri;
+               $entry['link'] = common_local_url('showmessage', array('message' => $message->id));
                $entry['published'] = common_date_iso8601($message->created);
                $entry['id'] = "tag:$server,2008:$entry[link]";
                $entry['updated'] = $entry['published'];
@@ -191,7 +191,7 @@ class TwitterapiAction extends Action {
        function show_twitter_atom_entry($entry) {
            common_element_start('entry');
                common_element('title', NULL, $entry['title']);
-               common_element('content', array('type' => 'html'), $entry['title']);
+               common_element('content', array('type' => 'html'), $entry['content']);
                common_element('id', NULL, $entry['id']);
                common_element('published', NULL, $entry['published']);
                common_element('updated', NULL, $entry['updated']);
@@ -288,7 +288,6 @@ class TwitterapiAction extends Action {
                common_element('language', NULL, 'en-us');
                common_element('ttl', NULL, '40');
 
-
                if (is_array($notice)) {
                        foreach ($notice as $n) {
                                $entry = $this->twitter_rss_entry_array($n);