[virtualcommons-svn] SF.net SVN: virtualcommons:[53] foraging/trunk
Status: Beta
Brought to you by:
alllee
From: <al...@us...> - 2008-09-24 22:43:07
|
Revision: 53 http://virtualcommons.svn.sourceforge.net/virtualcommons/?rev=53&view=rev Author: alllee Date: 2008-09-24 22:42:55 +0000 (Wed, 24 Sep 2008) Log Message: ----------- adding deployment script for windows (will need to be customized by the user for appropriate installed locations of Java and Ant, but this could be handled by another script...) Modified Paths: -------------- foraging/trunk/build.properties.example foraging/trunk/build.xml foraging/trunk/ivy.xml foraging/trunk/ivysettings.xml foraging/trunk/pom.xml foraging/trunk/src/main/resources/configuration/asu-experiments/2d-abstract/round1.xml foraging/trunk/src/main/resources/configuration/asu-experiments/2d-abstract/round2.xml foraging/trunk/src/main/resources/configuration/asu-experiments/2d-abstract/round3.xml foraging/trunk/src/main/resources/configuration/asu-experiments/2d-abstract/round4.xml foraging/trunk/src/main/resources/configuration/asu-experiments/2d-abstract/server.xml foraging/trunk/src/main/resources/configuration/asu-experiments/2d-forestry/round1.xml foraging/trunk/src/main/resources/configuration/asu-experiments/2d-forestry/round2.xml foraging/trunk/src/main/resources/configuration/asu-experiments/2d-forestry/round3.xml foraging/trunk/src/main/resources/configuration/asu-experiments/2d-forestry/round4.xml foraging/trunk/src/main/resources/configuration/asu-experiments/2d-forestry/server.xml foraging/trunk/src/main/resources/configuration/asu-experiments/abstract-2d/round1.xml foraging/trunk/src/main/resources/configuration/asu-experiments/abstract-2d/round2.xml foraging/trunk/src/main/resources/configuration/asu-experiments/abstract-2d/round3.xml foraging/trunk/src/main/resources/configuration/asu-experiments/abstract-2d/round4.xml foraging/trunk/src/main/resources/configuration/asu-experiments/abstract-2d/server.xml foraging/trunk/src/main/resources/configuration/asu-experiments/forestry-2d/round1.xml foraging/trunk/src/main/resources/configuration/asu-experiments/forestry-2d/round2.xml foraging/trunk/src/main/resources/configuration/asu-experiments/forestry-2d/round3.xml foraging/trunk/src/main/resources/configuration/asu-experiments/forestry-2d/round4.xml foraging/trunk/src/main/resources/configuration/asu-experiments/forestry-2d/server.xml foraging/trunk/src/main/resources/configuration/indiana-experiments/chat-sanction-open-access/round0.xml foraging/trunk/src/main/resources/configuration/indiana-experiments/chat-sanction-open-access/round1.xml foraging/trunk/src/main/resources/configuration/indiana-experiments/chat-sanction-open-access/round2.xml foraging/trunk/src/main/resources/configuration/indiana-experiments/chat-sanction-open-access/round3.xml foraging/trunk/src/main/resources/configuration/indiana-experiments/chat-sanction-open-access/round4.xml foraging/trunk/src/main/resources/configuration/indiana-experiments/chat-sanction-open-access/round5.xml foraging/trunk/src/main/resources/configuration/indiana-experiments/chat-sanction-open-access/round6.xml foraging/trunk/src/main/resources/configuration/indiana-experiments/round1.xml foraging/trunk/src/main/resources/configuration/indiana-experiments/round2.xml foraging/trunk/src/main/resources/configuration/indiana-experiments/round3.xml foraging/trunk/src/main/resources/configuration/indiana-experiments/round4.xml foraging/trunk/src/main/resources/configuration/indiana-experiments/round5.xml foraging/trunk/src/main/resources/configuration/indiana-experiments/round6.xml foraging/trunk/src/main/resources/configuration/round1.xml foraging/trunk/src/main/resources/configuration/round2.xml foraging/trunk/src/main/resources/configuration/round3.xml foraging/trunk/src/main/resources/configuration/round4.xml foraging/trunk/src/main/resources/configuration/server.xml Added Paths: ----------- foraging/trunk/deploy.bat foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/ foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/round0.xml foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/round1.xml foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/round2.xml foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/round3.xml foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/round4.xml foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/round5.xml foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/round6.xml foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/server.xml Modified: foraging/trunk/build.properties.example =================================================================== --- foraging/trunk/build.properties.example 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/build.properties.example 2008-09-24 22:42:55 UTC (rev 53) @@ -2,12 +2,16 @@ # the build.xml file. # server name, set this to the IP address or domain name that will be running -# the experiment server. +# the experiment server +# FIXME: currently, this MUST be the same as the IP address/domain name of the +# webserver you are deploying the software on. server.address=libai.la.asu.edu # the absolute path of where you would like to deploy the experiment JNLP and # jar files # (should be accessible / mounted by the webserver) +# NOTE: for windows, use double backslashes as a path separator +# web.dir=C:\\WebServer\\foraging web.dir=/var/www/html/foraging/ # The URL that maps to the path above. If you don't mind using "foraging" as Modified: foraging/trunk/build.xml =================================================================== --- foraging/trunk/build.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/build.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -43,7 +43,7 @@ </target> <target name='resolve' depends='init-ivy' description='--> retrieve dependencies with ivy'> - <ivy:retrieve pattern='${lib.dir}/[conf]/[artifact].[ext]'/> + <ivy:retrieve pattern='${lib.dir}/[conf]/[artifact].[ext]'/> </target> <!-- Load all properties from the build.properties file, @@ -215,6 +215,7 @@ <delete dir="${build.dir}"/> <delete dir="${test.build.dir}"/> <delete dir='${dist.dir}'/> + <delete dir='${lib.dir}'/> <delete file='server.jar'/> </target> Added: foraging/trunk/deploy.bat =================================================================== --- foraging/trunk/deploy.bat (rev 0) +++ foraging/trunk/deploy.bat 2008-09-24 22:42:55 UTC (rev 53) @@ -0,0 +1,4 @@ +set ANT_HOME=C:\tools\ant +set JAVA_HOME=C:\Program Files\Java\jdk1.6.0_10 +set PATH=%ANT_HOME%\bin;%JAVA_HOME\bin;%PATH% +ant deploy Modified: foraging/trunk/ivy.xml =================================================================== --- foraging/trunk/ivy.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/ivy.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -3,14 +3,11 @@ vim:sts=2:sw=2: --> <ivy-module version="2.0"> - <info organisation="edu.asu.commons" module="foraging"/> - <dependencies> - <dependency org='junit' name='junit' rev='4.4'/> - <dependency org="edu.asu.commons" name="csidex" rev="latest.integration"/> - <dependency org='net.java.dev.jogl' name='jogl' rev='1.1.1'/> - <dependency org='net.java.dev.jogl' name='gluegen-rt' rev='1.1.1'/> - </dependencies> + <info organisation="edu.asu.commons" module="foraging"/> + <dependencies> + <dependency org="junit" name="junit" rev="4.4"/> + <dependency org="edu.asu.commons" name="csidex" rev="latest.integration"/> + <dependency org="net.java.dev.jogl" name="jogl" rev="1.1.1"/> + <dependency org="net.java.dev.jogl" name="gluegen-rt" rev="1.1.1"/> + </dependencies> </ivy-module> - - - Modified: foraging/trunk/ivysettings.xml =================================================================== --- foraging/trunk/ivysettings.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/ivysettings.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -6,12 +6,9 @@ <settings defaultResolver="tdar-archiva" checkUpToDate="false"/> <resolvers> <ibiblio name='tdar-archiva' m2compatible='true' root='http://dev.tdar.org/archiva/repository/internal'/> - <filesystem name="internal"> + <filesystem name="local"> <ivy pattern="${repository.dir}/[module]/ivy-[revision].xml"/> <artifact pattern="${repository.dir}/[module]/[artifact]-[revision].[ext]"/> </filesystem> </resolvers> - <modules> - <module organisation='edu.asu.commons' name='csidex' resolver='internal'/> - </modules> </ivysettings> Modified: foraging/trunk/pom.xml =================================================================== --- foraging/trunk/pom.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/pom.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -34,7 +34,7 @@ <dependency> <groupId>edu.asu.commons</groupId> <artifactId>csidex</artifactId> - <version>0.1.1</version> + <version>0.2</version> </dependency> <dependency> <groupId>net.java.dev.jogl</groupId> Modified: foraging/trunk/src/main/resources/configuration/asu-experiments/2d-abstract/round1.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/asu-experiments/2d-abstract/round1.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/asu-experiments/2d-abstract/round1.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="display-group-tokens">true</entry> <entry key="clients-per-group">4</entry> <entry key="duration">240</entry> Modified: foraging/trunk/src/main/resources/configuration/asu-experiments/2d-abstract/round2.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/asu-experiments/2d-abstract/round2.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/asu-experiments/2d-abstract/round2.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="display-group-tokens">true</entry> <entry key="clients-per-group">4</entry> <entry key="duration">240</entry> Modified: foraging/trunk/src/main/resources/configuration/asu-experiments/2d-abstract/round3.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/asu-experiments/2d-abstract/round3.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/asu-experiments/2d-abstract/round3.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="practice-round">true</entry> <entry key='resource-width'>8</entry> <entry key='resource-depth'>8</entry> Modified: foraging/trunk/src/main/resources/configuration/asu-experiments/2d-abstract/round4.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/asu-experiments/2d-abstract/round4.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/asu-experiments/2d-abstract/round4.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="practice-round">false</entry> <entry key='resource-width'>8</entry> <entry key='resource-depth'>8</entry> Modified: foraging/trunk/src/main/resources/configuration/asu-experiments/2d-abstract/server.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/asu-experiments/2d-abstract/server.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/asu-experiments/2d-abstract/server.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="hostname">@SERVER_ADDRESS@</entry> <entry key="port">@PORT_NUMBER@</entry> <entry key="round0">round0.xml</entry> Modified: foraging/trunk/src/main/resources/configuration/asu-experiments/2d-forestry/round1.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/asu-experiments/2d-forestry/round1.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/asu-experiments/2d-forestry/round1.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="display-group-tokens">true</entry> <entry key="clients-per-group">4</entry> <entry key="duration">240</entry> Modified: foraging/trunk/src/main/resources/configuration/asu-experiments/2d-forestry/round2.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/asu-experiments/2d-forestry/round2.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/asu-experiments/2d-forestry/round2.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="display-group-tokens">true</entry> <entry key="clients-per-group">4</entry> <entry key="duration">240</entry> Modified: foraging/trunk/src/main/resources/configuration/asu-experiments/2d-forestry/round3.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/asu-experiments/2d-forestry/round3.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/asu-experiments/2d-forestry/round3.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="practice-round">true</entry> <entry key='resource-width'>8</entry> <entry key='resource-depth'>8</entry> Modified: foraging/trunk/src/main/resources/configuration/asu-experiments/2d-forestry/round4.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/asu-experiments/2d-forestry/round4.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/asu-experiments/2d-forestry/round4.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="practice-round">false</entry> <entry key='resource-width'>8</entry> <entry key='resource-depth'>8</entry> Modified: foraging/trunk/src/main/resources/configuration/asu-experiments/2d-forestry/server.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/asu-experiments/2d-forestry/server.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/asu-experiments/2d-forestry/server.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="hostname">@SERVER_ADDRESS@</entry> <entry key="port">@PORT_NUMBER@</entry> <entry key="round0">round0.xml</entry> Modified: foraging/trunk/src/main/resources/configuration/asu-experiments/abstract-2d/round1.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/asu-experiments/abstract-2d/round1.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/asu-experiments/abstract-2d/round1.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="practice-round">false</entry> <entry key='resource-width'>8</entry> <entry key='resource-depth'>8</entry> Modified: foraging/trunk/src/main/resources/configuration/asu-experiments/abstract-2d/round2.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/asu-experiments/abstract-2d/round2.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/asu-experiments/abstract-2d/round2.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="resource-width">14</entry> <entry key="resource-depth">14</entry> Modified: foraging/trunk/src/main/resources/configuration/asu-experiments/abstract-2d/round3.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/asu-experiments/abstract-2d/round3.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/asu-experiments/abstract-2d/round3.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="display-group-tokens">true</entry> <entry key="clients-per-group">4</entry> <entry key="duration">240</entry> Modified: foraging/trunk/src/main/resources/configuration/asu-experiments/abstract-2d/round4.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/asu-experiments/abstract-2d/round4.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/asu-experiments/abstract-2d/round4.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="display-group-tokens">true</entry> <entry key="clients-per-group">4</entry> <entry key="duration">240</entry> Modified: foraging/trunk/src/main/resources/configuration/asu-experiments/abstract-2d/server.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/asu-experiments/abstract-2d/server.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/asu-experiments/abstract-2d/server.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="hostname">@SERVER_ADDRESS@</entry> <entry key="port">@PORT_NUMBER@</entry> <entry key="round0">round0.xml</entry> Modified: foraging/trunk/src/main/resources/configuration/asu-experiments/forestry-2d/round1.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/asu-experiments/forestry-2d/round1.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/asu-experiments/forestry-2d/round1.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="practice-round">false</entry> <entry key='resource-width'>8</entry> <entry key='resource-depth'>8</entry> Modified: foraging/trunk/src/main/resources/configuration/asu-experiments/forestry-2d/round2.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/asu-experiments/forestry-2d/round2.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/asu-experiments/forestry-2d/round2.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="resource-width">14</entry> <entry key="resource-depth">14</entry> Modified: foraging/trunk/src/main/resources/configuration/asu-experiments/forestry-2d/round3.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/asu-experiments/forestry-2d/round3.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/asu-experiments/forestry-2d/round3.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="display-group-tokens">true</entry> <entry key="clients-per-group">4</entry> <entry key="duration">240</entry> Modified: foraging/trunk/src/main/resources/configuration/asu-experiments/forestry-2d/round4.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/asu-experiments/forestry-2d/round4.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/asu-experiments/forestry-2d/round4.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="display-group-tokens">true</entry> <entry key="clients-per-group">4</entry> <entry key="duration">240</entry> Modified: foraging/trunk/src/main/resources/configuration/asu-experiments/forestry-2d/server.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/asu-experiments/forestry-2d/server.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/asu-experiments/forestry-2d/server.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="hostname">@SERVER_ADDRESS@</entry> <entry key="port">@PORT_NUMBER@</entry> <entry key="round0">round0.xml</entry> Modified: foraging/trunk/src/main/resources/configuration/indiana-experiments/chat-sanction-open-access/round0.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/indiana-experiments/chat-sanction-open-access/round0.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/indiana-experiments/chat-sanction-open-access/round0.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="resource-width">13</entry> <entry key="resource-depth">13</entry> <entry key="practice-round">true</entry> Modified: foraging/trunk/src/main/resources/configuration/indiana-experiments/chat-sanction-open-access/round1.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/indiana-experiments/chat-sanction-open-access/round1.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/indiana-experiments/chat-sanction-open-access/round1.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="display-group-tokens">true</entry> <entry key="clients-per-group">5</entry> <entry key="resource-depth">29</entry> Modified: foraging/trunk/src/main/resources/configuration/indiana-experiments/chat-sanction-open-access/round2.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/indiana-experiments/chat-sanction-open-access/round2.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/indiana-experiments/chat-sanction-open-access/round2.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="display-group-tokens">true</entry> <entry key="clients-per-group">5</entry> <entry key="resource-depth">29</entry> Modified: foraging/trunk/src/main/resources/configuration/indiana-experiments/chat-sanction-open-access/round3.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/indiana-experiments/chat-sanction-open-access/round3.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/indiana-experiments/chat-sanction-open-access/round3.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="display-group-tokens">true</entry> <entry key="clients-per-group">5</entry> <entry key="resource-depth">29</entry> Modified: foraging/trunk/src/main/resources/configuration/indiana-experiments/chat-sanction-open-access/round4.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/indiana-experiments/chat-sanction-open-access/round4.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/indiana-experiments/chat-sanction-open-access/round4.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="display-group-tokens">true</entry> <entry key="clients-per-group">5</entry> <entry key="duration">240</entry> Modified: foraging/trunk/src/main/resources/configuration/indiana-experiments/chat-sanction-open-access/round5.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/indiana-experiments/chat-sanction-open-access/round5.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/indiana-experiments/chat-sanction-open-access/round5.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="display-group-tokens">true</entry> <entry key="clients-per-group">5</entry> <entry key="duration">240</entry> Modified: foraging/trunk/src/main/resources/configuration/indiana-experiments/chat-sanction-open-access/round6.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/indiana-experiments/chat-sanction-open-access/round6.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/indiana-experiments/chat-sanction-open-access/round6.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="display-group-tokens">true</entry> <entry key="clients-per-group">5</entry> <entry key="duration">240</entry> Added: foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/round0.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/round0.xml (rev 0) +++ foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/round0.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -0,0 +1,122 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> +<properties> +<comment>Foraging XML-ized experiment round configuration</comment> +<entry key="resource-width">13</entry> +<entry key="resource-depth">13</entry> +<entry key="practice-round">true</entry> +<entry key="private-property">true</entry> +<entry key="duration">240</entry> + +<entry key='regrowth-rate'>.01</entry> +<entry key='initial-distribution'>.25</entry> +<entry key='always-explicit'>true</entry> + +<entry key="quiz">true</entry> +<entry key="q1">C</entry> +<entry key="q2">B</entry> + +<entry key="instructions"> +<![CDATA[ +<h3>General Instructions</h3> +<p> +You appear on the screen as a yellow dot <img src="@CODEBASE_URL@/images/gem-self.gif">, +and your other group members appear as blue dots <img src="@CODEBASE_URL@/images/gem-other.gif">. +You move by pressing the four arrow keys to the right of your keyboard. You +can move either up, down, left, or right. You have to press a key for every +move of your yellow dot. In this experiment you can collect green diamond +shaped tokens +<img src="@CODEBASE_URL@/images/gem-token.gif"> and you will +earn two cents for each collected token. To collect a token, simply move your +yellow dot over a green token and press the <b>space bar</b>. If you move +over a token without pressing the <b>space bar</> you will NOT collect that +token. +</p> + +<p> +The tokens that you collect have the potential to regenerate. After you have +collected a green token, a new token can once again appear on that empty cell. +However, the rate at which new tokens will appear depends on the number of +adjacent cells that still have tokens. The more tokens in the 8 cells around +an empty cel, the faster a new token will appear on that empty cell. Tokens +generate new tokens. Thus the middle cell in Image 1 denoted with X will be +regenerated at a faster rate than the middle cell in Image 2. When all +neighboring cells are empty, there is no renewal. + +<table width="100%"> +<tr> +<td align="center"><b>Image 1</b></td> +<td align="center"><b>Image 2</b></td> +</tr> +<tr> +<td align="center"> +<img src="@CODEBASE_URL@/images/8neighbors.jpg" alt="image 1"> +</td> +<td align="center"> +<img src="@CODEBASE_URL@/images/5neighbors.jpg" alt="image 2"> +</td> +</tr> +</table> +<hr> +<h3>Practice Round Instructions</h3> +<hr> +<p> +You will now have four minutes to practice with the experimental environment. +The decisions you make in this round will NOT influence your earnings. At the +At the beginning of the practice round half of the cells are occupied +with green tokens. The environment is a 13 x 13 grid of cells. +</p> +<p> +When you push the <b>R</b> key you will reset the distribution of +the tokens to randomly occupying half of the cells with green tokens. +</p> + +<p><center><b>Please do not communicate with any other participant.</b></center></p> +<p>If you have any questions please raise your hand. <b>Do you have any +questions so far?</b></p> +]]> +</entry> + +<entry key="quiz-instructions"> +<![CDATA[ +<p> +Before we begin the practice round you need to answer the following questions +correctly. You can only continue when you have answered all questions +correctly. If an error is made you will need to answer the questions again. +</p> +<br> +<form> +Which of the statements is incorrect? <br> +<input type="radio" name="q1" value="A">Your decisions of where to collect tokens affect the regeneration of tokens.<br> +<input type="radio" name="q1" value="B">When you have collected all tokens on +the screen, no new tokens will appear.<br> +<input type="radio" name="q1" value="C">Tokens grow from the middle of the +screen.<br> +<input type="radio" name="q1" value="D">In order to collect a token you need +to press the space bar while your avatar is on a cell with a token.<br> +<br><br> + +Which sequence of situations is not possible? <br> +<img src="@CODEBASE_URL@/images/question2.jpg"><br> +<input type="radio" name="q2" value="A">A<br> +<input type="radio" name="q2" value="B">B<br> +<input type="radio" name="q2" value="C">C<br> +<br> +<input type="submit" name="submit" value="Submit"> +</form> +]]> +</entry> +<entry key="welcome-instructions"> +<![CDATA[ +<h3>Welcome</h3> +<p> +Welcome. You have already earned 5 dollars for showing up at this experiment. +You can earn more, up to a maximum of 40 dollars, by participating in this +experiment, which will take about an hour. The amount of money you earn +depends on your decisions as well as the decisions of your group members +during the four rounds of the experiment. +</p> +]]> +</entry> + +</properties> Added: foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/round1.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/round1.xml (rev 0) +++ foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/round1.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -0,0 +1,48 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> +<properties> +<comment>Foraging XML-ized experiment round configuration</comment> +<entry key="display-group-tokens">true</entry> +<entry key="clients-per-group">5</entry> +<entry key="duration">240</entry> +<entry key="resource-depth">29</entry> +<entry key="resource-width">29</entry> + +<entry key='always-explicit'>true</entry> +<entry key='max-cell-occupancy'>1</entry> + +<entry key="initial-distribution">.25</entry> +<entry key="regrowth-rate">0.01</entry> + + +<entry key="instructions"> +<![CDATA[ +<h3>Round 1 Instructions</h3> +<hr> +<p> +This is the first round of the experiment. The length of the round is 4 +minutes. Like in the practice round you can collect green tokens. This time +you earn <b>two cents</b> for each token collected. This time you +<b>cannot</b> reset the distribution of green tokens. +</p> +<p> +In this round the renewable resource will become five times bigger. You +will share this larger environment with four other players in this room. +Each of you has been randomly assigned to one of several equal-sized +groups. Each of the groups is collecting tokens from an identical, but +separate resource. +</p> +<p> +Each of you has been assigned a number from 1 to 5. The other four players +will appear on the screen as blue dots +<img src="@CODEBASE_URL@/images/gem-other.gif"> with a white +number embedded in the dot. On the top right corner of the screen you can see +how many tokens each player has collected. +</p> +<p> +If you have any questions please raise your hand. <b>Do you have any +questions so far?</b> +</p> +]]> +</entry> +</properties> Added: foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/round2.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/round2.xml (rev 0) +++ foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/round2.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> +<properties> +<comment>Foraging XML-ized experiment round configuration</comment> +<entry key="display-group-tokens">true</entry> +<entry key="clients-per-group">5</entry> +<entry key="duration">240</entry> +<entry key="resource-depth">29</entry> +<entry key="resource-width">29</entry> + +<entry key='always-explicit'>true</entry> +<entry key='max-cell-occupancy'>1</entry> + +<entry key="initial-distribution">.25</entry> +<entry key="regrowth-rate">0.01</entry> + +<entry key="instructions"> +<![CDATA[ +<h3>Round 2 Instructions</h3> +<hr> +<p> +Round 2 is the same as round 1. +</p> +<p> +If you have any questions please raise your hand. <b>Do you have any +questions so far?</b> +</p> +]]> +</entry> +</properties> Added: foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/round3.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/round3.xml (rev 0) +++ foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/round3.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> +<properties> +<comment>Foraging XML-ized experiment round configuration</comment> +<entry key="display-group-tokens">true</entry> +<entry key="clients-per-group">5</entry> +<entry key="duration">240</entry> +<entry key="resource-depth">29</entry> +<entry key="resource-width">29</entry> + +<entry key='always-explicit'>true</entry> +<entry key='max-cell-occupancy'>1</entry> + +<!-- resource regrowth parameters --> +<entry key="initial-distribution">.25</entry> +<entry key="regrowth-rate">0.01</entry> + +<!-- +<entry key="patchy">true</entry> +<entry key="top-initial-distribution">0.50</entry> +<entry key="top-rate">0.02</entry> +<entry key="bottom-initial-distribution">0.25</entry> +<entry key="bottom-rate">0.01</entry> +--> + +<entry key="instructions"> +<![CDATA[ +<h3>Round 3 Instructions</h3> +<hr> +<p> +Round 3 is the same as round 2. +</p> +<p> +If you have any questions please raise your hand. <b>Do you have any +questions so far?</b> +</p> +]]> +</entry> +</properties> Added: foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/round4.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/round4.xml (rev 0) +++ foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/round4.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -0,0 +1,68 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> +<properties> +<comment>Foraging XML-ized experiment round configuration</comment> +<entry key="display-group-tokens">true</entry> +<entry key="clients-per-group">5</entry> +<entry key="resource-depth">29</entry> +<entry key="resource-width">29</entry> +<entry key="duration">240</entry> + +<entry key='always-explicit'>true</entry> +<entry key='max-cell-occupancy'>1</entry> + +<!-- before this round begins, we have a chat session --> +<entry key="chat-enabled">true</entry> +<entry key="chat-duration">240</entry> + +<entry key="initial-distribution">.25</entry> +<entry key="regrowth-rate">0.01</entry> + +<entry key="instructions"> +<![CDATA[ +<h3>Round 4 Instructions</h3> +<hr> +<p> +Round 4 is the same as the previous two rounds with one exception. +</p> +<p> +Before the next round starts you can anonymously communicate by text messages +for four minutes with the other participants in your group. You can use this +opportunity to discuss the experiment and coordinate your actions to improve +your earnings. You may not promise them side-payments after the experiment is +completed or make any threats. You are also not allowed to reveal your real +identity. We are monitoring the chat traffic while you chat. +</p> +<p> +The length of this round is four minutes. +</p> +<p> +If you have any questions please raise your hand. <b>Do you have any +questions so far?</b> +</p> +]]> +</entry> + +<entry key="chat-instructions"> +<![CDATA[ +<p> +You can now chat with the other participants in your group for 4 minutes +total. During the chat round, you may communicate about any aspect of the +experiment that you would like to discuss with other participants with whom +you have been matched. You may not promise them side-payments after the +experiment is completed or threaten them with any consequence after the +experiment is finished. We are monitoring the chat traffic while you chat. If +we see that somebody reveals his or her identity, we have to stop the +experiment and remove the whole group from which this person is a member out +of this room. +</p> +<p> +You will see other participants labeled as "1", "2","3", "4", or "5" in the +chat box. You can send a chat message by typing into the textfield at the +bottom of the screen and clicking the "send" button with your mouse or +pressing the "enter" key on your keyboard. +</p> +]]> +</entry> + +</properties> Added: foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/round5.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/round5.xml (rev 0) +++ foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/round5.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -0,0 +1,68 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> +<properties> +<comment>Foraging XML-ized experiment round configuration</comment> +<entry key="display-group-tokens">true</entry> +<entry key="clients-per-group">5</entry> +<entry key="resource-depth">29</entry> +<entry key="resource-width">29</entry> +<entry key="duration">240</entry> + +<entry key="initial-distribution">.25</entry> +<entry key="regrowth-rate">0.01</entry> + +<entry key='always-explicit'>true</entry> +<entry key='max-cell-occupancy'>1</entry> + +<!-- before this round begins, we have a chat session --> +<entry key="chat-enabled">true</entry> +<entry key="chat-duration">240</entry> + +<entry key="instructions"> +<![CDATA[ +<h3>Round 5 Instructions</h3> +<hr> +<p> +Round 5 is the same as round 4.</p> +<p> +The length of this round is again four minutes. +</p> +<p> +If you have any questions please raise your hand. <b>Do you have any +questions so far?</b> +</p> +]]> +</entry> + +<entry key="chat-instructions"> +<![CDATA[ +<p> +You can now chat with the other participants in your group for 4 minutes +total. During the chat round, you may communicate about any aspect of the +experiment that you would like to discuss with other participants with whom +you have been matched. You may not promise them side-payments after the +experiment is completed or threaten them with any consequence after the +experiment is finished. We are monitoring the chat traffic while you chat. If +we see that somebody reveals his or her identity, we have to stop the +experiment and remove the whole group from which this person is a member out +of this room. +</p> +<p> +You will see other participants labeled as "1", "2","3", "4", or "5" in the +chat box. You can send a chat message by typing into the textfield at the +bottom of the screen and clicking the "send" button with your mouse or +pressing the "enter" key on your keyboard. +</p> +]]> +</entry> + +<entry key='private-chat-instructions'> +<![CDATA[ +You may send private messages to a specific participant by clicking on the +appropriately labeled button (1, 2, 3, 4, or 5) before typing your message in +the chat box and sending it. By default you are communicating with all +members of your group. +]]> +</entry> + +</properties> Added: foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/round6.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/round6.xml (rev 0) +++ foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/round6.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -0,0 +1,75 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> +<properties> +<comment>Foraging XML-ized experiment round configuration</comment> +<entry key="display-group-tokens">true</entry> +<entry key="clients-per-group">5</entry> +<entry key="resource-depth">29</entry> +<entry key="resource-width">29</entry> +<entry key="duration">240</entry> + +<entry key="initial-distribution">.25</entry> +<entry key="regrowth-rate">0.01</entry> + +<entry key='always-explicit'>true</entry> +<entry key='max-cell-occupancy'>1</entry> + +<!-- before this round begins, we have a chat session --> +<entry key="chat-enabled">true</entry> +<entry key="chat-duration">240</entry> + +<entry key="instructions"> +<![CDATA[ +<h3>Round 6 Instructions</h3> +<hr> +<p> +Round 6 is the same as round 5.</p> +<p> +The length of this round is again four minutes. +</p> +<p> +If you have any questions please raise your hand. <b>Do you have any +questions so far?</b> +</p> +]]> +</entry> + +<entry key="last-round-debriefing"> +<![CDATA[ +<p> +This was the last round, but not the end of the experiment. We will now +determine your payments. While we are doing this, we request that you +carefully fill out a brief survey. +</p> +<p> +When we are ready we will call you one by one to the room next door. We will +pay you there in private. Please wait until your computer number is called, +and then proceed to the room next door to turn in your computer number and +your survey. +</p> +<p> +Please answer the survey carefully and thank you for participating. +</p> +]]> +</entry> + +<entry key="chat-instructions"> +<![CDATA[ +<p> +You can now chat with the other participants in your group for 4 minutes +total. During the chat round, you may communicate about any aspect of the +experiment that you would like to discuss with other participants with whom +you have been matched. You may not promise them side-payments after the +experiment is completed or threaten them with any consequence after the +experiment is finished. We are monitoring the chat traffic while you chat. If +we detect that somebody has revealed their identity, we will have to stop the +experiment and remove that person's entire group from the experiment. +</p> +<p> +You will see other participants labeled as "1", "2","3", "4", or "5" in the +chat box. You can send a chat message by typing into the textfield at the +bottom of the screen and clicking the "send" button with your mouse or +pressing the "enter" key on your keyboard. </p> +]]> +</entry> +</properties> Added: foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/server.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/server.xml (rev 0) +++ foraging/trunk/src/main/resources/configuration/indiana-experiments/open-access-chat/server.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> +<properties> +<comment>Costly Sanctioning XML-ized experiment round configuration</comment> +<entry key="hostname">@SERVER_ADDRESS@</entry> +<entry key="port">@PORT_NUMBER@</entry> +<entry key="round0">round0.xml</entry> +<entry key="round1">round1.xml</entry> +<entry key="round2">round2.xml</entry> +<entry key="round3">round3.xml</entry> +<entry key="round4">round4.xml</entry> +<entry key="round5">round5.xml</entry> +<entry key="round6">round6.xml</entry> +<entry key="wait-for-participants">true</entry> +<entry key="number-of-rounds">7</entry> +<entry key="facilitator-instructions"> +<![CDATA[ +<h3>Facilitator Instructions</h3> +<p> +Welcome to the facilitator interface. This interface allows you to control +the experiment. You may only modify configuration parameters <b>before</b> +you start the experiment by selecting the Configuration menu. When all the +participants are ready to begin the experiment, you can start the experiment +by selecting Experiment -> Start. After a round has been completed you +will be able to view the statistics for all of the participants. You can +begin the next round by selecting Round -> Start. +</p> +]]> +</entry> +</properties> Modified: foraging/trunk/src/main/resources/configuration/indiana-experiments/round1.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/indiana-experiments/round1.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/indiana-experiments/round1.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="display-group-tokens">true</entry> <entry key="clients-per-group">5</entry> <entry key="duration">240</entry> Modified: foraging/trunk/src/main/resources/configuration/indiana-experiments/round2.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/indiana-experiments/round2.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/indiana-experiments/round2.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="display-group-tokens">true</entry> <entry key="clients-per-group">5</entry> <entry key="duration">240</entry> Modified: foraging/trunk/src/main/resources/configuration/indiana-experiments/round3.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/indiana-experiments/round3.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/indiana-experiments/round3.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="display-group-tokens">true</entry> <entry key="clients-per-group">5</entry> <entry key="duration">240</entry> Modified: foraging/trunk/src/main/resources/configuration/indiana-experiments/round4.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/indiana-experiments/round4.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/indiana-experiments/round4.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="display-group-tokens">true</entry> <entry key="clients-per-group">5</entry> <entry key="resource-depth">29</entry> Modified: foraging/trunk/src/main/resources/configuration/indiana-experiments/round5.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/indiana-experiments/round5.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/indiana-experiments/round5.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="display-group-tokens">true</entry> <entry key="clients-per-group">5</entry> <entry key="resource-depth">29</entry> Modified: foraging/trunk/src/main/resources/configuration/indiana-experiments/round6.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/indiana-experiments/round6.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/indiana-experiments/round6.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="display-group-tokens">true</entry> <entry key="clients-per-group">5</entry> <entry key="resource-depth">29</entry> Modified: foraging/trunk/src/main/resources/configuration/round1.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/round1.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/round1.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="display-group-tokens">true</entry> <entry key="clients-per-group">4</entry> <entry key="duration">240</entry> Modified: foraging/trunk/src/main/resources/configuration/round2.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/round2.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/round2.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="display-group-tokens">true</entry> <entry key="clients-per-group">4</entry> <entry key="duration">240</entry> Modified: foraging/trunk/src/main/resources/configuration/round3.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/round3.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/round3.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="practice-round">true</entry> <entry key='resource-width'>8</entry> <entry key='resource-depth'>8</entry> Modified: foraging/trunk/src/main/resources/configuration/round4.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/round4.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/round4.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML-ized experiment round configuration</comment> <entry key="practice-round">false</entry> <entry key='resource-width'>8</entry> <entry key='resource-depth'>8</entry> Modified: foraging/trunk/src/main/resources/configuration/server.xml =================================================================== --- foraging/trunk/src/main/resources/configuration/server.xml 2008-09-12 20:46:29 UTC (rev 52) +++ foraging/trunk/src/main/resources/configuration/server.xml 2008-09-24 22:42:55 UTC (rev 53) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> -<comment>CSAN XML-ized experiment round configuration</comment> +<comment>Foraging XML experiment configuration</comment> <entry key="hostname">@SERVER_ADDRESS@</entry> <entry key="port">@PORT... [truncated message content] |