o Change the title generation to include the month/year of the

status report.
o As discussed with Nik Clayton, introduce a new `cvs' namespace,
  mark up $FreeBSD$ with it in the documents, and get that value
  for the `Last modified' bits in the standard footer.

Reviewed by:	nik
This commit is contained in:
Chris Costello 2001-09-18 12:22:07 +00:00
parent 38f9b90bb7
commit 306a6e9444
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/www/; revision=10728
5 changed files with 37 additions and 4 deletions

View file

@ -5,6 +5,12 @@
<year>2001</year>
</date>
<cvs:keywords xmlns:cvs="http://www.FreeBSD.org/XML/CVS" version="1.0">
<cvs:keyword name="freebsd">
$FreeBSD$
</cvs:keyword>
</cvs:keywords>
<section>
<title>Introduction</title>

View file

@ -6,6 +6,12 @@
<year>2001</year>
</date>
<cvs:keywords xmlns:cvs="http://www.FreeBSD.org/XML/CVS" version="1.0">
<cvs:keyword name="freebsd">
$FreeBSD$
</cvs:keyword>
</cvs:keywords>
<section>
<title>Introduction</title>

View file

@ -6,6 +6,12 @@
<year>2001</year>
</date>
<cvs:keywords xmlns:cvs="http://www.FreeBSD.org/XML/CVS" version="1.0">
<cvs:keyword name="freebsd">
$FreeBSD$
</cvs:keyword>
</cvs:keywords>
<section>
<title>Introduction</title>

View file

@ -5,6 +5,12 @@
<year>2001</year>
</date>
<cvs:keywords xmlns:cvs="http://www.FreeBSD.org/XML/CVS" version="1.0">
<cvs:keyword name="freebsd">
$FreeBSD$
</cvs:keyword>
</cvs:keywords>
<section>
<title>Introduction</title>

View file

@ -1,17 +1,26 @@
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!-- $FreeBSD: www/en/news/status/report.xsl,v 1.1 2001/09/16 22:36:46 chris Exp $ -->
<!-- $FreeBSD: www/en/news/status/report.xsl,v 1.2 2001/09/17 07:40:26 chris Exp $ -->
<!-- Standard header material -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS">
<xsl:import href="../../includes.xsl"/>
<xsl:import href="../includes.xsl"/>
<xsl:import href="includes.xsl"/>
<xsl:variable name="base" select="'../..'"/>
<xsl:variable name="title" select="'FreeBSD Status Reports'"/>
<xsl:variable name="date" select="'$FreeBSD: www/en/news/status/report.xsl,v 1.1 2001/09/16 22:36:46 chris Exp $'"/>
<xsl:variable name="title">
<xsl:value-of select="report/date/month"/>
<xsl:text> </xsl:text>
<xsl:value-of select="report/date/year"/> Status Report
</xsl:variable>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:variable name="ucletters"
select="ABCDEFGHIJKLMNOPQRSTUVWXYZ"/>