sitemap.xsl revision 8a72c24379e10c3f3d0dfe352bf15e45ee65c179
9a658bb3989694b409e700f2842c892224fc9700nd <!-- document() works relative to the xsl (!) file -->
9a658bb3989694b409e700f2842c892224fc9700nd <!-- <sitemap> -->
9a658bb3989694b409e700f2842c892224fc9700nd <!-- Process an entire document into an HTML page -->
9a658bb3989694b409e700f2842c892224fc9700nd <html xml:lang="{$messages/@lang}" lang="{$messages/@lang}">
9a658bb3989694b409e700f2842c892224fc9700nd <!-- category index -->
9a658bb3989694b409e700f2842c892224fc9700nd <xsl:value-of select="$messages/message[@name='seealso']"/>
9a658bb3989694b409e700f2842c892224fc9700nd <!-- Process a sitemap category -->
9a658bb3989694b409e700f2842c892224fc9700nd <!-- Section heading -->
9a658bb3989694b409e700f2842c892224fc9700nd <!-- category body -->
9a658bb3989694b409e700f2842c892224fc9700nd <!-- /category -->
9a658bb3989694b409e700f2842c892224fc9700nd <!-- insert module list into sitemap -->
9a658bb3989694b409e700f2842c892224fc9700nd <xsl:sort select="document(concat($basedir,'mod/',.))/modulesynopsis/name"/>
9a658bb3989694b409e700f2842c892224fc9700nd <xsl:variable name="current" select="document(concat($basedir,'mod/',.))/modulesynopsis" />
9a658bb3989694b409e700f2842c892224fc9700nd <xsl:if test="$current/status='MPM' or $current/status='Core'">
9a658bb3989694b409e700f2842c892224fc9700nd <xsl:value-of select="$messages/message[@name='apachecore']"/>
9a658bb3989694b409e700f2842c892224fc9700nd <xsl:value-of select="$messages/message[@name='apachempmcommon']"/>
9a658bb3989694b409e700f2842c892224fc9700nd <xsl:value-of select="$messages/message[@name='apachempm']"/>
9a658bb3989694b409e700f2842c892224fc9700nd <!-- /core,mpm -->
9a658bb3989694b409e700f2842c892224fc9700nd <xsl:sort select="document(concat($basedir,'mod/',.))/modulesynopsis/name"/>
9a658bb3989694b409e700f2842c892224fc9700nd <xsl:variable name="current" select="document(concat($basedir,'mod/',.))/modulesynopsis" />
9a658bb3989694b409e700f2842c892224fc9700nd <xsl:if test="$current/status!='MPM' and $current/status!='Core'">
9a658bb3989694b409e700f2842c892224fc9700nd <xsl:value-of select="$messages/message[@name='apachemodule']"/>
9a658bb3989694b409e700f2842c892224fc9700nd <!-- /other modules -->