本文整理汇总了Python中trac.ticket.web_ui.TicketModule.get_action_control方法的典型用法代码示例。如果您正苦于以下问题:Python TicketModule.get_action_control方法的具体用法?Python TicketModule.get_action_control怎么用?Python TicketModule.get_action_control使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类trac.ticket.web_ui.TicketModule
的用法示例。
在下文中一共展示了TicketModule.get_action_control方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _update_controls
# 需要导入模块: from trac.ticket.web_ui import TicketModule [as 别名]
# 或者: from trac.ticket.web_ui.TicketModule import get_action_control [as 别名]
def _update_controls(self, req, action_controls, actions, tkt):
"""Given list of actions, update action_controls w/all requiring input.
control[2] represents HTML inputs required before an action can be
completed. If it exists, we make a note of the action operation."""
tm = TicketModule(self.env)
for (act, act_ops) in actions.itervalues():
for act_op in act_ops:
if act_op not in action_controls:
control = list(tm.get_action_control(req, act, tkt))
control[2] = str(control[2])
if control[2]:
action_controls[act_op] = control