예제 #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
 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
 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
 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)