コード例 #1
0
ファイル: wiki.py プロジェクト: tws0002/stalker
    def __init__(self, title='', content='', project=None, **kwargs):
        kwargs['project'] = project
        super(Page, self).__init__(**kwargs)
        ProjectMixin.__init__(self, **kwargs)

        self.title = title
        self.content = content
コード例 #2
0
ファイル: wiki.py プロジェクト: tonybarbieri/stalker
    def __init__(self, title='', content='', project=None, **kwargs):
        kwargs['project'] = project
        super(Page, self).__init__(**kwargs)
        ProjectMixin.__init__(self, **kwargs)

        self.title = title
        self.content = content
コード例 #3
0
ファイル: test_projectMixin.py プロジェクト: sgodanas/stalker
 def __init__(self, **kwargs):
     super(ProjMixClass, self).__init__(**kwargs)
     ProjectMixin.__init__(self, **kwargs)
コード例 #4
0
 def __init__(self, **kwargs):
     super(ProjMixClass, self).__init__(**kwargs)
     ProjectMixin.__init__(self, **kwargs)