Revision: 506
Author:   henryju
Date:     2006-06-26 07:38:56 -0700 (Mon, 26 Jun 2006)
ViewCVS:  http://svn.sourceforge.net/jwebunit/?rev=506&view=rev

Log Message:
-----------
Update site (remove HttpUnit references).

Modified Paths:
--------------
    branches/1.x/src/site/resources/images/jwebunit-architecture.odg
    branches/1.x/src/site/resources/images/jwebunit-architecture.png
    branches/1.x/src/site/site.xml
    branches/1.x/src/site/xdoc/index.xml
    branches/1.x/src/site/xdoc/installation.xml
    branches/1.x/src/site/xdoc/quickstart.xml

Removed Paths:
-------------
    branches/1.x/src/site/xdoc/building-ant.xml
Modified: branches/1.x/src/site/resources/images/jwebunit-architecture.odg
===================================================================
(Binary files differ)

Modified: branches/1.x/src/site/resources/images/jwebunit-architecture.png
===================================================================
(Binary files differ)

Modified: branches/1.x/src/site/site.xml
===================================================================
--- branches/1.x/src/site/site.xml      2006-06-26 14:08:30 UTC (rev 505)
+++ branches/1.x/src/site/site.xml      2006-06-26 14:38:56 UTC (rev 506)
@@ -23,11 +23,8 @@
         <links>
             <item name="JUnit" href="http://www.junit.org"; />
             <item name="Maven" href="http://maven.apache.org"; />
-            <item name="HTTPUnit"
-                href="http://httpunit.sourceforge.net"; />
             <item name="HTMLUnit"
                 href="http://htmlunit.sourceforge.net"; />
-            <item name="Jacobie" href="http://jacobie.sourceforge.net"; />
             <item name="Selenium" href="http://openqa.org/selenium-rc/"; />
         </links>
         <menu name="jWebUnit">
@@ -56,15 +53,6 @@
             </item>
         </menu>
         <menu name="Building jWebUnit">
-            <item name="With Ant" href="/building-ant.html"
-                collapse="true">
-                <item name="Installing Ant"
-                    href="/building-ant.html#Installing_Ant" />
-                <item name="Building jWebUnit"
-                    href="/building-ant.html#Building_jWebUnit" />
-                <item name="Building a release"
-                    href="/building-ant.html#Building_a_release" />
-            </item>
             <item name="With Maven" href="/building-maven.html"
                 collapse="true">
                 <item name="Installing Maven"

Deleted: branches/1.x/src/site/xdoc/building-ant.xml
===================================================================
--- branches/1.x/src/site/xdoc/building-ant.xml 2006-06-26 14:08:30 UTC (rev 
505)
+++ branches/1.x/src/site/xdoc/building-ant.xml 2006-06-26 14:38:56 UTC (rev 
506)
@@ -1,45 +0,0 @@
-<?xml version="1.0"?>
-<document>
-       <properties>
-               <author>Martijn Dashorst</author>
-               <title>Building jWebunit with Ant</title>
-       </properties>
-<body class="default">
-<section name="Building jWebUnit with Ant (DEPRECATED)">
-       <p>
-               Ant is make for Java. Most open source Java projects use Ant as 
their build tool. With ant
-               you can compile, test, package your release with just a few 
lines of XML code in the <tt>build.xml</tt>
-               file.
-       </p>
-       <subsection name="Installing Ant">
-               <p>
-                       You need to have <a 
href="http://ant.apache.org";>Ant</a> installed. The latest version at the moment
-                       of this writing is version 1.6.1.
-               </p>
-               <p>
-                       After you've installed Ant, don't forget to set the 
<tt>ANT_HOME</tt> environment variable, and
-                       to put <tt>%ANT_HOME%\bin</tt> to your path (Unix users 
use $ANT_HOME/bin).
-               </p>
-               <p>
-                       And last, but not least, copy the file 
<tt>junit-3.8.1.jar</tt> from the <tt>jWebUnit\lib</tt> 
-                       directory to <tt>%ANT_HOME%\lib</tt>, or else your 
build <em>will</em> fail!
-               </p>
-       </subsection>
-       <subsection name="Building jWebUnit">
-               <p>
-                       All you have to do is call:
-                       <source>ant clean-dist</source>
-                       and Ant will do the rest. The java source will be 
compiled, 
-                       the javadocs generated, tests performed and a jar-file 
created.
-               </p>
-       </subsection>
-       <subsection name="Building a release">
-               <p>
-                       The preferred method of building a release is using 
maven. However,
-                       if you don't want to use <a 
href="http://maven.apache.org";>maven</a>, you can use <source>ant 
clean-dist</source>
-                       for creating the distribution zip-file.
-               </p>
-       </subsection>
-</section>
-</body>
-</document>

