Author: ekoneil
Date: Wed Feb 16 07:18:04 2005
New Revision: 154029

URL: http://svn.apache.org/viewcvs?view=rev&rev=154029
Log:
Fix for J274.

Supports the correct encoding for XHTML.  

Contribution from Carlin.

BB: self
BVT: NetUI pass 


Added:
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/XhtmlDataGridSmokeTest.xml
   (with props)
Modified:
    
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/util/JspUtil.java
    
incubator/beehive/trunk/netui/test/src/junitTests/org/apache/beehive/netui/test/servlet/FauxPageContext.java
    
incubator/beehive/trunk/netui/test/src/junitTests/org/apache/beehive/netui/test/servlet/HttpServletResponseHandler.java
    incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/xhtml/anchorTest.jsp
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/config/testRecorder-tests.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCSSPrefix.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCaptionTest.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCustomHeaderStyle.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCustomTagAttributes.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridFooterTest.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridHeaderCellDecorator.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridHeaderTest.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridJavaScriptSmoke.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridModelTest.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerBasic.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerCustomSelect.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerInCaption.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerInFooter.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerOverride.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerRendererSmoke.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerStickyParam.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridScriptletTagFile.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridSimpleSort.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridSmokeTest.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/XhtmlAnchor.xml

Modified: 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/util/JspUtil.java
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/util/JspUtil.java?view=diff&r1=154028&r2=154029
==============================================================================
--- 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/util/JspUtil.java
 (original)
+++ 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/util/JspUtil.java
 Wed Feb 16 07:18:04 2005
@@ -24,20 +24,13 @@
 import javax.servlet.jsp.JspContext;
 import javax.servlet.jsp.PageContext;
 import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
 
 import org.apache.struts.Globals;
 
 import org.apache.beehive.netui.pageflow.scoping.ScopedServletUtils;
 import org.apache.beehive.netui.tags.internal.PageFlowTagUtils;
 
-import org.apache.beehive.netui.core.urls.FreezableMutableURI;
-import org.apache.beehive.netui.core.urls.URLRewriterService;
-import org.apache.beehive.netui.core.urls.URLRewriter;
-import org.apache.beehive.netui.pageflow.PageFlowUtils;
-import org.apache.beehive.netui.pageflow.internal.InternalUtils;
-import javax.servlet.http.HttpServletResponse;
-import javax.servlet.ServletContext;
-
 public class JspUtil {
 
     /* do not construct */
@@ -53,8 +46,7 @@
         if(!(jspContext instanceof PageContext))
             throw new IllegalStateException("Can not create a PageContext from 
a JspContext of type: " +
                 (jspContext != null ? jspContext.getClass().getName() : 
"null"));
-        else
-            return (PageContext)jspContext;
+        else return (PageContext)jspContext;
     }
 
     public static final String createURL(String href, String action, String 
location, String scope, Map params, JspContext jspContext)
@@ -69,73 +61,17 @@
             params.put(ScopedServletUtils.SCOPE_ID_PARAM, scope);
         }
 
-        // Generate the opening anchor element
         String uri = null;
         if(action != null)
-            // ToDo: remove tempRewriteURL() and call the PageFlowTagUtils 
routines, then update tests.
-            //uri = PageFlowTagUtils.rewriteActionURL(pageContext, action, 
params, location);
-            uri = tempRewriteURL(pageContext, true, action, params, location);
+            uri = PageFlowTagUtils.rewriteActionURL(pageContext, action, 
params, location);
         else if(href != null)
-            //uri = PageFlowTagUtils.rewriteHrefURL(pageContext, href, params, 
location);
-            uri = tempRewriteURL(pageContext, false, href, params, location);
-        else
-            return 
((HttpServletRequest)pageContext.getRequest()).getPathTranslated();
+            uri = PageFlowTagUtils.rewriteHrefURL(pageContext, href, params, 
location);
+        else return 
((HttpServletRequest)pageContext.getRequest()).getPathTranslated();
 
         assert uri != null;
 
