Make a copy of the examples stylesheet

git-svn-id: https://svn.apache.org/repos/asf/jakarta/taglibs/proper/rdc/trunk@733537 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/taglibs-rdc-examples/src/util/examples.xsl b/taglibs-rdc-examples/src/util/examples.xsl
new file mode 100644
index 0000000..b66aea9
--- /dev/null
+++ b/taglibs-rdc-examples/src/util/examples.xsl
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<xsl:stylesheet
+  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+  version="1.0">
+  <xsl:output method="html" 
+              encoding="ISO-8859-1"
+              indent="yes" 
+              omit-xml-declaration="yes"/>
+
+<xsl:template match="/document">
+<html>
+<body>
+<pre>
+  <xsl:copy-of select="*|text()"/>
+</pre>
+</body>
+</html>
+</xsl:template>
+
+</xsl:stylesheet>