[Checkins] SVN: grok/trunk/ Include a later version of grokcore.security.

Kevin Gill kevin at movieextras.ie
Fri Jul 3 11:45:40 EDT 2009


Log message for revision 101465:
  Include a later version of grokcore.security.
  

Changed:
  U   grok/trunk/CHANGES.txt
  U   grok/trunk/doc/upgrade.txt
  U   grok/trunk/versions.cfg

-=-
Modified: grok/trunk/CHANGES.txt
===================================================================
--- grok/trunk/CHANGES.txt	2009-07-03 15:44:55 UTC (rev 101464)
+++ grok/trunk/CHANGES.txt	2009-07-03 15:45:40 UTC (rev 101465)
@@ -18,6 +18,10 @@
 
 * changed interpreter name from 'python' to 'grokpy'
 
+* Changed the default permission to grok.View instead of zope.Public. 
+  See the `upgrade notes`_(``doc/upgrade.txt``) for more information.
+  https://bugs.launchpad.net/grok/+bug/387332
+
 1.0a4 (2009-05-21)
 ==================
 

Modified: grok/trunk/doc/upgrade.txt
===================================================================
--- grok/trunk/doc/upgrade.txt	2009-07-03 15:44:55 UTC (rev 101464)
+++ grok/trunk/doc/upgrade.txt	2009-07-03 15:45:40 UTC (rev 101465)
@@ -6,6 +6,18 @@
 describes changes involving incompatibilities or deprecations, not new
 features (please refer to ``CHANGES.txt`` for those).
 
+Upgrading to 1.0b1 (not released)
+----------------------------------
+
+* The default permission is now grok.View as a replacement for zope.Public.
+  You need to add this permission as a default permission to all
+  users (use zope.Anybody). This requires a change to site.zcml as follows.
+
+      <grant permission="grok.View"
+             principal="zope.Anybody" />
+
+  IF YOU DO NOT MAKE THIS CHANGE, ALL OF YOUR VIEWS WILL BE UNAVAILBLE FOR ANONYMOUS.
+
 Upgrading to 1.0a1
 ------------------
 

Modified: grok/trunk/versions.cfg
===================================================================
--- grok/trunk/versions.cfg	2009-07-03 15:44:55 UTC (rev 101464)
+++ grok/trunk/versions.cfg	2009-07-03 15:45:40 UTC (rev 101465)
@@ -2,7 +2,7 @@
 ClientForm = 0.2.9
 grokcore.component = 1.7
 grokcore.formlib = 1.1
-grokcore.security = 1.0
+grokcore.security = 1.1
 grokcore.view = 1.7
 grokcore.viewlet = 1.0
 grokui.admin = 0.3.2



More information about the Checkins mailing list