-        // todo: shouldn't this also be a call to response.encodeURL(uri) for 
session ID?
-        //HttpServletResponse response = 
(HttpServletResponse)pageContext.getResponse();
-        //return response.encodeURL(uri);
-        return uri;
-    }
-
-    // ToDo: remove this method
-    // temporary local method until we move to PageFlowTagUtils routines, then 
update tests
-    // with respect to the HTML vs. XHTML format of the query in the URLs.
-    private static String tempRewriteURL(PageContext pageContext, boolean 
isAction, String actionOrHref, Map params, String location)
-            throws URISyntaxException
-    {
-        ServletContext servletContext = pageContext.getServletContext();
-        HttpServletRequest request = (HttpServletRequest) 
pageContext.getRequest();
-        HttpServletResponse response = (HttpServletResponse) 
pageContext.getResponse();
-        String url = actionOrHref;
-        URLRewriter.URLType urlType = URLRewriter.URLType.RESOURCE;
-        if (isAction) {
-            String qualifiedAction = 
InternalUtils.qualifyAction(servletContext, actionOrHref);
-            url = InternalUtils.createActionURL(request, qualifiedAction);
-            urlType = URLRewriter.URLType.ACTION;
-        }
-
-        FreezableMutableURI uri = new FreezableMutableURI(url);
-        uri.setEncoding(response.getCharacterEncoding());
-        if (params != null)
-            uri.addParameters(params, false);
-        if (location != null)
-            uri.setFragment(location);
-
-        if (!isAction) {
-            if (uri.isAbsolute()) {
-                // this is the place that seems broken. we should be checking
-                // if this is an xhtml doc or not!!!
-                return uri.getURIStringForXML();
-            }
-
-            if ((actionOrHref.length() != 0) && (actionOrHref.charAt(0) !=  
'/')) {
-                String reqUri = request.getRequestURI();
-                String reqPath = reqUri.substring(0, reqUri.lastIndexOf('/') + 
1);
-                uri.setPath(reqPath + uri.getPath());
-            }
-        }
-
-        boolean needsToBeSecure = 
PageFlowUtils.needsToBeSecure(servletContext, request, uri.getPath(), true);
-        URLRewriterService.rewriteURL(servletContext, request, response, uri, 
urlType, needsToBeSecure);
-        String key = PageFlowUtils.getURLTemplateKey(urlType, needsToBeSecure);
-
-        boolean forXML = false;
-        if (uri.isAbsolute())
-            forXML = true;
-
-        return URLRewriterService.getTemplatedURL(request, uri, key, forXML);
+        HttpServletResponse response = 
(HttpServletResponse)pageContext.getResponse();
+        return response.encodeURL(uri);
     }
 
     /* todo: need to combine this with the getLocale(...) call in 
AbstractClassicTag */

Modified: 
incubator/beehive/trunk/netui/test/src/junitTests/org/apache/beehive/netui/test/servlet/FauxPageContext.java
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/src/junitTests/org/apache/beehive/netui/test/servlet/FauxPageContext.java?view=diff&r1=154028&r2=154029
==============================================================================
--- 
incubator/beehive/trunk/netui/test/src/junitTests/org/apache/beehive/netui/test/servlet/FauxPageContext.java
 (original)
+++ 
incubator/beehive/trunk/netui/test/src/junitTests/org/apache/beehive/netui/test/servlet/FauxPageContext.java
 Wed Feb 16 07:18:04 2005
@@ -238,7 +238,7 @@
 
     // Servlet 2.4 method implementation
     public javax.servlet.jsp.el.ExpressionEvaluator getExpressionEvaluator() {
-        return null;
+        throw new UnsupportedOperationException("nyi");
     }
 
     public static class FauxVariableResolver

Modified: 
incubator/beehive/trunk/netui/test/src/junitTests/org/apache/beehive/netui/test/servlet/HttpServletResponseHandler.java
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/src/junitTests/org/apache/beehive/netui/test/servlet/HttpServletResponseHandler.java?view=diff&r1=154028&r2=154029
==============================================================================
--- 
incubator/beehive/trunk/netui/test/src/junitTests/org/apache/beehive/netui/test/servlet/HttpServletResponseHandler.java
 (original)
+++ 
incubator/beehive/trunk/netui/test/src/junitTests/org/apache/beehive/netui/test/servlet/HttpServletResponseHandler.java
 Wed Feb 16 07:18:04 2005
@@ -17,8 +17,8 @@
  */
 package org.apache.beehive.netui.test.servlet;
 
-import java.lang.reflect.Method;
 import java.lang.reflect.InvocationHandler;
