summaryrefslogtreecommitdiff
path: root/pyramid
AgeCommit message (Collapse)Author
2011-12-15finish prequest featureChris McDonough
2011-12-15add prequest script and entry pointChris McDonough
2011-12-14- Changed scaffolding machinery around a bit to make it easier for people whoChris 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-14add a backwards compatibility knob to pcreate to emulate paster create ↵Chris McDonough
handling of --list-templates
2011-12-14Flesh out new view_defaults feature and add docs, change notes, and add to ↵Chris McDonough
whatsnew.
2011-12-14add view_defaults class decorator; fix mutability bug with __view_defaults__Chris McDonough
2011-12-12first cut at __view_defaults__ featureChris McDonough
2011-12-10fix docs renderingChris McDonough
2011-12-09fix links againChris McDonough
2011-12-09basic instructionsChris McDonough
2011-12-09fix template linksChris McDonough
2011-12-09add static views introspection categoryChris McDonough
2011-12-08use note instead of warningChris McDonough
2011-12-08commentChris McDonough
2011-12-08coverage and avoid whining on py27/py32 about failUnlessChris McDonough
2011-12-08provide 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`` andChris 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-06Support passing callable object instances WSGI applications to theMichael 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-05failUnless/failIf -> assertTrue/assertFalseChris McDonough
2011-12-05- Removed the ``pyramid.renderers.renderer_from_name`` function. It has beenChris McDonough
deprecated since Pyramid 1.0, and was never an API.
2011-12-05use the project name rather than the package name in populate warning; fixes ↵Chris McDonough
#365
2011-12-05cant mix mapping-style and tuple-style formatting in a format string; fixes #366Chris McDonough
2011-12-05Merge branch 'master' of https://github.com/aconrad/pyramid into aconrad-masterChris McDonough
2011-12-05the starter scaffold now uses url dispatch; add a minimal section about ↵Chris McDonough
using another WSGI server; random docs fixes
2011-12-04merge feature.introspection branchChris McDonough
2011-12-04add_translation_dirs is now an action methodChris McDonough
2011-12-04simplify actioninfo interface; fix actioninfos passed as tuple via _infoChris McDonough
2011-12-04allow config.action to take arbitrary kw argsChris McDonough
2011-12-04dont try so hardChris McDonough
2011-12-04change the ActionInfo interface to match ZCML's ParserInfo interfaceChris McDonough
2011-12-04make code clearer by using aliasesChris McDonough
2011-12-04treat order exclusively as a groupingChris McDonough
2011-12-04resolved actions must be ordered via (order, i) to capture the intentChris McDonough
2011-12-03minor item lookup speed improvementAlexandre Conrad
2011-12-03make add_route generate the right request methods introspection valueChris McDonough
2011-12-03add a noop introspector (allow introspection to be turned off)Chris McDonough
2011-12-03change interface of get_categoryChris McDonough
2011-12-03flesh out categories moreChris McDonough
2011-12-03add -t b/c alias for -s/--scaffoldChris McDonough
2011-12-03unify resolveConflicts implementation with the same impl on ↵Chris McDonough
chrism-dictactions branch of zope.configuration
2011-12-03add more content to the introspectables narr chapter; adjust introspection ↵Chris McDonough
registrations while doing so
2011-12-02prevent a scaffold rendering from being named siteChris McDonough
2011-12-02fbo pyramid_zcml: default order back to 0, don't rely on existence of ↵Chris McDonough
introspectables
2011-12-01minor cleanupsChris McDonough
2011-11-30more tests for introspectablesChris McDonough
2011-11-30add tests for introspectable; add more interface docs and expose actioninfoChris McDonough
2011-11-30fix set repr on py3Chris McDonough
2011-11-30docs; todo; coverage for IntrospectorChris McDonough
2011-11-29introspection categories differ for implicit and explicit tweensChris McDonough
2011-11-29docs and add more introspection infoChris McDonough