| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-01-22 | - More informative error message when a ``config.include`` cannot find an | Chris McDonough | |
| ``includeme``. See https://github.com/Pylons/pyramid/pull/392. Closes #392. | |||
| 2012-01-21 | garden | Chris McDonough | |
| 2012-01-21 | - The ``prequest`` script would fail when used against URLs which did not | Chris McDonough | |
| return HTML or text. See https://github.com/Pylons/pyramid/issues/381 Fixes #381. | |||
| 2012-01-21 | - The process will now restart when ``pserve`` is used with the ``--reload`` | Chris McDonough | |
| flag when the ``development.ini`` file (any any other .ini file in use) is changed. See https://github.com/Pylons/pyramid/issues/377 and https://github.com/Pylons/pyramid/pull/411 Fixes #377. | |||
| 2012-01-20 | prep for 1.3a6 | Chris McDonough | |
| 2012-01-19 | Backport fix for issue #407 to 1.3 branch. | Chris McDonough | |
| 2012-01-19 | - When using a dotted name for a ``view`` argument to | Chris McDonough | |
| ``Configurator.add_view`` that pointed to a class with a ``view_defaults`` decorator, the view defaults would not be applied. See https://github.com/Pylons/pyramid/issues/396 . Fixes #396. | |||
| 2012-01-19 | garden | Chris McDonough | |
| 2012-01-16 | - Responses generated by Pyramid's ``static_view`` now use | Chris McDonough | |
| a ``wsgi.file_wrapper`` (see http://www.python.org/dev/peps/pep-0333/#optional-platform-specific-file-handling) when one is provided by the web server. | |||
| 2012-01-11 | Updated the changelogs. | Michael Merickel | |
| 2012-01-09 | prep for 1.3a5 | Chris McDonough | |
| 2012-01-06 | - The ``path_info`` route and view predicates now match against | Chris McDonough | |
| ``request.upath_info`` (Unicode) rather than ``request.path_info`` (indeterminate value based on Python 3 vs. Python 2). This has to be done to normalize matching on Python 2 and Python 3. | |||
| 2012-01-06 | - The ``pyramid.view.view_defaults`` decorator did not work properly when | Chris McDonough | |
| more than one view relied on the defaults being different for configuration conflict resolution. See https://github.com/Pylons/pyramid/issues/394. Closes #394. | |||
| 2012-01-05 | prep for 1.3a4 | Chris McDonough | |
| 2012-01-05 | garden | Chris McDonough | |
| 2012-01-05 | - Using a dynamic segment named ``traverse`` in a route pattern like this:: | Chris McDonough | |
| config.add_route('trav_route', 'traversal/{traverse:.*}') Would cause a ``UnicodeDecodeError`` when the route was matched and the matched portion of the URL contained any high-order characters. See also https://github.com/Pylons/pyramid/issues/385 . | |||
| 2012-01-05 | garden | Chris McDonough | |
| 2012-01-03 | - The documentation of ``pyramid.events.subscriber`` indicated that using it | Chris McDonough | |
| as a decorator with no arguments like this:: @subscriber() def somefunc(event): pass Would register ``somefunc`` to receive all events sent via the registry, but this was untrue. Instead, it would receive no events at all. This has now been fixed and the code matches the documentation. See also https://github.com/Pylons/pyramid/issues/386 Closes #386 | |||
| 2012-01-02 | - Use the ``waitress`` WSGI server instead of ``wsgiref`` in scaffolding. | Chris McDonough | |
| 2011-12-30 | Updated the changelog for Request.set_property. | Michael Merickel | |
| 2011-12-21 | prep for 1.3a3 | Chris McDonough | |
| 2011-12-21 | - Add undocumented ``__discriminator__`` API to derived view callables. | Chris McDonough | |
| e.g. ``adapters.lookup(...).__discriminator__(context, request)``. It will be used by superdynamic systems that require the discriminator to be used for introspection after manual view lookup. | |||
| 2011-12-16 | - Removed the "Running Pyramid on Google App Engine" tutorial from the main | Chris McDonough | |
| docs. It survives on in the Cookbook (http://docs.pylonsproject.org/projects/pyramid_cookbook/en/latest/gae.html). Rationale: it provides the correct info for the Python 2.5 version of GAE only, and this version of Pyramid does not support Python 2.5. | |||
| 2011-12-15 | - Added a section named "Making Your Script into a Console Script" in the | Chris McDonough | |
| "Command-Line Pyramid" chapter. | |||
| 2011-12-15 | - Normalized exit values and ``-h`` output for all ``p*`` scripts | Chris McDonough | |
| (``pviews``, ``proutes``, etc). | |||
| 2011-12-15 | finish prequest feature | Chris McDonough | |
| 2011-12-14 | prep for 1.3a2 | Chris McDonough | |
| 2011-12-14 | - Changed scaffolding machinery around a bit to make it easier for people who | Chris McDonough | |
| want to have extension scaffolds that can work across Pyramid 1.0.X, 1.1.X, 1.2.X and 1.3.X. See the new "Creating Pyramid Scaffolds" chapter in the narrative documentation for more info. - Added an API docs chapter for ``pyramid.scaffolds``. - Added a narrative docs chapter named "Creating Pyramid Scaffolds". - The ``template_renderer`` method of ``pyramid.scaffolds.PyramidScaffold`` was renamed to ``render_template``. If you were overriding it, you're a bad person, because it wasn't an API before now. But we're nice so we're letting you know. | |||
| 2011-12-14 | add a backwards compatibility knob to pcreate to emulate paster create ↵ | Chris McDonough | |
| handling of --list-templates | |||
| 2011-12-14 | Flesh out new view_defaults feature and add docs, change notes, and add to ↵ | Chris McDonough | |
| whatsnew. | |||
| 2011-12-09 | prep for 1.3a1 | Chris McDonough | |
| 2011-12-08 | - New APIs: ``pyramid.path.AssetResolver`` and | Chris McDonough | |
| ``pyramid.path.DottedNameResolver``. The former can be used to resolve asset specifications, the latter can be used to resolve dotted names to modules or packages. | |||
| 2011-12-06 | garden | Chris McDonough | |
| 2011-12-06 | garden | Chris McDonough | |
| 2011-12-05 | - Removed the ``pyramid.renderers.renderer_from_name`` function. It has been | Chris McDonough | |
| deprecated since Pyramid 1.0, and was never an API. | |||
| 2011-12-05 | add whatsnew-1.3; garden | Chris McDonough | |
| 2011-12-05 | the starter scaffold now uses url dispatch; add a minimal section about ↵ | Chris McDonough | |
| using another WSGI server; random docs fixes | |||
| 2011-12-04 | merge feature.introspection branch | Chris McDonough | |
| 2011-12-04 | allow config.action to take arbitrary kw args | Chris McDonough | |
| 2011-12-03 | add skeleton for using introspection chapter | Chris McDonough | |
| 2011-12-02 | garden | Chris McDonough | |
| 2011-11-30 | docs; todo; coverage for Introspector | Chris McDonough | |
| 2011-11-29 | move register method from IIntrospector back to IIntrospectable; provide ↵ | Chris McDonough | |
| better conflict reporting and a more useful ActionInfo object | |||
| 2011-11-28 | garden | Chris McDonough | |
| 2011-11-27 | - The SQLAlchemy Wiki tutorial has been updated. It now uses | Chris McDonough | |
| ``@view_config`` decorators and an explicit database population script. Closes #359. | |||
| 2011-11-27 | - Added ``setup_logging`` API function to the ``pyramid.paster`` module. | Chris McDonough | |
| This function sets up Python logging according to the logging configuration in a PasteDeploy ini file. | |||
| 2011-11-26 | garden | Michael Merickel | |
| 2011-11-27 | add get_appsettings API to paster | Chris McDonough | |
| 2011-11-21 | typo | Michael Merickel | |
| 2011-11-21 | Garden (ref commit #2cf5d28). | Chris McDonough | |
