Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAngel Avila2014-06-19 01:13:44 +0000
committerRoberto E. Escobar2014-08-28 23:58:40 +0000
commit455d8d03785e5f3ac9404ab5b6ff3af6b8c7cb46 (patch)
tree6ea6a2caa692a5cf748da3fdafdacaf828a371a9 /plugins/org.eclipse.osee.disposition.rest
parentd4a7765ec05b4f124de987004505b5510b50d36a (diff)
downloadorg.eclipse.osee-455d8d03785e5f3ac9404ab5b6ff3af6b8c7cb46.tar.gz
org.eclipse.osee-455d8d03785e5f3ac9404ab5b6ff3af6b8c7cb46.tar.xz
org.eclipse.osee-455d8d03785e5f3ac9404ab5b6ff3af6b8c7cb46.zip
bug: Make Dispo paths relative
Diffstat (limited to 'plugins/org.eclipse.osee.disposition.rest')
-rw-r--r--plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/util/html/dispo.html2
-rw-r--r--plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/util/html/dispoAdmin.html4
2 files changed, 2 insertions, 4 deletions
diff --git a/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/util/html/dispo.html b/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/util/html/dispo.html
index 768920d0eb2..a310a702cfd 100644
--- a/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/util/html/dispo.html
+++ b/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/util/html/dispo.html
@@ -63,7 +63,7 @@
var userName = "";
var programSelect = document.getElementById("programSelect");
var setSelect = document.getElementById("setSelect");
- var path = "http://<?serverPort?>/dispo/program/";
+ var path = "program/";
var cellsToValueSubTable = ["locationRefs", "resolutionType", "resolution", "developerNotes", "customerNotes"];
var cellsToValueMainTable = ["itemName", "status", "totalPoints", "failures", "discrepancyLocations", "POC", "version"];
var dispoTableBody = document.getElementById("dispoTableBody");
diff --git a/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/util/html/dispoAdmin.html b/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/util/html/dispoAdmin.html
index 57f5d894ca9..923fad48ddd 100644
--- a/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/util/html/dispoAdmin.html
+++ b/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/util/html/dispoAdmin.html
@@ -1,7 +1,6 @@
<?include path="4000000000000000 pageDeclaration.html" ?>
<head>
- <base href="http://<?serverPort?>/dispo/init" target="_self"></base>
<style>
<?include path="4000000000000029 dispoAdminStyles.css"?>
</style>
@@ -108,8 +107,7 @@
var createSetDiv = document.getElementById("setCreateDiv");
var waitBlanket = document.getElementById("waitBlanket");
var lastFocusedSet = "";
- var path = "http://<?serverPort?>/dispo/program/";
- var path2 = "http://<?serverPort?>/dispo/";
+ var path = "program/";
</script>
<script>
function setFocused(element) {

Back to the top