- Add namespace to XHTML fragments generated by XSLT stylesheets

- Properly define titles, navigation bars and RSS links for generated pages
- Minor cleanup

Approved by:	doceng (implicit)
This commit is contained in:
Gabor Kovesdan 2012-08-12 20:35:40 +00:00
parent 9b19e6243c
commit 77ddadd891
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/projects/sgml2xml/; revision=39366
95 changed files with 573 additions and 765 deletions

View file

@ -2,7 +2,6 @@
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "Die FreeBSD-Gemeinde"> <!ENTITY title "Die FreeBSD-Gemeinde">
<!ENTITY email "freebsd-www">
<!ENTITY % navinclude.community "INCLUDE"> <!ENTITY % navinclude.community "INCLUDE">
]> ]>
@ -10,28 +9,23 @@
<!-- $FreeBSDde: de-www/community.xsl,v 1.7 2011/08/01 09:27:32 jkois Exp $ --> <!-- $FreeBSDde: de-www/community.xsl,v 1.7 2011/08/01 09:27:32 jkois Exp $ -->
<!-- basiert auf: 1.9 --> <!-- basiert auf: 1.9 -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" <xsl:stylesheet version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"> xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:key name="last-year-event-by-country" match="event[number(enddate/year) = (number($curdate.year) - 1)]" <xsl:key name="last-year-event-by-country" match="event[number(enddate/year) = (number($curdate.year) - 1)]"
use="location/country" /> use="location/country" />
<xsl:key name="event-by-year" match="event" use="enddate/year" /> <xsl:key name="event-by-year" match="event" use="enddate/year" />
<xsl:template name="process.content"> <xsl:template name="process.sidewrap">
<div id="SIDEWRAP"> &nav.community;
&nav; </xsl:template>
</div> <!-- SIDEWRAP -->
<div id="CONTENTWRAP">
&header3;
<xsl:template name="process.contentwrap">
<p>&os; wird von einer aktiven Gemeinschaft <p>&os; wird von einer aktiven Gemeinschaft
unterst&uuml;tzt.</p> unterst&uuml;tzt.</p>
@ -136,6 +130,5 @@
</script> </script>
</div> <!-- Latest Videos --> </div> <!-- Latest Videos -->
</div> <!-- CONTENTWRAP -->
</xsl:template> </xsl:template>
</xsl:stylesheet> </xsl:stylesheet>

View file

@ -9,7 +9,10 @@
basiert auf: 1.178 basiert auf: 1.178
--> -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
@ -26,6 +29,8 @@
<xsl:param name="events.xml" select="'none'"/> <xsl:param name="events.xml" select="'none'"/>
<xsl:param name="html.header.script.google" select="'IGNORE'"/> <xsl:param name="html.header.script.google" select="'IGNORE'"/>
<xsl:variable name="title">&title;</xsl:variable>
<xsl:template name="process.content"> <xsl:template name="process.content">
<div id="FRONTCONTAINER"> <div id="FRONTCONTAINER">
<div id="FRONTMAIN"> <div id="FRONTMAIN">

View file

@ -97,8 +97,6 @@
</div> <!-- HEADERCONTAINER --> </div> <!-- HEADERCONTAINER -->
'> '>
<!ENTITY header3 '<h1>&title;</h1>'>
<!-- macro for webbuild paper --> <!-- macro for webbuild paper -->
<!ENTITY webbuild ' <!ENTITY webbuild '
<p>Áõôü ôï êåßìåíï ðåñéãñÜöåé ôç ÷åéñïêßíçôç äéáäéêáóßá ðñïåôïéìáóßáò <p>Áõôü ôï êåßìåíï ðåñéãñÜöåé ôç ÷åéñïêßíçôç äéáäéêáóßá ðñïåôïéìáóßáò

View file

@ -2,37 +2,29 @@
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "FreeBSD Community"> <!ENTITY title "FreeBSD Community">
<!ENTITY email "freebsd-www">
<!ENTITY % navinclude.community "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" <xsl:stylesheet version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"> xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:variable name="date"> <xsl:variable name="title">&title;</xsl:variable>
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:output method="xml" encoding="&xml.encoding;"
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"/>
<xsl:key name="last-year-event-by-country" match="event[number(enddate/year) = (number($curdate.year) - 1)]" <xsl:key name="last-year-event-by-country" match="event[number(enddate/year) = (number($curdate.year) - 1)]"
use="location/country" /> use="location/country" />
<xsl:key name="event-by-year" match="event" use="enddate/year" /> <xsl:key name="event-by-year" match="event" use="enddate/year" />
<xsl:template name="process.content"> <xsl:template name="process.sidewrap">
<div id="SIDEWRAP"> &nav.community;
&nav; </xsl:template>
</div> <!-- SIDEWRAP -->
<div id="CONTENTWRAP">
&header3;
<xsl:template name="process.contentwrap">
<p>&os; is well supported by its active <p>&os; is well supported by its active
community.</p> community.</p>
@ -136,7 +128,5 @@
GSearch.setOnLoadCallback(LoadVideoBar); GSearch.setOnLoadCallback(LoadVideoBar);
</script> </script>
</div> <!-- Latest Videos --> </div> <!-- Latest Videos -->
</div> <!-- CONTENTWRAP -->
<br class="clearboth" />
</xsl:template> </xsl:template>
</xsl:stylesheet> </xsl:stylesheet>

View file

@ -1,10 +1,6 @@
<?xml version="1.0" encoding="ISO-8859-1" ?> <?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD Fragment//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD Fragment//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd">
<!ENTITY title "FreeBSD Events">
<!ENTITY email "freebsd-www">
<!ENTITY % navinclude.about "INCLUDE">
]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
@ -43,10 +39,6 @@
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:output method="xml" indent="yes"/> <xsl:output method="xml" indent="yes"/>
<xsl:key name="event-by-month" match="event" <xsl:key name="event-by-month" match="event"

View file

@ -3,7 +3,6 @@
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY base ".."> <!ENTITY base "..">
<!ENTITY title "The FreeBSD GNOME Project"> <!ENTITY title "The FreeBSD GNOME Project">
<!ENTITY % navinclude.gnome "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
@ -15,9 +14,11 @@
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:variable name="title">&title;</xsl:variable>
<xsl:template name="process.content"> <xsl:template name="process.content">
<div id="SIDEWRAP"> <div id="SIDEWRAP">
&nav; &nav.gnome;
</div> <!-- SIDEWRAP --> </div> <!-- SIDEWRAP -->
<div id="CONTENTWRAP"> <div id="CONTENTWRAP">
@ -86,7 +87,7 @@
</div> <!-- rightnav --> </div> <!-- rightnav -->
</div> <!-- rightwrap --> </div> <!-- rightwrap -->
&header3; <h1>&title;</h1>
<h2>What is GNOME?</h2> <h2>What is GNOME?</h2>

View file

@ -4,23 +4,26 @@
<!ENTITY base ".."> <!ENTITY base "..">
<!ENTITY title "FreeBSD GNOME News Flash"> <!ENTITY title "FreeBSD GNOME News Flash">
<!ENTITY rsslink "&base;/gnome/rss.xml"> <!ENTITY rsslink "&base;/gnome/rss.xml">
<!ENTITY rsstitle "&title;">
<!ENTITY email "freebsd-gnome">
<!ENTITY % navinclude.gnome "INCLUDE">
<!ENTITY % header.rss "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" <xsl:stylesheet version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS" exclude-result-prefixes="cvs"> xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:variable name="title">&title;</xsl:variable>
<xsl:variable name="rsstitle">&title;</xsl:variable>
<xsl:variable name="rsslink">&rsslink;</xsl:variable>
<xsl:template name="process.content"> <xsl:template name="process.content">
<div id="SIDEWRAP"> <div id="SIDEWRAP">
&nav; &nav.gnome;
<div id="FEEDLINKS"> <div id="FEEDLINKS">
<ul> <ul>
<li> <li>
@ -39,7 +42,7 @@
</div> <!-- SIDEWRAP --> </div> <!-- SIDEWRAP -->
<div id="CONTENTWRAP"> <div id="CONTENTWRAP">
&header3; <h1>&title;</h1>
<img src="&base;/gifs/news.jpg" align="right" border="0" width="193" <img src="&base;/gifs/news.jpg" align="right" border="0" width="193"
height="144" alt="FreeBSD GNOME News"/> height="144" alt="FreeBSD GNOME News"/>

View file

@ -1,9 +1,6 @@
<?xml version="1.0" encoding="ISO-8859-1" ?> <?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd">
<!ENTITY base "..">
<!ENTITY title "FreeBSD GNOME Project News System">
]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->

View file

@ -1,9 +1,6 @@
<?xml version="1.0" encoding="ISO-8859-1" ?> <?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd">
<!ENTITY base "..">
<!ENTITY title "FreeBSD GNOME Project News System">
]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
@ -15,11 +12,6 @@
<xsl:output method="xml" indent="yes"/> <xsl:output method="xml" indent="yes"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:template match="/"> <xsl:template match="/">
<xsl:variable name="title">FreeBSD GNOME Project News</xsl:variable> <xsl:variable name="title">FreeBSD GNOME Project News</xsl:variable>
<xsl:variable name="link">http://www.FreeBSD.org/gnome/</xsl:variable> <xsl:variable name="link">http://www.FreeBSD.org/gnome/</xsl:variable>

View file

@ -6,7 +6,10 @@
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
@ -23,6 +26,8 @@
<xsl:param name="events.xml" select="'none'"/> <xsl:param name="events.xml" select="'none'"/>
<xsl:param name="html.header.script.google" select="'IGNORE'"/> <xsl:param name="html.header.script.google" select="'IGNORE'"/>
<xsl:variable name="title">&title;</xsl:variable>
<xsl:template name="process.content"> <xsl:template name="process.content">
<div id="FRONTCONTAINER"> <div id="FRONTCONTAINER">
<div id="FRONTMAIN"> <div id="FRONTMAIN">

View file

@ -1,9 +1,6 @@
<?xml version="1.0" encoding="iso-8859-1"?> <?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd">
<!ENTITY base ".">
<!ENTITY title "">
]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<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"
@ -14,10 +11,6 @@
<xsl:output method="xml" indent="yes"/> <xsl:output method="xml" indent="yes"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:template match="/"> <xsl:template match="/">
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel> <channel>

View file

@ -3,24 +3,28 @@
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY base ".."> <!ENTITY base "..">
<!ENTITY rsslink "&base;/java/rss.xml"> <!ENTITY rsslink "&base;/java/rss.xml">
<!ENTITY title "FreeBSD &java; Project: Newsflash"> <!ENTITY title "FreeBSD &java; Project News Flash">
<!ENTITY rsstitle "FreeBSD Java Project News"> <!ENTITY rsstitle "FreeBSD Java Project News">
<!ENTITY email "freebsd-java">
<!ENTITY % navinclude.developers "INCLUDE">
<!ENTITY % header.rss "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" <xsl:stylesheet version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS" exclude-result-prefixes="cvs"> xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:variable name="title">&title;</xsl:variable>
<xsl:variable name="rsstitle">&title;</xsl:variable>
<xsl:variable name="rsslink">&rsslink;</xsl:variable>
<xsl:template name="process.content"> <xsl:template name="process.content">
<div id="SIDEWRAP"> <div id="SIDEWRAP">
&nav; &nav.developers;
<div id="FEEDLINKS"> <div id="FEEDLINKS">
<ul> <ul>
<li> <li>
@ -33,7 +37,7 @@
</div> <!-- SIDEWRAP --> </div> <!-- SIDEWRAP -->
<div id="CONTENTWRAP"> <div id="CONTENTWRAP">
&header3; <h1>&title;</h1>
<img src="&base;/gifs/news.jpg" align="right" border="0" width="193" <img src="&base;/gifs/news.jpg" align="right" border="0" width="193"
height="144" alt="FreeBSD Java News"/> height="144" alt="FreeBSD Java News"/>

View file

@ -1,34 +1,26 @@
<?xml version="1.0" encoding="ISO-8859-1" ?> <?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY base "../..">
<!ENTITY title "FreeBSD Quarterly Status Report"> <!ENTITY title "FreeBSD Quarterly Status Report">
<!ENTITY email "freebsd-www">
<!ENTITY % navinclude.about "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<!-- Standard header material --> <!-- Standard header material -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" <xsl:stylesheet version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"> xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:variable name="ucletters" <xsl:variable name="title">&title;</xsl:variable>
select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'"/>
<xsl:variable name="lcletters"
select="'abcdefghijklmnopqrstuvwxyz'"/>
<xsl:template name="process.content"> <xsl:template name="process.sidewrap">
<div id="SIDEWRAP"> &nav.about;
&nav; </xsl:template>
</div> <!-- SIDEWRAP -->
<div id="contentwrap">
&header3;
<xsl:template name="process.contentwrap">
<!-- Process all the <sections>, in order --> <!-- Process all the <sections>, in order -->
<xsl:apply-templates select="report/section"/> <xsl:apply-templates select="report/section"/>
@ -40,7 +32,7 @@
<xsl:variable name="cat-short" select="name"/> <xsl:variable name="cat-short" select="name"/>
<ul> <ul>
<xsl:for-each select="//project[@cat=$cat-short and @summary]"> <xsl:for-each select="//project[@cat=$cat-short and @summary]">
<xsl:sort select="translate(title, $lcletters, $ucletters)"/> <xsl:sort select="translate(title, $lowercase, $uppercase)"/>
<li><a><xsl:attribute name="href">#<xsl:value-of <li><a><xsl:attribute name="href">#<xsl:value-of
select="translate(title, ' ', select="translate(title, ' ',
'-')"/></xsl:attribute><xsl:value-of select="title"/></a> '-')"/></xsl:attribute><xsl:value-of select="title"/></a>
@ -48,7 +40,7 @@
</xsl:for-each> </xsl:for-each>
<xsl:for-each select="//project[@cat=$cat-short and not(@summary)]"> <xsl:for-each select="//project[@cat=$cat-short and not(@summary)]">
<xsl:sort select="translate(title, $lcletters, $ucletters)"/> <xsl:sort select="translate(title, $lowercase, $uppercase)"/>
<li><a><xsl:attribute name="href">#<xsl:value-of <li><a><xsl:attribute name="href">#<xsl:value-of
select="translate(title, ' ', select="translate(title, ' ',
'-')"/></xsl:attribute><xsl:value-of select="title"/></a> '-')"/></xsl:attribute><xsl:value-of select="title"/></a>
@ -58,7 +50,7 @@
</xsl:for-each> </xsl:for-each>
<ul> <ul>
<xsl:for-each select="//project[not(@cat)]"> <xsl:for-each select="//project[not(@cat)]">
<xsl:sort select="translate(title, $lcletters, $ucletters)"/> <xsl:sort select="translate(title, $lowercase, $uppercase)"/>
<li><a><xsl:attribute name="href">#<xsl:value-of <li><a><xsl:attribute name="href">#<xsl:value-of
select="translate(title, ' ', select="translate(title, ' ',
'-')"/></xsl:attribute><xsl:value-of select="title"/></a> '-')"/></xsl:attribute><xsl:value-of select="title"/></a>
@ -70,14 +62,11 @@
<!-- Process each project, sorted --> <!-- Process each project, sorted -->
<xsl:apply-templates select="report/project"> <xsl:apply-templates select="report/project">
<xsl:sort select="translate(title, $lcletters, $ucletters)"/> <xsl:sort select="translate(title, $lowercase, $uppercase)"/>
</xsl:apply-templates> </xsl:apply-templates>
<!-- Standard footer --> <!-- Standard footer -->
<a href="../news.html">News Home</a> | <a href="status.html">Status Home</a> <a href="../news.html">News Home</a> | <a href="status.html">Status Home</a>
</div> <!-- contentwrap -->
<br class="clearboth" />
</xsl:template> </xsl:template>
<!-- Everything that follows are templates for the rest of the content --> <!-- Everything that follows are templates for the rest of the content -->

