コード例 #1
0
ファイル: Weblog.py プロジェクト: Python3pkg/Products.Quills
 def getTopicById(self, id):
     """See IWeblog.
     """
     topic_container = TopicContainer('topics').__of__(self)
     return topic_container.getTopicById(id)
コード例 #2
0
 def getTopicById(self, id):
     """See IWeblog.
     """
     topic_container = TopicContainer('topics').__of__(self.context)
     return topic_container.getTopicById(id)
コード例 #3
0
ファイル: Weblog.py プロジェクト: collective/Products.Quills
 def getTopics(self):
     """See IWeblog.
     """
     topic_container = TopicContainer('topics').__of__(self)
     return topic_container.getTopics()