Author: ekoneil
Date: Mon Jan 24 08:10:10 2005
New Revision: 126298

URL: http://svn.apache.org/viewcvs?view=rev&rev=126298
Log:
Add HTML 4.01 attributes to the <caption> tag.

Move <caption> rendering into the Caption tag so the rendering is local with 
the CaptionTag.State object.

Fixup associated tests.

BB: self
DRT: NetUI / datagrid pass


Modified:
   
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/AbstractHtmlColumn.java
   
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/Caption.java
   
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/DataGrid.java
   
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCaptionTest.xml
   
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridFormatTest.xml
   
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerDisable.xml
   
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerInCaption.xml
   
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridScriptletTagFile.xml

Modified: 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/AbstractHtmlColumn.java
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/AbstractHtmlColumn.java?view=diff&rev=126298&p1=incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/AbstractHtmlColumn.java&r1=126297&p2=incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/AbstractHtmlColumn.java&r2=126298
==============================================================================
--- 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/AbstractHtmlColumn.java
       (original)
+++ 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/AbstractHtmlColumn.java
       Mon Jan 24 08:10:10 2005
@@ -762,6 +762,7 @@
         TableRenderer tableRenderer = dataGridModel.getTableRenderer();
         assert tableRenderer != null;
 
+        /* todo: extensibility in supporting style decorators */
         ArrayList<String> styleClasses = new ArrayList<String>();
         SortModel sortModel = dataGridModel.getSortModel();
         if(sortModel.isSorted(_headerCellModel.getSortExpression()))

Modified: 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/Caption.java
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/Caption.java?view=diff&rev=126298&p1=incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/Caption.java&r1=126297&p2=incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/Caption.java&r2=126298
==============================================================================
--- 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/Caption.java
  (original)
+++ 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/Caption.java
  Mon Jan 24 08:10:10 2005
@@ -23,36 +23,237 @@
 import javax.servlet.jsp.JspException;
 
 import org.apache.beehive.netui.tags.AbstractSimpleTag;
+import org.apache.beehive.netui.tags.html.HtmlConstants;
+import org.apache.beehive.netui.tags.rendering.AbstractHtmlState;
+import org.apache.beehive.netui.tags.rendering.CaptionTag;
+import org.apache.beehive.netui.tags.rendering.AbstractRenderAppender;
+import org.apache.beehive.netui.tags.rendering.WriteRenderAppender;
 import org.apache.beehive.netui.databinding.datagrid.model.DataGridModel;