View file

@ -6,12 +6,17 @@
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:key name="indexLetter" match="term" use="translate(substring(text, 1, 1), $lowercase, $uppercase)"/> <xsl:key name="indexLetter" match="term" use="translate(substring(text, 1, 1), $lowercase, $uppercase)"/>
<xsl:variable name="title">&title;</xsl:variable>
<xsl:template name="process.contentwrap"> <xsl:template name="process.contentwrap">
<h1>Site Map</h1> <h1>Site Map</h1>

View file

@ -1,9 +1,6 @@
<?xml version="1.0" encoding="iso-8859-1"?> <?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd">
<!ENTITY base ".">
<!ENTITY title "">
]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<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"
@ -14,10 +11,6 @@
<xsl:output method="xml" indent="yes"/> <xsl:output method="xml" indent="yes"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:template match="/"> <xsl:template match="/">
<xsl:call-template name="rss-errata-notices"> <xsl:call-template name="rss-errata-notices">
<xsl:with-param name="notices.xml" select="$notices.xml" /> <xsl:with-param name="notices.xml" select="$notices.xml" />

View file

@ -1,9 +1,6 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd">
<!ENTITY base ".">
<!ENTITY title "">
]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->

View file

@ -1,9 +1,6 @@
<?xml version="1.0" encoding="iso-8859-1"?> <?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd">
<!ENTITY base ".">
<!ENTITY title "">
]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<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">

View file

@ -1,9 +1,6 @@
<?xml version="1.0" encoding="iso-8859-1"?> <?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd">
<!ENTITY base ".">
<!ENTITY title "">
]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<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"
@ -14,10 +11,6 @@
<xsl:output method="xml" indent="yes"/> <xsl:output method="xml" indent="yes"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:template match="/"> <xsl:template match="/">
<xsl:call-template name="rss-security-advisories"> <xsl:call-template name="rss-security-advisories">
<xsl:with-param name="advisories.xml" select="$advisories.xml" /> <xsl:with-param name="advisories.xml" select="$advisories.xml" />

View file

@ -7,12 +7,13 @@
<!-- The FreeBSD Spanish Documentation Project <!-- The FreeBSD Spanish Documentation Project
Original Revision: r1.163 --> Original Revision: r1.163 -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:variable name="date" select="'$FreeBSD$'"/>
<!-- these params should be externally bound. The values <!-- these params should be externally bound. The values
here are not used actually --> here are not used actually -->
<xsl:param name="advisories.xml" select="'none'"/> <xsl:param name="advisories.xml" select="'none'"/>
@ -25,6 +26,10 @@
<xsl:param name="events.xml-master" select="'none'"/> <xsl:param name="events.xml-master" select="'none'"/>
<xsl:param name="events.xml" select="'none'"/> <xsl:param name="events.xml" select="'none'"/>
<xsl:variable name="svnKeyword" select="'$FreeBSD$'"/>
<xsl:variable name="title">&title;</xsl:variable>
<xsl:template name="process.content"> <xsl:template name="process.content">
<div id="FRONTCONTAINER"> <div id="FRONTCONTAINER">
<div id="FRONTMAIN"> <div id="FRONTMAIN">

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="ISO-8859-1" ?> <?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "Mapa de sitio e índice de http://www.FreeBSD.org"> <!ENTITY title "Mapa del sitio">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
@ -9,18 +9,21 @@
<!-- The FreeBSD Spanish Documentation Project <!-- The FreeBSD Spanish Documentation Project
Original Revision: r1.29 --> Original Revision: r1.29 -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:variable name="lowercase" select="'aábcdeéfghiíjklmnñoópqrstuúvwxyz'"/> <xsl:variable name="lowercase" select="'aábcdeéfghiíjklmnñoópqrstuúvwxyz'"/>
<xsl:variable name="uppercase" select="'AÁBCDEÉFGHIÍJKLMNÑOÓPQRSTUÚVWXYZ'"/> <xsl:variable name="uppercase" select="'AÁBCDEÉFGHIÍJKLMNÑOÓPQRSTUÚVWXYZ'"/>
<xsl:variable name="title">&title;</xsl:variable>
<xsl:key name="indexLetter" match="term" use="translate(substring(text, 1, 1), $lowercase, $uppercase)"/> <xsl:key name="indexLetter" match="term" use="translate(substring(text, 1, 1), $lowercase, $uppercase)"/>
<xsl:template name="process.contentwrap"> <xsl:template name="process.contentwrap">
<h1>Mapa del sitio</h1>
<xsl:call-template name="html-sitemap"/> <xsl:call-template name="html-sitemap"/>
<h2>Metapáginas</h2> <h2>Metapáginas</h2>

View file

@ -26,8 +26,6 @@
<h1>Informations Générales</h1> <h1>Informations Générales</h1>
<em>&date; </em>
<h2>Introduction</h2> <h2>Introduction</h2>
<p>A la lumière de notre récent (et toujours actuel) souci de la sécurité, <p>A la lumière de notre récent (et toujours actuel) souci de la sécurité,

View file

@ -1,9 +1,7 @@
<?xml version="1.0" encoding="iso-8859-1"?> <?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY base "..">
<!ENTITY title "Projet GNOME pour FreeBSD"> <!ENTITY title "Projet GNOME pour FreeBSD">
<!ENTITY % navinclude.gnome "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
@ -22,12 +20,13 @@
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:variable name="date" select="'$FreeBSD$'"/> <xsl:variable name="svnKeyword" select="'$FreeBSD$'"/>
<xsl:variable name="title" select="''"/>
<xsl:variable name="title">&title;</xsl:variable>
<xsl:template names="process.content"> <xsl:template names="process.content">
<div id="SIDEWRAP"> <div id="SIDEWRAP">
&nav; &nav.gnome;
</div> <!-- SIDEWRAP --> </div> <!-- SIDEWRAP -->
<div id="CONTENTWRAP"> <div id="CONTENTWRAP">
@ -96,7 +95,7 @@
</div> <!-- rightnav --> </div> <!-- rightnav -->
</div> <!-- rightwrap --> </div> <!-- rightwrap -->
&header3; <h1>&title;</h1>
<h2>Qu'est-ce que GNOME ?</h2> <h2>Qu'est-ce que GNOME ?</h2>

View file

@ -1,10 +1,7 @@
<?xml version="1.0" encoding="ISO-8859-1" ?> <?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY base "..">
<!ENTITY title "Nouvelles sur le projet GNOME pour FreeBSD"> <!ENTITY title "Nouvelles sur le projet GNOME pour FreeBSD">
<!ENTITY email "freebsd-gnome">
<!ENTITY % navinclude.developers "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
@ -16,24 +13,20 @@
Version francaise : Stephane Legrand <stephane@freebsd-fr.org> Version francaise : Stephane Legrand <stephane@freebsd-fr.org>
--> -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" <xsl:stylesheet version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS" exclude-result-prefixes="cvs"> xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:variable name="date"> <xsl:variable name="title">&title;</xsl:variable>
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:template names="process.content"> <xsl:template name="process.sidewrap">
<div id="SIDEWRAP"> &nav.developers;
&nav; </xsl:template>
</div> <!-- SIDEWRAP -->
<div id="CONTENTWRAP">
&header3;
<xsl:template names="process.contentwrap">
<img src="&enbase;/gifs/news.jpg" align="right" border="0" width="193" <img src="&enbase;/gifs/news.jpg" align="right" border="0" width="193"
height="144" alt="FreeBSD GNOME News"/> height="144" alt="FreeBSD GNOME News"/>
@ -42,8 +35,6 @@
<xsl:for-each select="/news"> <xsl:for-each select="/news">
<xsl:call-templates name="html-news-list-homelink" /> <xsl:call-templates name="html-news-list-homelink" />
</xsl:for-each> </xsl:for-each>
</div> <!-- contentwrap -->
</xsl:template> </xsl:template>
<!-- Everything that follows are templates for the rest of the content --> <!-- Everything that follows are templates for the rest of the content -->
@ -78,6 +69,4 @@
</li> </li>
</xsl:template> </xsl:template>
<xsl:template match="date"/> <!-- Deliberately left blank -->
</xsl:stylesheet> </xsl:stylesheet>

View file

@ -1,9 +1,6 @@
<?xml version="1.0" encoding="ISO-8859-1" ?> <?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd">
<!ENTITY base "..">
<!ENTITY title "Système de nouvelles du Projet GNOME pour FreeBSD">
]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<!-- <!--
@ -19,7 +16,7 @@
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:variable name="date" select="'$FreeBSD$'"/> <xsl:variable name="svnKeyword" select="'$FreeBSD$'"/>
<xsl:output type="xml" /> <xsl:output type="xml" />

View file

@ -13,12 +13,13 @@
Mise a jour: Marc Fonvieille <blackend@FreeBSD.org> Mise a jour: Marc Fonvieille <blackend@FreeBSD.org>
--> -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:variable name="date" select="''"/>
<!-- these params should be externally bound. The values <!-- these params should be externally bound. The values
here are not used actually --> here are not used actually -->
<xsl:param name="advisories.xml" select="'none'"/> <xsl:param name="advisories.xml" select="'none'"/>
@ -32,6 +33,10 @@
<xsl:param name="events.xml" select="'none'"/> <xsl:param name="events.xml" select="'none'"/>
<xsl:param name="curdate.xml" select="'none'"/> <xsl:param name="curdate.xml" select="'none'"/>
<xsl:variable name="svnKeyword" select="'$FreeBSD$'"/>
<xsl:variable name="title">&title;</xsl:variable>
<xsl:template names="process.content"> <xsl:template names="process.content">
<div id="FRONTCONTAINER"> <div id="FRONTCONTAINER">
<div id="FRONTMAIN"> <div id="FRONTMAIN">

View file

@ -1,10 +1,7 @@
<?xml version="1.0" encoding="ISO-8859-1" ?> <?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY base "../..">
<!ENTITY title "FreeBSD Rapport de Statut"> <!ENTITY title "FreeBSD Rapport de Statut">
<!ENTITY email "freebsd-www">
<!ENTITY % navinclude.about "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
@ -17,28 +14,20 @@
--> -->
<!-- Standard header material --> <!-- Standard header material -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" <xsl:stylesheet version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"> xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:variable name="date"> <xsl:variable name="title">&title;</xsl:variable>
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:variable name="ucletters" <xsl:template name="process.sidewrap">
select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'"/> &nav.about;
<xsl:variable name="lcletters" </xsl:template>
select="'abcdefghijklmnopqrstuvwxyz'"/>
<xsl:template names="process.content">
<div id="SIDEWRAP">
&nav;
</div> <!-- SIDEWRAP -->
<div id="contentwrap">
&header3;
<xsl:template names="process.contentwrap">
<!-- Process all the <sections>, in order --> <!-- Process all the <sections>, in order -->
<xsl:apply-templates select="/report/section"/> <xsl:apply-templates select="/report/section"/>
@ -50,7 +39,7 @@
<xsl:variable name="cat-short" select="name"/> <xsl:variable name="cat-short" select="name"/>
<ul> <ul>
<xsl:for-each select="//project[@cat=$cat-short]"> <xsl:for-each select="//project[@cat=$cat-short]">
<xsl:sort select="translate(title, $lcletters, $ucletters)"/> <xsl:sort select="translate(title, $lowercase, $uppercase)"/>
<li><a><xsl:attribute name="href">#<xsl:value-of <li><a><xsl:attribute name="href">#<xsl:value-of
select="translate(title, ' ', select="translate(title, ' ',
'-')"/></xsl:attribute><xsl:value-of select="title"/></a> '-')"/></xsl:attribute><xsl:value-of select="title"/></a>
@ -60,7 +49,7 @@
</xsl:for-each> </xsl:for-each>
<ul> <ul>
<xsl:for-each select="//project[not(@cat)]"> <xsl:for-each select="//project[not(@cat)]">
<xsl:sort select="translate(title, $lcletters, $ucletters)"/> <xsl:sort select="translate(title, $lowercase, $ucppercase)"/>
<li><a><xsl:attribute name="href">#<xsl:value-of <li><a><xsl:attribute name="href">#<xsl:value-of
select="translate(title, ' ', select="translate(title, ' ',
'-')"/></xsl:attribute><xsl:value-of select="title"/></a> '-')"/></xsl:attribute><xsl:value-of select="title"/></a>
@ -72,12 +61,11 @@
<!-- Process each project, sorted --> <!-- Process each project, sorted -->
<xsl:apply-templates select="/report/project"> <xsl:apply-templates select="/report/project">
<xsl:sort select="translate(title, $lcletters, $ucletters)"/> <xsl:sort select="translate(title, $lowercase, $uppercase)"/>
</xsl:apply-templates> </xsl:apply-templates>
<!-- Standard footer --> <!-- Standard footer -->
<a href="../news.html">News Home</a> | <a href="status.html">Status Home</a> <a href="../news.html">News Home</a> | <a href="status.html">Status Home</a>
</div> <!-- contentwrap -->
</xsl:template> </xsl:template>
<!-- Everything that follows are templates for the rest of the content --> <!-- Everything that follows are templates for the rest of the content -->

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="ISO-8859-1" ?> <?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "Plan du site et index de http://www.FreeBSD.org"> <!ENTITY title "Plan du site">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
@ -15,18 +15,21 @@
Version francaise (mise a jour) : Antoine Brodin <antoine.brodin@laposte.net> Version francaise (mise a jour) : Antoine Brodin <antoine.brodin@laposte.net>
--> -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:variable name="lowercase" select="'aàbcçdeéèêfghiîjklmnoôpqrstuùûvwxyz'"/> <xsl:variable name="lowercase" select="'aàbcçdeéèêfghiîjklmnoôpqrstuùûvwxyz'"/>
<xsl:variable name="uppercase" select="'AÀBCÇDEÉÈÊFGHIÎJKLMNOÔPQRSTUÙÛVWXYZ'"/> <xsl:variable name="uppercase" select="'AÀBCÇDEÉÈÊFGHIÎJKLMNOÔPQRSTUÙÛVWXYZ'"/>
<xsl:variable name="title">&title;</xsl:variable>
<xsl:key name="indexLetter" match="term" use="translate(substring(text, 1, 1), $lowercase, $uppercase)"/> <xsl:key name="indexLetter" match="term" use="translate(substring(text, 1, 1), $lowercase, $uppercase)"/>
<xsl:template name="process.contentwrap"> <xsl:template name="process.contentwrap">
<h1>Plan du site</h1>
<xsl:call-template name="html-sitemap"/> <xsl:call-template name="html-sitemap"/>
<h2>Meta pages d'accueil</h2> <h2>Meta pages d'accueil</h2>

