-/* $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
* 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 $';
* 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) {
-/* $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,
/* Static only test virtual host */
{
name: "test.localhost",
- root: "/home/mmondor/jswww/test"
+ root: "/home/mmondor/jswww/welcome"
}
];