Revision: 622
          http://svn.sourceforge.net/jwebunit/?rev=622&view=rev
Author:   henryju
Date:     2006-11-21 05:33:51 -0800 (Tue, 21 Nov 2006)

Log Message:
-----------
Fix typo.
Fix version of maven-project-info-report-plugin to avoid bug when generating 
site.

Modified Paths:
--------------
    branches/1.x/README-1.4.txt
    branches/1.x/pom.xml
    branches/1.x/src/changes/changes.xml
    branches/1.x/src/site/xdoc/index.xml

Modified: branches/1.x/README-1.4.txt
===================================================================
--- branches/1.x/README-1.4.txt 2006-11-21 13:32:26 UTC (rev 621)
+++ branches/1.x/README-1.4.txt 2006-11-21 13:33:51 UTC (rev 622)
@@ -1,37 +1,17 @@
-The jWebUnit team is pleased to announce the jWebUnit 1.3 release!
+The JWebUnit team is pleased to announce the JWebUnit 1.4 release!
 
 http://jwebunit.sourceforge.net
 
-jWebUnit is a Java framework that facilitates creation of acceptance tests for 
+JWebUnit is a Java framework that facilitates creation of acceptance tests for
 web applications. It evolved from a project where we were using HttpUnit and 
 JUnit to create acceptance tests. 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. 
+code. JWebUnit is the result of these refactorings.
+We are now using HtmlUnit (htmlunit.sourceforge.net).
 
-Changes in this version include:
+Changes in this version are available here:
+http://jwebunit.sourceforge.net/changes-report.html
 
-  New Features:
-
-o Added ability to navigate to windows / assert presence by window id.
-o Refactoring of Table assertions to handle perfectly colspan and rowspan.
-o Added XPath methods to core API.
-o Added Maven 2 support. There are many reports available on the website.
-o Added new method clickButtonWithText.
-o Integrated patch for multiple submit buttons with different values.  API 
change - assertSubmitButtonValue(button, value) now 
assertSubmitButtonPresent(button, value).
-o Assert button (not) present with text added.
-o Added ability to navigate to windows / assert presence by window title.
-o Added assert select option present / not present.
-
-
-  Fixed bugs:
-o Javascript better support thanks to HtmlUnit
-
-  Changes:
-o Remove HttpUnit testing engine.
-o Updated to Jetty 6 for running tests. Need less dependencies and run faster.
-o Add HtmlUnit as testing engine, that provide better Javascript support.
-
-
 Have fun!
--The jWebUnit team
+-The JWebUnit team
       
\ No newline at end of file

Modified: branches/1.x/pom.xml
===================================================================
--- branches/1.x/pom.xml        2006-11-21 13:32:26 UTC (rev 621)
+++ branches/1.x/pom.xml        2006-11-21 13:33:51 UTC (rev 622)
@@ -2,16 +2,16 @@
     <modelVersion>4.0.0</modelVersion>
     <groupId>net.sourceforge.jwebunit</groupId>
     <artifactId>jwebunit</artifactId>
-    <name>jWebUnit</name>
+    <name>JWebUnit</name>
     <version>1.4-SNAPSHOT</version>
     <packaging>pom</packaging>
     <description>
-        jWebUnit is a Java framework that facilitates creation of
+        JWebUnit is a Java framework that facilitates creation of
         acceptance tests for web applications. It evolved from a project
         where we were using HttpUnit and JUnit to create acceptance
         tests. 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.
+        test code. JWebUnit is the result of these refactorings.
     </description>
     <url>http://jwebunit.sourceforge.net</url>
     <issueManagement>
@@ -29,7 +29,7 @@
     </modules>
     <mailingLists>
         <mailingList>
-            <name>jWebUnit Development Mailing list</name>
+            <name>JWebUnit Development Mailing list</name>
             <subscribe>
                 
http://lists.sourceforge.net/mailman/listinfo/jwebunit-development
             </subscribe>
@@ -42,7 +42,7 @@
             <post>[email protected]</post>
         </mailingList>
         <mailingList>
-            <name>jWebUnit User Mailing list</name>
+            <name>JWebUnit User Mailing list</name>
             <subscribe>
                 http://lists.sourceforge.net/mailman/listinfo/jwebunit-users
             </subscribe>