View file

@ -1,9 +1,6 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd">
<!ENTITY base ".">
<!ENTITY title "">
]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
@ -17,7 +14,7 @@
<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">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:variable name="date" select="'$FreeBSD$'"/> <xsl:variable name="svnKeyword" select="'$FreeBSD$'"/>
<xsl:output type="xml" encoding="iso-8859-1" <xsl:output type="xml" encoding="iso-8859-1"
omit-xml-declaration="yes" /> omit-xml-declaration="yes" />

View file

@ -2,8 +2,6 @@
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "A &os; k&ouml;z&ouml;ss&eacute;g"> <!ENTITY title "A &os; k&ouml;z&ouml;ss&eacute;g">
<!ENTITY email "freebsd-www">
<!ENTITY % navinclude.community "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
@ -14,28 +12,25 @@
%SRCID% 1.9 %SRCID% 1.9
--> -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" <xsl:stylesheet version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"> xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:key name="last-year-event-by-country" match="event[number(enddate/year) = (number($curdate.year) - 1)]" <xsl:key name="last-year-event-by-country" match="event[number(enddate/year) = (number($curdate.year) - 1)]"
use="location/country" /> use="location/country" />
<xsl:key name="event-by-year" match="event" use="enddate/year" /> <xsl:key name="event-by-year" match="event" use="enddate/year" />
<xsl:template name="process.content"> <xsl:variable name="title">&title;</xsl:variable>
<div id="SIDEWRAP">
&nav;
</div> <!-- SIDEWRAP -->
<div id="CONTENTWRAP"> <xsl:template name="process.sidewrap">
&header3; &nav.community;
</xsl:template>
<xsl:template name="process.contentwrap">
<p>A &os; m&ouml;g&ouml;tt egy akt&iacute;v <p>A &os; m&ouml;g&ouml;tt egy akt&iacute;v
fejleszt&#245;i k&ouml;z&ouml;ss&eacute;g fejleszt&#245;i k&ouml;z&ouml;ss&eacute;g
&aacute;ll.</p> &aacute;ll.</p>
@ -143,6 +138,5 @@
GSearch.setOnLoadCallback(LoadVideoBar); GSearch.setOnLoadCallback(LoadVideoBar);
</script> </script>
</div> <!-- latest-videos --> </div> <!-- latest-videos -->
</div> <!-- CONTENTWRAP -->
</xsl:template> </xsl:template>
</xsl:stylesheet> </xsl:stylesheet>

View file

@ -2,8 +2,6 @@
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD Fragment//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD Fragment//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "&os; k&ouml;zpont&uacute; rendezv&eacute;nyek"> <!ENTITY title "&os; k&ouml;zpont&uacute; rendezv&eacute;nyek">
<!ENTITY email "freebsd-www">
<!ENTITY % navinclude.about "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
@ -49,10 +47,6 @@
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:output method="xml" indent="yes"/> <xsl:output method="xml" indent="yes"/>
<xsl:key name="event-by-month" match="event" <xsl:key name="event-by-month" match="event"

View file

@ -12,7 +12,10 @@
%SRCID% 1.169 %SRCID% 1.169
--> -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
@ -28,6 +31,10 @@
<xsl:param name="events.xml-master" select="'none'"/> <xsl:param name="events.xml-master" select="'none'"/>
<xsl:param name="events.xml" select="'none'"/> <xsl:param name="events.xml" select="'none'"/>
<xsl:variable name="svnKeyword">$FreeBSD$</xsl:variable>
<xsl:variable name="title">&title;</xsl:variable>
<xsl:template name="process.content"> <xsl:template name="process.content">
<div id="FRONTCONTAINER"> <div id="FRONTCONTAINER">
<div id="FRONTMAIN"> <div id="FRONTMAIN">

View file

@ -1,24 +1,26 @@
<?xml version="1.0" encoding="ISO-8859-2"?> <?xml version="1.0" encoding="ISO-8859-2"?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "A http://www.FreeBSD.org oldalt&eacute;rk&eacute;pe <!ENTITY title "Oldaltérkép">
&eacute;s indexe">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:variable name="lowercase" select="'aábcdeéfghiíjklmnoóöõpqrstuúüûvwxyz'"/> <xsl:variable name="lowercase" select="'aábcdeéfghiíjklmnoóöõpqrstuúüûvwxyz'"/>
<xsl:variable name="uppercase" select="'AÁBCDEÉFGHIÍJKLMNOÓÖÕPQRSTUÚÜÛVWXYZ'"/> <xsl:variable name="uppercase" select="'AÁBCDEÉFGHIÍJKLMNOÓÖÕPQRSTUÚÜÛVWXYZ'"/>
<xsl:variable name="title">&title;</xsl:variable>
<xsl:key name="indexLetter" match="term" use="translate(substring(text, 1, 1), $lowercase, $uppercase)"/> <xsl:key name="indexLetter" match="term" use="translate(substring(text, 1, 1), $lowercase, $uppercase)"/>
<xsl:template name="process.contentwrap"> <xsl:template name="process.contentwrap">
<h1>Oldalt&eacute;rk&eacute;p</h1>
<xsl:call-template name="html-sitemap"/> <xsl:call-template name="html-sitemap"/>
<h2>Metaoldalak</h2> <h2>Metaoldalak</h2>

View file

@ -1,9 +1,6 @@
<?xml version="1.0" encoding="iso-8859-2"?> <?xml version="1.0" encoding="iso-8859-2"?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd">
<!ENTITY base ".">
<!ENTITY title "">
]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<!-- The FreeBSD Hungarian Documentation Project <!-- The FreeBSD Hungarian Documentation Project
@ -20,10 +17,6 @@
<xsl:output method="xml" indent="yes"/> <xsl:output method="xml" indent="yes"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:template match="/"> <xsl:template match="/">
<xsl:call-template name="rss-errata-notices"> <xsl:call-template name="rss-errata-notices">
<xsl:with-param name="notices.xml" select="$notices.xml" /> <xsl:with-param name="notices.xml" select="$notices.xml" />

View file

@ -1,9 +1,6 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd">
<!ENTITY base ".">
<!ENTITY title "">
]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->

View file

@ -1,9 +1,6 @@
<?xml version="1.0" encoding="iso-8859-2"?> <?xml version="1.0" encoding="iso-8859-2"?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd">
<!ENTITY base ".">
<!ENTITY title "">
]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<!-- The FreeBSD Hungarian Documentation Project <!-- The FreeBSD Hungarian Documentation Project

View file

@ -1,9 +1,6 @@
<?xml version="1.0" encoding="iso-8859-2"?> <?xml version="1.0" encoding="iso-8859-2"?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd">
<!ENTITY base ".">
<!ENTITY title "">
]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<!-- The FreeBSD Hungarian Documentation Project <!-- The FreeBSD Hungarian Documentation Project
@ -20,10 +17,6 @@
<xsl:output method="xml" indent="yes"/> <xsl:output method="xml" indent="yes"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:template match="/"> <xsl:template match="/">
<xsl:call-template name="rss-security-advisories"> <xsl:call-template name="rss-security-advisories">
<xsl:with-param name="advisories.xml" select="$advisories.xml" /> <xsl:with-param name="advisories.xml" select="$advisories.xml" />

View file

@ -9,7 +9,10 @@
%SRCID% 1.31 %SRCID% 1.31
--> -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/libcommon.xsl"/>
<xsl:param name="param-l10n-date-format-YMD" <xsl:param name="param-l10n-date-format-YMD"

View file

@ -21,11 +21,6 @@
<xsl:param name="mirrors-docbook-country-anchor-id" select="translate($target, '/.', '--')" /> <xsl:param name="mirrors-docbook-country-anchor-id" select="translate($target, '/.', '--')" />
<xsl:variable name="date">
<xsl:value-of xmlns:cvs="http://www.FreeBSD.org/XML/CVS"
select="normalize-space(//cvs:keyword[@name='freebsd'])"/>
</xsl:variable>
<!-- <!--
templates available: templates available:

View file

@ -2,11 +2,8 @@
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD Fragment//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD Fragment//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "&os; t&eacute;m&aacute;j&uacute; rendezv&eacute;nyek"> <!ENTITY title "&os; t&eacute;m&aacute;j&uacute; rendezv&eacute;nyek">
<!ENTITY email "freebsd-www">
<!ENTITY rsslink "&base;/events/rss.xml"> <!ENTITY rsslink "&base;/events/rss.xml">
<!ENTITY rsstitle "K&ouml;zelg&#245; &os; t&eacute;m&aacute;j&uacute; rendezv&eacute;nyek"> <!ENTITY rsstitle "K&ouml;zelg&#245; &os; t&eacute;m&aacute;j&uacute; rendezv&eacute;nyek">
<!ENTITY % navinclude.community "INCLUDE">
<!ENTITY % header.rss "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
@ -44,10 +41,9 @@
--> -->
<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"
xmlns:date="http://exslt.org/dates-and-times" xmlns:date="http://exslt.org/dates-and-times"
extension-element-prefixes="date" xmlns="http://www.w3.org/1999/xhtml"
exclude-result-prefixes="cvs"> extension-element-prefixes="date">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
@ -71,6 +67,12 @@
<xsl:variable name="charturl" select="'http://chart.apis.google.com/chart?cht=t&amp;chs=400x200&amp;chtm=world&amp;chco=ffffff,ffbe38,600000&amp;chf=bg,s,4D89F9'" /> <xsl:variable name="charturl" select="'http://chart.apis.google.com/chart?cht=t&amp;chs=400x200&amp;chtm=world&amp;chco=ffffff,ffbe38,600000&amp;chf=bg,s,4D89F9'" />
<xsl:variable name="title">&title;</xsl:variable>
<xsl:variable name="rsstitle">&rsstitle;</xsl:variable>
<xsl:variable name="rsslink">&rsslink;</xsl:variable>
<xsl:template name="process.content"> <xsl:template name="process.content">
<xsl:variable name="chart-countries"> <xsl:variable name="chart-countries">
<xsl:for-each select="/events/event[ <xsl:for-each select="/events/event[
@ -94,7 +96,7 @@
<xsl:variable name="imageurl"><xsl:value-of select="$charturl"/>&amp;chd=t:<xsl:value-of select="$chart-country-counts"/>&amp;chld=<xsl:value-of select="$chart-countries"/></xsl:variable> <xsl:variable name="imageurl"><xsl:value-of select="$charturl"/>&amp;chd=t:<xsl:value-of select="$chart-country-counts"/>&amp;chld=<xsl:value-of select="$chart-countries"/></xsl:variable>
<div id="SIDEWRAP"> <div id="SIDEWRAP">
&nav; &nav.community;
<div id="FEEDLINKS"> <div id="FEEDLINKS">
<ul> <ul>
<li> <li>
@ -107,7 +109,7 @@
</div> <!-- SIDEWRAP --> </div> <!-- SIDEWRAP -->
<div id="contentwrap"> <div id="contentwrap">
&header3; <h1>&title;</h1>
<!-- <!--
Note the current date to have a reference, if the Note the current date to have a reference, if the
upcoming/past events are split incorrectly. upcoming/past events are split incorrectly.

View file

@ -1,9 +1,6 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd">
<!ENTITY title "RDF &os; h&iacute;rek">
<!ENTITY email "freebsd-www">
]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
@ -20,10 +17,6 @@
<xsl:output method="xml" indent="yes" encoding="&xml.encoding;"/> <xsl:output method="xml" indent="yes" encoding="&xml.encoding;"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<!-- Generate the main body of the RDF file --> <!-- Generate the main body of the RDF file -->
<xsl:template match="news"> <xsl:template match="news">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"

View file

@ -23,10 +23,6 @@
<xsl:output method="xml" indent="yes" encoding="&xml.encoding;"/> <xsl:output method="xml" indent="yes" encoding="&xml.encoding;"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<!-- Generate the main body of the RDF file --> <!-- Generate the main body of the RDF file -->
<xsl:template match="news"> <xsl:template match="news">
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">

View file