+import java.lang.reflect.Method;
 
 /**
  *
@@ -34,7 +34,9 @@
     public Object invoke(Object proxy, Method method, Object[] args) {
         if(method.getName().equals("getCharacterEncoding"))
             return UTF_8;
-        else
-            throw new UnsupportedOperationException("Can not invoke method (" 
+ method + "); this proxy does not support the method.");
+        /* assume that the URL does not need to be encoded; we're 
cookie-enabled don't you know */
+        else if(method.getName().equals("encodeURL"))
+            return args[0];
+        else throw new UnsupportedOperationException("Can not invoke method (" 
+ method + "); the response proxy does not support the method.");
     }
 }

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/xhtml/anchorTest.jsp
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/xhtml/anchorTest.jsp?view=diff&r1=154028&r2=154029
==============================================================================
--- incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/xhtml/anchorTest.jsp 
(original)
+++ incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/xhtml/anchorTest.jsp 
Wed Feb 16 07:18:04 2005
@@ -36,5 +36,12 @@
         </map>
     </li>
     </ul>
+    <netui:anchor action="begin" rel="contents" rev="chapter"
+                  title="Link to the Contents" styleClass="normal"
+                  charSet="iso-8859-1" hrefLang="en" type="text/html">
+        Multiple Parameters
+        <netui:parameter name="color" value="red"/>
+        <netui:parameter name="color" value="blue"/>
+    </netui:anchor>
     </netui:body>
 </netui:html>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/config/testRecorder-tests.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/config/testRecorder-tests.xml?view=diff&r1=154028&r2=154029
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/config/testRecorder-tests.xml
 (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/config/testRecorder-tests.xml
 Wed Feb 16 07:18:04 2005
@@ -3053,6 +3053,24 @@
          </features>
       </test>
       <test>
+         <name>XhtmlDataGridSmokeTest</name>
+         <description>Xhtml version of the DataGridSmokeTest</description>
+         <webapp>coreWeb</webapp>
+         <categories>
+            <category>bvt</category>
+            <category>bvt.struts11</category>
+            <category>drt</category>
+            <category>datagrid</category>
+            <category>databinding</category>
+            <category>xhtml</category>
+         </categories>
+         <features>
+            <feature>Databinding</feature>
+            <feature>Data Grid</feature>
+            <feature>XHTML</feature>
+         </features>
+      </test>
+      <test>
          <name>DateConverter</name>
          <description>Date Converter on post.</description>
          <webapp>coreWeb</webapp>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCSSPrefix.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCSSPrefix.xml?view=diff&r1=154028&r2=154029
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCSSPrefix.xml
 (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCSSPrefix.xml
 Wed Feb 16 07:18:04 2005
@@ -119,7 +119,7 @@
 
             <td class="foo"><span>14.35</span></td>
 
-            <td class="foo"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="foo"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -128,7 +128,7 @@
 
             <td class="foo"><span>19.42</span></td>
 
-            <td class="foo"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="foo"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -137,7 +137,7 @@
 
             <td class="foo"><span>59.42</span></td>
 
-            <td class="foo"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="foo"><a 
href="http://www.ge.com?rowid=3&symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
@@ -146,7 +146,7 @@
 
             <td class="foo"><span>18.2</span></td>
 
-            <td class="foo"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="foo"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -155,7 +155,7 @@
 
             <td class="foo"><span>48.16</span></td>
 
-            <td class="foo"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="foo"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO";><span>Yahoo Inc</span></a></td>
 
         
 </tr>
@@ -177,4 +177,4 @@
    <ses:testCount>1</ses:testCount>
    <ses:passedCount>0</ses:passedCount>
    <ses:failedCount>1</ses:failedCount>
-</ses:recorderSession>
\ No newline at end of file
+</ses:recorderSession>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCaptionTest.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCaptionTest.xml?view=diff&r1=154028&r2=154029
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCaptionTest.xml
 (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCaptionTest.xml
 Wed Feb 16 07:18:04 2005
@@ -125,7 +125,7 @@
 
         <td class="datagrid"><span>14.35</span></td>
 
-        <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
     
 </tr>
@@ -134,7 +134,7 @@
 
         <td class="datagrid"><span>19.42</span></td>
 
-        <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
     
 </tr>
@@ -143,7 +143,7 @@
 
         <td class="datagrid"><span>59.42</span></td>
 
-        <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+        <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&symbol=GE";><span>General 
Electric</span></a></td>
 
     
 </tr>
@@ -152,7 +152,7 @@
 
         <td class="datagrid"><span>18.2</span></td>
 
-        <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
     
 </tr>
@@ -161,7 +161,7 @@
 
         <td class="datagrid"><span>48.16</span></td>
 
-        <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+        <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO";><span>Yahoo Inc</span></a></td>
 
     
 </tr>
@@ -193,4 +193,4 @@
    <ses:testCount>1</ses:testCount>
    <ses:passedCount>0</ses:passedCount>
    <ses:failedCount>1</ses:failedCount>
-</ses:recorderSession>
\ No newline at end of file
+</ses:recorderSession>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCustomHeaderStyle.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCustomHeaderStyle.xml?view=diff&r1=154028&r2=154029
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCustomHeaderStyle.xml
 (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCustomHeaderStyle.xml
 Wed Feb 16 07:18:04 2005
@@ -122,7 +122,7 @@
 
             <td class="foo"><span>14.35</span></td>
 
-            <td class="foo"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="foo"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -131,7 +131,7 @@
 
             <td class="foo"><span>19.42</span></td>
 
-            <td class="foo"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="foo"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -140,7 +140,7 @@
 
             <td class="foo"><span>59.42</span></td>
 
-            <td class="foo"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="foo"><a 
href="http://www.ge.com?rowid=3&symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
@@ -149,7 +149,7 @@
 
             <td class="foo"><span>18.2</span></td>
 
-            <td class="foo"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="foo"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -158,7 +158,7 @@
 
             <td class="foo"><span>48.16</span></td>
 
-            <td class="foo"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="foo"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO";><span>Yahoo Inc</span></a></td>
 
         
 </tr>
@@ -180,4 +180,4 @@
    <ses:testCount>1</ses:testCount>
    <ses:passedCount>0</ses:passedCount>
    <ses:failedCount>1</ses:failedCount>
-</ses:recorderSession>
\ No newline at end of file
+</ses:recorderSession>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCustomTagAttributes.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCustomTagAttributes.xml?view=diff&r1=154028&r2=154029
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCustomTagAttributes.xml
 (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCustomTagAttributes.xml
 Wed Feb 16 07:18:04 2005
@@ -121,7 +121,7 @@
 
             <td class="datagrid"><span attr-index="1">14.35</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS"; onmouseover='doAlert(this, 
1)'><span>BEA Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS"; onmouseover='doAlert(this, 
1)'><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -130,7 +130,7 @@
 
             <td class="datagrid"><span attr-index="2" 
attr-onlyeven="foo">19.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO"; onmouseover='doAlert(this, 
2)'><span>Cisco Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO"; onmouseover='doAlert(this, 
2)'><span>Cisco Systems</span></a></td>
 
         
 </tr>
@@ -139,7 +139,7 @@
 
             <td class="datagrid"><span attr-index="3">59.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE"; onmouseover='doAlert(this, 
3)'><span>General Electric</span></a></td>
+            <td class="datagrid"><a href="http://www.ge.com?rowid=3&symbol=GE"; 
onmouseover='doAlert(this, 3)'><span>General Electric</span></a></td>
 
         
 </tr>
@@ -148,7 +148,7 @@
 
             <td class="datagrid"><span attr-index="4" 
attr-onlyeven="foo">18.2</span></td>
 
-            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT"; onmouseover='doAlert(this, 
4)'><span>RedHat Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT"; onmouseover='doAlert(this, 
4)'><span>RedHat Systems</span></a></td>
 
         
 </tr>
@@ -157,7 +157,7 @@
 
             <td class="datagrid"><span attr-index="5">48.16</span></td>
 
-            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO"; onmouseover='doAlert(this, 
5)'><span>Yahoo Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO"; onmouseover='doAlert(this, 
5)'><span>Yahoo Inc</span></a></td>
 
         
 </tr>
