Update of /cvsroot/tmda/tmda/htdocs
In directory usw-pr-cvs1:/tmp/cvs-serv2511/htdocs

Modified Files:
        ChangeLog Makefile bugs.html config-client.ht 
        config-client.html config-filter.html config-links.h 
        config-pre.html config-server.html config.ht config.html 
        download.html features.html filter-sources.html history.html 
        howtos.html index.html install.html inuse.html press.html 
        requirements.html resources.html results.html tmda-ofmipd.html 
        trouble.html 
Added Files:
        config-vars.ht config-vars.html config-vars.tpl 
Log Message:
Add code from Tim Legant to auto-generate HTML (config-vars.html) from
the variable comments in Defaults.py.


--- NEW FILE ---
Title: TMDA Configuration Variables
Links: overview-links.h usage-links.h config-links.h support-links.h

<h3>TMDA Configuration Variables</h3>

<ul>

<li>Set TMDA configuration variables in /etc/tmdarc or ~/.tmda/config only.
Settings in ~/.tmda/config override those in /etc/tmdarc.
<br><br>

<li>Each variable has a default value, and in most cases that will suffice.
You only need to set a variable in your configuration file if you want to
override the default value.
<br><br>

<li>/etc/tmdarc and ~/.tmda/config are interpreted as executable Python code.
Thus, variable declarations must adhere to proper 
<a href="http://www.python.org/doc/current/"; TARGET="Resource Window">Python 
syntax</a>.
[...1208 lines suppressed...]
sending the message.  This is useful for users that desire the
`X-TMDA' override behavior, but don't use an MUA which easily allows
addition of arbitrary headers (e.g, Outlook).
<br><br>
The Subject header should contain `X-TMDA' followed by whitespace
followed by the desired action followed by the real subject.  Case
is insensitive.
<br><br>
Examples:
<br><br>
<code>Subject: X-TMDA dated Re: You're fired!</code><br>
<code>Subject:     X-TMDA dated=5M Re: You're fired!</code><br>
<code>Subject: X-TMDA   sender      Re: You're fired!</code>
<br><br>
In all cases, the resulting subject will simply be:
<br>
Subject: Re: You're fired!
<br><br>
Default is 0 (turned off)
</dl>

--- NEW FILE ---
<HTML>
<!-- THIS PAGE IS AUTOMATICALLY GENERATED.  DO NOT EDIT. -->
<!-- Tue Oct  1 13:45:35 2002 -->
<!-- USING HT2HTML 1.2 -->
<!-- SEE http://barry.wooz.org/software/ht2html -->
<!-- User-specified headers:
Title: TMDA Configuration Variables

-->

<HEAD>
<TITLE>TMDA Configuration Variables</TITLE>

</HEAD>
<BODY BGCOLOR="#ffffff" TEXT="#000000"
      TOPMARGIN="0" LEFTMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0"
      LINK="#0000bb"  VLINK="#551a8b"
      ALINK="#ff0000">
<!-- start of page table -->
[...1375 lines suppressed...]
followed by the desired action followed by the real subject.  Case
is insensitive.
<br><br>
Examples:
<br><br>
<code>Subject: X-TMDA dated Re: You're fired!</code><br>
<code>Subject:     X-TMDA dated=5M Re: You're fired!</code><br>
<code>Subject: X-TMDA   sender      Re: You're fired!</code>
<br><br>
In all cases, the resulting subject will simply be:
<br>
Subject: Re: You're fired!
<br><br>
Default is 0 (turned off)
</dl>

</TD><!-- end of body cell -->
</TR><!-- end of sidebar/body row -->
</TABLE><!-- end of page table -->
</BODY></HTML>

--- NEW FILE ---
Title: TMDA Configuration Variables
Links: overview-links.h usage-links.h config-links.h support-links.h

<h3>TMDA Configuration Variables</h3>

<ul>

<li>Set TMDA configuration variables in /etc/tmdarc or ~/.tmda/config only.
Settings in ~/.tmda/config override those in /etc/tmdarc.
<br><br>

<li>Each variable has a default value, and in most cases that will suffice.
You only need to set a variable in your configuration file if you want to
override the default value.
<br><br>