+import org.apache.beehive.netui.databinding.datagrid.model.style.StylePolicy;
+import 
org.apache.beehive.netui.databinding.datagrid.rendering.table.TableRenderer;
 
 /**
- * @netui:tag name="caption"
- * body-content="scriptless"
- * description="Renders a caption into a NetUI data grid"
- * @netui.tldx:tag whitespace="indent"
- * renderer=""
+ * @netui:tag name="caption" body-content="scriptless" description="Renders a 
caption into a NetUI data grid"
+ * @netui.tldx:tag whitespace="indent" renderer=""
  */
 public class Caption
     extends AbstractSimpleTag {
 
+    private CaptionTag.State _captionTag = new CaptionTag.State();
+
     public String getTagName() {
         return "Caption";
     }
 
+    /**
+     * Sets the onClick javascript event.
+     *
+     * @param onClick - the onClick event.
+     * @jsptagref.attributedescription The onClick JavaScript event.
+     * @jsptagref.databindable false
+     * @jsptagref.attributesyntaxvalue <i>string_onClick</i>
+     * @netui:attribute required="false" rtexprvalue="true" description="The 
onClick JavaScript event."
+     * @netui.tldx:attribute 
propertyclass="workshop.jspdesigner.properties.EventPropertyClass" 
category="event"
+     */
+    public void setOnClick(String onClick) {
+        _captionTag.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, 
HtmlConstants.ONCLICK, onClick);
+    }
+
+    /**
+     * Sets the onDblClick javascript event.
+     *
+     * @param onDblClick - the onDblClick event.
+     * @jsptagref.attributedescription The onDblClick JavaScript event.
+     * @jsptagref.databindable false
+     * @jsptagref.attributesyntaxvalue <i>string_onDblClick</i>
+     * @netui:attribute required="false" rtexprvalue="true" description="The 
onDblClick JavaScript event."
+     * @netui.tldx:attribute 
propertyclass="workshop.jspdesigner.properties.EventPropertyClass" 
category="event"
+     */
+    public void setOnDblClick(String onDblClick) {
+        _captionTag.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, 
HtmlConstants.ONDBLCLICK, onDblClick);
+    }
+
+    /**
+     * Sets the onKeyDown javascript event.
+     *
+     * @param onKeyDown - the onKeyDown event.
+     * @jsptagref.attributedescription The onKeyDown JavaScript event.
+     * @jsptagref.databindable false
+     * @jsptagref.attributesyntaxvalue <i>string_onKeyDown</i>
+     * @netui:attribute required="false" rtexprvalue="true" description="The 
onKeyDown JavaScript event."
+     * @netui.tldx:attribute 
propertyclass="workshop.jspdesigner.properties.EventPropertyClass" 
category="event"
+     */
+    public void setOnKeyDown(String onKeyDown) {
+        _captionTag.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, 
HtmlConstants.ONKEYDOWN, onKeyDown);
+    }
+
+    /**
+     * Sets the onKeyUp javascript event.
+     *
+     * @param onKeyUp - the onKeyUp event.
+     * @jsptagref.attributedescription The onKeyUp JavaScript event.
+     * @jsptagref.databindable false
+     * @jsptagref.attributesyntaxvalue <i>string_onKeyUp</i>
+     * @netui:attribute required="false" rtexprvalue="true" description="The 
onKeyUp JavaScript event."
+     * @netui.tldx:attribute 
propertyclass="workshop.jspdesigner.properties.EventPropertyClass" 
category="event"
+     */
+    public void setOnKeyUp(String onKeyUp) {
+        _captionTag.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, 
HtmlConstants.ONKEYUP, onKeyUp);
+    }
+
+    /**
+     * Sets the onKeyPress javascript event.
+     *
+     * @param onKeyPress - the onKeyPress event.
+     * @jsptagref.attributedescription The onKeyPress JavaScript event.
+     * @jsptagref.databindable false
+     * @jsptagref.attributesyntaxvalue <i>string_onKeyPress</i>
+     * @netui:attribute required="false" rtexprvalue="true" description="The 
onKeyPress JavaScript event."
+     * @netui.tldx:attribute 
propertyclass="workshop.jspdesigner.properties.EventPropertyClass" 
category="event"
+     */
+    public void setOnKeyPress(String onKeyPress) {
+        _captionTag.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, 
HtmlConstants.ONKEYPRESS, onKeyPress);
+    }
+
+    /**
+     * Sets the onMouseDown javascript event.
+     *
+     * @param onMouseDown - the onMouseDown event.
+     * @jsptagref.attributedescription The onMouseDown JavaScript event.
+     * @jsptagref.databindable false
+     * @jsptagref.attributesyntaxvalue <i>string_onMouseDown</i>
+     * @netui:attribute required="false" rtexprvalue="true" description="The 
onMouseDown JavaScript event."
+     * @netui.tldx:attribute 
propertyclass="workshop.jspdesigner.properties.EventPropertyClass" 
category="event"
+     */
+    public void setOnMouseDown(String onMouseDown) {
+        _captionTag.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, 
HtmlConstants.ONMOUSEDOWN, onMouseDown);
+    }
+
+    /**
+     * Sets the onMouseUp javascript event.
+     *
+     * @param onMouseUp - the onMouseUp event.
+     * @jsptagref.attributedescription The onMouseUp JavaScript event.
+     * @jsptagref.databindable false
+     * @jsptagref.attributesyntaxvalue <i>string_onMouseUp</i>
+     * @netui:attribute required="false" rtexprvalue="true" description="The 
onMouseUp JavaScript event."
+     * @netui.tldx:attribute 
propertyclass="workshop.jspdesigner.properties.EventPropertyClass" 
category="event"
+     */
+    public void setOnMouseUp(String onMouseUp) {
+        _captionTag.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, 
HtmlConstants.ONMOUSEUP, onMouseUp);
+    }
+
+    /**
+     * Sets the onMouseMove javascript event.
+     *
+     * @param onMouseMove - the onMouseMove event.
+     * @jsptagref.attributedescription The onMouseMove JavaScript event.
+     * @jsptagref.databindable false
+     * @jsptagref.attributesyntaxvalue <i>string_onMouseMove</i>
+     * @netui:attribute required="false" rtexprvalue="true" description="The 
onMouseMove JavaScript event."
+     * @netui.tldx:attribute 
propertyclass="workshop.jspdesigner.properties.EventPropertyClass" 
category="event"
+     */
+    public void setOnMouseMove(String onMouseMove) {
+        _captionTag.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, 
HtmlConstants.ONMOUSEMOVE, onMouseMove);
+    }
+
+    /**
+     * Sets the onMouseOut javascript event.
+     *
+     * @param onMouseOut - the onMouseOut event.
+     * @jsptagref.attributedescription The onMouseOut JavaScript event.
+     * @jsptagref.databindable false
+     * @jsptagref.attributesyntaxvalue <i>string_onMouseOut</i>
+     * @netui:attribute required="false" rtexprvalue="true" description="The 
onMouseOut JavaScript event."
+     * @netui.tldx:attribute 
propertyclass="workshop.jspdesigner.properties.EventPropertyClass" 
category="event"
+     */
+    public void setOnMouseOut(String onMouseOut) {
+        _captionTag.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, 
HtmlConstants.ONMOUSEOUT, onMouseOut);
+    }
+
+    /**
+     * Sets the onMouseOver javascript event.
+     *
+     * @param onMouseOver - the onMouseOver event.
+     * @jsptagref.attributedescription The onMouseOver JavaScript event.
+     * @jsptagref.databindable false
+     * @jsptagref.attributesyntaxvalue <i>string_onMouseOver</i>
+     * @netui:attribute required="false" rtexprvalue="true" description="The 
onMouseOver JavaScript event."
+     * @netui.tldx:attribute 
propertyclass="workshop.jspdesigner.properties.EventPropertyClass" 
category="event"
+     */
+    public void setOnMouseOver(String onMouseOver) {
+        _captionTag.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, 
HtmlConstants.ONMOUSEOVER, onMouseOver);
+    }
+
+    /**
+     * Sets the style of the rendered html tag.
+     *
+     * @param style - the html style.
+     * @jsptagref.attributedescription The style.
+     * @jsptagref.databindable false
+     * @jsptagref.attributesyntaxvalue <i>string_style</i>
+     * @netui:attribute required="false"  rtexprvalue="true" description="The 
style."
+     * @netui.tldx:attribute 
propertyclass="workshop.jspdesigner.properties.JspStyleProperty" 
category="format"
+     */
+    public void setStyle(String style) {
+        if("".equals(style)) return;
+
+        _captionTag.style = style;
+    }
+
+    /**
+     * Sets the style class of the rendered html tag.
+     *
+     * @param styleClass - the html style class.
+     * @jsptagref.attributedescription The style class.
+     * @jsptagref.databindable false
+     * @jsptagref.attributesyntaxvalue <i>string_style_class</i>
+     * @netui:attribute required="false"  rtexprvalue="true" description="The 
style class."
+     * @netui.tldx:attribute category="Format"
+     */
+    public void setStyleClass(String styleClass) {
+        if("".equals(styleClass)) return;
+
+        _captionTag.styleClass = styleClass;
+    }
+
+    /**
+     * Sets the value of the title attribute.
+     *
+     * @param title
+     * @jsptagref.attributedescription The title.
+     * @jsptagref.databindable false
+     * @jsptagref.attributesyntaxvalue <i>string_title</i>
+     * @netui:attribute required="false" rtexprvalue="true" description="The 
title. "
+     * @netui.tldx:attribute category="misc"
+     */
+    public void setTitle(String title) {
+        _captionTag.registerAttribute(AbstractHtmlState.ATTR_GENERAL, 
HtmlConstants.TITLE, title);
+    }
+
     public void doTag()
         throws IOException, JspException {
+
         DataGridModel dgm = DataGridUtil.getDataGridModel(getJspContext());
         assert dgm != null;
 
         if(dgm.getRenderState() == DataGridModel.CAPTION_RENDER_STATE) {
             JspFragment fragment = getJspBody();
-            StringWriter sw = new StringWriter();
-            String bodyContent = null;
             if(fragment != null) {
+                StringWriter sw = new StringWriter();
+                TableRenderer tableRenderer = dgm.getTableRenderer();
+                StylePolicy stylePolicy = dgm.getCssPolicy();
+                AbstractRenderAppender appender = new 
WriteRenderAppender(getJspContext());
+
+                if(_captionTag.styleClass == null)
+                    _captionTag.styleClass = stylePolicy.getCaptionClass();
+
+                tableRenderer.openCaption(_captionTag, appender);
+
                 fragment.invoke(sw);
-                bodyContent = sw.toString();
+                appender.append(sw.toString());
 
-                getJspContext().getOut().write(bodyContent);
+                tableRenderer.closeCaption(appender);
             }
         }
     }

