~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/controllers/error_ui.py

  • Committer: Robey Pointer
  • Date: 2007-01-14 01:21:30 UTC
  • Revision ID: robey@lag.net-20070114012130-1yxvnkkn7qsp0aj3
add a uniq() function for helping trim some of the verbosity on the revision
page.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
# Copyright (C) 2008  Guillermo Gonzalez <guillo.gonzo@gmail.com>
3
 
#
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.
8
 
#
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.
13
 
#
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
17
 
#
18
 
 
19
 
from loggerhead.controllers import TemplatedBranchView
20
 
 
21
 
class ErrorUI(TemplatedBranchView):
22
 
 
23
 
    template_path = 'loggerhead.templates.error'
24
 
 
25
 
    def __init__(self, branch, exc_info):
26
 
        super(ErrorUI, self).__init__(branch, None)
27
 
        self.exc_info = exc_info
28
 
    
29
 
    def get_values(self, h, args, kw, headers):
30
 
        exc_type, exc_object, exc_tb = self.exc_info
31
 
        return {
32
 
            'error_title':'Error',
33
 
            'error_description':exc_object,
34
 
            'error_properties':[self.exc_info],
35
 
        }
 
 
b'\\ No newline at end of file'