cvs commit: jakarta-tomcat-connectors/jk/xdocs style.xsl

2005-07-04 Thread jfclere
jfclere 2005/07/04 00:44:51

  Modified:jk/xdocs style.xsl
  Log:
  Now we are in 2005, don't we?
  
  Revision  ChangesPath
  1.12  +2 -2  jakarta-tomcat-connectors/jk/xdocs/style.xsl
  
  Index: style.xsl
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/style.xsl,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- style.xsl 3 Jan 2005 23:20:05 -   1.11
  +++ style.xsl 4 Jul 2005 07:44:51 -   1.12
  @@ -160,7 +160,7 @@
 xsl:commentPAGE FOOTER/xsl:comment
 trtd colspan=2
   div align=centerfont color={$body-link} size=-1em
  -Copyright #169; 1999-2004, Apache Software Foundation
  +Copyright #169; 1999-2005, Apache Software Foundation
   /em/font/div
 /td/tr
   
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs style.xsl

2004-12-18 Thread mturk
mturk   2004/12/18 04:47:42

  Modified:jk/xdocs style.xsl
  Log:
  Make default values centered
  
  Revision  ChangesPath
  1.10  +2 -2  jakarta-tomcat-connectors/jk/xdocs/style.xsl
  
  Index: style.xsl
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/style.xsl,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- style.xsl 29 Nov 2004 12:46:25 -  1.9
  +++ style.xsl 18 Dec 2004 12:47:42 -  1.10
  @@ -303,7 +303,7 @@
 /td
  xsl:choose

   xsl:when test=@default != ''

  -   td align=left valign=center  
  +   td align=center valign=center  
  codexsl:value-of select=@default//code

 /td
   /xsl:when

  
  
  

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs style.xsl

2004-11-29 Thread mturk
mturk   2004/11/29 04:46:25

  Modified:jk/xdocs style.xsl
  Log:
  Make sure that section and subsction titles are context-width independent.
  
  Revision  ChangesPath
  1.9   +3 -3  jakarta-tomcat-connectors/jk/xdocs/style.xsl
  
  Index: style.xsl
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/style.xsl,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- style.xsl 29 Nov 2004 12:25:14 -  1.8
  +++ style.xsl 29 Nov 2004 12:46:25 -  1.9
  @@ -194,7 +194,7 @@
   xsl:variable name=name
 xsl:value-of select=@name/
   /xsl:variable
  -table border=0 cellspacing=0 cellpadding=2
  +table border=0 cellspacing=0 cellpadding=2 width=100%
 !-- Section heading --
 trtd bgcolor={$banner-bg}
 font color={$banner-fg} face=arial,helvetica.sanserif
  @@ -214,7 +214,7 @@
   xsl:variable name=name
 xsl:value-of select=@name/
   /xsl:variable
  -table border=0 cellspacing=0 cellpadding=2
  +table border=0 cellspacing=0 cellpadding=2 width=100%
 !-- Subsection heading --
 trtd bgcolor={$sub-banner-bg}
 font color={$sub-banner-fg} face=arial,helvetica.sanserif
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs style.xsl

2004-11-19 Thread mturk
mturk   2004/11/19 01:30:47

  Modified:jk/xdocs style.xsl
  Log:
  Added directives tag for three column directive layout
  
  Revision  ChangesPath
  1.5   +62 -7 jakarta-tomcat-connectors/jk/xdocs/style.xsl
  
  Index: style.xsl
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/style.xsl,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- style.xsl 18 Nov 2004 19:09:00 -  1.4
  +++ style.xsl 19 Nov 2004 09:30:47 -  1.5
  @@ -279,12 +279,14 @@
   table border=1 cellpadding=5
 tr
   th width=220px bgcolor={$attributes-color}
  -  xsl:if test=@name = ''
  - font color=#ffAttribute/font
  -  /xsl:if   
  -  xsl:if test=@name != ''
  - font color=#ffxsl:value-of select=@name//font
  -  /xsl:if   
  +   xsl:choose

  +xsl:when test=@name != ''

  +   font color=#ffxsl:value-of select=@name//font

  +/xsl:when

  +xsl:otherwise

  +   font color=#ffAttribute/font
  +/xsl:otherwise

  +  /xsl:choose  
   /th
   th width=* bgcolor={$attributes-color}
 font color=#ffDescription/font
  @@ -308,6 +310,50 @@
   /table
 /xsl:template
   
  +  !-- Process an attributes list with nested attribute elements --
  +  xsl:template match=directives
  +table border=1 cellpadding=5
  +  tr
  +th width=15% bgcolor={$attributes-color}
  +  font color=#ffDirective/font
  +/th
  +th width=10% bgcolor={$attributes-color}
  +  font color=#ffDefault/font
  +/th
  +th width=75% bgcolor={$attributes-color}
  +  font color=#ffDescription/font
  +/th
  +  /tr
  +  xsl:for-each select=directive
  +tr
  +  td align=left valign=center
  +xsl:if test=@required = 'true'
  +  strongcodexsl:value-of select=@name//code/strong
  +/xsl:if
  +xsl:if test=@required != 'true'
  +  codexsl:value-of select=@name//code
  +/xsl:if
  +  /td
  +   xsl:choose

  +xsl:when test=@default != ''

  +   td align=left valign=center  
  +   codexsl:value-of select=@default//code

  +  /td
  +/xsl:when

  +xsl:otherwise

  +   td align=center valign=center  
  +  code-/code

  +  /td
  +/xsl:otherwise

  +  /xsl:choose  
  +  td align=left valign=center
  +xsl:apply-templates/
  +  /td
  +/tr
  +  /xsl:for-each
  +/table
  +  /xsl:template
  +
 !-- Fix relative links in printer friendly versions of the docs --
 xsl:template match=a
   xsl:variable name=href select=@href/
  @@ -332,6 +378,15 @@
   a name={$name}xsl:apply-templates//a
 /xsl:otherwise
   /xsl:choose
  +  /xsl:template
  +
  +  !-- Warning --
  +  xsl:template match=warn
  +p
  +font color=#ff
  +xsl:apply-templates/
  +/font
  +/p
 /xsl:template
   
 !-- Changelog related tags --
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs style.xsl

2004-11-19 Thread mturk
mturk   2004/11/19 01:33:22

  Modified:jk/xdocs style.xsl
  Log:
  Change comment for directives tag
  
  Revision  ChangesPath
  1.6   +1 -1  jakarta-tomcat-connectors/jk/xdocs/style.xsl
  
  Index: style.xsl
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/style.xsl,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- style.xsl 19 Nov 2004 09:30:47 -  1.5
  +++ style.xsl 19 Nov 2004 09:33:22 -  1.6
  @@ -310,7 +310,7 @@
   /table
 /xsl:template
   
  -  !-- Process an attributes list with nested attribute elements --
  +  !-- Process an directives list with nested directive elements --
 xsl:template match=directives
   table border=1 cellpadding=5
 tr
  
  
  

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