Hello!

To see the file structure, click on "tree".

Note that updates take place every 10 minutes, commits may not be seen immediately.
Backup Location for Mac web contents under /data/www
authorpreecej <preecej@localhost>
Tue, 14 Sep 2010 22:00:26 +0000 (22:00 +0000)
committerpreecej <preecej@localhost>
Tue, 14 Sep 2010 22:00:26 +0000 (22:00 +0000)
svn path=/; revision=34

preecej/linux_workshop_1.pl [deleted file]
preecej/www/index.html [new file with mode: 0644]
preecej/www/index.php [new file with mode: 0644]
preecej/www/index.pl [new file with mode: 0644]

diff --git a/preecej/linux_workshop_1.pl b/preecej/linux_workshop_1.pl
deleted file mode 100755 (executable)
index 038997a..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-#!usr/bin/perl -w
-use strict;
-
-system 'clear';
-
-print "Hello World! mod\n\n";
-
-exit;
diff --git a/preecej/www/index.html b/preecej/www/index.html
new file mode 100644 (file)
index 0000000..2113273
--- /dev/null
@@ -0,0 +1,9 @@
+<html>
+<body>
+Apache 1.3 (/data/www)<br>
+<br>
+Java Web Start test page for Phenote<br>
+<a href="phenote_jws/justin_test_phenote.jnlp">Click here</a> to start Phenote.
+
+</body>
+</html>
diff --git a/preecej/www/index.php b/preecej/www/index.php
new file mode 100644 (file)
index 0000000..baeb62b
--- /dev/null
@@ -0,0 +1,10 @@
+<html>
+<body>
+php test from /data/www
+<?php echo '<br>down wit php, yeah you know me...' ?>
+<?php
+$sTest = "testing";
+?>
+<?php echo '<br>another test: ' . $sTest ?>
+</body>
+</html>
diff --git a/preecej/www/index.pl b/preecej/www/index.pl
new file mode 100644 (file)
index 0000000..43c60e3
--- /dev/null
@@ -0,0 +1,6 @@
+#!usr/bin/perl -w
+use strict;
+
+print "<html>test cgi-pl</html>";
+
+exit(0);