Swap the beta.testing variable and test for ones that actually work.
This commit is contained in:
parent
5c504d46aa
commit
dce7d15182
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=25940
2 changed files with 8 additions and 8 deletions
|
@ -1,4 +1,4 @@
|
|||
<!-- $FreeBSD: www/en/index.xsl,v 1.133 2005/10/07 02:51:55 murray Exp $ -->
|
||||
<!-- $FreeBSD: www/en/index.xsl,v 1.134 2005/10/07 14:15:48 ceri Exp $ -->
|
||||
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
|||
<xsl:import href="news/includes.xsl"/>
|
||||
|
||||
<xsl:variable name="base" select="'.'"/>
|
||||
<xsl:variable name="date" select="'$FreeBSD: www/en/index.xsl,v 1.133 2005/10/07 02:51:55 murray Exp $'"/>
|
||||
<xsl:variable name="date" select="'$FreeBSD: www/en/index.xsl,v 1.134 2005/10/07 14:15:48 ceri Exp $'"/>
|
||||
<xsl:variable name="title" select="'The FreeBSD Project'"/>
|
||||
|
||||
<!-- these params should be externally bound. The values
|
||||
|
@ -96,9 +96,9 @@
|
|||
<li>
|
||||
<a href="{$u.rel2.announce}">Production (Legacy) Release <xsl:value-of select="$rel2.current"/></a>
|
||||
</li>
|
||||
<xsl:if test="$beta.testing != ''">
|
||||
<xsl:if test="$beta.testing">
|
||||
<li>
|
||||
<a href="{$base}/where.html">Upcoming Release
|
||||
<a href="{$base}/where.html#HELPTEST">Upcoming Release
|
||||
<xsl:value-of select="concat($betarel.current, '-', $betarel.vers)"/></a>
|
||||
</li>
|
||||
</xsl:if>
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
<?xml version="1.0" encoding="ISO-8859-1" ?>
|
||||
|
||||
<!-- $FreeBSD: www/share/sgml/includes.release.xsl,v 1.10 2005/05/09 20:49:30 murray Exp $ -->
|
||||
<!-- $FreeBSD: www/share/sgml/includes.release.xsl,v 1.11 2005/10/07 14:15:48 ceri Exp $ -->
|
||||
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||||
|
||||
<xsl:variable name="rel.head" select='"6.0"'/>
|
||||
<xsl:variable name="rel.head.major" select='"6"'/>
|
||||
|
||||
<!-- An upcoming release that we want tested. Set $beta.testing to the
|
||||
empty string if we're not in the middle of a release cycle. Ha ha. -->
|
||||
<xsl:variable name="beta.testing" select="YES" />
|
||||
<!-- An upcoming release that we want tested. Set $beta.testing to 0
|
||||
if we're not in the middle of a release cycle. Ha ha. -->
|
||||
<xsl:variable name="beta.testing" select="1" />
|
||||
<xsl:variable name="betarel.current" select='"6.0"'/>
|
||||
<xsl:variable name="betarel.vers" select='"BETA5"'/>
|
||||
<xsl:variable name="u.betarel.schedule">
|
||||
|
|
Loading…
Reference in a new issue