hgomez      2002/09/05 01:39:26

  Modified:    jk/xdocs menu.idx style.xsl.in style.css.in index.xml
  Log:
  Update to new jk docs layout, colors and entries
  
  Revision  Changes    Path
  1.5       +3 -1      jakarta-tomcat-connectors/jk/xdocs/menu.idx
  
  Index: menu.idx
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/menu.idx,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- menu.idx  2 Sep 2002 10:53:36 -0000       1.4
  +++ menu.idx  5 Sep 2002 08:39:26 -0000       1.5
  @@ -4,7 +4,9 @@
     <document href="index.xml"/>
     <document href="common/AJPv13.xml"/>
     <document href="common/AJPv14-proposal.xml"/>
  -  <document href="jk/buildjk.xml"/>
  +  <document href="jk/aphowto.xml"/>
  +  <document href="jk/iishowto.xml"/>
  +  <document href="jk/neshowto.xml"/>
     <document href="jk/configjk.xml"/>
     <document href="jk2/configtc.xml"/>
     <document href="jk2/configweb.xml"/>
  
  
  
  1.7       +13 -9     jakarta-tomcat-connectors/jk/xdocs/style.xsl.in
  
  Index: style.xsl.in
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/style.xsl.in,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- style.xsl.in      2 Sep 2002 10:55:30 -0000       1.6
  +++ style.xsl.in      5 Sep 2002 08:39:26 -0000       1.7
  @@ -95,7 +95,7 @@
                       <img src="{$images}/jakarta.gif" border="0" width="270" 
height="75" align="left"/>
                     </td>
                     <td align="right">
  -                    <img src="{$images}/mod_jk.jpeg" border="0" width="400" 
height="75" align="right"/>
  +                    <img src="{$images}/mod_jk.jpeg" border="0" align="right"/>
                     </td>
                   </tr>
                 </table>
  @@ -249,7 +249,7 @@
           </tr>
         </table>
       </a>
  -    <xsl:apply-templates 
select="subsection|p|ul|img|screen|screendos|screen5250|todo"/>
  +    <xsl:apply-templates 
select="subsection|p|ul|ol|img|screen|screendos|screen5250|todo"/>
       <br/>
     </xsl:template>
   
  @@ -267,7 +267,7 @@
           </tr>
         </table>
       </a>
  -    <xsl:apply-templates 
select="subsection|p|ul|img|screen|screendos|screen5250|todo"/>
  +    <xsl:apply-templates 
select="subsection|p|ul|ol|img|screen|screendos|screen5250|todo"/>
       <br/>
     </xsl:template>
   
  @@ -282,7 +282,7 @@
     </xsl:template>
   
     <xsl:template match="p">
  -    <p class="section"><xsl:apply-templates 
select="author|code|source|screen|screendos|screen5250|table|ul|br|b|a|text()"/></p>
  +    <p class="section"><xsl:apply-templates 
