summaryrefslogtreecommitdiff
path: root/pyramid
AgeCommit message (Collapse)Author
2011-11-17Allow creating Configurator in an interpreter. Fixes #328.Michael Merickel
2011-11-17Fixed issue #353.Michael Merickel
2011-11-17added tests so I don't get yelled atMichael Merickel
2011-11-17Made pyramid.settings.aslist public.Michael Merickel
2011-11-12- The ``alchemy`` scaffold has been removed.Chris McDonough
- The ``routesalchemy`` scaffold has been renamed ``alchemy``.
2011-11-12make relocatable (as per Ken's changes)Chris McDonough
2011-11-12this is no longer dynamicChris McDonough
2011-11-12Fix ZODB scaffolding to match ZODB tutorial docs (Ken made relocatable).Chris McDonough
2011-11-12Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2011-11-12rejigger jsonChris McDonough
2011-11-11Add link to renderer dict globals from BeforeRender event (#351)Carlos de la Guardia
2011-11-11typoCarlos de la Guardia
2011-11-11Fix some typos and restructure text a bitCarlos de la Guardia
2011-11-11readd json back, but not as an API (only because older versions of debug ↵Chris McDonough
toolbar depend on its existence)
2011-11-11- New ``pyramid.compat`` module and API documentation which provides PythonChris McDonough
2/3 straddling support for Pyramid add-ons and development environments.
2011-11-08the with statement doesnt work under py26; unit tests shouldnt show commentsChris McDonough
2011-11-08Rewrite my unit test to behave correctly w.r.t. different exception types.Richard Barrell
2011-11-08Raise a ValueError from HTTPFound.__init__() if location is None.Richard Barrell
2011-11-08Added a unit test that asserts that HTTPFound(location=None) throws a ↵Richard Barrell
ValueError.
2011-11-08We don't yet have mechanism to specify other files to monitor.Chris Shenton
So comment out the checks for the nonexistent requires_config_file. Server still runs and monitors our file changes.
2011-11-07Create a test to demonstrate that pcreate works with absolute paths.Richard Barrell
2011-11-07pcreate scaffolds are allowed to assume that the output_dir that they have ↵Richard Barrell
been handed is an absolute path. Fix my 'fix' to pcreate.py so that it enforces this again.
2011-11-07Have pcreate base the project name on just the basedir of the target output ↵Richard Barrell
path, and use the target output path (pretty much) as-is, so that pcreate no longer appears to go nuts when calling it with an absolute path.
2011-11-02DummySession: Correctly implement ISession by generating CSRF token if it's ↵Robert Buchholz
missing
2011-10-24add tests for view sortingChris McDonough
2011-10-24fix for #321Atsushi Odagiri
2011-10-19fix reraise case for python 3Chris McDonough
2011-10-19added mako template traceback to the tracebackBlaise Laflamme
2011-10-16- A ``mako.directories`` setting is no longer required to use Mako templatesChris McDonough
Rationale: Mako template renderers can be specified using an absolute asset spec. An entire application can be written with such asset specs, requiring no ordered lookup path.
2011-10-15add cherrypy server runner (requires the CherryPy package to be installedChris McDonough
2011-10-15Avoid timing attacks in AuthTktAutenticationPolicyRyan Kelly
This factors out the timing-invariant string comparison code from session.py and re-uses it for signature checking in AuthTkt code.
2011-10-14Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2011-10-14webob 1.2b1 is up on pypi nowChris McDonough
2011-10-13Merge pull request #317 from inneos/patch-3Chris McDonough
fix static_url docstring about absolute path
2011-10-13Tests and associated support resources for exercising scaffoldings copydir.Graham Higgins
2011-10-13fix static_url docstring about absolute path Bruno Binet
since pyramid 1.2, the path can be absolute and no ValueError is raised anymore (see commit b8c79771a186f1032635fc640b3cecc2c9e281ad )
2011-10-13fix typo in docstring: s/current_static_url/static_url/Bruno Binet
2011-10-12better deprecation warningChris McDonough
2011-10-11docstringChris McDonough
2011-10-11docstringChris McDonough
2011-10-11docstringChris McDonough
2011-10-11Convert unicode tokens to 'str'Brian Sutherland
This was resulting in unicode cookie values (and thus headers) on Python 2 causing mod_wsgi to complain: TypeError: expected string object for header value PEP 3333 also says: "Native" strings (which are always implemented using the type named str) that are used for request/response headers and metadata So mod_wsgi is right to complain about unicode headers and Pyramid is wrong to send them.
2011-10-09capitalizeChris McDonough
2011-10-09remove unused codeChris McDonough
2011-10-09remove unused importChris McDonough
2011-10-09we no longer support 2.4 or 2.5Chris McDonough
2011-10-09deal better with py3Chris McDonough
2011-10-09get scaffold functests to passChris McDonough
2011-10-09close nativeioChris McDonough
2011-10-09first few copydir testsChris McDonough