Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Revert change on paste.util.quoting.html_quote() | Victor Stinner | 2015-04-23 | 1 | -1/+4 |
| | | | | | On Python 2, html_quote(unicode) returns again bytes to restore backward compatibility. | ||||
* | Fix paste.util.html_quote(unicode): don't encode the string to escape it | Victor Stinner | 2015-04-22 | 1 | -25/+1 |
| | |||||
* | Fix html_unquote() on Python 3 | Victor Stinner | 2015-04-21 | 1 | -5/+11 |
| | | | | | * String must be a bytes string: replace str with six.binary_type * Port util.quoting to Python 3 | ||||
* | Python 3: fix more submodules | Victor Stinner | 2014-03-19 | 1 | -2/+2 |
| | | | | | * print syntax * replace "except Exception, exc:" with "except Exception as exc:" | ||||
* | Python 3: Use six types for strings | Cyril Roelandt | 2014-03-18 | 1 | -2/+3 |
| | | | | | * Replace (str, unicode) with (six.binary_type, six.text_type) * Replace basestring with (six.binary_type, six.text_type) | ||||
* | Python 3: use new names of standard library modules | Cyril Roelandt | 2014-03-18 | 1 | -5/+6 |
| | | | | Use "try/except ImportError" to try Python 2 and Python 3 names. | ||||
* | Just a bit more paranoia in quoting comments, though I wasn't able to ↵ | Ian Bicking | 2010-09-14 | 1 | -1/+8 |
| | | | | reproduce any actual issue | ||||
* | Fix XSS attacks as reported by Tim Wintle | Ian Bicking | 2010-06-15 | 1 | -0/+7 |
| | |||||
* | correct r7651 comment, this changed as of 2.5.2 | pjenvey | 2008-11-19 | 1 | -2/+2 |
| | |||||
* | make html_unquote('') consistently return u'' everywhere -- re.sub('', '', u'') | pjenvey | 2008-11-18 | 1 | -1/+5 |
| | | | | started acting differently as of 2.5.1 | ||||
* | update test for new website content | ianb | 2008-11-16 | 1 | -1/+1 |
| | |||||
* | Fixed test suite on Windows (also disabled CGI tests as they shouldn't even ↵ | maluke | 2008-05-28 | 1 | -1/+1 |
| | | | | work) | ||||
* | Use the already-available html_unquote function | ianb | 2008-03-25 | 1 | -2/+1 |
| | |||||
* | Added a no-quoting quoter | ianb | 2006-01-22 | 1 | -0/+6 |
| | |||||
* | Merged changes from cce branch (r3727:HEAD/4008); the branch is now in sync ↵ | ianb | 2005-12-13 | 1 | -1/+9 |
| | | | | with trunk | ||||
* | Added license comment to all substantive files | ianb | 2005-08-31 | 1 | -0/+3 |
| | |||||
* | Handy module for quoting and unquoting | ianb | 2005-07-25 | 1 | -0/+64 |