summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki/src/views
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-08-13 01:00:39 -0400
committerChris McDonough <chrism@plope.com>2011-08-13 01:00:39 -0400
commit391402e63c1257ede0069f220ed5a1cca1b94a9b (patch)
tree014d867eff43e5f18b1723ce7d846c87c1c2e202 /docs/tutorials/wiki/src/views
parentdd25a5afd44d3fdc89782d232dfe818245e496cd (diff)
downloadpyramid-391402e63c1257ede0069f220ed5a1cca1b94a9b.tar.gz
pyramid-391402e63c1257ede0069f220ed5a1cca1b94a9b.tar.bz2
pyramid-391402e63c1257ede0069f220ed5a1cca1b94a9b.zip
- Projects created via a scaffold no longer depend on the ``WebError``
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/).
Diffstat (limited to 'docs/tutorials/wiki/src/views')
-rw-r--r--docs/tutorials/wiki/src/views/production.ini15
-rw-r--r--docs/tutorials/wiki/src/views/setup.py1
2 files changed, 0 insertions, 16 deletions
diff --git a/docs/tutorials/wiki/src/views/production.ini b/docs/tutorials/wiki/src/views/production.ini
index bd8199fb2..247d789a9 100644
--- a/docs/tutorials/wiki/src/views/production.ini
+++ b/docs/tutorials/wiki/src/views/production.ini
@@ -11,23 +11,8 @@ tm.attempts = 3
zodb_uri = file://%(here)s/Data.fs?connection_cache_size=20000
-[filter:weberror]
-use = egg:WebError#error_catcher
-debug = false
-;error_log =
-;show_exceptions_in_wsgi_errors = true
-;smtp_server = localhost
-;error_email = janitor@example.com
-;smtp_username = janitor
-;smtp_password = "janitor's password"
-;from_address = paste@localhost
-;error_subject_prefix = "Pyramid Error"
-;smtp_use_tls =
-;error_message =
-
[pipeline:main]
pipeline =
- weberror
egg:repoze.zodbconn#closer
tutorial
diff --git a/docs/tutorials/wiki/src/views/setup.py b/docs/tutorials/wiki/src/views/setup.py
index 6acc004c0..315a11fe8 100644
--- a/docs/tutorials/wiki/src/views/setup.py
+++ b/docs/tutorials/wiki/src/views/setup.py
@@ -12,7 +12,6 @@ requires = [
'pyramid_tm',
'pyramid_debugtoolbar',
'ZODB3',
- 'WebError',
'docutils',
]