You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@forrest.apache.org by je...@apache.org on 2003/02/10 07:46:03 UTC

cvs commit: xml-forrest/src/resources/skins/template/xslt/html site2xhtml.xsl

jefft       2003/02/09 22:46:03

  Modified:    src/resources/skins/avalon-tigris/xslt/html site2xhtml.xsl
               src/resources/skins/forrest-site/xslt/html site2xhtml.xsl
               src/resources/skins/krysalis-site/xslt/html site2xhtml.xsl
               src/resources/skins/template/xslt/html site2xhtml.xsl
  Log:
  Properly ignore <credit role='pdf'> skinconf.xml entries in HTML
  
  Revision  Changes    Path
  1.9       +2 -2      xml-forrest/src/resources/skins/avalon-tigris/xslt/html/site2xhtml.xsl
  
  Index: site2xhtml.xsl
  ===================================================================
  RCS file: /home/cvs/xml-forrest/src/resources/skins/avalon-tigris/xslt/html/site2xhtml.xsl,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- site2xhtml.xsl	27 Jan 2003 13:47:22 -0000	1.8
  +++ site2xhtml.xsl	10 Feb 2003 06:46:02 -0000	1.9
  @@ -180,7 +180,7 @@
               <xsl:if test="$filename = 'index.html'">
                 <xsl:call-template name="compliancy-logos"/>
                 <xsl:if test="$config/credits">
  -                <xsl:for-each select="$config/credits/credit">
  +                <xsl:for-each select="$config/credits/credit[not(@role='pdf')]">
                     <xsl:call-template name="renderlogo">
                       <xsl:with-param name="name" select="name"/>
                       <xsl:with-param name="url" select="url"/>
  
  
  
  1.20      +2 -2      xml-forrest/src/resources/skins/forrest-site/xslt/html/site2xhtml.xsl
  
  Index: site2xhtml.xsl
  ===================================================================
  RCS file: /home/cvs/xml-forrest/src/resources/skins/forrest-site/xslt/html/site2xhtml.xsl,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- site2xhtml.xsl	27 Jan 2003 12:50:26 -0000	1.19
  +++ site2xhtml.xsl	10 Feb 2003 06:46:03 -0000	1.20
  @@ -257,7 +257,7 @@
   
                 <xsl:if test="$config/credits">
                   <img src="{$root}skin/images/spacer.gif" width="10" height="1" alt=""/>
  -                <xsl:for-each select="$config/credits/credit">
  +                <xsl:for-each select="$config/credits/credit[not(@role='pdf')]">
                     <xsl:variable name="name" select="name"/>
                     <xsl:variable name="url" select="url"/>
                     <xsl:variable name="image" select="image"/>
  
  
  
  1.9       +2 -2      xml-forrest/src/resources/skins/krysalis-site/xslt/html/site2xhtml.xsl
  
  Index: site2xhtml.xsl
  ===================================================================
  RCS file: /home/cvs/xml-forrest/src/resources/skins/krysalis-site/xslt/html/site2xhtml.xsl,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- site2xhtml.xsl	9 Feb 2003 18:55:30 -0000	1.8
  +++ site2xhtml.xsl	10 Feb 2003 06:46:03 -0000	1.9
  @@ -260,7 +260,7 @@
           <xsl:call-template name="compliancy-logos"/>
   
           <xsl:if test="$filename = 'index.html' and $config/credits">
  -          <xsl:for-each select="$config/credits/credit">
  +          <xsl:for-each select="$config/credits/credit[not(@role='pdf')]">
               <xsl:variable name="name" select="name"/>
               <xsl:variable name="url" select="url"/>
               <xsl:variable name="image" select="image"/>
  
  
  
  1.2       +1 -1      xml-forrest/src/resources/skins/template/xslt/html/site2xhtml.xsl
  
  Index: site2xhtml.xsl
  ===================================================================
  RCS file: /home/cvs/xml-forrest/src/resources/skins/template/xslt/html/site2xhtml.xsl,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2