Ignore:
Timestamp:
06/11/20 16:34:50 (4 years ago)
Author:
bart
Message:

Update to version 1.41

File:
1 edited

Legend:

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

    r12 r14  
    1818        </select>
    1919        <br />
    20         <br />
    21         <input type="number" id="teamspersession" name="tentacles" min="2"
    22                 max="10" value="2" /> Number of teams in each session
     20        <input type="number" id="ntournaments" min="1" max="1000000" value="1" />
     21        Number of times to repeat the entire tournament
     22        <br />
     23
     24        <br />
     25        <input type="number" id="teamspersession" min="2" max="10" value="2" />
     26        Number of teams in each session
    2327        <br />
    2428
     
    103107                                <th align="left">Party</th>
    104108                                <th align="left">Parameters</th>
    105                                 <th align="left"><div class="onlySHAOP">Compare Bids Party</div></th>
    106                                 <th align="left"><div class="onlySHAOP">Compare Bids Parameters</div></th>
     109                                <th align="left"><div class="onlySHAOP">Compare Bids
     110                                                Party</div></th>
     111                                <th align="left"><div class="onlySHAOP">Compare Bids
     112                                                Parameters</div></th>
    107113                        </thead>
    108114                        <tbody id="teamList">
     
    127133
    128134<script type="application/javascript">
     135       
    129136       
    130137       
     
    506513        function makeRequest() {
    507514                const npersession = document.getElementById("teamspersession").value;
     515                const ntournaments = document.getElementById("ntournaments").value;
    508516                const reuseTeams  = document.getElementById("reuseteams").checked;
    509517                const protocolcombobox = document.getElementById("protocolselection");
     
    540548               
    541549                return JSON.stringify({"AllPermutationsSettings":{"teams":teamsFull,"profileslists":profilesFull,
    542                         "reuseTeams":reuseTeams,"teamsPerSession":npersession,"sessionsettings":sessionSettings}});
     550                        "reuseTeams":reuseTeams,"teamsPerSession":npersession,"sessionsettings":sessionSettings,
     551                        "numberTournaments":ntournaments}});
    543552        }
    544553       
     
    547556        */
    548557        function init() {
    549                 document.getElementById("partiesserverurl").value =window.location.hostname+":8080/partiesserver-1.4.0";
    550                 document.getElementById("profilesserverurl").value =window.location.hostname+":8080/profilesserver-1.4.0";
     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";
    551560
    552561                selectProtocol();
     
    570579
    571580
     581
    572582</script>
    573583
Note: See TracChangeset for help on using the changeset viewer.