[MOBY-guts] biomoby commit
Paul Gordon
gordonp at dev.open-bio.org
Mon Aug 17 21:14:00 UTC 2009
gordonp
Mon Aug 17 17:14:00 EDT 2009
Update of /home/repository/moby/moby-live/Java/src/main/ca/ucalgary/services/resources
In directory dev.open-bio.org:/tmp/cvs-serv25673/src/main/ca/ucalgary/services/resources
Modified Files:
floatingframe.js
Log Message:
Reflects change of seahawkAction to new, more generic passthrough label _dataAction in SoapServlet
moby-live/Java/src/main/ca/ucalgary/services/resources floatingframe.js,1.1,1.2
===================================================================
RCS file: /home/repository/moby/moby-live/Java/src/main/ca/ucalgary/services/resources/floatingframe.js,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- /home/repository/moby/moby-live/Java/src/main/ca/ucalgary/services/resources/floatingframe.js 2009/06/09 19:42:55 1.1
+++ /home/repository/moby/moby-live/Java/src/main/ca/ucalgary/services/resources/floatingframe.js 2009/08/17 21:14:00 1.2
@@ -106,7 +106,8 @@
/* Get the servlet message */
window.showHint = function(){
- var url = "?seahawkAction=hint";
+ /* _dataAction is a special parameter whose values comes from ca.ucalgary.services.util.DataRecorder.PASSTHROUGH_ACTION */
+ var url = "?_dataAction=hint";
url = url + "&sid="+Math.random(); /* The random ID is so IE doesn't cache the GET request */
xmlHttp.onreadystatechange=stateChanged;
@@ -117,7 +118,8 @@
showHint();
function pasteEvent(fieldObj){
- var url = "?sid="+Math.random()+"&seahawkAction=pasteEvent&field="+fieldObj.name;
+ /* _dataAction is a special parameter whose values comes from ca.ucalgary.services.util.DataRecorder.PASSTHROUGH_ACTION */
+ var url = "?sid="+Math.random()+"&_dataAction=pasteEvent&field="+fieldObj.name;
actionXmlHttp.open("GET",url,true);
actionXmlHttp.send(null);
More information about the MOBY-guts
mailing list