Revision: 514
Author:   henryju
Date:     2006-06-27 06:54:55 -0700 (Tue, 27 Jun 2006)
ViewCVS:  http://svn.sourceforge.net/jwebunit/?rev=514&view=rev

Log Message:
-----------
Add some change to the release notes.
Add readme file.

Modified Paths:
--------------
    branches/1.x/LICENSE.txt
    branches/1.x/pom.xml
    branches/1.x/src/changes/changes.xml

Added Paths:
-----------
    branches/1.x/README-1.3.txt
Modified: branches/1.x/LICENSE.txt
===================================================================
--- branches/1.x/LICENSE.txt    2006-06-27 09:20:53 UTC (rev 513)
+++ branches/1.x/LICENSE.txt    2006-06-27 13:54:55 UTC (rev 514)
@@ -1,38 +1,21 @@
 The following copyright and permission notice applies to all aspects (source, 
tests, etc.) of jWebUnit:
 
 
/********************************************************************************
- * jWebUnit, simplified web testing API for HttpUnit
- * Copyright (c) 2001, ThoughtWorks, Inc.
- * 651 W Washington Ave. Suite 500
- * Chicago, IL 60661 USA
- * All rights reserved.
+ * jWebUnit, simplified web testing API
+ * Copyright (c) 2006, jWebUnit team.
+ * http://jwebunit.sourceforge.net
  *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
  *
- *     + Redistributions of source code must retain the above copyright
- *       notice, this list of conditions and the following disclaimer.
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
  *
- *     + Redistributions in binary form must reproduce the above
- *       copyright notice, this list of conditions and the following
- *       disclaimer in the documentation and/or other materials provided
- *       with the distribution.
- *
- *     + Neither the name of ThoughtWorks, Inc., jWebUnit, nor the
- *       names of its contributors may be used to endorse or promote
- *       products derived from this software without specific prior
- *       written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
- * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
- * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, 
USA.
  
********************************************************************************/

Added: branches/1.x/README-1.3.txt
===================================================================
--- branches/1.x/README-1.3.txt                         (rev 0)
+++ branches/1.x/README-1.3.txt 2006-06-27 13:54:55 UTC (rev 514)
@@ -0,0 +1,37 @@
+The jWebUnit team is pleased to announce the jWebUnit 1.3 release! 
+
+http://jwebunit.sourceforge.net
+
+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. 
+
+Changes in this version include:
+
+  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 support better 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
+      
\ No newline at end of file

Modified: branches/1.x/pom.xml
===================================================================
--- branches/1.x/pom.xml        2006-06-27 09:20:53 UTC (rev 513)
+++ branches/1.x/pom.xml        2006-06-27 13:54:55 UTC (rev 514)
@@ -13,7 +13,6 @@
         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.
-        jWebUnit support multiple dialog as HtmlUnit or HttpUnit.
     </description>
     <url>http://jwebunit.sourceforge.net</url>
     <issueManagement>

Modified: branches/1.x/src/changes/changes.xml
===================================================================
--- branches/1.x/src/changes/changes.xml        2006-06-27 09:20:53 UTC (rev 
513)
+++ branches/1.x/src/changes/changes.xml        2006-06-27 13:54:55 UTC (rev 
514)
@@ -5,17 +5,23 @@
                <author email="dashorst at users.sourceforge.net">Martijn 
Dashorst</author>
        </properties>
        <body>
-               <release version="1.3" date="UNKNOWN" description="New features 
await us">
+               <release version="1.3" date="UNKNOWN" description="Last 1.x 
before great changes.">
+                       <action type="add" dev="Julien Henry" due-to="Buhi 
Mume" >
+                               Added ability to navigate to windows / assert 
presence by window id.
+                       </action>
+                       <action type="remove" dev="Julien Henry">
+                               Remove HttpUnit testing engine.
+                       </action>
                        <action type="update" dev="Julien Henry">
                                Refactoring of Table assertions to handle 
perfectly colspan and rowspan.
                        </action>
                        <action type="add" dev="Julien Henry">
-                               Added XPath methods to core API. HttpUnit 
doesn't support clickElementByXPath().
+                               Added XPath methods to core API.
                        </action>
                        <action type="update" dev="Julien Henry">
                                Split jWebUnit in modules: one for the core 
(jWebUnit API), one for the tests (that all plugins should pass),
-                               and one for each plugin (currently HtmlUnit and 
HttpUnit). This way, for example,  when you want to use
-                               HtmlUnit plugin, you don't have to include all 
HttpUnit dependencies.
+                               and one for each plugin (currently HtmlUnit). 
This way, for example,  when you want to use
+                               one plugin, you don't have to include all 
others dependencies.
                        </action>
                        <action type="update" dev="Julien Henry">
                                Updated to Jetty 6 for running tests. Need less 
dependencies and run faster.
@@ -26,27 +32,13 @@
                        <action type="add" dev="Julien Henry">
                                Added Maven 2 support. There are many reports 
available on the website.
                        </action>
-                       <action type="add" dev="Jim Weaver" issue="1004243" 
due-to="Srinivasan Ranganthan">
-                               Added HttpUnitDialog setter on WebTester in 
case someone using delegation wants to carry
-                               state from one tester to another.  Also made 
some signatures on WebTester public that 
-                               were mistakenly protected.
-                       </action>
                        <action type="update" dev="Nicholas Neuberger" 
issue="1064807">
                                         Added new method to 
clickButtonWithText. I believe it is useful addition to existing functionality 
as we already have assertButtonPresentWithText().
                        </action>
-                       <action type="add" dev="Jim Weaver" issue="1029306">
-                               Added some explanation to exception when 
HttpUnit fails to submit using default submit button.
-                       </action>
                        <action type="add" dev="Jim Weaver" due-to="Dragos 
Manolescu" issue="800660">
                                Integrated patch for multiple submit buttons 
with different values.  API change -
                                assertSubmitButtonValue(button, value) now 
assertSubmitButtonPresent(button, value).
                        </action>
-                       <action type="add" dev="Jim Weaver" due-to="nottrz" 
issue="897022">
-                               Added a setting on webtester/webtestcase to 
turn table compression off.
-                       </action>
-                       <action type="add" dev="Jim Weaver" due-to="Jacques 
Morel" issue="980105">
-                               Made submitRequest(WebLink link) on 
HttpUnitDialog  protected.
-                       </action>
                        <action type="add" dev="Martijn Dashorst" due-to="John 
Evans" issue="1005396">
                                Assert button (not) present with text added.
                        </action>


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