select="author|code|source|screen|screendos|screen5250|table|ul|ol|br|b|a|text()"/></p>
     </xsl:template>
   
     <xsl:template match="b">
  @@ -303,11 +303,15 @@
     </xsl:template>
   
     <xsl:template match="ul">
  -    <ul><xsl:apply-templates select="li"/></ul>
  +    <ul><xsl:apply-templates select="li|ul|ol"/></ul>
  +  </xsl:template>
  +
  +  <xsl:template match="ol">
  +    <ol><xsl:apply-templates select="li|ul|ol"/></ol>
     </xsl:template>
   
     <xsl:template match="li">
  -    <li><xsl:apply-templates select="br|b|a|text()"/></li>
  +    <li><xsl:apply-templates select="br|b|a|ul|ol|text()"/></li>
     </xsl:template>
   
     <!-- JFC added -->
  @@ -438,7 +442,7 @@
     </xsl:template>
   
     <xsl:template match="read">
  -    <code>
  +    <code class="screen">
         <nobr>
           <xsl:apply-templates select="text()|enter"/>
         </nobr>
  @@ -463,7 +467,7 @@
     </xsl:template>
   
     <xsl:template match="readdos">
  -    <code>
  +    <code class="screendos">
         <nobr>
           <xsl:apply-templates select="text()|enterdos"/>
         </nobr>
  @@ -521,7 +525,7 @@
     </xsl:template>
   
     <xsl:template match="read5250">
  -    <code>
  +    <code class="screen5250">
         <nobr>
           <xsl:apply-templates select="text()|enter5250"/>
         </nobr>
  
  
  
  1.5       +27 -0     jakarta-tomcat-connectors/jk/xdocs/style.css.in
  
  Index: style.css.in
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/style.css.in,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- style.css.in      2 Sep 2002 16:02:10 -0000       1.4
  +++ style.css.in      5 Sep 2002 08:39:26 -0000       1.5
  @@ -147,6 +147,15 @@
     text-align: left;
   }
   
  +code.screen {
  +  background-color: #cccccc;
  +  border-style: none;
  +  color: #000000;
  +  margin-left: 10px;
  +  margin-right: 0px;
  +  text-align: left;
  +}
  +
   p.screendos {
     background-color: #000000;
     border-style: none;
  @@ -156,7 +165,25 @@
     text-align: left;
   }
   
  +code.screendos {
  +  background-color: #000000;
  +  border-style: none;
  +  color: #c0c0c0;
  +  margin-left: 10px;
  +  margin-right: 0px;
  +  text-align: left;
  +}
  +
   p.screen5250 {
  +  background-color: #000000;
  +  border-style: none;
  +  color: #00ff00;
  +  margin-left: 10px;
  +  margin-right: 0px;
  +  text-align: left;
  +}
  +
  +code.screen5250 {
     background-color: #000000;
     border-style: none;
     color: #00ff00;
  
  
  
  1.5       +26 -4     jakarta-tomcat-connectors/jk/xdocs/index.xml
  
  Index: index.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/index.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- index.xml 2 Sep 2002 10:51:09 -0000       1.4
  +++ index.xml 5 Sep 2002 08:39:26 -0000       1.5
  @@ -3,20 +3,42 @@
   <properties>
   <title>Overview</title>
   <author email="[EMAIL PROTECTED]">Jean-Frederic Clere</author>
  +<author email="[EMAIL PROTECTED]">Henri Gomez</author>
   </properties>
  -<section name="What's mod_jk ?">
  +
  +<section name="What's jk ?">
   <p>
  -<b>mod_jk</b> is a replacement to the elderly mod_jserv. 
  +<b>jk</b> is a replacement to the elderly mod_jserv. 
   It was a completely new Tomcat-Apache plug-in that handles the communication 
between Tomcat and Apache.
   </p>
   <p>
  -The newest <b>mod_jk2</b> is a rewrite of <b>mod_jk</b>.
  +The newest <b>jk2</b> is a rewrite of <b>mod_jk</b>.
   The native part has been completly
   restructured and the configuration has been simplified a lot.
   </p>
  +
  +<p>
  +jk is more than just an apache module, since it could be used with majors WebServer 
:
  +</p>
  +
  +<ul>
  +<li>
  +<a href="jk/aphowto.html">mod_jk</a> is an Apache module to be used with <b>Apache 
1.3 and 2.0 Webservers</b>.
  +</li>
  +<li>
  +<a href="jk/iishowto.html">isapi</a> is a redirector to be used with <b>IIS 
Webservers</b>.
  +</li>
  +<li>
  +<a href="jk/neshowto.html">nsapi</a> is a redirector to be used with 
<b>Netscape/iPlanet WebServers</b>.
  +</li>
  +<li>
  +<a href="jk/domhowto.html">dsapi</a> was also ported to <b>Domino</b> but there is 
no more active support on it.
  +</li>
  +</ul>
  +
   </section>
   
  -<section name="Why should I use the mod_jk's Modules ?">
  +<section name="Why should I use the jk ?">
   <p>
   Several reasons:
   <ul>
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to