@ -2,11 +2,8 @@
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "&os; h&iacute;rek"> <!ENTITY title "&os; h&iacute;rek">
<!ENTITY email "freebsd-www">
<!ENTITY rsslink "rss.xml"> <!ENTITY rsslink "rss.xml">
<!ENTITY rsstitle "&title;"> <!ENTITY rsstitle "&title;">
<!ENTITY % navinclude.about "INCLUDE">
<!ENTITY % header.rss "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
@ -17,17 +14,25 @@
%SRCID% 1.4 %SRCID% 1.4
--> -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" <xsl:stylesheet version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"> xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:param name="news.project.xml-master" select="'none'" /> <xsl:param name="news.project.xml-master" select="'none'" />
<xsl:param name="news.project.xml" select="'none'" /> <xsl:param name="news.project.xml" select="'none'" />
<xsl:variable name="title">&title;</xsl:variable>
<xsl:variable name="rsstitle">&rsstitle;</xsl:variable>
<xsl:variable name="rsslink">&rsslink;</xsl:variable>
<xsl:template name="process.content"> <xsl:template name="process.content">
<div id="SIDEWRAP"> <div id="SIDEWRAP">
&nav; &nav.about;
<div id="FEEDLINKS"> <div id="FEEDLINKS">
<ul> <ul>
<li> <li>
@ -45,7 +50,7 @@
</div> <!-- SIDEWRAP --> </div> <!-- SIDEWRAP -->
<div id="CONTENTWRAP"> <div id="CONTENTWRAP">
&header3; <h1>&title;</h1>
<xsl:for-each select="/news"> <xsl:for-each select="/news">
<xsl:call-template name="html-news-list-newsflash-preface" /> <xsl:call-template name="html-news-list-newsflash-preface" />

View file

@ -2,8 +2,6 @@
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "&os; h&iacute;rek"> <!ENTITY title "&os; h&iacute;rek">
<!ENTITY email "freebsd-www">
<!ENTITY % navinclude.about "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
@ -14,12 +12,15 @@
%SRCID% 1.10 %SRCID% 1.10
--> -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" <xsl:stylesheet version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"> xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:variable name="title">&title;</xsl:variable>
<xsl:variable name="year"> <xsl:variable name="year">
<xsl:value-of select="descendant::year/name"/> <xsl:value-of select="descendant::year/name"/>
</xsl:variable> </xsl:variable>
@ -28,15 +29,11 @@
<xsl:copy-of select="." /> <xsl:copy-of select="." />
</xsl:template> </xsl:template>
<xsl:template names="process.content"> <xsl:template name="process.sidewrap">
<div id="SIDEWRAP"> &nav.about;
&nav; </xsl:template>
</div> <!-- SIDEWRAP -->
<div id="CONTENTWRAP">
&header3;
<xsl:template name="process.contentwrap">
<img src="&enbase;/gifs/news.jpg" align="right" border="0" width="193" <img src="&enbase;/gifs/news.jpg" align="right" border="0" width="193"
height="144" alt="&os; h&iacute;rek"/> height="144" alt="&os; h&iacute;rek"/>
@ -60,7 +57,6 @@
<a href="&enbase;/news/1996/index.html">1996</a></p> <a href="&enbase;/news/1996/index.html">1996</a></p>
<a href="&base;/news/news.html">H&iacute;rek f&#245;oldal</a> <a href="&base;/news/news.html">H&iacute;rek f&#245;oldal</a>
</div> <!-- CONTENTWRAP -->
</xsl:template> </xsl:template>
<xsl:template match="month"> <xsl:template match="month">

View file

@ -2,8 +2,6 @@
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "&os; a sajt&oacute;ban"> <!ENTITY title "&os; a sajt&oacute;ban">
<!ENTITY email "freebsd-www">
<!ENTITY % navinclude.about "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
@ -14,25 +12,24 @@
%SRCID% 1.7 %SRCID% 1.7
--> -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" <xsl:stylesheet version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"> xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:variable name="title">&title;</xsl:variable>
<xsl:variable name="year"> <xsl:variable name="year">
<xsl:value-of select="descendant::year/name"/> <xsl:value-of select="descendant::year/name"/>
</xsl:variable> </xsl:variable>
<xsl:template name="process.content"> <xsl:template name="process.sidewrap">
<div id="SIDEWRAP"> &nav.about;
&nav; </xsl:template>
</div> <!-- SIDEWRAP -->
<div id="CONTENTWRAP">
&header3;
<xsl:template name="process.contentwrap">
<xsl:apply-templates select="//month"/> <xsl:apply-templates select="//month"/>
<p>A kor&aacute;bbi &eacute;vek sajt&oacute;kiadv&aacute;nyai <p>A kor&aacute;bbi &eacute;vek sajt&oacute;kiadv&aacute;nyai
@ -50,7 +47,6 @@
<a href="&enbase;/news/1998/press.html">1998-1996</a></p> <a href="&enbase;/news/1998/press.html">1998-1996</a></p>
<a href="&base;/news/news.html">H&iacute;rek f&#245;oldal</a> <a href="&base;/news/news.html">H&iacute;rek f&#245;oldal</a>
</div> <!-- CONTENTWRAP -->
</xsl:template> </xsl:template>
<xsl:template match="month"> <xsl:template match="month">

View file

@ -2,11 +2,8 @@
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD Fragment//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD Fragment//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "Kor&aacute;bbi rendezv&eacute;nyek"> <!ENTITY title "Kor&aacute;bbi rendezv&eacute;nyek">
<!ENTITY email "freebsd-www">
<!ENTITY rsslink "&base;/events/rss.xml"> <!ENTITY rsslink "&base;/events/rss.xml">
<!ENTITY rsstitle "K&ouml;zelg&#245; rendezv&eacute;nyek"> <!ENTITY rsstitle "K&ouml;zelg&#245; rendezv&eacute;nyek">
<!ENTITY % navinclude.community "INCLUDE">
<!ENTITY % header.rss "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
@ -44,10 +41,9 @@
--> -->
<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"
xmlns:date="http://exslt.org/dates-and-times" xmlns:date="http://exslt.org/dates-and-times"
extension-element-prefixes="date" xmlns="http://www.w3.org/1999/xhtml"
exclude-result-prefixes="cvs"> extension-element-prefixes="date">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
@ -70,6 +66,12 @@
<xsl:variable name="charturl" select="'http://chart.apis.google.com/chart?cht=t&amp;chs=400x200&amp;chtm=world&amp;chco=ffffff,ffbe38,600000&amp;chf=bg,s,4D89F9'" /> <xsl:variable name="charturl" select="'http://chart.apis.google.com/chart?cht=t&amp;chs=400x200&amp;chtm=world&amp;chco=ffffff,ffbe38,600000&amp;chf=bg,s,4D89F9'" />
<xsl:variable name="title">&title;</xsl:variable>
<xsl:variable name="rsstitle">&rsstitle;</xsl:variable>
<xsl:variable name="rsslink">&rsslink;</xsl:variable>
<xsl:template name="process.content"> <xsl:template name="process.content">
<xsl:variable name="chart-countries"> <xsl:variable name="chart-countries">
<xsl:for-each select="/events/event[ <xsl:for-each select="/events/event[
@ -93,7 +95,7 @@
<xsl:variable name="imageurl"><xsl:value-of select="$charturl"/>&amp;chd=t:<xsl:value-of select="$chart-country-counts"/>&amp;chld=<xsl:value-of select="$chart-countries"/></xsl:variable> <xsl:variable name="imageurl"><xsl:value-of select="$charturl"/>&amp;chd=t:<xsl:value-of select="$chart-country-counts"/>&amp;chld=<xsl:value-of select="$chart-countries"/></xsl:variable>
<div id="SIDEWRAP"> <div id="SIDEWRAP">
&nav; &nav.community;
<div id="FEEDLINKS"> <div id="FEEDLINKS">
<ul> <ul>
<li> <li>
@ -106,7 +108,7 @@
</div> <!-- SIDEWRAP --> </div> <!-- SIDEWRAP -->
<div id="contentwrap"> <div id="contentwrap">
&header3; <h1>&title;</h1>
<!-- <!--
Note the current date to have a reference, if the Note the current date to have a reference, if the
upcoming/past events are split incorrectly. upcoming/past events are split incorrectly.

View file

@ -49,10 +49,6 @@
<xsl:output method="xml" indent="yes" encoding="&xml.encoding;"/> <xsl:output method="xml" indent="yes" encoding="&xml.encoding;"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<!-- Generate the main body of the RSS file --> <!-- Generate the main body of the RSS file -->
<xsl:template match="press"> <xsl:template match="press">
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">

View file

@ -2,11 +2,8 @@
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "&os; a sajt&oacute;ban"> <!ENTITY title "&os; a sajt&oacute;ban">
<!ENTITY email "freebsd-www">
<!ENTITY rsslink "press-rss.xml"> <!ENTITY rsslink "press-rss.xml">
<!ENTITY rsstitle "&title;"> <!ENTITY rsstitle "&title;">
<!ENTITY % navinclude.about "INCLUDE">
<!ENTITY % header.rss "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
@ -17,8 +14,9 @@
%SRCID% 1.5 %SRCID% 1.5
--> -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" <xsl:stylesheet version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"> xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
@ -26,9 +24,15 @@
<xsl:param name="news.press.xml-master" select="'none'" /> <xsl:param name="news.press.xml-master" select="'none'" />
<xsl:param name="news.press.xml" select="'none'" /> <xsl:param name="news.press.xml" select="'none'" />
<xsl:variable name="title">&title;</xsl:variable>
<xsl:variable name="rsstitle">&rsstitle;</xsl:variable>
<xsl:variable name="rsslink">&rsslink;</xsl:variable>
<xsl:template name="process.content"> <xsl:template name="process.content">
<div id="SIDEWRAP"> <div id="SIDEWRAP">
&nav; &nav.about;
<div id="FEEDLINKS"> <div id="FEEDLINKS">
<ul> <ul>
<li> <li>
@ -42,7 +46,7 @@
<div id="CONTENTWRAP"> <div id="CONTENTWRAP">
&header3; <h1>&title;</h1>
<xsl:for-each select="/press"> <xsl:for-each select="/press">
<xsl:call-template name="html-news-list-press-preface" /> <xsl:call-template name="html-news-list-press-preface" />

View file

@ -11,10 +11,17 @@
Original revision: 1.138 Original revision: 1.138
--> -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl" /> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl" />
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:variable name="svnKeyword">$FreeBSD$</xsl:variable>
<xsl:variable name="title">&title;</xsl:variable>
<xsl:template name="process.content"> <xsl:template name="process.content">
<div id="FRONTCONTAINER"> <div id="FRONTCONTAINER">
<div id="FRONTMAIN"> <div id="FRONTMAIN">

View file

@ -2,35 +2,30 @@
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "FreeBSD のコミュニティ"> <!ENTITY title "FreeBSD のコミュニティ">
<!ENTITY email "freebsd-www">
<!ENTITY % navinclude.community "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<!-- Original revision: 1.9 --> <!-- Original revision: 1.9 -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" <xsl:stylesheet version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"> xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:key name="last-year-event-by-country" match="event[number(enddate/year) = (number($curdate.year) - 1)]" <xsl:key name="last-year-event-by-country" match="event[number(enddate/year) = (number($curdate.year) - 1)]"
use="location/country" /> use="location/country" />
<xsl:key name="event-by-year" match="event" use="enddate/year" /> <xsl:key name="event-by-year" match="event" use="enddate/year" />
<xsl:template name="process.content"> <xsl:variable name="title">&title;</xsl:variable>
<div id="SIDEWRAP">
&nav;
</div> <!-- SIDEWRAP -->
<div id="CONTENTWRAP"> <xsl:template name="process.sidewrap">
&header3; &nav.community;
</xsl:template>
<xsl:template name="process.contentwrap">
<p>&os; には、開発を支える活発なコミュニティがあります。</p> <p>&os; には、開発を支える活発なコミュニティがあります。</p>
<p><a href="&base;/community/mailinglists.html" <p><a href="&base;/community/mailinglists.html"
@ -140,6 +135,5 @@
GSearch.setOnLoadCallback(LoadVideoBar); GSearch.setOnLoadCallback(LoadVideoBar);
</script> </script>
</div> <!-- Latest Videos --> </div> <!-- Latest Videos -->
</div> <!-- CONTENTWRAP -->
</xsl:template> </xsl:template>
</xsl:stylesheet> </xsl:stylesheet>

View file

@ -1,10 +1,6 @@
<?xml version="1.0" encoding="ISO-8859-1" ?> <?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD Fragment//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD Fragment//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd">
<!ENTITY title "FreeBSD Events">
<!ENTITY email "freebsd-www">
<!ENTITY % navinclude.about "INCLUDE">
]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<!-- The FreeBSD Japanese Documentation Project --> <!-- The FreeBSD Japanese Documentation Project -->
@ -45,10 +41,6 @@
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:output method="xml" indent="yes"/> <xsl:output method="xml" indent="yes"/>
<xsl:key name="event-by-month" match="event" <xsl:key name="event-by-month" match="event"

View file

@ -7,7 +7,10 @@
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<!-- Original revision: 1.178 --> <!-- Original revision: 1.178 -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
@ -24,6 +27,10 @@
<xsl:param name="events.xml" select="'none'"/> <xsl:param name="events.xml" select="'none'"/>
<xsl:param name="html.header.script.google" select="'IGNORE'"/> <xsl:param name="html.header.script.google" select="'IGNORE'"/>
<xsl:variable name="svnKeyword">$FreeBSD$</xsl:variable>
<xsl:variable name="title">&title;</xsl:variable>
<xsl:template name="process.content"> <xsl:template name="process.content">
<div id="FRONTCONTAINER"> <div id="FRONTCONTAINER">
<div id="FRONTMAIN"> <div id="FRONTMAIN">

View file

@ -1,9 +1,6 @@
<?xml version="1.0" encoding="EUC-JP" ?> <?xml version="1.0" encoding="EUC-JP" ?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd">
<!ENTITY base "..">
<!ENTITY title "">
]>
<!-- $FreeBSD --> <!-- $FreeBSD -->
<!-- The FreeBSD Japanese Documentation Project --> <!-- The FreeBSD Japanese Documentation Project -->
<!-- Original revision: 1.2 --> <!-- Original revision: 1.2 -->
@ -16,10 +13,6 @@
<xsl:output method="xml" indent="yes" encoding="&xml.encoding;"/> <xsl:output method="xml" indent="yes" encoding="&xml.encoding;"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:template match="/"> <xsl:template match="/">
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel> <channel>

View file

