| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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 | Added the InstancePropertyMixin to the Request. | Michael Merickel | |
| The new mixin allows adding properties to the request object which are lazily evaluated. | |||
| 2011-12-28 | typo | Chris McDonough | |
| 2011-12-21 | merge master to 1.3 branch | 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 | - Allow prequest path to have query string variables. | Chris McDonough | |
| 2011-12-15 | - Normalized exit values and ``-h`` output for all ``p*`` scripts | Chris McDonough | |
| (``pviews``, ``proutes``, etc). | |||
| 2011-12-15 | Merge branch 'feature.prequest' into 1.3-branch | Chris McDonough | |
| 2011-12-15 | finish prequest feature | Chris McDonough | |
| 2011-12-15 | Merge branch 'master' into 1.3-branch | Chris McDonough | |
| 2011-12-15 | add prequest script and entry point | Chris McDonough | |
| 2011-12-15 | Merge pull request #376 from jinty/master | Chris McDonough | |
| Fix typo in log message | |||
| 2011-12-15 | Fix typo in log message | Brian Sutherland | |
| authenticated_userid -> unauthenticated_userid | |||
| 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-14 | add view_defaults class decorator; fix mutability bug with __view_defaults__ | Chris McDonough | |
| 2011-12-12 | first cut at __view_defaults__ feature | Chris McDonough | |
| 2011-12-10 | fix docs rendering | Chris McDonough | |
| 2011-12-09 | fix links again | Chris McDonough | |
| 2011-12-09 | basic instructions | Chris McDonough | |
| 2011-12-09 | fix template links | Chris McDonough | |
| 2011-12-09 | add static views introspection category | Chris McDonough | |
| 2011-12-08 | use note instead of warning | Chris McDonough | |
| 2011-12-08 | comment | Chris McDonough | |
| 2011-12-08 | coverage and avoid whining on py27/py32 about failUnless | Chris McDonough | |
| 2011-12-08 | provide caller_path support for both asset resolver and dotted name ↵ | Chris McDonough | |
| resolver, make it the default | |||
| 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 | Support passing callable object instances WSGI applications to the | Michael Kerrin | |
| `pyramid.wsgi.wsgiapp' and `pyramid.wsgi.wsgiapp2' decorators. This allows us to configure pyramid like so: config.add_view(pyramid.wsgi.wsgiapp2(MyWSGIApp(settings))) | |||
| 2011-12-05 | failUnless/failIf -> assertTrue/assertFalse | 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 | use the project name rather than the package name in populate warning; fixes ↵ | Chris McDonough | |
| #365 | |||
| 2011-12-05 | cant mix mapping-style and tuple-style formatting in a format string; fixes #366 | Chris McDonough | |
| 2011-12-05 | Merge branch 'master' of https://github.com/aconrad/pyramid into aconrad-master | 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 | add_translation_dirs is now an action method | Chris McDonough | |
| 2011-12-04 | simplify actioninfo interface; fix actioninfos passed as tuple via _info | Chris McDonough | |
| 2011-12-04 | allow config.action to take arbitrary kw args | Chris McDonough | |
| 2011-12-04 | dont try so hard | Chris McDonough | |
| 2011-12-04 | change the ActionInfo interface to match ZCML's ParserInfo interface | Chris McDonough | |
| 2011-12-04 | make code clearer by using aliases | Chris McDonough | |
| 2011-12-04 | treat order exclusively as a grouping | Chris McDonough | |
| 2011-12-04 | resolved actions must be ordered via (order, i) to capture the intent | Chris McDonough | |
| 2011-12-03 | minor item lookup speed improvement | Alexandre Conrad | |
| 2011-12-03 | make add_route generate the right request methods introspection value | Chris McDonough | |
| 2011-12-03 | add a noop introspector (allow introspection to be turned off) | Chris McDonough | |
| 2011-12-03 | change interface of get_category | Chris McDonough | |
| 2011-12-03 | flesh out categories more | Chris McDonough | |