<li>/etc/tmdarc and ~/.tmda/config are interpreted as executable Python code.
Thus, variable declarations must adhere to proper 
<a href="http://www.python.org/doc/current/"; TARGET="Resource Window">Python 
syntax</a>.
Each variable definition below contains one or more examples.

</ul>

<h3>Index</h3>

<!--config_vars-->

Index: ChangeLog
===================================================================
RCS file: /cvsroot/tmda/tmda/htdocs/ChangeLog,v
retrieving revision 1.156
retrieving revision 1.157
diff -u -r1.156 -r1.157
--- ChangeLog   26 Sep 2002 01:33:38 -0000      1.156
+++ ChangeLog   1 Oct 2002 19:55:32 -0000       1.157
@@ -1,3 +1,9 @@
+2002-10-01  Jason R. Mastaler  <[EMAIL PROTECTED]>
+
+       * config-vars.{ht,html,tpl}: New files.
+
+       * Makefile: Add config-vars target.
+
 2002-09-25  Jason R. Mastaler  <[EMAIL PROTECTED]>
 
        * press.ht (Links): Add Daily Aardvark story.

Index: Makefile
===================================================================
RCS file: /cvsroot/tmda/tmda/htdocs/Makefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Makefile    27 Feb 2002 22:01:42 -0000      1.2
+++ Makefile    1 Oct 2002 19:55:32 -0000       1.3
@@ -17,6 +17,8 @@
 # along with TMDA; if not, write to the Free Software Foundation, Inc.,
 # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
+DEF2HTML =      ../contrib/def2html
+
 HTROOT =       .
 HT2HTML =      /usr/local/packages/ht2html/ht2html.py
 HTSTYLE =      TMDAGenerator
@@ -34,8 +36,16 @@
 
 all: $(TARGETS)
 
+config-vars.ht: config-vars.tpl config-vars.tmp
+       sed -e '/<!--config_vars-->/r config-vars.tmp' -e \
+       '/<!--config_vars-->/d' < config-vars.tpl > config-vars.ht
+
+config-vars.tmp: ../TMDA/Defaults.py
+       $(DEF2HTML) ../TMDA/Defaults.py > config-vars.tmp
+
 clean: clean
        -rm -f *~
        -rm -f $(GENERATED_HTML)
+       -rm -f config-vars.tmp
 
 remake: clean all

Index: bugs.html
===================================================================
RCS file: /cvsroot/tmda/tmda/htdocs/bugs.html,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- bugs.html   19 Aug 2002 17:30:04 -0000      1.18
+++ bugs.html   1 Oct 2002 19:55:32 -0000       1.19
@@ -1,6 +1,6 @@
 <HTML>
 <!-- THIS PAGE IS AUTOMATICALLY GENERATED.  DO NOT EDIT. -->
-<!-- Mon Aug 19 11:29:08 2002 -->
+<!-- Tue Oct  1 12:08:56 2002 -->
 <!-- USING HT2HTML 1.2 -->
 <!-- SEE http://barry.wooz.org/software/ht2html -->
 <!-- User-specified headers:

Index: config-client.ht
===================================================================
RCS file: /cvsroot/tmda/tmda/htdocs/config-client.ht,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- config-client.ht    24 Jul 2002 22:52:18 -0000      1.24
+++ config-client.ht    1 Oct 2002 19:55:32 -0000       1.25
@@ -221,7 +221,7 @@
 
 Make sure that your <b>crypt_key</b> file is the same
 on both your mail server and your mail client -- they must match.
-See <b>TMDA/Defaults.py</b> for more client options.
+See <a href="config-vars.html">Configuration Variables</a> for more client options.
 <br><br>
 
 

Index: config-client.html
===================================================================
RCS file: /cvsroot/tmda/tmda/htdocs/config-client.html,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- config-client.html  19 Aug 2002 17:30:04 -0000      1.37
+++ config-client.html  1 Oct 2002 19:55:32 -0000       1.38
@@ -1,6 +1,6 @@
 <HTML>
 <!-- THIS PAGE IS AUTOMATICALLY GENERATED.  DO NOT EDIT. -->
