Revision: 199
Author:
tobha...@gmail.com
Date: Wed Aug 29 02:58:19 2012
Log: relative URL bug fixed
http://code.google.com/a/apache-extras.org/p/metcat/source/detail?r=199
Modified:
/trunk/metcat-dashboard/src/main/webapp/config.jsp
/trunk/metcat-dashboard/src/main/webapp/searchworkflow.jsp
/trunk/metcat-dashboard/src/main/webapp/workflow.jsp
=======================================
--- /trunk/metcat-dashboard/src/main/webapp/config.jsp Mon Aug 6 18:19:48
2012
+++ /trunk/metcat-dashboard/src/main/webapp/config.jsp Wed Aug 29 02:58:19
2012
@@ -47,7 +47,7 @@
Back</a></div>
<div class="optionPanel">
- <form action="/CheckConnection" method="post">
+ <form action="CheckConnection" method="post">
<table width="80%">
<tbody>
<tr>
=======================================
--- /trunk/metcat-dashboard/src/main/webapp/searchworkflow.jsp Sun Aug 12
23:58:04 2012
+++ /trunk/metcat-dashboard/src/main/webapp/searchworkflow.jsp Wed Aug 29
02:58:19 2012
@@ -36,7 +36,7 @@
document.getElementById("results").innerHTML =
xmlhttp.responseText;
}
}
- xmlhttp.open("Get", "/getWorkflows?" + searchval, true);
+ xmlhttp.open("Get", "getWorkflows?" + searchval, true);
xmlhttp.send();
}
@@ -58,7 +58,7 @@
document.getElementById("results").innerHTML =
xmlhttp.responseText;
}
}
- xmlhttp.open("Get", "/getWorkflows?" + searchval, true);
+ xmlhttp.open("Get", "getWorkflows?" + searchval, true);
xmlhttp.send();
}
=======================================
--- /trunk/metcat-dashboard/src/main/webapp/workflow.jsp Sat Aug 11
22:09:15 2012
+++ /trunk/metcat-dashboard/src/main/webapp/workflow.jsp Wed Aug 29
02:58:19 2012
@@ -39,7 +39,7 @@
$('#results').tabs();
}
}
- xmlhttp.open("Get", "/getWorkflowData?" + searchval, true);
+ xmlhttp.open("Get", "getWorkflowData?" + searchval, true);
xmlhttp.send();
} else {
document.getElementById("results").innerHTML = "<div
align=\"center\"><h2>Invalid Workflow ID ..!</h2></div>";