Commit d69a8576 authored by Hanno Schlichting's avatar Hanno Schlichting

Include waitress as a default WSGI app server.

parent be5b14bd
...@@ -54,6 +54,8 @@ Bugs Fixed ...@@ -54,6 +54,8 @@ Bugs Fixed
Features Added Features Added
++++++++++++++ ++++++++++++++
- Include waitress as a default WSGI app server.
- Add `egg:Zope2#httpexceptions` WSGI middleware. - Add `egg:Zope2#httpexceptions` WSGI middleware.
- Update available HTTP response code, 302 is now called Found. - Update available HTTP response code, 302 is now called Found.
......
...@@ -7,7 +7,6 @@ DocumentTemplate==2.13.2 ...@@ -7,7 +7,6 @@ DocumentTemplate==2.13.2
ExtensionClass==4.1.2 ExtensionClass==4.1.2
Missing==3.1 Missing==3.1
MultiMapping==3.0 MultiMapping==3.0
Paste==2.0.3
PasteDeploy==1.5.2 PasteDeploy==1.5.2
Persistence==3.0a1 Persistence==3.0a1
Products.BTreeFolder2==3.0 Products.BTreeFolder2==3.0
...@@ -40,6 +39,7 @@ six==1.10.0 ...@@ -40,6 +39,7 @@ six==1.10.0
tempstorage==3.0 tempstorage==3.0
transaction==1.6.1 transaction==1.6.1
unittest2==1.1.0 unittest2==1.1.0
waitress==0.9.0
zExceptions==3.2 zExceptions==3.2
zLOG==3.0 zLOG==3.0
zc.lockfile==1.2.1 zc.lockfile==1.2.1
......
...@@ -57,7 +57,6 @@ setup( ...@@ -57,7 +57,6 @@ setup(
'ExtensionClass', 'ExtensionClass',
'Missing', 'Missing',
'MultiMapping', 'MultiMapping',
'Paste',
'PasteDeploy', 'PasteDeploy',
'Persistence', 'Persistence',
'Products.OFSP >= 2.13.2', 'Products.OFSP >= 2.13.2',
...@@ -77,6 +76,7 @@ setup( ...@@ -77,6 +76,7 @@ setup(
'setuptools', 'setuptools',
'tempstorage', 'tempstorage',
'transaction', 'transaction',
'waitress',
'zdaemon', 'zdaemon',
'zExceptions >= 3.2', 'zExceptions >= 3.2',
'zLOG', 'zLOG',
......
...@@ -10,7 +10,7 @@ pipeline = ...@@ -10,7 +10,7 @@ pipeline =
zope zope
[server:main] [server:main]
use = egg:paste#http use = egg:waitress#main
host = 127.0.0.1 host = 127.0.0.1
port = 8080 port = 8080
......
...@@ -14,7 +14,6 @@ initgroups = 3.0 ...@@ -14,7 +14,6 @@ initgroups = 3.0
mechanize = 0.2.5 mechanize = 0.2.5
Missing = 3.1 Missing = 3.1
MultiMapping = 3.0 MultiMapping = 3.0
Paste = 2.0.3
PasteDeploy = 1.5.2 PasteDeploy = 1.5.2
Persistence = 3.0a1 Persistence = 3.0a1
persistent = 4.2.1 persistent = 4.2.1
...@@ -37,6 +36,7 @@ six = 1.10.0 ...@@ -37,6 +36,7 @@ six = 1.10.0
tempstorage = 3.0 tempstorage = 3.0
transaction = 1.6.1 transaction = 1.6.1
unittest2 = 1.1.0 unittest2 = 1.1.0
waitress = 0.9.0
WebOb = 1.6.1 WebOb = 1.6.1
WebTest = 2.0.23 WebTest = 2.0.23
zc.lockfile = 1.2.1 zc.lockfile = 1.2.1
......
...@@ -25,7 +25,6 @@ setuptools = 24.3.0 ...@@ -25,7 +25,6 @@ setuptools = 24.3.0
snowballstemmer = 1.2.1 snowballstemmer = 1.2.1
Sphinx = 1.4.5 Sphinx = 1.4.5
testtools = 2.2.0 testtools = 2.2.0
waitress = 0.9.0
z3c.checkversions = 0.5 z3c.checkversions = 0.5
zc.buildout = 2.5.2 zc.buildout = 2.5.2
zc.recipe.egg = 2.0.3 zc.recipe.egg = 2.0.3
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment