Author: dolander
Date: Mon Feb 21 12:42:07 2005
New Revision: 154717

URL: http://svn.apache.org/viewcvs?view=rev&rev=154717
Log:
There was a special case in the Anchor and Area tags.  They wrote their 
JavaScript out
using single quotes and tracked the onclick event specially.  This checkin 
removes 
this special case.  Now we write the JavaScript inside double quotes in all of 
the tags. 


Modified:
    
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/HtmlUtils.java
    
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Anchor.java
    
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/AnchorBase.java
    
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Form.java
    
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/javascript/javaScript.properties
    
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/rendering/AnchorTag.java
    
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/rendering/AreaTag.java
    
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/tree/TreeRenderer.java
    
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/coretags/form/jspost/index.jsp
    incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B22957.xml
    incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B35084.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B35084b.xml
    incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B39820.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/Cr121496.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtFormJspost.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCustomTagAttributes.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridJavaScriptSmoke.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DivPanel.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DivPanelTree.xml
    incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/J160.xml
    incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/J161.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/JsAllScript.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/JsAllScriptHtml.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/JsNoContainers.xml
    incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/OnTest.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/PfReturnTo.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RewriteNameVar.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/UpdateFormFromNestedPopup.xml
    incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/b34566.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/cr180865.xml
    
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/jsScriptScopeId.xml

Modified: 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/HtmlUtils.java
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/HtmlUtils.java?view=diff&r1=154716&r2=154717
==============================================================================
--- 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/HtmlUtils.java
 (original)
+++ 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/HtmlUtils.java
 Mon Feb 21 12:42:07 2005
