コード例 #1
0
    def __init__(self, rh, material):
        self._material = self._target = material

        WPConferenceDefaultDisplayBase.__init__(self, rh,
                                                self._material.getConference())

        self._navigationTarget = self._material
コード例 #2
0
ファイル: pages.py プロジェクト: marksteward/indico
 def __init__(self, rh, conference):
     WPConferenceDefaultDisplayBase.__init__(self, rh, conference)
     WPCollaborationBase.__init__(self)
コード例 #3
0
ファイル: pages.py プロジェクト: marksteward/indico
 def __init__(self, rh, conf, authKey):
     WPConferenceDefaultDisplayBase.__init__(self, rh, conf)
     WPCollaborationBase.__init__(self)
     self.authKey = authKey
コード例 #4
0
ファイル: views.py プロジェクト: OmeGak/indico
 def __init__(self, rh, conference, **kwargs):
     WPConferenceDefaultDisplayBase.__init__(self, rh, conference, **kwargs)
     self.page = kwargs['page']
コード例 #5
0
ファイル: pages.py プロジェクト: sylvestre/indico
 def __init__(self, rh, conf):
     WPConferenceDefaultDisplayBase.__init__(self, rh, conf)
     self._conf = conf
     self._aw = rh.getAW()
コード例 #6
0
ファイル: authors.py プロジェクト: lukasnellen/indico
 def __init__(self, rh, conf, authId):
     WPConferenceDefaultDisplayBase.__init__(self, rh, conf)
     self._authorId = authId
コード例 #7
0
ファイル: material.py プロジェクト: bubbas/indico
 def __init__(self, rh, material):
     self._material = self._target = material
     WPConferenceDefaultDisplayBase.__init__(self, rh, self._material.getConference())
     self._navigationTarget = self._material
コード例 #8
0
ファイル: views.py プロジェクト: pmart123/indico
 def __init__(self, rh, conference, **kwargs):
     WPConferenceDefaultDisplayBase.__init__(self, rh, conference, **kwargs)
     self.page = kwargs['page']
コード例 #9
0
    def __init__(self, rh, file):
        self._file = file

        WPConferenceDefaultDisplayBase.__init__(self, rh,
                                                self._file.getConference())
        self._navigationTarget = file
コード例 #10
0
 def __init__(self, rh, link):
     self._link = link
     WPConferenceDefaultDisplayBase.__init__( self, rh, self._link.getConference() )
     self._navigationTarget = link
コード例 #11
0
ファイル: links.py プロジェクト: aninhalacerda/indico
 def __init__(self, rh, link):
     self._link = link
     WPConferenceDefaultDisplayBase.__init__(self, rh, self._link.getConference())
     self._navigationTarget = link
コード例 #12
0
 def __init__(self, rh, conf, authKey):
     WPConferenceDefaultDisplayBase.__init__(self, rh, conf)
     self.authKey = authKey
コード例 #13
0
 def __init__(self, rh, contrib, authId):
     WPConferenceDefaultDisplayBase.__init__(self, rh,
                                             contrib.getConference())
     self._authorId = authId
     self._contrib = contrib
コード例 #14
0
ファイル: authors.py プロジェクト: lukasnellen/indico
 def __init__(self, rh, conf, authId):
     WPConferenceDefaultDisplayBase.__init__(self, rh, conf)
     self._authorId = authId
コード例 #15
0
ファイル: pages.py プロジェクト: bubbas/indico
 def __init__(self, rh, conf):
     WPConferenceDefaultDisplayBase.__init__(self, rh, conf)
     self._conf = conf
     self._aw = rh.getAW()
コード例 #16
0
ファイル: files.py プロジェクト: bubbas/indico
 def __init__(self, rh, file):
     self._file = file
     
     WPConferenceDefaultDisplayBase.__init__( self, rh, self._file.getConference() )
     self._navigationTarget = file
コード例 #17
0
ファイル: authors.py プロジェクト: bubbas/indico
 def __init__(self, rh, contrib, authId):
     WPConferenceDefaultDisplayBase.__init__(self, rh, contrib.getConference())
     self._authorId = authId
     self._contrib = contrib
コード例 #18
0
 def __init__(self, rh, conference):
     WPConferenceDefaultDisplayBase.__init__(self, rh, conference)
     WPCollaborationBase.__init__(self)