Mercurial > p > roundup > code
comparison roundup/cgi/cgitb.py @ 1092:e5826025eeb7
more Log removal
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 10 Sep 2002 01:07:06 +0000 |
| parents | 04b44df7af1d |
| children | 7e193bbda38e |
comparison
equal
deleted
inserted
replaced
| 1091:d870139aeb5c | 1092:e5826025eeb7 |
|---|---|
| 1 # | 1 # |
| 2 # This module was written by Ka-Ping Yee, <ping@lfw.org>. | 2 # This module was written by Ka-Ping Yee, <ping@lfw.org>. |
| 3 # | 3 # |
| 4 # $Id: cgitb.py,v 1.4 2002-09-09 05:28:48 richard Exp $ | 4 # $Id: cgitb.py,v 1.5 2002-09-10 01:07:05 richard Exp $ |
| 5 | 5 |
| 6 __doc__ = """ | 6 __doc__ = """ |
| 7 Extended CGI traceback handler by Ka-Ping Yee, <ping@lfw.org>. | 7 Extended CGI traceback handler by Ka-Ping Yee, <ping@lfw.org>. |
| 8 """ | 8 """ |
| 9 | 9 |
| 164 | 164 |
| 165 def handler(): | 165 def handler(): |
| 166 print breaker() | 166 print breaker() |
| 167 print html() | 167 print html() |
| 168 | 168 |
| 169 # | |
| 170 # $Log: not supported by cvs2svn $ | |
| 171 # Revision 1.3 2002/09/06 07:23:29 richard | |
| 172 # tweak | |
| 173 # | |
| 174 # Revision 1.2 2002/09/06 07:21:31 richard | |
| 175 # much nicer error messages when there's a templating error | |
| 176 # | |
| 177 # Revision 1.1 2002/08/30 08:28:44 richard | |
| 178 # New CGI interface support | |
| 179 # | |
| 180 # Revision 1.10 2002/01/16 04:49:45 richard | |
| 181 # Handle a special case that the CGI interface tickles. I need to check if | |
| 182 # this needs fixing in python's core. | |
| 183 # | |
| 184 # Revision 1.9 2002/01/08 11:56:24 richard | |
| 185 # missed an import _ | |
| 186 # | |
| 187 # Revision 1.8 2002/01/05 02:22:32 richard | |
| 188 # i18n'ification | |
| 189 # | |
| 190 # Revision 1.7 2001/11/22 15:46:42 jhermann | |
| 191 # Added module docstrings to all modules. | |
| 192 # | |
| 193 # Revision 1.6 2001/09/29 13:27:00 richard | |
| 194 # CGI interfaces now spit up a top-level index of all the instances they can | |
| 195 # serve. | |
| 196 # | |
| 197 # Revision 1.5 2001/08/07 00:24:42 richard | |
| 198 # stupid typo | |
| 199 # | |
| 200 # Revision 1.4 2001/08/07 00:15:51 richard | |
| 201 # Added the copyright/license notice to (nearly) all files at request of | |
| 202 # Bizar Software. | |
| 203 # | |
| 204 # Revision 1.3 2001/07/29 07:01:39 richard | |
| 205 # Added vim command to all source so that we don't get no steenkin' tabs :) | |
| 206 # | |
| 207 # Revision 1.2 2001/07/22 12:09:32 richard | |
| 208 # Final commit of Grande Splite | |
| 209 # | |
| 210 # Revision 1.1 2001/07/22 11:58:35 richard | |
| 211 # More Grande Splite | |
| 212 # | |
| 213 # | |
| 214 # vim: set filetype=python ts=4 sw=4 et si | 169 # vim: set filetype=python ts=4 sw=4 et si |
