equal
deleted
inserted
replaced
24 w(u'</ul>') |
24 w(u'</ul>') |
25 |
25 |
26 |
26 |
27 class DebugView(StartupView): |
27 class DebugView(StartupView): |
28 id = 'debug' |
28 id = 'debug' |
29 __selectors__ = (none_rset, match_user_groups('managers'),) |
29 __select__ = none_rset() & match_user_groups('managers') |
30 title = _('server debug information') |
30 title = _('server debug information') |
31 |
31 |
32 def call(self, **kwargs): |
32 def call(self, **kwargs): |
33 """display server information""" |
33 """display server information""" |
34 w = self.w |
34 w = self.w |