summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-11-27::Atsushi Odagiri
InvalidRequestError: This Session's transaction has been rolled back due to a previous exception during flush. To begin a new transaction with this Session, first issue Session.rollback(). Original exception was: (IntegrityError) column name is not unique u'INSERT INTO models (name, value) VALUES (?, ?)' (u'root', 55)
2010-11-12fix tutorial to not update the context with the content of ↵Chris McDonough
request.matchdict, unnecessary and breaks now that request has a matchdict of None
2010-11-12add note about making static_url a method of the requestChris McDonough
2010-11-12fix two references to a nonexistent functionChris McDonough
2010-11-12- Internal: ZCML directives no longer call get_current_registry() if there'sChris McDonough
a ``registry`` attribute on the ZCML context (kill off use of threadlocals).
2010-11-11did as much agitation for this as i canChris McDonough
2010-11-11commit forgotten fileChris McDonough
2010-11-11todo gardeningChris McDonough
2010-11-11todo gardeningChris McDonough
2010-11-11stamp out inappropriate use of get_settingsChris McDonough
2010-11-11document the request.settings attribute as well as we canChris McDonough
2010-11-11FeaturesChris McDonough
-------- - The ``settings`` object which used to be available only when ``request.settings.get_settings`` was called is now available as ``registry.settings`` (e.g. ``request.registry.settings`` in view code). Deprecations ------------ - Obtaining the ``settings`` object via ``registry.{get|query}Utility(ISettings)`` is now deprecated. Instead, obtain the ``settings`` object via the ``registry.settings`` attribute. A backwards compatibility shim was added to the registry object to register the settings object as an ISettings utility when ``setattr(registry, 'settings', foo)`` is called, but it will be removed in a later release. - Obtaining the ``settings`` object via ``pyramid.settings.get_settings`` is now deprecated. Obtain it as the ``settings`` attribute of the registry now (obtain the registry via ``pyramid.threadlocal.get_registry`` or as ``request.registry``).
2010-11-11add notes about shedding threadlocalsChris McDonough
2010-11-11point at pyramid_viewgroup, todo gardeningChris McDonough
2010-11-11- SQLAlchemy+urldispach wiki (``wiki2``) tutorial updated due to changes toChris McDonough
``pyramid_routesalchemy`` paster template.
2010-11-11issue 29: paster template tests failChris McDonough
2010-11-11fix issue 32: use renderer rather than zpt render_template_to_responseChris McDonough
2010-11-10this was implemented as request.route_urlChris McDonough
2010-11-10- New API methods for ``pyramid.request.Request``: ``model_url`` andChris McDonough
``route_url``. These are simple passthroughs for their respective functions in ``pyramid.url``. - Documented the ``matchdict`` and ``matched_route`` attributes of the request object in the Request API documentation.
2010-11-10extend asbool to accept None, True, and False, and write explicit testsChris McDonough
2010-11-10- New API method: ``pyramid.settings.asbool``.Chris McDonough
2010-11-10Added class vars matchdict and matched_route toChris Rossi
pyramid.request.Request. Each is set to None.
2010-11-10Signed in blood.Chris Rossi
2010-11-10- The pylons_* paster template used the same stringChris McDonough
(``your_app_secret_string``) for the ``session.secret`` setting in the generated ``development.ini``. This was a security risk if left unchanged in a project that used one of the templates to produce production applications. It now uses a randomly generated string.
2010-11-10mention beaker differencesChris McDonough
2010-11-10add a note about tutorial updatesChris McDonough
2010-11-10fix wiki tutorial based on changes to zodb paster templateChris McDonough
2010-11-10fix project chapter to deal with paster template changesChris McDonough
2010-11-10FeaturesChris McDonough
-------- - Normalized all paster templates: each now uses the name ``main`` to represent the function that returns a WSGI application, each now uses WebError, each now has roughly the same shape of development.ini style. Bug Fixes --------- - The pylons_* paster templates erroneously used the ``{squiggly}`` routing syntax as the pattern supplied to ``add_route``. This style of routing is not supported. They were replaced with ``:colon`` style route patterns.
2010-11-10add default renderer todoChris McDonough
2010-11-10Removed extra word.Chris Rossi
2010-11-10point at the right contributing sectionChris McDonough
2010-11-09Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2010-11-09gardeningChris McDonough
2010-11-09Added my name to contributors.Blaise Laflamme
2010-11-09capitalize PyramidChris McDonough
2010-11-09Adding my name to contributers.Ben Bangert
2010-11-09Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2010-11-09sqla idiomatic suggestions from robChris McDonough
2010-11-09Sign contributor agreement.Tres Seaver
2010-11-09add contributor agreement and listChris McDonough
2010-11-09back to developmentChris McDonough
2010-11-09prep for 1.0a2Chris McDonough
2010-11-09omit foreword from latex rendering (its for bfg)Chris McDonough
2010-11-09make sure our new :app: roles dont break latex renderingChris McDonough
2010-11-09remove unnecessary wordingChris McDonough
2010-11-09issue 26: broken docs linkChris McDonough
2010-11-09- All references to Pyramid-the-application were changed from :mod:`pyramid`Chris McDonough
to :app:`Pyramid`. A custom role setting was added to ``docs/conf.py`` to allow for this. (internal)
2010-11-09the configure_zcml setting is no longer a feature of the frameworkChris McDonough
2010-11-09be helpful about which tutorial to point people atChris McDonough