@ -1,13 +1,9 @@
<?xml version="1.0" encoding="EUC-JP" ?> <?xml version="1.0" encoding="EUC-JP" ?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY base "..">
<!ENTITY rsslink "&base;/java/rss.xml"> <!ENTITY rsslink "&base;/java/rss.xml">
<!ENTITY title "FreeBSD &java; Project: Newsflash"> <!ENTITY title "FreeBSD &java; Project: Newsflash">
<!ENTITY rsstitle "FreeBSD Java Project News"> <!ENTITY rsstitle "FreeBSD Java Project News">
<!ENTITY email "freebsd-java">
<!ENTITY % navinclude.developers "INCLUDE">
<!ENTITY % header.rss "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
@ -15,19 +11,22 @@
<!-- Original revision: 1.2 --> <!-- Original revision: 1.2 -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" <xsl:stylesheet version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS" exclude-result-prefixes="cvs"> xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:variable name="date"> <xsl:variable name="title">&title;</xsl:variable>
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable> <xsl:variable name="rsstitle">&rsstitle;</xsl:variable>
<xsl:variable name="rsslink">&rsslink;</xsl:variable>
<xsl:template name="process.content"> <xsl:template name="process.content">
<div id="SIDEWRAP"> <div id="SIDEWRAP">
&nav; &nav.developers;
<div id="FEEDLINKS"> <div id="FEEDLINKS">
<ul> <ul>
<li> <li>
@ -40,7 +39,7 @@
</div> <!-- SIDEWRAP --> </div> <!-- SIDEWRAP -->
<div id="CONTENTWRAP"> <div id="CONTENTWRAP">
&header3; <h1>&title;</h1>
<img src="&enbase;/gifs/news.jpg" align="right" border="0" width="193" <img src="&enbase;/gifs/news.jpg" align="right" border="0" width="193"
height="144" alt="FreeBSD Java News"/> height="144" alt="FreeBSD Java News"/>

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="eucJP"?> <?xml version="1.0" encoding="eucJP"?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "http://www.FreeBSD.org のサイトマップおよび索引"> <!ENTITY title "サイトマップ">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
@ -9,15 +9,18 @@
<!-- The FreeBSD Japanese Documentation Project --> <!-- The FreeBSD Japanese Documentation Project -->
<!-- Original revision: 1.29 --> <!-- Original revision: 1.29 -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:key name="indexLetter" match="term" use="translate(substring(text, 1, 1), $lowercase, $uppercase)"/> <xsl:key name="indexLetter" match="term" use="translate(substring(text, 1, 1), $lowercase, $uppercase)"/>
<xsl:template name="process.contentwrap"> <xsl:variable name="title">&title;</xsl:variable>
<h1>サイトマップ</h1>
<xsl:template name="process.contentwrap">
<xsl:call-template name="html-sitemap"/> <xsl:call-template name="html-sitemap"/>
<h2>³Æ¥Û¡¼¥à¥Ú¡¼¥¸</h2> <h2>³Æ¥Û¡¼¥à¥Ú¡¼¥¸</h2>

View file

@ -1,9 +1,6 @@
<?xml version="1.0" encoding="EUC-JP" ?> <?xml version="1.0" encoding="EUC-JP" ?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd">
<!ENTITY base ".">
<!ENTITY title "">
]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<!-- Original revision: 1.7 --> <!-- Original revision: 1.7 -->

View file

@ -5,7 +5,10 @@
<!-- The FreeBSD Japanese Documentation Project --> <!-- The FreeBSD Japanese Documentation Project -->
<!-- Original revision: 1.34 --> <!-- Original revision: 1.34 -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/libcommon.xsl"/>
<!-- default format for date string --> <!-- default format for date string -->

View file

@ -2,11 +2,8 @@
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD Fragment//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD Fragment//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "FreeBSD 関連イベント"> <!ENTITY title "FreeBSD 関連イベント">
<!ENTITY email "freebsd-www">
<!ENTITY rsslink "&enbase;/events/rss.xml"> <!ENTITY rsslink "&enbase;/events/rss.xml">
<!ENTITY rsstitle "今後開催予定の FreeBSD 関連イベント"> <!ENTITY rsstitle "今後開催予定の FreeBSD 関連イベント">
<!ENTITY % navinclude.community "INCLUDE">
<!ENTITY % header.rss "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
@ -40,18 +37,13 @@
--> -->
<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"
xmlns:date="http://exslt.org/dates-and-times" xmlns:date="http://exslt.org/dates-and-times"
extension-element-prefixes="date" xmlns="http://www.w3.org/1999/xhtml"
exclude-result-prefixes="cvs"> extension-element-prefixes="date">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:param name="startyear">2007</xsl:param> <xsl:param name="startyear">2007</xsl:param>
<xsl:param name="pastyears">2003 2004 2005 2006</xsl:param> <xsl:param name="pastyears">2003 2004 2005 2006</xsl:param>
@ -71,6 +63,12 @@
<xsl:variable name="charturl" select="'http://chart.apis.google.com/chart?cht=t&amp;chs=400x200&amp;chtm=world&amp;chco=ffffff,ffbe38,600000&amp;chf=bg,s,4D89F9'" /> <xsl:variable name="charturl" select="'http://chart.apis.google.com/chart?cht=t&amp;chs=400x200&amp;chtm=world&amp;chco=ffffff,ffbe38,600000&amp;chf=bg,s,4D89F9'" />
<xsl:variable name="title">&title;</xsl:variable>
<xsl:variable name="rsstitle">&rsstitle;</xsl:variable>
<xsl:variable name="rsslink">&rsslink;</xsl:variable>
<xsl:template name="process.content"> <xsl:template name="process.content">
<xsl:variable name="chart-countries"> <xsl:variable name="chart-countries">
<xsl:for-each select="/evetns/event[ <xsl:for-each select="/evetns/event[
@ -94,7 +92,7 @@
<xsl:variable name="imageurl"><xsl:value-of select="$charturl"/>&amp;chd=t:<xsl:value-of select="$chart-country-counts"/>&amp;chld=<xsl:value-of select="$chart-countries"/></xsl:variable> <xsl:variable name="imageurl"><xsl:value-of select="$charturl"/>&amp;chd=t:<xsl:value-of select="$chart-country-counts"/>&amp;chld=<xsl:value-of select="$chart-countries"/></xsl:variable>
<div id="SIDEWRAP"> <div id="SIDEWRAP">
&nav; &nav.community;
<div id="FEEDLINKS"> <div id="FEEDLINKS">
<ul> <ul>
<li> <li>
@ -107,7 +105,7 @@
</div> <!-- SIDEWRAP --> </div> <!-- SIDEWRAP -->
<div id="contentwrap"> <div id="contentwrap">
&header3; <h1>&title;</h1>
<!-- <!--
Note the current date to have a reference, if the Note the current date to have a reference, if the
upcoming/past events are split incorrectly. upcoming/past events are split incorrectly.

View file

@ -2,41 +2,34 @@
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "FreeBSD News Flash"> <!ENTITY title "FreeBSD News Flash">
<!ENTITY email "freebsd-www">
<!ENTITY % navinclude.about "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<!-- The FreeBSD Japanese Documentation Project --> <!-- The FreeBSD Japanese Documentation Project -->
<!-- Original revision: 1.10 --> <!-- Original revision: 1.10 -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" <xsl:stylesheet version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"> xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:variable name="title">&title;</xsl:variable>
<xsl:variable name="year"> <xsl:variable name="year">
<xsl:value-of select="descendant::year/name"/> <xsl:value-of select="descendant::year/name"/>
</xsl:variable> </xsl:variable>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:output type="html" encoding="&xml.encoding;"/>
<xsl:template match="p"> <xsl:template match="p">
<xsl:copy-of select="." /> <xsl:copy-of select="." />
</xsl:template> </xsl:template>
<xsl:template name="process.content"> <xsl:template name="process.sidewrap">
<div id="SIDEWRAP"> &nav.about;
&nav; </xsl:template>
</div> <!-- SIDEWRAP -->
<div id="CONTENTWRAP">
&header3;
<xsl:template name="process.contentwrap">
<xsl:apply-templates select="/news/descendant::month"/> <xsl:apply-templates select="/news/descendant::month"/>
<p>Other project news: <p>Other project news:
@ -56,7 +49,6 @@
<a href="../1996/index.html">1996</a></p> <a href="../1996/index.html">1996</a></p>
<a href="&base;/news/news.html">News Home</a> <a href="&base;/news/news.html">News Home</a>
</div> <!-- CONTENTWRAP -->
</xsl:template> </xsl:template>
<!-- Everything that follows are templates for the rest of the content --> <!-- Everything that follows are templates for the rest of the content -->

View file

@ -2,37 +2,30 @@
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "ニュース記事"> <!ENTITY title "ニュース記事">
<!ENTITY email "freebsd-www">
<!ENTITY % navinclude.about "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<!-- The FreeBSD Japanese Documentation Project --> <!-- The FreeBSD Japanese Documentation Project -->
<!-- Original revision: 1.8 --> <!-- Original revision: 1.8 -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" <xsl:stylesheet version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"> xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:variable name="title">&title;</xsl:variable>
<xsl:variable name="year"> <xsl:variable name="year">
<xsl:value-of select="descendant::year/name"/> <xsl:value-of select="descendant::year/name"/>
</xsl:variable> </xsl:variable>
<xsl:variable name="date"> <xsl:template name="process.sidewrap">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/> &nav.about;
</xsl:variable> </xsl:template>
<xsl:template name="process.content">
<div id="SIDEWRAP">
&nav;
</div> <!-- SIDEWRAP -->
<div id="CONTENTWRAP">
&header3;
<xsl:template name="process.contentwrap">
<xsl:apply-templates select="//month"/> <xsl:apply-templates select="//month"/>
<p>過去のニュース記事: <p>過去のニュース記事:
@ -50,7 +43,6 @@
<a href="&enbase;/news/1998/press.html">1998-1996</a></p> <a href="&enbase;/news/1998/press.html">1998-1996</a></p>
<a href="&base;/news/news.html">ニュースページ</a> <a href="&base;/news/news.html">ニュースページ</a>
</div> <!-- CONTENTWRAP -->
</xsl:template> </xsl:template>
<!-- Everything that follows are templates for the rest of the content --> <!-- Everything that follows are templates for the rest of the content -->

View file

@ -2,37 +2,31 @@
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD Fragment//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD Fragment//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "¥æ¡¼¥¶¥°¥ë¡¼¥×"> <!ENTITY title "¥æ¡¼¥¶¥°¥ë¡¼¥×">
<!ENTITY email "freebsd-www">
<!ENTITY % navinclude.community "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<!-- The FreeBSD Japanese Documentation Project --> <!-- The FreeBSD Japanese Documentation Project -->
<!-- Original revision: 1.12 --> <!-- Original revision: 1.12 -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" <xsl:stylesheet version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
exclude-result-prefixes="cvs"> xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:key name="usergroup-by-country" match="entry" <xsl:key name="usergroup-by-country" match="entry"
use="../@code" /> use="../@code" />
<xsl:variable name="charturl" select="'http://chart.apis.google.com/chart?cht=t&amp;chs=400x200&amp;chtm=world&amp;chco=ffffff,ffbe38,600000&amp;chf=bg,s,4D89F9'" /> <xsl:variable name="charturl" select="'http://chart.apis.google.com/chart?cht=t&amp;chs=400x200&amp;chtm=world&amp;chco=ffffff,ffbe38,600000&amp;chf=bg,s,4D89F9'" />
<xsl:template name="process.content"> <xsl:variable name="title">&title;</xsl:variable>
<div id="SIDEWRAP">
&nav;
</div> <!-- SIDEWRAP -->
<div id="CONTENTWRAP"> <xsl:template name="process.sidewrap">
&header3; &nav.community;
</xsl:template>
<xsl:template name="process.contentwrap">
<xsl:variable name="chart-countries"> <xsl:variable name="chart-countries">
<xsl:for-each select="//entry[ <xsl:for-each select="//entry[
generate-id() = generate-id() =
@ -67,7 +61,5 @@
<xsl:with-param name="usergroups.xml" select="$usergroups.xml" /> <xsl:with-param name="usergroups.xml" select="$usergroups.xml" />
<xsl:with-param name="usergroups-local.xml" select="$usergroups-local.xml" /> <xsl:with-param name="usergroups-local.xml" select="$usergroups-local.xml" />
</xsl:call-template> </xsl:call-template>
</div> <!-- CONTENTWRAP -->
</xsl:template> </xsl:template>
</xsl:stylesheet> </xsl:stylesheet>

View file

@ -2,8 +2,6 @@
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "&os; Gemeenschap"> <!ENTITY title "&os; Gemeenschap">
<!ENTITY email "freebsd-www">
<!ENTITY % navinclude.community "INCLUDE">
]> ]>
<!-- $FreeBSD$ <!-- $FreeBSD$
Vertaald door: Rene Ladan Vertaald door: Rene Ladan
@ -11,28 +9,25 @@
%SRCID% 38826 %SRCID% 38826
--> -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" <xsl:stylesheet version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"> xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:key name="last-year-event-by-country" match="event[number(enddate/year) = (number($curdate.year) - 1)]" <xsl:key name="last-year-event-by-country" match="event[number(enddate/year) = (number($curdate.year) - 1)]"
use="location/country" /> use="location/country" />
<xsl:key name="event-by-year" match="event" use="enddate/year" /> <xsl:key name="event-by-year" match="event" use="enddate/year" />
<xsl:template name="process.content"> <xsl:variable name="title">&title;</xsl:variable>
<div id="SIDEWRAP">
&nav;
</div> <!-- SIDEWRAP -->
<div id="CONTENTWRAP"> <xsl:template name="process.sidewrap">
&header3; &nav.community;
</xsl:template>
<xsl:template name="process.contentwrap">
<p>&os; wordt goed ondersteund door haar actieve gemeenschap.</p> <p>&os; wordt goed ondersteund door haar actieve gemeenschap.</p>
<p>Er zijn meer dan honderd <a <p>Er zijn meer dan honderd <a
@ -133,6 +128,5 @@
GSearch.setOnLoadCallback(LoadVideoBar); GSearch.setOnLoadCallback(LoadVideoBar);
</script> </script>
</div> <!-- Latest Videos --> </div> <!-- Latest Videos -->
</div> <!-- CONTENTWRAP -->
</xsl:template> </xsl:template>
</xsl:stylesheet> </xsl:stylesheet>

View file

@ -10,7 +10,10 @@
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>

View file

@ -5,7 +5,10 @@
%SOURCE% share/sgml/libcommon.xsl %SOURCE% share/sgml/libcommon.xsl
%SRCID% 38826 %SRCID% 38826
--> -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/libcommon.xsl"/>
<xsl:param name="param-l10n-date-format-YMD" <xsl:param name="param-l10n-date-format-YMD"

View file

