# -*- coding: iso-8859-1 -*- """ MoinMoin failure Handle fatal errors by showing a message and debugging information. @copyright: 2004, 2005 by Nir Soffer @license: GNU GPL, see COPYING for details. """ import sys, os from MoinMoin.support import cgitb class View(cgitb.View): """ Display an error message and debugging information Additions to cgitb.View: - Multiple tracebacks support - Debugging information is shown only in debug mode - Moin application information - General help text and links - Handle multiple paragraphs in exception message cgitb is heavily modified cgitb, but fully backward compatible with the standard cgitb. It should not contain any moin specific code. cgitb was refactored to be easy to customize by applications developers. This moin specific subclass is an example. """ debugInfoID = 'debug-info' def formatContent(self): content = ( self.script(), self.formatStylesheet(), self.formatTitle(), self.formatMessage(), self.formatButtons(), self.formatDebugInfo(), self.formatTextTraceback() ) return ''.join(content) def script(self): return ''' ''' % self.debugInfoID def stylesheet(self): return cgitb.View.stylesheet(self) + """ .cgitb .buttons {margin: 0.5em 0; padding: 5px 10px;} .cgitb .buttons li {display: inline; margin: 0; padding: 0 0.25em;} """ def formatMessage(self): """ handle multiple paragraphs messages and add general help """ f = self.formatter text = [self.formatExceptionMessage(self.info), f.paragraph("If you want to report a bug, please save " "this page and attach it to your bug report."),] return ''.join(text) def formatButtons(self): """ Add 'buttons' to the error dialog """ f = self.formatter buttons = [f.link('javascript:toggleDebugInfo()', 'Show debugging information'), f.link('http://moinmoin.wikiwikiweb.de/MoinMoinBugs', 'Report bug'), f.link('http://moinmoin.wikiwikiweb.de/FrontPage', 'Visit MoinMoin wiki'),] return f.list(buttons, {'class': 'buttons'}) def formatDebugInfo(self): """ Put debugging information in a hidden div """ attributes = {'id': self.debugInfoID} info = [self.debugInfoHideScript(), self.formatTraceback(), self.formatSystemDetails(),] return self.formatter.section(''.join(info), attributes) def debugInfoHideScript(self): """ Hide debug info for javascript enabled browsers """ if self.debug: return '' return ''' ''' def formatTraceback(self): return self.formatAllTracebacks(self.formatOneTraceback) def formatTextTraceback(self): template = self.textTracebackTemplate() return template % self.formatAllTracebacks(self.formatOneTextTraceback) def formatAllTracebacks(self, formatFuction): """ Format multiple tracebacks using formatFunction """ tracebacks = [] for type, value, tb in self.exceptions(): if type is None: break tracebacks.append(formatFuction((type, value, tb))) del tb return ''.join(tracebacks) def exceptions(self): """ Return a list of exceptions info, starting at self.info """ try: return [self.info] + self.info[1].exceptions() except AttributeError: return [self.info] def applicationDetails(self): """ Add MoinMoin details to system details """ from MoinMoin import version return ['MoinMoin: Release %s (%s)' % (version.release, version.revision)] def formatExceptionMessage(self, info): """ Handle multiple paragraphs in exception message """ text = cgitb.View.exceptionMessage(self, info) text = text.split('\n\n') text = ''.join([self.formatter.paragraph(item) for item in text]) return text def handle(request): """ Handle failures Display fancy error view, or fallback to simple text traceback """ savedError = sys.exc_info() try: debug = ('debug' in getattr(request, 'form', {}) or 'MOIN_DEBUG' in os.environ) handler = cgitb.Hook(file=request, display=request.cfg.traceback_show, logdir=request.cfg.traceback_log_dir, viewClass=View, debug=debug) handler.handle() except: request.write('
\n')
        printTextException(request, savedError)
        request.write('\nAdditionally cgitb raised this exception:\n')
        printTextException(request)        
        request.write('
\n') def printTextException(request, info=None): """ Simple text exception that should never fail Print all exceptions in a composite error. """ import traceback from MoinMoin import wikiutil if info is None: info = sys.exc_info() try: exceptions = [info] + info[1].exceptions() except AttributeError: exceptions = [info] for info in exceptions: text = ''.join(traceback.format_exception(*info)) text = wikiutil.escape(text) request.write(text)