| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2011-02-26 | Merge branch 'malthe-master' | Chris McDonough | |
| 2011-02-26 | Merge branch 'master' of https://github.com/malthe/pyramid into malthe-master | Chris McDonough | |
| 2011-02-26 | it's request_param | Chris McDonough | |
| 2011-02-25 | typo | Chris McDonough | |
| 2011-02-25 | unused | Chris McDonough | |
| 2011-02-25 | Strip newline before test (this is to be compatible with Chameleon 2.x which ↵ | Malthe Borch | |
| ensures a trailing newline character after output). | |||
| 2011-02-25 | docs fix related to ↵ | Chris McDonough | |
| https://github.com/Pylons/pyramid/commit/0a0edfcc42611fc9f815e7a4117674678840abb1 | |||
| 2011-02-25 | - ``pyramid.url.route_path`` (and the shortcut | Chris McDonough | |
| ``pyramid.request.Request.route_url`` method) now include the WSGI SCRIPT_NAME at the front of the path if it is not empty (see https://github.com/Pylons/pyramid/issues/135). - ``pyramid.testing.DummyRequest`` now has a ``script_name`` attribute (the empty string). Closes #135 | |||
| 2011-02-23 | mirror virhilo's changes to views tutorial package in authorization step | Chris McDonough | |
| 2011-02-23 | Merge branch 'virhilo-master' | Chris McDonough | |
| 2011-02-23 | normalized test cases in wiki2 tutorial | Łukasz Fidosz | |
| 2011-02-22 | From the code: | Chris McDonough | |
| # While Chrome, IE, and Firefox can cope, Opera (at least) cannot # cope with a port number in the cookie domain when the URL it # receives the cookie from does not also have that port number in it # (e.g via a proxy). In the meantime, HTTP_HOST is sent with port # number, and neither Firefox nor Chrome do anything with the # information when it's provided in a cookie domain except strip it # out. So we strip out any port number from the cookie domain # aggressively to avoid problems. See also # https://github.com/Pylons/pyramid/issues/131 Closes #131 | |||
| 2011-02-17 | fix jython test | Chris McDonough | |
| 2011-02-17 | Undo the inner squiggly regex fix introduced in commit #9595236 because the ↵ | Chris McDonough | |
| regex breaks on Jython. See https://github.com/Pylons/pyramid/issues/#issue/123 | |||
| 2011-02-16 | fix tutorial wording | Chris McDonough | |
| 2011-02-15 | Merge branch 'virhilo-master' | Chris McDonough | |
| 2011-02-15 | fixed typo in docs in wiki2 tutorial | Łukasz Fidosz | |
| 2011-02-14 | break out coverage run | Chris McDonough | |
| 2011-02-14 | add tox.ini and ignore derived testing turds | Chris McDonough | |
| 2011-02-13 | fix interface for IRenderer | Chris McDonough | |
| 2011-02-13 | Merge branch 'lambacck-master' | Chris McDonough | |
| 2011-02-13 | note changes | Chris McDonough | |
| 2011-02-13 | Merge branch 'master' of https://github.com/lambacck/pyramid into ↵ | Chris McDonough | |
| lambacck-master | |||
| 2011-02-12 | Add make_localizer function & docs & tests | Christopher Lambacher | |
| 2011-02-12 | Fix tests on win32 | Christopher Lambacher | |
| 2011-02-12 | Separate making Localizer from getting cached one | Christopher Lambacher | |
| 2011-02-12 | - ``pyramid_alchemy`` paster template now uses ``query.get`` rather than | Chris McDonough | |
| ``query.filter_by`` to take better advantage of identity map caching. - ``pyramid_alchemy`` paster template now has unit tests. | |||
| 2011-02-12 | fix typo | Chris McDonough | |
| 2011-02-09 | docs.pylonsproject.org->pylonsproject.org | Chris McDonough | |
| 2011-02-09 | - Integers and longs passed as ``elements`` to ``pyramid.url.resource_url`` | Chris McDonough | |
| or ``pyramid.request.Request.resource_url`` e.g. ``resource_url(context, request, 1, 2)`` (``1`` and ``2`` are the ``elements``) will now be converted implicitly to strings in the result. Previously passing integers or longs as elements would cause a TypeError. Closes #124 | |||
| 2011-02-09 | docstring fix (not explicitly parent, just lineage) | Chris McDonough | |
| 2011-02-09 | remove unintentional change added by previous commit to fix url matching ↵ | Chris McDonough | |
| issue #123 | |||
| 2011-02-09 | - URL pattern markers used in URL dispatch are permitted to specify a custom | Chris McDonough | |
| regex. For example, the pattern ``/{foo:\d+}`` means to match ``/12345`` (foo==12345 in the match dictionary) but not ``/abc``. However, custom regexes in a pattern marker which used squiggly brackets did not work. For example, ``/{foo:\d{4}}`` would fail to match ``/1234`` and ``/{foo:\d{1,2}}`` would fail to match ``/1`` or ``/11``. One level of inner squiggly brackets is now recognized so that the prior two patterns given as examples now work. See also https://github.com/Pylons/pyramid/issues/#issue/123. Closes #123 | |||
| 2011-02-07 | de-bfg | Chris McDonough | |
| 2011-02-07 | point to pylonsproject.org | Chris McDonough | |
| 2011-02-05 | for print space purposes, move return to same line as function definition | Chris McDonough | |
| 2011-02-05 | add missing import (thanks donri) | Chris McDonough | |
| 2011-02-05 | Merge branch 'cmbeelby-master' | Chris McDonough | |
| 2011-02-05 | mention Chris Beebly | Chris McDonough | |
| 2011-02-05 | fix conflicts | Chris McDonough | |
| 2011-02-04 | Merge branch '1.0-book' | Chris McDonough | |
| 2011-02-04 | new foreword text | Chris McDonough | |
| 2011-02-03 | Corrected a/an usage and also clarified "deployment" to mean to a production ↵ | Chris Beelby | |
| system (as opposed to deploying to a development, QA, etc... machine) | |||
| 2011-02-02 | Wrong name for variable | Chris Beelby | |
| 2011-02-02 | Capitalization fix | Chris Beelby | |
| 2011-02-01 | garden | Chris McDonough | |
| 2011-02-01 | Merge branch '1.0-branch' | Chris McDonough | |
| 2011-02-01 | credit hugues | Chris McDonough | |
| 2011-01-31 | Merge branch 'cconrad-master' | Chris McDonough | |
| 2011-01-31 | Merge branch 'master' of https://github.com/cconrad/pyramid into cconrad-master | Chris McDonough | |