-<!-- Mon Aug 19 11:29:08 2002 -->
+<!-- Tue Oct  1 12:22:00 2002 -->
 <!-- USING HT2HTML 1.2 -->
 <!-- SEE http://barry.wooz.org/software/ht2html -->
 <!-- User-specified headers:
@@ -113,6 +113,9 @@
 <b>Client Configuration</b>
 </TD></TR>
 <TR><TD BGCOLOR="#cccccc">
+<A HREF="config-vars.html">Configuration Variables</A>
+</TD></TR>
+<TR><TD BGCOLOR="#cccccc">
 <A HREF="config-filter.html">Filter Specification</A>
 </TD></TR>
 <TR><TD BGCOLOR="#cccccc">
@@ -380,7 +383,7 @@
 
 Make sure that your <b>crypt_key</b> file is the same
 on both your mail server and your mail client -- they must match.
-See <b>TMDA/Defaults.py</b> for more client options.
+See <a href="config-vars.html">Configuration Variables</a> for more client options.
 <br><br>
 
 

Index: config-filter.html
===================================================================
RCS file: /cvsroot/tmda/tmda/htdocs/config-filter.html,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- config-filter.html  13 Sep 2002 05:42:12 -0000      1.30
+++ config-filter.html  1 Oct 2002 19:55:32 -0000       1.31
@@ -1,6 +1,6 @@
 <HTML>
 <!-- THIS PAGE IS AUTOMATICALLY GENERATED.  DO NOT EDIT. -->
-<!-- Thu Sep 12 14:51:35 2002 -->
+<!-- Tue Oct  1 12:08:56 2002 -->
 <!-- USING HT2HTML 1.2 -->
 <!-- SEE http://barry.wooz.org/software/ht2html -->
 <!-- User-specified headers:
@@ -111,6 +111,9 @@
 </TD></TR>
 <TR><TD BGCOLOR="#cccccc">
 <A HREF="config-client.html">Client Configuration</A>
+</TD></TR>
+<TR><TD BGCOLOR="#cccccc">
+<A HREF="config-vars.html">Configuration Variables</A>
 </TD></TR>
 <TR><TD BGCOLOR="#cccccc">
 <b>Filter Specification</b>

Index: config-links.h
===================================================================
RCS file: /cvsroot/tmda/tmda/htdocs/config-links.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- config-links.h      19 Aug 2002 17:30:05 -0000      1.4
+++ config-links.h      1 Oct 2002 19:55:32 -0000       1.5
@@ -4,5 +4,6 @@
 <li><a href="config-pre.html">Pre-Configuration</a>
 <li><a href="config-server.html">Server Configuration</a>
 <li><a href="config-client.html">Client Configuration</a>
+<li><a href="config-vars.html">Configuration Variables</a>
 <li><a href="config-filter.html">Filter Specification</a>
 <li><a href="filter-sources.html">Filter Sources</a>

Index: config-pre.html
===================================================================
RCS file: /cvsroot/tmda/tmda/htdocs/config-pre.html,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- config-pre.html     7 Sep 2002 01:53:25 -0000       1.23
+++ config-pre.html     1 Oct 2002 19:55:32 -0000       1.24
@@ -1,6 +1,6 @@
 <HTML>
 <!-- THIS PAGE IS AUTOMATICALLY GENERATED.  DO NOT EDIT. -->
-<!-- Fri Sep  6 19:48:48 2002 -->
+<!-- Tue Oct  1 12:08:56 2002 -->
 <!-- USING HT2HTML 1.2 -->
 <!-- SEE http://barry.wooz.org/software/ht2html -->
 <!-- User-specified headers:
@@ -111,6 +111,9 @@
 </TD></TR>
 <TR><TD BGCOLOR="#cccccc">
 <A HREF="config-client.html">Client Configuration</A>
+</TD></TR>
+<TR><TD BGCOLOR="#cccccc">
+<A HREF="config-vars.html">Configuration Variables</A>
 </TD></TR>
 <TR><TD BGCOLOR="#cccccc">
 <A HREF="config-filter.html">Filter Specification</A>

