2
# Copyright (C) 2008 Guillermo Gonzalez <guillo.gonzo@gmail.com>
4
# This program is free software; you can redistribute it and/or modify
5
# it under the terms of the GNU General Public License as published by
6
# the Free Software Foundation; either version 2 of the License, or
7
# (at your option) any later version.
9
# This program is distributed in the hope that it will be useful,
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
# GNU General Public License for more details.
14
# You should have received a copy of the GNU General Public License
15
# along with this program; if not, write to the Free Software
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19
from StringIO import StringIO
22
from loggerhead.controllers import TemplatedBranchView
23
from loggerhead import util
25
class ErrorUI(TemplatedBranchView):
27
template_path = 'loggerhead.templates.error'
29
def __init__(self, branch, exc_info):
30
super(ErrorUI, self).__init__(branch, None)
31
self.exc_info = exc_info
33
def get_values(self, h, args, kw, headers):
34
exc_type, exc_object, exc_tb = self.exc_info
35
description = StringIO()
36
traceback.print_exception(exc_type, exc_object, None, file=description)
37
directory_breadcrumbs = (
38
util.directory_breadcrumbs(
39
self._branch.friendly_name,
43
'branch': self._branch,
44
'error_title': 'An unexpected error occurred while proccesing the request:',
45
'error_description': description.getvalue(),
46
'directory_breadcrumbs': directory_breadcrumbs,