- Merge the changes into the external German repository. - Fix problems caused by this process. - Merge the corrected version back. 2. MFbed: Update the German website. www/de/about.sgml 1.5 -> 1.10 www/de/applications.sgml 1.31 -> 1.33 www/de/index.xsl 1.152 -> 1.156 www/de/internet.sgml 1.35 -> 1.37 www/de/send-pr.sgml 1.52 -> 1.54 www/de/where.sgml 1.84 -> 1.86 www/de/community/mailinglists.sgml 1.9 -> 1.11 www/de/news/Makefile 1.43 -> 1.46 www/de/news/news.sgml 1.44 -> 1.46 www/de/platforms/sparc.sgml 1.26 -> 1.28 www/de/platforms/ia64/index.xsl 1.5 -> 1.7 www/de/share/sgml/navibar.l10n.ent 1.1 -> 1.5 www/de/share/sgml/news.xml 1.1 -> 1.16 www/de/share/sgml/press.xml 1.1 -> 1.11 Obtained from: The FreeBSD German Documentation Project.
33 lines
1 KiB
XML
33 lines
1 KiB
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
|
|
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
|
|
<!ENTITY base ".">
|
|
<!ENTITY title "">
|
|
]>
|
|
|
|
<!--
|
|
$FreeBSD$
|
|
$FreeBSDde: de-www/security/mkindex.xsl,v 1.3 2006/10/19 19:26:10 jkois Exp $
|
|
basiert auf: 1.5
|
|
-->
|
|
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
|
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
|
|
|
|
<xsl:variable name="date" select="'$FreeBSD$'"/>
|
|
|
|
<xsl:output type="xml" encoding="iso-8859-1"
|
|
omit-xml-declaration="yes" />
|
|
|
|
<xsl:template match="/">
|
|
<xsl:call-template name="html-list-advisories">
|
|
<xsl:with-param name="advisories.xml" select="$advisories.xml" />
|
|
</xsl:call-template>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="html-list-advisories-release-label">
|
|
<xsl:param name="relname" select="'none'" />
|
|
|
|
<p><xsl:value-of select="$relname" /> released.</p>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|