Changeset 15
- Timestamp:
- 06/22/20 16:08:11 (5 years ago)
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pom.xml
r14 r15 6 6 <artifactId>runserver</artifactId> 7 7 <packaging>war</packaging> 8 <version>1.4. 1</version> <!-- must equal ${geniusweb.version} -->8 <version>1.4.2</version> <!-- must equal ${geniusweb.version} --> 9 9 <name>runserver Maven Webapp</name> 10 10 <url>http://maven.apache.org</url> … … 19 19 <jackson-2-version>2.9.10</jackson-2-version> 20 20 <tomcat.version>8.0.53</tomcat.version> 21 <geniusweb.version>1.4. 1</geniusweb.version>21 <geniusweb.version>1.4.2</geniusweb.version> 22 22 </properties> 23 23 -
src/main/webapp/newsession.xhtml
r14 r15 29 29 <br /> Domain/Profile Server: 30 30 <input type="url" name="url" id="profilesserverurl" 31 value="localhost:8080/profilesserver-1.4. 1"31 value="localhost:8080/profilesserver-1.4.2" 32 32 pattern=".*:[0-9]+/profilesserver" size="30" 33 33 onchange="connectDomain()"> </input> … … 43 43 <br /> <b>Participants</b> <br /> Parties Server: <input type="url" 44 44 name="url" id="partiesserverurl" 45 value="localhost:8080/partiesserver-1.4. 1"45 value="localhost:8080/partiesserver-1.4.2" 46 46 pattern=".*:[0-9]+/partiesserver" size="30" 47 47 onchange="connectParties()"> </input> <br /> <br /> <b>Party … … 273 273 refresh table: copy all parties elements in there. 274 274 Typically parties is something like 275 [{"uri":"http:130.161.180.1:8080/partiesserver/run/randomparty-1.4. 1",275 [{"uri":"http:130.161.180.1:8080/partiesserver/run/randomparty-1.4.2", 276 276 "capabilities":{"protocols":["SAOP"]}, 277 277 "description":"places random bids until it can accept an offer with utility >0.6", 278 "id":"randomparty-1.4. 1",278 "id":"randomparty-1.4.2", 279 279 "partyClass":"geniusweb.exampleparties.randomparty.RandomParty"}, 280 280 ...] … … 571 571 function init() { 572 572 selectProtocol(); 573 document.getElementById("partiesserverurl").value =window.location.hostname+":8080/partiesserver-1.4. 1"574 document.getElementById("profilesserverurl").value =window.location.hostname+":8080/profilesserver-1.4. 1"573 document.getElementById("partiesserverurl").value =window.location.hostname+":8080/partiesserver-1.4.2" 574 document.getElementById("profilesserverurl").value =window.location.hostname+":8080/profilesserver-1.4.2" 575 575 connectDomain(); 576 576 connectParties(); -
src/main/webapp/newtournament.xhtml
r14 r15 556 556 */ 557 557 function init() { 558 document.getElementById("partiesserverurl").value =window.location.hostname+":8080/partiesserver-1.4. 1";559 document.getElementById("profilesserverurl").value =window.location.hostname+":8080/profilesserver-1.4. 1";558 document.getElementById("partiesserverurl").value =window.location.hostname+":8080/partiesserver-1.4.2"; 559 document.getElementById("profilesserverurl").value =window.location.hostname+":8080/profilesserver-1.4.2"; 560 560 561 561 selectProtocol();
Note:
See TracChangeset
for help on using the changeset viewer.