| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Make paste.debug.prints work with appengine, which replaces stdout on every ↵ | ianb | 2008-07-31 | 1 | -1/+1 | |
| | | | | | request, so our patching isn't persistent | |||||
| * | handle .class as well as .pyc | pjenvey | 2008-06-17 | 1 | -1/+1 | |
| | | ||||||
| * | disable killthread if ctypes lacks pythonapi | pjenvey | 2008-06-10 | 1 | -0/+3 | |
| | | | | | for pypy, and maybe one day other python vms | |||||
| * | Fixed test suite on Windows (also disabled CGI tests as they shouldn't even ↵ | maluke | 2008-05-28 | 2 | -3/+3 | |
| | | | | | work) | |||||
| * | Fix threaded stdin read | ianb | 2008-05-16 | 1 | -2/+2 | |
| | | ||||||
| * | typo | ianb | 2008-05-07 | 1 | -1/+1 | |
| | | ||||||
| * | Add some more methods to the threaded replacement for stdout (for appengine) | ianb | 2008-04-27 | 1 | -0/+18 | |
| | | ||||||
| * | Use the already-available html_unquote function | ianb | 2008-03-25 | 1 | -2/+1 | |
| | | ||||||
| * | only import webbrowser when necessary | pjenvey | 2008-03-05 | 1 | -1/+1 | |
| | | ||||||
| * | remove tabs | ianb | 2007-07-22 | 1 | -1/+1 | |
| | | ||||||
| * | Make comments work | ianb | 2007-06-13 | 1 | -0/+5 | |
| | | ||||||
| * | Added {{default}} directive to paste.util.template | ianb | 2007-06-13 | 1 | -0/+30 | |
| | | ||||||
| * | Added paste.util.import_string.try_import_module | ianb | 2007-03-06 | 1 | -0/+42 | |
| | | ||||||
| * | in template: Added a function that can be used with Paste Script; fixed an ↵ | ianb | 2007-03-06 | 1 | -1/+9 | |
| | | | | | issue when you raise Exception() | |||||
| * | Make paste.util.template trim whitespace around statements on their own line | ianb | 2007-03-06 | 1 | -4/+55 | |
| | | ||||||
| * | Added a command-line form of the template to fill static files | ianb | 2007-02-15 | 1 | -0/+75 | |
| | | ||||||
| * | make sure missing attribute raise an AttributeError in bunches, not KeyError | ianb | 2007-02-05 | 1 | -1/+4 | |
| | | ||||||
| * | Remove long-deprecated modules (most moved elsewhere -- actually removing ↵ | ianb | 2007-02-01 | 1 | -0/+178 | |
| | | | | | now); move mimeparse to paste.util.mimeparse | |||||
| * | Fix up docstrings for reST validity | ianb | 2007-02-01 | 3 | -4/+7 | |
| | | ||||||
| * | Fix up looper | ianb | 2007-02-01 | 1 | -8/+50 | |
| | | ||||||
| * | Added a looper object, to make template looping easier | ianb | 2007-01-31 | 1 | -0/+107 | |
| | | ||||||
| * | Add a bunch object, and add __traceback_hide__ locals to trim down exceptions | ianb | 2007-01-31 | 1 | -1/+40 | |
| | | ||||||
| * | Added an HTML-specific subclass | ianb | 2007-01-31 | 1 | -2/+76 | |
| | | ||||||
| * | Added a templating language | ianb | 2007-01-31 | 1 | -0/+473 | |
| | | ||||||
| * | ensure UnicodeMultiDict allows non basestring keys to pass through | pjenvey | 2007-01-31 | 1 | -1/+4 | |
| | | ||||||
| * | Allow killing of errant threads through the web application (also add a ↵ | ianb | 2007-01-30 | 1 | -0/+27 | |
| | | | | | module to kill threads with ctypes, and a method to kill threads from the httpserver thread pool) | |||||
| * | by default don't have WSGIRequest decode parameter keys when unicode params ↵ | pjenvey | 2007-01-22 | 1 | -19/+26 | |
| | | | | | | | are expected. allow this behavior when WSGIRequest.decode_param_names is enabled | |||||
| * | o added UnicodeMultiDict, a MultiDict wrapper that decodes its retrieved | pjenvey | 2007-01-21 | 1 | -1/+160 | |
| | | | | | | | | | | | | | | contents to unicode on the fly. Any FieldStorages encountered are cloned with their name and filename fields decoded o Added WSGIRequest.charset and errors. When charset is set, WSGIRequest's params/GET/POST return UnicodeMultiDicts. charset and errors inherit their default values from the WSGIRequest.defaults StackedObjectProxy dict o deprecated wsgiwrappers.settings: use wsgiwrappers.WSGIResponse.defaults instead o allow WSGIResponse to let unicode responses pass through when no encoding is set (instead of defaulting to iso-8859-1). In case someone wants to deal with unicode later in their WSGI stack | |||||
| * | convert old-style classes to new-style classes | pjenvey | 2007-01-05 | 1 | -1/+1 | |
| | | ||||||
| * | Fix #134 from cookedm: paste.util.scgiserver doesn't like an empty string as ↵ | ianb | 2006-11-02 | 1 | -1/+1 | |
| | | | | | the prefix | |||||
| * | A big commit, primarily aesthetic/whitespace in nature. This is the result ↵ | ianb | 2006-10-20 | 4 | -33/+46 | |
| | | | | | of running pylint over the codebase. Some minor/hard-to-reach typos were also picked up. | |||||
| * | multi var isn't used here | pjenvey | 2006-10-20 | 1 | -1/+0 | |
| | | ||||||
| * | Several name problems, small bugs, extra imports caught by pyflakes | ianb | 2006-10-20 | 1 | -1/+0 | |
| | | ||||||
| * | Added some tests for multidict; fixed setdefault | ianb | 2006-09-26 | 1 | -1/+1 | |
| | | ||||||
| * | - adding dict_of_lists() to multidict to return a standard | cce | 2006-09-21 | 1 | -0/+14 | |
| | | | | | | | | | | | argument dictionary where values corresponding to a given key are returned in a list If you used the all_as_list argument to parse_formvars that was removed w/o backwards compatibility, you can convert your code to add .dict_of_lists() on the return value of parse_formvars as a replacement. | |||||
| * | Paste should not depend upon other paste modules, such | cce | 2006-09-21 | 1 | -0/+26 | |
| | | | | | | | | | | as Deploy. This patch moves 'converters' into paste.util since it was being used within paste proper. I'll leave it to those who know Deploy to update that. - copied converters.py from paste.deploy to paste.util - updated files that use paste.deploy.converters | |||||
| * | - raise type error on unknown months | cce | 2006-08-24 | 1 | -2/+2 | |
| | | | | | - allow 'today' as keyword date | |||||
| * | (no commit message) | cce | 2006-08-24 | 1 | -1/+1 | |
| | | ||||||
| * | Somewhere in the past two years day_of_week changed to | cce | 2006-08-24 | 1 | -1/+1 | |
| | | | | | isoweekday() in the datetime API. | |||||
| * | renamed the multidict class to MultiDict | pjenvey | 2006-07-25 | 1 | -7/+7 | |
| | | ||||||
| * | added copy method | pjenvey | 2006-07-23 | 1 | -1/+4 | |
| | | ||||||
| * | Added a method to get a cgi-style dictionary out of this dictionary | ianb | 2006-06-22 | 1 | -2/+27 | |
| | | ||||||
| * | Make multidict parse args+kw more like dict() does | ianb | 2006-06-22 | 1 | -6/+3 | |
| | | ||||||
| * | added optional host and max_children args to scgi's serve_application. | pjenvey | 2006-06-17 | 1 | -2/+28 | |
| | | | | | | | | | | | | | | | | Ideally the function prototype would match SCGIServers, i.e.: def serve_application(application, prefix, host=, port=None, max_children=None): or: def serve_application(application, prefix, **kwargs): (host, port and max_children could then default to SCGIServer's defaults), but that could break compatibility with those not explicitly using keyword args suggested by: greg@electricrain.com resolves: #55 | |||||
| * | Added copyright header to a bunch of files | ianb | 2006-06-13 | 2 | -0/+4 | |
| | | ||||||
| * | Fix for odd issue where sometimes the new mixin's len doesn't work, ↵ | bbangert | 2006-06-01 | 1 | -0/+3 | |
| | | | | | resulting in bool evaluations having infinite recursion. This nonzero override remedies the situation, why the endless recursion occurs with len is still a mystery. | |||||
| * | - Space Nazi | cce | 2006-03-09 | 1 | -1/+2 | |
| | | ||||||
| * | Implementation of a multidict | ianb | 2006-03-09 | 1 | -0/+187 | |
| | | ||||||
| * | Provide top-level ip2int function | ianb | 2006-03-03 | 1 | -28/+31 | |
| | | ||||||
| * | Added a no-quoting quoter | ianb | 2006-01-22 | 1 | -0/+6 | |
| | | ||||||