Index: config-server.html
===================================================================
RCS file: /cvsroot/tmda/tmda/htdocs/config-server.html,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- config-server.html  19 Aug 2002 17:30:05 -0000      1.34
+++ config-server.html  1 Oct 2002 19:55:33 -0000       1.35
@@ -1,6 +1,6 @@
 <HTML>
 <!-- THIS PAGE IS AUTOMATICALLY GENERATED.  DO NOT EDIT. -->
-<!-- Mon Aug 19 11:29:08 2002 -->
+<!-- Tue Oct  1 12:08:56 2002 -->
 <!-- USING HT2HTML 1.2 -->
 <!-- SEE http://barry.wooz.org/software/ht2html -->
 <!-- User-specified headers:
@@ -111,6 +111,9 @@
 </TD></TR>
 <TR><TD BGCOLOR="#cccccc">
 <A HREF="config-client.html">Client Configuration</A>
+</TD></TR>
+<TR><TD BGCOLOR="#cccccc">
+<A HREF="config-vars.html">Configuration Variables</A>
 </TD></TR>
 <TR><TD BGCOLOR="#cccccc">
 <A HREF="config-filter.html">Filter Specification</A>

Index: config.ht
===================================================================
RCS file: /cvsroot/tmda/tmda/htdocs/config.ht,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- config.ht   22 Jul 2002 19:55:32 -0000      1.9
+++ config.ht   1 Oct 2002 19:55:33 -0000       1.10
@@ -3,25 +3,35 @@
 
 <h3>TMDA Configuration Overview</h3>
 
-First read the <a href="config-pre.html">Pre-Configuration</a> section
+<ol>
+
+<li>First read the <a href="config-pre.html">Pre-Configuration</a> section
 for changes you might need to make to non-TMDA software such as your
 SMTP-server.
 <br><br>
 
-Next read the <a href="config-server.html">Server Configuration</a>
+<li>Next read the <a href="config-server.html">Server Configuration</a>
 section for how to filter incoming messages on your mailserver
 with TMDA.
 <br><br>
 
-If you want to tag outgoing messages from your mail or news client, then
+<li>If you want to tag outgoing messages from your mail or news client, then
 read the <a href="config-client.html">Client Configuration</a> section.
 <br><br>
 
-If you are upgrading from an earlier release of TMDA, make sure to
+<li>If you want to customize your TMDA installation, read the
+<a href="config-vars.html">Configuration Variables</a> reference.  
+This is also highly recommended reading if you want to get a better sense 
+of TMDA's capabilities and features.
+<br><br>
+
+<li>If you are upgrading from an earlier release of TMDA, make sure to
 consult the <strong>UPGRADE</strong> file that came with your TMDA
 distribution.
 <br><br>
 
-Finally, consider joining one or more of the 
+<li>Finally, consider joining one or more of the 
 <a href="http://tmda.net/lists/listinfo/"; TARGET="Resource Window">mailing lists</a> 
 to stay current with TMDA.
+
+</ol>

Index: config.html
===================================================================
RCS file: /cvsroot/tmda/tmda/htdocs/config.html,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- config.html 19 Aug 2002 17:30:06 -0000      1.20
+++ config.html 1 Oct 2002 19:55:33 -0000       1.21
@@ -1,6 +1,6 @@
 <HTML>
 <!-- THIS PAGE IS AUTOMATICALLY GENERATED.  DO NOT EDIT. -->
-<!-- Mon Aug 19 11:29:08 2002 -->
+<!-- Tue Oct  1 13:47:27 2002 -->
 <!-- USING HT2HTML 1.2 -->
 <!-- SEE http://barry.wooz.org/software/ht2html -->
 <!-- User-specified headers:
@@ -113,6 +113,9 @@
 <A HREF="config-client.html">Client Configuration</A>
 </TD></TR>
 <TR><TD BGCOLOR="#cccccc">
+<A HREF="config-vars.html">Configuration Variables</A>
+</TD></TR>
+<TR><TD BGCOLOR="#cccccc">
 <A HREF="config-filter.html">Filter Specification</A>
 </TD></TR>
 <TR><TD BGCOLOR="#cccccc">
