<?xml version="1.0"?>

<!--
$Id: error.xsl,v 1.2 2004/01/22 19:27:28 jmates Exp $

Stylesheet for AxKit's AxErrorStylesheet parameter.
-->

<xsl:stylesheet
		version="1.0"
		xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

	<xsl:output method="html"/>

	<xsl:template match="error">
		<html lang="en">
			<head>
				<title>AxKit Error</title>
				<link rel="shortcut icon" type="image/png" href="/favicon.png"/>
				<meta name="MSSmartTagsPreventParsing" content="TRUE"/>
			</head>
			<body bgcolor="#FFFFFF" fgcolor="#000000" alink="#0033FF" vlink="#003300">
				<h2 style="color: #CC0000;">AxKit Error</h2>
				<!-- <p>File: <tt><xsl:value-of select="file"/></tt></p> -->
				<!-- <blockquote><p><xsl:value-of select="msg"/></p></blockquote> -->
				<p>Usually this means something is horribly wrong with the server, or perhaps someone forgot to test whether the XML document in question was actually valid.  XML is picky like that.</p>
			</body>
		</html>
	</xsl:template>

</xsl:stylesheet>
