]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Add id and updated elements to atom source
authorZach Copley <zach@status.net>
Fri, 12 Mar 2010 00:36:26 +0000 (00:36 +0000)
committerZach Copley <zach@status.net>
Fri, 12 Mar 2010 00:36:26 +0000 (00:36 +0000)
classes/Notice.php
classes/User_group.php

index 4c7e6ab4b708e7452e34dbc338fa0161cd919a83..40a6263e5240cc1303e90f2614a6073b9cd1e692 100644 (file)
@@ -1128,6 +1128,7 @@ class Notice extends Memcached_DataObject
 
         if ($source) {
             $xs->elementStart('source');
+            $xs->element('id', null, $profile->profileurl);
             $xs->element('title', null, $profile->nickname . " - " . common_config('site', 'name'));
             $xs->element('link', array('href' => $profile->profileurl));
             $user = User::staticGet('id', $profile->id);
@@ -1143,6 +1144,7 @@ class Notice extends Memcached_DataObject
             }
 
             $xs->element('icon', null, $profile->avatarUrl(AVATAR_PROFILE_SIZE));
+            $xs->element('updated', null, common_date_w3dtf($this->created));
         }
 
         if ($source) {
index 0460c9870a34cb318ed1c21a34429ea46059720e..f295945025c1c96769048607ff2e5757767fd817 100644 (file)
@@ -295,7 +295,7 @@ class User_group extends Memcached_DataObject
         }
 
         // If not, check local groups.
-    
+
         $group = Local_group::staticGet('nickname', $nickname);
         if (!empty($group)) {
             return User_group::staticGet('id', $group->group_id);
@@ -371,11 +371,10 @@ class User_group extends Memcached_DataObject
 
         if ($source) {
             $xs->elementStart('source');
+            $xs->element('id', null, $this->permalink());
             $xs->element('title', null, $profile->nickname . " - " . common_config('site', 'name'));
             $xs->element('link', array('href' => $this->permalink()));
-        }
-
-        if ($source) {
+            $xs->element('updated', null, $this->modified);
             $xs->elementEnd('source');
         }
 
@@ -455,7 +454,7 @@ class User_group extends Memcached_DataObject
         $group = new User_group();
 
         $group->query('BEGIN');
-        
+
         if (empty($uri)) {
             // fill in later...
             $uri = null;