@@ -162,28 +165,38 @@
 <TD VALIGN=TOP WIDTH="90%"><BR>
 <h3>TMDA Configuration Overview</h3>
 
-First read the <a href="config-pre.html">Pre-Configuration</a> section
+<ol>
+
+<li>First read the <a href="config-pre.html">Pre-Configuration</a> section
 for changes you might need to make to non-TMDA software such as your
 SMTP-server.
 <br><br>
 
-Next read the <a href="config-server.html">Server Configuration</a>
+<li>Next read the <a href="config-server.html">Server Configuration</a>
 section for how to filter incoming messages on your mailserver
 with TMDA.
 <br><br>
 
-If you want to tag outgoing messages from your mail or news client, then
+<li>If you want to tag outgoing messages from your mail or news client, then
 read the <a href="config-client.html">Client Configuration</a> section.
 <br><br>
 
-If you are upgrading from an earlier release of TMDA, make sure to
+<li>If you want to customize your TMDA installation, read the
+<a href="config-vars.html">Configuration Variables</a> reference.  
+This is also highly recommended reading if you want to get a better sense 
+of TMDA's capabilities and features.
+<br><br>
+
+<li>If you are upgrading from an earlier release of TMDA, make sure to
 consult the <strong>UPGRADE</strong> file that came with your TMDA
 distribution.
 <br><br>
 
-Finally, consider joining one or more of the 
+<li>Finally, consider joining one or more of the 
 <a href="http://tmda.net/lists/listinfo/"; TARGET="Resource Window">mailing lists</a> 
 to stay current with TMDA.
+
+</ol>
 
 </TD><!-- end of body cell -->
 </TR><!-- end of sidebar/body row -->

Index: download.html
===================================================================
RCS file: /cvsroot/tmda/tmda/htdocs/download.html,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- download.html       19 Aug 2002 17:30:06 -0000      1.29
+++ download.html       1 Oct 2002 19:55:33 -0000       1.30
@@ -1,6 +1,6 @@
 <HTML>
 <!-- THIS PAGE IS AUTOMATICALLY GENERATED.  DO NOT EDIT. -->
-<!-- Mon Aug 19 11:29:08 2002 -->
+<!-- Tue Oct  1 12:08:56 2002 -->
 <!-- USING HT2HTML 1.2 -->
 <!-- SEE http://barry.wooz.org/software/ht2html -->
 <!-- User-specified headers:

Index: features.html
===================================================================
RCS file: /cvsroot/tmda/tmda/htdocs/features.html,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- features.html       21 Aug 2002 22:37:42 -0000      1.29
+++ features.html       1 Oct 2002 19:55:33 -0000       1.30
@@ -1,6 +1,6 @@
 <HTML>
 <!-- THIS PAGE IS AUTOMATICALLY GENERATED.  DO NOT EDIT. -->
-<!-- Wed Aug 21 15:38:08 2002 -->
+<!-- Tue Oct  1 12:08:56 2002 -->
 <!-- USING HT2HTML 1.2 -->
 <!-- SEE http://barry.wooz.org/software/ht2html -->
 <!-- User-specified headers:

Index: filter-sources.html
===================================================================
RCS file: /cvsroot/tmda/tmda/htdocs/filter-sources.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- filter-sources.html 19 Aug 2002 17:30:06 -0000      1.2
+++ filter-sources.html 1 Oct 2002 19:55:34 -0000       1.3
@@ -1,6 +1,6 @@
 <HTML>
 <!-- THIS PAGE IS AUTOMATICALLY GENERATED.  DO NOT EDIT. -->
-<!-- Mon Aug 19 11:29:08 2002 -->
+<!-- Tue Oct  1 12:08:56 2002 -->
 <!-- USING HT2HTML 1.2 -->
 <!-- SEE http://barry.wooz.org/software/ht2html -->
 <!-- User-specified headers:
@@ -111,6 +111,9 @@
 </TD></TR>
 <TR><TD BGCOLOR="#cccccc">
 <A HREF="config-client.html">Client Configuration</A>
