2005-07-16 11:58:17 +02:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
2005-10-04 19:18:41 +02:00
|
|
|
<!-- $FreeBSD: www/share/sgml/templates.usergroups.xsl,v 1.2 2005/09/18 06:25:01 hrs Exp $ -->
|
2005-07-16 11:58:17 +02:00
|
|
|
|
|
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
|
|
|
|
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"
|
|
|
|
exclude-result-prefixes="cvs">
|
|
|
|
|
|
|
|
<xsl:import href="includes.xsl" />
|
2005-10-04 19:18:41 +02:00
|
|
|
<xsl:variable name="section" select="'community'"/>
|
2005-07-16 11:58:17 +02:00
|
|
|
|
2005-09-18 08:25:01 +02:00
|
|
|
<xsl:output method="xml"
|
2005-07-16 11:58:17 +02:00
|
|
|
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
|
|
|
|
doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"/>
|
|
|
|
|
|
|
|
<xsl:variable name="base" select="'../..'"/>
|
|
|
|
<xsl:variable name="date">
|
|
|
|
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
|
|
|
|
</xsl:variable>
|
|
|
|
<xsl:variable name="email" select="'freebsd-www'"/>
|
|
|
|
<xsl:variable name="title" select="'User Groups'"/>
|
|
|
|
|
|
|
|
<xsl:template match="/">
|
|
|
|
<html>
|
|
|
|
<xsl:copy-of select="$header1"/>
|
|
|
|
|
|
|
|
<body xsl:use-attribute-sets="att.body">
|
2005-10-04 19:18:41 +02:00
|
|
|
<div id="containerwrap">
|
|
|
|
<div id="container">
|
|
|
|
<xsl:copy-of select="$header2"/>
|
|
|
|
|
|
|
|
<div id="content">
|
|
|
|
<xsl:copy-of select="$sidenav"/>
|
|
|
|
|
|
|
|
<div id="contentwrap">
|
|
|
|
<xsl:copy-of select="$header3"/>
|
2005-07-16 11:58:17 +02:00
|
|
|
|
|
|
|
<xsl:call-template name="html-usergroups-list-header" />
|
|
|
|
|
2005-09-18 08:25:01 +02:00
|
|
|
<xsl:call-template name="html-usergroups-list-regions">
|
|
|
|
<xsl:with-param name="usergroups.xml" select="$usergroups.xml" />
|
|
|
|
<xsl:with-param name="usergroups-local.xml" select="$usergroups-local.xml" />
|
|
|
|
</xsl:call-template>
|
2005-07-16 11:58:17 +02:00
|
|
|
|
2005-09-18 08:25:01 +02:00
|
|
|
<xsl:call-template name="html-usergroups-list-entries">
|
|
|
|
<xsl:with-param name="usergroups.xml" select="$usergroups.xml" />
|
|
|
|
<xsl:with-param name="usergroups-local.xml" select="$usergroups-local.xml" />
|
|
|
|
</xsl:call-template>
|
2005-10-04 19:18:41 +02:00
|
|
|
|
|
|
|
</div> <!-- contentwrap -->
|
|
|
|
<br class="clearboth" />
|
|
|
|
</div> <!-- content -->
|
|
|
|
|
|
|
|
<xsl:copy-of select="$footer"/>
|
|
|
|
|
|
|
|
</div> <!-- container -->
|
|
|
|
</div> <!-- containerwrap -->
|
2005-07-16 11:58:17 +02:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|