Author: dolander Date: Thu Jan 13 09:42:36 2005 New Revision: 125085 URL: http://svn.apache.org/viewcvs?view=rev&rev=125085 Log: Fully qualify the lookup id in the tagId to name lookup table. Update the JavaScript to support the qualification. Update all of the test results.
Modified: incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/ScriptContainer.java incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/javaScript.properties incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/idmap/id/index.jsp incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/idmap/nesting/Controller.jpf incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/idmap/nesting/index.jsp incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B34263.xml incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B34998.xml incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B39820.xml incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/ButtonSubmitTagId.xml incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtAreaBase.xml incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtButtonId.xml incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtImageButtonId.xml incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtScScopeId.xml incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerCustomSelect.xml incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapForm.xml incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapFormNoHtml.xml incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapGenScopeId.xml incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapHtmlScopeId.xml incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapId.xml incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapNonCtrls.xml incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapScopeId.xml incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapSpan.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/JsFind.xml incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/JsNoContainers.xml incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/MockPortal.xml incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/OnTest.xml incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RtexpTagId.xml incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/TagIds.xml incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/TagSizeBinding.xml incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/XhtmlFormLabel.xml incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/cr183774.xml incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/jsScriptScopeId.xml incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/jsid.xml incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/jsidnohtml.xml Modified: incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/ScriptContainer.java Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/ScriptContainer.java?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/ScriptContainer.java&r1=125084&p2=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/ScriptContainer.java&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/ScriptContainer.java (original) +++ incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/ScriptContainer.java Thu Jan 13 09:42:36 2005 @@ -25,6 +25,7 @@ import javax.servlet.http.HttpServletRequest; import javax.servlet.jsp.JspException; +import javax.servlet.jsp.tagext.Tag; import java.util.ArrayList; import java.util.HashMap; import java.util.Iterator; @@ -70,7 +71,6 @@ private ArrayList _codeBlocks; private HashMap _initNames; private HashMap _idMap; - private HashMap _idToIdMap; private HashMap _idToNameMap; private HashMap _anchorRewriters; private boolean _genScope = false; @@ -143,10 +143,7 @@ assert (tagId != null) : "The parameter 'tagId' must not be null"; assert (realId != null) : "The parameter 'realId' must not be null"; - if (_idToIdMap == null) - _idToIdMap = new HashMap(); _writeId = true; - _idToIdMap.put(tagId, realId); if (realName != null) { if (_idToNameMap == null) @@ -452,7 +449,7 @@ // if we are writing out legacy JavaScript support output the idMap if (TagConfig.isLegacyJavaScript()) { - val = processIdMap(_idMap, "idMappingEntry"); + val = processIdMap(_idMap, "idMappingEntry", _scopeId); if (val != null) { jsu.writeIdMap(this, "idMappingTable", val); writeLegacy = true; @@ -461,7 +458,10 @@ // if we are writing out default JavaScript support we create the name map if (TagConfig.isDefaultJavaScript()) { - val = processIdMap(_idToNameMap, "tagIdNameMappingEntry"); + String scopeId = getJavaScriptId(); + if (scopeId.equals("")) + scopeId = null; + val = processIdMap(_idToNameMap, "tagIdNameMappingEntry", scopeId); if (val != null) { jsu.writeIdMap(this, "tagIdNameMappingTable", val); writeName = true; @@ -509,8 +509,23 @@ /////////////////////////////////// Private Support //////////////////////////////////// + private String getJavaScriptId() + { + String scopeId = ""; + Tag tag = this; + while (tag != null) { + if (tag instanceof ScriptContainer) { + String sid = ((ScriptContainer) tag).getScopeId(); + if (sid != null) { + scopeId = sid + "_" + scopeId; + } + } + tag = tag.getParent(); + } + return scopeId; + } - private String processIdMap(HashMap map, String mapEntry) + private String processIdMap(HashMap map, String mapEntry, String scopeId) { // if no map or empty then return if (map == null || map.size() == 0) @@ -521,8 +536,8 @@ while (ids.hasNext()) { Object id = ids.next(); Object value = map.get(id); - if (_scopeId != null) - id = _scopeId + "__" + id; + if (scopeId != null) + id = scopeId + "__" + id; String entry = JavaScriptUtils.getString(mapEntry, new Object[]{id, value}); results.append(entry); } @@ -543,6 +558,7 @@ _writeScript = false; _writeInitScript = false; _genScope = false; + _writeId = false; if (_funcBlocks != null) _funcBlocks.clear(); @@ -553,8 +569,6 @@ if (_idMap != null) _idMap.clear(); - if (_idToIdMap != null) - _idToIdMap.clear(); if (_idToNameMap != null) _idToNameMap.clear(); } Modified: incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/javaScript.properties Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/javaScript.properties?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/javaScript.properties&r1=125084&p2=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/javaScript.properties&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/javaScript.properties (original) +++ incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/javaScript.properties Thu Jan 13 09:42:36 2005 @@ -96,7 +96,7 @@ // lookup by tagId to "real id"\n\ function lookupIdByTagId(id, tag)\n\ {\n\ -\ var scopeId = lookupScopeId(tag);\n\ +\ var scopeId = lookupScopeId(tag,".");\n\ \ return (scopeId == "") ? id : scopeId + id;\n\ }\n @@ -105,7 +105,7 @@ // lookup by tagId to "real name"\n\ function lookupNameByTagId(id, tag)\n\ {\n\ -\ var scopeId = getScopeId(tag);\n\ +\ var scopeId = lookupScopeId(tag,"_");\n\ \ if (scopeId == \"\")\n\ \ return netui_tagIdNameMap[id];\n\ \ else\n\ @@ -128,13 +128,13 @@ lookupScopeId=\ //Non-Legacy lookup method creating a fully qualified scope id\n\ -function lookupScopeId(tag)\n\ +function lookupScopeId(tag,sep)\n\ {\n\ \ var val = "";\n\ \ while (tag != null && tag.getAttribute != null) {\n\ \ var attrVal = tag.getAttribute("netui:scopeId");\n\ \ if (attrVal != null)\n\ -\ val = attrVal + "." + val;\n\ +\ val = attrVal + sep + val;\n\ \ tag = tag.parentNode;\n\ \ }\n\ \ return val;\n\ Modified: incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/idmap/id/index.jsp Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/idmap/id/index.jsp?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/idmap/id/index.jsp&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/idmap/id/index.jsp&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/idmap/id/index.jsp (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/idmap/id/index.jsp Thu Jan 13 09:42:36 2005 @@ -64,31 +64,28 @@ var p = document.getElementById("javaOut"); var s = document.getElementById("scopeOneSpan"); - var val = "<b>Document Access</b><br>"; + var val = "<b>Document Access</b><table><tr><td valign='top'><b>Lookup By Id</b><br>"; val = val + "TextBox by id is null: <b>" + (document.getElementById(lookupIdByTagId("textbox",s)) == null) + "</b><br>"; - val = val + "TextBox by name is null: <b>" + - (document.getElementsByTagName(lookupNameByTagId("textbox",s)) == null) + "</b><br>"; - val = val + "Select by id is null: <b>" + (document.getElementById(lookupIdByTagId("select",s)) == null) + "</b><br>"; - val = val + "Select by name is null: <b>" + - (document.getElementsByTagName(lookupNameByTagId("select",s)) == null) + "</b><br>"; - val = val + "TextArea by id is null: <b>" + (document.getElementById(lookupIdByTagId("textArea",s)) == null) + "</b><br>"; - val = val + "TextArea by name is null: <b>" + - (document.getElementsByTagName(lookupNameByTagId("textArea",s)) == null) + "</b><br>"; - val = val + "CheckBox 1 by id is null: <b>" + (document.getElementById(lookupIdByTagId("check1",s)) == null) + "</b><br>"; - val = val + "CheckBox 1 by name is null: <b>" + - (document.getElementsByTagName(lookupNameByTagId("check1",s)) == null) + "</b><br>"; - val = val + "Button by id is null: <b>" + (document.getElementById(lookupIdByTagId("button",s)) == null) + "</b><br>"; - val = val + "Button by name is null: <b>" + - (document.getElementsByTagName(lookupNameByTagId("button",s)) == null) + "</b><br>"; + + val = val + "</td><td valign='top'><b>Lookup By Name</b><br>"; + val = val + "TextBox by Name is null: <b>" + + (document.getElementsByName(lookupNameByTagId("textbox",s))[0] == null) + "</b><br>"; + val = val + "Select by Name is null: <b>" + + (document.getElementsByName(lookupNameByTagId("select",s))[0] == null) + "</b><br>"; + val = val + "TextArea by Name is null: <b>" + + (document.getElementsByName(lookupNameByTagId("textArea",s))[0] == null) + "</b><br>"; + val = val + "CheckBox 1 by Name is null: <b>" + + (document.getElementsByName(lookupNameByTagId("check1",s))[0] == null) + "</b><br>"; + val = val + "</td></tr></table>"; val = val + "<br>"; if (typeof(netui_tagIdMap) != "undefined") { Modified: incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/idmap/nesting/Controller.jpf Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/idmap/nesting/Controller.jpf?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/idmap/nesting/Controller.jpf&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/idmap/nesting/Controller.jpf&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/idmap/nesting/Controller.jpf (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/idmap/nesting/Controller.jpf Thu Jan 13 09:42:36 2005 @@ -12,17 +12,24 @@ @Jpf.Controller public class Controller extends PageFlowController { - private String[] _selectOptions = {"Option 1", "Option 2", "Option 3", "Option 4"}; - private Bean _bean = new Bean(); + private String _textOne; + private String _textTwo; - public Bean getBean() { - return _bean; + public String getTextOne() { + return _textOne; + } + public void setTextOne(String value) { + _textOne = value; } - public String[] getSelectOptions() { - return _selectOptions; + public String getTextTwo() { + return _textTwo; + } + public void setTextTwo(String value) { + _textTwo = value; } - + + @Jpf.Action( forwards={ @Jpf.Forward(name="index", path="index.jsp") @@ -47,93 +54,4 @@ protected void onDestroy(HttpSession session) { } - - - @Jpf.Action(forwards = { - @Jpf.Forward(name = "success", - path = "index.jsp") - }) - protected Forward postForm(Bean form) - { - _bean = form; - Forward forward = new Forward("success"); - return forward; - } - - public static class Bean extends FormData - { - private String text1; - - private String text2; - - private String text3; - - private boolean check1; - - private boolean check2; - - public String getText1() - { - return text1; - } - - public void setText1(String value) - { - text1 = value; - } - - public String getText2() - { - return text2; - } - - public void setText2(String value) - { - text2 = value; - } - - public String getText3() - { - return text3; - } - - public void setText3(String value) - { - text3 = value; - } - - public boolean isCheck1() - { - return check1; - } - - public void setCheck1(boolean value) - { - check1 = value; - } - - public boolean isCheck2() - { - return check2; - } - - public void setCheck2(boolean value) - { - check2 = value; - } - } } - [EMAIL PROTECTED](value= {"<!-- This data is auto-generated. Hand-editing this section is not recommended. -->", -"<view-properties>", -"<pageflow-object id='pageflow:/idmap/simple/Controller.jpf'/>", -"<pageflow-object id='page:index.jsp'><property value='220' name='x'/><property value='100' name='y'/></pageflow-object>", -"<pageflow-object id='formbean:Bean'/>", -"<pageflow-object id='action:postForm.do#idmap.simple.Controller.Bean'><property name='x' value='340'/><property name='y' value='100'/></pageflow-object>", -"<pageflow-object id='forward:[EMAIL PROTECTED]:postForm.do#idmap.simple.Controller.Bean@'/>", -"<pageflow-object id='action-call:@page:[EMAIL PROTECTED]@action:postForm.do#idmap.simple.Controller.Bean@'><property name='elbowsX' value='256,280,280,304'/><property name='elbowsY' value='92,92,92,92'/><property name='fromPort' value='East_1'/><property name='toPort' value='West_1'/></pageflow-object>", -"<pageflow-object id='action:begin.do'><property value='80' name='x'/><property value='100' name='y'/></pageflow-object>", -"<pageflow-object id='forward:[EMAIL PROTECTED]:begin.do@'><property value='116,140,140,164' name='elbowsX'/><property value='92,92,92,92' name='elbowsY'/><property value='East_1' name='fromPort'/><property value='West_1' name='toPort'/><property value='index' name='label'/></pageflow-object>", -"</view-properties>" -}) -interface VIEW_PROPERTIES { } Modified: incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/idmap/nesting/index.jsp Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/idmap/nesting/index.jsp?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/idmap/nesting/index.jsp&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/idmap/nesting/index.jsp&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/idmap/nesting/index.jsp (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/idmap/nesting/index.jsp Thu Jan 13 09:42:36 2005 @@ -16,6 +16,7 @@ <netui:scriptContainer generateScopeId="true"> <netui:scriptContainer scopeId="scope"> <span id="scopeOneSpan" /> + <netui:textBox tagId="textBox" dataSource="pageFlow.textOne"/> <netui:span tagId="span" value="span[1] inside scopeOneSpan"> <netui:attribute name="spanId" value="[1]"/> </netui:span> @@ -25,6 +26,7 @@ <netui:scriptContainer generateScopeId="true"> <netui:scriptContainer scopeId="scope"> <span id="scopeTwoSpan" /> + <netui:textBox tagId="textBox" dataSource="pageFlow.textTwo"/> <netui:span tagId="span" value="span[2] inside scopeTwoSpan"> <netui:attribute name="spanId" value="[1]"/> </netui:span> @@ -38,37 +40,49 @@ </p> <p id="javaOut"></p> </netui:body> - <script language="JavaScript" type="text/JavaScript"> +<script language="JavaScript" type="text/JavaScript"> var p = document.getElementById("javaOut"); var s1 = document.getElementById("scopeOneSpan"); - var s1 = document.getElementById("scopeTwoSpan"); - + var s2 = document.getElementById("scopeTwoSpan"); var val = "<b>Document Access</b><br>"; -/* - val = val + "Form by id is null: <b>" + - (document.getElementById(lookupIdByTagId("form",s)) == null) + "</b><br>"; - val = val + "Form by name is null: <b>" + - (document[lookupNameByTagId("form",s)] == null) + "</b><br>"; -*/ - val = val + "<br>"; - if (typeof(netui_tagIdMap) != "undefined") { - val = val + "<b>tagIdMap:</b><br>"; - for (var x in netui_tagIdMap) { - val = val + "Name '" + x + "' value '" + netui_tagIdMap[x] + "'<br>"; - } - val = val + "<br>"; + val = val + "Span[1] by id is null: <b>" + + (document.getElementById(lookupIdByTagId("span",s1)) == null) + "</b><br>"; + val = val + "Span[2] by id is null: <b>" + + (document.getElementById(lookupIdByTagId("span",s2)) == null) + "</b><br>"; + val = val + "TextBox[1] by id is null: <b>" + + (document.getElementById(lookupIdByTagId("textBox",s1)) == null) + "</b><br>"; + val = val + "TextBox[2] by id is null: <b>" + + (document.getElementById(lookupIdByTagId("textBox",s2)) == null) + "</b><br>"; + var tmp = document.getElementsByName(lookupNameByTagId("textBox",s1)); + val = val + "<br>TextBox[1] by name is == 0: <b>" + + (tmp.length == 0) + + "</b><br>"; + if (tmp.length > 0) { + val = val + "TextBox[1] id: <b>" + tmp[0].id + "</b><br>"; } else { - val = val + "tagIdMap is <b>undefined</b><br>"; + val = val + "TextBox[1] <b>not found</b><br>"; } + tmp = document.getElementsByName(lookupNameByTagId("textBox",s2)); + val = val + "<br>TextBox[2] by name is == 0: <b>" + + (tmp.length == 0) + + "</b><br>"; + if (tmp.length > 0) { + val = val + "TextBox[2] id: <b>" + tmp[0].id + "</b><br>"; + } + else { + val = val + "TextBox[2] <b>not found</b><br>"; + } + + val = val + "<br>"; if (typeof(netui_tagIdNameMap) != "undefined") { val = val + "<b>tagIdNameMap:</b><br>"; for (var x in netui_tagIdNameMap) { - val = val + "Name '" + x + "' value '" + netui_tagIdNameMap[x] + "'"; + val = val + "Name '" + x + "' value '" + netui_tagIdNameMap[x] + "'<br>"; } val = val + "<br>"; } @@ -79,7 +93,7 @@ if (typeof(netui_names) != "undefined") { val = val + "<b>netui_names (Legacy):</b><br>"; for (var x in netui_names) { - val = val + "Name '" + x + "' value '" + netui_names[x] + "'"; + val = val + "Name '" + x + "' value '" + netui_names[x] + "'<br>"; } val = val + "<br>"; } @@ -89,7 +103,7 @@ p.innerHTML = val; - </script> +</script> </netui:html> Modified: incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B34263.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B34263.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B34263.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B34263.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B34263.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B34263.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>B34263</ses:sessionName> <ses:tester>Daryl</ses:tester> - <ses:startDate>12 Jan 2005, 09:50:49.636 AM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 08:58:51.646 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>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>2c8c3167:10167978d3c:-772e</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7f38</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -191,14 +191,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -206,13 +206,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -229,7 +229,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 09:50:50.241 AM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 08:58:52.287 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/B34998.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B34998.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B34998.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B34998.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B34998.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B34998.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>B34998</ses:sessionName> <ses:tester>Daryl</ses:tester> - <ses:startDate>12 Jan 2005, 09:50:51.380 AM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 08:58:53.268 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>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>2c8c3167:10167978d3c:-7728</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7f32</ses:value> </ses:header> <ses:header> <ses:name>testrecorder.playback.testnumber</ses:name> @@ -154,14 +154,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -169,13 +169,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -213,7 +213,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -247,7 +247,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>2c8c3167:10167978d3c:-7728</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7f32</ses:value> </ses:header> <ses:header> <ses:name>testrecorder.playback.testnumber</ses:name> @@ -307,7 +307,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 09:50:52.519 AM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 08:58:54.680 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&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B39820.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B39820.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B39820.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B39820.xml Thu Jan 13 09:42:36 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>12 Jan 2005, 09:51:11.264 AM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 08:59:13.638 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>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>2c8c3167:10167978d3c:-76f2</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7efc</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -180,14 +180,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -195,13 +195,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -243,7 +243,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -277,7 +277,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -293,7 +293,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-76f2</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7efc</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -343,7 +343,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -365,7 +365,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -381,7 +381,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-76f2</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7efc</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -505,14 +505,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -520,13 +520,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -568,7 +568,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -602,7 +602,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -618,7 +618,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-76f2</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7efc</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -668,7 +668,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -690,7 +690,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -706,7 +706,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-76f2</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7efc</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -830,14 +830,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -845,13 +845,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -893,7 +893,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -927,7 +927,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -943,7 +943,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-76f2</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7efc</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -993,7 +993,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -1015,7 +1015,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -1031,7 +1031,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-76f2</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7efc</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -1155,14 +1155,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -1170,13 +1170,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -1218,7 +1218,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -1252,7 +1252,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -1268,7 +1268,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-76f2</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7efc</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -1318,7 +1318,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -1340,7 +1340,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -1356,7 +1356,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-76f2</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7efc</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -1480,14 +1480,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -1495,13 +1495,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -1543,7 +1543,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -1577,7 +1577,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -1593,7 +1593,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-76f2</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7efc</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -1643,7 +1643,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -1665,7 +1665,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -1681,7 +1681,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-76f2</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7efc</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -1805,14 +1805,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -1820,13 +1820,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -1868,7 +1868,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -1902,7 +1902,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -1918,7 +1918,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-76f2</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7efc</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -1956,7 +1956,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 09:51:12.532 AM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 08:59:15.480 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/ButtonSubmitTagId.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/ButtonSubmitTagId.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/ButtonSubmitTagId.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/ButtonSubmitTagId.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/ButtonSubmitTagId.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/ButtonSubmitTagId.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>ButtonSubmitTagId</ses:sessionName> <ses:tester>Daryl</ses:tester> - <ses:startDate>12 Jan 2005, 09:51:48.843 AM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 08:59:53.495 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>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>2c8c3167:10167978d3c:-7659</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7e63</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -157,14 +157,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -172,13 +172,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -216,7 +216,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -250,7 +250,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -266,7 +266,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-7659</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7e63</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -367,14 +367,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -382,13 +382,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -430,7 +430,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -464,7 +464,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -480,7 +480,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-7659</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7e63</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -581,14 +581,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -596,13 +596,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -619,7 +619,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 09:51:49.517 AM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 08:59:54.396 AM MST</ses:endDate> <ses:sessionStatus>fail</ses:sessionStatus> <ses:testCount>3</ses:testCount> <ses:passedCount>0</ses:passedCount> Modified: incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtAreaBase.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtAreaBase.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtAreaBase.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtAreaBase.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtAreaBase.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtAreaBase.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>CtAreaBase</ses:sessionName> <ses:tester>Daryl</ses:tester> - <ses:startDate>12 Jan 2005, 09:52:10.223 AM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 09:23:14.399 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>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>8343DFB9B7F0A40594699F8002D08345</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=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=8343DFB9B7F0A40594699F8002D08345; $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>2c8c3167:10167978d3c:-7614</ses:value> + <ses:value>7b00b994:1016ce04b4a:-7e1e</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -130,18 +130,18 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -170,7 +170,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>8343DFB9B7F0A40594699F8002D08345</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -200,7 +200,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=8343DFB9B7F0A40594699F8002D08345; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>host</ses:name> @@ -212,7 +212,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-7614</ses:value> + <ses:value>7b00b994:1016ce04b4a:-7e1e</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -286,18 +286,18 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -326,7 +326,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>8343DFB9B7F0A40594699F8002D08345</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -356,7 +356,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=8343DFB9B7F0A40594699F8002D08345; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>host</ses:name> @@ -368,7 +368,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-7614</ses:value> + <ses:value>7b00b994:1016ce04b4a:-7e1e</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -442,18 +442,18 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -470,7 +470,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 09:52:11.293 AM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 09:23:15.100 AM MST</ses:endDate> <ses:sessionStatus>fail</ses:sessionStatus> <ses:testCount>3</ses:testCount> <ses:passedCount>0</ses:passedCount> Modified: incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtButtonId.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtButtonId.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtButtonId.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtButtonId.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtButtonId.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtButtonId.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>CtButtonId</ses:sessionName> <ses:tester>Daryl</ses:tester> - <ses:startDate>12 Jan 2005, 09:52:15.355 AM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 09:00:20.414 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>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>2c8c3167:10167978d3c:-7605</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7e0f</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -145,14 +145,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -160,13 +160,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -200,7 +200,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -234,7 +234,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>host</ses:name> @@ -246,7 +246,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-7605</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7e0f</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -335,14 +335,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -350,13 +350,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -394,7 +394,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -428,7 +428,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>host</ses:name> @@ -440,7 +440,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-7605</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7e0f</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -529,14 +529,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -544,13 +544,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -567,7 +567,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 09:52:16.138 AM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 09:00:21.075 AM MST</ses:endDate> <ses:sessionStatus>fail</ses:sessionStatus> <ses:testCount>3</ses:testCount> <ses:passedCount>0</ses:passedCount> Modified: incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtImageButtonId.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtImageButtonId.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtImageButtonId.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtImageButtonId.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtImageButtonId.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtImageButtonId.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>CtImageButtonId</ses:sessionName> <ses:tester>Daryl</ses:tester> - <ses:startDate>12 Jan 2005, 09:52:31.266 AM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 09:00:35.916 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>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>2c8c3167:10167978d3c:-75d8</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7de2</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -145,14 +145,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -160,13 +160,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -200,7 +200,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -234,7 +234,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>host</ses:name> @@ -246,7 +246,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-75d8</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7de2</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -335,14 +335,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -350,13 +350,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -373,7 +373,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 09:52:31.891 AM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 09:00:36.567 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/CtScScopeId.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtScScopeId.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtScScopeId.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtScScopeId.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtScScopeId.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtScScopeId.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>CtScScopeId</ses:sessionName> <ses:tester>Daryl</ses:tester> - <ses:startDate>12 Jan 2005, 09:52:31.910 AM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 09:00:36.597 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>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>2c8c3167:10167978d3c:-75d5</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7ddf</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -118,10 +118,10 @@ // to the real id written into the HTML if (netui_tagIdNameMap == null) var netui_tagIdNameMap = new Object(); -netui_tagIdNameMap.scopeOne__t1="{actionForm.text1}" -netui_tagIdNameMap.scopeOne__form="bean" -netui_tagIdNameMap.scopeOne__b2="actionOverride:override" -netui_tagIdNameMap.scopeOne__t2="{actionForm.text2}" +netui_tagIdNameMap.html_scopeOne___t1="{actionForm.text1}" +netui_tagIdNameMap.html_scopeOne___form="bean" +netui_tagIdNameMap.html_scopeOne___b2="actionOverride:override" +netui_tagIdNameMap.html_scopeOne___t2="{actionForm.text2}" // **** This section contains functions typically run as events **** @@ -154,14 +154,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -169,13 +169,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -241,7 +241,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 09:52:32.525 AM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 09:00:37.558 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/DataGridPagerCustomSelect.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerCustomSelect.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerCustomSelect.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerCustomSelect.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerCustomSelect.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerCustomSelect.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>DataGridPagerCustomSelect</ses:sessionName> <ses:tester>ekoneil</ses:tester> - <ses:startDate>12 Jan 2005, 09:52:51.616 AM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 09:00:56.466 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>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>2c8c3167:10167978d3c:-75a6</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7db0</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -223,18 +223,18 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -248,7 +248,7 @@ // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -305,7 +305,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -331,7 +331,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>host</ses:name> @@ -343,7 +343,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-75a6</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7db0</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -510,18 +510,18 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -535,7 +535,7 @@ // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -592,7 +592,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -618,7 +618,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>host</ses:name> @@ -630,7 +630,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-75a6</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7db0</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -797,18 +797,18 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -822,7 +822,7 @@ // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -879,7 +879,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -905,7 +905,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>host</ses:name> @@ -917,7 +917,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-75a6</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7db0</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -1084,18 +1084,18 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -1109,7 +1109,7 @@ // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -1166,7 +1166,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -1192,7 +1192,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>host</ses:name> @@ -1204,7 +1204,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-75a6</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7db0</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -1371,18 +1371,18 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -1396,7 +1396,7 @@ // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -1453,7 +1453,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -1479,7 +1479,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>host</ses:name> @@ -1491,7 +1491,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-75a6</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7db0</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -1658,18 +1658,18 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -1683,7 +1683,7 @@ // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -1723,7 +1723,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 09:52:53.915 AM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 09:00:58.499 AM MST</ses:endDate> <ses:sessionStatus>fail</ses:sessionStatus> <ses:testCount>6</ses:testCount> <ses:passedCount>0</ses:passedCount> Modified: incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapForm.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapForm.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapForm.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapForm.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapForm.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapForm.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>IdMapForm</ses:sessionName> <ses:tester>Daryl</ses:tester> - <ses:startDate>12 Jan 2005, 09:53:45.671 AM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 09:01:48.130 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>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>2c8c3167:10167978d3c:-74dc</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7ce6</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -127,7 +127,7 @@ // to the real id written into the HTML if (netui_tagIdNameMap == null) var netui_tagIdNameMap = new Object(); -netui_tagIdNameMap.n0__form="bean" +netui_tagIdNameMap.n0___form="bean" // **** This section contains functions typically run as events **** @@ -160,14 +160,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -175,13 +175,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -234,7 +234,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 09:53:45.711 AM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 09:01:48.801 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/IdMapFormNoHtml.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapFormNoHtml.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapFormNoHtml.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapFormNoHtml.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapFormNoHtml.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapFormNoHtml.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>IdMapFormNoHtml</ses:sessionName> <ses:tester>Daryl</ses:tester> - <ses:startDate>12 Jan 2005, 09:53:45.770 AM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 09:01:48.821 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>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>2c8c3167:10167978d3c:-74da</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7ce4</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -136,18 +136,18 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -161,7 +161,7 @@ // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -226,7 +226,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 09:53:45.810 AM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 09:01:49.842 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/IdMapGenScopeId.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapGenScopeId.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapGenScopeId.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapGenScopeId.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapGenScopeId.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapGenScopeId.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>IdMapGenScopeId</ses:sessionName> <ses:tester>Daryl</ses:tester> - <ses:startDate>12 Jan 2005, 09:53:45.839 AM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 09:01:49.862 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>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>2c8c3167:10167978d3c:-74d8</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7ce2</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -122,8 +122,8 @@ // to the real id written into the HTML if (netui_tagIdNameMap == null) var netui_tagIdNameMap = new Object(); -netui_tagIdNameMap.n1__check1="wlw-checkbox_key:{actionForm.check1}" -netui_tagIdNameMap.n1__check2="wlw-checkbox_key:{actionForm.check2}" +netui_tagIdNameMap.n0_n1___check1="wlw-checkbox_key:{actionForm.check1}" +netui_tagIdNameMap.n0_n1___check2="wlw-checkbox_key:{actionForm.check2}" // **** This section contains functions typically run as events **** @@ -156,14 +156,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -171,13 +171,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -240,7 +240,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 09:53:45.859 AM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 09:01:50.513 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/IdMapHtmlScopeId.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapHtmlScopeId.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapHtmlScopeId.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapHtmlScopeId.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapHtmlScopeId.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapHtmlScopeId.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>IdMapHtmlScopeId</ses:sessionName> <ses:tester>Daryl</ses:tester> - <ses:startDate>12 Jan 2005, 09:53:45.889 AM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 09:01:50.533 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>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>2c8c3167:10167978d3c:-74d6</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7ce0</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -128,8 +128,8 @@ // to the real id written into the HTML if (netui_tagIdNameMap == null) var netui_tagIdNameMap = new Object(); -netui_tagIdNameMap.n0__check1="wlw-checkbox_key:{actionForm.check1}" -netui_tagIdNameMap.n0__check2="wlw-checkbox_key:{actionForm.check2}" +netui_tagIdNameMap.n0___check1="wlw-checkbox_key:{actionForm.check1}" +netui_tagIdNameMap.n0___check2="wlw-checkbox_key:{actionForm.check2}" // **** This section contains functions typically run as events **** @@ -162,14 +162,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -177,13 +177,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -235,7 +235,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 09:53:45.909 AM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 09:01:51.194 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/IdMapId.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapId.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapId.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapId.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapId.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapId.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>IdMapId</ses:sessionName> <ses:tester>Daryl</ses:tester> - <ses:startDate>12 Jan 2005, 09:53:45.929 AM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 09:01:51.224 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>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>2c8c3167:10167978d3c:-74d4</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7cde</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -193,14 +193,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -208,13 +208,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -227,31 +227,28 @@ var p = document.getElementById("javaOut"); var s = document.getElementById("scopeOneSpan"); - var val = "<b>Document Access</b><br>"; + var val = "<b>Document Access</b><table><tr><td valign='top'><b>Lookup By Id</b><br>"; val = val + "TextBox by id is null: <b>" + (document.getElementById(lookupIdByTagId("textbox",s)) == null) + "</b><br>"; - val = val + "TextBox by name is null: <b>" + - (document.getElementsByTagName(lookupNameByTagId("textbox",s)) == null) + "</b><br>"; - val = val + "Select by id is null: <b>" + (document.getElementById(lookupIdByTagId("select",s)) == null) + "</b><br>"; - val = val + "Select by name is null: <b>" + - (document.getElementsByTagName(lookupNameByTagId("select",s)) == null) + "</b><br>"; - val = val + "TextArea by id is null: <b>" + (document.getElementById(lookupIdByTagId("textArea",s)) == null) + "</b><br>"; - val = val + "TextArea by name is null: <b>" + - (document.getElementsByTagName(lookupNameByTagId("textArea",s)) == null) + "</b><br>"; - val = val + "CheckBox 1 by id is null: <b>" + (document.getElementById(lookupIdByTagId("check1",s)) == null) + "</b><br>"; - val = val + "CheckBox 1 by name is null: <b>" + - (document.getElementsByTagName(lookupNameByTagId("check1",s)) == null) + "</b><br>"; - val = val + "Button by id is null: <b>" + (document.getElementById(lookupIdByTagId("button",s)) == null) + "</b><br>"; - val = val + "Button by name is null: <b>" + - (document.getElementsByTagName(lookupNameByTagId("button",s)) == null) + "</b><br>"; + + val = val + "</td><td valign='top'><b>Lookup By Name</b><br>"; + val = val + "TextBox by Name is null: <b>" + + (document.getElementsByName(lookupNameByTagId("textbox",s))[0] == null) + "</b><br>"; + val = val + "Select by Name is null: <b>" + + (document.getElementsByName(lookupNameByTagId("select",s))[0] == null) + "</b><br>"; + val = val + "TextArea by Name is null: <b>" + + (document.getElementsByName(lookupNameByTagId("textArea",s))[0] == null) + "</b><br>"; + val = val + "CheckBox 1 by Name is null: <b>" + + (document.getElementsByName(lookupNameByTagId("check1",s))[0] == null) + "</b><br>"; + val = val + "</td></tr></table>"; val = val + "<br>"; if (typeof(netui_tagIdMap) != "undefined") { @@ -331,7 +328,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -365,7 +362,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>host</ses:name> @@ -377,7 +374,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-74d4</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7cde</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -514,14 +511,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -529,13 +526,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -548,31 +545,28 @@ var p = document.getElementById("javaOut"); var s = document.getElementById("scopeOneSpan"); - var val = "<b>Document Access</b><br>"; + var val = "<b>Document Access</b><table><tr><td valign='top'><b>Lookup By Id</b><br>"; val = val + "TextBox by id is null: <b>" + (document.getElementById(lookupIdByTagId("textbox",s)) == null) + "</b><br>"; - val = val + "TextBox by name is null: <b>" + - (document.getElementsByTagName(lookupNameByTagId("textbox",s)) == null) + "</b><br>"; - val = val + "Select by id is null: <b>" + (document.getElementById(lookupIdByTagId("select",s)) == null) + "</b><br>"; - val = val + "Select by name is null: <b>" + - (document.getElementsByTagName(lookupNameByTagId("select",s)) == null) + "</b><br>"; - val = val + "TextArea by id is null: <b>" + (document.getElementById(lookupIdByTagId("textArea",s)) == null) + "</b><br>"; - val = val + "TextArea by name is null: <b>" + - (document.getElementsByTagName(lookupNameByTagId("textArea",s)) == null) + "</b><br>"; - val = val + "CheckBox 1 by id is null: <b>" + (document.getElementById(lookupIdByTagId("check1",s)) == null) + "</b><br>"; - val = val + "CheckBox 1 by name is null: <b>" + - (document.getElementsByTagName(lookupNameByTagId("check1",s)) == null) + "</b><br>"; - val = val + "Button by id is null: <b>" + (document.getElementById(lookupIdByTagId("button",s)) == null) + "</b><br>"; - val = val + "Button by name is null: <b>" + - (document.getElementsByTagName(lookupNameByTagId("button",s)) == null) + "</b><br>"; + + val = val + "</td><td valign='top'><b>Lookup By Name</b><br>"; + val = val + "TextBox by Name is null: <b>" + + (document.getElementsByName(lookupNameByTagId("textbox",s))[0] == null) + "</b><br>"; + val = val + "Select by Name is null: <b>" + + (document.getElementsByName(lookupNameByTagId("select",s))[0] == null) + "</b><br>"; + val = val + "TextArea by Name is null: <b>" + + (document.getElementsByName(lookupNameByTagId("textArea",s))[0] == null) + "</b><br>"; + val = val + "CheckBox 1 by Name is null: <b>" + + (document.getElementsByName(lookupNameByTagId("check1",s))[0] == null) + "</b><br>"; + val = val + "</td></tr></table>"; val = val + "<br>"; if (typeof(netui_tagIdMap) != "undefined") { @@ -607,7 +601,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 09:53:46.563 AM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 09:01:52.346 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/IdMapNonCtrls.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapNonCtrls.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapNonCtrls.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapNonCtrls.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapNonCtrls.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapNonCtrls.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>IdMapNonCtrls</ses:sessionName> <ses:tester>Daryl</ses:tester> - <ses:startDate>12 Jan 2005, 09:53:46.592 AM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 09:01:52.376 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>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>2c8c3167:10167978d3c:-74d1</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7cdb</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -143,18 +143,18 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -207,7 +207,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 09:53:46.622 AM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 09:01:53.027 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/IdMapScopeId.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapScopeId.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapScopeId.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapScopeId.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapScopeId.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapScopeId.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>IdMapScopeId</ses:sessionName> <ses:tester>Daryl</ses:tester> - <ses:startDate>12 Jan 2005, 09:53:46.642 AM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 09:01:53.047 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>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>2c8c3167:10167978d3c:-74cf</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7cd9</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -190,14 +190,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -205,13 +205,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -241,7 +241,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 09:53:46.662 AM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 09:01:53.718 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/IdMapSpan.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapSpan.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapSpan.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapSpan.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapSpan.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/IdMapSpan.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>IdMapSpan</ses:sessionName> <ses:tester>Daryl</ses:tester> - <ses:startDate>12 Jan 2005, 09:53:46.691 AM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 09:01:53.738 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>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>2c8c3167:10167978d3c:-74cd</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7cd7</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -132,18 +132,18 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -195,7 +195,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 09:53:46.711 AM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 09:01:54.729 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/JsAllScript.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/JsAllScript.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/JsAllScript.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/JsAllScript.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/JsAllScript.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/JsAllScript.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>JsAllScript</ses:sessionName> <ses:tester>Daryl</ses:tester> - <ses:startDate>12 Jan 2005, 09:53:58.283 AM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 09:02:05.655 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>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>2c8c3167:10167978d3c:-74ad</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7cb7</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -195,14 +195,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -210,13 +210,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -259,7 +259,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -293,7 +293,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -309,7 +309,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-74ad</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7cb7</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -363,7 +363,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -385,7 +385,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -401,7 +401,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-74ad</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7cb7</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -540,14 +540,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -555,13 +555,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -604,7 +604,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -638,7 +638,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -654,7 +654,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-74ad</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7cb7</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -708,7 +708,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -730,7 +730,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -746,7 +746,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-74ad</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7cb7</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -885,14 +885,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -900,13 +900,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -949,7 +949,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -983,7 +983,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -999,7 +999,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-74ad</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7cb7</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -1053,7 +1053,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -1075,7 +1075,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -1091,7 +1091,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-74ad</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7cb7</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -1230,14 +1230,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -1245,13 +1245,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -1294,7 +1294,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -1328,7 +1328,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -1344,7 +1344,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-74ad</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7cb7</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -1398,7 +1398,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -1420,7 +1420,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -1436,7 +1436,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-74ad</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7cb7</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -1575,14 +1575,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -1590,13 +1590,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -1643,7 +1643,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -1677,7 +1677,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -1693,7 +1693,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-74ad</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7cb7</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -1747,7 +1747,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -1769,7 +1769,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -1785,7 +1785,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-74ad</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7cb7</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -1924,14 +1924,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -1939,13 +1939,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -1963,7 +1963,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 09:54:00.195 AM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 09:02:07.017 AM MST</ses:endDate> <ses:sessionStatus>fail</ses:sessionStatus> <ses:testCount>11</ses:testCount> <ses:passedCount>5</ses:passedCount> Modified: incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/JsAllScriptHtml.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/JsAllScriptHtml.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/JsAllScriptHtml.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/JsAllScriptHtml.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/JsAllScriptHtml.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/JsAllScriptHtml.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>JsAllScriptHtml</ses:sessionName> <ses:tester>Daryl</ses:tester> - <ses:startDate>12 Jan 2005, 09:54:00.235 AM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 09:02:07.057 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>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>2c8c3167:10167978d3c:-74a1</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7cab</ses:value> </ses:header> <ses:header> <ses:name>testrecorder.playback.testnumber</ses:name> @@ -199,14 +199,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -214,13 +214,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -262,7 +262,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -296,7 +296,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -312,7 +312,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-74a1</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7cab</ses:value> </ses:header> <ses:header> <ses:name>testrecorder.playback.testnumber</ses:name> @@ -370,7 +370,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -392,7 +392,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -408,7 +408,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-74a1</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7cab</ses:value> </ses:header> <ses:header> <ses:name>testrecorder.playback.testnumber</ses:name> @@ -551,14 +551,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -566,13 +566,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -614,7 +614,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -648,7 +648,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -664,7 +664,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-74a1</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7cab</ses:value> </ses:header> <ses:header> <ses:name>testrecorder.playback.testnumber</ses:name> @@ -722,7 +722,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -744,7 +744,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -760,7 +760,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-74a1</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7cab</ses:value> </ses:header> <ses:header> <ses:name>testrecorder.playback.testnumber</ses:name> @@ -903,14 +903,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -918,13 +918,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -966,7 +966,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -1000,7 +1000,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -1016,7 +1016,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-74a1</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7cab</ses:value> </ses:header> <ses:header> <ses:name>testrecorder.playback.testnumber</ses:name> @@ -1074,7 +1074,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -1096,7 +1096,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -1112,7 +1112,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-74a1</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7cab</ses:value> </ses:header> <ses:header> <ses:name>testrecorder.playback.testnumber</ses:name> @@ -1255,14 +1255,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -1270,13 +1270,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -1318,7 +1318,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -1352,7 +1352,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -1368,7 +1368,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-74a1</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7cab</ses:value> </ses:header> <ses:header> <ses:name>testrecorder.playback.testnumber</ses:name> @@ -1426,7 +1426,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -1448,7 +1448,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -1464,7 +1464,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-74a1</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7cab</ses:value> </ses:header> <ses:header> <ses:name>testrecorder.playback.testnumber</ses:name> @@ -1607,14 +1607,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -1622,13 +1622,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -1674,7 +1674,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -1708,7 +1708,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -1724,7 +1724,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-74a1</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7cab</ses:value> </ses:header> <ses:header> <ses:name>testrecorder.playback.testnumber</ses:name> @@ -1782,7 +1782,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -1804,7 +1804,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -1820,7 +1820,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-74a1</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7cab</ses:value> </ses:header> <ses:header> <ses:name>testrecorder.playback.testnumber</ses:name> @@ -1963,14 +1963,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -1978,13 +1978,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -2001,7 +2001,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 09:54:01.533 AM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 09:02:08.830 AM MST</ses:endDate> <ses:sessionStatus>fail</ses:sessionStatus> <ses:testCount>11</ses:testCount> <ses:passedCount>5</ses:passedCount> Modified: incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/JsFind.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/JsFind.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/JsFind.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/JsFind.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/JsFind.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/JsFind.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>JsFind</ses:sessionName> <ses:tester>Daryl</ses:tester> - <ses:startDate>12 Jan 2005, 09:54:01.572 AM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 09:02:08.860 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>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>2c8c3167:10167978d3c:-7495</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7c9f</ses:value> </ses:header> <ses:header> <ses:name>testrecorder.playback.testnumber</ses:name> @@ -157,14 +157,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -172,13 +172,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -216,7 +216,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -250,7 +250,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -266,7 +266,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-7495</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7c9f</ses:value> </ses:header> <ses:header> <ses:name>testrecorder.playback.testnumber</ses:name> @@ -367,14 +367,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -382,13 +382,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -426,7 +426,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -460,7 +460,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -476,7 +476,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-7495</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7c9f</ses:value> </ses:header> <ses:header> <ses:name>testrecorder.playback.testnumber</ses:name> @@ -577,14 +577,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -592,13 +592,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -636,7 +636,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -670,7 +670,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -686,7 +686,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-7495</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7c9f</ses:value> </ses:header> <ses:header> <ses:name>testrecorder.playback.testnumber</ses:name> @@ -787,14 +787,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -802,13 +802,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -825,7 +825,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 09:54:02.702 AM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 09:02:09.541 AM MST</ses:endDate> <ses:sessionStatus>fail</ses:sessionStatus> <ses:testCount>4</ses:testCount> <ses:passedCount>0</ses:passedCount> Modified: incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/JsNoContainers.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/JsNoContainers.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/JsNoContainers.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/JsNoContainers.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/JsNoContainers.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/JsNoContainers.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>JsNoContainers</ses:sessionName> <ses:tester>Daryl</ses:tester> - <ses:startDate>12 Jan 2005, 01:23:13.600 PM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 09:02:11.243 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>92DD04175ED8B6511C549878A529D088</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=92DD04175ED8B6511C549878A529D088; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>-64638637:1016893d1d1:-7c96</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7c96</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -129,18 +129,18 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -154,7 +154,7 @@ // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -262,7 +262,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 01:23:14.649 PM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 09:02:11.884 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/MockPortal.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/MockPortal.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/MockPortal.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/MockPortal.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/MockPortal.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/MockPortal.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>MockPortal</ses:sessionName> <ses:tester>rich</ses:tester> - <ses:startDate>12 Jan 2005, 09:54:21.912 AM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 09:02:25.003 AM MST</ses:startDate> <ses:description>rich</ses:description> <ses:tests> <ses:test> @@ -18,7 +18,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>2c8c3167:10167978d3c:-7458</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7c62</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -160,14 +160,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -175,13 +175,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -278,14 +278,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -293,13 +293,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -349,7 +349,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -383,7 +383,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>host</ses:name> @@ -395,7 +395,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-7458</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7c62</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -517,7 +517,7 @@ </html>]]></ses:responseBody> </ses:response> <ses:testResults> - <ses:testStatus>fail</ses:testStatus> + <ses:testStatus>pass</ses:testStatus> </ses:testResults> </ses:test> <ses:test> @@ -546,7 +546,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -580,7 +580,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>host</ses:name> @@ -592,7 +592,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-7458</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7c62</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -714,7 +714,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -740,7 +740,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>host</ses:name> @@ -752,7 +752,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-7458</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7c62</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -856,14 +856,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -871,13 +871,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -956,7 +956,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -982,7 +982,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>host</ses:name> @@ -994,7 +994,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-7458</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7c62</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -1115,7 +1115,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -1141,7 +1141,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>host</ses:name> @@ -1153,7 +1153,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-7458</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7c62</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -1289,14 +1289,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -1304,13 +1304,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -1356,7 +1356,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -1382,7 +1382,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>host</ses:name> @@ -1394,7 +1394,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-7458</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7c62</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -1498,14 +1498,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -1513,13 +1513,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -1602,9 +1602,9 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 09:54:25.142 AM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 09:02:27.857 AM MST</ses:endDate> <ses:sessionStatus>fail</ses:sessionStatus> <ses:testCount>7</ses:testCount> - <ses:passedCount>2</ses:passedCount> - <ses:failedCount>5</ses:failedCount> + <ses:passedCount>3</ses:passedCount> + <ses:failedCount>4</ses:failedCount> </ses:recorderSession> Modified: incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/OnTest.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/OnTest.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/OnTest.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/OnTest.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/OnTest.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/OnTest.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>OnTest</ses:sessionName> <ses:tester>Daryl</ses:tester> - <ses:startDate>12 Jan 2005, 01:23:48.163 PM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 09:02:45.893 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>92DD04175ED8B6511C549878A529D088</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=92DD04175ED8B6511C549878A529D088; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>-64638637:1016893d1d1:-7c0a</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7c0a</ses:value> </ses:header> <ses:header> <ses:name>testrecorder.playback.testnumber</ses:name> @@ -295,18 +295,18 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -364,7 +364,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 01:23:49.551 PM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 09:02:46.574 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/RtexpTagId.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RtexpTagId.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RtexpTagId.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RtexpTagId.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RtexpTagId.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RtexpTagId.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>RtexpTagId</ses:sessionName> <ses:tester>Daryl</ses:tester> - <ses:startDate>12 Jan 2005, 09:58:01.254 AM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 09:05:30.430 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>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>2c8c3167:10167978d3c:-715d</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7967</ses:value> </ses:header> <ses:header> <ses:name>testrecorder.playback.testnumber</ses:name> @@ -161,14 +161,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -176,13 +176,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -220,7 +220,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -254,7 +254,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -270,7 +270,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-715d</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7967</ses:value> </ses:header> <ses:header> <ses:name>testrecorder.playback.testnumber</ses:name> @@ -375,14 +375,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -390,13 +390,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -413,7 +413,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 09:58:02.553 AM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 09:05:31.100 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/TagIds.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/TagIds.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/TagIds.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/TagIds.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/TagIds.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/TagIds.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>TagIds</ses:sessionName> <ses:tester>Daryl</ses:tester> - <ses:startDate>12 Jan 2005, 01:05:05.868 PM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 09:06:13.431 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>EC626D8712037B8F5D1E8E65B78C6159</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=EC626D8712037B8F5D1E8E65B78C6159; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>-46787ba7:101687f6ae3:-78f8</ses:value> + <ses:value>1db1d115:1016ccb50cb:-78f8</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -183,14 +183,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -198,13 +198,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -221,7 +221,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 01:05:06.671 PM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 09:06:14.052 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/TagSizeBinding.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/TagSizeBinding.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/TagSizeBinding.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/TagSizeBinding.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/TagSizeBinding.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/TagSizeBinding.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>TagSizeBinding</ses:sessionName> <ses:tester>Daryl</ses:tester> - <ses:startDate>12 Jan 2005, 01:05:07.926 PM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 09:06:15.094 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>EC626D8712037B8F5D1E8E65B78C6159</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=EC626D8712037B8F5D1E8E65B78C6159; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>-46787ba7:101687f6ae3:-78f4</ses:value> + <ses:value>1db1d115:1016ccb50cb:-78f4</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -111,7 +111,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>EC626D8712037B8F5D1E8E65B78C6159</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -133,7 +133,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=EC626D8712037B8F5D1E8E65B78C6159; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -149,7 +149,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>-46787ba7:101687f6ae3:-78f4</ses:value> + <ses:value>1db1d115:1016ccb50cb:-78f4</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -201,7 +201,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>EC626D8712037B8F5D1E8E65B78C6159</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -223,7 +223,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=EC626D8712037B8F5D1E8E65B78C6159; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -239,7 +239,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>-46787ba7:101687f6ae3:-78f4</ses:value> + <ses:value>1db1d115:1016ccb50cb:-78f4</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -340,18 +340,18 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -396,7 +396,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>EC626D8712037B8F5D1E8E65B78C6159</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -430,7 +430,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=EC626D8712037B8F5D1E8E65B78C6159; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -446,7 +446,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>-46787ba7:101687f6ae3:-78f4</ses:value> + <ses:value>1db1d115:1016ccb50cb:-78f4</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -518,7 +518,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>EC626D8712037B8F5D1E8E65B78C6159</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -552,7 +552,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=EC626D8712037B8F5D1E8E65B78C6159; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -568,7 +568,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>-46787ba7:101687f6ae3:-78f4</ses:value> + <ses:value>1db1d115:1016ccb50cb:-78f4</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -611,7 +611,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 01:05:10.888 PM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 09:06:17.908 AM MST</ses:endDate> <ses:sessionStatus>fail</ses:sessionStatus> <ses:testCount>5</ses:testCount> <ses:passedCount>4</ses:passedCount> Modified: incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/XhtmlFormLabel.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/XhtmlFormLabel.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/XhtmlFormLabel.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/XhtmlFormLabel.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/XhtmlFormLabel.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/XhtmlFormLabel.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>XhtmlFormLabel</ses:sessionName> <ses:tester>Daryl</ses:tester> - <ses:startDate>12 Jan 2005, 01:06:13.785 PM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 09:07:22.000 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>EC626D8712037B8F5D1E8E65B78C6159</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=EC626D8712037B8F5D1E8E65B78C6159; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>-46787ba7:101687f6ae3:-781b</ses:value> + <ses:value>1db1d115:1016ccb50cb:-781d</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -172,14 +172,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -187,13 +187,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -235,7 +235,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>EC626D8712037B8F5D1E8E65B78C6159</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -269,7 +269,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=EC626D8712037B8F5D1E8E65B78C6159; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -285,7 +285,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>-46787ba7:101687f6ae3:-781b</ses:value> + <ses:value>1db1d115:1016ccb50cb:-781d</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -345,7 +345,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 01:06:14.950 PM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 09:07:23.132 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/cr183774.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/cr183774.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/cr183774.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/cr183774.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/cr183774.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/cr183774.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>Cr183774</ses:sessionName> <ses:tester>Daryl</ses:tester> - <ses:startDate>12 Jan 2005, 09:52:07.310 AM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 09:00:12.522 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>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>host</ses:name> @@ -48,7 +48,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-761c</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7e26</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -130,14 +130,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -145,13 +145,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -167,7 +167,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 09:52:07.885 AM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 09:00:13.133 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/jsScriptScopeId.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/jsScriptScopeId.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/jsScriptScopeId.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/jsScriptScopeId.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/jsScriptScopeId.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/jsScriptScopeId.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>jsScriptScopeId</ses:sessionName> <ses:tester>Daryl</ses:tester> - <ses:startDate>12 Jan 2005, 09:54:06.506 AM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 09:02:13.016 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>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>2c8c3167:10167978d3c:-7484</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7c8e</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -142,8 +142,8 @@ // to the real id written into the HTML if (netui_tagIdNameMap == null) var netui_tagIdNameMap = new Object(); -netui_tagIdNameMap.one__firstName="{actionForm.firstName}" -netui_tagIdNameMap.one__lastName="{actionForm.lastName}" +netui_tagIdNameMap.one___firstName="{actionForm.firstName}" +netui_tagIdNameMap.one___lastName="{actionForm.lastName}" // **** This section contains functions typically run as events **** @@ -197,14 +197,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -212,13 +212,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -271,8 +271,8 @@ // to the real id written into the HTML if (netui_tagIdNameMap == null) var netui_tagIdNameMap = new Object(); -netui_tagIdNameMap.two__firstName="{actionForm.firstName}" -netui_tagIdNameMap.two__lastName="{actionForm.lastName}" +netui_tagIdNameMap.two___firstName="{actionForm.firstName}" +netui_tagIdNameMap.two___lastName="{actionForm.lastName}" --> </script> @@ -338,7 +338,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -372,7 +372,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -388,7 +388,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-7484</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7c8e</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -443,7 +443,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -465,7 +465,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -481,7 +481,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-7484</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7c8e</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -567,8 +567,8 @@ // to the real id written into the HTML if (netui_tagIdNameMap == null) var netui_tagIdNameMap = new Object(); -netui_tagIdNameMap.one__firstName="{actionForm.firstName}" -netui_tagIdNameMap.one__lastName="{actionForm.lastName}" +netui_tagIdNameMap.one___firstName="{actionForm.firstName}" +netui_tagIdNameMap.one___lastName="{actionForm.lastName}" // **** This section contains functions typically run as events **** @@ -622,14 +622,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -637,13 +637,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -696,8 +696,8 @@ // to the real id written into the HTML if (netui_tagIdNameMap == null) var netui_tagIdNameMap = new Object(); -netui_tagIdNameMap.two__firstName="{actionForm.firstName}" -netui_tagIdNameMap.two__lastName="{actionForm.lastName}" +netui_tagIdNameMap.two___firstName="{actionForm.firstName}" +netui_tagIdNameMap.two___lastName="{actionForm.lastName}" --> </script> @@ -759,7 +759,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -793,7 +793,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -809,7 +809,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-7484</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7c8e</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -864,7 +864,7 @@ <ses:cookies> <ses:cookie> <ses:name>JSESSIONID</ses:name> - <ses:value>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</ses:value> </ses:cookie> </ses:cookies> <ses:headers> @@ -886,7 +886,7 @@ </ses:header> <ses:header> <ses:name>cookie</ses:name> - <ses:value>$Version=0; JSESSIONID=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $Path=/coreWeb</ses:value> </ses:header> <ses:header> <ses:name>cookie2</ses:name> @@ -902,7 +902,7 @@ </ses:header> <ses:header> <ses:name>testrecorder.playback.testid</ses:name> - <ses:value>2c8c3167:10167978d3c:-7484</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7c8e</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -988,8 +988,8 @@ // to the real id written into the HTML if (netui_tagIdNameMap == null) var netui_tagIdNameMap = new Object(); -netui_tagIdNameMap.one__firstName="{actionForm.firstName}" -netui_tagIdNameMap.one__lastName="{actionForm.lastName}" +netui_tagIdNameMap.one___firstName="{actionForm.firstName}" +netui_tagIdNameMap.one___lastName="{actionForm.lastName}" // **** This section contains functions typically run as events **** @@ -1043,14 +1043,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -1058,13 +1058,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -1117,8 +1117,8 @@ // to the real id written into the HTML if (netui_tagIdNameMap == null) var netui_tagIdNameMap = new Object(); -netui_tagIdNameMap.two__firstName="{actionForm.firstName}" -netui_tagIdNameMap.two__lastName="{actionForm.lastName}" +netui_tagIdNameMap.two___firstName="{actionForm.firstName}" +netui_tagIdNameMap.two___lastName="{actionForm.lastName}" --> </script> @@ -1151,7 +1151,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 09:54:08.468 AM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 09:02:14.287 AM MST</ses:endDate> <ses:sessionStatus>fail</ses:sessionStatus> <ses:testCount>5</ses:testCount> <ses:passedCount>2</ses:passedCount> Modified: incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/jsid.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/jsid.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/jsid.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/jsid.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/jsid.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/jsid.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>jsid</ses:sessionName> <ses:tester>daryl</ses:tester> - <ses:startDate>12 Jan 2005, 09:54:02.732 AM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 09:02:09.571 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>333A485541F61EB0242D17363C38C878</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=333A485541F61EB0242D17363C38C878; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>2c8c3167:10167978d3c:-7490</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7c9a</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -150,14 +150,14 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -165,13 +165,13 @@ } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -208,7 +208,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 09:54:03.346 AM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 09:02:10.572 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/jsidnohtml.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/jsidnohtml.xml?view=diff&rev=125085&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/jsidnohtml.xml&r1=125084&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/jsidnohtml.xml&r2=125085 ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/jsidnohtml.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/jsidnohtml.xml Thu Jan 13 09:42:36 2005 @@ -2,7 +2,7 @@ <ses:recorderSession xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session"> <ses:sessionName>jsidnohtml</ses:sessionName> <ses:tester>daryl</ses:tester> - <ses:startDate>12 Jan 2005, 01:23:12.901 PM MST</ses:startDate> + <ses:startDate>13 Jan 2005, 09:02:10.592 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>92DD04175ED8B6511C549878A529D088</ses:value> + <ses:value>919809676555E106B8773D06B639EEE3</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=92DD04175ED8B6511C549878A529D088; $Path=/coreWeb</ses:value> + <ses:value>$Version=0; JSESSIONID=919809676555E106B8773D06B639EEE3; $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>-64638637:1016893d1d1:-7c98</ses:value> + <ses:value>1db1d115:1016ccb50cb:-7c98</ses:value> </ses:header> <ses:header> <ses:name>user-agent</ses:name> @@ -120,18 +120,18 @@ // lookup by tagId to "real id" function lookupIdByTagId(id, tag) { - var scopeId = lookupScopeId(tag); + var scopeId = lookupScopeId(tag,"."); return (scopeId == "") ? id : scopeId + id; } //Non-Legacy lookup method creating a fully qualified scope id -function lookupScopeId(tag) +function lookupScopeId(tag,sep) { var val = ""; while (tag != null && tag.getAttribute != null) { var attrVal = tag.getAttribute("netui:scopeId"); if (attrVal != null) - val = attrVal + "." + val; + val = attrVal + sep + val; tag = tag.parentNode; } return val; @@ -145,7 +145,7 @@ // lookup by tagId to "real name" function lookupNameByTagId(id, tag) { - var scopeId = getScopeId(tag); + var scopeId = lookupScopeId(tag,"_"); if (scopeId == "") return netui_tagIdNameMap[id]; else @@ -255,7 +255,7 @@ </ses:testResults> </ses:test> </ses:tests> - <ses:endDate>12 Jan 2005, 01:23:13.560 PM MST</ses:endDate> + <ses:endDate>13 Jan 2005, 09:02:11.213 AM MST</ses:endDate> <ses:sessionStatus>fail</ses:sessionStatus> <ses:testCount>1</ses:testCount> <ses:passedCount>0</ses:passedCount>
