Changes in / [3:1]


Ignore:
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • /pom.xml

    r3 r1  
    182182                                                        </resources>
    183183                                                </configuration>
    184                                         </execution>
    185                                 </executions>
    186                         </plugin>
    187                         <plugin>
    188                                 <groupId>org.apache.maven.plugins</groupId>
    189                                 <artifactId>maven-source-plugin</artifactId>
    190                                 <executions>
    191                                         <execution>
    192                                                 <id>attach-sources</id>
    193                                                 <goals>
    194                                                         <goal>jar</goal>
    195                                                 </goals>
    196184                                        </execution>
    197185                                </executions>
  • /src/main/webapp/newsession.xhtml

    r3 r1  
    3131                onchange="connectDomain()"> </input>
    3232        <br /> Domain:
    33         <select id="domainselection" onchange="selectDomain()">
     33        <select id="domainselection" onclick="selectDomain()">
    3434                <!-- <option>Waiting for profiles server</option> -->
    3535        </select>
     
    8080       
    8181       
    82        
    8382        // FIXME quick and dirty code. No clean MVC
    8483       
    8584       
    8685        <![CDATA[
    87         //"use strict";
     86        "use strict";   
    8887       
    8988        var domainwebsocket = null;
     
    103102        var partyprofiles=[];
    104103
    105         /** from http://fitzgeraldnick.com/2010/08/10/settimeout-patterns.html */
    106    
    107     function async (fn) {
    108         setTimeout(fn, 1000);
    109     }
    110 
    111     function sometimeWhen (test, then) {
    112         async(function () {
    113             if ( test() ) {
    114                 then();
    115             } else {
    116                 async(arguments.callee);
    117             }
    118         });
    119     }
    120 
    121        
    122        
     104       
    123105        /**
    124106        Refresh known domains using given profilesserver URL.
     
    285267        }
    286268
    287         var x=1;
    288269        /**
    289270        start the session as currently set on this page.
     
    311292                        if (this.status == 200) {
    312293                                document.getElementById("startbutton").disabled=true;
     294                                document.getElementById("started").setAttribute("style","");
    313295                                document.getElementById("logref").href="log/"+this.responseText+".json";
    314296                                document.getElementById("plotref").href="plotlog.xhtml?id="+this.responseText;
    315297                               
    316                                 sometimeWhen(function() { x=x+1; return x==3 },
    317                                                 function() { document.getElementById("started").setAttribute("style",""); });
    318 
    319298                        }
    320299                        else
     
    352331        */
    353332        function init() {
    354                 document.getElementById("partiesserverurl").value =window.location.hostname+":8080/partiesserver-1.0.0"
    355                 document.getElementById("profilesserverurl").value =window.location.hostname+":8080/profilesserver-1.0.0"
    356333                connectDomain();
    357334                connectParties();
  • /src/main/webapp/newtournament.xhtml

    r3 r1  
    5151                        onchange="connectDomain()"> </input>
    5252                <br />
    53                 Domain: <select id="domainselection" onchange="selectDomain()">
     53                Domain: <select id="domainselection" onclick="selectDomain()">
    5454                        <!-- <option>Waiting for profiles server</option> -->
    5555                </select>
     
    374374                }
    375375               
    376                 var reuseParties  = document.getElementById("reuseparties").checked;
     376                var reuseParties  = "on"== document.getElementById("reuseparties").value;
    377377                var sessionSettings = {"SAOPSettings":{"participants":[],"deadline":deadline}};
    378378                return JSON.stringify({"AllPermutationsSettings":{"parties":parties,"profiles":profiles,"reuseParties":reuseParties,"partiesPerSession":2,"sessionsettings":sessionSettings}});
     
    383383        */
    384384        function init() {
    385                 document.getElementById("partiesserverurl").value =window.location.hostname+":8080/partiesserver-1.0.0"
    386                 document.getElementById("profilesserverurl").value =window.location.hostname+":8080/profilesserver-1.0.0"
    387 
    388 
    389385                connectDomain();
    390386                connectParties();
Note: See TracChangeset for help on using the changeset viewer.