- Timestamp:
- 10/06/20 13:12:35 (4 years ago)
- Location:
- src/main/webapp
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/webapp/newsession.xhtml
r19 r20 40 40 <br /> Domain/Profile Server: 41 41 <input type="url" name="url" id="profilesserverurl" 42 value="localhost:8080/profilesserver-1.5. 2"42 value="localhost:8080/profilesserver-1.5.3" 43 43 pattern=".*:[0-9]+/profilesserver" size="30" 44 44 onchange="connectDomain()"> </input> … … 54 54 <br /> <b>Participants</b> <br /> Parties Server: <input type="url" 55 55 name="url" id="partiesserverurl" 56 value="localhost:8080/partiesserver-1.5. 2"56 value="localhost:8080/partiesserver-1.5.3" 57 57 pattern=".*:[0-9]+/partiesserver" size="30" 58 58 onchange="connectParties()"> </input> <br /> <br /> <b>Party … … 294 294 refresh table: copy all parties elements in there. 295 295 Typically parties is something like 296 [{"uri":"http:130.161.180.1:8080/partiesserver/run/randomparty-1.5. 2",296 [{"uri":"http:130.161.180.1:8080/partiesserver/run/randomparty-1.5.3", 297 297 "capabilities":{"protocols":["SAOP"]}, 298 298 "description":"places random bids until it can accept an offer with utility >0.6", 299 "id":"randomparty-1.5. 2",299 "id":"randomparty-1.5.3", 300 300 "partyClass":"geniusweb.exampleparties.randomparty.RandomParty"}, 301 301 ...] … … 632 632 function init() { 633 633 selectProtocol(); 634 document.getElementById("partiesserverurl").value =window.location.hostname+":8080/partiesserver-1.5. 2"635 document.getElementById("profilesserverurl").value =window.location.hostname+":8080/profilesserver-1.5. 2"634 document.getElementById("partiesserverurl").value =window.location.hostname+":8080/partiesserver-1.5.3" 635 document.getElementById("profilesserverurl").value =window.location.hostname+":8080/profilesserver-1.5.3" 636 636 connectDomain(); 637 637 connectParties(); -
src/main/webapp/newtournament.xhtml
r19 r20 585 585 */ 586 586 function init() { 587 document.getElementById("partiesserverurl").value =window.location.hostname+":8080/partiesserver-1.5. 2";588 document.getElementById("profilesserverurl").value =window.location.hostname+":8080/profilesserver-1.5. 2";587 document.getElementById("partiesserverurl").value =window.location.hostname+":8080/partiesserver-1.5.3"; 588 document.getElementById("profilesserverurl").value =window.location.hostname+":8080/profilesserver-1.5.3"; 589 589 590 590 selectProtocol(); -
src/main/webapp/plotlog.xhtml
r19 r20 203 203 return 'accept' in lastact ? 'Yes':'No'; 204 204 case "MOPAC": 205 var finalstate=logfile['phase'][ 'partyStates'];205 var finalstate=logfile['phase'][Object.keys(logfile['phase'])[0]]['partyStates']; 206 206 var nagrees=Object.keys(finalstate['agreements']).length; 207 207 var nparties=Object.keys(finalstate['powers']).length;
Note:
See TracChangeset
for help on using the changeset viewer.