@@ -316,6 +316,7 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-project-info-reports-plugin</artifactId>
+                <version>2.0.1</version>
                 <reportSets>
                     <reportSet>
                         <reports>
@@ -336,7 +337,7 @@
     <distributionManagement>
         <site>
             <id>jwebunit-website</id>
-            <name>jWebUnit WebSite - Sourceforge</name>
+            <name>JWebUnit WebSite - Sourceforge</name>
             <url>
                    scp://shell.sourceforge.net/home/groups/j/jw/jwebunit/htdocs
                    <!--file:///home/julien/site-jwebunit-->
@@ -348,7 +349,7 @@
                 
scpexe://shell.sourceforge.net/home/groups/j/jw/jwebunit/htdocs/m2-repo
             </url>
             <name>
-                jWebUnit Maven 2 Repository
+                JWebUnit Maven 2 Repository
             </name>
         </repository>
         <snapshotRepository>
@@ -357,7 +358,7 @@
                 
scpexe://shell.sourceforge.net/home/groups/j/jw/jwebunit/htdocs/m2-repo-snapshots
             </url>
             <name>
-                jWebUnit Maven 2 Snapshots Repository
+                JWebUnit Maven 2 Snapshots Repository
             </name>
         </snapshotRepository>
     </distributionManagement>

Modified: branches/1.x/src/changes/changes.xml
===================================================================
--- branches/1.x/src/changes/changes.xml        2006-11-21 13:32:26 UTC (rev 
621)
+++ branches/1.x/src/changes/changes.xml        2006-11-21 13:33:51 UTC (rev 
622)
@@ -7,7 +7,7 @@
         </author>
     </properties>
     <body>
-        <release version="1.4" date="UNKNOW">
+        <release version="1.4-RC1" date="november 20, 2006">
             <action type="fix" dev="Julien Henry">
                 submit([...]) methods now detect image input elements.
             </action>

Modified: branches/1.x/src/site/xdoc/index.xml
===================================================================
--- branches/1.x/src/site/xdoc/index.xml        2006-11-21 13:32:26 UTC (rev 
621)
+++ branches/1.x/src/site/xdoc/index.xml        2006-11-21 13:33:51 UTC (rev 
622)
@@ -2,7 +2,7 @@
 <document>
     <properties>
         <author email="dashorst.at.users.sourceforge.net">Martijn 
Dashorst</author>
-        <title>jWebUnit 1.x</title>
+        <title>JWebUnit 1.x</title>
     </properties>
     <meta name="keyword" content="jwebunit, java, junit, htmlunit, jacobie, 
httpunit, integration, test, automated, html, webtest"/>
        <head>
@@ -11,22 +11,22 @@
 <body>
 <section name="Welcome">
     <p>
-        You are on the jWebUnit 1.x website. Current version is 1.3. This is
-        the "stable" version of jWebUnit. You can also consult <a 
href="2.x/index.html">jWebUnit 2.x website</a>.
+        You are on the JWebUnit 1.x website. Current version is 1.4-RC1. This 
is
+        the "stable" version of JWebUnit. You can also consult <a 
href="2.x/index.html">JWebUnit 2.x website</a>.
     </p>
 </section>
-<section name="What is jWebUnit?">
+<section name="What is JWebUnit?">
     <p>
-        jWebUnit is a Java framework that facilitates creation of acceptance 
tests for web applications. It 
+        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 can have different testing engines. Currently, only <a 
href="jwebunit-htmlunit-plugin/index.html">HtmlUnit plugin</a> is ready. 
+        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.
+        code. JWebUnit is the result of these refactorings.
     </p>
 </section>
-<section name="What does jWebUnit provide?">
+<section name="What does JWebUnit provide?">
     <p>
-        jWebUnit provides a high-level API for navigating a web application 
combined with a set
+        JWebUnit provides a high-level API for navigating a web application 
combined with a set
         of assertions to verify the application's correctness. This includes 
navigation
         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
@@ -34,7 +34,7 @@
         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"/>
+    <img src="images/JWebUnit-architecture.png" alt="JWebUnit architecture"/>
 </section>
 </body>    
 </document>


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

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Jwebunit-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jwebunit-development

Reply via email to