Modified: branches/1.x/src/site/xdoc/index.xml
===================================================================
--- branches/1.x/src/site/xdoc/index.xml        2006-06-26 14:08:30 UTC (rev 
505)
+++ branches/1.x/src/site/xdoc/index.xml        2006-06-26 14:38:56 UTC (rev 
506)
@@ -19,7 +19,7 @@
     <p>
         jWebUnit is a Java framework that facilitates creation of acceptance 
tests for web applications. It 
         evolved from a project where we were using <a 
href="http://www.junit.org";>JUnit</a> to create acceptance tests. 
-        Also, we have different testing engines: <a 
href="jwebunit-httpunit-plugin/index.html">HttpUnit</a> and <a 
href="jwebunit-htmlunit-plugin/index.html">HtmlUnit</a>. 
+        Also, we can have different testing engines. Currently, only <a 
href="jwebunit-htmlunit-plugin/index.html">HtmlUnit plugin</a> is ready. 
         As the tests were being written, they were continuously refactored to 
remove duplication and other bad smells in the test 
         code. jWebUnit is the result of these refactorings.
     </p>
@@ -31,8 +31,8 @@
         via links, form entry and submission, validation of table contents, 
and other
         typical business web application features. This code try to stay 
independent of the libraries behind
         the scenes. The simple navigation methods and ready-to-use assertions 
allow for
-        more rapid test creation than using only JUnit and HttpUnit/HtmlUnit. 
And if you want to switch
-        from HttpUnit to HtmlUnit, no need to rewrite your tests.
+        more rapid test creation than using only JUnit and HtmlUnit. And if 
you want to switch
+        from HtmlUnit to the other soon available plugins, no need to rewrite 
your tests.
     </p>
     <img src="images/jwebunit-architecture.png" alt="JWebUnit architecture"/>
 </section>

Modified: branches/1.x/src/site/xdoc/installation.xml
===================================================================
--- branches/1.x/src/site/xdoc/installation.xml 2006-06-26 14:08:30 UTC (rev 
505)
+++ branches/1.x/src/site/xdoc/installation.xml 2006-06-26 14:38:56 UTC (rev 
506)
@@ -50,10 +50,9 @@
        </subsection>
        <subsection name="Choose what plugin you want to use">
                <p>
-                       There are currently 2 available plugins:
+                       There are currently 1 available plugin:
                        <ul>
-                               <li>HttpUnit: Was the first supported plugin. 
Javascript support is very basic. Will not be supported in jWebUnit 2.x</li>
-                               <li>HtmlUnit: A good choice if you want better 
Javascript support.</li>
+                               <li>HtmlUnit: A good choice if you want 
rapidity and good Javascript support.</li>
                        </ul>
                </p>
        </subsection>

Modified: branches/1.x/src/site/xdoc/quickstart.xml
===================================================================
--- branches/1.x/src/site/xdoc/quickstart.xml   2006-06-26 14:08:30 UTC (rev 
505)
+++ branches/1.x/src/site/xdoc/quickstart.xml   2006-06-26 14:38:56 UTC (rev 
506)
@@ -52,8 +52,7 @@
 public class ExampleWebTestCase extends WebTestCase {
     public ExampleWebTestCase(String name) {
         super(name);
-        setTestingEngineKey(TestingEngineRegistry.TESTING_ENGINE_HTTPUNIT);
-        // or 
setTestingEngineKey(TestingEngineRegistry.TESTING_ENGINE_HTMLUNIT);
+        setTestingEngineKey(TestingEngineRegistry.TESTING_ENGINE_HTMLUNIT);
     }
 }
 </source>


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Jwebunit-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jwebunit-development

Reply via email to