@@ -185,4 +185,4 @@
    <ses:testCount>1</ses:testCount>
    <ses:passedCount>0</ses:passedCount>
    <ses:failedCount>1</ses:failedCount>
-</ses:recorderSession>
\ No newline at end of file
+</ses:recorderSession>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridFooterTest.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridFooterTest.xml?view=diff&r1=154028&r2=154029
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridFooterTest.xml
 (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridFooterTest.xml
 Wed Feb 16 07:18:04 2005
@@ -116,7 +116,7 @@
 
         <td class="datagrid"><span>14.35</span></td>
 
-        <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
     
 </tr>
@@ -125,7 +125,7 @@
 
         <td class="datagrid"><span>19.42</span></td>
 
-        <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
     
 </tr>
@@ -134,7 +134,7 @@
 
         <td class="datagrid"><span>59.42</span></td>
 
-        <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+        <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&symbol=GE";><span>General 
Electric</span></a></td>
 
     
 </tr>
@@ -143,7 +143,7 @@
 
         <td class="datagrid"><span>18.2</span></td>
 
-        <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
     
 </tr>
@@ -152,7 +152,7 @@
 
         <td class="datagrid"><span>48.16</span></td>
 
-        <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+        <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO";><span>Yahoo Inc</span></a></td>
 
     
 </tr>
@@ -193,4 +193,4 @@
    <ses:testCount>1</ses:testCount>
    <ses:passedCount>0</ses:passedCount>
    <ses:failedCount>1</ses:failedCount>
-</ses:recorderSession>
\ No newline at end of file
+</ses:recorderSession>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridHeaderCellDecorator.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridHeaderCellDecorator.xml?view=diff&r1=154028&r2=154029
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridHeaderCellDecorator.xml
 (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridHeaderCellDecorator.xml
 Wed Feb 16 07:18:04 2005
@@ -118,7 +118,7 @@
 
             <td class="foo"><span>14.35</span></td>
 
-            <td class="foo"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="foo"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -127,7 +127,7 @@
 
             <td class="foo"><span>19.42</span></td>
 
-            <td class="foo"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="foo"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -136,7 +136,7 @@
 
             <td class="foo"><span>59.42</span></td>
 
-            <td class="foo"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="foo"><a 
href="http://www.ge.com?rowid=3&symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
@@ -145,7 +145,7 @@
 
             <td class="foo"><span>18.2</span></td>
 
-            <td class="foo"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="foo"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -154,7 +154,7 @@
 
             <td class="foo"><span>48.16</span></td>
 
-            <td class="foo"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="foo"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO";><span>Yahoo Inc</span></a></td>
 
         
 </tr>
@@ -170,4 +170,4 @@
    </ses:tests>
    <ses:endDate>09 Feb 2005, 09:29:38.847 AM MST</ses:endDate>
    <ses:testCount>1</ses:testCount>
-</ses:recorderSession>
\ No newline at end of file
+</ses:recorderSession>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridHeaderTest.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridHeaderTest.xml?view=diff&r1=154028&r2=154029
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridHeaderTest.xml
 (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridHeaderTest.xml
 Wed Feb 16 07:18:04 2005
@@ -120,7 +120,7 @@
 
         <td class="datagrid"><span>14.35</span></td>
 
-        <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
     
 </tr>
@@ -129,7 +129,7 @@
 
         <td class="datagrid"><span>19.42</span></td>
 
-        <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
     
 </tr>
@@ -138,7 +138,7 @@
 
         <td class="datagrid"><span>59.42</span></td>
 
-        <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+        <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&symbol=GE";><span>General 
Electric</span></a></td>
 
     
 </tr>
@@ -147,7 +147,7 @@
 
         <td class="datagrid"><span>18.2</span></td>
 
-        <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
     
 </tr>
@@ -156,7 +156,7 @@
 
         <td class="datagrid"><span>48.16</span></td>
 
-        <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+        <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO";><span>Yahoo Inc</span></a></td>
 
     
 </tr>
@@ -188,4 +188,4 @@
    <ses:testCount>1</ses:testCount>
    <ses:passedCount>0</ses:passedCount>
    <ses:failedCount>1</ses:failedCount>
-</ses:recorderSession>
\ No newline at end of file
+</ses:recorderSession>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridJavaScriptSmoke.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridJavaScriptSmoke.xml?view=diff&r1=154028&r2=154029
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridJavaScriptSmoke.xml
 (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridJavaScriptSmoke.xml
 Wed Feb 16 07:18:04 2005
@@ -121,7 +121,7 @@
 
             <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS"; onmouseover='doAlert(this, 
1)'><span>BEA Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS"; onmouseover='doAlert(this, 
1)'><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -130,7 +130,7 @@
 
             <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO"; onmouseover='doAlert(this, 
2)'><span>Cisco Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO"; onmouseover='doAlert(this, 
2)'><span>Cisco Systems</span></a></td>
 
         
 </tr>
@@ -139,7 +139,7 @@
 
             <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE"; onmouseover='doAlert(this, 
3)'><span>General Electric</span></a></td>
+            <td class="datagrid"><a href="http://www.ge.com?rowid=3&symbol=GE"; 
onmouseover='doAlert(this, 3)'><span>General Electric</span></a></td>
 
         
 </tr>
@@ -148,7 +148,7 @@
 
             <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT"; onmouseover='doAlert(this, 
4)'><span>RedHat Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT"; onmouseover='doAlert(this, 
4)'><span>RedHat Systems</span></a></td>
 
         
 </tr>