@ -2,8 +2,6 @@
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "óÏÏÂÝÅÓÔ×Ï FreeBSD"> <!ENTITY title "óÏÏÂÝÅÓÔ×Ï FreeBSD">
<!ENTITY email "freebsd-www">
<!ENTITY % navinclude.community "INCLUDE">
]> ]>
<!-- <!--
@ -14,28 +12,25 @@
Original revision: 1.9 Original revision: 1.9
--> -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" <xsl:stylesheet version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"> xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:key name="last-year-event-by-country" match="event[number(enddate/year) = (number($curdate.year) - 1)]" <xsl:key name="last-year-event-by-country" match="event[number(enddate/year) = (number($curdate.year) - 1)]"
use="location/country" /> use="location/country" />
<xsl:key name="event-by-year" match="event" use="enddate/year" /> <xsl:key name="event-by-year" match="event" use="enddate/year" />
<xsl:template name="process.content"> <xsl:variable name="title">&title;</xsl:variable>
<div id="SIDEWRAP">
&nav;
</div> <!-- SIDEWRAP -->
<div id="CONTENTWRAP"> <xsl:template name="process.sidewrap">
&header3; &nav.community;
</xsl:template>
<xsl:template name="process.contentwrap">
<p>&os; ÄÏÓÔÁÔÏÞÎÏ ÈÏÒÏÛÏ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ Ó×ÏÉÍ ÁËÔÉ×ÎÙÍ <p>&os; ÄÏÓÔÁÔÏÞÎÏ ÈÏÒÏÛÏ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ Ó×ÏÉÍ ÁËÔÉ×ÎÙÍ
ÓÏÏÂÝÅÓÔ×ÏÍ.</p> ÓÏÏÂÝÅÓÔ×ÏÍ.</p>
@ -139,6 +134,5 @@
GSearch.setOnLoadCallback(LoadVideoBar); GSearch.setOnLoadCallback(LoadVideoBar);
</script> </script>
</div> <!-- Latest Videos --> </div> <!-- Latest Videos -->
</div> <!-- CONTENTWRAP -->
</xsl:template> </xsl:template>
</xsl:stylesheet> </xsl:stylesheet>

View file

@ -2,8 +2,6 @@
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "óÏÃÉÁÌØÎÙÅ ÓÅÔÉ FreeBSD"> <!ENTITY title "óÏÃÉÁÌØÎÙÅ ÓÅÔÉ FreeBSD">
<!ENTITY email "freebsd-www">
<!ENTITY % navinclude.community "INCLUDE">
]> ]>
<!-- <!--
@ -14,23 +12,20 @@
Original revision: 1.6 Original revision: 1.6
--> -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" <xsl:stylesheet version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"> xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:variable name="date"> <xsl:variable name="title">&title;</xsl:variable>
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:template name="process.content"> <xsl:template name="process.sidewrap">
<div id="SIDEWRAP"> &nav.community;
&nav; </xsl:template>
</div> <!-- SIDEWRAP -->
<div id="CONTENTWRAP">
&header3;
<xsl:template name="process.contentwrap">
<p>&os; ÐÒÅÄÓÔÁ×ÌÅÎÁ × ÒÁÚÌÉÞÎÙÈ ÓÏÃÉÁÌØÎÙÈ ÓÅÔÑÈ.</p> <p>&os; ÐÒÅÄÓÔÁ×ÌÅÎÁ × ÒÁÚÌÉÞÎÙÈ ÓÏÃÉÁÌØÎÙÈ ÓÅÔÑÈ.</p>
<ul> <ul>
@ -64,7 +59,5 @@
ÎÁ <a href="http://twitter.com">Twitter</a>.</li> ÎÁ <a href="http://twitter.com">Twitter</a>.</li>
</ul> </ul>
</div> <!-- CONTENTWRAP -->
</xsl:template> </xsl:template>
</xsl:stylesheet> </xsl:stylesheet>

View file

@ -1,10 +1,6 @@
<?xml version="1.0" encoding="KOI8-R" ?> <?xml version="1.0" encoding="KOI8-R" ?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD Fragment//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD Fragment//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd">
<!ENTITY title "óÏÂÙÔÉÑ FreeBSD">
<!ENTITY email "freebsd-www">
<!ENTITY % navinclude.about "INCLUDE">
]>
<!-- <!--
The FreeBSD Russian Documentation Project The FreeBSD Russian Documentation Project
@ -49,10 +45,6 @@
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:output method="xml" indent="yes"/> <xsl:output method="xml" indent="yes"/>
<xsl:key name="event-by-month" match="event" <xsl:key name="event-by-month" match="event"

View file

@ -11,6 +11,7 @@
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdf1="http://my.netscape.com/rdf/simple/0.9/" xmlns:rdf1="http://my.netscape.com/rdf/simple/0.9/"
xmlns="http://www.w3.org/1999/xhtml"
exclude-result-prefixes="rdf rdf1" version="1.0"> exclude-result-prefixes="rdf rdf1" version="1.0">
<xsl:import href="../includes.xsl"/> <xsl:import href="../includes.xsl"/>

View file

@ -9,8 +9,9 @@
Original revision: 1.3 Original revision: 1.3
--> -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" <xsl:stylesheet version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS" exclude-result-prefixes="cvs"> xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="../includes.xsl"/> <xsl:import href="../includes.xsl"/>
<xsl:import href="includes.xsl"/> <xsl:import href="includes.xsl"/>
@ -19,9 +20,6 @@
<xsl:variable name="base" select="'../..'"/> <xsl:variable name="base" select="'../..'"/>
<xsl:variable name="title" select="'ðÏÓÌÅÄÎÉÅ ÎÏ×ÏÓÔÉ FreeBSD GNOME'"/> <xsl:variable name="title" select="'ðÏÓÌÅÄÎÉÅ ÎÏ×ÏÓÔÉ FreeBSD GNOME'"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:template name="process.content"> <xsl:template name="process.content">
<div id="contentwrap"> <div id="contentwrap">

View file

@ -13,7 +13,10 @@
Original revision: 1.176 Original revision: 1.176
--> -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
@ -29,6 +32,10 @@
<xsl:param name="events.xml-master" select="'none'"/> <xsl:param name="events.xml-master" select="'none'"/>
<xsl:param name="events.xml" select="'none'"/> <xsl:param name="events.xml" select="'none'"/>
<xsl:variable name="svnKeyword">$FreeBSD$</xsl:variable>
<xsl:variable name="title">&title;</xsl:variable>
<xsl:template names="process.content"> <xsl:template names="process.content">
<div id="FRONTCONTAINER"> <div id="FRONTCONTAINER">
<div id="FRONTMAIN"> <div id="FRONTMAIN">

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="koi8-r"?> <?xml version="1.0" encoding="koi8-r"?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "ëÁÒÔÁ ÓÅÒ×ÅÒÁ É ÁÌÆÁ×ÉÔÎÙÊ ÕËÁÚÁÔÅÌØ http://www.FreeBSD.org"> <!ENTITY title "ëÁÒÔÁ ÓÅÒ×ÅÒÁ">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
@ -14,15 +14,18 @@
Original revision: 1.25 Original revision: 1.25
--> -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:key name="indexLetter" match="term" use="translate(substring(text, 1, 1), $lowercase, $uppercase)"/> <xsl:key name="indexLetter" match="term" use="translate(substring(text, 1, 1), $lowercase, $uppercase)"/>
<xsl:template name="process.contentwrap"> <xsl:variable name="title">&title;</xsl:variable>
<h1>ëÁÒÔÁ ÓÅÒ×ÅÒÁ</h1>
<xsl:template name="process.contentwrap">
<xsl:call-template name="html-sitemap"/> <xsl:call-template name="html-sitemap"/>
<h2>òÁÚÄÅÌÙ ÓÁÊÔÁ</h2> <h2>òÁÚÄÅÌÙ ÓÁÊÔÁ</h2>

View file

@ -1,9 +1,6 @@
<?xml version="1.0" encoding="koi8-r"?> <?xml version="1.0" encoding="koi8-r"?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd">
<!ENTITY base ".">
<!ENTITY title "">
]>
<!-- <!--
The FreeBSD Russian Documentation Project The FreeBSD Russian Documentation Project
@ -21,10 +18,6 @@
<xsl:output method="xml" indent="yes"/> <xsl:output method="xml" indent="yes"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:template match="/"> <xsl:template match="/">
<xsl:call-template name="rss-errata-notices"> <xsl:call-template name="rss-errata-notices">
<xsl:with-param name="notices.xml" select="$notices.xml" /> <xsl:with-param name="notices.xml" select="$notices.xml" />

View file

@ -1,9 +1,6 @@
<?xml version="1.0" encoding="koi8-r"?> <?xml version="1.0" encoding="koi8-r"?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd">
<!ENTITY base ".">
<!ENTITY title "">
]>
<!-- <!--
The FreeBSD Russian Documentation Project The FreeBSD Russian Documentation Project

View file

@ -1,9 +1,6 @@
<?xml version="1.0" encoding="koi8-r"?> <?xml version="1.0" encoding="koi8-r"?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd">
<!ENTITY base ".">
<!ENTITY title "">
]>
<!-- <!--
The FreeBSD Russian Documentation Project The FreeBSD Russian Documentation Project
@ -21,10 +18,6 @@
<xsl:output method="xml" indent="yes"/> <xsl:output method="xml" indent="yes"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:template match="/"> <xsl:template match="/">
<xsl:call-template name="rss-security-advisories"> <xsl:call-template name="rss-security-advisories">
<xsl:with-param name="advisories.xml" select="$advisories.xml" /> <xsl:with-param name="advisories.xml" select="$advisories.xml" />

View file

@ -3,7 +3,10 @@
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd"> "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd">
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/libcommon.xsl"/>
<xsl:template name="html-news-list-newsflash-preface"> <xsl:template name="html-news-list-newsflash-preface">

View file

@ -2,11 +2,8 @@
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD Fragment//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD Fragment//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "óÏÂÙÔÉÑ FreeBSD"> <!ENTITY title "óÏÂÙÔÉÑ FreeBSD">
<!ENTITY email "freebsd-www">
<!ENTITY rsslink "&base;/events/rss.xml"> <!ENTITY rsslink "&base;/events/rss.xml">
<!ENTITY rsstitle "ðÒÅÄÓÔÏÑÝÉÅ ÓÏÂÙÔÉÑ FreeBSD"> <!ENTITY rsstitle "ðÒÅÄÓÔÏÑÝÉÅ ÓÏÂÙÔÉÑ FreeBSD">
<!ENTITY % navinclude.community "INCLUDE">
<!ENTITY % header.rss "INCLUDE">
]> ]>
<!-- <!--
@ -44,18 +41,13 @@
--> -->
<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"
xmlns:date="http://exslt.org/dates-and-times" xmlns:date="http://exslt.org/dates-and-times"
extension-element-prefixes="date" xmlns="http://www.w3.org/1999/xhtml"
exclude-result-prefixes="cvs"> extension-element-prefixes="date">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:param name="startyear">2007</xsl:param> <xsl:param name="startyear">2007</xsl:param>
<xsl:param name="pastyears">2003 2004 2005 2006</xsl:param> <xsl:param name="pastyears">2003 2004 2005 2006</xsl:param>
@ -75,6 +67,12 @@
<xsl:variable name="charturl" select="'http://chart.apis.google.com/chart?cht=t&amp;chs=400x200&amp;chtm=world&amp;chco=ffffff,ffbe38,600000&amp;chf=bg,s,4D89F9'" /> <xsl:variable name="charturl" select="'http://chart.apis.google.com/chart?cht=t&amp;chs=400x200&amp;chtm=world&amp;chco=ffffff,ffbe38,600000&amp;chf=bg,s,4D89F9'" />
<xsl:variable name="title">&title;</xsl:variable>
<xsl:variable name="rsstitle">&rsstitle;</xsl:variable>
<xsl:variable name="rsslink">&rsslink;</xsl:variable>
<xsl:template name="process.content"> <xsl:template name="process.content">
<xsl:variable name="chart-countries"> <xsl:variable name="chart-countries">
<xsl:for-each select="/events/event[ <xsl:for-each select="/events/event[
@ -98,7 +96,7 @@
<xsl:variable name="imageurl"><xsl:value-of select="$charturl"/>&amp;chd=t:<xsl:value-of select="$chart-country-counts"/>&amp;chld=<xsl:value-of select="$chart-countries"/></xsl:variable> <xsl:variable name="imageurl"><xsl:value-of select="$charturl"/>&amp;chd=t:<xsl:value-of select="$chart-country-counts"/>&amp;chld=<xsl:value-of select="$chart-countries"/></xsl:variable>
<div id="SIDEWRAP"> <div id="SIDEWRAP">
&nav; &nav.community;
<div id="FEEDLINKS"> <div id="FEEDLINKS">
<ul> <ul>
<li> <li>
@ -111,7 +109,7 @@
</div> <!-- SIDEWRAP --> </div> <!-- SIDEWRAP -->
<div id="contentwrap"> <div id="contentwrap">
&header3; <h1>&title;</h1>
<!-- <!--
Note the current date to have a reference, if the Note the current date to have a reference, if the
upcoming/past events are split incorrectly. upcoming/past events are split incorrectly.

View file

@ -1,19 +1,17 @@
<?xml version="1.0" encoding="koi8-r"?> <?xml version="1.0" encoding="koi8-r"?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD Fragment//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD Fragment//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY base "../..">
<!ENTITY title "çÒÕÐÐÙ ÐÏÌØÚÏ×ÁÔÅÌÅÊ"> <!ENTITY title "çÒÕÐÐÙ ÐÏÌØÚÏ×ÁÔÅÌÅÊ">
<!ENTITY email "freebsd-www">
<!ENTITY % navinclude.community "INCLUDE">
]> ]>
<!-- The FreeBSD Russian Documentation Project --> <!-- The FreeBSD Russian Documentation Project -->
<!-- $FreeBSDru: frdp/www/ru/share/sgml/templates.usergroups.xsl,v 1.2 2005/11/03 18:27:42 gad Exp $ --> <!-- $FreeBSDru: frdp/www/ru/share/sgml/templates.usergroups.xsl,v 1.2 2005/11/03 18:27:42 gad Exp $ -->
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" <xsl:stylesheet version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
exclude-result-prefixes="cvs"> xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/templates.usergroups.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/templates.usergroups.xsl"/>
<xsl:template name="html-usergroups-list-header"> <xsl:template name="html-usergroups-list-header">

View file

