mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-22 17:06:36 -06:00
9e1e1bea8a
It makes more sense in util as it is by and for the devs, not contributed by an external user for external use. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18627 57a11ea4-9604-0410-9ed3-97b8803252fd
36 lines
687 B
HTML
36 lines
687 B
HTML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!DOCTYPE xsl:stylesheet [
|
|
<!ENTITY tab "	">
|
|
<!ENTITY newl " ">
|
|
<!ENTITY space " ">
|
|
]>
|
|
|
|
<xsl:stylesheet
|
|
version="1.0"
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
>
|
|
<xsl:output method="xml"
|
|
doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
|
|
indent="yes"/>
|
|
|
|
<xsl:template match="/">
|
|
<html>
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<ul>
|
|
<xsl:apply-templates/>
|
|
</ul>
|
|
</body>
|
|
</html>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="logentry">
|
|
<li>
|
|
<xsl:value-of select="msg" />
|
|
</li>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|