[Checkins] SVN: grokproject/trunk/ Merge changes from 1.0-maintenance branch back into trunk.

Uli Fouquet uli at gnufix.de
Sat Jan 23 13:31:26 EST 2010


Log message for revision 108410:
  Merge changes from 1.0-maintenance branch back into trunk.

Changed:
  U   grokproject/trunk/CHANGES.txt
  U   grokproject/trunk/grokproject/ext_eggs_paster.cfg
  U   grokproject/trunk/grokproject/template_paste/etc/debug.ini.in_tmpl
  U   grokproject/trunk/grokproject/template_paste/setup.py_tmpl

-=-
Modified: grokproject/trunk/CHANGES.txt
===================================================================
--- grokproject/trunk/CHANGES.txt	2010-01-23 17:52:16 UTC (rev 108409)
+++ grokproject/trunk/CHANGES.txt	2010-01-23 18:31:26 UTC (rev 108410)
@@ -15,6 +15,14 @@
   fail due to unmet version constraints.
 
 
+1.0 (2009-10-07)
+----------------
+
+* The ``debug.ini`` file now by default configures the Unuathorized
+  exception to not to be reraised. This will make sure Zope's authentication
+  mechanism keep working when using the ``z3c.evalexception`` middleware.
+
+
 1.0b1 (2009-09-17)
 ------------------
 

Modified: grokproject/trunk/grokproject/ext_eggs_paster.cfg
===================================================================
--- grokproject/trunk/grokproject/ext_eggs_paster.cfg	2010-01-23 17:52:16 UTC (rev 108409)
+++ grokproject/trunk/grokproject/ext_eggs_paster.cfg	2010-01-23 18:31:26 UTC (rev 108410)
@@ -1,7 +1,6 @@
 Paste = 1.7.2
 PasteDeploy = 1.3.2
 PasteScript = 1.7.3
-grokcore.startup = 0.2
 grokui.admin = 0.4.0
 setuptools = 0.6c9
 collective.recipe.template = 1.4.0

Modified: grokproject/trunk/grokproject/template_paste/etc/debug.ini.in_tmpl
===================================================================
--- grokproject/trunk/grokproject/template_paste/etc/debug.ini.in_tmpl	2010-01-23 17:52:16 UTC (rev 108409)
+++ grokproject/trunk/grokproject/template_paste/etc/debug.ini.in_tmpl	2010-01-23 18:31:26 UTC (rev 108410)
@@ -53,8 +53,9 @@
 next = zope
 
 [app:zope]
-use = egg:${egg}
+use = egg:${egg}#debug
 filter-with = translogger
+exempt-exceptions = zope.security.interfaces.IUnauthorized
 
 [server:main]
 use = egg:Paste#http

Modified: grokproject/trunk/grokproject/template_paste/setup.py_tmpl
===================================================================
--- grokproject/trunk/grokproject/template_paste/setup.py_tmpl	2010-01-23 17:52:16 UTC (rev 108409)
+++ grokproject/trunk/grokproject/template_paste/setup.py_tmpl	2010-01-23 18:31:26 UTC (rev 108410)
@@ -8,7 +8,7 @@
       long_description="""\
 ${long_description|nothing}""",
       # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
-      classifiers=[], 
+      classifiers=[],
       keywords=${repr(keywords)|empty},
       author=${repr(author)|empty},
       author_email=${repr(author_email)|empty},
@@ -31,5 +31,6 @@
       ${package}-ctl = grokcore.startup:zdaemon_controller
       [paste.app_factory]
       main = grokcore.startup:application_factory
+      debug = grokcore.startup:debug_application_factory
       """,
       )



More information about the checkins mailing list