@ -15,43 +15,13 @@
All rights reserved.</span>'> All rights reserved.</span>'>
<!ENTITY email 'freebsd-questions'> <!ENTITY email 'freebsd-questions'>
<!ENTITY author '<a href="&base;/index.html">home</a> &nbsp; | &nbsp; <a href="&base;/mailto.html">contact</a> &nbsp; | &nbsp; <a href="&base;/copyright/index.html">legal</a> &nbsp; | &nbsp; &copyright;'> <!ENTITY author '<a href="&base;/index.html">home</a> &nbsp; | &nbsp; <a href="&base;/mailto.html">contact</a> &nbsp; | &nbsp; <a href="&base;/copyright/index.html">legal</a> &nbsp; | &nbsp; &copyright;'>
<!ENTITY date ''>
<!ENTITY home '<a href="&base;/index.html"><img src"&enbase;/gifs/home.gif" <!ENTITY home '<a href="&base;/index.html"><img src"&enbase;/gifs/home.gif"
alt="FreeBSD Home Page" border="0" align="right" width="101" height="33"></a>'> alt="FreeBSD Home Page" border="0" align="right" width="101" height="33"></a>'>
<!ENTITY stylesheet '&enbase;/layout/css/fixed.css?20060509'> <!ENTITY stylesheet '&enbase;/layout/css/fixed.css?20060509'>
<!ENTITY stylesheetlarge '&enbase;/layout/css/fixed_large.css'> <!ENTITY stylesheetlarge '&enbase;/layout/css/fixed_large.css'>
<!ENTITY nav ''>
<!-- Standard headers and footers --> <!-- Standard headers and footers -->
<!ENTITY header1.meta '
<meta http-equiv="Content-Type" content="text/html; charset=&xml.encoding;" />
<meta name="MSSmartTagsPreventParsing" content="TRUE" />
'>
<!ENTITY header1.link '
<link rel="shortcut icon" href="&enbase;/favicon.ico" type="image/x-icon" />
<link rel="icon" href="&enbase;/favicon.ico" type="image/x-icon" />
<!--
FOR TRANSLATORS:
Do not translate the "Normal Text" and "Large Text" attributes in the
following two lines. They are not literal texts but JavaScript
parameters. Changing them will result in rendering errors.
-->
<link rel="stylesheet" media="screen" href="&stylesheet;" type="text/css" title="Normal Text" />
<link rel="alternate stylesheet" media="screen" href="&stylesheetlarge;" type="text/css" title="Large Text" />'>
<!ENTITY % header.rss "IGNORE">
<![%header.rss;[
<!ENTITY header1.rsslink '
<link rel="alternate" type="application/rss+xml"
title="&rsstitle;" href="&rsslink;" />
'>
]]>
<!ENTITY header1.rsslink ''>
<![%html.header.script.google;[ <![%html.header.script.google;[
<!ENTITY header1.googlejs '<script xmlns="http://www.w3.org/1999/xhtml" type="text/javascript" src="&enbase;/layout/js/google.js"></script>'> <!ENTITY header1.googlejs '<script xmlns="http://www.w3.org/1999/xhtml" type="text/javascript" src="&enbase;/layout/js/google.js"></script>'>
]]> ]]>
@ -74,13 +44,14 @@
<!ENTITY header2.word.contact 'Contact'> <!ENTITY header2.word.contact 'Contact'>
<!ENTITY header2.searchinputs ' <!ENTITY header2.searchinputs '
<div xmlns="http://www.w3.org/1999/xhtml" xml:space="preserve"> <div xmlns="http://www.w3.org/1999/xhtml">
<input type="hidden" name="max" value="25" /> <input type="hidden" name="max" value="25" />
<input type="hidden" name="source" value="www" /> <input type="hidden" name="source" value="www" />
<input id="WORDS" name="words" type="text" size="20" <input id="WORDS" name="words" type="text" size="20"
maxlength="255" maxlength="255"
onfocus="if( this.value==this.defaultValue ) this.value=&#39;&#39;;" onfocus="if( this.value==this.defaultValue ) this.value=&#39;&#39;;"
value="&header2.word.search;" /><![CDATA[ ]]> value="&header2.word.search;" /><![CDATA[ ]]>
<span>&nbsp;</span>
<input id="SUBMIT" name="submit" type="submit" value="&header2.word.search;" /> <input id="SUBMIT" name="submit" type="submit" value="&header2.word.search;" />
</div> </div>
'> '>
@ -220,23 +191,6 @@
</div> <!-- HEADERCONTAINER --> </div> <!-- HEADERCONTAINER -->
'> '>
<!ENTITY header3 '<h1>&title;</h1>'>
<!ENTITY header '
&header1;
<body>
<div id="CONTAINERWRAP">
<div id="CONTAINER">
&header2;
<div id="CONTENT">
<div id="SIDEWRAP">
&nav;
</div> <!-- SIDEWRAP -->
<div id="CONTENTWRAP">
&header3;'>
<!ENTITY lastmod 'Last modified: '> <!ENTITY lastmod 'Last modified: '>
<!-- macro for webbuild paper --> <!-- macro for webbuild paper -->

View file

@ -7,11 +7,21 @@
version="1.0" version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS" xmlns:cvs="http://www.FreeBSD.org/XML/CVS"
xmlns:date="http://exslt.org/dates-and-times" xmlns:date="http://exslt.org/dates-and-times"
extension-element-prefixes="date" xmlns:str="http://exslt.org/strings"
extension-element-prefixes="date str"
xmlns="http://www.w3.org/1999/xhtml"
exclude-result-prefixes="date cvs"> exclude-result-prefixes="date cvs">
<xsl:import href="./transtable-common.xsl" /> <xsl:import href="./transtable-common.xsl" />
<xsl:variable name="svnKeyword">
<xsl:value-of select="//cvs:keyword[1]"/>
</xsl:variable>
<xsl:variable name="date">
<xsl:value-of select="str:split($svnKeyword, ' ')[4]"/>
</xsl:variable>
<!-- default format for date string --> <!-- default format for date string -->
<xsl:param name="param-l10n-date-format-YMD" <xsl:param name="param-l10n-date-format-YMD"
select="'%Y-%M-%D'" /> select="'%Y-%M-%D'" />

View file

@ -2,41 +2,32 @@
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "Commercial Vendors"> <!ENTITY title "Commercial Vendors">
<!ENTITY email "freebsd-www">
<!ENTITY % navinclude.support "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" <xsl:stylesheet version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
exclude-result-prefixes="cvs"> xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:param name="basename" select="'none'" /> <xsl:param name="basename" select="'none'" />
<xsl:param name="sort" select="'none'" /> <xsl:param name="sort" select="'none'" />
<xsl:variable name="uc" select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'"/> <xsl:variable name="title">&title;</xsl:variable>
<xsl:variable name="lc" select="'abcdefghijklmnopqrstuvwxyz'"/>
<xsl:template name="process.content"> <xsl:template name="process.sidewrap">
<div id="SIDEWRAP"> &nav.support;
&nav; </xsl:template>
</div> <!-- SIDEWRAP -->
<div id="contentwrap">
&header3;
<xsl:template name="process.contentwrap">
<xsl:for-each select="/entries"> <xsl:for-each select="/entries">
<xsl:call-template name="html-commercial-preface" /> <xsl:call-template name="html-commercial-preface" />
<xsl:call-template name="html-commercial-listing" /> <xsl:call-template name="html-commercial-listing" />
</xsl:for-each> </xsl:for-each>
</div> <!-- contentwrap -->
<br class="clearboth" />
</xsl:template> </xsl:template>
<xsl:template name="html-commercial-preface"> <xsl:template name="html-commercial-preface">
@ -100,7 +91,7 @@
<xsl:otherwise> <xsl:otherwise>
<dl> <dl>
<xsl:for-each select="/entries/entry"> <xsl:for-each select="/entries/entry">
<xsl:sort select="translate(name, $uc, $lc)" order="ascending"/> <xsl:sort select="translate(name, $uppercase, $lowercase)" order="ascending"/>
<dt><xsl:element name="a"> <dt><xsl:element name="a">
<xsl:attribute name="name"> <xsl:attribute name="name">

View file

@ -2,11 +2,8 @@
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD Fragment//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD Fragment//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "FreeBSD Events"> <!ENTITY title "FreeBSD Events">
<!ENTITY email "freebsd-www">
<!ENTITY rsslink "&base;/events/rss.xml"> <!ENTITY rsslink "&base;/events/rss.xml">
<!ENTITY rsstitle "Upcoming FreeBSD Events"> <!ENTITY rsstitle "Upcoming FreeBSD Events">
<!ENTITY % navinclude.community "INCLUDE">
<!ENTITY % header.rss "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
@ -38,10 +35,9 @@
--> -->
<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"
xmlns:date="http://exslt.org/dates-and-times" xmlns:date="http://exslt.org/dates-and-times"
extension-element-prefixes="date" xmlns="http://www.w3.org/1999/xhtml"
exclude-result-prefixes="cvs"> extension-element-prefixes="date">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
@ -65,6 +61,12 @@
<xsl:variable name="charturl" select="'http://chart.apis.google.com/chart?cht=t&amp;chs=400x200&amp;chtm=world&amp;chco=ffffff,ffbe38,600000&amp;chf=bg,s,4D89F9'" /> <xsl:variable name="charturl" select="'http://chart.apis.google.com/chart?cht=t&amp;chs=400x200&amp;chtm=world&amp;chco=ffffff,ffbe38,600000&amp;chf=bg,s,4D89F9'" />
<xsl:variable name="title">&title;</xsl:variable>
<xsl:variable name="rsstitle">&rsstitle;</xsl:variable>
<xsl:variable name="rsslink">&rsslink;</xsl:variable>
<xsl:template name="process.content"> <xsl:template name="process.content">
<xsl:variable name="chart-countries"> <xsl:variable name="chart-countries">
<xsl:for-each select="event[ <xsl:for-each select="event[
@ -88,7 +90,7 @@
<xsl:variable name="imageurl"><xsl:value-of select="$charturl"/>&amp;chd=t:<xsl:value-of select="$chart-country-counts"/>&amp;chld=<xsl:value-of select="$chart-countries"/></xsl:variable> <xsl:variable name="imageurl"><xsl:value-of select="$charturl"/>&amp;chd=t:<xsl:value-of select="$chart-country-counts"/>&amp;chld=<xsl:value-of select="$chart-countries"/></xsl:variable>
<div id="SIDEWRAP"> <div id="SIDEWRAP">
&nav; &nav.community;
<div id="FEEDLINKS"> <div id="FEEDLINKS">
<ul> <ul>
<li> <li>
@ -101,7 +103,7 @@
</div> <!-- SIDEWRAP --> </div> <!-- SIDEWRAP -->
<div id="contentwrap"> <div id="contentwrap">
&header3; <h1>&title;</h1>
<!-- <!--
Note the current date to have a reference, if the Note the current date to have a reference, if the
upcoming/past events are split incorrectly. upcoming/past events are split incorrectly.

View file

@ -1,9 +1,6 @@
<?xml version="1.0" encoding="ISO-8859-1" ?> <?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd">
<!ENTITY title "FreeBSD News Flash RDF">
<!ENTITY email "freebsd-www">
]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
@ -14,10 +11,6 @@
<xsl:output method="xml" indent="yes" encoding="&xml.encoding;"/> <xsl:output method="xml" indent="yes" encoding="&xml.encoding;"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<!-- Generate the main body of the RDF file --> <!-- Generate the main body of the RDF file -->
<xsl:template match="news"> <xsl:template match="news">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"

View file

@ -17,10 +17,6 @@
<xsl:output method="xml" indent="yes" encoding="&xml.encoding;"/> <xsl:output method="xml" indent="yes" encoding="&xml.encoding;"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<!-- Generate the main body of the RDF file --> <!-- Generate the main body of the RDF file -->
<xsl:template match="news"> <xsl:template match="news">
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">

View file

@ -2,26 +2,31 @@
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "FreeBSD News Flash"> <!ENTITY title "FreeBSD News Flash">
<!ENTITY email "freebsd-www">
<!ENTITY rsslink "rss.xml"> <!ENTITY rsslink "rss.xml">
<!ENTITY rsstitle "&title;"> <!ENTITY rsstitle "&title;">
<!ENTITY % navinclude.about "INCLUDE">
<!ENTITY % header.rss "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" <xsl:stylesheet version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"> xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:param name="news.project.xml-master" select="'none'" /> <xsl:param name="news.project.xml-master" select="'none'" />
<xsl:param name="news.project.xml" select="'none'" /> <xsl:param name="news.project.xml" select="'none'" />
<xsl:variable name="title">&title;</xsl:variable>
<xsl:variable name="rsstitle">&rsstitle;</xsl:variable>
<xsl:variable name="rsslink">&rsslink;</xsl:variable>
<xsl:template name="process.content"> <xsl:template name="process.content">
<div id="SIDEWRAP"> <div id="SIDEWRAP">
&nav; &nav.about;
<div id="FEEDLINKS"> <div id="FEEDLINKS">
<ul> <ul>
<li> <li>
@ -39,7 +44,7 @@
</div> <!-- SIDEWRAP --> </div> <!-- SIDEWRAP -->
<div id="CONTENTWRAP"> <div id="CONTENTWRAP">
&header3; <h1>&title;</h1>
<xsl:for-each select="/news"> <xsl:for-each select="/news">
<xsl:call-template name="html-news-list-newsflash-preface" /> <xsl:call-template name="html-news-list-newsflash-preface" />

View file

@ -2,14 +2,13 @@
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "FreeBSD News Flash"> <!ENTITY title "FreeBSD News Flash">
<!ENTITY email "freebsd-www">
<!ENTITY % navinclude.about "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" <xsl:stylesheet version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"> xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
@ -18,19 +17,17 @@
<xsl:value-of select="descendant::year/name"/> <xsl:value-of select="descendant::year/name"/>
</xsl:variable> </xsl:variable>
<xsl:variable name="title">&title;</xsl:variable>
<xsl:template match="p"> <xsl:template match="p">
<xsl:copy-of select="." /> <xsl:copy-of select="." />
</xsl:template> </xsl:template>
<xsl:template name="process.content"> <xsl:template name="process.sidewrap">
<div id="SIDEWRAP"> &nav.about;
&nav; </xsl:template>
</div> <!-- SIDEWRAP -->
<div id="CONTENTWRAP">
&header3;
<xsl:template name="process.contentwrap">
<!-- Notice how entity references in SGML become variable references <!-- Notice how entity references in SGML become variable references
in the stylesheet, and that the syntax for referring to variables in the stylesheet, and that the syntax for referring to variables
inside an attribute is "{$variable}". inside an attribute is "{$variable}".
@ -64,8 +61,6 @@
<a href="../1996/index.html">1996</a></p> <a href="../1996/index.html">1996</a></p>
<a href="&base;/news/news.html">News Home</a> <a href="&base;/news/news.html">News Home</a>
</div> <!-- CONTENTWRAP -->
<br class="clearboth" />
</xsl:template> </xsl:template>
<!-- Everything that follows are templates for the rest of the content --> <!-- Everything that follows are templates for the rest of the content -->

