1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
from Page import *
class PageError (Page):
CONFIG_NOT_FOUND = 'not_found'
CONFIG_NOT_WRITABLE = 'not_writable'
ICONS_DIR_MISSING = 'icons_dir_missing'
COULDNT_LAUNCH = 'couldnt_launch'
def __init__ (self, cfg, tipe, **kwargs):
Page.__init__ (self, 'error_%s'%(tipe), cfg)
self.type = tipe
self._error = None
for arg in kwargs:
self.AddMacroContent (arg, kwargs[arg])
def _op_render (self):
template = 'error_%s.template' % (self.type)
self.AddMacroContent ('menu', '')
self.AddMacroContent ('help', '')
self.AddMacroContent ('body', PAGE_BASIC_LAYOUT)
self.AddMacroContent ('title', 'ERROR: %s'%(ERRORS_TITLE[self.type]))
self.AddMacroContent ('content', self.Read(template))
self.AddMacroContent ('cherokee_conf', self._cfg.file)
self.AddMacroContent ('icons_dir', CHEROKEE_ICONSDIR)
return Page.Render(self)
def _op_handler (self, uri, post):
return '/'
ERRORS_TITLE = {
PageError.CONFIG_NOT_FOUND : 'Configuration file not found',
PageError.CONFIG_NOT_WRITABLE : 'Configuration file cannot be modified',
PageError.ICONS_DIR_MISSING: 'Icons directory is missing',
PageError.COULDNT_LAUNCH: 'Could not launch the server'
}
|