summaryrefslogtreecommitdiff
path: root/docs/tutorials
AgeCommit message (Collapse)Author
2011-11-28move code from login.py to views.py (like sqla tutorial)Chris McDonough
2011-11-27- The SQLAlchemy Wiki tutorial has been updated. It now usesChris McDonough
``@view_config`` decorators and an explicit database population script. Closes #359.
2011-11-26output warning to use populate command to console after alchemy scaffold ↵Chris McDonough
rendering; emit logging statements when populate is run
2011-11-18- Fix ZODB tutorial docs to match ZODB tutorial code (I removed program nameChris McDonough
from ``scan``).
2011-11-12- The ``alchemy`` scaffold has been removed.Chris McDonough
- The ``routesalchemy`` scaffold has been renamed ``alchemy``.
2011-11-11make more relocatableChris McDonough
2011-11-10Merge pull request #350 from kenmanheimer/klm/docs.tutorialCarlos de la Guardia
various tutorial changes by Ken Manheimer
2011-11-10Remove gratuitous whitespace.kenmanheimer
2011-11-10Convert absolute 'tutorial' package references that are from within thekenmanheimer
package to relative ones, to reduce brittleness, eg when the user names the package something other than 'tutorial'. - make imports relative - use plain relative URLs for resources (like stylesheets and images) in page templates. This is the last batch of this kind of change that I know about. I've exercised the changes (via the browser and the test target) in a package with an alternate name, 'zodbtutorial', as well as in a package with the default name, 'tutorial'.
2011-11-08Add a note flagging the only case where we might mislead the student tokenmanheimer
change substitute the package name they used with 'tutorial'.
2011-11-08Remove unnecessary whitespace.kenmanheimer
2011-11-08Convert absolute 'tutorial' package references that are from within thekenmanheimer
package to relative ones, to reduce brittleness, eg when the user names the package something other than 'tutorial'. - make imports relative - use plain relative URLs for resources (like stylesheets and images) in page templates.
2011-11-08Use active ("Run the Tests") rather than passive ("Running the Tests")kenmanheimer
voice for the headings.
2011-11-08No longer using request.static_url() in the demos.kenmanheimer
2011-11-08Track change of the scaffolding file names, removing 'pyramid_' prefix.kenmanheimer
2011-11-08Remove 'pyramid_' from scaffolding name used for pcreate now.Chris Shenton
2011-11-08Move test, coverage together; start and view too.Chris Shenton
Previously it was: test, start, coverage, view.
2011-11-08Note that firewalls may ask for network connection authorization.kenmanheimer
2011-11-08Use active ("Run the Tests") rather than passive ("Running the Tests")kenmanheimer
voice for the headings.
2011-11-08Swap order of the test-coverage and starting-application sections, sokenmanheimer
test-coverage comes right after the test section, and the starting-application section right before the visit-app-in-browser section.
2011-11-08Explain relative naming policies necessary to allow varying the packagekenmanheimer
name without breaking operation.
2011-11-08Convert absolute 'tutorial' package references that are from within thekenmanheimer
package to relative ones, to reduce brittleness, eg when the user names the package something other than 'tutorial'. - make imports relative - use plain relative URLs for resources (like stylesheets and images) in page templates.
2011-11-07Reverting "grammar: "people who" - it's not "to whom"."kenmanheimer
2011-11-07Correct the description to match the code.kenmanheimer
2011-10-06remove stray references to PasteChris McDonough
2011-10-06remove all reference to the paster command-line utilityChris McDonough
2011-09-23fixed up all the warning dealing ..note and ..warnmichr
added a hide toc for glossary to prevent warnings
2011-09-06prep for 1.2a6Chris McDonough
2011-09-05hail mary checkin to fix reported test failures on unknown systems that isnt ↵Chris McDonough
replicable on my own
2011-08-28clean up inappropriate discussions of ZCMLChris McDonough
2011-08-22remove time bombsChris McDonough
2011-08-22- Use [app:main] instead of a pipeline in all scaffolds and tutorialsChris McDonough
and narrative docs. - Break out awkward description of PasteDeploy entry points from project chapter into its own Paste chapter.
2011-08-20- Mention debug toolbar in tutorials.Chris McDonough
2011-08-14- The ZODB wiki tutorial now uses the ``pyramid_zodbconn`` package ratherChris McDonough
than the ``repoze.zodbconn`` package to provide ZODB integration. - The ZODB scaffold now uses the ``pyramid_zodbconn`` package rather than the ``repoze.zodbconn`` package to provide ZODB integration.
2011-08-14- All tutorials now use - The ``route_url``, ``route_path``,Chris McDonough
``resource_url``, ``static_url``, and ``current_route_url`` methods of the request rather than the function variants imported from ``pyramid.url``.
2011-08-13- Projects created via a scaffold no longer depend on the ``WebError``Chris McDonough
package at all; configuration in the ``production.ini`` file which used to require its ``error_catcher`` middleware has been removed. Configuring error catching / email sending is now the domain of the ``pyramid_exclog`` package (see https://docs.pylonsproject.org/projects/pyramid_exclog/dev/).
2011-08-11fix docs, scaffolds, and tutorials to use pyramid.includesChris McDonough
2011-08-11pyramid_tm->tmChris McDonough
2011-08-09convert tutorials to pyramid_tm+pyramid_debugtoolbarChris McDonough
2011-07-31updated wiki tutorials cssBlaise Laflamme
2011-07-30Updated all of the docs to reflect the new pyramid.* settings prefix.Michael Merickel
2011-07-21- Change all scaffolding templates that point to docs.pylonsproject.org toChris McDonough
use ``/projects/pyramid/current`` rather than ``/projects/pyramid/dev``.
2011-07-19- Fixed two typos in wiki2 (SQLA + URL Dispatch) tutorial.Chris McDonough
2011-07-19remove process=1 option; see ↵Chris McDonough
http://stackoverflow.com/questions/6703850/cant-get-pyramid-to-work-with-mod-wsgi
2011-07-12- The ``pyramid_routesalchemy`` and ``pyramid_alchemy`` scaffoldsChris McDonough
inappropriately used ``DBSession.rollback()`` instead of ``transaction.abort()`` in one place. - Wiki2 (SQLAlchemy + URL Dispatch) tutorial ``models.initialize_sql`` didn't match the ``pyramid_routesalchemy`` scaffold function of the same name; it didn't get synchronized when it was changed in the scaffold.
2011-07-02remove male pronounChris McDonough
2011-07-01fix wiki tests tooChris McDonough
2011-07-01run setup.py developChris McDonough
2011-07-01use assertEqualChris McDonough
2011-07-01- The Wiki2 tutorial "Tests" chapter had two bugs: it did not tell the userChris McDonough
to depend on WebTest, and 2 tests failed as the result of changes to Pyramid itself. These issues have been fixed.