diff options
-rw-r--r-- | doc/manual.html | 2 | ||||
-rw-r--r-- | doc/modules.html | 40 | ||||
-rw-r--r-- | doc/status.html | 6 |
3 files changed, 44 insertions, 4 deletions
diff --git a/doc/manual.html b/doc/manual.html index 0c4cd1cf..e154bfd3 100644 --- a/doc/manual.html +++ b/doc/manual.html @@ -21,7 +21,7 @@ helps. Learn <a href="how2help.html">how to help the rsyslog project</a>.</p> <ul>
<li><a href="rsyslogd.man.txt">rsyslogd man page</a>
<li><a href="rsyslog_conf.html">configuration file syntax (rsyslog.conf)</a><li>
<a href="property_replacer.html">property replacer, an important core component</a><li>a commented <a href="sample.conf.html">sample rsyslog.conf</a>
-<li><a href="bugs.html">rsyslog bug list</a><li><a href="rsyslog_packages.html">
rsyslog packages</a><li><a href="generic_design.html">backgrounder on generic
syslog application design</a><li><a href="contributors.html">contributor "Hall
of Fame"</a></ul>
+<li><a href="bugs.html">rsyslog bug list</a><li><a href="rsyslog_packages.html">
rsyslog packages</a><li><a href="generic_design.html">backgrounder on generic
syslog application design</a><li><a href="contributors.html">contributor "Hall
of Fame"</a><li><a href="modules.html">description of rsyslog modules</a></ul>
<p><b>We have some in-depth papers on</b></p>
<ul>
<li><a href="install.html">installing rsyslog</a></li>
<li><a href="ipv6.html">rsyslog and IPv6</a> (which is fully supported)</li>
diff --git a/doc/modules.html b/doc/modules.html new file mode 100644 index 00000000..bd702596 --- /dev/null +++ b/doc/modules.html @@ -0,0 +1,40 @@ +<html><head> +<title>Writing syslog Data to MySQL</title> +<meta name="KEYWORDS" content="syslog, mysql, syslog to mysql, howto"> +</head> +<body> +<h1>About rsyslog Modules</h1> + <P><small><i>Written by + <a href="http://www.adiscon.com/en/people/rainer-gerhards.php">Rainer + Gerhards</a> (2007-07-26)</i></small></P> +<p><font color="#FF0000"><b>This document is incomplete. The module interface is +also quite incomplete and under development. Do not currently use it!</b></font> +You may want to visit <a href="http://rgerhards.blogspot.com/">Rainer's blog</a> +to learn what's going on.</p> +<h2>Overview</h2> +<p>In theory, modules provide input and output, among other functions, in +rsyslog. In practice, modules are only utilized for output in the current +release. The module interface is not yet completed and a moving target. We do +not recommend to write a module based on the current specification. If you do, +please be prepared that future released of rsyslog will probably break your +module. </p> +<p>A goal of modularization is to provide an easy to use plug-in interface. +However, this goal is not yet reached and all modules must be statically linked.</p> +<h2>Module Security</h2> +<p>Modules are directly loaded into rsyslog's address space. As such, any module +is provided a big level of trust. Please note that further module interfaces +might provide a way to load a module into an isolated address space. This, +however, is far from being completed. So the number one rule about module +security is to run only code that you know you can trust.</p> +<h2>Copyright</h2> +<p>Copyright (c) 2007 +<a href="http://www.adiscon.com/en/people/rainer-gerhards.php">Rainer Gerhards</a> +and <a href="http://www.adiscon.com/en/">Adiscon</a>.</p> +<p>Permission is granted to copy, distribute and/or modify this document under +the terms of the GNU Free Documentation License, Version 1.2 or any later +version published by the Free Software Foundation; with no Invariant Sections, +no Front-Cover Texts, and no Back-Cover Texts. A copy of the license can be +viewed at <a href="http://www.gnu.org/copyleft/fdl.html"> +http://www.gnu.org/copyleft/fdl.html</a>.</p> +</body> +</html>
\ No newline at end of file diff --git a/doc/status.html b/doc/status.html index fbf4f88b..7bb091be 100644 --- a/doc/status.html +++ b/doc/status.html @@ -4,10 +4,10 @@ </head> <body> <h2>rsyslog status page</h2> -<p>This page reflects the status as of 2007-07-25.</p> +<p>This page reflects the status as of 2007-07-27.</p> <h2>Current Releases</h2> -<p><b>development:</b> 1.17.3 - <a href="http://www.rsyslog.com/Article96.phtml">change log</a> - -<a href="http://www.rsyslog.com/Downloads-index-req-getit-lid-45.phtml">download</a></p> +<p><b>development:</b> 1.17.4 - <a href="http://www.rsyslog.com/Article99.phtml">change log</a> - +<a href="http://www.rsyslog.com/Downloads-index-req-getit-lid-46.phtml">download</a></p> <p><b>stable:</b> 1.0.5 - <a href="http://www.rsyslog.com/Article85.phtml">change log</a> - <a href="http://www.rsyslog.com/Downloads-index-req-getit-lid-39.phtml">download</a></p> <p> (<a href="version_naming.html">How are versions named?</a>)</p> |