@@ -128,7 +128,7 @@
         for (int i = 0; i < val.length(); i++) {
             char c = val.charAt(i);
             if (c == '"') {
-                sb.append("\\\"");
+                sb.append("&quot;");
                 continue;
             }
             if (c == '\\') {
@@ -140,6 +140,24 @@
         return sb.toString();
     }
 
+    public static String legacyEscapeEscapes(String val)
+    {
+        assert(val != null);
+        StringBuilder sb = new StringBuilder(val.length());
+        for (int i = 0; i < val.length(); i++) {
+            char c = val.charAt(i);
+            if (c == '"') {
+                sb.append("\\\"");
+                continue;
+            }
+            if (c == '\\') {
+                sb.append("\\\\");
+                continue;
+            }
+            sb.append(c);
+        }
+        return sb.toString();
+    }
 
     /**
      * @param url

Modified: 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Anchor.java
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Anchor.java?view=diff&r1=154716&r2=154717
==============================================================================
--- 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Anchor.java
 (original)
+++ 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Anchor.java
 Mon Feb 21 12:42:07 2005
@@ -147,7 +147,9 @@
      */
     public void setOnClick(String onclick)
     {
-        _state.onClick = setNonEmptyValueAttribute(onclick);
+        _state.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, ONCLICK, 
setNonEmptyValueAttribute(onclick));
+        // Jira 299
+        //_state.onClick = setNonEmptyValueAttribute(onclick);
     }
 
     /**

Modified: 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/AnchorBase.java
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/AnchorBase.java?view=diff&r1=154716&r2=154717
==============================================================================
--- 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/AnchorBase.java
 (original)
+++ 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/AnchorBase.java
 Mon Feb 21 12:42:07 2005
@@ -426,20 +426,29 @@
             String action = HtmlUtils.escapeEscapes(_clientAction);
             String entry = ScriptRequestState.getString("netuiAction",
                     new Object[]{action});
-            _state.onClick = entry;
+            _state.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, 
ONCLICK, entry);
+            // Jira 299
+            //_state.onClick = entry;
         }
 
         // if the user override the onclick we will ignore this
-        if (_state.onClick == null) {
+        String onclick = 
_state.getAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, ONCLICK);
+        if (onclick == null) {
             if (_formSubmit && formAction != null) {
                 String realFormName = getFormId();
-                _state.onClick = 
ScriptRequestState.getString("anchorFormSubmitAction",
+                String entry = 
ScriptRequestState.getString("anchorFormSubmitAction",
                         new Object[]{realFormName, _state.href});
+                _state.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, 
ONCLICK, entry);
+                // Jira 299
+                //_state.onClick = 
ScriptRequestState.getString("anchorFormSubmitAction",
+                //        new Object[]{realFormName, _state.href});
                 if (_form != null)
                     _form.insureRealId();
             }
             else if (_popupSupport != null) {
-                _state.onClick = _popupSupport.getOnClick(_state.href);
+                _state.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, 
ONCLICK, _popupSupport.getOnClick(_state.href));
+                // Jira 299
+                //_state.onClick = _popupSupport.getOnClick(_state.href);
             }
         }
 

Modified: 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Form.java
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Form.java?view=diff&r1=154716&r2=154717
==============================================================================
--- 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Form.java
 (original)
+++ 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Form.java
 Mon Feb 21 12:42:07 2005
@@ -515,6 +515,7 @@
     public void setGenJavaScriptFormSubmit(boolean formSubmit)
     {
         _formSubmit = formSubmit;
+        _setRealName = true;
     }
 
     /**

Modified: 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/javascript/javaScript.properties
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/javascript/javaScript.properties?view=diff&r1=154716&r2=154717
==============================================================================
--- 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/javascript/javaScript.properties
 (original)
+++ 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/javascript/javaScript.properties
 Mon Feb 21 12:42:07 2005
@@ -27,7 +27,8 @@
 }\n
 
 # The action event that will call the form submit javascript
-anchorFormSubmitAction=anchor_submit_form("{0}","{1}");return false;
+legacyAnchorFormSubmitAction=anchor_submit_form("{0}","{1}");return false;
+anchorFormSubmitAction=anchor_submit_form(''{0}'',''{1}'');return false;
 
 # generic method to open a popup window
 popupFunc=\
@@ -38,7 +39,7 @@
 }\n
 
 # Open a popup window
-popupSupportOnClick=netui_popup("{0}","{1}","{2}",{3});return false;
+popupSupportOnClick=netui_popup(''{0}'',''{1}'',''{2}'',{3});return false;
 
 # Open a popup window using a custom function
 popupSupportOnClickCustom={0}();return false;
@@ -214,7 +215,11 @@
 
 #This method will invoke the NetUICommand infrastructure
 netuiAction=\
+return netUI.action(''{0}'');
+
+legacyNetuiAction=\
 return netUI.action("{0}");
+
 
 #initialization code for the tree
 initTree=\

Modified: 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/rendering/AnchorTag.java
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/rendering/AnchorTag.java?view=diff&r1=154716&r2=154717
==============================================================================
--- 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/rendering/AnchorTag.java
 (original)
+++ 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/rendering/AnchorTag.java
 Mon Feb 21 12:42:07 2005
@@ -47,7 +47,7 @@
         // @todo: the onclick should be moved out of this into the map....
         public String name;
         public String href;
-        public String onClick;
+        //public String onClick;
 
         public void clear()
         {
@@ -55,7 +55,7 @@
 
             name = null;
             href = null;
-            onClick = null;
+            //onClick = null;
         }
     }
 
@@ -81,9 +81,14 @@
             renderAttribute(sb, CLASS, state.styleClass);
             renderAttributes(AbstractHtmlState.ATTR_GENERAL, sb, state);
             renderAttribute(sb, STYLE, state.style);
-            renderAttributes(AbstractHtmlState.ATTR_JAVASCRIPT, sb, state, 
false);
 
-            renderAttributeSingleQuotes(sb, ONCLICK, state.onClick);
+            //String onclick = 
state.getAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, ONCLICK);
+            //if (onclick != null)
+            //    state.removeAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, 
ONCLICK);
+            renderAttributes(AbstractHtmlState.ATTR_JAVASCRIPT, sb, state);
+
+            // backward compat for a second
+            //renderAttributeSingleQuotes(sb, ONCLICK, onclick);
             sb.append(">");
         }
 

Modified: 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/rendering/AreaTag.java
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/rendering/AreaTag.java?view=diff&r1=154716&r2=154717
==============================================================================
--- 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/rendering/AreaTag.java
 (original)
+++ 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/rendering/AreaTag.java
 Mon Feb 21 12:42:07 2005
@@ -35,9 +35,14 @@
         renderAttribute(sb, CLASS, state.styleClass);
         renderAttributes(AbstractHtmlState.ATTR_GENERAL, sb, state);
         renderAttribute(sb, STYLE, state.style);
-        renderAttributes(AbstractHtmlState.ATTR_JAVASCRIPT, sb, state, false);
 
-        renderAttributeSingleQuotes(sb, ONCLICK, state.onClick);
+        //String onclick = 
state.getAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, ONCLICK);
+        //if (onclick != null)
+        //    state.removeAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, 
ONCLICK);
+        renderAttributes(AbstractHtmlState.ATTR_JAVASCRIPT, sb, state);
+
+        // backward compat for a second
+        //renderAttributeSingleQuotes(sb, ONCLICK, onclick);
 
         writeEnd(sb);
     }

Modified: 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/tree/TreeRenderer.java
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/tree/TreeRenderer.java?view=diff&r1=154716&r2=154717
==============================================================================
--- 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/tree/TreeRenderer.java
 (original)
+++ 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/tree/TreeRenderer.java
 Mon Feb 21 12:42:07 2005
@@ -381,7 +381,9 @@
                     action = HtmlUtils.escapeEscapes(action);
                     action = ScriptRequestState.getString("netuiAction", new 
Object[]{action});
                 }
-                _anchorState.onClick = action;
+                
_anchorState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, ONCLICK, 
action);
+                // Jira 299
+                //_anchorState.onClick = action;
             }
 
             // actually render the anchor.

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/coretags/form/jspost/index.jsp
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/coretags/form/jspost/index.jsp?view=diff&r1=154716&r2=154717
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/coretags/form/jspost/index.jsp
 (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/coretags/form/jspost/index.jsp
 Mon Feb 21 12:42:07 2005
@@ -17,7 +17,7 @@
             <input type="hidden" name="foo" value="value">  
         </netui:form>
 
-        <netui:anchor action="begin" 
onClick='anchor_submit_form("Netui_Form_0","post.do");return false;'>Submit the 
form</netui:anchor>
+        <netui:anchor action="begin" 
onClick="anchor_submit_form('Netui_Form_0','post.do');return false;">Submit the 
form</netui:anchor>
         <hr>
         <p>Value: ${param.foo}</p>
     </body>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B22957.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B22957.xml?view=diff&r1=154716&r2=154717
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B22957.xml 
(original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B22957.xml 
Mon Feb 21 12:42:07 2005
@@ -2,7 +2,7 @@
 <ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
    <ses:sessionName>B22957</ses:sessionName>
    <ses:tester>Daryl</ses:tester>
-   <ses:startDate>11 Feb 2005, 06:18:08.684 PM MST</ses:startDate>
+   <ses:startDate>21 Feb 2005, 10:24:57.265 AM MST</ses:startDate>
    <ses:description>Daryl</ses:description>
    <ses:tests>
       <ses:test>
@@ -18,7 +18,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>D816AF65DAC4C913C3202ED2A55FC180</ses:value>
+                  <ses:value>E4BC5A8D8A2B2548F6B41028CBFDCFA6</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -40,7 +40,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=D816AF65DAC4C913C3202ED2A55FC180; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=E4BC5A8D8A2B2548F6B41028CBFDCFA6; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>cookie2</ses:name>
@@ -56,7 +56,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>f624cb5:102041cb937:-7cce</ses:value>
+                  <ses:value>354d10c9:10235f1bd0e:-7f22</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -83,7 +83,7 @@
     &lt;/head>
     &lt;body>
          &lt;form name="Netui_Form_0" id="Netui_Form_0" 
action="/coreWeb/bugs/b22957/foo.do" method="post"> 
-            &lt;a href="/coreWeb/bugs/b22957/foo.do" 
onclick='anchor_submit_form("Netui_Form_0","/coreWeb/bugs/b22957/foo.do");return
 false;'>Create&lt;/a> 
+            &lt;a href="/coreWeb/bugs/b22957/foo.do" 
onclick="anchor_submit_form('Netui_Form_0','/coreWeb/bugs/b22957/foo.do');return
 false;">Create&lt;/a> 
         &lt;/form>
         &lt;span>begin&lt;/span>
     &lt;script language="JavaScript" type="text/JavaScript">
@@ -127,7 +127,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>D816AF65DAC4C913C3202ED2A55FC180</ses:value>
+                  <ses:value>E4BC5A8D8A2B2548F6B41028CBFDCFA6</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -161,7 +161,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=D816AF65DAC4C913C3202ED2A55FC180; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=E4BC5A8D8A2B2548F6B41028CBFDCFA6; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>cookie2</ses:name>
@@ -177,7 +177,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>f624cb5:102041cb937:-7cce</ses:value>
+                  <ses:value>354d10c9:10235f1bd0e:-7f22</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -204,7 +204,7 @@
     &lt;/head>
     &lt;body>
          &lt;form name="Netui_Form_0" id="Netui_Form_0" 
action="/coreWeb/bugs/b22957/foo.do" method="post"> 
-            &lt;a href="/coreWeb/bugs/b22957/foo.do" 
onclick='anchor_submit_form("Netui_Form_0","/coreWeb/bugs/b22957/foo.do");return
 false;'>Create&lt;/a> 
+            &lt;a href="/coreWeb/bugs/b22957/foo.do" 
onclick="anchor_submit_form('Netui_Form_0','/coreWeb/bugs/b22957/foo.do');return
 false;">Create&lt;/a> 
         &lt;/form>
         &lt;span>foo&lt;/span>
     &lt;script language="JavaScript" type="text/JavaScript">
@@ -236,7 +236,7 @@
          </ses:testResults>
       </ses:test>
    </ses:tests>
-   <ses:endDate>11 Feb 2005, 06:18:10.196 PM MST</ses:endDate>
+   <ses:endDate>21 Feb 2005, 10:24:58.203 AM MST</ses:endDate>
    <ses:sessionStatus>fail</ses:sessionStatus>
    <ses:testCount>2</ses:testCount>
    <ses:passedCount>0</ses:passedCount>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B35084.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B35084.xml?view=diff&r1=154716&r2=154717
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B35084.xml 
(original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B35084.xml 
Mon Feb 21 12:42:07 2005
@@ -2,7 +2,7 @@
 <ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
    <ses:sessionName>B35084</ses:sessionName>
    <ses:tester>Daryl</ses:tester>
-   <ses:startDate>11 Feb 2005, 06:18:49.994 PM MST</ses:startDate>
+   <ses:startDate>21 Feb 2005, 10:25:20.765 AM MST</ses:startDate>
    <ses:description>Daryl</ses:description>
    <ses:tests>
       <ses:test>
@@ -18,17 +18,17 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>D816AF65DAC4C913C3202ED2A55FC180</ses:value>
+                  <ses:value>E4BC5A8D8A2B2548F6B41028CBFDCFA6</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
                <ses:header>
-                  <ses:name>accept</ses:name>
-                  <ses:value>image/gif, image/x-xbitmap, image/jpeg, 
image/pjpeg, application/vnd.ms-powerpoint, application/vnd.ms-excel, 
application/msword, */*</ses:value>
+                  <ses:name>---------------</ses:name>
+                  <ses:value>----- -------- ------- --------- 
----------</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>accept-encoding</ses:name>
-                  <ses:value>gzip, deflate, x-gzip, compress, 
x-compress</ses:value>
+                  <ses:name>accept</ses:name>
+                  <ses:value>image/gif, image/x-xbitmap, image/jpeg, 
image/pjpeg, application/vnd.ms-powerpoint, application/vnd.ms-excel, 
application/msword, */*</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>accept-language</ses:name>
@@ -40,7 +40,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=D816AF65DAC4C913C3202ED2A55FC180; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=E4BC5A8D8A2B2548F6B41028CBFDCFA6; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>cookie2</ses:name>
@@ -56,7 +56,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>f624cb5:102041cb937:-7cad</ses:value>
+                  <ses:value>354d10c9:10235f1bd0e:-7f01</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -81,7 +81,7 @@
 </html>]]></ses:responseBody>
          </ses:response>
          <ses:testResults>
-            <ses:testStatus>fail</ses:testStatus>
+            <ses:testStatus>pass</ses:testStatus>
          </ses:testResults>
       </ses:test>
       <ses:test>
@@ -97,17 +97,17 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>D816AF65DAC4C913C3202ED2A55FC180</ses:value>
+                  <ses:value>E4BC5A8D8A2B2548F6B41028CBFDCFA6</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
                <ses:header>
-                  <ses:name>accept</ses:name>
-                  <ses:value>image/gif, image/x-xbitmap, image/jpeg, 
image/pjpeg, application/vnd.ms-powerpoint, application/vnd.ms-excel, 
application/msword, */*</ses:value>
+                  <ses:name>---------------</ses:name>
+                  <ses:value>----- -------- ------- --------- 
----------</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>accept-encoding</ses:name>
-                  <ses:value>gzip, deflate, x-gzip, compress, 
x-compress</ses:value>
+                  <ses:name>accept</ses:name>
+                  <ses:value>image/gif, image/x-xbitmap, image/jpeg, 
image/pjpeg, application/vnd.ms-powerpoint, application/vnd.ms-excel, 
application/msword, */*</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>accept-language</ses:name>
@@ -119,7 +119,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=D816AF65DAC4C913C3202ED2A55FC180; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=E4BC5A8D8A2B2548F6B41028CBFDCFA6; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>cookie2</ses:name>
@@ -135,7 +135,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>f624cb5:102041cb937:-7cad</ses:value>
+                  <ses:value>354d10c9:10235f1bd0e:-7f01</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -160,7 +160,7 @@
             &lt;/tr>
             &lt;tr>
                 &lt;td>         
-                    &lt;a href="/coreWeb/bugs/b35084/begin.do" 
onclick='anchor_submit_form("Netui_Form_0","/coreWeb/bugs/b35084/begin.do");return
 false;'>&lt;img 
src="/coreWeb/bugs/b35084/../../resources/images/back.gif">&lt;/a>
+                    &lt;a href="/coreWeb/bugs/b35084/begin.do" 
onclick="anchor_submit_form('Netui_Form_0','/coreWeb/bugs/b35084/begin.do');return
 false;">&lt;img 
src="/coreWeb/bugs/b35084/../../resources/images/back.gif">&lt;/a>
 
 &lt;script language="JavaScript" type="text/JavaScript">
 &lt;!--
@@ -183,7 +183,7 @@
 
 
                     !!!!
-                    &lt;a href="/coreWeb/bugs/b35084/next.do" 
onclick='anchor_submit_form("Netui_Form_0","/coreWeb/bugs/b35084/next.do");return
 false;'>&lt;img 
src="/coreWeb/bugs/b35084/../../resources/images/insert.gif">&lt;/a>
+                    &lt;a href="/coreWeb/bugs/b35084/next.do" 
onclick="anchor_submit_form('Netui_Form_0','/coreWeb/bugs/b35084/next.do');return
 false;">&lt;img 
src="/coreWeb/bugs/b35084/../../resources/images/insert.gif">&lt;/a>
                 &lt;/td>
             &lt;/tr>
         &lt;/table>
@@ -213,17 +213,17 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>D816AF65DAC4C913C3202ED2A55FC180</ses:value>
+                  <ses:value>E4BC5A8D8A2B2548F6B41028CBFDCFA6</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
                <ses:header>
-                  <ses:name>accept</ses:name>
-                  <ses:value>image/gif, image/x-xbitmap, image/jpeg, 
image/pjpeg, application/vnd.ms-powerpoint, application/vnd.ms-excel, 
application/msword, */*</ses:value>
+                  <ses:name>---------------</ses:name>
+                  <ses:value>----- -------- ------- --------- 
----------</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>accept-encoding</ses:name>
-                  <ses:value>gzip, deflate, x-gzip, compress, 
x-compress</ses:value>
+                  <ses:name>accept</ses:name>
+                  <ses:value>image/gif, image/x-xbitmap, image/jpeg, 
image/pjpeg, application/vnd.ms-powerpoint, application/vnd.ms-excel, 
application/msword, */*</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>accept-language</ses:name>
@@ -247,7 +247,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=D816AF65DAC4C913C3202ED2A55FC180; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=E4BC5A8D8A2B2548F6B41028CBFDCFA6; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>cookie2</ses:name>
@@ -263,7 +263,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>f624cb5:102041cb937:-7cad</ses:value>
+                  <ses:value>354d10c9:10235f1bd0e:-7f01</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -288,7 +288,7 @@
 </html>]]></ses:responseBody>
          </ses:response>
          <ses:testResults>
-            <ses:testStatus>fail</ses:testStatus>
+            <ses:testStatus>pass</ses:testStatus>
          </ses:testResults>
       </ses:test>
       <ses:test>
@@ -304,17 +304,17 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>D816AF65DAC4C913C3202ED2A55FC180</ses:value>
+                  <ses:value>E4BC5A8D8A2B2548F6B41028CBFDCFA6</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
                <ses:header>
-                  <ses:name>accept</ses:name>
-                  <ses:value>image/gif, image/x-xbitmap, image/jpeg, 
image/pjpeg, application/vnd.ms-powerpoint, application/vnd.ms-excel, 
application/msword, */*</ses:value>
+                  <ses:name>---------------</ses:name>
+                  <ses:value>----- -------- ------- --------- 
----------</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>accept-encoding</ses:name>
-                  <ses:value>gzip, deflate, x-gzip, compress, 
x-compress</ses:value>
+                  <ses:name>accept</ses:name>
+                  <ses:value>image/gif, image/x-xbitmap, image/jpeg, 
image/pjpeg, application/vnd.ms-powerpoint, application/vnd.ms-excel, 
application/msword, */*</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>accept-language</ses:name>
@@ -326,7 +326,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=D816AF65DAC4C913C3202ED2A55FC180; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=E4BC5A8D8A2B2548F6B41028CBFDCFA6; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>cookie2</ses:name>
@@ -342,7 +342,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>f624cb5:102041cb937:-7cad</ses:value>
+                  <ses:value>354d10c9:10235f1bd0e:-7f01</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -367,7 +367,7 @@
             &lt;/tr>
             &lt;tr>
                 &lt;td>         
-                    &lt;a href="/coreWeb/bugs/b35084/begin.do" 
onclick='anchor_submit_form("Netui_Form_0","/coreWeb/bugs/b35084/begin.do");return
 false;'>&lt;img 
src="/coreWeb/bugs/b35084/../../resources/images/back.gif">&lt;/a>
+                    &lt;a href="/coreWeb/bugs/b35084/begin.do" 
onclick="anchor_submit_form('Netui_Form_0','/coreWeb/bugs/b35084/begin.do');return
 false;">&lt;img 
src="/coreWeb/bugs/b35084/../../resources/images/back.gif">&lt;/a>
 
 &lt;script language="JavaScript" type="text/JavaScript">
 &lt;!--
@@ -390,7 +390,7 @@
 
 
                     !!!!
-                    &lt;a href="/coreWeb/bugs/b35084/next.do" 
onclick='anchor_submit_form("Netui_Form_0","/coreWeb/bugs/b35084/next.do");return
 false;'>&lt;img 
src="/coreWeb/bugs/b35084/../../resources/images/insert.gif">&lt;/a>
+                    &lt;a href="/coreWeb/bugs/b35084/next.do" 
onclick="anchor_submit_form('Netui_Form_0','/coreWeb/bugs/b35084/next.do');return
 false;">&lt;img 
src="/coreWeb/bugs/b35084/../../resources/images/insert.gif">&lt;/a>
                 &lt;/td>
             &lt;/tr>
         &lt;/table>
@@ -420,17 +420,17 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>D816AF65DAC4C913C3202ED2A55FC180</ses:value>
+                  <ses:value>E4BC5A8D8A2B2548F6B41028CBFDCFA6</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
                <ses:header>
-                  <ses:name>accept</ses:name>
-                  <ses:value>image/gif, image/x-xbitmap, image/jpeg, 
image/pjpeg, application/vnd.ms-powerpoint, application/vnd.ms-excel, 
application/msword, */*</ses:value>
+                  <ses:name>---------------</ses:name>
+                  <ses:value>----- -------- ------- --------- 
----------</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>accept-encoding</ses:name>
-                  <ses:value>gzip, deflate, x-gzip, compress, 
x-compress</ses:value>
+                  <ses:name>accept</ses:name>
+                  <ses:value>image/gif, image/x-xbitmap, image/jpeg, 
image/pjpeg, application/vnd.ms-powerpoint, application/vnd.ms-excel, 
application/msword, */*</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>accept-language</ses:name>
@@ -454,7 +454,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=D816AF65DAC4C913C3202ED2A55FC180; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=E4BC5A8D8A2B2548F6B41028CBFDCFA6; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>cookie2</ses:name>
@@ -470,7 +470,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>f624cb5:102041cb937:-7cad</ses:value>
+                  <ses:value>354d10c9:10235f1bd0e:-7f01</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -495,9 +495,9 @@
          </ses:testResults>
       </ses:test>
    </ses:tests>
-   <ses:endDate>11 Feb 2005, 06:18:55.311 PM MST</ses:endDate>
+   <ses:endDate>21 Feb 2005, 10:25:23.703 AM MST</ses:endDate>
    <ses:sessionStatus>fail</ses:sessionStatus>
    <ses:testCount>5</ses:testCount>
-   <ses:passedCount>1</ses:passedCount>
-   <ses:failedCount>4</ses:failedCount>
+   <ses:passedCount>3</ses:passedCount>
+   <ses:failedCount>2</ses:failedCount>
 </ses:recorderSession>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B35084b.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B35084b.xml?view=diff&r1=154716&r2=154717
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B35084b.xml 
(original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B35084b.xml 
Mon Feb 21 12:42:07 2005
@@ -2,7 +2,7 @@
 <ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
    <ses:sessionName>B35084b</ses:sessionName>
    <ses:tester>Daryl</ses:tester>
-   <ses:startDate>11 Feb 2005, 06:18:55.391 PM MST</ses:startDate>
+   <ses:startDate>21 Feb 2005, 10:25:23.734 AM MST</ses:startDate>
    <ses:description>Daryl</ses:description>
    <ses:tests>
       <ses:test>
@@ -18,17 +18,17 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>D816AF65DAC4C913C3202ED2A55FC180</ses:value>
+                  <ses:value>E4BC5A8D8A2B2548F6B41028CBFDCFA6</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
                <ses:header>
-                  <ses:name>accept</ses:name>
-                  <ses:value>image/gif, image/x-xbitmap, image/jpeg, 
image/pjpeg, application/vnd.ms-powerpoint, application/vnd.ms-excel, 
application/msword, */*</ses:value>
+                  <ses:name>---------------</ses:name>
+                  <ses:value>----- -------- ------- --------- 
----------</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>accept-encoding</ses:name>
-                  <ses:value>gzip, deflate, x-gzip, compress, 
x-compress</ses:value>
+                  <ses:name>accept</ses:name>
+                  <ses:value>image/gif, image/x-xbitmap, image/jpeg, 
image/pjpeg, application/vnd.ms-powerpoint, application/vnd.ms-excel, 
application/msword, */*</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>accept-language</ses:name>
@@ -40,7 +40,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=D816AF65DAC4C913C3202ED2A55FC180; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=E4BC5A8D8A2B2548F6B41028CBFDCFA6; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>cookie2</ses:name>
@@ -56,7 +56,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>f624cb5:102041cb937:-7ca7</ses:value>
+                  <ses:value>354d10c9:10235f1bd0e:-7efb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -98,17 +98,17 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>D816AF65DAC4C913C3202ED2A55FC180</ses:value>
+                  <ses:value>E4BC5A8D8A2B2548F6B41028CBFDCFA6</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
                <ses:header>
-                  <ses:name>accept</ses:name>
-                  <ses:value>image/gif, image/x-xbitmap, image/jpeg, 
image/pjpeg, application/vnd.ms-powerpoint, application/vnd.ms-excel, 
application/msword, */*</ses:value>
+                  <ses:name>---------------</ses:name>
+                  <ses:value>----- -------- ------- --------- 
----------</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>accept-encoding</ses:name>
-                  <ses:value>gzip, deflate, x-gzip, compress, 
x-compress</ses:value>
+                  <ses:name>accept</ses:name>
+                  <ses:value>image/gif, image/x-xbitmap, image/jpeg, 
image/pjpeg, application/vnd.ms-powerpoint, application/vnd.ms-excel, 
application/msword, */*</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>accept-language</ses:name>
@@ -120,7 +120,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=D816AF65DAC4C913C3202ED2A55FC180; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=E4BC5A8D8A2B2548F6B41028CBFDCFA6; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>cookie2</ses:name>
@@ -136,7 +136,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>f624cb5:102041cb937:-7ca7</ses:value>
+                  <ses:value>354d10c9:10235f1bd0e:-7efb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -169,7 +169,7 @@
 </table></span>
 
                     !!!!
-                    <a href="/coreWeb/bugs/b35084b/next.do" 
onclick='anchor_submit_form("Netui_Form_0","/coreWeb/bugs/b35084b/next.do");return
 false;'><img src="/coreWeb/bugs/b35084b/../../resources/images/insert.gif"></a>
+                    <a href="/coreWeb/bugs/b35084b/next.do" 
onclick="anchor_submit_form('Netui_Form_0','/coreWeb/bugs/b35084b/next.do');return
 false;"><img src="/coreWeb/bugs/b35084b/../../resources/images/insert.gif"></a>
 
 <script language="JavaScript" type="text/JavaScript">
 <!--
@@ -203,7 +203,7 @@
          </ses:testResults>
       </ses:test>
    </ses:tests>
-   <ses:endDate>11 Feb 2005, 06:18:58.736 PM MST</ses:endDate>
+   <ses:endDate>21 Feb 2005, 10:25:25.796 AM MST</ses:endDate>
    <ses:sessionStatus>fail</ses:sessionStatus>
    <ses:testCount>2</ses:testCount>
    <ses:passedCount>1</ses:passedCount>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B39820.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B39820.xml?view=diff&r1=154716&r2=154717
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B39820.xml 
(original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B39820.xml 
Mon Feb 21 12:42:07 2005
@@ -2,7 +2,7 @@
 <ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
    <ses:sessionName>B39820</ses:sessionName>
    <ses:tester>Daryl</ses:tester>
-   <ses:startDate>11 Feb 2005, 06:19:31.914 PM MST</ses:startDate>
+   <ses:startDate>21 Feb 2005, 10:25:44.812 AM MST</ses:startDate>
    <ses:description>Daryl</ses:description>
    <ses:tests>
       <ses:test>
@@ -18,7 +18,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>D816AF65DAC4C913C3202ED2A55FC180</ses:value>
+                  <ses:value>E4BC5A8D8A2B2548F6B41028CBFDCFA6</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -40,7 +40,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=D816AF65DAC4C913C3202ED2A55FC180; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=E4BC5A8D8A2B2548F6B41028CBFDCFA6; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>cookie2</ses:name>
@@ -56,7 +56,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>f624cb5:102041cb937:-7c7e</ses:value>
+                  <ses:value>354d10c9:10235f1bd0e:-7ed2</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -93,8 +93,8 @@
                     &lt;/td>
                 &lt;/tr>
             &lt;/table>
-            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=foo" 
onclick='anchor_submit_form("tagId1","/coreWeb/bugs/b39820/theAction.do?prop2=foo");return
 false;'>Foo&lt;/a>
-            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=bar" 
onclick='anchor_submit_form("tagId1","/coreWeb/bugs/b39820/theAction.do?prop2=bar");return
 false;'>Bar&lt;/a>
+            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=foo" 
onclick="anchor_submit_form('tagId1','/coreWeb/bugs/b39820/theAction.do?prop2=foo');return
 false;">Foo&lt;/a>
+            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=bar" 
onclick="anchor_submit_form('tagId1','/coreWeb/bugs/b39820/theAction.do?prop2=bar');return
 false;">Bar&lt;/a>
         &lt;/form>
         
         &lt;form name="tagId2" id="tagId2" 
action="/coreWeb/bugs/b39820/theAction.do" method="post">
@@ -108,8 +108,8 @@
                     &lt;/td>
                 &lt;/tr>
             &lt;/table>
-            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=not+foo" 
onclick='anchor_submit_form("tagId2","/coreWeb/bugs/b39820/theAction.do?prop2=not+foo");return
 false;'>Not Foo&lt;/a>
-            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=not+bar" 
onclick='anchor_submit_form("tagId2","/coreWeb/bugs/b39820/theAction.do?prop2=not+bar");return
 false;'>Not Bar&lt;/a>
+            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=not+foo" 
onclick="anchor_submit_form('tagId2','/coreWeb/bugs/b39820/theAction.do?prop2=not+foo');return
 false;">Not Foo&lt;/a>
+            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=not+bar" 
onclick="anchor_submit_form('tagId2','/coreWeb/bugs/b39820/theAction.do?prop2=not+bar');return
 false;">Not Bar&lt;/a>
         &lt;/form>
     &lt;script language="JavaScript" type="text/JavaScript">
 &lt;!--
@@ -236,7 +236,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>D816AF65DAC4C913C3202ED2A55FC180</ses:value>
+                  <ses:value>E4BC5A8D8A2B2548F6B41028CBFDCFA6</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -270,7 +270,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=D816AF65DAC4C913C3202ED2A55FC180; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=E4BC5A8D8A2B2548F6B41028CBFDCFA6; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>cookie2</ses:name>
@@ -286,7 +286,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>f624cb5:102041cb937:-7c7e</ses:value>
+                  <ses:value>354d10c9:10235f1bd0e:-7ed2</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -336,7 +336,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>D816AF65DAC4C913C3202ED2A55FC180</ses:value>
+                  <ses:value>E4BC5A8D8A2B2548F6B41028CBFDCFA6</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -358,7 +358,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=D816AF65DAC4C913C3202ED2A55FC180; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=E4BC5A8D8A2B2548F6B41028CBFDCFA6; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>cookie2</ses:name>
@@ -374,7 +374,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>f624cb5:102041cb937:-7c7e</ses:value>
+                  <ses:value>354d10c9:10235f1bd0e:-7ed2</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -411,8 +411,8 @@
                     &lt;/td>
                 &lt;/tr>
             &lt;/table>
-            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=foo" 
onclick='anchor_submit_form("tagId1","/coreWeb/bugs/b39820/theAction.do?prop2=foo");return
 false;'>Foo&lt;/a>
-            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=bar" 
onclick='anchor_submit_form("tagId1","/coreWeb/bugs/b39820/theAction.do?prop2=bar");return
 false;'>Bar&lt;/a>
+            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=foo" 
onclick="anchor_submit_form('tagId1','/coreWeb/bugs/b39820/theAction.do?prop2=foo');return
 false;">Foo&lt;/a>
+            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=bar" 
onclick="anchor_submit_form('tagId1','/coreWeb/bugs/b39820/theAction.do?prop2=bar');return
 false;">Bar&lt;/a>
         &lt;/form>
         
         &lt;form name="tagId2" id="tagId2" 
action="/coreWeb/bugs/b39820/theAction.do" method="post">
@@ -426,8 +426,8 @@
                     &lt;/td>
                 &lt;/tr>
             &lt;/table>
-            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=not+foo" 
onclick='anchor_submit_form("tagId2","/coreWeb/bugs/b39820/theAction.do?prop2=not+foo");return
 false;'>Not Foo&lt;/a>
-            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=not+bar" 
onclick='anchor_submit_form("tagId2","/coreWeb/bugs/b39820/theAction.do?prop2=not+bar");return
 false;'>Not Bar&lt;/a>
+            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=not+foo" 
onclick="anchor_submit_form('tagId2','/coreWeb/bugs/b39820/theAction.do?prop2=not+foo');return
 false;">Not Foo&lt;/a>
+            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=not+bar" 
onclick="anchor_submit_form('tagId2','/coreWeb/bugs/b39820/theAction.do?prop2=not+bar');return
 false;">Not Bar&lt;/a>
         &lt;/form>
     &lt;script language="JavaScript" type="text/JavaScript">
 &lt;!--
@@ -554,7 +554,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>D816AF65DAC4C913C3202ED2A55FC180</ses:value>
+                  <ses:value>E4BC5A8D8A2B2548F6B41028CBFDCFA6</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -588,7 +588,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=D816AF65DAC4C913C3202ED2A55FC180; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=E4BC5A8D8A2B2548F6B41028CBFDCFA6; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>cookie2</ses:name>
@@ -604,7 +604,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>f624cb5:102041cb937:-7c7e</ses:value>
+                  <ses:value>354d10c9:10235f1bd0e:-7ed2</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -654,7 +654,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>D816AF65DAC4C913C3202ED2A55FC180</ses:value>
+                  <ses:value>E4BC5A8D8A2B2548F6B41028CBFDCFA6</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -676,7 +676,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=D816AF65DAC4C913C3202ED2A55FC180; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=E4BC5A8D8A2B2548F6B41028CBFDCFA6; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>cookie2</ses:name>
@@ -692,7 +692,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>f624cb5:102041cb937:-7c7e</ses:value>
+                  <ses:value>354d10c9:10235f1bd0e:-7ed2</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -729,8 +729,8 @@
                     &lt;/td>
                 &lt;/tr>
             &lt;/table>
-            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=foo" 
onclick='anchor_submit_form("tagId1","/coreWeb/bugs/b39820/theAction.do?prop2=foo");return
 false;'>Foo&lt;/a>
-            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=bar" 
onclick='anchor_submit_form("tagId1","/coreWeb/bugs/b39820/theAction.do?prop2=bar");return
 false;'>Bar&lt;/a>
+            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=foo" 
onclick="anchor_submit_form('tagId1','/coreWeb/bugs/b39820/theAction.do?prop2=foo');return
 false;">Foo&lt;/a>
+            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=bar" 
onclick="anchor_submit_form('tagId1','/coreWeb/bugs/b39820/theAction.do?prop2=bar');return
 false;">Bar&lt;/a>
         &lt;/form>
         
         &lt;form name="tagId2" id="tagId2" 
action="/coreWeb/bugs/b39820/theAction.do" method="post">
@@ -744,8 +744,8 @@
                     &lt;/td>
                 &lt;/tr>
             &lt;/table>
-            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=not+foo" 
onclick='anchor_submit_form("tagId2","/coreWeb/bugs/b39820/theAction.do?prop2=not+foo");return
 false;'>Not Foo&lt;/a>
-            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=not+bar" 
onclick='anchor_submit_form("tagId2","/coreWeb/bugs/b39820/theAction.do?prop2=not+bar");return
 false;'>Not Bar&lt;/a>
+            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=not+foo" 
onclick="anchor_submit_form('tagId2','/coreWeb/bugs/b39820/theAction.do?prop2=not+foo');return
 false;">Not Foo&lt;/a>
+            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=not+bar" 
onclick="anchor_submit_form('tagId2','/coreWeb/bugs/b39820/theAction.do?prop2=not+bar');return
 false;">Not Bar&lt;/a>
         &lt;/form>
     &lt;script language="JavaScript" type="text/JavaScript">
 &lt;!--
@@ -872,7 +872,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>D816AF65DAC4C913C3202ED2A55FC180</ses:value>
+                  <ses:value>E4BC5A8D8A2B2548F6B41028CBFDCFA6</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -906,7 +906,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=D816AF65DAC4C913C3202ED2A55FC180; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=E4BC5A8D8A2B2548F6B41028CBFDCFA6; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>cookie2</ses:name>
@@ -922,7 +922,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>f624cb5:102041cb937:-7c7e</ses:value>
+                  <ses:value>354d10c9:10235f1bd0e:-7ed2</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -972,7 +972,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>D816AF65DAC4C913C3202ED2A55FC180</ses:value>
+                  <ses:value>E4BC5A8D8A2B2548F6B41028CBFDCFA6</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -994,7 +994,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=D816AF65DAC4C913C3202ED2A55FC180; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=E4BC5A8D8A2B2548F6B41028CBFDCFA6; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>cookie2</ses:name>
@@ -1010,7 +1010,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>f624cb5:102041cb937:-7c7e</ses:value>
+                  <ses:value>354d10c9:10235f1bd0e:-7ed2</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1047,8 +1047,8 @@
                     &lt;/td>
                 &lt;/tr>
             &lt;/table>
-            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=foo" 
onclick='anchor_submit_form("tagId1","/coreWeb/bugs/b39820/theAction.do?prop2=foo");return
 false;'>Foo&lt;/a>
-            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=bar" 
onclick='anchor_submit_form("tagId1","/coreWeb/bugs/b39820/theAction.do?prop2=bar");return
 false;'>Bar&lt;/a>
+            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=foo" 
onclick="anchor_submit_form('tagId1','/coreWeb/bugs/b39820/theAction.do?prop2=foo');return
 false;">Foo&lt;/a>
+            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=bar" 
onclick="anchor_submit_form('tagId1','/coreWeb/bugs/b39820/theAction.do?prop2=bar');return
 false;">Bar&lt;/a>
         &lt;/form>
         
         &lt;form name="tagId2" id="tagId2" 
action="/coreWeb/bugs/b39820/theAction.do" method="post">
@@ -1062,8 +1062,8 @@
                     &lt;/td>
                 &lt;/tr>
             &lt;/table>
-            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=not+foo" 
onclick='anchor_submit_form("tagId2","/coreWeb/bugs/b39820/theAction.do?prop2=not+foo");return
 false;'>Not Foo&lt;/a>
-            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=not+bar" 
onclick='anchor_submit_form("tagId2","/coreWeb/bugs/b39820/theAction.do?prop2=not+bar");return
 false;'>Not Bar&lt;/a>
+            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=not+foo" 
onclick="anchor_submit_form('tagId2','/coreWeb/bugs/b39820/theAction.do?prop2=not+foo');return
 false;">Not Foo&lt;/a>
+            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=not+bar" 
onclick="anchor_submit_form('tagId2','/coreWeb/bugs/b39820/theAction.do?prop2=not+bar');return
 false;">Not Bar&lt;/a>
         &lt;/form>
     &lt;script language="JavaScript" type="text/JavaScript">
 &lt;!--
@@ -1190,7 +1190,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>D816AF65DAC4C913C3202ED2A55FC180</ses:value>
+                  <ses:value>E4BC5A8D8A2B2548F6B41028CBFDCFA6</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1224,7 +1224,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=D816AF65DAC4C913C3202ED2A55FC180; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=E4BC5A8D8A2B2548F6B41028CBFDCFA6; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>cookie2</ses:name>
@@ -1240,7 +1240,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>f624cb5:102041cb937:-7c7e</ses:value>
+                  <ses:value>354d10c9:10235f1bd0e:-7ed2</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1290,7 +1290,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>D816AF65DAC4C913C3202ED2A55FC180</ses:value>
+                  <ses:value>E4BC5A8D8A2B2548F6B41028CBFDCFA6</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1312,7 +1312,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=D816AF65DAC4C913C3202ED2A55FC180; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=E4BC5A8D8A2B2548F6B41028CBFDCFA6; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>cookie2</ses:name>
@@ -1328,7 +1328,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>f624cb5:102041cb937:-7c7e</ses:value>
+                  <ses:value>354d10c9:10235f1bd0e:-7ed2</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1365,8 +1365,8 @@
                     &lt;/td>
                 &lt;/tr>
             &lt;/table>
-            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=foo" 
onclick='anchor_submit_form("tagId1","/coreWeb/bugs/b39820/theAction.do?prop2=foo");return
 false;'>Foo&lt;/a>
-            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=bar" 
onclick='anchor_submit_form("tagId1","/coreWeb/bugs/b39820/theAction.do?prop2=bar");return
 false;'>Bar&lt;/a>
+            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=foo" 
onclick="anchor_submit_form('tagId1','/coreWeb/bugs/b39820/theAction.do?prop2=foo');return
 false;">Foo&lt;/a>
+            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=bar" 
onclick="anchor_submit_form('tagId1','/coreWeb/bugs/b39820/theAction.do?prop2=bar');return
 false;">Bar&lt;/a>
         &lt;/form>
         
         &lt;form name="tagId2" id="tagId2" 
action="/coreWeb/bugs/b39820/theAction.do" method="post">
@@ -1380,8 +1380,8 @@
                     &lt;/td>
                 &lt;/tr>
             &lt;/table>
-            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=not+foo" 
onclick='anchor_submit_form("tagId2","/coreWeb/bugs/b39820/theAction.do?prop2=not+foo");return
 false;'>Not Foo&lt;/a>
-            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=not+bar" 
onclick='anchor_submit_form("tagId2","/coreWeb/bugs/b39820/theAction.do?prop2=not+bar");return
 false;'>Not Bar&lt;/a>
+            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=not+foo" 
onclick="anchor_submit_form('tagId2','/coreWeb/bugs/b39820/theAction.do?prop2=not+foo');return
 false;">Not Foo&lt;/a>
+            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=not+bar" 
onclick="anchor_submit_form('tagId2','/coreWeb/bugs/b39820/theAction.do?prop2=not+bar');return
 false;">Not Bar&lt;/a>
         &lt;/form>
     &lt;script language="JavaScript" type="text/JavaScript">
 &lt;!--
@@ -1508,7 +1508,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>D816AF65DAC4C913C3202ED2A55FC180</ses:value>
+                  <ses:value>E4BC5A8D8A2B2548F6B41028CBFDCFA6</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1542,7 +1542,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=D816AF65DAC4C913C3202ED2A55FC180; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=E4BC5A8D8A2B2548F6B41028CBFDCFA6; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>cookie2</ses:name>
@@ -1558,7 +1558,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>f624cb5:102041cb937:-7c7e</ses:value>
+                  <ses:value>354d10c9:10235f1bd0e:-7ed2</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1608,7 +1608,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>D816AF65DAC4C913C3202ED2A55FC180</ses:value>
+                  <ses:value>E4BC5A8D8A2B2548F6B41028CBFDCFA6</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1630,7 +1630,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=D816AF65DAC4C913C3202ED2A55FC180; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=E4BC5A8D8A2B2548F6B41028CBFDCFA6; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>cookie2</ses:name>
@@ -1646,7 +1646,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>f624cb5:102041cb937:-7c7e</ses:value>
+                  <ses:value>354d10c9:10235f1bd0e:-7ed2</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1683,8 +1683,8 @@
                     &lt;/td>
                 &lt;/tr>
             &lt;/table>
-            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=foo" 
onclick='anchor_submit_form("tagId1","/coreWeb/bugs/b39820/theAction.do?prop2=foo");return
 false;'>Foo&lt;/a>
-            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=bar" 
onclick='anchor_submit_form("tagId1","/coreWeb/bugs/b39820/theAction.do?prop2=bar");return
 false;'>Bar&lt;/a>
+            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=foo" 
onclick="anchor_submit_form('tagId1','/coreWeb/bugs/b39820/theAction.do?prop2=foo');return
 false;">Foo&lt;/a>
+            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=bar" 
onclick="anchor_submit_form('tagId1','/coreWeb/bugs/b39820/theAction.do?prop2=bar');return
 false;">Bar&lt;/a>
         &lt;/form>
         
         &lt;form name="tagId2" id="tagId2" 
action="/coreWeb/bugs/b39820/theAction.do" method="post">
@@ -1698,8 +1698,8 @@
                     &lt;/td>
                 &lt;/tr>
             &lt;/table>
-            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=not+foo" 
onclick='anchor_submit_form("tagId2","/coreWeb/bugs/b39820/theAction.do?prop2=not+foo");return
 false;'>Not Foo&lt;/a>
-            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=not+bar" 
onclick='anchor_submit_form("tagId2","/coreWeb/bugs/b39820/theAction.do?prop2=not+bar");return
 false;'>Not Bar&lt;/a>
+            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=not+foo" 
onclick="anchor_submit_form('tagId2','/coreWeb/bugs/b39820/theAction.do?prop2=not+foo');return
 false;">Not Foo&lt;/a>
+            &lt;a href="/coreWeb/bugs/b39820/theAction.do?prop2=not+bar" 
onclick="anchor_submit_form('tagId2','/coreWeb/bugs/b39820/theAction.do?prop2=not+bar');return
 false;">Not Bar&lt;/a>
         &lt;/form>
     &lt;script language="JavaScript" type="text/JavaScript">
 &lt;!--
@@ -1826,7 +1826,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>D816AF65DAC4C913C3202ED2A55FC180</ses:value>
+                  <ses:value>E4BC5A8D8A2B2548F6B41028CBFDCFA6</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1860,7 +1860,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=D816AF65DAC4C913C3202ED2A55FC180; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=E4BC5A8D8A2B2548F6B41028CBFDCFA6; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>cookie2</ses:name>
@@ -1876,7 +1876,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>f624cb5:102041cb937:-7c7e</ses:value>
+                  <ses:value>354d10c9:10235f1bd0e:-7ed2</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1914,7 +1914,7 @@
          </ses:testResults>
       </ses:test>
    </ses:tests>
-   <ses:endDate>11 Feb 2005, 06:19:35.619 PM MST</ses:endDate>
+   <ses:endDate>21 Feb 2005, 10:25:47.234 AM MST</ses:endDate>
    <ses:sessionStatus>fail</ses:sessionStatus>
    <ses:testCount>12</ses:testCount>
    <ses:passedCount>6</ses:passedCount>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/Cr121496.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/Cr121496.xml?view=diff&r1=154716&r2=154717
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/Cr121496.xml 
(original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/Cr121496.xml 
Mon Feb 21 12:42:07 2005
@@ -2,7 +2,7 @@
 <ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
    <ses:sessionName>Cr121496</ses:sessionName>
    <ses:tester>Daryl</ses:tester>
-   <ses:startDate>11 Feb 2005, 06:21:34.821 PM MST</ses:startDate>
+   <ses:startDate>21 Feb 2005, 10:26:56.687 AM MST</ses:startDate>
    <ses:description>Daryl</ses:description>
    <ses:tests>
       <ses:test>
@@ -18,7 +18,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>D816AF65DAC4C913C3202ED2A55FC180</ses:value>
+                  <ses:value>E4BC5A8D8A2B2548F6B41028CBFDCFA6</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -40,7 +40,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=D816AF65DAC4C913C3202ED2A55FC180; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=E4BC5A8D8A2B2548F6B41028CBFDCFA6; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>cookie2</ses:name>
@@ -56,7 +56,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>f624cb5:102041cb937:-7bbf</ses:value>
+                  <ses:value>354d10c9:10235f1bd0e:-7e13</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -83,13 +83,13 @@
     &lt;/head>
     &lt;body>
         &lt;form name="Netui_Form_0" id="Netui_Form_0" 
action="/coreWeb/bugs/cr121496/post.do" method="post">
-            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=foo" 
onclick='anchor_submit_form("Netui_Form_0","/coreWeb/bugs/cr121496/post.do?prop2=foo");return
 false;'>Foo&lt;/a>
-            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=bar" 
onclick='anchor_submit_form("Netui_Form_0","/coreWeb/bugs/cr121496/post.do?prop2=bar");return
 false;'>Bar&lt;/a>
+            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=foo" 
onclick="anchor_submit_form('Netui_Form_0','/coreWeb/bugs/cr121496/post.do?prop2=foo');return
 false;">Foo&lt;/a>
+            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=bar" 
onclick="anchor_submit_form('Netui_Form_0','/coreWeb/bugs/cr121496/post.do?prop2=bar');return
 false;">Bar&lt;/a>
         &lt;/form>
         &lt;hr/>
         &lt;form name="Netui_Form_1" id="Netui_Form_1" 
action="/coreWeb/bugs/cr121496/post.do" method="post">
-            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=not+foo" 
onclick='anchor_submit_form("Netui_Form_1","/coreWeb/bugs/cr121496/post.do?prop2=not+foo");return
 false;'>Foo&lt;/a>
-            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=not+bar" 
onclick='anchor_submit_form("Netui_Form_1","/coreWeb/bugs/cr121496/post.do?prop2=not+bar");return
 false;'>Bar&lt;/a>
+            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=not+foo" 
onclick="anchor_submit_form('Netui_Form_1','/coreWeb/bugs/cr121496/post.do?prop2=not+foo');return
 false;">Foo&lt;/a>
+            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=not+bar" 
onclick="anchor_submit_form('Netui_Form_1','/coreWeb/bugs/cr121496/post.do?prop2=not+bar');return
 false;">Bar&lt;/a>
         &lt;/form>
     &lt;script language="JavaScript" type="text/JavaScript">
 &lt;!--
@@ -137,7 +137,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>D816AF65DAC4C913C3202ED2A55FC180</ses:value>
+                  <ses:value>E4BC5A8D8A2B2548F6B41028CBFDCFA6</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -171,7 +171,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=D816AF65DAC4C913C3202ED2A55FC180; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=E4BC5A8D8A2B2548F6B41028CBFDCFA6; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>cookie2</ses:name>
@@ -187,7 +187,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>f624cb5:102041cb937:-7bbf</ses:value>
+                  <ses:value>354d10c9:10235f1bd0e:-7e13</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -236,7 +236,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>D816AF65DAC4C913C3202ED2A55FC180</ses:value>
+                  <ses:value>E4BC5A8D8A2B2548F6B41028CBFDCFA6</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -258,7 +258,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=D816AF65DAC4C913C3202ED2A55FC180; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=E4BC5A8D8A2B2548F6B41028CBFDCFA6; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>cookie2</ses:name>
@@ -274,7 +274,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>f624cb5:102041cb937:-7bbf</ses:value>
+                  <ses:value>354d10c9:10235f1bd0e:-7e13</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -301,13 +301,13 @@
     &lt;/head>
     &lt;body>
         &lt;form name="Netui_Form_0" id="Netui_Form_0" 
action="/coreWeb/bugs/cr121496/post.do" method="post">
-            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=foo" 
onclick='anchor_submit_form("Netui_Form_0","/coreWeb/bugs/cr121496/post.do?prop2=foo");return
 false;'>Foo&lt;/a>
-            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=bar" 
onclick='anchor_submit_form("Netui_Form_0","/coreWeb/bugs/cr121496/post.do?prop2=bar");return
 false;'>Bar&lt;/a>
+            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=foo" 
onclick="anchor_submit_form('Netui_Form_0','/coreWeb/bugs/cr121496/post.do?prop2=foo');return
 false;">Foo&lt;/a>
+            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=bar" 
onclick="anchor_submit_form('Netui_Form_0','/coreWeb/bugs/cr121496/post.do?prop2=bar');return
 false;">Bar&lt;/a>
         &lt;/form>
         &lt;hr/>
         &lt;form name="Netui_Form_1" id="Netui_Form_1" 
action="/coreWeb/bugs/cr121496/post.do" method="post">
-            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=not+foo" 
onclick='anchor_submit_form("Netui_Form_1","/coreWeb/bugs/cr121496/post.do?prop2=not+foo");return
 false;'>Foo&lt;/a>
-            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=not+bar" 
onclick='anchor_submit_form("Netui_Form_1","/coreWeb/bugs/cr121496/post.do?prop2=not+bar");return
 false;'>Bar&lt;/a>
+            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=not+foo" 
onclick="anchor_submit_form('Netui_Form_1','/coreWeb/bugs/cr121496/post.do?prop2=not+foo');return
 false;">Foo&lt;/a>
+            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=not+bar" 
onclick="anchor_submit_form('Netui_Form_1','/coreWeb/bugs/cr121496/post.do?prop2=not+bar');return
 false;">Bar&lt;/a>
         &lt;/form>
     &lt;script language="JavaScript" type="text/JavaScript">
 &lt;!--
@@ -355,7 +355,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>D816AF65DAC4C913C3202ED2A55FC180</ses:value>
+                  <ses:value>E4BC5A8D8A2B2548F6B41028CBFDCFA6</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -389,7 +389,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=D816AF65DAC4C913C3202ED2A55FC180; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=E4BC5A8D8A2B2548F6B41028CBFDCFA6; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>cookie2</ses:name>
@@ -405,7 +405,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>f624cb5:102041cb937:-7bbf</ses:value>
+                  <ses:value>354d10c9:10235f1bd0e:-7e13</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -454,7 +454,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>D816AF65DAC4C913C3202ED2A55FC180</ses:value>
+                  <ses:value>E4BC5A8D8A2B2548F6B41028CBFDCFA6</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -476,7 +476,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=D816AF65DAC4C913C3202ED2A55FC180; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=E4BC5A8D8A2B2548F6B41028CBFDCFA6; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>cookie2</ses:name>
@@ -492,7 +492,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>f624cb5:102041cb937:-7bbf</ses:value>
+                  <ses:value>354d10c9:10235f1bd0e:-7e13</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -519,13 +519,13 @@
     &lt;/head>
     &lt;body>
         &lt;form name="Netui_Form_0" id="Netui_Form_0" 
action="/coreWeb/bugs/cr121496/post.do" method="post">
-            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=foo" 
onclick='anchor_submit_form("Netui_Form_0","/coreWeb/bugs/cr121496/post.do?prop2=foo");return
 false;'>Foo&lt;/a>
-            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=bar" 
onclick='anchor_submit_form("Netui_Form_0","/coreWeb/bugs/cr121496/post.do?prop2=bar");return
 false;'>Bar&lt;/a>
+            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=foo" 
onclick="anchor_submit_form('Netui_Form_0','/coreWeb/bugs/cr121496/post.do?prop2=foo');return
 false;">Foo&lt;/a>
+            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=bar" 
onclick="anchor_submit_form('Netui_Form_0','/coreWeb/bugs/cr121496/post.do?prop2=bar');return
 false;">Bar&lt;/a>
         &lt;/form>
         &lt;hr/>
         &lt;form name="Netui_Form_1" id="Netui_Form_1" 
action="/coreWeb/bugs/cr121496/post.do" method="post">
-            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=not+foo" 
onclick='anchor_submit_form("Netui_Form_1","/coreWeb/bugs/cr121496/post.do?prop2=not+foo");return
 false;'>Foo&lt;/a>
-            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=not+bar" 
onclick='anchor_submit_form("Netui_Form_1","/coreWeb/bugs/cr121496/post.do?prop2=not+bar");return
 false;'>Bar&lt;/a>
+            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=not+foo" 
onclick="anchor_submit_form('Netui_Form_1','/coreWeb/bugs/cr121496/post.do?prop2=not+foo');return
 false;">Foo&lt;/a>
+            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=not+bar" 
onclick="anchor_submit_form('Netui_Form_1','/coreWeb/bugs/cr121496/post.do?prop2=not+bar');return
 false;">Bar&lt;/a>
         &lt;/form>
     &lt;script language="JavaScript" type="text/JavaScript">
 &lt;!--
@@ -573,7 +573,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>D816AF65DAC4C913C3202ED2A55FC180</ses:value>
+                  <ses:value>E4BC5A8D8A2B2548F6B41028CBFDCFA6</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -607,7 +607,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=D816AF65DAC4C913C3202ED2A55FC180; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=E4BC5A8D8A2B2548F6B41028CBFDCFA6; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>cookie2</ses:name>
@@ -623,7 +623,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>f624cb5:102041cb937:-7bbf</ses:value>
+                  <ses:value>354d10c9:10235f1bd0e:-7e13</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -672,7 +672,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>D816AF65DAC4C913C3202ED2A55FC180</ses:value>
+                  <ses:value>E4BC5A8D8A2B2548F6B41028CBFDCFA6</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -694,7 +694,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=D816AF65DAC4C913C3202ED2A55FC180; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=E4BC5A8D8A2B2548F6B41028CBFDCFA6; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>cookie2</ses:name>
@@ -710,7 +710,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>f624cb5:102041cb937:-7bbf</ses:value>
+                  <ses:value>354d10c9:10235f1bd0e:-7e13</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -737,13 +737,13 @@
     &lt;/head>
     &lt;body>
         &lt;form name="Netui_Form_0" id="Netui_Form_0" 
action="/coreWeb/bugs/cr121496/post.do" method="post">
-            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=foo" 
onclick='anchor_submit_form("Netui_Form_0","/coreWeb/bugs/cr121496/post.do?prop2=foo");return
 false;'>Foo&lt;/a>
-            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=bar" 
onclick='anchor_submit_form("Netui_Form_0","/coreWeb/bugs/cr121496/post.do?prop2=bar");return
 false;'>Bar&lt;/a>
+            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=foo" 
onclick="anchor_submit_form('Netui_Form_0','/coreWeb/bugs/cr121496/post.do?prop2=foo');return
 false;">Foo&lt;/a>
+            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=bar" 
onclick="anchor_submit_form('Netui_Form_0','/coreWeb/bugs/cr121496/post.do?prop2=bar');return
 false;">Bar&lt;/a>
         &lt;/form>
         &lt;hr/>
         &lt;form name="Netui_Form_1" id="Netui_Form_1" 
action="/coreWeb/bugs/cr121496/post.do" method="post">
-            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=not+foo" 
onclick='anchor_submit_form("Netui_Form_1","/coreWeb/bugs/cr121496/post.do?prop2=not+foo");return
 false;'>Foo&lt;/a>
-            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=not+bar" 
onclick='anchor_submit_form("Netui_Form_1","/coreWeb/bugs/cr121496/post.do?prop2=not+bar");return
 false;'>Bar&lt;/a>
+            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=not+foo" 
onclick="anchor_submit_form('Netui_Form_1','/coreWeb/bugs/cr121496/post.do?prop2=not+foo');return
 false;">Foo&lt;/a>
+            &lt;a href="/coreWeb/bugs/cr121496/post.do?prop2=not+bar" 
onclick="anchor_submit_form('Netui_Form_1','/coreWeb/bugs/cr121496/post.do?prop2=not+bar');return
 false;">Bar&lt;/a>
         &lt;/form>
     &lt;script language="JavaScript" type="text/JavaScript">
 &lt;!--
@@ -791,7 +791,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>D816AF65DAC4C913C3202ED2A55FC180</ses:value>
+                  <ses:value>E4BC5A8D8A2B2548F6B41028CBFDCFA6</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -825,7 +825,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=D816AF65DAC4C913C3202ED2A55FC180; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=E4BC5A8D8A2B2548F6B41028CBFDCFA6; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>cookie2</ses:name>
@@ -841,7 +841,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>f624cb5:102041cb937:-7bbf</ses:value>
+                  <ses:value>354d10c9:10235f1bd0e:-7e13</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -878,7 +878,7 @@
          </ses:testResults>
       </ses:test>
    </ses:tests>
-   <ses:endDate>11 Feb 2005, 06:21:38.706 PM MST</ses:endDate>
+   <ses:endDate>21 Feb 2005, 10:26:59.015 AM MST</ses:endDate>
    <ses:sessionStatus>fail</ses:sessionStatus>
    <ses:testCount>8</ses:testCount>
    <ses:passedCount>4</ses:passedCount>


Reply via email to