Author: hsaputra
Date: Sat Jun 16 01:21:09 2012
New Revision: 1350837
URL: http://svn.apache.org/viewvc?rev=1350837&view=rev
Log:
Update activity entry fields
Modified:
shindig/trunk/config/container.js
shindig/trunk/java/social-api/src/main/java/org/apache/shindig/social/opensocial/model/ActivityEntry.java
Modified: shindig/trunk/config/container.js
URL:
http://svn.apache.org/viewvc/shindig/trunk/config/container.js?rev=1350837&r1=1350836&r2=1350837&view=diff
==============================================================================
--- shindig/trunk/config/container.js (original)
+++ shindig/trunk/config/container.js Sat Jun 16 01:21:09 2012
@@ -287,7 +287,7 @@
"streamFaviconUrl", "streamSourceUrl", "streamTitle",
"streamUrl", "templateParams", "title",
"url", "userId"],
"activityEntry" : ["actor", "content", "generator", "icon", "id",
"object", "published", "provider", "target",
- "title", "updated", "url", "verb"],
+ "title", "updated", "url", "verb", "openSocial",
"extensions"],
"album" : ["id", "thumbnailUrl", "title", "description", "location",
"ownerId"],
"mediaItem" : ["album_id", "created", "description", "duration",
"file_size", "id", "language", "last_updated",
"location", "mime_type", "num_comments", "num_views",
"num_votes", "rating", "start_time",
Modified:
shindig/trunk/java/social-api/src/main/java/org/apache/shindig/social/opensocial/model/ActivityEntry.java
URL:
http://svn.apache.org/viewvc/shindig/trunk/java/social-api/src/main/java/org/apache/shindig/social/opensocial/model/ActivityEntry.java?rev=1350837&r1=1350836&r2=1350837&view=diff
==============================================================================
---
shindig/trunk/java/social-api/src/main/java/org/apache/shindig/social/opensocial/model/ActivityEntry.java
(original)
+++
shindig/trunk/java/social-api/src/main/java/org/apache/shindig/social/opensocial/model/ActivityEntry.java
Sat Jun 16 01:21:09 2012
@@ -49,7 +49,8 @@ public interface ActivityEntry extends C
UPDATED("updated"),
URL("url"),
VERB("verb"),
- OPENSOCIAL("openSocial");
+ OPENSOCIAL("openSocial"),
+ EXTENSIONS("extensions");
// The name of the JSON element
private final String jsonString;