*** empty log message ***
authorMatthew Mondor <mmondor@pulsar-zone.net>
Thu, 7 Jul 2005 00:59:05 +0000 (00:59 +0000)
committerMatthew Mondor <mmondor@pulsar-zone.net>
Thu, 7 Jul 2005 00:59:05 +0000 (00:59 +0000)
tests/js-test/js/httpd/httpd.js

index 0faa8d8..a01df38 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: httpd.js,v 1.19 2005/07/07 00:25:40 mmondor Exp $ */
+/* $Id: httpd.js,v 1.20 2005/07/07 00:59:05 mmondor Exp $ */
 
 /*
  * Copyright (c) 2005, Matthew Mondor
  *   with an entry point or such.  At worse I'll need special a C support
  *   object to implement this, which would at necessary use another context,
  *   possibly persistent.
+ *   Hmm I could perhaps also do some test, where an application would all
+ *   be loaded, and their functions called on a vhost based on paths,
+ *   if path not handled/found, fallback to static pages processing...
+ *   There shouldn't be more than a single application per vhost anyways.
+ *   We would handle session management, as well as provide user applications
+ *   with a document root to access their http vars...
+ * - Will also need to take care to never allow uploading js scripts once
+ *   we allow their server-side execution.
  */
 
 
@@ -75,7 +83,7 @@ eval(file_read('root.js'));           /* Root object for virtual chroot(2) */
  * Server identification
  */
 SERVER_VERSION                 = 'mmondor_js_httpd/0.0.1 (NetBSD)';
-SERVER_CVSID   = '$Id: httpd.js,v 1.19 2005/07/07 00:25:40 mmondor Exp $';
+SERVER_CVSID   = '$Id: httpd.js,v 1.20 2005/07/07 00:59:05 mmondor Exp $';