Author: dolander
Date: Thu Feb 17 11:41:20 2005
New Revision: 154182
URL: http://svn.apache.org/viewcvs?view=rev&rev=154182
Log:
Cleaned up a few of the generated error messages
Fixed support for the client based tree for Opera 8.0 beta
Modified:
incubator/beehive/trunk/netui/src/javascript/tagshtml/netui-tree.js
incubator/beehive/trunk/netui/src/util/org/apache/beehive/netui/util/netui.properties
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtTreeItemErrors.xml
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RepeatCheckOptionError.xml
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RepeatRadioOptionError.xml
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RichTreeEmptyTree.xml
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RichTreeSCError.xml
Modified: incubator/beehive/trunk/netui/src/javascript/tagshtml/netui-tree.js
URL:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/javascript/tagshtml/netui-tree.js?view=diff&r1=154181&r2=154182
==============================================================================
--- incubator/beehive/trunk/netui/src/javascript/tagshtml/netui-tree.js
(original)
+++ incubator/beehive/trunk/netui/src/javascript/tagshtml/netui-tree.js Thu Feb
17 11:41:20 2005
@@ -34,10 +34,10 @@
NetUITree.prototype.init = function()
{
for (var i=0;i<document.links.length;i++) {
- var attr = document.links[i].getAttribute("netui:treeAnchor");
+ var attr = netUIGetAttribute(document.links[i],"netui","treeAnchor");
if (attr != null) {
- var isInit =
document.links[i].getAttribute("netui:treeAnchorInit");
- if (isInit != null) {
+ var isInit =
netUIGetAttribute(document.links[i],"netui","treeAnchorInit");
+ if (isInit != null && isInit != "") {
var link = document.links[i];
var treeName = netUI.netUITree.getTreeName(link);
//alert("TreeName:" + treeName);
@@ -59,20 +59,23 @@
// tree is invalid.
NetUITree.prototype.getTreeName = function(node)
{
+ //alert("A:" + node.nodeName);
if (node.nodeName != "A")
return reportNetUIError("getTreeName: Expected Node was not an A:" +
node.nodeName);
// parent of the A should be a DIV
node = node.parentNode;
+ //alert("DIV:" + node.nodeName);
if (node.nodeName != "DIV")
return reportNetUIError("getTreeName: Expected Node was not an DIV:" +
node.nodeName);
// parent of the DIV is the root of the tree DIV
node = node.parentNode;
+ //alert("DIV:" + node.nodeName);
if (node.nodeName != "DIV")
return reportNetUIError("getTreeName: Expected Node was not an DIV:" +
node.nodeName);
- var attr = node.getAttribute("netui:treeName");
+ var attr = netUIGetAttribute(node,"netui","treeName");
if (attr == null)
return reportNetUIError("getTreeName: The treeName was not found");
@@ -153,7 +156,7 @@
nodeName = nodeName[0].childNodes[0].nodeValue;
for (var i=0;i<document.links.length;i++) {
- var attr = document.links[i].getAttribute("netui:treeId");
+ var attr = netUIGetAttribute(document.links[i],"netui","treeId");
if (attr != null) {
if (attr == nodeName) {
var dump = "DUMP:\n";
@@ -211,9 +214,9 @@
// Create the XmlHttpRequest that will inform the server of the
// change in the client state.
var treeName = netUI.netUITree.getTreeName(this);
- var nodeName = this.getAttribute("netui:treeId");
- var expandOnServer = this.getAttribute("netui:expandOnServer");
- var expandPath = this.getAttribute("netui:expandPath");
+ var nodeName = netUIGetAttribute(this,"netui","treeId");
+ var expandOnServer = netUIGetAttribute(this,"netui","expandOnServer");
+ var expandPath = netUIGetAttribute(this,"netui","expandPath");
var cmd = "treeExpand";
if (expandPath != null) {
cmd = expandPath + "/" + cmd;
@@ -233,8 +236,8 @@
if (img == null)
return reportNetUIError("IMG tag not found");
- var nodeName = this.getAttribute("netui:expandLast");
- var expandImage = this.getAttribute("netui:imageExpand");
+ var nodeName = netUIGetAttribute(this,"netui","expandLast");
+ var expandImage = netUIGetAttribute(this,"netui","imageExpand");
if (expandImage != null) {
img.src = expandImage;
}
@@ -286,7 +289,7 @@
// change in the client state.
var treeName = netUI.netUITree.getTreeName(node);
if (raiseCommand) {
- var nodeName = node.getAttribute("netui:treeId");
+ var nodeName = netUIGetAttribute(node,"netui","treeId");
var url =
netUI.netUITree.getTreeCommandUrl("treeCollapse",treeName,nodeName,"false");
netUI.raiseCommand(url,NetUITreeXmlHttpRequestReturn);
}
@@ -303,8 +306,8 @@
return reportNetUIError("IMG tag not found");
// set the image to be the collapse image
- var nodeName = node.getAttribute("netui:expandLast");
- var expandImage = node.getAttribute("netui:imageCollapse");
+ var nodeName = netUIGetAttribute(node,"netui","expandLast");
+ var expandImage = netUIGetAttribute(node,"netui","imageCollapse");
if (expandImage != null) {
img.src = expandImage;
}
@@ -346,7 +349,7 @@
if (div.nodeName != "DIV")
return reportNetUIError("getDepth only support DIV nodes, found: " +
div.nodeName);
- var attr = div.getAttribute("netui:treeLevel");
+ var attr = netUIGetAttribute(div,"netui","treeLevel");
return attr;
}
@@ -418,7 +421,7 @@
while (true) {
div.style.display = "";
- var at = div.getAttribute("netui:treeAnchor");
+ var at = netUIGetAttribute(div,"netui","treeAnchor");
// get the next sibling
div = div.nextSibling;
@@ -601,6 +604,19 @@
function NetUIDivPanelXmlHttpRequestReturn()
{
+}
+
+function netUIGetAttribute(node,namespace,attribute)
+{
+ var attr = node.getAttribute(namespace + ":" + attribute);
+ //alert("getAttribute: '" + attr + "'");
+ if (attr == null || attr == "") {
+ attr = node.getAttribute(attribute);
+ //alert("getAttributeNS: '" + attr + "'");
+ if (attr == "")
+ attr = null;
+ }
+ return attr;
}
// Utility function to report an error
Modified:
incubator/beehive/trunk/netui/src/util/org/apache/beehive/netui/util/netui.properties
URL:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/util/org/apache/beehive/netui/util/netui.properties?view=diff&r1=154181&r2=154182
==============================================================================
---
incubator/beehive/trunk/netui/src/util/org/apache/beehive/netui/util/netui.properties
(original)
+++
incubator/beehive/trunk/netui/src/util/org/apache/beehive/netui/util/netui.properties
Thu Feb 17 11:41:20 2005
@@ -19,35 +19,33 @@
Tags_FormBeanNoBeanAccess=Could not access form bean property {0}.
Tags_FormBeanTargetError=Target invocation error trying to access form bean
property {0}.
Tags_FormBeanNoMethodError=Could not find a bean method to access form bean
property {0}.
-Tags_TreeMultipleRootNodes=There cannot be more than one root Node for a Tree.
-Tags_TreeNoAttribute=The variable referenced by ''{0}'' was <b>null</b>. No
TreeNode was found.
+Tags_TreeMultipleRootNodes=There cannot be more than one root TreeElement for
a Tree.
+Tags_TreeNoAttribute=The variable referenced by ''{0}'' was <b>null</b>. No
TreeElement was found.
Tags_TreeRunAtClientRoot=A tree requires a root with an ITreeRootElement to
enable runAtClient.
Tags_TreeEncodingError=An IOException occured in URLEncoder.
-Tags_TreeStructureError=The structure of the Tree is invalid. The following
properties are requires on all nodes <b>{0}</b>.
+Tags_TreeStructureError=The structure of the Tree is invalid. The following
properties are requires on all TreeElements <b>{0}</b>.
Tags_UnableToWriteTree=Unable to create the tree instance identified by the
expression ''{0}''. Error:<br>{1}
Tags_TreeInvalidAttribute=Invalid tree control attribute ''{0}''.
-Tags_TreeDataNodeNotUnique=Tree node named ''{0}'' already belongs to this
tree.
+Tags_TreeDataNodeNotUnique=TreeElement named ''{0}'' already belongs to this
tree.
Tags_DivPanelInvalidAttribute=Invalid DivPanelState attribute ''{0}''.
Tags_UnableToWriteDivPanel=Unable to create the DivPanelState instance
identified by the expression ''{0}''. Error:<br>{1}
-Tags_InvalidParameterParent=Parameter tag's parent must implement URLParams.
-Tags_InvalidParameterMapParent=ParameterMap tag's parent must implement
URLParams.
+Tags_InvalidParameterParent=Parameter tag's parent must implement IUrlParams.
+Tags_InvalidParameterMapParent=ParameterMap tag's parent must implement
IUrlParams.
Tags_InvalidConfigurePopupParent=ConfigurePopup tag's parent must implement
IHasPopupSupport.
Tags_InvalidRetrievePopupOutputParent=RetrievePopupOutput tag's parent must be
ConfigurePopup.
Tags_ParameterMapNotAMap=Map expression for ParameterMap does not resolve to a
java.util.Map.
Tags_ParameterMapNotAnException=Map attribute of ParameterMap must be an
expression.
-Tags_InvalidNodeParent=Node's parent must be a Tree or another TreeItem.
+Tags_InvalidNodeParent=TreeItem's parent must be a Tree or another TreeItem.
Tags_CannotFindInput=Could not find the page input at key {0} and scope {1}.
-Tags_CheckBoxGroupChildError=The CheckBox tag cannot be the child of a
CheckBoxGroup.
+Tags_CheckBoxGroupChildError=The CheckBox tag cannot be the child of a
CheckBoxGroup, please use CheckBoxOption.
Tags_CheckBoxOptionNoCheckBoxGroup=Could not find the CheckBoxGroup parent tag
for the CheckBoxOption.
Tags_SelectOptionNoSelect=Could not find the Select parent tag for the
SelectOption.
Tags_RadioButtonOptionNoRadioButtonGroup=Could not find the RadioButtonGroup
parent tag for the RadioButtonOption.
-Tags_CheckBoxOptionNoCheckBoxGroup=Could not find the CheckBoxGroup parent tag
for the CheckBoxOption.
-Tags_OptionsMismatchError=Options cannot be mixed with an OptionsDataSource.
-Tags_SelectOptionParentHasOptionsDataSource=The Select cannot both have
SelectOptions and an OptionsDataSource.
+Tags_SelectOptionParentHasOptionsDataSource=The Select cannot both have
SelectOptions and an OptionsDataSource, unless the Select is repeating.
Tags_SelectRepeatingOptionType=A SelectOption must set the repeatingType
property when appearing in the body of a repeating Select.
Tags_OptionsDSIteratorError=Unable to create an Iterator on the
optionsDataSource
-Tags_RadioOptionParentHasOptionsDataSource=The RadioButtonGroup cannot both
have RadioButtonOptions and an OptionsDataSource.
-Tags_CheckBoxOptionParentHasOptionsDataSource=The CheckBoxGroup cannot both
have CheckBoxOptions and an OptionsDataSource.
+Tags_RadioOptionParentHasOptionsDataSource=The RadioButtonGroup cannot both
have RadioButtonOptions and an OptionsDataSource, unless the RadioButtonGroup
is repeating.
+Tags_CheckBoxOptionParentHasOptionsDataSource=The CheckBoxGroup cannot both
have CheckBoxOptions and an OptionsDataSource, unless the CheckBoxGroup is
repeating.
Tags_NumberFormatWrongType=The NumberFormat type must be "number", "currency",
or "percent".
Tags_NoFormatPattern=The pattern of the Format must not be null or an empty
string.
Tags_FormatException=FormatError while formatting: {0}.
@@ -76,7 +74,7 @@
Tags_NoInPageErrorReporting=In-page error reporting is turned off, the
following error occurred: {1}
Tags_ClientReqScriptHeader=Setting runAtClient on the <netui:html> tag
requires a <netui:scriptHeader> in the HTML <head>.
Tags_TreeHtmlRunAtClient=Setting runAtClient on the <netui:tree> requires a
<netui:scriptHeader> included before the Tree.
-Tags_TreeRunAtClientSC=A runAtClient tree must appear inside ScriptContainer.
+Tags_TreeRunAtClientSC=A runAtClient Tree must appear inside ScriptContainer.
Tags_DivPanelHtmlRunAtClient=A DivPanel requires setting runAtClient on a
ScriptContainer and a <netui:scriptHeader> included in the ScriptContainer
before the DivPanel.
Tags_AttributeMayNotBeSet=The attribute "<b>{0}</b>" may not be set through
the Attribute tag.
Tags_AttributeNameNotSet=The paramater "<b>name</b>" may not be null or the
empty string.
Modified:
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtTreeItemErrors.xml
URL:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtTreeItemErrors.xml?view=diff&r1=154181&r2=154182
==============================================================================
---
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtTreeItemErrors.xml
(original)
+++
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtTreeItemErrors.xml
Thu Feb 17 11:41:20 2005
@@ -2,7 +2,7 @@
<ses:recorderSession
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session">
<ses:sessionName>CtTreeItemErrors</ses:sessionName>
<ses:tester>Daryl</ses:tester>
- <ses:startDate>18 Jan 2005, 06:46:03.296 PM MST</ses:startDate>
+ <ses:startDate>17 Feb 2005, 10:34:28.583 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>401BA83031A94CBDA416B26EB0A88FB5</ses:value>
+ <ses:value>8A8E04F18CE65041C5D692673CD7C2DD</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=401BA83031A94CBDA416B26EB0A88FB5; $Path=/coreWeb</ses:value>
+ <ses:value>$Version=0;
JSESSIONID=8A8E04F18CE65041C5D692673CD7C2DD; $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>-54834ffa:101889e165b:-7db7</ses:value>
+ <ses:value>48167779:102215f45ff:-7d82</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -111,7 +111,7 @@
<tr><th>Error Number</th><th>Tag Type</th><th colspan="4">Error</th></tr>
<tr><th>1</th><th>TreeItem</th><th>Message</th><td>Invalid treeItem; it must
have exactly one of href, action.</td></tr>
<tr><th>2</th><th>TreeItem</th><th>Message</th><td>Action 'badAction' is not a
valid action.</td></tr>
-<tr><th>3</th><th>TreeItem</th><th>Message</th><td>Node's parent must be a
Tree or another TreeItem.</td></tr>
+<tr><th>3</th><th>TreeItem</th><th>Message</th><td>TreeItem's parent must be a
Tree or another TreeItem.</td></tr>
</table></div>
</body>
@@ -122,7 +122,7 @@
</ses:testResults>
</ses:test>
</ses:tests>
- <ses:endDate>18 Jan 2005, 06:46:04.437 PM MST</ses:endDate>
+ <ses:endDate>17 Feb 2005, 10:34:29.284 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/RepeatCheckOptionError.xml
URL:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RepeatCheckOptionError.xml?view=diff&r1=154181&r2=154182
==============================================================================
---
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RepeatCheckOptionError.xml
(original)
+++
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RepeatCheckOptionError.xml
Thu Feb 17 11:41:20 2005
@@ -2,7 +2,7 @@
<ses:recorderSession
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session">
<ses:sessionName>RepeatCheckOptionError</ses:sessionName>
<ses:tester>Daryl</ses:tester>
- <ses:startDate>11 Feb 2005, 06:37:08.423 PM MST</ses:startDate>
+ <ses:startDate>17 Feb 2005, 10:38:36.490 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>D4E953FA0410A5376F1B9E5CC645441E</ses:value>
+ <ses:value>8A8E04F18CE65041C5D692673CD7C2DD</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=D4E953FA0410A5376F1B9E5CC645441E; $Path=/coreWeb</ses:value>
+ <ses:value>$Version=0;
JSESSIONID=8A8E04F18CE65041C5D692673CD7C2DD; $Path=/coreWeb</ses:value>
</ses:header>
<ses:header>
<ses:name>cookie2</ses:name>
@@ -56,7 +56,7 @@
</ses:header>
<ses:header>
<ses:name>testrecorder.playback.testid</ses:name>
- <ses:value>f624cb5:102041cb937:-7457</ses:value>
+ <ses:value>48167779:102215f45ff:-799d</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -97,7 +97,7 @@
<div> <hr /><table border="1" cellspacing="0"
style="color:red;background-color:white">
<tr><th colspan="6">Page Errors</th></tr>
<tr><th>Error Number</th><th>Tag Type</th><th colspan="4">Error</th></tr>
-<tr><th>1</th><th>CheckBoxGroup</th><th>Message</th><td>The CheckBoxGroup
cannot both have CheckBoxOptions and an OptionsDataSource.</td></tr>
+<tr><th>1</th><th>CheckBoxGroup</th><th>Message</th><td>The CheckBoxGroup
cannot both have CheckBoxOptions and an OptionsDataSource, unless the
CheckBoxGroup is repeating.</td></tr>
</table></div>
</body>
</html>]]></ses:responseBody>
@@ -107,7 +107,7 @@
</ses:testResults>
</ses:test>
</ses:tests>
- <ses:endDate>11 Feb 2005, 06:37:10.927 PM MST</ses:endDate>
+ <ses:endDate>17 Feb 2005, 10:38:37.091 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/RepeatRadioOptionError.xml
URL:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RepeatRadioOptionError.xml?view=diff&r1=154181&r2=154182
==============================================================================
---
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RepeatRadioOptionError.xml
(original)
+++
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RepeatRadioOptionError.xml
Thu Feb 17 11:41:20 2005
@@ -2,7 +2,7 @@
<ses:recorderSession
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session">
<ses:sessionName>RepeatRadioOptionError</ses:sessionName>
<ses:tester>Daryl</ses:tester>
- <ses:startDate>11 Feb 2005, 06:37:35.472 PM MST</ses:startDate>
+ <ses:startDate>17 Feb 2005, 10:38:48.117 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>D4E953FA0410A5376F1B9E5CC645441E</ses:value>
+ <ses:value>8A8E04F18CE65041C5D692673CD7C2DD</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=D4E953FA0410A5376F1B9E5CC645441E; $Path=/coreWeb</ses:value>
+ <ses:value>$Version=0;
JSESSIONID=8A8E04F18CE65041C5D692673CD7C2DD; $Path=/coreWeb</ses:value>
</ses:header>
<ses:header>
<ses:name>cookie2</ses:name>
@@ -56,7 +56,7 @@
</ses:header>
<ses:header>
<ses:name>testrecorder.playback.testid</ses:name>
- <ses:value>f624cb5:102041cb937:-743b</ses:value>
+ <ses:value>48167779:102215f45ff:-7980</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -101,7 +101,7 @@
<div> <hr /><table border="1" cellspacing="0"
style="color:red;background-color:white">
<tr><th colspan="6">Page Errors</th></tr>
<tr><th>Error Number</th><th>Tag Type</th><th colspan="4">Error</th></tr>
-<tr><th>1</th><th>RadioButtonGroup</th><th>Message</th><td>The
RadioButtonGroup cannot both have RadioButtonOptions and an
OptionsDataSource.</td></tr>
+<tr><th>1</th><th>RadioButtonGroup</th><th>Message</th><td>The
RadioButtonGroup cannot both have RadioButtonOptions and an OptionsDataSource,
unless the RadioButtonGroup is repeating.</td></tr>
</table></div>
</body>
</html>]]></ses:responseBody>
@@ -111,7 +111,7 @@
</ses:testResults>
</ses:test>
</ses:tests>
- <ses:endDate>11 Feb 2005, 06:37:37.084 PM MST</ses:endDate>
+ <ses:endDate>17 Feb 2005, 10:38:48.808 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/RichTreeEmptyTree.xml
URL:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RichTreeEmptyTree.xml?view=diff&r1=154181&r2=154182
==============================================================================
---
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RichTreeEmptyTree.xml
(original)
+++
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RichTreeEmptyTree.xml
Thu Feb 17 11:41:20 2005
@@ -2,7 +2,7 @@
<ses:recorderSession
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session">
<ses:sessionName>RichTreeEmptyTree</ses:sessionName>
<ses:tester>Daryl</ses:tester>
- <ses:startDate>18 Jan 2005, 06:53:41.671 PM MST</ses:startDate>
+ <ses:startDate>17 Feb 2005, 10:39:34.273 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>401BA83031A94CBDA416B26EB0A88FB5</ses:value>
+ <ses:value>8A8E04F18CE65041C5D692673CD7C2DD</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=401BA83031A94CBDA416B26EB0A88FB5; $Path=/coreWeb</ses:value>
+ <ses:value>$Version=0;
JSESSIONID=8A8E04F18CE65041C5D692673CD7C2DD; $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>-54834ffa:101889e165b:-7966</ses:value>
+ <ses:value>48167779:102215f45ff:-789e</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -97,7 +97,7 @@
<div> <hr /><table border="1" cellspacing="0"
style="color:red;background-color:white">
<tr><th colspan="6">Page Errors</th></tr>
<tr><th>Error Number</th><th>Tag Type</th><th colspan="4">Error</th></tr>
-<tr><th>1</th><th>Tree</th><th>Message</th><td>The variable referenced by
'pageFlow.tree9' was <b>null</b>. No TreeNode was found.</td></tr>
+<tr><th>1</th><th>Tree</th><th>Message</th><td>The variable referenced by
'pageFlow.tree9' was <b>null</b>. No TreeElement was found.</td></tr>
</table></div>
</body>
@@ -108,7 +108,7 @@
</ses:testResults>
</ses:test>
</ses:tests>
- <ses:endDate>18 Jan 2005, 06:53:43.093 PM MST</ses:endDate>
+ <ses:endDate>17 Feb 2005, 10:39:34.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/RichTreeSCError.xml
URL:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RichTreeSCError.xml?view=diff&r1=154181&r2=154182
==============================================================================
---
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RichTreeSCError.xml
(original)
+++
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RichTreeSCError.xml
Thu Feb 17 11:41:20 2005
@@ -2,7 +2,7 @@
<ses:recorderSession
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session">
<ses:sessionName>RichTreeSCError</ses:sessionName>
<ses:tester>Daryl</ses:tester>
- <ses:startDate>15 Feb 2005, 10:29:10.144 AM MST</ses:startDate>
+ <ses:startDate>17 Feb 2005, 10:39:50.336 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>AF016D0EE20DD434525653DAE40C8E48</ses:value>
+ <ses:value>8A8E04F18CE65041C5D692673CD7C2DD</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=AF016D0EE20DD434525653DAE40C8E48; $Path=/coreWeb</ses:value>
+ <ses:value>$Version=0;
JSESSIONID=8A8E04F18CE65041C5D692673CD7C2DD; $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>-3b1fc3ff:102170879e0:-782c</ses:value>
+ <ses:value>48167779:102215f45ff:-781b</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -181,7 +181,7 @@
<tr><th colspan="5">Tag Error</th></tr>
<tr><th>Tag</th><td>Tree</td>
<th>Errors</th><td colspan="2">1</td></tr>
- <tr><th>Tag Error</th><th>Message</th><td colspan="3">A runAtClient tree must
appear inside ScriptContainer.</td></tr>
+ <tr><th>Tag Error</th><th>Message</th><td colspan="3">A runAtClient Tree must
appear inside ScriptContainer.</td></tr>
</table></span>
</td></tr>
@@ -195,7 +195,7 @@
</ses:testResults>
</ses:test>
</ses:tests>
- <ses:endDate>15 Feb 2005, 10:29:11.326 AM MST</ses:endDate>
+ <ses:endDate>17 Feb 2005, 10:39:50.977 AM MST</ses:endDate>
<ses:sessionStatus>fail</ses:sessionStatus>
<ses:testCount>1</ses:testCount>
<ses:passedCount>0</ses:passedCount>