*** empty log message ***
authorMatthew Mondor <mmondor@pulsar-zone.net>
Thu, 14 Jul 2005 12:44:36 +0000 (12:44 +0000)
committerMatthew Mondor <mmondor@pulsar-zone.net>
Thu, 14 Jul 2005 12:44:36 +0000 (12:44 +0000)
tests/js-test/js/httpd/httpd.js
tests/js-test/js/httpd/options.js

index 8db45e6..15edeaf 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: httpd.js,v 1.59 2005/07/14 12:42:11 mmondor Exp $ */
+/* $Id: httpd.js,v 1.60 2005/07/14 12:44:36 mmondor Exp $ */
 
 /*
  * Copyright (c) 2005, Matthew Mondor
@@ -56,7 +56,7 @@
  * Server identification
  */
 SERVER_VERSION                 = 'mmondor_js_httpd/0.0.1 (NetBSD)';
-SERVER_CVSID   = '$Id: httpd.js,v 1.59 2005/07/14 12:42:11 mmondor Exp $';
+SERVER_CVSID   = '$Id: httpd.js,v 1.60 2005/07/14 12:44:36 mmondor Exp $';
 
 
 
@@ -790,7 +790,7 @@ FD.prototype.parseRequest = function(time)
         * Verify if client sent a session cookie, and if it consists of a
         * valid one, load session data.
         */
-       if (this.http_vhost.scripting &&
+       if (this.http_vhost.scripts &&
            (sessid = this.http_vars_cookies['SessionID']) != undefined &&
            (sess = sessions_table[sessid]) != undefined &&
            sess.expires > time) {
index 307cc0c..d930214 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: options.js,v 1.13 2005/07/13 23:38:06 mmondor Exp $ */
+/* $Id: options.js,v 1.14 2005/07/14 12:42:11 mmondor Exp $ */
 
 var options = {
        max_connections:        32,
@@ -48,7 +48,7 @@ var vhosts = [
        /* Static only test virtual host */
        {
                name:           "test.localhost",
-               root:           "/home/mmondor/jswww/test"
+               root:           "/home/mmondor/jswww/welcome"
        }
 ];