[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/OFS/ApplicationControl/ServerControl/Views/Browser/tests - testServerControlView.py:1.4

Jim Fulton jim@zope.com
Fri, 20 Dec 2002 14:46:15 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/ApplicationControl/ServerControl/Views/Browser/tests
In directory cvs.zope.org:/tmp/cvs-serv13062/Zope/App/OFS/ApplicationControl/ServerControl/Views/Browser/tests

Modified Files:
	testServerControlView.py 
Log Message:
Refactored ApplicationControl so that the application controller is no
longer a root object. Rather, to avoid traversing a database object to
get to it, we create a separate RootFolder just so we can traverse it
to get to the application controller.

We (Guido and I) also renamed the global instance to have a name
starting with a lower case name. This caused the most file changes.

To do: rip out the application controller view registry in favor of
the actions menu.



=== Zope3/lib/python/Zope/App/OFS/ApplicationControl/ServerControl/Views/Browser/tests/testServerControlView.py 1.3 => 1.4 ===
--- Zope3/lib/python/Zope/App/OFS/ApplicationControl/ServerControl/Views/Browser/tests/testServerControlView.py:1.3	Wed Jul 17 12:54:16 2002
+++ Zope3/lib/python/Zope/App/OFS/ApplicationControl/ServerControl/Views/Browser/tests/testServerControlView.py	Fri Dec 20 14:45:44 2002
@@ -15,7 +15,7 @@
 from unittest import TestCase, TestSuite, main, makeSuite
 
 from Zope.App.OFS.ApplicationControl.ApplicationControl import \
-  ApplicationController
+  applicationController
 from Zope.App.OFS.ApplicationControl.ServerControl.IServerControl import \
   IServerControl
 from \
@@ -37,13 +37,13 @@
               IServerControl, ServerControl())
 
         test_serverctrl = self._TestView__newView(
-            ApplicationController,
+            applicationController,
             {'shutdown': 1},
             )
         test_serverctrl.action()
 
         test_serverctrl = self._TestView__newView(
-            ApplicationController,
+            applicationController,
             {'restart': 1},
             )
         test_serverctrl.action()