summaryrefslogtreecommitdiff
path: root/apps/JAWS/clients/WebSTONE/bin/WebStone-run.pl
diff options
context:
space:
mode:
authorsumedh <sumedh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-07-07 17:45:52 +0000
committersumedh <sumedh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-07-07 17:45:52 +0000
commita83e1233baf57356418c4dc67f85eac52ef66bbe (patch)
treebc6a256cc705ef8ae87e0611bc304354e0376039 /apps/JAWS/clients/WebSTONE/bin/WebStone-run.pl
parent727c757eec790064b77fda081c3daa1df509fc7f (diff)
downloadATCD-a83e1233baf57356418c4dc67f85eac52ef66bbe.tar.gz
Created WebSTONE bin
Diffstat (limited to 'apps/JAWS/clients/WebSTONE/bin/WebStone-run.pl')
-rwxr-xr-xapps/JAWS/clients/WebSTONE/bin/WebStone-run.pl37
1 files changed, 37 insertions, 0 deletions
diff --git a/apps/JAWS/clients/WebSTONE/bin/WebStone-run.pl b/apps/JAWS/clients/WebSTONE/bin/WebStone-run.pl
new file mode 100755
index 00000000000..716cebfa602
--- /dev/null
+++ b/apps/JAWS/clients/WebSTONE/bin/WebStone-run.pl
@@ -0,0 +1,37 @@
+#!/pkg/gnu/bin//perl5
+#
+
+$testbed = "conf/testbed";
+
+push(@INC, "$wd/bin");
+require('WebStone-common.pl');
+
+html_begin("Run");
+
+print CLIENT <<EOF
+<H3><CENTER><A HREF="WebStone-setup.pl">Edit Configuration</A>
+</CENTER></H3>
+EOF
+ ;
+
+&show_model();
+print CLIENT "<PRE>";
+
+open(FILEHANDLE, $testbed);
+while (<FILEHANDLE>) {
+ (/^\#/) || print CLIENT $_;
+}
+close(FILEHANDLE);
+
+print CLIENT <<EOF
+</PRE>
+<CENTER>
+<FORM METHOD=POST ACTION="http://localhost:$html_port$wd/bin/runbench.pl">
+<INPUT TYPE="submit" VALUE="Run WebStone">
+</CENTER>
+EOF
+ ;
+
+html_end();
+
+# end