+</TD></TR>
+<TR><TD BGCOLOR="#cccccc">
+<A HREF="config-vars.html">Configuration Variables</A>
 </TD></TR>
 <TR><TD BGCOLOR="#cccccc">
 <A HREF="config-filter.html">Filter Specification</A>

Index: history.html
===================================================================
RCS file: /cvsroot/tmda/tmda/htdocs/history.html,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- history.html        19 Aug 2002 17:30:06 -0000      1.13
+++ history.html        1 Oct 2002 19:55:34 -0000       1.14
@@ -1,6 +1,6 @@
 <HTML>
 <!-- THIS PAGE IS AUTOMATICALLY GENERATED.  DO NOT EDIT. -->
-<!-- Mon Aug 19 11:29:08 2002 -->
+<!-- Tue Oct  1 12:08:56 2002 -->
 <!-- USING HT2HTML 1.2 -->
 <!-- SEE http://barry.wooz.org/software/ht2html -->
 <!-- User-specified headers:

Index: howtos.html
===================================================================
RCS file: /cvsroot/tmda/tmda/htdocs/howtos.html,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- howtos.html 19 Aug 2002 17:30:06 -0000      1.5
+++ howtos.html 1 Oct 2002 19:55:34 -0000       1.6
@@ -1,6 +1,6 @@
 <HTML>
 <!-- THIS PAGE IS AUTOMATICALLY GENERATED.  DO NOT EDIT. -->
-<!-- Mon Aug 19 11:29:08 2002 -->
+<!-- Tue Oct  1 12:08:56 2002 -->
 <!-- USING HT2HTML 1.2 -->
 <!-- SEE http://barry.wooz.org/software/ht2html -->
 <!-- User-specified headers:

Index: index.html
===================================================================
RCS file: /cvsroot/tmda/tmda/htdocs/index.html,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- index.html  3 Sep 2002 18:39:16 -0000       1.23
+++ index.html  1 Oct 2002 19:55:34 -0000       1.24
@@ -1,6 +1,6 @@
 <HTML>
 <!-- THIS PAGE IS AUTOMATICALLY GENERATED.  DO NOT EDIT. -->
-<!-- Tue Sep  3 12:22:30 2002 -->
+<!-- Tue Oct  1 12:08:57 2002 -->
 <!-- USING HT2HTML 1.2 -->
 <!-- SEE http://barry.wooz.org/software/ht2html -->
 <!-- User-specified headers:

Index: install.html
===================================================================
RCS file: /cvsroot/tmda/tmda/htdocs/install.html,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- install.html        19 Aug 2002 17:30:07 -0000      1.26
+++ install.html        1 Oct 2002 19:55:34 -0000       1.27
@@ -1,6 +1,6 @@
 <HTML>
 <!-- THIS PAGE IS AUTOMATICALLY GENERATED.  DO NOT EDIT. -->
-<!-- Mon Aug 19 11:29:08 2002 -->
+<!-- Tue Oct  1 12:08:57 2002 -->
 <!-- USING HT2HTML 1.2 -->
 <!-- SEE http://barry.wooz.org/software/ht2html -->
 <!-- User-specified headers:

Index: inuse.html
===================================================================
RCS file: /cvsroot/tmda/tmda/htdocs/inuse.html,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- inuse.html  27 Aug 2002 19:19:34 -0000      1.26
+++ inuse.html  1 Oct 2002 19:55:34 -0000       1.27
@@ -1,6 +1,6 @@
 <HTML>
 <!-- THIS PAGE IS AUTOMATICALLY GENERATED.  DO NOT EDIT. -->
-<!-- Tue Aug 27 13:17:23 2002 -->
+<!-- Tue Oct  1 12:08:57 2002 -->
 <!-- USING HT2HTML 1.2 -->
 <!-- SEE http://barry.wooz.org/software/ht2html -->
 <!-- User-specified headers:

Index: press.html
===================================================================
RCS file: /cvsroot/tmda/tmda/htdocs/press.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- press.html  26 Sep 2002 01:33:39 -0000      1.3
+++ press.html  1 Oct 2002 19:55:34 -0000       1.4
@@ -1,6 +1,6 @@
 <HTML>
 <!-- THIS PAGE IS AUTOMATICALLY GENERATED.  DO NOT EDIT. -->
