本文整理汇总了Python中MaKaC.webinterface.pages.base.WPDecorated类的典型用法代码示例。如果您正苦于以下问题:Python WPDecorated类的具体用法?Python WPDecorated怎么用?Python WPDecorated使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了WPDecorated类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
def __init__(self, rh, error):
WPDecorated.__init__(self, rh)
self._error = error
示例2: __init__
def __init__(self, rh, ex, params):
WPDecorated.__init__(self, rh)
self._ex = ex
self._RHParams = params
示例3: _getTitle
def _getTitle(self):
return WPDecorated._getTitle(self) + ' - ' + _("News")
示例4: getCSSFiles
def getCSSFiles(self):
return WPDecorated.getCSSFiles(self) + self._asset_env['news_sass'].urls()
示例5: __init__
def __init__(self, rh, msg=""):
self._msg = msg
WPDecorated.__init__(self, rh)
示例6: __init__
def __init__(self, message, description):
WPDecorated.__init__(self, None)
self._message = message
self._description = description