root/cherokee/trunk/admin/ModuleAdmin.py

Revision 1981, 476 bytes (checked in by alo, 3 months ago)

--

Line 
1 from Form import *
2 from ModuleHandler import *
3
4 HELPS = [
5     ('modules_handlers_admin', "Remote Administration")
6 ]
7
8 class ModuleAdmin (ModuleHandler):
9     PROPERTIES = []
10
11     def __init__ (self, cfg, prefix, submit):
12         ModuleHandler.__init__ (self, 'admin', cfg, prefix, submit)
13         self.show_document_root = False
14
15     def _op_render (self):
16         return ''
17
18     def _op_apply_changes (self, uri, post):
19         self.ApplyChangesPrefix (self._prefix, [], post)
Note: See TracBrowser for help on using the browser.