summaryrefslogtreecommitdiff
path: root/docs/narr/MyProject
AgeCommit message (Collapse)Author
2016-12-27narr/project - update for cookiecuttersSteve Piercy
- update source files - update project.png - fix literalinclude reference in logging
2016-12-09Added configuration for ipv6 in .ini files.Martin
2016-12-07Changed 'host' and 'port' configuration to a new 'listen' style that is now ↵Martin
supported by waitress server.
2016-12-06Revert "Changed 'host' and 'port' configuration to a new 'listen' style that ↵Bert JW Regeer
…"
2016-12-06Changed 'host' and 'port' configuration to a new 'listen' style that is now ↵Martin
supported by waitress server.
2016-04-12- use an environment variable and venv. See ↵Steve Piercy
https://github.com/Pylons/pyramid/pull/2468#discussion_r59311019 - rename stanza from `testing_extras` to `tests_require` - switch from nose to pytest
2016-04-12- fix readme in narr/MyProject (used in project.rst and testing.rst)Steve Piercy
2016-04-11remove theme.min.css, it serves no purposeMichael Merickel
2016-04-11- add trailing line endingSteve Piercy
2016-04-11- update narr/project.rst to use pip instead of setup.pySteve Piercy
- update starter scaffold tests and setup.py (used in `narr/project.rst` and `narr/testing.rst`) - update links to documentation
2015-12-14- Remove broken integration test example from testing and source file, per #2172Steve Piercy
- Update functional test with explicit instructions and to sync with actual starter scaffold
2015-12-08update narrative docs and literalinclude source files that use the starter ↵Steve Piercy
scaffold to reflect its current state
2014-11-25Include code examples for integration and functional tests in docs #1001Matt Russell
Wrap lines as per convention.
2014-04-24Replaced non-ascii copyright character with HTML equivalent.Fenton Travers
2014-04-08Drop setup.cfg from scaffoldsWichert Akkerman
Since setup.cfg is no longer needed for Babel, and no scaffold or documentation references nose there is no need to keep them.
2014-04-08Remove Babel from all setup.cfg filesWichert Akkerman
2014-01-03modified MyProject srcBlaise Laflamme
2013-09-05update the MyProject example app to use pyramid_chameleonMichael Merickel
2013-08-03"Web Application Development Framework" -> "Web Framework". Yay.Paul Everitt
2013-03-04fix #311Tshepang Lekhonkhobe
2012-11-29Sync MyProject files with the starter scaffoldPatricio Paez
- Line numbers are mentioned only in the Creating a Pyramid Project chapter; those that are affected were updated.
2012-07-29prettify CSS stored in docs tutorialsDavid Gay
2012-03-17- Remove references to do-nothing ``pyramid.debug_templates`` setting in allChris McDonough
Pyramid-provided ``.ini`` files. This setting previously told Chameleon to render better exceptions; now Chameleon always renders nice exceptions regardless of the value of this setting. Fixes #491.
2012-02-19- Put ``pyramid.includes`` targets within ini files in scaffolds on separateChris McDonough
lines in order to be able to tell people to comment out only the ``pyramid_debugtoolbar`` line when they want to disable the toolbar.
2012-01-02have sample scaffold depend on waitressChris McDonough
2012-01-02- Use the ``waitress`` WSGI server instead of ``wsgiref`` in scaffolding.Chris McDonough
2011-12-09fix links againChris McDonough
2011-12-09fix template linksChris 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-11-26fix to match starter packageChris McDonough
2011-11-12make myproject project relocatable (as per Ken's changes)Chris McDonough
2011-10-06remove stray references to PasteChris McDonough
2011-10-06remove all reference to the paster command-line utilityChris McDonough
2011-08-22fix stray inclusion of weberror; move manifest descriptionChris 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-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-09fix project.rst to deal with scaffold changesChris McDonough
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-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-27this line is too long to fit in the book; cheatChris McDonough
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-21include txt, mako, xml, htmlChris McDonough
2011-01-21- Add a ``MANIFEST.in`` file to each paster template. SeeChris McDonough
https://github.com/Pylons/pyramid/issues#issue/95 Closes issue #95.
2011-01-21deal with the addition of production.iniChris McDonough
2011-01-12Reformatted myproject mytemplate.ptBlaise Laflamme
2011-01-12Changed google font link and use request.static_url in myprojectBlaise Laflamme
2011-01-12Changed some references from pylonshq.com to pylonsproject.orgBlaise Laflamme
2011-01-12FeaturesChris McDonough
-------- - ``pyramid.testing.setUp`` and ``pyramid.testing.tearDown`` have been undeprecated. They are now the canonical setup and teardown APIs for test configuration, replacing "direct" creation of a Configurator. This is a change designed to provide a facade that will protect against any future Configurator deprecations. Paster Templates ---------------- - All paster templates now use ``pyramid.testing.setUp`` and ``pyramid.testing.tearDown`` rather than creating a Configurator "by hand" within their ``tests.py`` module, as per decision in features above. Documentation ------------- - The wiki and wiki2 tutorials now use ``pyramid.testing.setUp`` and ``pyramid.testing.tearDown`` rather than creating a Configurator "by hand", as per decision in features above. - The "Testing" narrative chapter now explains ``pyramid.testing.setUp`` and ``pyramid.testing.tearDown`` instead of Configurator creation and ``Configurator.begin()`` and ``Configurator.end()``.