@@ -157,7 +157,7 @@
 
             <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO"; onmouseover='doAlert(this, 
5)'><span>Yahoo Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO"; onmouseover='doAlert(this, 
5)'><span>Yahoo Inc</span></a></td>
 
         
 </tr>
@@ -185,4 +185,4 @@
    <ses:testCount>1</ses:testCount>
    <ses:passedCount>0</ses:passedCount>
    <ses:failedCount>1</ses:failedCount>
-</ses:recorderSession>
\ No newline at end of file
+</ses:recorderSession>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridModelTest.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridModelTest.xml?view=diff&r1=154028&r2=154029
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridModelTest.xml
 (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridModelTest.xml
 Wed Feb 16 07:18:04 2005
@@ -124,7 +124,7 @@
 
             <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -133,7 +133,7 @@
 
             <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -142,7 +142,7 @@
 
             <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
@@ -151,7 +151,7 @@
 
             <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -160,7 +160,7 @@
 
             <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO";><span>Yahoo Inc</span></a></td>
 
         
 </tr>
@@ -222,4 +222,4 @@
    <ses:testCount>1</ses:testCount>
    <ses:passedCount>0</ses:passedCount>
    <ses:failedCount>1</ses:failedCount>
-</ses:recorderSession>
\ No newline at end of file
+</ses:recorderSession>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerBasic.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerBasic.xml?view=diff&r1=154028&r2=154029
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerBasic.xml
 (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerBasic.xml
 Wed Feb 16 07:18:04 2005
@@ -117,7 +117,7 @@
 
             <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -126,7 +126,7 @@
 
             <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -269,7 +269,7 @@
 
             <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
@@ -278,7 +278,7 @@
 
             <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -421,7 +421,7 @@
 
             <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO";><span>Yahoo Inc</span></a></td>
 
         
 </tr>
@@ -559,7 +559,7 @@
 
             <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -568,7 +568,7 @@
 
             <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -711,7 +711,7 @@
 
             <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO";><span>Yahoo Inc</span></a></td>
 
         
 </tr>
@@ -854,7 +854,7 @@
 
             <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
@@ -863,7 +863,7 @@
 
             <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -1006,7 +1006,7 @@
 
             <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO";><span>Yahoo Inc</span></a></td>
 
         
 </tr>
@@ -1149,7 +1149,7 @@
 
             <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
@@ -1158,7 +1158,7 @@
 
             <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -1296,7 +1296,7 @@
 
             <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -1305,7 +1305,7 @@
 
             <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -1448,7 +1448,7 @@
 
             <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
@@ -1457,7 +1457,7 @@
 
             <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -1595,7 +1595,7 @@
 
             <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -1604,7 +1604,7 @@
 
             <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -1747,7 +1747,7 @@
 
             <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO";><span>Yahoo Inc</span></a></td>
 
         
 </tr>
@@ -1885,7 +1885,7 @@
 
             <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -1894,7 +1894,7 @@
 
             <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -2037,7 +2037,7 @@
 
             <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
@@ -2046,7 +2046,7 @@
 
             <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -2184,7 +2184,7 @@
 
             <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -2193,7 +2193,7 @@
 
             <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -2336,7 +2336,7 @@
 
             <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO";><span>Yahoo Inc</span></a></td>
 
         
 </tr>
@@ -2479,7 +2479,7 @@
 
             <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
@@ -2488,7 +2488,7 @@
 
             <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -2626,7 +2626,7 @@
 
             <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -2635,7 +2635,7 @@
 
             <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -2667,4 +2667,4 @@
    <ses:testCount>18</ses:testCount>
    <ses:passedCount>0</ses:passedCount>
    <ses:failedCount>18</ses:failedCount>
-</ses:recorderSession>
\ No newline at end of file
+</ses:recorderSession>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerCustomSelect.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerCustomSelect.xml?view=diff&r1=154028&r2=154029
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerCustomSelect.xml
 (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerCustomSelect.xml
 Wed Feb 16 07:18:04 2005
@@ -117,7 +117,7 @@
 
             <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -126,7 +126,7 @@
 
             <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -410,7 +410,7 @@
 
             <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO";><span>Yahoo Inc</span></a></td>
 
         
 </tr>
@@ -694,7 +694,7 @@
 
             <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
@@ -703,7 +703,7 @@
 
             <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -987,7 +987,7 @@
 
             <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO";><span>Yahoo Inc</span></a></td>
 
         
 </tr>
@@ -1271,7 +1271,7 @@
 
             <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -1280,7 +1280,7 @@
 
             <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -1564,7 +1564,7 @@
 
             <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
@@ -1573,7 +1573,7 @@
 
             <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -1857,7 +1857,7 @@
 
             <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO";><span>Yahoo Inc</span></a></td>
 
         
 </tr>
@@ -2141,7 +2141,7 @@
 
             <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -2150,7 +2150,7 @@
 
             <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -2434,7 +2434,7 @@
 
             <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO";><span>Yahoo Inc</span></a></td>
 
         
 </tr>
@@ -2607,4 +2607,4 @@
    <ses:testCount>9</ses:testCount>
    <ses:passedCount>0</ses:passedCount>
    <ses:failedCount>9</ses:failedCount>
-</ses:recorderSession>
\ No newline at end of file
+</ses:recorderSession>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerInCaption.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerInCaption.xml?view=diff&r1=154028&r2=154029
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerInCaption.xml
 (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerInCaption.xml
 Wed Feb 16 07:18:04 2005
@@ -127,7 +127,7 @@
 
             <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -136,7 +136,7 @@
 
             <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -289,7 +289,7 @@
 
             <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO";><span>Yahoo Inc</span></a></td>
 
         
 </tr>
@@ -437,7 +437,7 @@
 
             <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -446,7 +446,7 @@
 
             <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -599,7 +599,7 @@
 
             <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
@@ -608,7 +608,7 @@
 
             <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -761,7 +761,7 @@
 
             <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO";><span>Yahoo Inc</span></a></td>
 
         
 </tr>
@@ -909,7 +909,7 @@
 
             <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -918,7 +918,7 @@
 
             <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -1071,7 +1071,7 @@
 
             <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO";><span>Yahoo Inc</span></a></td>
 
         
 </tr>
@@ -1224,7 +1224,7 @@
 
             <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
@@ -1233,7 +1233,7 @@
 
             <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -1381,7 +1381,7 @@
 
             <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -1390,7 +1390,7 @@
 
             <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -1543,7 +1543,7 @@
 
             <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
@@ -1552,7 +1552,7 @@
 
             <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -1705,7 +1705,7 @@
 
             <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO";><span>Yahoo Inc</span></a></td>
 
         
 </tr>
@@ -1853,7 +1853,7 @@
 
             <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -1862,7 +1862,7 @@
 
             <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -2015,7 +2015,7 @@
 
             <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO";><span>Yahoo Inc</span></a></td>
 
         
 </tr>
@@ -2163,7 +2163,7 @@
 
             <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -2172,7 +2172,7 @@
 
             <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -2204,4 +2204,4 @@
    <ses:testCount>14</ses:testCount>
    <ses:passedCount>0</ses:passedCount>
    <ses:failedCount>14</ses:failedCount>
-</ses:recorderSession>
\ No newline at end of file
+</ses:recorderSession>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerInFooter.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerInFooter.xml?view=diff&r1=154028&r2=154029
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerInFooter.xml
 (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerInFooter.xml
 Wed Feb 16 07:18:04 2005
@@ -117,7 +117,7 @@
 
             <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -126,7 +126,7 @@
 
             <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -281,7 +281,7 @@
 
             <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO";><span>Yahoo Inc</span></a></td>
 
         
 </tr>
@@ -431,7 +431,7 @@
 
             <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -440,7 +440,7 @@
 
             <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -595,7 +595,7 @@
 
             <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
@@ -604,7 +604,7 @@
 
             <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -759,7 +759,7 @@
 
             <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO";><span>Yahoo Inc</span></a></td>
 
         
 </tr>
@@ -914,7 +914,7 @@
 
             <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
@@ -923,7 +923,7 @@
 
             <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -1078,7 +1078,7 @@
 
             <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO";><span>Yahoo Inc</span></a></td>
 
         
 </tr>
@@ -1228,7 +1228,7 @@
 
             <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -1237,7 +1237,7 @@
 
             <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -1392,7 +1392,7 @@
 
             <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
@@ -1401,7 +1401,7 @@
 
             <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -1556,7 +1556,7 @@
 
             <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO";><span>Yahoo Inc</span></a></td>
 
         
 </tr>
@@ -1706,7 +1706,7 @@
 
             <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -1715,7 +1715,7 @@
 
             <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -1759,4 +1759,4 @@
    <ses:testCount>11</ses:testCount>
    <ses:passedCount>0</ses:passedCount>
    <ses:failedCount>11</ses:failedCount>
-</ses:recorderSession>
\ No newline at end of file
+</ses:recorderSession>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerOverride.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerOverride.xml?view=diff&r1=154028&r2=154029
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerOverride.xml
 (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerOverride.xml
 Wed Feb 16 07:18:04 2005
@@ -117,7 +117,7 @@
 
             <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -126,7 +126,7 @@
 
             <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -269,7 +269,7 @@
 
             <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
@@ -278,7 +278,7 @@
 
             <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -421,7 +421,7 @@
 
             <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO";><span>Yahoo Inc</span></a></td>
 
         
 </tr>
@@ -564,7 +564,7 @@
 
             <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
@@ -573,7 +573,7 @@
 
             <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -711,7 +711,7 @@
 
             <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -720,7 +720,7 @@
 
             <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -752,4 +752,4 @@
    <ses:testCount>5</ses:testCount>
    <ses:passedCount>0</ses:passedCount>
    <ses:failedCount>5</ses:failedCount>
-</ses:recorderSession>
\ No newline at end of file
+</ses:recorderSession>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerRendererSmoke.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerRendererSmoke.xml?view=diff&r1=154028&r2=154029
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerRendererSmoke.xml
 (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerRendererSmoke.xml
 Wed Feb 16 07:18:04 2005
@@ -117,7 +117,7 @@
 
             <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -126,7 +126,7 @@
 
             <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -135,7 +135,7 @@
 
             <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
@@ -144,7 +144,7 @@
 
             <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -153,7 +153,7 @@
 
             <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO";><span>Yahoo Inc</span></a></td>
 
         
 </tr>
@@ -185,4 +185,4 @@
    <ses:testCount>1</ses:testCount>
    <ses:passedCount>0</ses:passedCount>
    <ses:failedCount>1</ses:failedCount>
-</ses:recorderSession>
\ No newline at end of file
+</ses:recorderSession>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerStickyParam.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerStickyParam.xml?view=diff&r1=154028&r2=154029
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerStickyParam.xml
 (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerStickyParam.xml
 Wed Feb 16 07:18:04 2005
@@ -114,7 +114,7 @@
 
             <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -123,7 +123,7 @@
 
             <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -252,7 +252,7 @@
 
             <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
@@ -261,7 +261,7 @@
 
             <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -390,7 +390,7 @@
 
             <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO";><span>Yahoo Inc</span></a></td>
 
         
 </tr>
@@ -519,7 +519,7 @@
 
             <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
@@ -528,7 +528,7 @@
 
             <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -653,7 +653,7 @@
 
             <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -662,7 +662,7 @@
 
             <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -791,7 +791,7 @@
 
             <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
@@ -800,7 +800,7 @@
 
             <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -925,7 +925,7 @@
 
             <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
         
 </tr>
@@ -934,7 +934,7 @@
 
             <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -1063,7 +1063,7 @@
 
             <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
@@ -1072,7 +1072,7 @@
 
             <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -1094,4 +1094,4 @@
    <ses:testCount>8</ses:testCount>
    <ses:passedCount>0</ses:passedCount>
    <ses:failedCount>8</ses:failedCount>
-</ses:recorderSession>
\ No newline at end of file
+</ses:recorderSession>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridScriptletTagFile.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridScriptletTagFile.xml?view=diff&r1=154028&r2=154029
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridScriptletTagFile.xml
 (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridScriptletTagFile.xml
 Wed Feb 16 07:18:04 2005
@@ -128,7 +128,7 @@
 <tr class="datagrid-even">
             <td class="datagrid"><span>BEAS</span></td>
 
-            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&symbol=BEAS";><span>BEA Systems</span></a></td>
 
             <td class="datagrid"><span>14.35</span></td>
 
@@ -137,7 +137,7 @@
 <tr class="datagrid-odd">
             <td class="datagrid"><span>CSCO</span></td>
 
-            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
             <td class="datagrid"><span>19.42</span></td>
 
@@ -146,7 +146,7 @@
 <tr class="datagrid-even">
             <td class="datagrid"><span>GE</span></td>
 
-            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&symbol=GE";><span>General 
Electric</span></a></td>
 
             <td class="datagrid"><span>59.42</span></td>
 
@@ -155,7 +155,7 @@
 <tr class="datagrid-odd">
             <td class="datagrid"><span>RHAT</span></td>
 
-            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
             <td class="datagrid"><span>18.2</span></td>
 
@@ -164,7 +164,7 @@
 <tr class="datagrid-even">
             <td class="datagrid"><span>YHOO</span></td>
 
-            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&symbol=YHOO";><span>Yahoo Inc</span></a></td>
 
             <td class="datagrid"><span>48.16</span></td>
 
@@ -214,4 +214,4 @@
    <ses:testCount>1</ses:testCount>
    <ses:passedCount>0</ses:passedCount>
    <ses:failedCount>1</ses:failedCount>
-</ses:recorderSession>
\ No newline at end of file
+</ses:recorderSession>


Reply via email to