View file

@ -2,31 +2,28 @@
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "FreeBSD in the Press"> <!ENTITY title "FreeBSD in the Press">
<!ENTITY email "freebsd-www">
<!ENTITY % navinclude.about "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" <xsl:stylesheet version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"> xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
<xsl:variable name="title">&title;</xsl:variable>
<xsl:variable name="year"> <xsl:variable name="year">
<xsl:value-of select="descendant::year/name"/> <xsl:value-of select="descendant::year/name"/>
</xsl:variable> </xsl:variable>
<xsl:template name="process.sidewrap">
&nav.about;
</xsl:template>
<xsl:template name="process.content"> <xsl:template name="process.content">
<div id="SIDEWRAP">
&nav;
</div> <!-- SIDEWRAP -->
<div id="CONTENTWRAP">
&header3;
<xsl:apply-templates select="//month"/> <xsl:apply-templates select="//month"/>
<p>Other press publications: <p>Other press publications:
@ -44,8 +41,6 @@
<a href="../1998/press.html">1998-1996</a></p> <a href="../1998/press.html">1998-1996</a></p>
<a href="&base;/news/news.html">News Home</a> <a href="&base;/news/news.html">News Home</a>
</div> <!-- CONTENTWRAP -->
<br class="clearboth" />
</xsl:template> </xsl:template>
<!-- Everything that follows are templates for the rest of the content --> <!-- Everything that follows are templates for the rest of the content -->

View file

@ -2,11 +2,8 @@
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD Fragment//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD Fragment//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "FreeBSD Past Events"> <!ENTITY title "FreeBSD Past Events">
<!ENTITY email "freebsd-www">
<!ENTITY rsslink "&base;/events/rss.xml"> <!ENTITY rsslink "&base;/events/rss.xml">
<!ENTITY rsstitle "Upcoming FreeBSD Events"> <!ENTITY rsstitle "Upcoming FreeBSD Events">
<!ENTITY % navinclude.community "INCLUDE">
<!ENTITY % header.rss "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
@ -38,10 +35,9 @@
--> -->
<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"
xmlns:date="http://exslt.org/dates-and-times" xmlns:date="http://exslt.org/dates-and-times"
extension-element-prefixes="date" xmlns="http://www.w3.org/1999/xhtml"
exclude-result-prefixes="cvs"> extension-element-prefixes="date">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
@ -64,6 +60,12 @@
<xsl:variable name="charturl" select="'http://chart.apis.google.com/chart?cht=t&amp;chs=400x200&amp;chtm=world&amp;chco=ffffff,ffbe38,600000&amp;chf=bg,s,4D89F9'" /> <xsl:variable name="charturl" select="'http://chart.apis.google.com/chart?cht=t&amp;chs=400x200&amp;chtm=world&amp;chco=ffffff,ffbe38,600000&amp;chf=bg,s,4D89F9'" />
<xsl:variable name="title">&title;</xsl:variable>
<xsl:variable name="rsstitle">&rsstitle;</xsl:variable>
<xsl:variable name="rsslink">&rsslink;</xsl:variable>
<xsl:template name="process.content"> <xsl:template name="process.content">
<xsl:variable name="chart-countries"> <xsl:variable name="chart-countries">
@ -88,7 +90,7 @@
<xsl:variable name="imageurl"><xsl:value-of select="$charturl"/>&amp;chd=t:<xsl:value-of select="$chart-country-counts"/>&amp;chld=<xsl:value-of select="$chart-countries"/></xsl:variable> <xsl:variable name="imageurl"><xsl:value-of select="$charturl"/>&amp;chd=t:<xsl:value-of select="$chart-country-counts"/>&amp;chld=<xsl:value-of select="$chart-countries"/></xsl:variable>
<div id="SIDEWRAP"> <div id="SIDEWRAP">
&nav; &nav.community;
<div id="FEEDLINKS"> <div id="FEEDLINKS">
<ul> <ul>
<li> <li>
@ -101,7 +103,7 @@
</div> <!-- SIDEWRAP --> </div> <!-- SIDEWRAP -->
<div id="contentwrap"> <div id="contentwrap">
&header3; <h1>&title;</h1>
<!-- <!--
Note the current date to have a reference, if the Note the current date to have a reference, if the
upcoming/past events are split incorrectly. upcoming/past events are split incorrectly.

View file

@ -43,10 +43,6 @@
<xsl:output method="xml" indent="yes" encoding="&xml.encoding;"/> <xsl:output method="xml" indent="yes" encoding="&xml.encoding;"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<!-- Generate the main body of the RSS file --> <!-- Generate the main body of the RSS file -->
<xsl:template match="press"> <xsl:template match="press">
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">

View file

@ -2,17 +2,15 @@
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "FreeBSD in the Press"> <!ENTITY title "FreeBSD in the Press">
<!ENTITY email "freebsd-www">
<!ENTITY rsslink "press-rss.xml"> <!ENTITY rsslink "press-rss.xml">
<!ENTITY rsstitle "&title;"> <!ENTITY rsstitle "&title;">
<!ENTITY % navinclude.about "INCLUDE">
<!ENTITY % header.rss "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" <xsl:stylesheet version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"> xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
@ -20,9 +18,15 @@
<xsl:param name="news.press.xml-master" select="'none'" /> <xsl:param name="news.press.xml-master" select="'none'" />
<xsl:param name="news.press.xml" select="'none'" /> <xsl:param name="news.press.xml" select="'none'" />
<xsl:variable name="title">&title;</xsl:variable>
<xsl:variable name="rsstitle">&rsstitle;</xsl:variable>
<xsl:variable name="rsslink">&rsslink;</xsl:variable>
<xsl:template name="process.content"> <xsl:template name="process.content">
<div id="SIDEWRAP"> <div id="SIDEWRAP">
&nav; &nav.about;
<div id="FEEDLINKS"> <div id="FEEDLINKS">
<ul> <ul>
<li> <li>
@ -36,7 +40,7 @@
<div id="CONTENTWRAP"> <div id="CONTENTWRAP">
&header3; <h1>&title;</h1>
<xsl:for-each select="/press"> <xsl:for-each select="/press">
<xsl:call-template name="html-news-list-press-preface" /> <xsl:call-template name="html-news-list-press-preface" />

View file

@ -2,15 +2,14 @@
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD Fragment//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD Fragment//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
<!ENTITY title "User Groups"> <!ENTITY title "User Groups">
<!ENTITY email "freebsd-www">
<!ENTITY % navinclude.community "INCLUDE">
]> ]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" <xsl:stylesheet version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
exclude-result-prefixes="cvs"> xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
@ -19,14 +18,13 @@
<xsl:variable name="charturl" select="'http://chart.apis.google.com/chart?cht=t&amp;chs=400x200&amp;chtm=world&amp;chco=ffffff,ffbe38,600000&amp;chf=bg,s,4D89F9'" /> <xsl:variable name="charturl" select="'http://chart.apis.google.com/chart?cht=t&amp;chs=400x200&amp;chtm=world&amp;chco=ffffff,ffbe38,600000&amp;chf=bg,s,4D89F9'" />
<xsl:template name="process.content"> <xsl:variable name="title">&title;</xsl:variable>
<div id="SIDEWRAP">
&nav;
</div> <!-- SIDEWRAP -->
<div id="CONTENTWRAP"> <xsl:template name="process.sidewrap">
&header3; &nav.community;
</xsl:template>
<xsl:template name="process.contentwrap">
<xsl:variable name="chart-countries"> <xsl:variable name="chart-countries">
<xsl:for-each select="//entry[ <xsl:for-each select="//entry[
generate-id() = generate-id() =
@ -61,9 +59,5 @@
<xsl:with-param name="usergroups.xml" select="$usergroups.xml" /> <xsl:with-param name="usergroups.xml" select="$usergroups.xml" />
<xsl:with-param name="usergroups-local.xml" select="$usergroups-local.xml" /> <xsl:with-param name="usergroups-local.xml" select="$usergroups-local.xml" />
</xsl:call-template> </xsl:call-template>
</div> <!-- CONTENTWRAP -->
<br class="clearboth" />
</xsl:template> </xsl:template>
</xsl:stylesheet> </xsl:stylesheet>

View file

@ -3,12 +3,19 @@
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd"> "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd">
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS" xmlns:cvs="http://www.FreeBSD.org/XML/CVS"
xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xhtml="http://www.w3.org/1999/xhtml"
xmlns:str="http://exslt.org/strings" xmlns:str="http://exslt.org/strings"
xmlns="http://www.w3.org/1999/xhtml"
exclude-result-prefixes="cvs xhtml"
extension-element-prefixes="str"> extension-element-prefixes="str">
<xsl:variable name="rsslink" select="''"/>
<xsl:variable name="rsstitle" select="''"/>
<xsl:variable name="svnKeyword"> <xsl:variable name="svnKeyword">
<xsl:value-of select="//cvs:keyword[1]"/> <xsl:value-of select="//cvs:keyword[1]"/>
</xsl:variable> </xsl:variable>
@ -44,7 +51,8 @@ parameters. Changing them will result in rendering errors.
--> -->
<link rel="stylesheet" media="screen" href="&stylesheet;" type="text/css" title="Normal Text" /> <link rel="stylesheet" media="screen" href="&stylesheet;" type="text/css" title="Normal Text" />
<link rel="alternate stylesheet" media="screen" href="&stylesheetlarge;" type="text/css" title="Large Text" /> <link rel="alternate stylesheet" media="screen" href="&stylesheetlarge;" type="text/css" title="Large Text" />
&header1.rsslink; <xsl:copy-of select="/xhtml:html/xhtml:head/xhtml:link"/>
<xsl:call-template name="process.rss.link"/>
<script type="text/javascript" src="&enbase;/layout/js/styleswitcher.js"></script> <script type="text/javascript" src="&enbase;/layout/js/styleswitcher.js"></script>
&header1.googlejs; &header1.googlejs;
</head> </head>
@ -99,8 +107,14 @@ parameters. Changing them will result in rendering errors.
</html> </html>
</xsl:template> </xsl:template>
<xsl:template name="process.content"> <xsl:template name="process.rss.link">
<div id="SIDEWRAP"> <xsl:if test="$rsslink != ''">
<link rel="alternate" type="application/rss+xml"
title="{$rsstitle}" href="{$rsslink}" />
</xsl:if>
</xsl:template>
<xsl:template name="process.sidewrap">
<xsl:choose xmlns:xhtml="http://www.w3.org/1999/xhtml"> <xsl:choose xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xsl:when test="xhtml:html/xhtml:body/@class = 'navinclude.about'"> <xsl:when test="xhtml:html/xhtml:body/@class = 'navinclude.about'">
&nav.about; &nav.about;
@ -134,6 +148,11 @@ parameters. Changing them will result in rendering errors.
&nav.support; &nav.support;
</xsl:when> </xsl:when>
</xsl:choose> </xsl:choose>
</xsl:template>
<xsl:template name="process.content">
<div id="SIDEWRAP">
<xsl:call-template name="process.sidewrap"/>
</div> <!-- SIDEWRAP --> </div> <!-- SIDEWRAP -->
<div id="CONTENTWRAP"> <div id="CONTENTWRAP">

View file

@ -8,7 +8,10 @@
<!-- Original revision: 1.160 --> <!-- Original revision: 1.160 -->
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
@ -24,6 +27,10 @@
<xsl:param name="events.xml-master" select="'none'"/> <xsl:param name="events.xml-master" select="'none'"/>
<xsl:param name="events.xml" select="'none'"/> <xsl:param name="events.xml" select="'none'"/>
<xsl:variable name="svnKeyword">$FreeBSD$</xsl:variable>
<xsl:variable name="title">&title;</xsl:variable>
<xsl:template name="process.content"> <xsl:template name="process.content">
<div id="FRONTCONTAINER"> <div id="FRONTCONTAINER">
<div id="FRONTMAIN"> <div id="FRONTMAIN">

View file

@ -1,9 +1,6 @@
<?xml version="1.0" encoding="gb2312" ?> <?xml version="1.0" encoding="gb2312" ?>
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN" <!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd">
<!ENTITY base ".">
<!ENTITY title "">
]>
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<!-- Original Revision: 1.4 --> <!-- Original Revision: 1.4 -->
@ -11,7 +8,7 @@
<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">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:variable name="date" select="'$FreeBSD$'"/> <xsl:variable name="svnKeyword" select="'$FreeBSD$'"/>
<xsl:output type="xml" encoding="&xml.encoding;" <xsl:output type="xml" encoding="&xml.encoding;"
omit-xml-declaration="yes" /> omit-xml-declaration="yes" />

View file

@ -4,7 +4,10 @@
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<!-- Original Revision: 1.7 --> <!-- Original Revision: 1.7 -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/libcommon.xsl"/>
<!-- Language-specific definitions should be put below this line --> <!-- Language-specific definitions should be put below this line -->

View file

@ -8,7 +8,10 @@
<!-- Original revision: 1.158 --> <!-- Original revision: 1.158 -->
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/xhtml.xsl"/>
@ -24,6 +27,10 @@
<xsl:param name="events.xml-master" select="'none'"/> <xsl:param name="events.xml-master" select="'none'"/>
<xsl:param name="events.xml" select="'none'"/> <xsl:param name="events.xml" select="'none'"/>
<xsl:variable name="svnKeyword">$FreeBSD$</xsl:variable>
<xsl:variable name="title">&title;</xsl:variable>
<xsl:template name="process.content"> <xsl:template name="process.content">
<div id="FRONTCONTAINER"> <div id="FRONTCONTAINER">
<div id="FRONTMAIN"> <div id="FRONTMAIN">

View file

@ -3,7 +3,10 @@
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd"> "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd">
<!-- $FreeBSD$ --> <!-- $FreeBSD$ -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/libcommon.xsl"/> <xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/libcommon.xsl"/>
<!-- Language-specific definitions should be put below this line --> <!-- Language-specific definitions should be put below this line -->