当前位置: 首页>>代码示例>>Python>>正文


Python base.WPDecorated类代码示例

本文整理汇总了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
开发者ID:MichelCordeiro,项目名称:indico,代码行数:3,代码来源:errors.py

示例2: __init__

 def __init__(self, rh, ex, params):
     WPDecorated.__init__(self, rh)
     self._ex = ex
     self._RHParams = params
开发者ID:VishrutMehta,项目名称:indico,代码行数:4,代码来源:error.py

示例3: _getTitle

 def _getTitle(self):
     return WPDecorated._getTitle(self) + ' - ' + _("News")
开发者ID:fph,项目名称:indico,代码行数:2,代码来源:views.py

示例4: getCSSFiles

 def getCSSFiles(self):
     return WPDecorated.getCSSFiles(self) + self._asset_env['news_sass'].urls()
开发者ID:fph,项目名称:indico,代码行数:2,代码来源:views.py

示例5: __init__

 def __init__(self, rh, msg=""):
     self._msg = msg
     WPDecorated.__init__(self, rh)
开发者ID:jbenito3,项目名称:indico,代码行数:3,代码来源:errors.py

示例6: __init__

 def __init__(self, message, description):
     WPDecorated.__init__(self, None)
     self._message = message
     self._description = description
开发者ID:fph,项目名称:indico,代码行数:4,代码来源:error.py


注:本文中的MaKaC.webinterface.pages.base.WPDecorated类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。