merge 894685124c68
authorLaure Bourgois <Laure.Bourgois@logilab.fr>
Wed, 01 Apr 2009 17:26:36 +0200
branch894685124c68
changeset 1200 0d12d4371d11
parent 1199 7fa66717175b (diff)
parent 1198 9df49357b0eb (current diff)
child 1202 3a5d622f166f
child 1213 06789a89f91f
merge
--- a/interfaces.py	Wed Apr 01 15:15:06 2009 +0200
+++ b/interfaces.py	Wed Apr 01 17:26:36 2009 +0200
@@ -246,12 +246,26 @@
         """return content entity"""
 
     def isioc_container(self):
-        """return container entity"""           
+        """return container entity"""
+
+    def isioc_type(self):
+        """return container type (post, BlogPost, MailMessage)"""
+
+    def isioc_replies(self):
+        """return replies items"""       
+
+    def isioc_topics(self):
+        """return topics items"""
             
 class ISiocContainer(Interface):
     """interface for entities (which are container
     in sioc specification) with sioc views"""
 
     def isioc_type(self):
-        """return container type (forum, weblog, mailinglist)"""
+        """return container type (forum, Weblog, MailingList)"""
+
+    def isioc_items(self):
+        """return contained items"""
+
+