Changeset 9 for src/main/webapp/newtournament.xhtml
- Timestamp:
- 01/30/20 16:52:47 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/webapp/newtournament.xhtml
r8 r9 47 47 <div id="box" class="box"> 48 48 <br /> Domain/Profile Server: <input type="url" name="url" 49 id="profilesserverurl" value="localhost:8080/profilesserver-1. 1.0"49 id="profilesserverurl" value="localhost:8080/profilesserver-1.2.0" 50 50 pattern=".*:[0-9]+/profilesserver" size="30" 51 51 onchange="connectDomain()"> </input> <br /> Domain: <select … … 76 76 <div id="box" class="box"> 77 77 <br /> Parties Server: <input type="url" name="url" 78 id="partiesserverurl" value="localhost:8080/partiesserver-1. 1.0"78 id="partiesserverurl" value="localhost:8080/partiesserver-1.2.0" 79 79 pattern=".*:[0-9]+/partiesserver" size="30" 80 80 onchange="connectParties()"> </input> <br /> <br /> … … 106 106 <div id="started" style="visibility: hidden"> 107 107 Your tournament started. Click <a href="" id="logref">here</a> to view 108 the log file. 108 the log file. <br /> 109 <a href="" id="plotref">show results table.</a>. 109 110 </div> 110 111 … … 385 386 document.getElementById("started").setAttribute("style",""); 386 387 document.getElementById("logref").href="log/"+this.responseText+".json"; 388 document.getElementById("plotref").href="utilstable.xhtml?"+this.responseText; 387 389 } else 388 390 alert("request failed:"+this.statusText); … … 421 423 */ 422 424 function init() { 423 document.getElementById("partiesserverurl").value =window.location.hostname+":8080/partiesserver-1. 1.0";424 document.getElementById("profilesserverurl").value =window.location.hostname+":8080/profilesserver-1. 1.0";425 document.getElementById("partiesserverurl").value =window.location.hostname+":8080/partiesserver-1.2.0"; 426 document.getElementById("profilesserverurl").value =window.location.hostname+":8080/profilesserver-1.2.0"; 425 427 426 428
Note:
See TracChangeset
for help on using the changeset viewer.