/usr/share/mythtv/mythimport.xslt is in mythexport 2.2.4-0ubuntu2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | <?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/channel">
<html>
<head>
<style type="text/css">
div.header{
display:block;
padding:0.4em 0.2em;
color:#FFF;
border-bottom:1px solid black;
font-weight:bold;
font-size:140%;
background-color:#4483C7;
}
</style>
</head>
<body>
<div class="Snippet" style="border-width:0; margin:1em">
<dl style="padding-right:1em">
<xsl:for-each select="item">
<dd>
<xsl:element name="div">
<xsl:attribute name="class">
header
</xsl:attribute>
<xsl:value-of select="title"/>
</xsl:element>
</dd>
<dd>
<xsl:element name="a">
<xsl:attribute name="href">
<xsl:value-of select="link"/>
</xsl:attribute>
<xsl:value-of select="link"/>
</xsl:element>
</dd>
<br />
</xsl:for-each>
</dl>
</div>
<div id="footer">
<xsl:value-of select="copyright" />
</div>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
|