You are viewing a plain text version of this content. The canonical link for it is here.
Posted to rivet-dev@tcl.apache.org by da...@apache.org on 2003/08/22 11:42:27 UTC

cvs commit: tcl-rivet/src configure.in.tcl configure.tcl

davidw      2003/08/22 02:42:27

  Modified:    .        ChangeLog
               doc      rivet.xml
               doc/html commands.html.en directives.html.en help.html.en
                        help.html.it index.html.en index.html.it
                        installation.html.en internals.html.en
                        internals.html.it tcl_packages.html.en
                        upgrading.html.en upgrading.html.it
               src      configure.in.tcl configure.tcl
  Log:
  * doc/rivet.xml: Added installation instructions corresponding to the
    new ./configure.tcl system. Ran the spellchecker.
  
  Revision  Changes    Path
  1.133     +3 -0      tcl-rivet/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /home/cvs/tcl-rivet/ChangeLog,v
  retrieving revision 1.132
  retrieving revision 1.133
  diff -u -r1.132 -r1.133
  --- ChangeLog	22 Aug 2003 08:58:54 -0000	1.132
  +++ ChangeLog	22 Aug 2003 09:42:27 -0000	1.133
  @@ -1,5 +1,8 @@
   2003-08-22  David N. Welton  <da...@dedasys.com>
   
  +	* doc/rivet.xml: Added installation instructions corresponding to
  +	the new ./configure.tcl system. Ran the spellchecker.
  +
   	* src/buildscripts/aardvark.tcl (aardvark::runbuildcommand):
   	Rebuild only if file depended on is newer than the target, rather
   	than >=.  This prevents some files from being remade if make is
  
  
  
  1.29      +76 -26    tcl-rivet/doc/rivet.xml
  
  Index: rivet.xml
  ===================================================================
  RCS file: /home/cvs/tcl-rivet/doc/rivet.xml,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- rivet.xml	22 Jul 2003 08:05:38 -0000	1.28
  +++ rivet.xml	22 Aug 2003 09:42:27 -0000	1.29
  @@ -137,27 +137,74 @@
   	<title>Building Rivet</title>
   	<para>
   	  Rivet uses a unique build system which we created especially
  -	  for this project.  It utilizes the information included in
  -	  Apache and Tcl regarding their configurations, in order to
  -	  compile itself via a series of Tcl scripts, which are
  -	  located in the <filename>buildscripts/</filename> directory.
  +	  for this project.  It utilizes the information included with
  +	  Apache (via the <command>apxs</command> command) and Tcl
  +	  (<filename>tclConfig.sh</filename>) about their
  +	  configurations, so that Rivet can compile itself.
   	</para>
   	<substeps>
   	  <step>
  -	    <title>Edit src/make.tcl</title>
  +	    <title>Run ./configure.tcl</title>
   	    <para>
  -	      It may be necessary to edit
  -	      <filename>src/make.tcl</filename> by hand in order to
  -	      set certain options.  Try the next step first, and see
  -	      if it's successful.
  +	      This is similar to the <filename>configure</filename>
  +	      script included with many systems.  It's written in Tcl
  +	      though, for increased speed and clarity.  It takes
  +	      several arguments:
   	    </para>
  +
  +	    <variablelist>
  +	      <varlistentry>
  +		<term>-help</term>
  +		<listitem>
  +		  <para>Prints usage information.</para>
  +		</listitem>
  +	      </varlistentry>
  +	      <varlistentry>
  +		<term>-enable-symbols</term>
  +		<listitem>
  +		  <para>Compiles Rivet with debugging symbols.</para>
  +		</listitem>
  +	      </varlistentry>
  +	      <varlistentry>
  +		<term>-prefix <replaceable>directory</replaceable></term>
  +		<listitem>
  +		  <para>
  +		    Install Rivet Tcl packages to
  +		    <replaceable>directory</replaceable>.
  +		  </para>
  +		</listitem>
  +	      </varlistentry>
  +	      <varlistentry>
  +		<term>-with-apxs <replaceable>file</replaceable></term>
  +		<listitem>
  +		  <para>Use <replaceable>file</replaceable> as apxs binary to
  +		  gather information about the local Apache installation.</para>
  +		</listitem>
  +	      </varlistentry>
  +	      <varlistentry>
  +		<term>-with-tclconfig <replaceable>file</replaceable></term>
  +		<listitem>
  +		  <para>
  +		    Specify <replaceable>file</replaceable> as tclConfig.sh.
  +		  </para>
  +		</listitem>
  +	      </varlistentry>
  +	    </variablelist>
  +
  +	    <programlisting>cd src/
  +./configure.tcl
  +Configuring
  +.........done.</programlisting>
  +
   	  </step>
   	  <step>
  -	    <para>At this point, you are ready to run the build
  -	      system:</para>
  +	    <title>Run make.tcl</title>
  +	    <para>
  +	      At this point, you are ready to run the build
  +	      system:
  +	    </para>
   
  -	    <programlisting>cd src/
  -./make.tcl <replaceable>option</replaceable></programlisting>
  +	    <programlisting>./make.tcl <replaceable>option</replaceable></programlisting>
   
   	    <para>where <replaceable>option</replaceable> can be
   	      either <option>shared</option> or
  @@ -195,7 +242,7 @@
   	</para>
   
   	<programlisting>AddType application/x-httpd-rivet .rvt
  -	  AddType application/x-rivet-tcl .tcl</programlisting>
  +AddType application/x-rivet-tcl .tcl</programlisting>
   
   	<para>
   	  These tell Apache to process files with the
  @@ -215,7 +262,7 @@
   
       <para>
         These directives are used within the Apache httpd server
  -      configuration files to modify Apache Rivet's behaviour.  Their
  +      configuration files to modify Apache Rivet's behavior.  Their
         precedence is as follows: <command>RivetDirConf</command>,
         <command>RivetUserConf</command>,
         <command>RivetServerConf</command>, meaning that DirConf will
  @@ -435,10 +482,10 @@
   	      </term>
   	      <listitem>
   		<para>
  -		  If on, Rivet will create a seperate Tcl interpreter
  +		  If on, Rivet will create a separate Tcl interpreter
   		  for each Apache virtual host.  This is useful in an
  -		  ISP type situation where it is desirable to seperate
  -		  clients into seperate interpreters, so that they
  +		  ISP type situation where it is desirable to separate
  +		  clients into separate interpreters, so that they
   		  don't accidentally interfere with one another.
   		</para>
   	      </listitem>
  @@ -520,7 +567,7 @@
   	    additional forms of <command>var</command>:
   	    <command>var_qs</command> and <command>var_post</command>.
   	    These two restrict the retrieval of information to
  -	    parameters arriving very the querystring
  +	    parameters arriving via the querystring
   	    (?foo=bar&amp;bee=bop) or POSTing, respectively.
   	  </para>
   	  <variablelist>
  @@ -1066,7 +1113,9 @@
       <itemizedlist>
   
         <listitem>
  -	<para>commserver is a package providing a .</para>
  +	<para>commserver is a package providing a server that can be
  +	used for IPC.  Still experimental.  Requires the comm package
  +	from tcllib.</para>
         </listitem>
   
         <listitem>
  @@ -1147,7 +1196,7 @@
   	</listitem>
   	<listitem>
   	  <para>
  -	    <ulink url="http://www.tcl.tk"/> is the cannonical site
  +	    <ulink url="http://www.tcl.tk"/> is the canonical site
   	    for Tcl information.
   	  </para>
   	</listitem>
  @@ -1175,7 +1224,7 @@
         <title>IRC</title>
   
         <para>
  -        Occassionally, someone from the Rivet team is on IRC at
  +        Occasionally, someone from the Rivet team is on IRC at
           irc.freenode.net, channel #tcl.
         </para>
       </section>
  @@ -1188,7 +1237,8 @@
         This section easily falls out of date, as new code is added, old
         code is removed, and changes are made.  The best place to look
         is the source code itself.  If you are interested in the changes
  -      themselves FIXME.
  +      themselves, <command>cvs</command> can provide you with
  +      information about what has been happening with the code.
       </para>
       <section>
         <title>Initialization</title>
  @@ -1220,7 +1270,7 @@
         </para>
       </section>
       <section>
  -      <title>Page Parsing, Execution and Cacheing</title>
  +      <title>Page Parsing, Execution and Caching</title>
         <para>
   	When a Rivet page is requested, it is transformed into an
   	ordinary Tcl script by parsing the file for the &lt;? ?&gt;
  
  
  
  1.3       +1 -1      tcl-rivet/doc/html/commands.html.en
  
  Index: commands.html.en
  ===================================================================
  RCS file: /home/cvs/tcl-rivet/doc/html/commands.html.en,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- commands.html.en	5 Jul 2003 08:33:33 -0000	1.2
  +++ commands.html.en	22 Aug 2003 09:42:27 -0000	1.3
  @@ -8,7 +8,7 @@
   	    additional forms of <span style="font-family:monospace"><b class="command">var</b></span>:
   	    <span style="font-family:monospace"><b class="command">var_qs</b></span> and <span style="font-family:monospace"><b class="command">var_post</b></span>.
   	    These two restrict the retrieval of information to
  -	    parameters arriving very the querystring
  +	    parameters arriving via the querystring
   	    (?foo=bar&amp;bee=bop) or POSTing, respectively.
   	  </div><div class="variablelist"><dl><dt><span class="term">
   		<div class="cmdsynopsis" style="width:80%"><span style="background:#bbbbff ; margin:1ex ; padding:.4ex ;  word-spacing:1ex "><span style="font-family:monospace; text-decoration:underline">get</span> <span style="font-family:monospace; text-decoration:underline"><i class="replaceable"><tt>varname</tt></i></span> <span style="font-family:monospace; text-decoration:underline"><i class="replaceable"><tt>?<span class="optional">default</span>?</tt></i></span></span></div>
  
  
  
  1.3       +4 -4      tcl-rivet/doc/html/directives.html.en
  
  Index: directives.html.en
  ===================================================================
  RCS file: /home/cvs/tcl-rivet/doc/html/directives.html.en,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- directives.html.en	5 Jul 2003 08:33:33 -0000	1.2
  +++ directives.html.en	22 Aug 2003 09:42:27 -0000	1.3
  @@ -1,6 +1,6 @@
   <html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Rivet Apache Directives</title><link rel="stylesheet" href="rivet.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.60.1"><link rel="home" href="index.html.en" title="Apache Rivet"><link rel="up" href="index.html.en" title="Apache Rivet"><link rel="previous" href="installation.html.en" title="Apache Rivet Installation"><link rel="next" href="commands.html.en" title="Rivet Tcl Commands and Variables"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Rivet Apache Directives</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="installation.html.en"><img src="images/prev.png" alt="Prev"></a>�</td><th width="60%" align="center">�</th><td width="20%" align="right">�<a accesskey="n" href="commands.html.en"><img src="images/next.png" alt="Next"></a></td></tr></table></div><div class="section" lang="en"><div class="titlepage"><div><div><hr><h2 class="title" style="clear: both"><a name="directives"></a>Rivet Apache Directives</h2></div></div><div></div></div><p style="width:90%">
         These directives are used within the Apache httpd server
  -      configuration files to modify Apache Rivet's behaviour.  Their
  +      configuration files to modify Apache Rivet's behavior.  Their
         precedence is as follows: <span style="font-family:monospace"><b class="command">RivetDirConf</b></span>,
         <span style="font-family:monospace"><b class="command">RivetUserConf</b></span>,
         <span style="font-family:monospace"><b class="command">RivetServerConf</b></span>, meaning that DirConf will
  @@ -86,10 +86,10 @@
   		</div></div></dd><dt><span class="term">
   		<div class="cmdsynopsis" style="width:80%"><span style="background:#bbbbff ; margin:1ex ; padding:.4ex ;  word-spacing:1ex "><span style="font-family:monospace; text-decoration:underline">SeperateVirtualInterps</span> (<span style="font-family:monospace; text-decoration:underline">yes</span> | <span style="font-family:monospace; text-decoration:underline">no</span>)</span></div>
   	      </span></dt><dd><div style="padding:4 ; margin-top:3 ;  margin-bottom:3 ; width:75%"><div style=" margin:1ex ; margin-bottom:1.5ex ; padding .5ex">
  -		  If on, Rivet will create a seperate Tcl interpreter
  +		  If on, Rivet will create a separate Tcl interpreter
   		  for each Apache virtual host.  This is useful in an
  -		  ISP type situation where it is desirable to seperate
  -		  clients into seperate interpreters, so that they
  +		  ISP type situation where it is desirable to separate
  +		  clients into separate interpreters, so that they
   		  don't accidentally interfere with one another.
   		</div></div></dd></dl></div></div></dd><dt><span class="term">
   	  <div class="cmdsynopsis" style="width:80%"><span style="background:#bbbbff ; margin:1ex ; padding:.4ex ;  word-spacing:1ex "><span style="font-weight:bold ; font-family:monospace">RivetDirConf</span>  (<span style="font-family:monospace; text-decoration:underline">BeforeScript</span> | <span style="font-family:monospace; text-decoration:underline">AfterScript</span> | <span style="font-family:monospace; text-decoration:underline">ErrorScript</span> | <span style="font-family:monospace; text-decoration:underline">UploadDirectory</span>)</span></div>
  
  
  
  1.7       +6 -6      tcl-rivet/doc/html/help.html.en
  
  Index: help.html.en
  ===================================================================
  RCS file: /home/cvs/tcl-rivet/doc/html/help.html.en,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- help.html.en	22 Jul 2003 08:05:39 -0000	1.6
  +++ help.html.en	22 Aug 2003 09:42:27 -0000	1.7
  @@ -1,4 +1,4 @@
  -<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Resources - How to Get Help</title><link rel="stylesheet" href="rivet.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.60.1"><link rel="home" href="index.html.en" title="Apache Rivet"><link rel="up" href="index.html.en" title="Apache Rivet"><link rel="previous" href="tcl_packages.html.en" title="Rivet Tcl Packages"><link rel="next" href="internals.html.en" title="Rivet Internals"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Resources - How to Get Help</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="tcl_packages.html.en"><img src="images/prev.png" alt="Prev"></a>�</td><th width="60%" align="center">�</th><td width="20%" align="right">�<a accesskey="n" href="internals.html.en"><img src="images/next.png" alt="Next"></a></td></tr></table></div><div class="section" lang="en"><div class="titlepage"><div><div><hr><h2 class="title" style="clear: both"><a name="help"></a>Resources - How to Get Help</h2></div></div><div></div></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="id5396718"></a>Mailing Lists</h3></div></div><div></div></div><p style="width:90%">
  +<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Resources - How to Get Help</title><link rel="stylesheet" href="rivet.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.60.1"><link rel="home" href="index.html.en" title="Apache Rivet"><link rel="up" href="index.html.en" title="Apache Rivet"><link rel="previous" href="tcl_packages.html.en" title="Rivet Tcl Packages"><link rel="next" href="internals.html.en" title="Rivet Internals"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Resources - How to Get Help</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="tcl_packages.html.en"><img src="images/prev.png" alt="Prev"></a>�</td><th width="60%" align="center">�</th><td width="20%" align="right">�<a accesskey="n" href="internals.html.en"><img src="images/next.png" alt="Next"></a></td></tr></table></div><div class="section" lang="en"><div class="titlepage"><div><div><hr><h2 class="title" style="clear: both"><a name="help"></a>Resources - How to Get Help</h2></div></div><div></div></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="id5396846"></a>Mailing Lists</h3></div></div><div></div></div><p style="width:90%">
   	The Rivet mailing list is the first place you should turn for
   	help, if you haven't found the solution to your problem in the
   	documentation.  Send email to
  @@ -9,7 +9,7 @@
   	<tt class="email">&lt;<a href="mailto:rivet-list-subscribe@tcl.apache.org">rivet-<i class="replaceable"><tt>list</tt></i>-subscribe@tcl.apache.org</a>&gt;</tt>.
         </p><p style="width:90%">
   	The mailing list archives are available at <a href="http://nagoya.apache.org/eyebrowse/SummarizeList?listId=118" target="_top">http://nagoya.apache.org/eyebrowse/SummarizeList?listId=118</a>
  -      </p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="id5396764"></a>Newsgroup</h3></div></div><div></div></div><p style="width:90%">
  +      </p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="id5396893"></a>Newsgroup</h3></div></div><div></div></div><p style="width:90%">
   The <a href="news:comp.lang.tcl" target="_top">news:comp.lang.tcl</a> newsgroup is a good place to ask
   about Tcl questions in general.  Rivet developers also follow the
   newsgroup, but it's best to ask Rivet-specific questions on the Rivet
  @@ -26,16 +26,16 @@
   	    <a href="http://httpd.apache.org/docs/" target="_top">http://httpd.apache.org/docs/</a> is the first
   	    place to go for questions about the Apache web server.
   	  </div></li><li><div style=" margin:1ex ; margin-bottom:1.5ex ; padding .5ex">
  -	    <a href="http://www.tcl.tk" target="_top">http://www.tcl.tk</a> is the cannonical site
  +	    <a href="http://www.tcl.tk" target="_top">http://www.tcl.tk</a> is the canonical site
   	    for Tcl information.
   	  </div></li><li><div style=" margin:1ex ; margin-bottom:1.5ex ; padding .5ex">
   	    <a href="http://wiki.tcl.tk" target="_top">http://wiki.tcl.tk</a> is the Tcl'ers Wiki, a
   	    free-form place to search for answers and ask for help.
  -	  </div></li></ul></div></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="id5396868"></a>Bug Tracking System</h3></div></div><div></div></div><p style="width:90%">
  +	  </div></li></ul></div></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="id5396996"></a>Bug Tracking System</h3></div></div><div></div></div><p style="width:90%">
   	Apache Rivet uses the Apache Bug Tracking system at <a href="http://nagoya.apache.org/bugzilla/" target="_top">http://nagoya.apache.org/bugzilla/</a>.  Here,
   	you can report problems, or check and see if existing issues
   	are already known and being dealt with.
  -      </p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="id5396889"></a>IRC</h3></div></div><div></div></div><p style="width:90%">
  -        Occassionally, someone from the Rivet team is on IRC at
  +      </p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="id5397017"></a>IRC</h3></div></div><div></div></div><p style="width:90%">
  +        Occasionally, someone from the Rivet team is on IRC at
           irc.freenode.net, channel #tcl.
         </p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="tcl_packages.html.en"><img src="images/prev.png" alt="Prev"></a>�</td><td width="20%" align="center"><a accesskey="u" href="index.html.en"><img src="images/up.png" alt="Up"></a></td><td width="40%" align="right">�<a accesskey="n" href="internals.html.en"><img src="images/next.png" alt="Next"></a></td></tr><tr><td width="40%" align="left" valign="top">Rivet Tcl Packages�</td><td width="20%" align="center"><a accesskey="h" href="index.html.en"><img src="images/home.png" alt="Home"></a></td><td width="40%" align="right" valign="top">�Rivet Internals</td></tr></table></div></body></html>
  
  
  
  1.2       +3 -3      tcl-rivet/doc/html/help.html.it
  
  Index: help.html.it
  ===================================================================
  RCS file: /home/cvs/tcl-rivet/doc/html/help.html.it,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- help.html.it	22 Jul 2003 09:03:02 -0000	1.1
  +++ help.html.it	22 Aug 2003 09:42:27 -0000	1.2
  @@ -1,4 +1,4 @@
  -<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Risorse - Come ottenere aiuto</title><link rel="stylesheet" href="rivet.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.60.1"><link rel="home" href="index.html.it" title="Apache Rivet"><link rel="up" href="index.html.it" title="Apache Rivet"><link rel="previous" href="tcl_packages.html.it" title="Pacchetti Tcl per Rivet"><link rel="next" href="internals.html.it" title="Rivet Internals"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Risorse - Come ottenere aiuto</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="tcl_packages.html.it"><img src="images/prev.png" alt="Indietro"></a>�</td><th width="60%" align="center">�</th><td width="20%" align="right">�<a accesskey="n" href="internals.html.it"><img src="images/next.png" alt="Avanti"></a></td></tr></table></div><div class="section" lang="it"><div class="titlepage"><div><div><hr><h2 class="title" style="clear: both"><a name="help"></a>Risorse - Come ottenere aiuto</h2></div></div><div></div></div><div class="section" lang="it"><div class="titlepage"><div><div><h3 class="title"><a name="id5396771"></a>Mailing Lists</h3></div></div><div></div></div><p style="width:90%">
  +<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Risorse - Come ottenere aiuto</title><link rel="stylesheet" href="rivet.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.60.1"><link rel="home" href="index.html.it" title="Apache Rivet"><link rel="up" href="index.html.it" title="Apache Rivet"><link rel="previous" href="tcl_packages.html.it" title="Pacchetti Tcl per Rivet"><link rel="next" href="internals.html.it" title="Rivet Internals"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Risorse - Come ottenere aiuto</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="tcl_packages.html.it"><img src="images/prev.png" alt="Indietro"></a>�</td><th width="60%" align="center">�</th><td width="20%" align="right">�<a accesskey="n" href="internals.html.it"><img src="images/next.png" alt="Avanti"></a></td></tr></table></div><div class="section" lang="it"><div class="titlepage"><div><div><hr><h2 class="title" style="clear: both"><a name="help"></a>Risorse - Come ottenere aiuto</h2></div></div><div></div></div><div class="section" lang="it"><div class="titlepage"><div><div><h3 class="title"><a name="id5396772"></a>Mailing Lists</h3></div></div><div></div></div><p style="width:90%">
   	Se non avete trovato la soluzione al problema nella
   	documentazione, la mailing list di Rivet � il primo posto da
   	visitare per ottenere aiuto; spedite un'email a
  @@ -11,7 +11,7 @@
   	Gli archivi delle mailing list sono disponibili a questo 
   	indirizzo: 
   	<a href="http://nagoya.apache.org/eyebrowse/SummarizeList?listId=118" target="_top">http://nagoya.apache.org/eyebrowse/SummarizeList?listId=118</a>
  -      </p></div><div class="section" lang="it"><div class="titlepage"><div><div><h3 class="title"><a name="id5396818"></a>Newsgroup</h3></div></div><div></div></div><p style="width:90%">
  +      </p></div><div class="section" lang="it"><div class="titlepage"><div><div><h3 class="title"><a name="id5396819"></a>Newsgroup</h3></div></div><div></div></div><p style="width:90%">
   	Il newsgroup <a href="news:comp.lang.tcl" target="_top">news:comp.lang.tcl</a> � un buon posto
   	per porre domande circa Tcl in generale. Gli sviluppatori di
   	Rivet seguono anche il newsgroup, ma � meglio porre domande
  @@ -33,7 +33,7 @@
   	  </div></li><li><div style=" margin:1ex ; margin-bottom:1.5ex ; padding .5ex">
   	    <a href="http://wiki.tcl.tk" target="_top">http://wiki.tcl.tk</a> � il Tcl'er Wiki, un
   	    posto dove poter ricercare domande e risposte di aiuto.
  -	  </div></li></ul></div></div><div class="section" lang="it"><div class="titlepage"><div><div><h3 class="title"><a name="id5396936"></a>Bug Tracking System</h3></div></div><div></div></div><p style="width:90%">
  +	  </div></li></ul></div></div><div class="section" lang="it"><div class="titlepage"><div><div><h3 class="title"><a name="id5396937"></a>Bug Tracking System</h3></div></div><div></div></div><p style="width:90%">
   	Apache Rivet usa il sistema Apache Bug Tracking presso <a href="http://nagoya.apache.org/bugzilla/" target="_top">http://nagoya.apache.org/bugzilla/</a>.  Qui
   	� possibile segnalare problemi o verificare se sono gi� 
   	conosciuti e quindi rintracciare pubblicazioni che lo 
  
  
  
  1.9       +1 -1      tcl-rivet/doc/html/index.html.en
  
  Index: index.html.en
  ===================================================================
  RCS file: /home/cvs/tcl-rivet/doc/html/index.html.en,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- index.html.en	20 Aug 2003 17:20:47 -0000	1.8
  +++ index.html.en	22 Aug 2003 09:42:27 -0000	1.9
  @@ -2,7 +2,7 @@
   	��<tt class="email">&lt;<a href="mailto:davidw@apache.org">davidw@apache.org</a>&gt;</tt><br>
   	</p></div></div></div></div><div><div class="author"><h3 class="author"><span class="firstname">Damon</span> <span class="surname">Courtney</span></h3><div class="affiliation"><div class="address"><p><br>
   	��<tt class="email">&lt;<a href="mailto:damonc@apache.org">damonc@apache.org</a>&gt;</tt><br>
  -	</p></div></div></div></div><div><p class="copyright">Copyright � 2002, 2003 Apache Software Foundation</p></div></div><div></div><hr></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><a href="index.html.en#id5393752">Introduction to Apache Rivet</a></dt><dt><a href="installation.html.en">Apache Rivet Installation</a></dt><dt><a href="directives.html.en">Rivet Apache Directives</a></dt><dt><a href="commands.html.en">Rivet Tcl Commands and Variables</a></dt><dt><a href="examples.html.en">Examples and Usage</a></dt><dt><a href="tcl_packages.html.en">Rivet Tcl Packages</a></dt><dt><a href="help.html.en">Resources - How to Get Help</a></dt><dd><dl><dt><a href="help.html.en#id5396718">Mailing Lists</a></dt><dt><a href="help.html.en#id5396764">Newsgroup</a></dt><dt><a href="help.html.en#websites">Web Sites</a></dt><dt><a href="help.html.en#id5396868">Bug Tracking System</a></dt><dt><a href="help.html.en#id5396889">IRC</a></dt></dl></dd><dt><a href="internals.html.en">Rivet Internals</a></dt><dd><dl><dt><a href="internals.html.en#id5395903">Initialization</a></dt><dt><a href="internals.html.en#id5395940">RivetChan</a></dt><dt><a href="internals.html.en#id5395969">Page Parsing, Execution and Cacheing</a></dt></dl></dd><dt><a href="upgrading.html.en">Upgrading from mod_dtcl or NeoWebScript</a></dt><dd><dl><dt><a href="upgrading.html.en#id5396046">mod_dtcl</a></dt><dt><a href="upgrading.html.en#id5396062">NeoWebScript</a></dt></dl></dd></dl></div><p style="width:90%">
  +	</p></div></div></div></div><div><p class="copyright">Copyright � 2002, 2003 Apache Software Foundation</p></div></div><div></div><hr></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><a href="index.html.en#id5393752">Introduction to Apache Rivet</a></dt><dt><a href="installation.html.en">Apache Rivet Installation</a></dt><dt><a href="directives.html.en">Rivet Apache Directives</a></dt><dt><a href="commands.html.en">Rivet Tcl Commands and Variables</a></dt><dt><a href="examples.html.en">Examples and Usage</a></dt><dt><a href="tcl_packages.html.en">Rivet Tcl Packages</a></dt><dt><a href="help.html.en">Resources - How to Get Help</a></dt><dd><dl><dt><a href="help.html.en#id5396846">Mailing Lists</a></dt><dt><a href="help.html.en#id5396893">Newsgroup</a></dt><dt><a href="help.html.en#websites">Web Sites</a></dt><dt><a href="help.html.en#id5396996">Bug Tracking System</a></dt><dt><a href="help.html.en#id5397017">IRC</a></dt></dl></dd><dt><a href="internals.html.en">Rivet Internals</a></dt><dd><dl><dt><a href="internals.html.en#id5396036">Initialization</a></dt><dt><a href="internals.html.en#id5396073">RivetChan</a></dt><dt><a href="internals.html.en#id5396102">Page Parsing, Execution and Caching</a></dt></dl></dd><dt><a href="upgrading.html.en">Upgrading from mod_dtcl or NeoWebScript</a></dt><dd><dl><dt><a href="upgrading.html.en#id5396185">mod_dtcl</a></dt><dt><a href="upgrading.html.en#id5396201">NeoWebScript</a></dt></dl></dd></dl></div><p style="width:90%">
       This document is also available in the following languages: <a href="index.html.it" target="_top">Italian</a>, <a href="index.html.ru" target="_top">Russian</a>
     </p><p style="width:90%">
       Document reversion: $Revision$, last modified $Date$ by $Author$.
  
  
  
  1.2       +3 -3      tcl-rivet/doc/html/index.html.it
  
  Index: index.html.it
  ===================================================================
  RCS file: /home/cvs/tcl-rivet/doc/html/index.html.it,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- index.html.it	22 Jul 2003 09:03:02 -0000	1.1
  +++ index.html.it	22 Aug 2003 09:42:27 -0000	1.2
  @@ -2,10 +2,10 @@
   	��<tt class="email">&lt;<a href="mailto:davidw@apache.org">davidw@apache.org</a>&gt;</tt><br>
   	</p></div></div></div></div><div><div class="author"><h3 class="author"><span class="firstname">Damon</span> <span class="surname">Courtney</span></h3><div class="affiliation"><div class="address"><p><br>
   	��<tt class="email">&lt;<a href="mailto:damonc@apache.org">damonc@apache.org</a>&gt;</tt><br>
  -	</p></div></div></div></div><div><p class="othercredit"><span class="contrib">Italian Translation</span>: <span class="firstname">Fabio</span> <span class="surname">Zanotti</span></p><div class="affiliation"><span class="orgname">Italian Linux Documentation Project<br></span><div class="address"><p><tt class="email">&lt;<a href="mailto:zendune@virgilio.it">zendune@virgilio.it</a>&gt;</tt></p></div></div></div><div><p class="copyright">Copyright � 2002, 2003 Apache Software Foundation</p></div></div><div></div><hr></div><div class="toc"><p><b>Sommario</b></p><dl><dt><a href="index.html.it#id5393782">Introduzione ad Apache Rivet</a></dt><dt><a href="installation.html.it">Installazione di Apache Rivet</a></dt><dt><a href="directives.html.it">Direttive di Apache</a></dt><dt><a href="commands.html.it">Comandi e variabili Tcl di Rivet</a></dt><dt><a href="examples.html.it">Esempi ed uso</a></dt><dt><a href="tcl_packages.html.it">Pacchetti Tcl per Rivet</a></dt><dt><a href="help.html.it">Risorse - Come ottenere aiuto</a></dt><dd><dl><dt><a href="help.html.it#id5396771">Mailing Lists</a></dt><dt><a href="help.html.it#id5396818">Newsgroup</a></dt><dt><a href="help.html.it#websites">Siti Web</a></dt><dt><a href="help.html.it#id5396936">Bug Tracking System</a></dt></dl></dd><dt><a href="internals.html.it">Rivet Internals</a></dt><dd><dl><dt><a href="internals.html.it#id5396988">Inizializzazione</a></dt><dt><a href="internals.html.it#id5397028">RivetChan</a></dt><dt><a href="internals.html.it#id5397063">Parsing delle pagine, Esecuzione e Cacheing</a></dt></dl></dd><dt><a href="upgrading.html.it">Aggiornamenti da mod_dtcl o NeoWebScript</a></dt><dd><dl><dt><a href="upgrading.html.it#id5396174">mod_dtcl</a></dt><dt><a href="upgrading.html.it#id5396194">NeoWebScript</a></dt></dl></dd></dl></div><p style="width:90%">
  +	</p></div></div></div></div><div><p class="othercredit"><span class="contrib">Italian Translation</span>: <span class="firstname">Fabio</span> <span class="surname">Zanotti</span></p><div class="affiliation"><span class="orgname">Italian Linux Documentation Project<br></span><div class="address"><p><tt class="email">&lt;<a href="mailto:zendune@virgilio.it">zendune@virgilio.it</a>&gt;</tt></p></div></div></div><div><p class="copyright">Copyright � 2002, 2003 Apache Software Foundation</p></div></div><div></div><hr></div><div class="toc"><p><b>Sommario</b></p><dl><dt><a href="index.html.it#id5393784">Introduzione ad Apache Rivet</a></dt><dt><a href="installation.html.it">Installazione di Apache Rivet</a></dt><dt><a href="directives.html.it">Direttive di Apache</a></dt><dt><a href="commands.html.it">Comandi e variabili Tcl di Rivet</a></dt><dt><a href="examples.html.it">Esempi ed uso</a></dt><dt><a href="tcl_packages.html.it">Pacchetti Tcl per Rivet</a></dt><dt><a href="help.html.it">Risorse - Come ottenere aiuto</a></dt><dd><dl><dt><a href="help.html.it#id5396772">Mailing Lists</a></dt><dt><a href="help.html.it#id5396819">Newsgroup</a></dt><dt><a href="help.html.it#websites">Siti Web</a></dt><dt><a href="help.html.it#id5396937">Bug Tracking System</a></dt></dl></dd><dt><a href="internals.html.it">Rivet Internals</a></dt><dd><dl><dt><a href="internals.html.it#id5396989">Inizializzazione</a></dt><dt><a href="internals.html.it#id5397029">RivetChan</a></dt><dt><a href="internals.html.it#id5397064">Parsing delle pagine, Esecuzione e Cacheing</a></dt></dl></dd><dt><a href="upgrading.html.it">Aggiornamenti da mod_dtcl o NeoWebScript</a></dt><dd><dl><dt><a href="upgrading.html.it#id5396176">mod_dtcl</a></dt><dt><a href="upgrading.html.it#id5396195">NeoWebScript</a></dt></dl></dd></dl></div><p style="width:90%">
       Questo documento � anche disponibile nelle seguenti lingue: <a href="index.html.en" target="_top">Inglese</a>, <a href="index.html.ru" target="_top">Russo</a>
  -  </p><p style="width:90%">Questo documento e` basato sulla versione 1.27 dell'originale
  -  in inglese.</p><div class="section" lang="it"><div class="titlepage"><div><div><hr><h2 class="title" style="clear: both"><a name="id5393782"></a>Introduzione ad Apache Rivet</h2></div></div><div></div></div><p style="width:90%">
  +  </p><p style="width:90%">Questo documento � basato sulla versione 1.27 dell'originale
  +  in inglese.</p><div class="section" lang="it"><div class="titlepage"><div><div><hr><h2 class="title" style="clear: both"><a name="id5393784"></a>Introduzione ad Apache Rivet</h2></div></div><div></div></div><p style="width:90%">
         Apache Rivet � un sistema per la creazione di contenuti web
         dinamici mediante un linguaggio di programmazione integrato con
         il Web Server Apache . � progettato per essere veloce, 
  
  
  
  1.3       +23 -13    tcl-rivet/doc/html/installation.html.en
  
  Index: installation.html.en
  ===================================================================
  RCS file: /home/cvs/tcl-rivet/doc/html/installation.html.en,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- installation.html.en	5 Jul 2003 08:33:33 -0000	1.2
  +++ installation.html.en	22 Aug 2003 09:42:27 -0000	1.3
  @@ -30,18 +30,28 @@
   
   	</p></li><li><p class="title"><b>Building Rivet</b></p><p style="width:90%">
   	  Rivet uses a unique build system which we created especially
  -	  for this project.  It utilizes the information included in
  -	  Apache and Tcl regarding their configurations, in order to
  -	  compile itself via a series of Tcl scripts, which are
  -	  located in the <tt class="filename">buildscripts/</tt> directory.
  -	</p><ol type="a"><li><p class="title"><b>Edit src/make.tcl</b></p><p style="width:90%">
  -	      It may be necessary to edit
  -	      <tt class="filename">src/make.tcl</tt> by hand in order to
  -	      set certain options.  Try the next step first, and see
  -	      if it's successful.
  -	    </p></li><li><p style="width:90%">At this point, you are ready to run the build
  -	      system:</p><pre style="background:#bbffbb ; width:90ex ; margin: 2ex ;      padding: 1ex; border: solid black 1px ; white-space: pre;      font-family:monospace ; " class="programlisting">cd src/
  -./make.tcl <i class="replaceable"><tt>option</tt></i></pre><p style="width:90%">where <i class="replaceable"><tt>option</tt></i> can be
  +	  for this project.  It utilizes the information included with
  +	  Apache (via the <span style="font-family:monospace"><b class="command">apxs</b></span> command) and Tcl
  +	  (<tt class="filename">tclConfig.sh</tt>) about their
  +	  configurations, so that Rivet can compile itself.
  +	</p><ol type="a"><li><p class="title"><b>Run ./configure.tcl</b></p><p style="width:90%">
  +	      This is similar to the <tt class="filename">configure</tt>
  +	      script included with many systems.  It's written in Tcl
  +	      though, for increased speed and clarity.  It takes
  +	      several arguments:
  +	    </p><div class="variablelist"><dl><dt><span class="term">-help</span></dt><dd><div style="padding:4 ; margin-top:3 ;  margin-bottom:3 ; width:75%"><div style=" margin:1ex ; margin-bottom:1.5ex ; padding .5ex">Prints usage information.</div></div></dd><dt><span class="term">-enable-symbols</span></dt><dd><div style="padding:4 ; margin-top:3 ;  margin-bottom:3 ; width:75%"><div style=" margin:1ex ; margin-bottom:1.5ex ; padding .5ex">Compiles Rivet with debugging symbols.</div></div></dd><dt><span class="term">-prefix <i class="replaceable"><tt>directory</tt></i></span></dt><dd><div style="padding:4 ; margin-top:3 ;  margin-bottom:3 ; width:75%"><div style=" margin:1ex ; margin-bottom:1.5ex ; padding .5ex">
  +		    Install Rivet Tcl packages to
  +		    <i class="replaceable"><tt>directory</tt></i>.
  +		  </div></div></dd><dt><span class="term">-with-apxs <i class="replaceable"><tt>file</tt></i></span></dt><dd><div style="padding:4 ; margin-top:3 ;  margin-bottom:3 ; width:75%"><div style=" margin:1ex ; margin-bottom:1.5ex ; padding .5ex">Use <i class="replaceable"><tt>file</tt></i> as apxs binary to
  +		  gather information about the local Apache installation.</div></div></dd><dt><span class="term">-with-tclconfig <i class="replaceable"><tt>file</tt></i></span></dt><dd><div style="padding:4 ; margin-top:3 ;  margin-bottom:3 ; width:75%"><div style=" margin:1ex ; margin-bottom:1.5ex ; padding .5ex">
  +		    Specify <i class="replaceable"><tt>file</tt></i> as tclConfig.sh.
  +		  </div></div></dd></dl></div><pre style="background:#bbffbb ; width:90ex ; margin: 2ex ;      padding: 1ex; border: solid black 1px ; white-space: pre;      font-family:monospace ; " class="programlisting">cd src/
  +./configure.tcl
  +Configuring
  +.........done.</pre></li><li><p class="title"><b>Run make.tcl</b></p><p style="width:90%">
  +	      At this point, you are ready to run the build
  +	      system:
  +	    </p><pre style="background:#bbffbb ; width:90ex ; margin: 2ex ;      padding: 1ex; border: solid black 1px ; white-space: pre;      font-family:monospace ; " class="programlisting">./make.tcl <i class="replaceable"><tt>option</tt></i></pre><p style="width:90%">where <i class="replaceable"><tt>option</tt></i> can be
   	      either <tt><span style="text-decoration:underline">shared</span></tt> or
   	      <tt><span style="text-decoration:underline">static</span></tt>.
   	    </p></li><li><p class="title"><b>Install</b></p><p style="width:90%">
  @@ -61,7 +71,7 @@
   	  tell Apache what kind of files are &quot;Rivet&quot; files and how to
   	  process them:
   	</p><pre style="background:#bbffbb ; width:90ex ; margin: 2ex ;      padding: 1ex; border: solid black 1px ; white-space: pre;      font-family:monospace ; " class="programlisting">AddType application/x-httpd-rivet .rvt
  -	  AddType application/x-rivet-tcl .tcl</pre><p style="width:90%">
  +AddType application/x-rivet-tcl .tcl</pre><p style="width:90%">
   	  These tell Apache to process files with the
   	  <tt class="filename">.rvt</tt> and <tt class="filename">.tcl</tt>
   	  extensions as Rivet files.
  
  
  
  1.7       +5 -4      tcl-rivet/doc/html/internals.html.en
  
  Index: internals.html.en
  ===================================================================
  RCS file: /home/cvs/tcl-rivet/doc/html/internals.html.en,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- internals.html.en	22 Jul 2003 08:05:39 -0000	1.6
  +++ internals.html.en	22 Aug 2003 09:42:27 -0000	1.7
  @@ -2,8 +2,9 @@
         This section easily falls out of date, as new code is added, old
         code is removed, and changes are made.  The best place to look
         is the source code itself.  If you are interested in the changes
  -      themselves FIXME.
  -    </p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="id5395903"></a>Initialization</h3></div></div><div></div></div><p style="width:90%">
  +      themselves, <span style="font-family:monospace"><b class="command">cvs</b></span> can provide you with
  +      information about what has been happening with the code.
  +    </p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="id5396036"></a>Initialization</h3></div></div><div></div></div><p style="width:90%">
   	When Apache is started, (or when child Apache processes are
   	started if a threaded Tcl is used),
   	<tt class="function">Rivet_InitTclStuff</tt> is called, which
  @@ -14,7 +15,7 @@
   	executes Rivet's <tt class="filename">init.tcl</tt>.  The caching
   	system is also set up, and if there is a
   	<span style="font-family:monospace"><b class="command">GlobalInitScript</b></span>, it is run.
  -      </p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="id5395940"></a>RivetChan</h3></div></div><div></div></div><p style="width:90%">
  +      </p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="id5396073"></a>RivetChan</h3></div></div><div></div></div><p style="width:90%">
   	The <span class="structname">RivetChan</span> system was created in
   	order to have an actual Tcl channel that we could redirect
   	standard output to.  This lets us use, for instance, the
  @@ -24,7 +25,7 @@
   	Tcl's regular standard output is replaced with an instance of
   	this channel type, so that, by default, output will go to the
   	web page.
  -      </p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="id5395969"></a>Page Parsing, Execution and Cacheing</h3></div></div><div></div></div><p style="width:90%">
  +      </p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="id5396102"></a>Page Parsing, Execution and Caching</h3></div></div><div></div></div><p style="width:90%">
   	When a Rivet page is requested, it is transformed into an
   	ordinary Tcl script by parsing the file for the &lt;? ?&gt;
   	processing instruction tags.  Everything outside these tags
  
  
  
  1.2       +3 -3      tcl-rivet/doc/html/internals.html.it
  
  Index: internals.html.it
  ===================================================================
  RCS file: /home/cvs/tcl-rivet/doc/html/internals.html.it,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- internals.html.it	22 Jul 2003 09:03:02 -0000	1.1
  +++ internals.html.it	22 Aug 2003 09:42:27 -0000	1.2
  @@ -5,7 +5,7 @@
         dove poter verificare se sono state inserite nuove funzionalit�
         � il suo codice sorgente. Se siete interessati ai cambiamenti 
         osservate il FIXME.
  -    </p><div class="section" lang="it"><div class="titlepage"><div><div><h3 class="title"><a name="id5396988"></a>Inizializzazione</h3></div></div><div></div></div><p style="width:90%">
  +    </p><div class="section" lang="it"><div class="titlepage"><div><div><h3 class="title"><a name="id5396989"></a>Inizializzazione</h3></div></div><div></div></div><p style="width:90%">
   	Quando Apache � attivo, (o quando i processi figli di Apache
   	sono attivi se un processo Tcl � in uso),
   	<tt class="function">Rivet_InitTclStuff</tt> viene chiamata, 
  @@ -16,7 +16,7 @@
   	di Rivet ed esegue <tt class="filename">init.tcl</tt>. 
   	Il sistema di caching � anch'esso impostato e se c'� un 
   	<span style="font-family:monospace"><b class="command">GlobalInitScript</b></span>, viene eseguito.
  -      </p></div><div class="section" lang="it"><div class="titlepage"><div><div><h3 class="title"><a name="id5397028"></a>RivetChan</h3></div></div><div></div></div><p style="width:90%">
  +      </p></div><div class="section" lang="it"><div class="titlepage"><div><div><h3 class="title"><a name="id5397029"></a>RivetChan</h3></div></div><div></div></div><p style="width:90%">
   	Il sistema <span class="structname">RivetChan</span> fu creato al fine
   	di avere un canale Tcl reale che potesse redirigere lo standard
   	output. Questo permette di usare, per esempio, il comando
  @@ -26,7 +26,7 @@
   	standard output di Tcl � rimpiazzato con un'istanza di questo
   	tipo di canale, in modo che, predefinitamente, l'output venga
   	inviato alla pagina web.
  -      </p></div><div class="section" lang="it"><div class="titlepage"><div><div><h3 class="title"><a name="id5397063"></a>Parsing delle pagine, Esecuzione e Cacheing</h3></div></div><div></div></div><p style="width:90%">
  +      </p></div><div class="section" lang="it"><div class="titlepage"><div><div><h3 class="title"><a name="id5397064"></a>Parsing delle pagine, Esecuzione e Cacheing</h3></div></div><div></div></div><p style="width:90%">
   	Quando una pagina Rivet viene richiesta, � trasformata in un
   	normale script Tcl tramite l'analisi nel file delle etichette di
   	elaborazione delle istruzioni &lt;? ?&gt;. Ogni cosa fuori da
  
  
  
  1.3       +3 -1      tcl-rivet/doc/html/tcl_packages.html.en
  
  Index: tcl_packages.html.en
  ===================================================================
  RCS file: /home/cvs/tcl-rivet/doc/html/tcl_packages.html.en,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- tcl_packages.html.en	5 Jul 2003 08:33:33 -0000	1.2
  +++ tcl_packages.html.en	22 Aug 2003 09:42:27 -0000	1.3
  @@ -1,5 +1,7 @@
   <html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Rivet Tcl Packages</title><link rel="stylesheet" href="rivet.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.60.1"><link rel="home" href="index.html.en" title="Apache Rivet"><link rel="up" href="index.html.en" title="Apache Rivet"><link rel="previous" href="examples.html.en" title="Examples and Usage"><link rel="next" href="help.html.en" title="Resources - How to Get Help"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Rivet Tcl Packages</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="examples.html.en"><img src="images/prev.png" alt="Prev"></a>�</td><th width="60%" align="center">�</th><td width="20%" align="right">�<a accesskey="n" href="help.html.en"><img src="images/next.png" alt="Next"></a></td></tr></table></div><div class="section" lang="en"><div class="titlepage"><div><div><hr><h2 class="title" style="clear: both"><a name="tcl_packages"></a>Rivet Tcl Packages</h2></div></div><div></div></div><p style="width:90%">
   In addition to the core Apache module, Rivet provides a number of Tcl
   packages that include potentially useful code.
  -    </p><div class="itemizedlist"><ul type="disc"><li><div style=" margin:1ex ; margin-bottom:1.5ex ; padding .5ex">commserver is a package providing a .</div></li><li><div style=" margin:1ex ; margin-bottom:1.5ex ; padding .5ex">dio is a database abstraction layer.</div></li><li><div style=" margin:1ex ; margin-bottom:1.5ex ; padding .5ex">dtcl is a compatibility package for mod_dtcl
  +    </p><div class="itemizedlist"><ul type="disc"><li><div style=" margin:1ex ; margin-bottom:1.5ex ; padding .5ex">commserver is a package providing a server that can be
  +	used for IPC.  Still experimental.  Requires the comm package
  +	from tcllib.</div></li><li><div style=" margin:1ex ; margin-bottom:1.5ex ; padding .5ex">dio is a database abstraction layer.</div></li><li><div style=" margin:1ex ; margin-bottom:1.5ex ; padding .5ex">dtcl is a compatibility package for mod_dtcl
   	applications.</div></li><li><div style=" margin:1ex ; margin-bottom:1.5ex ; padding .5ex">form - for creating forms.</div></li><li><div style=" margin:1ex ; margin-bottom:1.5ex ; padding .5ex">rivet - some additional, useful routines.</div></li><li><div style=" margin:1ex ; margin-bottom:1.5ex ; padding .5ex">tclrivet</div></li></ul></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="examples.html.en"><img src="images/prev.png" alt="Prev"></a>�</td><td width="20%" align="center"><a accesskey="u" href="index.html.en"><img src="images/up.png" alt="Up"></a></td><td width="40%" align="right">�<a accesskey="n" href="help.html.en"><img src="images/next.png" alt="Next"></a></td></tr><tr><td width="40%" align="left" valign="top">Examples and Usage�</td><td width="20%" align="center"><a accesskey="h" href="index.html.en"><img src="images/home.png" alt="Home"></a></td><td width="40%" align="right" valign="top">�Resources - How to Get Help</td></tr></table></div></body></html>
  
  
  
  1.7       +2 -2      tcl-rivet/doc/html/upgrading.html.en
  
  Index: upgrading.html.en
  ===================================================================
  RCS file: /home/cvs/tcl-rivet/doc/html/upgrading.html.en,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- upgrading.html.en	22 Jul 2003 08:05:39 -0000	1.6
  +++ upgrading.html.en	22 Aug 2003 09:42:27 -0000	1.7
  @@ -5,8 +5,8 @@
         compatibility was not a primary goal when creating Rivet, but we
         do provide this information which may be of use to those wishing
         to upgrade from mod_dtcl or NWS installations.
  -    </p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="id5396046"></a>mod_dtcl</h3></div></div><div></div></div><p style="width:90%">
  +    </p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="id5396185"></a>mod_dtcl</h3></div></div><div></div></div><p style="width:90%">
   	Rivet was originally based on the dtcl code, but it has
   	changed (improved!) quite a bit.  The concepts remain the
   	same, but many of the commands have changed.
  -      </p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="id5396062"></a>NeoWebScript</h3></div></div><div></div></div><p style="width:90%">TODO</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="internals.html.en"><img src="images/prev.png" alt="Prev"></a>�</td><td width="20%" align="center"><a accesskey="u" href="index.html.en"><img src="images/up.png" alt="Up"></a></td><td width="40%" align="right">�</td></tr><tr><td width="40%" align="left" valign="top">Rivet Internals�</td><td width="20%" align="center"><a accesskey="h" href="index.html.en"><img src="images/home.png" alt="Home"></a></td><td width="40%" align="right" valign="top">�</td></tr></table></div></body></html>
  +      </p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="id5396201"></a>NeoWebScript</h3></div></div><div></div></div><p style="width:90%">TODO</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="internals.html.en"><img src="images/prev.png" alt="Prev"></a>�</td><td width="20%" align="center"><a accesskey="u" href="index.html.en"><img src="images/up.png" alt="Up"></a></td><td width="40%" align="right">�</td></tr><tr><td width="40%" align="left" valign="top">Rivet Internals�</td><td width="20%" align="center"><a accesskey="h" href="index.html.en"><img src="images/home.png" alt="Home"></a></td><td width="40%" align="right" valign="top">�</td></tr></table></div></body></html>
  
  
  
  1.2       +2 -2      tcl-rivet/doc/html/upgrading.html.it
  
  Index: upgrading.html.it
  ===================================================================
  RCS file: /home/cvs/tcl-rivet/doc/html/upgrading.html.it,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- upgrading.html.it	22 Jul 2003 09:03:02 -0000	1.1
  +++ upgrading.html.it	22 Aug 2003 09:42:27 -0000	1.2
  @@ -6,8 +6,8 @@
         primario quando creammo Rivet, ma abbiamo fornito questa
         informazione che potrebbere essere utilizzata da chi desideri
         effettuare l'aggiornamento da installazioni mod_dtcl o NWS.
  -    </p><div class="section" lang="it"><div class="titlepage"><div><div><h3 class="title"><a name="id5396174"></a>mod_dtcl</h3></div></div><div></div></div><p style="width:90%">
  +    </p><div class="section" lang="it"><div class="titlepage"><div><div><h3 class="title"><a name="id5396176"></a>mod_dtcl</h3></div></div><div></div></div><p style="width:90%">
   	Rivet era originalmente basato su codice dtcl, ma ne � stata
   	cambiata (migliorata !) una parte. I concetti rimangono gli 
   	stessi, ma alcuni dei comandi sono cambiati.
  -      </p></div><div class="section" lang="it"><div class="titlepage"><div><div><h3 class="title"><a name="id5396194"></a>NeoWebScript</h3></div></div><div></div></div><p style="width:90%">TODO</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="internals.html.it"><img src="images/prev.png" alt="Indietro"></a>�</td><td width="20%" align="center"><a accesskey="u" href="index.html.it"><img src="images/up.png" alt="Risali"></a></td><td width="40%" align="right">�</td></tr><tr><td width="40%" align="left" valign="top">Rivet Internals�</td><td width="20%" align="center"><a accesskey="h" href="index.html.it"><img src="images/home.png" alt="Partenza"></a></td><td width="40%" align="right" valign="top">�</td></tr></table></div></body></html>
  +      </p></div><div class="section" lang="it"><div class="titlepage"><div><div><h3 class="title"><a name="id5396195"></a>NeoWebScript</h3></div></div><div></div></div><p style="width:90%">TODO</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="internals.html.it"><img src="images/prev.png" alt="Indietro"></a>�</td><td width="20%" align="center"><a accesskey="u" href="index.html.it"><img src="images/up.png" alt="Risali"></a></td><td width="40%" align="right">�</td></tr><tr><td width="40%" align="left" valign="top">Rivet Internals�</td><td width="20%" align="center"><a accesskey="h" href="index.html.it"><img src="images/home.png" alt="Partenza"></a></td><td width="40%" align="right" valign="top">�</td></tr></table></div></body></html>
  
  
  
  1.3       +2 -2      tcl-rivet/src/configure.in.tcl
  
  Index: configure.in.tcl
  ===================================================================
  RCS file: /home/cvs/tcl-rivet/src/configure.in.tcl,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- configure.in.tcl	22 Aug 2003 08:58:54 -0000	1.2
  +++ configure.in.tcl	22 Aug 2003 09:42:27 -0000	1.3
  @@ -8,7 +8,7 @@
   # Add some command-line configuration options specific to Rivet.
   configure::AddOption -flag with-apxs -var APXS \
       -desc "Location of the apxs binary" -arg -default apxs
  -configure::AddOption -flag with-tcl -var TCL_CONFIG \
  +configure::AddOption -flag with-tclconfig -var TCL_CONFIG \
       -desc "Location of tclConfig.sh" -arg
   
   configure::ProcessOptions
  
  
  
  1.4       +2 -2      tcl-rivet/src/configure.tcl
  
  Index: configure.tcl
  ===================================================================
  RCS file: /home/cvs/tcl-rivet/src/configure.tcl,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- configure.tcl	22 Aug 2003 08:58:54 -0000	1.3
  +++ configure.tcl	22 Aug 2003 09:42:27 -0000	1.4
  @@ -42,7 +42,7 @@
       set optionvars(prefix) PREFIX
       set optionvars(enable-symbols) DEBUGSYMBOLS
       set options {
  -	{prefix.arg ""		"prefix - where"}
  +	{prefix.arg ""		"prefix - where to install"}
   	{enable-symbols		"enable debugging symbols"}
   	{verbose		"verbose output"}
       }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: rivet-cvs-unsubscribe@tcl.apache.org
For additional commands, e-mail: rivet-cvs-help@tcl.apache.org