Changeset 11
- Timestamp:
- 03/02/20 10:29:53 (5 years ago)
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pom.xml
r10 r11 6 6 <artifactId>runserver</artifactId> 7 7 <packaging>war</packaging> 8 <version>1.3. 0</version>8 <version>1.3.1</version> 9 9 <name>runserver Maven Webapp</name> 10 10 <url>http://maven.apache.org</url> … … 44 44 <pluginRepository> 45 45 <id>jcenter</id> 46 <url>http ://jcenter.bintray.com</url>46 <url>https://jcenter.bintray.com</url> 47 47 </pluginRepository> 48 48 </pluginRepositories> … … 53 53 <groupId>geniusweb</groupId> 54 54 <artifactId>profile</artifactId> 55 <version>1. 2.0</version>55 <version>1.3.1</version> 56 56 </dependency> 57 57 … … 59 59 <groupId>geniusweb</groupId> 60 60 <artifactId>party</artifactId> 61 <version>1. 2.0</version>61 <version>1.3.1</version> 62 62 </dependency> 63 63 … … 65 65 <groupId>geniusweb</groupId> 66 66 <artifactId>references</artifactId> 67 <version>1. 2.0</version>67 <version>1.3.1</version> 68 68 </dependency> 69 69 … … 71 71 <groupId>geniusweb</groupId> 72 72 <artifactId>protocol</artifactId> 73 <version>1. 2.0</version>73 <version>1.3.1</version> 74 74 </dependency> 75 75 -
src/main/webapp/newsession.xhtml
r10 r11 29 29 <br /> Domain/Profile Server: 30 30 <input type="url" name="url" id="profilesserverurl" 31 value="localhost:8080/profilesserver-1.3. 0"31 value="localhost:8080/profilesserver-1.3.1" 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.3. 0"45 value="localhost:8080/partiesserver-1.3.1" 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.3. 0",275 [{"uri":"http:130.161.180.1:8080/partiesserver/run/randomparty-1.3.1", 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.3. 0",278 "id":"randomparty-1.3.1", 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.3. 0"574 document.getElementById("profilesserverurl").value =window.location.hostname+":8080/profilesserver-1.3. 0"573 document.getElementById("partiesserverurl").value =window.location.hostname+":8080/partiesserver-1.3.1" 574 document.getElementById("profilesserverurl").value =window.location.hostname+":8080/profilesserver-1.3.1" 575 575 connectDomain(); 576 576 connectParties(); -
src/main/webapp/newtournament.xhtml
r10 r11 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.3. 0"49 id="profilesserverurl" value="localhost:8080/profilesserver-1.3.1" 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.3. 0"78 id="partiesserverurl" value="localhost:8080/partiesserver-1.3.1" 79 79 pattern=".*:[0-9]+/partiesserver" size="30" 80 80 onchange="connectParties()"> </input> <br /> <br /> … … 423 423 */ 424 424 function init() { 425 document.getElementById("partiesserverurl").value =window.location.hostname+":8080/partiesserver-1.3. 0";426 document.getElementById("profilesserverurl").value =window.location.hostname+":8080/profilesserver-1.3. 0";425 document.getElementById("partiesserverurl").value =window.location.hostname+":8080/partiesserver-1.3.1"; 426 document.getElementById("profilesserverurl").value =window.location.hostname+":8080/profilesserver-1.3.1"; 427 427 428 428
Note:
See TracChangeset
for help on using the changeset viewer.