summaryrefslogtreecommitdiff
path: root/paste/urlmap.py
Commit message (Collapse)AuthorAgeFilesLines
* Escape CGI environment variables in HTTP 404 responsesKaan Kivilcim2014-08-251-3/+3
|
* URLMap: add missing abstract __len__ and __iter__ methodsVictor Stinner2014-03-181-0/+7
|
* Python 3: use new names of standard library modulesCyril Roelandt2014-03-181-1/+7
| | | | Use "try/except ImportError" to try Python 2 and Python 3 names.
* Fix XSS attacks as reported by Tim WintleIan Bicking2010-06-151-11/+10
|
* - fix urlmap to include the path that was not found and notcce2007-08-081-1/+1
| | | | give a redundant message of not being found 2x
* A big commit, primarily aesthetic/whitespace in nature. This is the result ↵ianb2006-10-201-1/+1
| | | | of running pylint over the codebase. Some minor/hard-to-reach typos were also picked up.
* Fix for paste.urlmap and vhostsianb2006-06-221-2/+2
|
* fix URLMap to make passing in a different not_found_app workseanc2006-05-291-1/+3
|
* Reapplying a previously-fixed port-related bugianb2006-05-251-1/+1
|
* Somehow I 'cleaned' the urlmap module, totally ruining it; must be changes ↵ianb2006-05-251-69/+212
| | | | that leaked from elsewhere. Damn.
* Auto-update of version stringsianb2006-05-241-212/+69
|
* typoianb2006-04-251-1/+1
|
* Fixed port matching in urlmapianb2006-04-141-3/+9
|
* Fixed bug in port urlmap parsingianb2006-04-141-1/+1
|
* Typo in not-found handlerianb2006-03-301-1/+1
|
* Fix typo from matt hianb2006-03-031-1/+1
|
* Added better option parsing, so that you could match domains in paste.deploy ↵ianb2006-01-281-5/+48
| | | | config files; also removed the rather useless global_conf argument to urlmap.URLMap (only the paste.deploy entry point needs to accept that)
* Remove Python 2.4ism of a key argument to .sort()ianb2006-01-211-1/+3
|
* A bunch of little import cleanups noted from pyflakesianb2005-12-181-1/+3
|
* Deprecate the wsgilib.error_response functions; stop using them internally ↵ianb2005-12-131-3/+4
| | | | as well, in preference of httpexceptions.*.wsgi_application
* Fixes suggested by pyflakesianb2005-09-211-1/+0
|
* Added license comment to all substantive filesianb2005-08-311-0/+3
|
* Typoianb2005-08-291-1/+1
|
* Bug fixesianb2005-08-221-1/+1
|
* paste.deployify urlmapianb2005-08-221-7/+14
|
* Allow apps set to None, to mean a delete, and make the 404 app more ↵ianb2005-08-081-3/+24
| | | | informative for debugging in the comments
* Made urlmap work with domain matching as wellianb2005-07-211-25/+53
|
* Added urlmap, which does top-level mapping to different applications, ↵ianb2005-05-301-0/+137
without any 'parsing' phase, typically using configuration files as application descriptors. Also added use_package function to configuration, which requires and installs the named package with easy_install.