Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | HTML-escape the plain traceback in cgitb's HTML output, to prevent | Georg Brandl | 2007-05-15 | 1 | -1/+2 |
| | | | | | the traceback inadvertently or maliciously closing the comment and injecting HTML into the error page. | ||||
* | Exceptions are no longer old-style instances. Fix accordingly. | Georg Brandl | 2007-04-11 | 1 | -2/+2 |
| | |||||
* | Merge ast-branch to head | Jeremy Hylton | 2005-10-20 | 1 | -0/+1 |
| | | | | | | | | | | This change implements a new bytecode compiler, based on a transformation of the parse tree to an abstract syntax defined in Parser/Python.asdl. The compiler implementation is not complete, but it is in stable enough shape to run the entire test suite excepting two disabled tests. | ||||
* | Prevent creating a HTML link to file://?/ | Georg Brandl | 2005-06-26 | 1 | -2/+5 |
| | |||||
* | Replace list of constants with tuples of constants. | Raymond Hettinger | 2005-02-06 | 1 | -1/+1 |
| | |||||
* | Whitespace normalization, via reindent.py. | Tim Peters | 2004-07-18 | 1 | -2/+2 |
| | |||||
* | [Patch #987052 from Thomas Guettler] | Andrew M. Kuchling | 2004-07-10 | 1 | -6/+21 |
| | | | | | | Don't output empty tags Escape page header Remove <p> before <table> (tidy complains) | ||||
* | Another nit found by Neal Norwitz using pychecker. This was caused by a | Skip Montanaro | 2004-06-07 | 1 | -2/+1 |
| | | | | | too-mechanical translation when converting html() to text() (simply stripped strong() where it appeared). | ||||
* | [Bug #758665] cgitb.scanvars() fails because of an unititialized value ↵ | Andrew M. Kuchling | 2004-06-05 | 1 | -1/+1 |
| | | | | variable. Patch from Robin Becker. | ||||
* | [Bug #945063] Get file extension correct. (2.3 bugfix candidate) | Andrew M. Kuchling | 2004-05-06 | 1 | -1/+1 |
| | |||||
* | [Bugfix candidate] Escape traceback type and value. There are probably ↵ | Andrew M. Kuchling | 2004-03-31 | 1 | -1/+2 |
| | | | | additional cases where cgitb.py doesn't escape as paranoidly as it should (e.g. attribute names) | ||||
* | Whitespace normalization. | Tim Peters | 2003-06-29 | 1 | -1/+1 |
| | |||||
* | SF Patch 569574 - enhancements to cgitb for plain text display | Skip Montanaro | 2003-06-17 | 1 | -14/+95 |
| | |||||
* | Fix name error, found by pychecker. | Guido van Rossum | 2002-12-31 | 1 | -1/+1 |
| | |||||
* | Massive changes from SF 589982 (tempfile.py rewrite, by Zack | Guido van Rossum | 2002-08-09 | 1 | -3/+3 |
| | | | | | Weinberg). This changes all uses of deprecated tempfile functions to the recommended ones. | ||||
* | Also look up variable names in __builtins__ if not found in globals. | Ka-Ping Yee | 2002-06-26 | 1 | -3/+15 |
| | | | | Don't show hidden fields of exception values (names starting with '_'). | ||||
* | Make the module docstring agree with reality: the module prvides the | Fred Drake | 2001-12-19 | 1 | -1/+1 |
| | | | | "handler()" function, not the "handle()" function. | ||||
* | Add "file" argument to Hook constructor. | Ka-Ping Yee | 2001-12-04 | 1 | -10/+15 |
| | | | | | By default, save sys.stdout in self.file when a Hook instance is created (e.g. when cgitb.enable() is called). | ||||
* | Enhancements: | Ka-Ping Yee | 2001-08-21 | 1 | -93/+111 |
| | | | | | | | | | | - file URL now starts with "file://" (standard) rather than "file:" - new optional argument 'context' to enable() - repeated variable names don't have their values shown twice - dotted attributes are shown; missing attributes handled reasonably - highlight the whole logical line even if it has multiple physical lines - use nice generator interface to tokenize - formatting fixed so that it looks good in lynx, links, and w3m too | ||||
* | Initial check-in of cgitb. | Ka-Ping Yee | 2001-08-18 | 1 | -0/+182 |
A few enhancements are pending, but this should work reliably. |