interfaces.py
branchtls-sprint
changeset 1263 01152fffd593
parent 1006 92a0601b2523
parent 1199 7fa66717175b
child 1553 3f91ef2397d0
--- a/interfaces.py	Mon Apr 06 12:37:45 2009 +0200
+++ b/interfaces.py	Tue Apr 07 09:30:23 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"""
+
+