- Move includes.nav*.sgml to share/sgml/navibar.ent and
<lang>/share/sgml/navibar.l10n.ent.
- Move includes.sgml and includes.xsl to
share/sgml/common.ent, share/sgml/header.ent, <lang>/share/sgml/l10n.ent,
and <lang>?share/sgml/header.l10n.ent.
- Move most of XSLT libraries to share/sgml/*.xsl and
<lang>/share/sgml/*.xsl.
- Move news.xml and other *.xml files for the similar purpose
to share/sgml/*.xml and <lang>/share/sgml/*.xml.
- Switch to use a custom DTD for HTML document. Now we use
"-//FreeBSD//DTD HTML 4.01 Transitional-Based Extension", which is
HTML 4.01 + some entities previously pulled via
"<!ENTITY % includes SYSTEM "includes.sgml"> %includes;" line.
The location of entity file will be resolved by using catalog file.
- Add DOCTYPE declearation to XML documents. This makes the followings
possible:
* Use of &foo; entities for SGML in an XML file instead of defining
{$foo} as the same content.
* &symbolic; entities for Latin characters.
- Duplicated information between SGML and XML, or English and
translated doc, has been removed as much as possible.
64 lines
2.7 KiB
XML
64 lines
2.7 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1" ?>
|
|
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
|
|
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd">
|
|
<!-- $FreeBSD$ -->
|
|
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
|
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/libcommon.xsl"/>
|
|
|
|
<xsl:template name="html-news-list-newsflash-preface">
|
|
<img src="&enbase;/gifs/news.jpg" align="right" border="0" width="193"
|
|
height="144" alt="Nouvelles FreeBSD"/>
|
|
|
|
<p>Manchmal ist es mühsam, mit der schnellen Entwicklung
|
|
des FreeBSD Betriebssystems Schritt zu halten. Besuchen
|
|
Sie diese Seite öfter, um informiert zu bleiben.
|
|
Weiterhin können Sie die
|
|
<a href="&base;/../doc/de_DE.ISO8859-1/books/handbook/eresources.html#ERESOURCES-MAIL">Mailingliste
|
|
freebsd-announce</a> abonnieren oder den <a href="news.rdf">RSS
|
|
Ticker</a> benutzen.</p>
|
|
|
|
<p>Die nachstehenden Projekte besitzen eigene Seiten,
|
|
auf denen Sie projektbezogene Ankündigungen finden:</p>
|
|
|
|
<ul>
|
|
<li><a href="&enbase;/java/newsflash.html">&java; unter FreeBSD</a></li>
|
|
<li><a href="http://freebsd.kde.org/">KDE unter FreeBSD</a></li>
|
|
<li><a href="&enbase;/gnome/newsflash.html">GNOME unter FreeBSD</a></li>
|
|
</ul>
|
|
|
|
<p>Informationen über frühere, aktuelle und künftige
|
|
Releases finden Sie auf der Seite
|
|
<strong><a href="&base;/releases/index.html">Release
|
|
Information</a></strong>.</p>
|
|
|
|
<p>Die FreeBSD Sicherheitshinweise finden Sie auf der Seite
|
|
<a href="&base;/security/#adv">FreeBSD Sicherheit</a>.</p>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="html-news-list-newsflash-homelink">
|
|
<a href="&base;/news/news.html">FreeBSD Neuigkeiten</a>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="html-news-make-olditems-list">
|
|
<p>Ältere Ankündigungen:
|
|
<a href="2002/index.html">2002</a>,
|
|
<a href="&enbase;/news/2001/index.html">2001</a>,
|
|
<a href="&enbase;/news/2000/index.html">2000</a>,
|
|
<a href="&enbase;/news/1999/index.html">1999</a>,
|
|
<a href="&enbase;/news/1998/index.html">1998</a>,
|
|
<a href="&enbase;/news/1997/index.html">1997</a>,
|
|
<a href="&enbase;/news/1996/index.html">1996</a></p>
|
|
</xsl:template>
|
|
|
|
<xsl:variable name="html-news-list-press-homelink">
|
|
<a href="&base;/news/press.html">FreeBSD Pressemeldungen</a>
|
|
</xsl:variable>
|
|
|
|
<xsl:template name="html-news-list-press-preface">
|
|
<p>Kennen Sie einen hier nicht aufgeführten Artikel?
|
|
Senden Sie bitte die Einzelheiten an
|
|
<a href="mailto:www@FreeBSD.org">www@FreeBSD.org</a> und
|
|
wir nehmen den Artikel auf.</p>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|