[Checkins] SVN: zope.testrecorder/trunk/ readme was really more of an install doc

Philipp von Weitershausen philikon at philikon.de
Thu Jun 22 17:38:28 EDT 2006


Log message for revision 68795:
  readme was really more of an install doc
  

Changed:
  A   zope.testrecorder/trunk/INSTALL.txt
  D   zope.testrecorder/trunk/README.txt

-=-
Copied: zope.testrecorder/trunk/INSTALL.txt (from rev 68791, zope.testrecorder/trunk/README.txt)
===================================================================
--- zope.testrecorder/trunk/README.txt	2006-06-22 20:41:20 UTC (rev 68791)
+++ zope.testrecorder/trunk/INSTALL.txt	2006-06-22 21:38:28 UTC (rev 68795)
@@ -0,0 +1,26 @@
+Installing the Test Recorder
+============================
+
+This package is designed to be deployable in Zope 2 or Zope 3
+applications.
+
+For a Zope 2 system, drop this package into the products directory of
+the Zope instance and restart the instance.  After restart, it will be
+possible to add a ``Test Recorder`` object in the ZMI.  The Test
+Recorder Zope object mainly provides the ability to traverse to the
+html and .js files that make up the recorder.
+
+In a Zope 3 or Five system, you only need to register the ``html``
+directory of this package as a ``resourceDirectory`` using ZCML.  The
+following example ZCML directive will register the test recorder
+resources and make them available through a resource URL such as
+'/@@/recorder/index.html'.
+
+    <browser:resourceDirectory
+      name="recorder"
+      directory="html"
+      layer="default"
+      />
+
+
+Needs more docs.

Deleted: zope.testrecorder/trunk/README.txt
===================================================================
--- zope.testrecorder/trunk/README.txt	2006-06-22 21:35:48 UTC (rev 68794)
+++ zope.testrecorder/trunk/README.txt	2006-06-22 21:38:28 UTC (rev 68795)
@@ -1,30 +0,0 @@
-------------------------------------------------------------------------------
-Test Recorder
-------------------------------------------------------------------------------
-
-The test recorder is a browser-based tool to support the rapid development 
-of functional tests for Web-based systems and applications.
-
-This package is designed to be deployable in Zope 2 or Zope 3 applications.
-
-For a Zope 2 system, drop this package into the products directory of the 
-Zope instance and restart the instance. After restart, it will be possible 
-to add a 'Test Recorder' object in the ZMI. The Test Recorder Zope object 
-mainly provides the ability to traverse to the html and .js files that 
-make up the recorder.
-
-In a Zope 3 system, you only need to register the 'html' directory of 
-this package as a resourceDirectory using ZCML. The following example ZCML 
-directive will register the test recorder resources and make them available 
-through a resource URL such as '/@@/recorder/index.html'.
-
-    <browser:resourceDirectory
-      name="recorder"
-      directory="html"
-      layer="default"
-      />
-
-
-
-
-Needs more docs.



More information about the Checkins mailing list