After unpacking ode.war, the ODE.js file needs some fixes to get up and running
-------------------------------------------------------------------------------
Key: ODE-724
URL: https://issues.apache.org/jira/browse/ODE-724
Project: ODE
Issue Type: Bug
Components: Axis2 Integration
Affects Versions: 1.3.3
Environment: Centos 5.4 LInux 2.6.18-164.6.1.el5, Java 1.6.0,
tomcat5-5.5.23, all browsers
Reporter: Rutger de Graaf
Priority: Minor
After initial installation, modifications need to be made to ODE.js according
to diff below:
svn diff
Index: axis2-war/src/main/webapp/js/ODE.js
===================================================================
--- axis2-war/src/main/webapp/js/ODE.js (revision 886132)
+++ axis2-war/src/main/webapp/js/ODE.js (working copy)
@@ -616,7 +616,7 @@
}
function handleNo(){
- org.apache.ode.Widgets..alert('Retiring cancelled!',
YAHOO.widget.SimpleDialog.ICON_INFO);
+ org.apache.ode.Widgets.alert('Retiring cancelled!',
YAHOO.widget.SimpleDialog.ICON_INFO);
}
var msg = 'Do you want to retire the process '+ processName + '?';
org.apache.ode.Widgets.operationConfirm(msg, handleYes, handleNo);
@@ -764,7 +764,7 @@
var callbackIn = {
success: handleSuccessIn,
- failure: handleFailureIn,
+ failure: handleFailureIn
}
var requestIn = YAHOO.util.Connect.asyncRequest('GET',
proDefURL, callbackIn);
@@ -777,7 +777,7 @@
var callback = {
success: handleSuccess,
- failure: handleFailure,
+ failure: handleFailure
}
var request = YAHOO.util.Connect.asyncRequest('GET',
urlRequestURL, callback);
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.