[Virtualcommons-svn] r5 - foraging/trunk/src/main/resources/web
Status: Beta
Brought to you by:
alllee
|
From: <al...@as...> - 2008-07-25 23:01:27
|
Author: alllee Date: Fri Jul 25 16:01:53 2008 New Revision: 5 Added: foraging/trunk/src/main/resources/web/ foraging/trunk/src/main/resources/web/client.jnlp foraging/trunk/src/main/resources/web/facilitator.jnlp foraging/trunk/src/main/resources/web/index.html Log: foraging web resources/JNLP files Added: foraging/trunk/src/main/resources/web/client.jnlp ============================================================================== --- (empty file) +++ foraging/trunk/src/main/resources/web/client.jnlp Fri Jul 25 16:01:53 2008 @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- JNLP File for CSAN 2D Client --> +<jnlp spec="1.6+" codebase="@CODEBASE_URL@" href="client.jnlp"> + <information> + <title>Virtual Commons Experiment</title> + <vendor>The Virtual Commons, Center for the Study of Institutional Diversity, School of Human Evolution and Social Change, Dr. Marco Janssen, Allen Lee, Deepali Bhagvat</vendor> + <homepage href="http://commons.asu.edu"/> + <description>An experiment brought to you courtesy of The Virtual Commons - http://commons.asu.edu</description> + </information> + <offline-allowed /> + <resources> + <j2se version="1.6+"/> + <jar href="client.jar"/> + <jar href='@FRAMEWORK_JAR@'/> + <property name="sun.java2d.noddraw" value="true"/> + <extension name="jogl" href="http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl.jnlp"/> + </resources> + <application-desc main-class="@MAIN_CLASS@"/> +</jnlp> + Added: foraging/trunk/src/main/resources/web/facilitator.jnlp ============================================================================== --- (empty file) +++ foraging/trunk/src/main/resources/web/facilitator.jnlp Fri Jul 25 16:01:53 2008 @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- JNLP File for CSAN 2D Facilitator --> +<jnlp spec="1.6+" codebase="@CODEBASE_URL@" href="facilitator.jnlp"> + <information> + <title>Virtual Commons Experiment</title> + <vendor>The Virtual Commons, Center for the Study of Institutional Diversity, School of Human Evolution and Social Change, Dr. Marco Janssen, Allen Lee, Deepali Bhagvat</vendor> + <homepage href="http://commons.asu.edu"/> + <description>Foraging 2D facilitator interface to control the Foraging 2D experiment.</description> + <icon href="commons.gif"/> + </information> + <offline-allowed /> + <resources> + <j2se version="1.6+"/> + <jar href="facilitator.jar"/> + <jar href='@FRAMEWORK_JAR@'/> + </resources> + <application-desc main-class="@MAIN_CLASS@"/> +</jnlp> + Added: foraging/trunk/src/main/resources/web/index.html ============================================================================== --- (empty file) +++ foraging/trunk/src/main/resources/web/index.html Fri Jul 25 16:01:53 2008 @@ -0,0 +1,13 @@ +<html> +<head> +<META HTTP-EQUIV="Refresh" CONTENT="5;URL=client.jnlp"> +<title>CARL Experiment</title> +</head> +<body> +<p> +Automatically starting the client. Please <a href='javascript:void()' +onclick='window.close()'>close</a> this window after the client +loads. NOTE: <b>Do not reload or refresh</b> this window. +</p> +</body> +</html> |