Modified: 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/DataGrid.java
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/DataGrid.java?view=diff&rev=126298&p1=incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/DataGrid.java&r1=126297&p2=incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/DataGrid.java&r2=126298
==============================================================================
--- 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/DataGrid.java
 (original)
+++ 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/DataGrid.java
 Mon Jan 24 08:10:10 2005
@@ -176,12 +176,7 @@
             fragment.invoke(sw);
             String caption = sw.toString();
             if(caption != null && !caption.trim().equals("")) {
-                CaptionTag.State captionState = new CaptionTag.State();
-                captionState.styleClass = stylePolicy.getCaptionClass();
-
-                tableRenderer.openCaption(captionState, appender);
                 appender.append(caption);
-                tableRenderer.closeCaption(appender);
             }
 
             /* render the grid rows (header and data) */

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&rev=126298&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCaptionTest.xml&r1=126297&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCaptionTest.xml&r2=126298
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCaptionTest.xml
   (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCaptionTest.xml
   Mon Jan 24 08:10:10 2005
@@ -2,7 +2,7 @@
 <ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
    <ses:sessionName>DataGridCaptionTest</ses:sessionName>
    <ses:tester>ekoneil</ses:tester>
-   <ses:startDate>23 Jan 2005, 04:54:17.460 PM MST</ses:startDate>
+   <ses:startDate>24 Jan 2005, 08:58:47.787 AM MST</ses:startDate>
    <ses:description>ekoneil</ses:description>
    <ses:tests>
       <ses:test>
@@ -47,7 +47,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-5dd73992:101a1fe4988:-7ffd</ses:value>
+                  <ses:value>-68b00563:101a5707561:-7ff1</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -83,12 +83,12 @@
 Page 1 of 1&nbsp;&nbsp;&nbsp;
 <table class="datagrid">
 
-<caption class="datagrid">
     
+<caption class="datagrid">
         This is the table's caption.    
+    </caption>
+
     
-    
-</caption>
 
     
     
@@ -174,7 +174,7 @@
          </ses:testResults>
       </ses:test>
    </ses:tests>
-   <ses:endDate>23 Jan 2005, 04:54:23.369 PM MST</ses:endDate>
+   <ses:endDate>24 Jan 2005, 08:58:47.967 AM MST</ses:endDate>
    <ses:sessionStatus>fail</ses:sessionStatus>
    <ses:testCount>1</ses:testCount>
    <ses:passedCount>0</ses:passedCount>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridFormatTest.xml
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridFormatTest.xml?view=diff&rev=126298&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridFormatTest.xml&r1=126297&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridFormatTest.xml&r2=126298
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridFormatTest.xml
    (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridFormatTest.xml
    Mon Jan 24 08:10:10 2005
@@ -2,7 +2,7 @@
 <ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
    <ses:sessionName>DataGridFormatTest</ses:sessionName>
    <ses:tester>ekoneil</ses:tester>
-   <ses:startDate>23 Jan 2005, 04:54:34.665 PM MST</ses:startDate>
+   <ses:startDate>24 Jan 2005, 08:58:49.920 AM MST</ses:startDate>
    <ses:description>ekoneil</ses:description>
    <ses:tests>
       <ses:test>
@@ -18,7 +18,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>777E8EC41C8BC4DABBE7D81D6BC3E052</ses:value>
+                  <ses:value>4BFA3929CCFF1248EDF96247C5EC1CAF</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -44,7 +44,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=777E8EC41C8BC4DABBE7D81D6BC3E052; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=4BFA3929CCFF1248EDF96247C5EC1CAF; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -56,7 +56,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-5dd73992:101a1fe4988:-7fef</ses:value>
+                  <ses:value>-68b00563:101a5707561:-7fe3</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -93,15 +93,15 @@
     
 <table class="datagrid">
 
-<caption class="datagrid">
         
         
+<caption class="datagrid">
             Stocks
+        </caption>
+
         
         
-        
-    </caption>
-
+    
         
         
         
@@ -182,7 +182,7 @@
          </ses:testResults>
       </ses:test>
    </ses:tests>
-   <ses:endDate>23 Jan 2005, 04:54:36.368 PM MST</ses:endDate>
+   <ses:endDate>24 Jan 2005, 08:58:49.970 AM MST</ses:endDate>
    <ses:sessionStatus>fail</ses:sessionStatus>
    <ses:testCount>1</ses:testCount>
    <ses:passedCount>0</ses:passedCount>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerDisable.xml
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerDisable.xml?view=diff&rev=126298&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerDisable.xml&r1=126297&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerDisable.xml&r2=126298
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerDisable.xml
  (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerDisable.xml
  Mon Jan 24 08:10:10 2005
@@ -2,7 +2,7 @@
 <ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
    <ses:sessionName>DataGridPagerDisable</ses:sessionName>
    <ses:tester>ekoneil</ses:tester>
-   <ses:startDate>23 Jan 2005, 04:54:50.899 PM MST</ses:startDate>
+   <ses:startDate>24 Jan 2005, 08:58:57.391 AM MST</ses:startDate>
    <ses:description>ekoneil</ses:description>
    <ses:tests>
       <ses:test>
@@ -18,7 +18,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>777E8EC41C8BC4DABBE7D81D6BC3E052</ses:value>
+                  <ses:value>4BFA3929CCFF1248EDF96247C5EC1CAF</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -44,7 +44,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=777E8EC41C8BC4DABBE7D81D6BC3E052; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=4BFA3929CCFF1248EDF96247C5EC1CAF; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -56,7 +56,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-5dd73992:101a1fe4988:-7fc8</ses:value>
+                  <ses:value>-68b00563:101a5707561:-7fbc</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -93,15 +93,15 @@
     
 <table class="datagrid">
 
-<caption class="datagrid">
         
         
+<caption class="datagrid">
             Stocks
+        </caption>
+
         
         
-        
-    </caption>
-
+    
         
         
         
@@ -182,7 +182,7 @@
          </ses:testResults>
       </ses:test>
    </ses:tests>
-   <ses:endDate>23 Jan 2005, 04:54:52.641 PM MST</ses:endDate>
+   <ses:endDate>24 Jan 2005, 08:58:58.453 AM MST</ses:endDate>
    <ses:sessionStatus>fail</ses:sessionStatus>
    <ses:testCount>1</ses:testCount>
    <ses:passedCount>0</ses:passedCount>

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&rev=126298&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerInCaption.xml&r1=126297&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerInCaption.xml&r2=126298
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerInCaption.xml
        (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerInCaption.xml
        Mon Jan 24 08:10:10 2005
@@ -2,7 +2,7 @@
 <ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
    <ses:sessionName>DataGridPagerInCaption</ses:sessionName>
    <ses:tester>ekoneil</ses:tester>
-   <ses:startDate>23 Jan 2005, 04:54:54.133 PM MST</ses:startDate>
+   <ses:startDate>24 Jan 2005, 08:58:58.964 AM MST</ses:startDate>
    <ses:description>ekoneil</ses:description>
    <ses:tests>
       <ses:test>
@@ -18,7 +18,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>777E8EC41C8BC4DABBE7D81D6BC3E052</ses:value>
+                  <ses:value>4BFA3929CCFF1248EDF96247C5EC1CAF</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -44,7 +44,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=777E8EC41C8BC4DABBE7D81D6BC3E052; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=4BFA3929CCFF1248EDF96247C5EC1CAF; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -56,7 +56,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-5dd73992:101a1fe4988:-7fc4</ses:value>
+                  <ses:value>-68b00563:101a5707561:-7fb8</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -94,15 +94,15 @@
     
 <table class="datagrid">
 
-<caption class="datagrid">
         
         
+<caption class="datagrid">
           <table><tr><td>Page 1 of 
3&nbsp;&nbsp;First&nbsp;/&nbsp;Previous&nbsp;&nbsp;&nbsp;<a 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E2">Next</a>&nbsp;/&nbsp;<a
 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E4">Last</a></td></tr></table>
-        
-        
-    </caption>
+        </caption>
 
         
+    
+        
         
         
 <thead class="datagrid">
@@ -177,7 +177,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>777E8EC41C8BC4DABBE7D81D6BC3E052</ses:value>
+                  <ses:value>4BFA3929CCFF1248EDF96247C5EC1CAF</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -203,7 +203,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=777E8EC41C8BC4DABBE7D81D6BC3E052; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=4BFA3929CCFF1248EDF96247C5EC1CAF; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -215,7 +215,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-5dd73992:101a1fe4988:-7fc4</ses:value>
+                  <ses:value>-68b00563:101a5707561:-7fb8</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -253,15 +253,15 @@
     
 <table class="datagrid">
 
-<caption class="datagrid">
         
         
+<caption class="datagrid">
           <table><tr><td>Page 3 of 3&nbsp;&nbsp;<a 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do">First</a>&nbsp;/&nbsp;<a
 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E2">Previous</a>&nbsp;&nbsp;&nbsp;Next&nbsp;/&nbsp;Last</td></tr></table>
-        
-        
-    </caption>
+        </caption>
 
         
+    
+        
         
         
 <thead class="datagrid">
@@ -322,7 +322,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>777E8EC41C8BC4DABBE7D81D6BC3E052</ses:value>
+                  <ses:value>4BFA3929CCFF1248EDF96247C5EC1CAF</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -348,7 +348,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=777E8EC41C8BC4DABBE7D81D6BC3E052; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=4BFA3929CCFF1248EDF96247C5EC1CAF; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -360,7 +360,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-5dd73992:101a1fe4988:-7fc4</ses:value>
+                  <ses:value>-68b00563:101a5707561:-7fb8</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -398,15 +398,15 @@
     
 <table class="datagrid">
 
-<caption class="datagrid">
         
         
+<caption class="datagrid">
           <table><tr><td>Page 1 of 
3&nbsp;&nbsp;First&nbsp;/&nbsp;Previous&nbsp;&nbsp;&nbsp;<a 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E2">Next</a>&nbsp;/&nbsp;<a
 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E4">Last</a></td></tr></table>
-        
-        
-    </caption>
+        </caption>
 
         
+    
+        
         
         
 <thead class="datagrid">
@@ -481,7 +481,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>777E8EC41C8BC4DABBE7D81D6BC3E052</ses:value>
+                  <ses:value>4BFA3929CCFF1248EDF96247C5EC1CAF</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -507,7 +507,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=777E8EC41C8BC4DABBE7D81D6BC3E052; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=4BFA3929CCFF1248EDF96247C5EC1CAF; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -519,7 +519,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-5dd73992:101a1fe4988:-7fc4</ses:value>
+                  <ses:value>-68b00563:101a5707561:-7fb8</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -557,15 +557,15 @@
     
 <table class="datagrid">
 
-<caption class="datagrid">
         
         
+<caption class="datagrid">
           <table><tr><td>Page 2 of 3&nbsp;&nbsp;<a 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do">First</a>&nbsp;/&nbsp;<a
 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do">Previous</a>&nbsp;&nbsp;&nbsp;<a
 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E4">Next</a>&nbsp;/&nbsp;<a
 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E4">Last</a></td></tr></table>
-        
-        
-    </caption>
+        </caption>
 
         
+    
+        
         
         
 <thead class="datagrid">
@@ -640,7 +640,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>777E8EC41C8BC4DABBE7D81D6BC3E052</ses:value>
+                  <ses:value>4BFA3929CCFF1248EDF96247C5EC1CAF</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -666,7 +666,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=777E8EC41C8BC4DABBE7D81D6BC3E052; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=4BFA3929CCFF1248EDF96247C5EC1CAF; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -678,7 +678,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-5dd73992:101a1fe4988:-7fc4</ses:value>
+                  <ses:value>-68b00563:101a5707561:-7fb8</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -716,15 +716,15 @@
     
 <table class="datagrid">
 
-<caption class="datagrid">
         
         
+<caption class="datagrid">
           <table><tr><td>Page 3 of 3&nbsp;&nbsp;<a 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do">First</a>&nbsp;/&nbsp;<a
 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E2">Previous</a>&nbsp;&nbsp;&nbsp;Next&nbsp;/&nbsp;Last</td></tr></table>
-        
-        
-    </caption>
+        </caption>
 
         
+    
+        
         
         
 <thead class="datagrid">
@@ -785,7 +785,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>777E8EC41C8BC4DABBE7D81D6BC3E052</ses:value>
+                  <ses:value>4BFA3929CCFF1248EDF96247C5EC1CAF</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -811,7 +811,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=777E8EC41C8BC4DABBE7D81D6BC3E052; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=4BFA3929CCFF1248EDF96247C5EC1CAF; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -823,7 +823,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-5dd73992:101a1fe4988:-7fc4</ses:value>
+                  <ses:value>-68b00563:101a5707561:-7fb8</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -861,15 +861,15 @@
     
 <table class="datagrid">
 
-<caption class="datagrid">
         
         
+<caption class="datagrid">
           <table><tr><td>Page 1 of 
3&nbsp;&nbsp;First&nbsp;/&nbsp;Previous&nbsp;&nbsp;&nbsp;<a 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E2">Next</a>&nbsp;/&nbsp;<a
 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E4">Last</a></td></tr></table>
-        
-        
-    </caption>
+        </caption>
 
         
+    
+        
         
         
 <thead class="datagrid">
@@ -944,7 +944,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>777E8EC41C8BC4DABBE7D81D6BC3E052</ses:value>
+                  <ses:value>4BFA3929CCFF1248EDF96247C5EC1CAF</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -970,7 +970,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=777E8EC41C8BC4DABBE7D81D6BC3E052; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=4BFA3929CCFF1248EDF96247C5EC1CAF; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -982,7 +982,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-5dd73992:101a1fe4988:-7fc4</ses:value>
+                  <ses:value>-68b00563:101a5707561:-7fb8</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1020,15 +1020,15 @@
     
 <table class="datagrid">
 
-<caption class="datagrid">
         
         
+<caption class="datagrid">
           <table><tr><td>Page 3 of 3&nbsp;&nbsp;<a 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do">First</a>&nbsp;/&nbsp;<a
 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E2">Previous</a>&nbsp;&nbsp;&nbsp;Next&nbsp;/&nbsp;Last</td></tr></table>
-        
-        
-    </caption>
+        </caption>
 
         
+    
+        
         
         
 <thead class="datagrid">
@@ -1094,7 +1094,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>777E8EC41C8BC4DABBE7D81D6BC3E052</ses:value>
+                  <ses:value>4BFA3929CCFF1248EDF96247C5EC1CAF</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1120,7 +1120,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=777E8EC41C8BC4DABBE7D81D6BC3E052; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=4BFA3929CCFF1248EDF96247C5EC1CAF; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1132,7 +1132,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-5dd73992:101a1fe4988:-7fc4</ses:value>
+                  <ses:value>-68b00563:101a5707561:-7fb8</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1170,15 +1170,15 @@
     
 <table class="datagrid">
 
-<caption class="datagrid">
         
         
+<caption class="datagrid">
           <table><tr><td>Page 2 of 3&nbsp;&nbsp;<a 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do">First</a>&nbsp;/&nbsp;<a
 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do">Previous</a>&nbsp;&nbsp;&nbsp;<a
 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E4">Next</a>&nbsp;/&nbsp;<a
 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E4">Last</a></td></tr></table>
-        
-        
-    </caption>
+        </caption>
 
         
+    
+        
         
         
 <thead class="datagrid">
@@ -1248,7 +1248,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>777E8EC41C8BC4DABBE7D81D6BC3E052</ses:value>
+                  <ses:value>4BFA3929CCFF1248EDF96247C5EC1CAF</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1274,7 +1274,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=777E8EC41C8BC4DABBE7D81D6BC3E052; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=4BFA3929CCFF1248EDF96247C5EC1CAF; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1286,7 +1286,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-5dd73992:101a1fe4988:-7fc4</ses:value>
+                  <ses:value>-68b00563:101a5707561:-7fb8</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1324,15 +1324,15 @@
     
 <table class="datagrid">
 
-<caption class="datagrid">
         
         
+<caption class="datagrid">
           <table><tr><td>Page 1 of 
3&nbsp;&nbsp;First&nbsp;/&nbsp;Previous&nbsp;&nbsp;&nbsp;<a 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E2">Next</a>&nbsp;/&nbsp;<a
 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E4">Last</a></td></tr></table>
-        
-        
-    </caption>
+        </caption>
 
         
+    
+        
         
         
 <thead class="datagrid">
@@ -1407,7 +1407,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>777E8EC41C8BC4DABBE7D81D6BC3E052</ses:value>
+                  <ses:value>4BFA3929CCFF1248EDF96247C5EC1CAF</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1433,7 +1433,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=777E8EC41C8BC4DABBE7D81D6BC3E052; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=4BFA3929CCFF1248EDF96247C5EC1CAF; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1445,7 +1445,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-5dd73992:101a1fe4988:-7fc4</ses:value>
+                  <ses:value>-68b00563:101a5707561:-7fb8</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1483,15 +1483,15 @@
     
 <table class="datagrid">
 
-<caption class="datagrid">
         
         
+<caption class="datagrid">
           <table><tr><td>Page 2 of 3&nbsp;&nbsp;<a 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do">First</a>&nbsp;/&nbsp;<a
 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do">Previous</a>&nbsp;&nbsp;&nbsp;<a
 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E4">Next</a>&nbsp;/&nbsp;<a
 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E4">Last</a></td></tr></table>
-        
-        
-    </caption>
+        </caption>
 
         
+    
+        
         
         
 <thead class="datagrid">
@@ -1566,7 +1566,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>777E8EC41C8BC4DABBE7D81D6BC3E052</ses:value>
+                  <ses:value>4BFA3929CCFF1248EDF96247C5EC1CAF</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1592,7 +1592,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=777E8EC41C8BC4DABBE7D81D6BC3E052; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=4BFA3929CCFF1248EDF96247C5EC1CAF; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1604,7 +1604,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-5dd73992:101a1fe4988:-7fc4</ses:value>
+                  <ses:value>-68b00563:101a5707561:-7fb8</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1642,15 +1642,15 @@
     
 <table class="datagrid">
 
-<caption class="datagrid">
         
         
+<caption class="datagrid">
           <table><tr><td>Page 3 of 3&nbsp;&nbsp;<a 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do">First</a>&nbsp;/&nbsp;<a
 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E2">Previous</a>&nbsp;&nbsp;&nbsp;Next&nbsp;/&nbsp;Last</td></tr></table>
-        
-        
-    </caption>
+        </caption>
 
         
+    
+        
         
         
 <thead class="datagrid">
@@ -1711,7 +1711,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>777E8EC41C8BC4DABBE7D81D6BC3E052</ses:value>
+                  <ses:value>4BFA3929CCFF1248EDF96247C5EC1CAF</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1737,7 +1737,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=777E8EC41C8BC4DABBE7D81D6BC3E052; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=4BFA3929CCFF1248EDF96247C5EC1CAF; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1749,7 +1749,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-5dd73992:101a1fe4988:-7fc4</ses:value>
+                  <ses:value>-68b00563:101a5707561:-7fb8</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1787,15 +1787,15 @@
     
 <table class="datagrid">
 
-<caption class="datagrid">
         
         
+<caption class="datagrid">
           <table><tr><td>Page 1 of 
3&nbsp;&nbsp;First&nbsp;/&nbsp;Previous&nbsp;&nbsp;&nbsp;<a 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E2">Next</a>&nbsp;/&nbsp;<a
 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E4">Last</a></td></tr></table>
-        
-        
-    </caption>
+        </caption>
 
         
+    
+        
         
         
 <thead class="datagrid">
@@ -1870,7 +1870,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>777E8EC41C8BC4DABBE7D81D6BC3E052</ses:value>
+                  <ses:value>4BFA3929CCFF1248EDF96247C5EC1CAF</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1896,7 +1896,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=777E8EC41C8BC4DABBE7D81D6BC3E052; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=4BFA3929CCFF1248EDF96247C5EC1CAF; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1908,7 +1908,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-5dd73992:101a1fe4988:-7fc4</ses:value>
+                  <ses:value>-68b00563:101a5707561:-7fb8</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1946,15 +1946,15 @@
     
 <table class="datagrid">
 
-<caption class="datagrid">
         
         
+<caption class="datagrid">
           <table><tr><td>Page 3 of 3&nbsp;&nbsp;<a 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do">First</a>&nbsp;/&nbsp;<a
 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E2">Previous</a>&nbsp;&nbsp;&nbsp;Next&nbsp;/&nbsp;Last</td></tr></table>
-        
-        
-    </caption>
+        </caption>
 
         
+    
+        
         
         
 <thead class="datagrid">
@@ -2015,7 +2015,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>777E8EC41C8BC4DABBE7D81D6BC3E052</ses:value>
+                  <ses:value>4BFA3929CCFF1248EDF96247C5EC1CAF</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -2041,7 +2041,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=777E8EC41C8BC4DABBE7D81D6BC3E052; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=4BFA3929CCFF1248EDF96247C5EC1CAF; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -2053,7 +2053,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-5dd73992:101a1fe4988:-7fc4</ses:value>
+                  <ses:value>-68b00563:101a5707561:-7fb8</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -2091,15 +2091,15 @@
     
 <table class="datagrid">
 
-<caption class="datagrid">
         
         
+<caption class="datagrid">
           <table><tr><td>Page 1 of 
3&nbsp;&nbsp;First&nbsp;/&nbsp;Previous&nbsp;&nbsp;&nbsp;<a 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E2">Next</a>&nbsp;/&nbsp;<a
 
href="/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E4">Last</a></td></tr></table>
-        
-        
-    </caption>
+        </caption>
 
         
+    
+        
         
         
 <thead class="datagrid">
@@ -2157,7 +2157,7 @@
          </ses:testResults>
       </ses:test>
    </ses:tests>
-   <ses:endDate>23 Jan 2005, 04:54:56.386 PM MST</ses:endDate>
+   <ses:endDate>24 Jan 2005, 08:59:00.746 AM MST</ses:endDate>
    <ses:sessionStatus>fail</ses:sessionStatus>
    <ses:testCount>14</ses:testCount>
    <ses:passedCount>0</ses:passedCount>

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&rev=126298&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridScriptletTagFile.xml&r1=126297&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridScriptletTagFile.xml&r2=126298
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridScriptletTagFile.xml
      (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridScriptletTagFile.xml
      Mon Jan 24 08:10:10 2005
@@ -2,7 +2,7 @@
 <ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
    <ses:sessionName>DataGridScriptletTagFile</ses:sessionName>
    <ses:tester>ekoneil</ses:tester>
-   <ses:startDate>23 Jan 2005, 04:55:00.142 PM MST</ses:startDate>
+   <ses:startDate>24 Jan 2005, 08:59:03.190 AM MST</ses:startDate>
    <ses:description>ekoneil</ses:description>
    <ses:tests>
       <ses:test>
@@ -18,7 +18,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>777E8EC41C8BC4DABBE7D81D6BC3E052</ses:value>
+                  <ses:value>4BFA3929CCFF1248EDF96247C5EC1CAF</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -44,7 +44,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=777E8EC41C8BC4DABBE7D81D6BC3E052; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=4BFA3929CCFF1248EDF96247C5EC1CAF; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -56,7 +56,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-5dd73992:101a1fe4988:-7fa0</ses:value>
+                  <ses:value>-68b00563:101a5707561:-7f93</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -92,17 +92,17 @@
 Page 1 of 1&nbsp;&nbsp;&nbsp;
 <table class="datagrid">
 
-<caption class="datagrid">
     
+<caption class="datagrid">
       
 
 This custom caption intentionally left blank
 
 
+    </caption>
+
     
     
-    
-</caption>
 
     
     
@@ -211,7 +211,7 @@
          </ses:testResults>
       </ses:test>
    </ses:tests>
-   <ses:endDate>23 Jan 2005, 04:55:02.325 PM MST</ses:endDate>
+   <ses:endDate>24 Jan 2005, 08:59:05.874 AM MST</ses:endDate>
    <ses:sessionStatus>fail</ses:sessionStatus>
    <ses:testCount>1</ses:testCount>
    <ses:passedCount>0</ses:passedCount>

Reply via email to