summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-01-18modernize design defense after zcml externalizationChris McDonough
2011-01-18Merge branch 'zcmlless'Chris McDonough
2011-01-18- Most references to ZCML in narrative chapters have been removed orChris McDonough
redirected to ``pyramid_zcml`` locations.
2011-01-18chameleon needs a threadlocal registry for looking up translationsChris McDonough
2011-01-18readd coverage for code that was only exercised by zcml integration testsChris McDonough
2011-01-18descriptionsChris McDonough
2011-01-18- The ``make_app`` function has been removed from the ``pyramid.router``Chris McDonough
module. It continues life within the ``pyramid_zcml`` package. This leaves the ``pyramid.router`` module without any API functions. - The ``configure_zcml`` setting within the deployment settings (within ``**settings`` passed to a Pyramid ``main`` function) has ceased to have any meaning. - The ``starter_zcml`` paster template has been moved to the ``pyramid_zcml`` package. - The ``bfg2pyramid`` script now converts ZCML include tags that have ``repoze.bfg.includes`` as a package attribute to the value ``pyramid_zcml``. For example, ``<include package="repoze.bfg.includes">`` will be converted to ``<include package="pyramid_zcml">``. - The ``load_zcml`` method of a Configurator has been removed from the Pyramid core. Loading ZCML is now a feature of the ``pyramid_zcml`` package, which can be downloaded from PyPI. Documentation for the package should be available via http://pylonsproject.org, which describes how to get this method back after depending upon ``pyramid_zcml`` as an ``install_requires`` dependency. - The ``pyramid.includes`` subpackage has been removed. ZCML files which use include the package ``pyramid.includes`` (e.g. ``<include package="pyramid.includes">``) now must include the ``pyramid_zcml`` package instead (e.g. ``<include package="pyramid_zcml"/>). - The "Declarative Configuration" narrative chapter has been removed (it was moved to the ``pyramid_zcml`` pakcage). - The add_directive method now accepts an "action_wrap" flag. - Fix some orphaned references. - Remove some docstring references to ZCML directives. - All integration test fixtures have been changed to use imperative configuration rather than ZCML configuration.
2011-01-16remove references to pylons paster templatesChris McDonough
2011-01-16remove handler reference from latexindexChris McDonough
2011-01-16- The ``pylons_minimal``, ``pylons_basic`` and ``pylons_sqla`` pasterChris McDonough
templates were removed. Use ``pyramid_sqla`` (available from PyPI) as a generic replacement for Pylons-esque development. - All references to ``add_handler`` and the ``handler`` ZCML directive have been removed from the docs, and stubs which point to ``pylons_handlers`` package have replaced them.
2011-01-16Remove configurator.add_handler, handler-related functions and methods from ↵Chris McDonough
pyramid.view, handler ZCML directive. This functionality is to be moved to a "pyramid_handlers" package. Fix add_directive to properly persist directives across configurator creations.
2011-01-16document 'includeme'Chris McDonough
2011-01-16gardenChris McDonough
2011-01-16- When ``Configurator.include`` is passed a *module* as an argument, itChris McDonough
defaults to attempting to find and use a callable named ``includeme`` within that module. This makes it possible to use ``config.include('some.module')`` rather than ``config.include('some.module.somefunc')`` as long as the include function within ``some.module`` is named ``includeme``.
2011-01-16gardenChris McDonough
2011-01-16use correct renderingChris McDonough
2011-01-16- Add ``add_directive`` method to configurator, which allows frameworkChris McDonough
extenders to add methods to the configurator (ala ZCML directives).
2011-01-16Merge branch 'gawel-config_extend'Chris McDonough
2011-01-16simplify slightlyChris McDonough
2011-01-15Merge branch 'config_extend' of git://github.com/gawel/pyramid into ↵Chris McDonough
gawel-config_extend
2011-01-15credit john shipman appropriatelyChris McDonough
2011-01-15Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2011-01-15Merge branch 'longlines' of git://github.com/johnwshipman/pyramidBlaise Laflamme
2011-01-15Corrected the format of the date on my signature.John Shipman
2011-01-15Signed CONTRIBUTORS.txt.John Shipman
2011-01-15Docs updateRalph Bean
- One small typo fix - Added mention of MANIFEST.in for bundling non-Python-source files
2011-01-15General reformatting of the wiki and wiki2 tutorials to eliminateJohn Shipman
any overly long lines in the PDF rendering. Changes to .rst files: (docs/tutorials/wiki/authorization.rst) (docs/tutorials/wiki/definingviews.rst) (docs/tutorials/wiki2/authorization.rst) (docs/tutorials/wiki2/definingviews.rst) 1. For included templates, added :tab-width: 2 options. 2. wiki2/authorization.rst: Wrong markup for file names __init__.py and views.py just after the subhead "Adding security.py". Changes to .py files: Folded a few long lines. (docs/tutorials/wiki/src/basiclayout/tutorial/views.py) (docs/tutorials/wiki/src/authorization/tutorial/views.py) (docs/tutorials/wiki/src/views/tutorial/views.py) (docs/tutorials/wiki2/src/basiclayout/tutorial/models.py) (docs/tutorials/wiki2/src/models/tutorial/models.py) Changes to .pt files: Broke long lines; reformatted for 2-space indentation using tabs. (docs/tutorials/wiki/src/authorization/tutorial/templates/edit.pt) (docs/tutorials/wiki/src/authorization/tutorial/templates/login.pt) (docs/tutorials/wiki/src/authorization/tutorial/templates/view.pt) (docs/tutorials/wiki/src/views/tutorial/templates/edit.pt) (docs/tutorials/wiki/src/views/tutorial/templates/view.pt) (docs/tutorials/wiki2/src/authorization/tutorial/templates/edit.pt) (docs/tutorials/wiki2/src/authorization/tutorial/templates/login.pt) (docs/tutorials/wiki2/src/authorization/tutorial/templates/view.pt) (docs/tutorials/wiki2/src/views/tutorial/templates/edit.pt) (docs/tutorials/wiki2/src/views/tutorial/templates/view.pt)
2011-01-15- URL Dispatch properly handles a '.*' or '*' appearing in a regex matchBen Bangert
when used inside brackets. Resolve Issue #90.
2011-01-14Added tab-width: 2 to literalinclude to see if it formats better :)Blaise Laflamme
2011-01-14- Add ``charset`` attribute to ``pyramid.testing.DummyRequest``Chris McDonough
(unconditionally ``UTF-8``).
2011-01-14gardenChris McDonough
2011-01-13rendering fixesChris McDonough
2011-01-13Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2011-01-13First pass at documenting the __action_decorator__ feature of a view handler.Rob Miller
2011-01-12ignore emacs backup filesRob Miller
2011-01-12Minor edits, typo fixes, term consistency changes.Rob Miller
2011-01-12Reformatted myproject mytemplate.ptBlaise Laflamme
2011-01-12Changed google font link and use request.static_url in myprojectBlaise Laflamme
2011-01-12Changed google font link in tutorialsBlaise Laflamme
2011-01-12Changed google font link in paster templatesBlaise Laflamme
2011-01-12Changed some references from pylonshq.com to pylonsproject.orgBlaise Laflamme
2011-01-12improve code linesGael Pasgrimaud
2011-01-12Typo: neednt -> needn't.Marius Gedminas
2011-01-12store extends in context and add attributes to instanceGael Pasgrimaud
2011-01-12fix pathChris McDonough
2011-01-12add Configurator.extend featureGael Pasgrimaud
2011-01-12gardenChris McDonough
2011-01-12- Deprecation warnings related to import of the following API functions wereChris McDonough
added: ``pyramid.traversal.find_model``, ``pyramid.traversal.model_path``, ``pyramid.traversal.model_path_tuple``, ``pyramid.url.model_url``. The instructions emitted by the deprecation warnings instruct the developer to change these method spellings to their ``resource`` equivalents. This is a consequence of the mass concept rename of "model" to "resource" performed in 1.0a7.
2011-01-12gardenChris McDonough
2011-01-12- Document the ``request.override_renderer`` attribute within the narrativeChris McDonough
"Renderers" chapter in a section named "Overriding A Renderer at Runtime".