aboutsummaryrefslogtreecommitdiff
path: root/share/sgml/templates.usergroups.xsl
blob: f703da6ff5e37fd2bdb9b8d04e04656beb391a59 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?xml version="1.0"?>

<!-- $FreeBSD: www/share/sgml/templates.usergroups.xsl,v 1.5 2005/11/30 21:35:22 pav Exp $ -->

<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" />
  <xsl:variable name="section" select="'community'"/>

  <xsl:output method="xml" encoding="iso8859-1"
    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>
        <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"/>

	<xsl:call-template name="html-usergroups-list-header" />

	<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>

	<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>

	      </div> <!-- CONTENTWRAP -->
	      <br class="clearboth" />
	    </div> <!-- CONTENT -->

	    <xsl:copy-of select="$footer"/>

	  </div> <!-- CONTAINER -->
	</div> <!-- CONTAINERWRAP -->
      </body>
    </html>
  </xsl:template>
</xsl:stylesheet>