Changeset 20 for src


Ignore:
Timestamp:
10/06/20 13:12:35 (4 years ago)
Author:
bart
Message:

Fixes an issue with processing maxPower of a vote. Javadoc maven plugin now uses latest version.

Location:
src/main/webapp
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/main/webapp/newsession.xhtml

    r19 r20  
    4040        <br /> Domain/Profile Server:
    4141        <input type="url" name="url" id="profilesserverurl"
    42                 value="localhost:8080/profilesserver-1.5.2"
     42                value="localhost:8080/profilesserver-1.5.3"
    4343                pattern=".*:[0-9]+/profilesserver" size="30"
    4444                onchange="connectDomain()"> </input>
     
    5454                <br /> <b>Participants</b> <br /> Parties Server: <input type="url"
    5555                        name="url" id="partiesserverurl"
    56                         value="localhost:8080/partiesserver-1.5.2"
     56                        value="localhost:8080/partiesserver-1.5.3"
    5757                        pattern=".*:[0-9]+/partiesserver" size="30"
    5858                        onchange="connectParties()"> </input> <br /> <br /> <b>Party
     
    294294         refresh table: copy all parties elements in there.
    295295         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",
    297297                 "capabilities":{"protocols":["SAOP"]},
    298298                 "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",
    300300                 "partyClass":"geniusweb.exampleparties.randomparty.RandomParty"},
    301301                                 ...]
     
    632632        function init() {
    633633                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"
    636636                connectDomain();
    637637                connectParties();
  • src/main/webapp/newtournament.xhtml

    r19 r20  
    585585        */
    586586        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";
    589589
    590590                selectProtocol();
  • src/main/webapp/plotlog.xhtml

    r19 r20  
    203203                                        return 'accept' in lastact ? 'Yes':'No';
    204204                                case "MOPAC":
    205                                         var finalstate=logfile['phase']['partyStates'];
     205                                        var finalstate=logfile['phase'][Object.keys(logfile['phase'])[0]]['partyStates'];
    206206                                        var nagrees=Object.keys(finalstate['agreements']).length;
    207207                                        var nparties=Object.keys(finalstate['powers']).length;
Note: See TracChangeset for help on using the changeset viewer.