summaryrefslogtreecommitdiff
path: root/docs/tutorials
AgeCommit message (Collapse)Author
2011-05-05Fixed some line numbers in the docs.Michael Merickel
2011-05-05Fixed a bug in the wiki2/auth tutorial.Michael Merickel
2011-04-24Merge branch 'zodb-tutorial-test-reorg' of https://github.com/ppaez/pyramid ↵Chris McDonough
into ppaez-zodb-tutorial-test-reorg
2011-04-22fix merge conflictsChris McDonough
2011-04-22- Make sure deprecation warnings aren't raised when tests are run.Chris McDonough
- Modify documentation for cross-referencing. - Use add_view(viewname) syntax rather than add_view(view=viewname) syntax for normalization. - Use warnings.warn rather than zope.deprecated in order to make testing easier. - Move tests which test deprecated methods of configurator to a separate test case.
2011-04-20Sync with SQLAlchemy wiki tutorialPatricio Paez
2011-04-20Adding Tests in the ZODB wiki tutorialPatricio Paez
- New section in the main index - Move Model and View tests there - Added Functional tests
2011-04-20Fixed typos and added clarifications in a tutorialKirk Strauser
I was working through the wiki2 tutorial this morning and found some slightly confusing bits. As I went along, I added the suggested changes to my local files to make them match the tutorial's version, but found several times that key parts were missing. I'm not new to Python so this didn't slow me down, but thought some clarifications might help new users.
2011-04-20Upgraded the url dispatch tutorials to use add_view.Michael Merickel
2011-04-16Consolidate two identical paragraphsPatricio Paez
2011-04-16ZODB tutorial Adding Authorization reorganizePatricio Paez
- Sections sorted by general, views, templates - List steps in the introduction
2011-04-16Improve ZODB tutorial (Adding Authorization)Patricio Paez
- Consolidate two sections and promote some to first level - Add a couple of terms
2011-04-10Wrong attribute name; closes #146.Chris McDonough
2011-03-31Move Viewing the Application in a Browser upPatricio Paez
2011-03-31Fix typos in the tutorialsPatricio Paez
2011-03-31Sync the Defining Views intro with the SQLAlchemy tutorialPatricio Paez
2011-03-31Sync note with SQLAlchemy tutorialPatricio Paez
2011-03-30Sync Declaring Dependencies with the SQLAlchemy tutorialPatricio Paez
2011-03-30Move the Declaring Dependencies topic to the Defining Views sectionPatricio Paez
2011-03-26Simplify the Defining the Domain Model section in the ZODB tutorialPatricio Paez
and standardize with the SQLAlchemy tutorial
2011-03-24It was decided that pyramid would undergo a terminology change.Joe Dallago
'Paster templates' will now be refered to as 'scaffolds,' while 'rendered templates' will remain as 'templates.' I have changed the docs to reflect this change in terminology.
2011-03-22Merge branch 'cguardia-master'Chris McDonough
2011-03-21changed mentions of repoze.tm to repoze.tm2 to fix issue 151cguardia
2011-03-20review changes to sqla tutorialChris McDonough
2011-03-15Restructured the routes wiki tutorial to make it easier to follow along. ↵Carlos de la Guardia
Moved the routes tutorial above the traversal tutorial.
2011-03-02Closes #128Chris McDonough
2011-02-23mirror virhilo's changes to views tutorial package in authorization stepChris McDonough
2011-02-23normalized test cases in wiki2 tutorialŁukasz Fidosz
2011-02-16fix tutorial wordingChris McDonough
2011-02-15fixed typo in docs in wiki2 tutorialŁukasz Fidosz
2011-02-05fix conflictsChris McDonough
2011-02-03Corrected a/an usage and also clarified "deployment" to mean to a production ↵Chris Beelby
system (as opposed to deploying to a development, QA, etc... machine)
2011-01-30Typo - "tutorial.models.Wiki" should be "tutorial.models.Page"Claus Conrad
2011-01-30had to remove flow of auth chapter due to space constraintsChris McDonough
2011-01-30fix too-long linesChris McDonough
2011-01-30fix too-long linesChris McDonough
2011-01-30fix too-long linesChris McDonough
2011-01-29- Added ``egg:repoze.retry#retry`` middleware to the WSGI pipeline in ZODBChris McDonough
templates (retry ZODB conflict errors which occur in normal operations).
2011-01-29Merge branch 'master' of https://github.com/osmaker/pyramid into osmaker-masterChris McDonough
2011-01-29- Moved "Using ZODB With ZEO" and "Using repoze.catalog Within Pyramid"Chris McDonough
tutorials out of core documentation and into the Pyramid Tutorials site (http://docs.pylonsproject.org/projects/pyramid_tutorials/dev/).
2011-01-29fix too-long lines in tutorialsChris McDonough
2011-01-29too-long lineChris McDonough
2011-01-29too-long linesChris McDonough
2011-01-29too-long linesChris McDonough
2011-01-28minor grammar fixes ('a' vs 'an')Kyle Johnson
2011-01-28docutils necessary as per tutorial flowChris McDonough
2011-01-28dont use tab-width directive (older sphinx does not support, need to build ↵Chris McDonough
book with older sphinx)
2011-01-28convert all tabs to spaces in templates (sorry, blaise, i may have to use an ↵Chris McDonough
older version of sphinx which doesnt respect tab-width)
2011-01-25- Use © instead of copyright symbol in paster templates / tutorialChris McDonough
templates for the benefit of folks who cutnpaste and save to a non-UTF8 format.
2011-01-22- The ``production.ini`` generated by all paster templates now have anChris McDonough
effective logging level of WARN, which prevents e.g. SQLAlchemy statement logging and other inappropriate output. - The ``production.ini`` of the ``pyramid_routesalchemy`` and ``pyramid_alchemy`` paster templates did not have a ``sqlalchemy`` logger section, preventing ``paster serve production.ini`` from working. - The ``pyramid_routesalchemy`` and ``pyramid_alchemy`` paster templates used the ``{{package}}`` variable in a place where it should have used the ``{{project}}`` variable, causing applications created with uppercase letters e.g. ``paster create -t pyramid_routesalchemy Dibbus`` to fail to start when ``paster serve development.ini`` was used against the result. See https://github.com/Pylons/pyramid/issues/#issue/107 Closes #107