9674
|
1 #
|
|
2 # Helper script to generate html.xsl.
|
|
3 #
|
|
4
|
|
5 if test $# -ne 1; then
|
|
6 echo "Usage: $0 <path to chunk.xsl>"
|
|
7 exit 1
|
|
8 fi
|
|
9
|
|
10 if test -f "$1"; then :; else
|
|
11 echo "$0: file not found: \"$1\""
|
|
12 exit 1
|
|
13 fi
|
|
14
|
|
15 cat << EOF
|
|
16 <?xml version="1.0" encoding="ISO-8859-1"?>
|
|
17 <!-- ***************************************************
|
|
18 This file is generated automatically. DO NOT EDIT.
|
|
19 *************************************************** -->
|
|
20 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
21 version="1.0">
|
|
22
|
|
23 <xsl:import href="$1"/>
|
|
24 <xsl:include href="html-common.xsl"/>
|
|
25
|
|
26 </xsl:stylesheet>
|
|
27 EOF
|