summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-03-19new nosexcover only works with new coverageChris McDonough
2011-03-18add more docstring to DummyRequest: Closes #150Chris McDonough
2011-03-16Merge branch 'cguardia-master'Chris McDonough
2011-03-16Merge branch 'master' of https://github.com/cguardia/pyramid into ↵Chris McDonough
cguardia-master
2011-03-16sorry for the convenienceChris McDonough
2011-03-15Restructured the routes wiki tutorial to make it easier to follow along. ↵Carlos de la Guardia
Moved the routes tutorial above the traversal tutorial.
2011-03-09leave some breadcrumbs for finding renderered response attribute settingsChris McDonough
2011-03-05add section about pluggable appsChris McDonough
2011-03-02Closes #128Chris McDonough
2011-03-02Closes #125Chris McDonough
2011-03-01Add change note for dnouri's solution to issue 141.Chris McDonough
Closes #141.
2011-03-01Merge branch 'dnouri-master'Chris McDonough
2011-03-01Merge branch 'master' of https://github.com/dnouri/pyramid into dnouri-masterChris McDonough
2011-03-01we no longer expect to run on 2.4, dont skip Chameleon-related tests on pypyChris McDonough
2011-02-28Do not quote characters ':@&+$,' in '*elements' passed to route_pathDaniel Nouri
and resource_url. We're deliberately using these safe characters only with '*elements' instead of the whole path since that would break existing apps that persist quoted paths of resources. See https://github.com/dnouri/pyramid/commit/ab19ea8a5372ac83c6f7a7d75d1ecca5ed2b025e#commitcomment-285947
2011-02-28Fix authentication policy example.Chris McDonough
Closes #137
2011-02-28Merge branch 'malthe-master'Chris McDonough
2011-02-28Merge branch 'master' of https://github.com/malthe/pyramid into malthe-masterChris McDonough
2011-02-28'pyramid.url.resource_url' no longer quotes '@' in '*elements'.Daniel Nouri
See http://groups.google.com/group/pylons-discuss/browse_thread/thread/ebb8e0196858a48
2011-02-28Adding myself.Malthe Borch
2011-02-26Merge branch 'malthe-master'Chris McDonough
2011-02-26Merge branch 'master' of https://github.com/malthe/pyramid into malthe-masterChris McDonough
2011-02-26it's request_paramChris McDonough
2011-02-25typoChris McDonough
2011-02-25unusedChris McDonough
2011-02-25Strip newline before test (this is to be compatible with Chameleon 2.x which ↵Malthe Borch
ensures a trailing newline character after output).
2011-02-25docs fix related to ↵Chris McDonough
https://github.com/Pylons/pyramid/commit/0a0edfcc42611fc9f815e7a4117674678840abb1
2011-02-25- ``pyramid.url.route_path`` (and the shortcutChris 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-23mirror virhilo's changes to views tutorial package in authorization stepChris McDonough
2011-02-23Merge branch 'virhilo-master'Chris McDonough
2011-02-23normalized test cases in wiki2 tutorialŁukasz Fidosz
2011-02-22From 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-17fix jython testChris McDonough
2011-02-17Undo 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-16fix tutorial wordingChris McDonough
2011-02-15Merge branch 'virhilo-master'Chris McDonough
2011-02-15fixed typo in docs in wiki2 tutorialŁukasz Fidosz
2011-02-14break out coverage runChris McDonough
2011-02-14add tox.ini and ignore derived testing turdsChris McDonough
2011-02-13fix interface for IRendererChris McDonough
2011-02-13Merge branch 'lambacck-master'Chris McDonough
2011-02-13note changesChris McDonough
2011-02-13Merge branch 'master' of https://github.com/lambacck/pyramid into ↵Chris McDonough
lambacck-master
2011-02-12Add make_localizer function & docs & testsChristopher Lambacher
2011-02-12Fix tests on win32Christopher Lambacher
2011-02-12Separate making Localizer from getting cached oneChristopher Lambacher
2011-02-12- ``pyramid_alchemy`` paster template now uses ``query.get`` rather thanChris McDonough
``query.filter_by`` to take better advantage of identity map caching. - ``pyramid_alchemy`` paster template now has unit tests.
2011-02-12fix typoChris McDonough
2011-02-09docs.pylonsproject.org->pylonsproject.orgChris 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