You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by cs...@apache.org on 2007/03/23 17:48:34 UTC

svn commit: r521802 - in /beehive/trunk: docs/forrest/release/src/documentation/content/xdocs/controls/ docs/forrest/release/src/documentation/content/xdocs/system-controls/jdbc/samples/ samples/system-controls-jdbc/

Author: cschoett
Date: Fri Mar 23 09:48:34 2007
New Revision: 521802

URL: http://svn.apache.org/viewvc?view=rev&rev=521802
Log:
Fixed some typo's and added instructions for adding junit to ant.

Modified:
    beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/controls/serialization.xml
    beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/system-controls/jdbc/samples/jdbcSample.xml
    beehive/trunk/samples/system-controls-jdbc/README.txt

Modified: beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/controls/serialization.xml
URL: http://svn.apache.org/viewvc/beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/controls/serialization.xml?view=diff&rev=521802&r1=521801&r2=521802
==============================================================================
--- beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/controls/serialization.xml (original)
+++ beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/controls/serialization.xml Fri Mar 23 09:48:34 2007
@@ -27,7 +27,7 @@
             <title>Overview</title>
             <p>
                 This document describes control serialization.  Typically control serialization is initiated by
-                the runtime container; however, serialization may also be inititated programatically by a controls
+                the runtime container; however, serialization may also be initiated programmatically by a controls
                 developer.  For either case the process described in the Serialization Steps section of this document
                 are the same.
                <!--
@@ -41,7 +41,7 @@
             <title>isTransient</title>
            <p>
                When developing a control which does not need its state serialized, the isTransient attribute of the
-               ControlImplementation annotation may be set to true.  If not explicitly set, isTransient will default
+               ControlImplementation annotation may be set to true.  If not explicitly set isTransient will default
                to false.
           </p>
             <source>

Modified: beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/system-controls/jdbc/samples/jdbcSample.xml
URL: http://svn.apache.org/viewvc/beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/system-controls/jdbc/samples/jdbcSample.xml?view=diff&rev=521802&r1=521801&r2=521802
==============================================================================
--- beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/system-controls/jdbc/samples/jdbcSample.xml (original)
+++ beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/system-controls/jdbc/samples/jdbcSample.xml Fri Mar 23 09:48:34 2007
@@ -40,17 +40,28 @@
         <section>
             <title>Running the Sample</title>
             <p>
-                This sample requires the Apache Derby jar to run.  See <a href="http://db.apache.org/derby/quick_start.html">
-                http://db.apache.org/derby/quick_start.html</a> for more information about Derby and how to download the
+                This sample requires Apache Derby and JUnit to run.  See
+                <a href="http://ant.apache.org/manual/index.html#librarydependencies">http://ant.apache.org/manual/index.html</a>
+                for additional information about setting up Ant to use JUnit.
+                See <a href="http://db.apache.org/derby/quick_start.html"> http://db.apache.org/derby/quick_start.html</a>
+                for more information about Derby and how to download the
                 Derby distribtion.
             </p>
             <p>
                 Once Derby has been downloaded update the sample's build.properties file to include the fully qualified
-                name of the Derby jar file.   To build and run the JUnit tests, from the command line:
+                name of the Derby jar file. Any paths specified in the build.properties file should use the '/' path
+                seperator.
+            </p>
+            <p>
+                To build and run the JUnit tests from the command line:
             </p>
             <source>
 ant build test
             </source>
+
+            <p>
+                A JUnit log file will be generated and placed in the build/logs subdirectory of the sample.
+            </p>
         </section>
 
         <section>

Modified: beehive/trunk/samples/system-controls-jdbc/README.txt
URL: http://svn.apache.org/viewvc/beehive/trunk/samples/system-controls-jdbc/README.txt?view=diff&rev=521802&r1=521801&r2=521802
==============================================================================
--- beehive/trunk/samples/system-controls-jdbc/README.txt (original)
+++ beehive/trunk/samples/system-controls-jdbc/README.txt Fri Mar 23 09:48:34 2007
@@ -11,12 +11,16 @@
 
 To run this sample, follow these steps:
 
+NOTE: All paths specified in the build.properties file should use '/' path seperators.
+
 (1) Update the build.properties file in this sample so that beehive.home points to the
     top level folder of your Beehive installation.
 
-(2) Download the latest version of derby and update the build.properties file in this sample
+(2) Download JUnit and copy the junit.jar to your ant lib directory.
+
+(3) Download the latest version of derby and update the build.properties file in this sample
     with the location of the derby jar.
 
-(3) cd to /system-controls-jdbc and run: ant build test
+(4) cd to /system-controls-jdbc and run: ant build test
 
-(4) The JUnit log can be found in the build/logs folder of this sample.
+(5) The JUnit log can be found in the build/logs folder of this sample.