svn commit: r53831 - in head/fr_FR.ISO8859-1/htdocs: gnome news/status

Glen Barber gjb at FreeBSD.org
Mon Jan 27 20:22:40 UTC 2020


Author: gjb
Date: Mon Jan 27 20:22:39 2020
New Revision: 53831
URL: https://svnweb.freebsd.org/changeset/doc/53831

Log:
  Attempt to fix a silent build failure.
  
  Approved by:	doceng (implicit)
  Sponsored by:	Rubicon Communications, LLC (netgate.com)

Modified:
  head/fr_FR.ISO8859-1/htdocs/gnome/index.xsl
  head/fr_FR.ISO8859-1/htdocs/gnome/newsflash.xsl
  head/fr_FR.ISO8859-1/htdocs/news/status/report.xsl

Modified: head/fr_FR.ISO8859-1/htdocs/gnome/index.xsl
==============================================================================
--- head/fr_FR.ISO8859-1/htdocs/gnome/index.xsl	Mon Jan 27 15:21:29 2020	(r53830)
+++ head/fr_FR.ISO8859-1/htdocs/gnome/index.xsl	Mon Jan 27 20:22:39 2020	(r53831)
@@ -24,7 +24,7 @@
 
   <xsl:variable name="title">&title;</xsl:variable>
 
-  <xsl:template names="process.content">
+  <xsl:template name="process.content">
               <div id="sidewrap">
                 &nav.gnome;
               </div> <!-- SIDEWRAP -->

Modified: head/fr_FR.ISO8859-1/htdocs/gnome/newsflash.xsl
==============================================================================
--- head/fr_FR.ISO8859-1/htdocs/gnome/newsflash.xsl	Mon Jan 27 15:21:29 2020	(r53830)
+++ head/fr_FR.ISO8859-1/htdocs/gnome/newsflash.xsl	Mon Jan 27 20:22:39 2020	(r53831)
@@ -26,14 +26,14 @@
     &nav.developers;
   </xsl:template>
 
-  <xsl:template names="process.contentwrap">
+  <xsl:template name="process.contentwrap">
 	<img src="&enbase;/gifs/news.jpg" align="right" border="0" width="193"
 	     height="144" alt="FreeBSD GNOME News"/>
 
 	<xsl:apply-templates select="/news/descendant::month"/>
 
 	<xsl:for-each select="/news">
-	<xsl:call-template name="html-news-list-homelink" />
+	<xsl:call-template name="html-news-list-newsflash-homelink" />
 	</xsl:for-each>
   </xsl:template>
 

Modified: head/fr_FR.ISO8859-1/htdocs/news/status/report.xsl
==============================================================================
--- head/fr_FR.ISO8859-1/htdocs/news/status/report.xsl	Mon Jan 27 15:21:29 2020	(r53830)
+++ head/fr_FR.ISO8859-1/htdocs/news/status/report.xsl	Mon Jan 27 20:22:39 2020	(r53831)
@@ -27,7 +27,7 @@
     &nav.about;
   </xsl:template>
 
-  <xsl:template names="process.contentwrap">
+  <xsl:template name="process.contentwrap">
 	<!-- Process all the <sections>, in order -->
 	<xsl:apply-templates select="/report/section"/>
 
@@ -49,7 +49,7 @@
 	</xsl:for-each>
 	<ul>
 	  <xsl:for-each select="//project[not(@cat)]">
-  	    <xsl:sort select="translate(title, $lowercase, $ucppercase)"/>
+  	    <xsl:sort select="translate(title, $lowercase, $uppercase)"/>
 	    <li><a><xsl:attribute name="href">#<xsl:value-of
 	    select="translate(title, ' ',
 	    '-')"/></xsl:attribute><xsl:value-of select="title"/></a>


More information about the svn-doc-all mailing list