- From: Xavier Beaudouin <kiwi AT cvs.caudiumforge.net>
- To: caudium-commits AT caudium.net
- Subject: CVS: caudium/server/modules/vhs vhs_404.pike,1.1.2.2,1.1.2.3 vhs_dirparser.pike,1.4.2.9,1.4.2.10 vhs_sqllogger.pike,1.1.2.3,1.1.2.4 vhs_system_ldap.pike,1.9.2.11,1.9.2.12
- Date: Sun, 27 Feb 2005 18:00:30 +0100
Update of /cvs/caudium/caudium/server/modules/vhs
In directory cvs.caudiumforge.net:/tmp/cvs-serv96011/server/modules/vhs
Modified Files:
Tag: stable_1_2
vhs_404.pike vhs_dirparser.pike vhs_sqllogger.pike
vhs_system_ldap.pike
Log Message:
Update defvars + changelogs
Index: vhs_404.pike
===================================================================
RCS file: /cvs/caudium/caudium/server/modules/vhs/Attic/vhs_404.pike,v
retrieving revision 1.1.2.2
retrieving revision 1.1.2.3
diff -u -r1.1.2.2 -r1.1.2.3
--- vhs_404.pike 27 Feb 2005 16:57:18 -0000 1.1.2.2
+++ vhs_404.pike 27 Feb 2005 17:00:28 -0000 1.1.2.3
@@ -19,7 +19,7 @@
*
*/
/*
- * $Id: vhs_404.pike,v 1.1.2.2 2005/02/27 16:57:18 kiwi Exp $
+ * $Id: vhs_404.pike,v 1.1.2.3 2005/02/27 17:00:28 kiwi Exp $
*/
/*
* Based on 404file.pike from Chris Davies
@@ -45,7 +45,7 @@
//! type: MODULE_LAST
//! inherits: module
//! inherits: caudiumlib
-//! cvs_version: $Id: vhs_404.pike,v 1.1.2.2 2005/02/27 16:57:18 kiwi Exp $
+//! cvs_version: $Id: vhs_404.pike,v 1.1.2.3 2005/02/27 17:00:28 kiwi Exp $
constant module_type = MODULE_LAST;
constant module_name = "VHS - 404 File";
@@ -54,7 +54,7 @@
"<br/>Based on Chris Davies <a href=\""
"
http://www.daviesinc.com/modules/\">module.</a>";
constant module_unique = 1;
-constant cvs_version = "$Id: vhs_404.pike,v 1.1.2.2 2005/02/27 16:57:18
kiwi Exp $";
+constant cvs_version = "$Id: vhs_404.pike,v 1.1.2.3 2005/02/27 17:00:28
kiwi Exp $";
constant thread_safe = 1;
void create() {
@@ -134,6 +134,33 @@
// If we do not support MSIE hell, then fail back to old system.
return http_string_answer(parse_rxml(html,id),"text/html");
}
+
+/*
+ * Local Variables:
+ * c-basic-offset: 2
+ * End:
+ *
+ * vim: softtabstop=2 tabstop=2 expandtab autoindent formatoptions=croqlt
smartindent cindent shiftwidth=2
+ */
+
+
+/* START AUTOGENERATED DEFVAR DOCS */
+
+//! defvar: error404document
+//! The filename to use in the virtual filesystem.
+//! type: TYPE_STRING
+//! name: Filename
+//
+//! defvar: msie
+//! Returns a 200 response to Microsoft Internet Explorer browser instead of
404.
+//! type: TYPE_FLAG
+//! name: Return a 200 to MSIE
+//
+
+/*
+ * If you visit a file that doesn't contain these lines at its end, please
+ * cut and paste everything from here to that file.
+ */
/*
* Local Variables:
Index: vhs_dirparser.pike
===================================================================
RCS file: /cvs/caudium/caudium/server/modules/vhs/vhs_dirparser.pike,v
retrieving revision 1.4.2.9
retrieving revision 1.4.2.10
diff -u -r1.4.2.9 -r1.4.2.10
--- vhs_dirparser.pike 3 Jan 2005 17:01:25 -0000 1.4.2.9
+++ vhs_dirparser.pike 27 Feb 2005 17:00:28 -0000 1.4.2.10
@@ -18,7 +18,7 @@
*
*/
/*
- * $Id: vhs_dirparser.pike,v 1.4.2.9 2005/01/03 17:01:25 kiwi Exp $
+ * $Id: vhs_dirparser.pike,v 1.4.2.10 2005/02/27 17:00:28 kiwi Exp $
*/
/*
@@ -38,9 +38,9 @@
//! inherits: module
//! inherits: caudiumlib
//! type: MODULE_DIRECTORIES
-//! cvs_version: $Id: vhs_dirparser.pike,v 1.4.2.9 2005/01/03 17:01:25 kiwi
Exp $
+//! cvs_version: $Id: vhs_dirparser.pike,v 1.4.2.10 2005/02/27 17:00:28 kiwi
Exp $
-constant cvs_version = "$Id: vhs_dirparser.pike,v 1.4.2.9 2005/01/03
17:01:25 kiwi Exp $";
+constant cvs_version = "$Id: vhs_dirparser.pike,v 1.4.2.10 2005/02/27
17:00:28 kiwi Exp $";
constant thread_safe = 1; /* Probably. Check _root */
#include <module.h>
@@ -544,6 +544,16 @@
//! type: TYPE_STRING_LIST
//! name: Index files
//
+//! defvar: indexredirectfiles
+//! If one of these files is present in a directory, it will be redirected
into this file instead of the directory listing. This can be usefull when you
have a L7 load balancer and you would like to handle special index files with
a third party webserver for example. Leave this empty if you don't want to
use this feature.
+//! type: TYPE_STRING_LIST
+//! name: Index files with redirect
+//
+//! defvar: dotfiles
+//! If set, show dotfiles (files beginning with '.') in directory listings
+//! type: TYPE_FLAG|VAR_MORE
+//! name: Show dotfiles
+//
//! defvar: readme
//! If set, include readme files in directory listings
//! type: TYPE_FLAG|VAR_MORE
@@ -564,3 +574,17 @@
//! type: TYPE_FLAG|VAR_MORE
//! name: Include file size
//
+
+/*
+ * If you visit a file that doesn't contain these lines at its end, please
+ * cut and paste everything from here to that file.
+ */
+
+/*
+ * Local Variables:
+ * c-basic-offset: 2
+ * End:
+ *
+ * vim: softtabstop=2 tabstop=2 expandtab autoindent formatoptions=croqlt
smartindent cindent shiftwidth=2
+ */
+
Index: vhs_sqllogger.pike
===================================================================
RCS file: /cvs/caudium/caudium/server/modules/vhs/Attic/vhs_sqllogger.pike,v
retrieving revision 1.1.2.3
retrieving revision 1.1.2.4
diff -u -r1.1.2.3 -r1.1.2.4
--- vhs_sqllogger.pike 19 Jan 2005 17:43:40 -0000 1.1.2.3
+++ vhs_sqllogger.pike 27 Feb 2005 17:00:28 -0000 1.1.2.4
@@ -19,7 +19,7 @@
*
*/
/*
- * $Id: vhs_sqllogger.pike,v 1.1.2.3 2005/01/19 17:43:40 kiwi Exp $
+ * $Id: vhs_sqllogger.pike,v 1.1.2.4 2005/02/27 17:00:28 kiwi Exp $
*/
#include <module.h>
@@ -35,7 +35,7 @@
"apache distribution.";
constant module_unique= 1;
constant thread_safe = 1;
-constant cvs_version = "$Id: vhs_sqllogger.pike,v 1.1.2.3 2005/01/19
17:43:40 kiwi Exp $";
+constant cvs_version = "$Id: vhs_sqllogger.pike,v 1.1.2.4 2005/02/27
17:00:28 kiwi Exp $";
//
//! module: SQL logger
@@ -45,7 +45,7 @@
//! inherits: module
//! inherits: caudiumlib
//! type: MODULE_LOGGER
-//! cvs_version: $Id: vhs_sqllogger.pike,v 1.1.2.3 2005/01/19 17:43:40 kiwi
Exp $
+//! cvs_version: $Id: vhs_sqllogger.pike,v 1.1.2.4 2005/02/27 17:00:28 kiwi
Exp $
//
object db; // The db stack
@@ -184,4 +184,45 @@
db->handle(sql_conn);
return;
}
+
+
+/* START AUTOGENERATED DEFVAR DOCS */
+
+//! defvar: dburl
+//! This is the conncetion to the database in a SQL-URL.
+//!
+//! type: TYPE_STRING
+//! name: Database URL
+//
+//! defvar: logtable
+//! This is the table into which all client names will be put.
+//!
+//! type: TYPE_STRING
+//! name: Log table
+//
+//! defvar: dbcount
+//! Number of connections to make.
+//!
+//! type: TYPE_INT
+//! name: Number of Connections
+//
+//! defvar: failtime
+//! Time between reconnect attempts if SQL server is down, in minutes.
+//!
+//! type: TYPE_INT
+//! name: Warning Timeout
+//
+
+/*
+ * If you visit a file that doesn't contain these lines at its end, please
+ * cut and paste everything from here to that file.
+ */
+
+/*
+ * Local Variables:
+ * c-basic-offset: 2
+ * End:
+ *
+ * vim: softtabstop=2 tabstop=2 expandtab autoindent formatoptions=croqlt
smartindent cindent shiftwidth=2
+ */
Index: vhs_system_ldap.pike
===================================================================
RCS file: /cvs/caudium/caudium/server/modules/vhs/vhs_system_ldap.pike,v
retrieving revision 1.9.2.11
retrieving revision 1.9.2.12
diff -u -r1.9.2.11 -r1.9.2.12
--- vhs_system_ldap.pike 20 Jan 2005 12:54:14 -0000 1.9.2.11
+++ vhs_system_ldap.pike 27 Feb 2005 17:00:28 -0000 1.9.2.12
@@ -34,9 +34,9 @@
//! inherits: module
//! inherits: caudiumlib
//! type: MODULE_PRECACHE
-//! cvs_version: $Id: vhs_system_ldap.pike,v 1.9.2.11 2005/01/20 12:54:14
kiwi Exp $
+//! cvs_version: $Id: vhs_system_ldap.pike,v 1.9.2.12 2005/02/27 17:00:28
kiwi Exp $
-constant cvs_version = "$Id: vhs_system_ldap.pike,v 1.9.2.11 2005/01/20
12:54:14 kiwi Exp $";
+constant cvs_version = "$Id: vhs_system_ldap.pike,v 1.9.2.12 2005/02/27
17:00:28 kiwi Exp $";
constant thread_safe = 1;
#include <module.h>
@@ -653,7 +653,7 @@
//! type: TYPE_FLAG
//! name: Logs using VHS parameters
//
-//! defvar: logwwDomain
+//! defvar: logwwwDomain
//! When enabled and when "Logs using VHS parameters" is disabled, when
filename used is FQDN given by wwwDomain LDAP attribute
//! type: TYPE_FLAG
//! name: Logs using wwwDomain parameter
- CVS: caudium/server/modules/vhs vhs_404.pike,1.1.2.2,1.1.2.3 vhs_dirparser.pike,1.4.2.9,1.4.2.10 vhs_sqllogger.pike,1.1.2.3,1.1.2.4 vhs_system_ldap.pike,1.9.2.11,1.9.2.12, Xavier Beaudouin
Archive powered by MhonArc 2.6.10.