diff options
author | MyoungJune Park <mj2004.park@samsung.com> | 2016-06-29 14:28:51 +0900 |
---|---|---|
committer | MyoungJune Park <mj2004.park@samsung.com> | 2016-06-29 14:29:13 +0900 |
commit | 8737843a4d457b79d3c6abbc17fbf97b81a8861e (patch) | |
tree | 6229a8587d64a3a76c297f63d3eead8ffb51a14d /tests/XSLTMark/dbhtml.xsl | |
parent | c3bb6b2f10204be6970bfbaa50f9e96e184d505f (diff) | |
parent | c582450a479ff157cf79aed26b6b08e867ff3832 (diff) | |
download | libxslt-8737843a4d457b79d3c6abbc17fbf97b81a8861e.tar.gz libxslt-8737843a4d457b79d3c6abbc17fbf97b81a8861e.tar.bz2 libxslt-8737843a4d457b79d3c6abbc17fbf97b81a8861e.zip |
Merge branch 'tizen_base' into tizen
Change-Id: I412621219c0ed82145d1a03b5bbe474646fcf0ef
Signed-off-by: MyoungJune Park <mj2004.park@samsung.com>
Diffstat (limited to 'tests/XSLTMark/dbhtml.xsl')
-rw-r--r-- | tests/XSLTMark/dbhtml.xsl | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/tests/XSLTMark/dbhtml.xsl b/tests/XSLTMark/dbhtml.xsl deleted file mode 100644 index 741362e0..00000000 --- a/tests/XSLTMark/dbhtml.xsl +++ /dev/null @@ -1,36 +0,0 @@ -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> - -<xsl:output method="html" indent="yes" encoding="utf-8"/> - -<xsl:template match="table"> - <html> - <head> - <title>XSLT-generated HTML Table</title> - </head> - <body> - <table> - <xsl:apply-templates/> - </table> - </body> - </html> -</xsl:template> - -<xsl:template match="row"> - <tr> - <xsl:apply-templates select="id"/> - <xsl:apply-templates select="firstname"/> - <xsl:apply-templates select="lastname"/> - <xsl:apply-templates select="street"/> - <xsl:apply-templates select="city"/> - <xsl:apply-templates select="state"/> - <xsl:apply-templates select="zip"/> - </tr> -</xsl:template> - -<xsl:template match="id|firstname|lastname|street|city|state|zip"> - <td> - <xsl:value-of select="."/> - </td> -</xsl:template> - -</xsl:stylesheet> |