-<!-- Wed Sep 25 19:28:00 2002 -->
+<!-- Tue Oct  1 12:08:57 2002 -->
 <!-- USING HT2HTML 1.2 -->
 <!-- SEE http://barry.wooz.org/software/ht2html -->
 <!-- User-specified headers:

Index: requirements.html
===================================================================
RCS file: /cvsroot/tmda/tmda/htdocs/requirements.html,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- requirements.html   13 Sep 2002 00:44:33 -0000      1.26
+++ requirements.html   1 Oct 2002 19:55:34 -0000       1.27
@@ -1,6 +1,6 @@
 <HTML>
 <!-- THIS PAGE IS AUTOMATICALLY GENERATED.  DO NOT EDIT. -->
-<!-- Thu Sep 12 18:32:47 2002 -->
+<!-- Tue Oct  1 12:08:57 2002 -->
 <!-- USING HT2HTML 1.2 -->
 <!-- SEE http://barry.wooz.org/software/ht2html -->
 <!-- User-specified headers:

Index: resources.html
===================================================================
RCS file: /cvsroot/tmda/tmda/htdocs/resources.html,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- resources.html      19 Aug 2002 17:30:07 -0000      1.28
+++ resources.html      1 Oct 2002 19:55:34 -0000       1.29
@@ -1,6 +1,6 @@
 <HTML>
 <!-- THIS PAGE IS AUTOMATICALLY GENERATED.  DO NOT EDIT. -->
-<!-- Mon Aug 19 11:29:09 2002 -->
+<!-- Tue Oct  1 12:08:57 2002 -->
 <!-- USING HT2HTML 1.2 -->
 <!-- SEE http://barry.wooz.org/software/ht2html -->
 <!-- User-specified headers:

Index: results.html
===================================================================
RCS file: /cvsroot/tmda/tmda/htdocs/results.html,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- results.html        19 Aug 2002 17:30:07 -0000      1.28
+++ results.html        1 Oct 2002 19:55:34 -0000       1.29
@@ -1,6 +1,6 @@
 <HTML>
 <!-- THIS PAGE IS AUTOMATICALLY GENERATED.  DO NOT EDIT. -->
-<!-- Mon Aug 19 11:29:09 2002 -->
+<!-- Tue Oct  1 12:08:57 2002 -->
 <!-- USING HT2HTML 1.2 -->
 <!-- SEE http://barry.wooz.org/software/ht2html -->
 <!-- User-specified headers:

Index: tmda-ofmipd.html
===================================================================
RCS file: /cvsroot/tmda/tmda/htdocs/tmda-ofmipd.html,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- tmda-ofmipd.html    4 Sep 2002 23:54:36 -0000       1.8
+++ tmda-ofmipd.html    1 Oct 2002 19:55:34 -0000       1.9
@@ -1,6 +1,6 @@
 <HTML>
 <!-- THIS PAGE IS AUTOMATICALLY GENERATED.  DO NOT EDIT. -->
-<!-- Wed Sep  4 17:50:47 2002 -->
+<!-- Tue Oct  1 12:08:57 2002 -->
 <!-- USING HT2HTML 1.2 -->
 <!-- SEE http://barry.wooz.org/software/ht2html -->
 <!-- User-specified headers:

Index: trouble.html
===================================================================
RCS file: /cvsroot/tmda/tmda/htdocs/trouble.html,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- trouble.html        19 Aug 2002 17:30:07 -0000      1.12
+++ trouble.html        1 Oct 2002 19:55:34 -0000       1.13
@@ -1,6 +1,6 @@
 <HTML>
 <!-- THIS PAGE IS AUTOMATICALLY GENERATED.  DO NOT EDIT. -->
-<!-- Mon Aug 19 11:29:09 2002 -->
+<!-- Tue Oct  1 12:08:57 2002 -->
 <!-- USING HT2HTML 1.2 -->
 <!-- SEE http://barry.wooz.org/software/ht2html -->
 <!-- User-specified headers:

_______________________________________
tmda-cvs mailing list
http://tmda.net/lists/listinfo/tmda-cvs

Reply via email to