source: deprecated/ui/xslt/error.xsl

Last change on this file was 16500, checked in by max, 16 years ago

Output method of the error message fixed

File size: 731 bytes
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2
3<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
4
5<xsl:output
6method="xml"
7encoding="UTF-8"
8doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
9doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
10omit-xml-declaration="yes"
11indent="yes"/>
12
13
14<xsl:template match="/">
15 <html>
16 <head>
17 <title> Greenstone skinning exception </title>
18 </head>
19 <body>
20 <h1> error </h1>
21 <p> the current skin specified an xslt file that does not exist. Please check that the skin is complete and that it's configuration file (skin.xml) specifies suitable xslt files for all actions. </p>
22 </body>
23 </html>
24</xsl:template>
25
26</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.