<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
	xmlns="http://www.w3.org/1999/xhtml">

<xsl:output indent="yes" method="xml" doctype-public="-//W3C//DTD XHTML 1.1//EN" doctype-system="http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"/>
<xsl:variable name="base_uri">http://httpd.apache.org/docs/2.2/mod/</xsl:variable>
<xsl:variable name="allmods_name">allmodules.xml.ja</xsl:variable>
<xsl:variable name="allmods_uri"><xsl:value-of select="concat($base_uri,$allmods_name)"/></xsl:variable>

<xsl:template match="/">
	<html xml:lang="en">
		<head>
			<title>XHTMLized Apache "All-Modules-XML"</title>
		</head>
		<body>
			<h1>XHTMLized Apache "All-Modules-XML"</h1>
			<p>Converted from <a href="{$allmods_uri}"><xsl:value-of select="$allmods_uri"/></a></p>
			<ol>
				<xsl:for-each select="document($allmods_uri)/modulefilelist/modulefile">
					<li><a href="{concat($base_uri,.)}"><xsl:value-of select="."/></a></li>
				</xsl:for-each>
			</ol>
			<hr/>
			<address>$Id: allmods2xhtml.xsl,v 1.1 2009/07/05 04:38:10 nzawa Exp nzawa $</address>
		</body>
	</html>
</xsl:template>

</xsl:stylesheet>

