[Checkins] SVN: grok/trunk/doc/upgrade.txt add note about updating install_requires needing to include the grok.adminui package

Kevin Teague kevin at bud.ca
Fri Sep 26 05:29:22 EDT 2008


Log message for revision 91502:
  add note about updating install_requires needing to include the grok.adminui package

Changed:
  U   grok/trunk/doc/upgrade.txt

-=-
Modified: grok/trunk/doc/upgrade.txt
===================================================================
--- grok/trunk/doc/upgrade.txt	2008-09-26 09:15:39 UTC (rev 91501)
+++ grok/trunk/doc/upgrade.txt	2008-09-26 09:29:21 UTC (rev 91502)
@@ -19,7 +19,7 @@
     class MySkin(grok.Skin):
         grok.layer(IMyLayer)
 
-  you can now simply write::
+  You can now simply write::
 
     class IMyLayer(grok.IBrowserRequest):
         grok.skin('myskin')
@@ -27,7 +27,22 @@
   As you can see, ``IGrokLayer`` has also been removed, in favour of
   the exposure of ``IBrowserRequest``.
 
+* The ``grok.admin`` subpackage has been factored out to a separate
+  package ``grokui.admin``. To have the Grok admin UI available in
+  your environment, add ``grokui.admin`` to the required packages in
+  the ``setup.py`` of your package.
 
+  A new Grok application will have an install_requires parameter that
+  looks like this::
+  
+      install_requires=['setuptools',
+                        'grok',
+                        'grok.adminui',
+                        'z3c.testsetup',
+                        # Add extra requirements here
+                        ],
+
+
 Upgrading to 0.13
 -----------------
 



More information about the Checkins mailing list