Author: markt
Date: Wed Mar 19 16:13:28 2008
New Revision: 639067
URL: http://svn.apache.org/viewvc?rev=639067&view=rev
Log:
Add system property documentation.
Modified:
tomcat/tc6.0.x/trunk/STATUS.txt
tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml
tomcat/tc6.0.x/trunk/webapps/docs/config/project.xml
tomcat/tc6.0.x/trunk/webapps/docs/tomcat-docs.xsl
Modified: tomcat/tc6.0.x/trunk/STATUS.txt
URL:
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/STATUS.txt?rev=639067&r1=639066&r2=639067&view=diff
==============================================================================
--- tomcat/tc6.0.x/trunk/STATUS.txt (original)
+++ tomcat/tc6.0.x/trunk/STATUS.txt Wed Mar 19 16:13:28 2008
@@ -94,12 +94,6 @@
+1 : fhanik - I don't think we should support mark/reset, we can supply a
filter that does it at the app level by wrapping getReader with a reader that
bufferes
-1 :
-* Add system property docs
- http://svn.apache.org/viewvc?rev=620335&view=rev
-
http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/config/systemprops.xml?r1=627743&r2=627742&pathrev=627743
- +1: markt, remm, fhanik
- -1:
-
* Cookie completion. Only do the autoswitch on the value of the cookie, quote
domain/path same way as we did before
258c258
< version = maybeQuote2(version, buf, value);
Modified: tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml
URL:
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml?rev=639067&r1=639066&r2=639067&view=diff
==============================================================================
--- tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml Wed Mar 19 16:13:28 2008
@@ -70,10 +70,10 @@
Fix possible ArrayIndexOutOfBoundsException. Patch provided by Charles
R
Caldarale. (markt/jim)
</fix>
- <update>
+ <fix>
<bug>44558</bug>: Improve error message so address is included if
binding fails.
- </update>
+ </fix>
</changelog>
</subsection>
<subsection name="Jasper">
@@ -91,6 +91,10 @@
and to use $CATALINA_BASE rather than $CATALINA_HOME where applicable.
(markt/jim)
</update>
+ <add>
+ Add a section on available system property configuration options.
+ (markt)
+ </add>
</changelog>
</subsection>
<subsection name="Cluster">
Modified: tomcat/tc6.0.x/trunk/webapps/docs/config/project.xml
URL:
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/docs/config/project.xml?rev=639067&r1=639066&r2=639067&view=diff
==============================================================================
--- tomcat/tc6.0.x/trunk/webapps/docs/config/project.xml (original)
+++ tomcat/tc6.0.x/trunk/webapps/docs/config/project.xml Wed Mar 19 16:13:28
2008
@@ -74,6 +74,10 @@
<item name="Deployer" href="cluster-deployer.html"/>
<item name="ClusterListener" href="cluster-listener.html"/>
</menu>
+
+ <menu name="Global Settings">
+ <item name="System properties" href="systemprops.html"/>
+ </menu>
</body>
</project>
Modified: tomcat/tc6.0.x/trunk/webapps/docs/tomcat-docs.xsl
URL:
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/docs/tomcat-docs.xsl?rev=639067&r1=639066&r2=639067&view=diff
==============================================================================
--- tomcat/tc6.0.x/trunk/webapps/docs/tomcat-docs.xsl (original)
+++ tomcat/tc6.0.x/trunk/webapps/docs/tomcat-docs.xsl Wed Mar 19 16:13:28 2008
@@ -182,7 +182,7 @@
<xsl:comment>PAGE FOOTER</xsl:comment>
<tr><td colspan="2">
<div align="center"><font color="{$body-link}" size="-1"><em>
- Copyright © 1999-2006, Apache Software Foundation
+ Copyright © 1999-2008, Apache Software Foundation
</em></font></div>
</td></tr>
@@ -316,6 +316,30 @@
<xsl:if test="@required != 'true'">
<code><xsl:value-of select="@name"/></code>
</xsl:if>
+ </td>
+ <td align="left" valign="center">
+ <xsl:apply-templates/>
+ </td>
+ </tr>
+ </xsl:for-each>
+ </table>
+ </xsl:template>
+
+ <!-- Process a properties list with nested property elements -->
+ <xsl:template match="properties">
+ <table border="1" cellpadding="5">
+ <tr>
+ <th width="15%" bgcolor="{$attributes-color}">
+ <font color="#ffffff">Property</font>
+ </th>
+ <th width="85%" bgcolor="{$attributes-color}">
+ <font color="#ffffff">Description</font>
+ </th>
+ </tr>
+ <xsl:for-each select="property">
+ <tr>
+ <td align="left" valign="center">
+ <code><xsl:value-of select="@name"/></code>
</td>
<td align="left" valign="center">
<xsl:apply-templates/>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]