Exemplo n.º 1
0
 def __init__( self, rh):
     WPDecorated.__init__(self, rh)#, True)
Exemplo n.º 2
0
 def __init__(self, rh):
     WPDecorated.__init__(self, rh)
Exemplo n.º 3
0
 def __init__(self, rh, error):
     WPDecorated.__init__(self, rh)
     self._error = error
Exemplo n.º 4
0
 def __init__(self, rh, error):
     WPDecorated.__init__(self, rh)
     self._error = error
Exemplo n.º 5
0
 def __init__(self, rh, msg=""):
     self._msg = msg
     WPDecorated.__init__(self, rh)
Exemplo n.º 6
0
 def __init__(self, rh, ex, params):
     WPDecorated.__init__(self, rh)
     self._ex = ex
     self._RHParams = params
Exemplo n.º 7
0
 def __init__(self, rh, ex, params):
     WPDecorated.__init__(self, rh)
     self._ex = ex
     self._RHParams = params
Exemplo n.º 8
0
Arquivo: views.py Projeto: fph/indico
 def getCSSFiles(self):
     return WPDecorated.getCSSFiles(self) + self._asset_env['news_sass'].urls()
Exemplo n.º 9
0
Arquivo: views.py Projeto: fph/indico
 def _getTitle(self):
     return WPDecorated._getTitle(self) + ' - ' + _("News")
Exemplo n.º 10
0
 def __init__(self, rh, msg=""):
     self._msg = msg
     WPDecorated.__init__(self, rh)
Exemplo n.º 11
0
 def __init__(self, message, description):
     WPDecorated.__init__(self, None)
     self._message = message
     self._description = description
Exemplo n.º 12
0
 def _getTitle(self):
     return WPDecorated._getTitle(self) + ' - ' + _("News")
Exemplo n.º 13
0
 def getCSSFiles(self):
     return WPDecorated.getCSSFiles(self) + self._asset_env['news_sass'].urls()
Exemplo n.º 14
0
Arquivo: error.py Projeto: fph/indico
 def __init__(self, message, description):
     WPDecorated.__init__(self, None)
     self._message = message
     self._description = description