]> git.meshlink.io Git - catta/blobdiff - man/xmltoman.xsl
get rid of a lot of old svn cruft
[catta] / man / xmltoman.xsl
index 2048708e319f46cd1416579129445dc457ff5a69..1a344c2ac2b59468480a0d864395a2413039fcda 100644 (file)
@@ -1,42 +1,49 @@
-<?xml version="1.0" encoding="iso-8859-1"?>
+<?xml version="1.0" encoding="iso-8859-15"?>
 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml">
 
 <!-- 
-  This file is part of ifplugd.
+  This file is part of avahi.
 
-  ifplugd is free software; you can redistribute it and/or modify it under
+  avahi is free software; you can redistribute it and/or modify it under
   the terms of the GNU General Public License as published by the Free
   Software Foundation; either version 2 of the License, or (at your
   option) any later version.
 
-  ifplugd is distributed in the hope that it will be useful, but WITHOUT
+  avahi is distributed in the hope that it will be useful, but WITHOUT
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
   for more details.
 
   You should have received a copy of the GNU General Public License
-  along with ifplugd; if not, write to the Free Software Foundation,
+  along with avahi; if not, write to the Free Software Foundation,
   Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. 
 -->
 
+<xsl:output method="xml" version="1.0" encoding="iso-8859-15" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" indent="yes"/>
+
 <xsl:template match="/manpage">
-    <xsl:text disable-output-escaping="yes">
-    &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt;
-    </xsl:text>
+  
     <html>
 
     <head>
-      <title>
-        <xsl:value-of select="@name"/>(<xsl:value-of select="@section"/>) 
-      </title>
-      <link rel="stylesheet" type="text/css" href="xmltoman.css"/>
+      <title><xsl:value-of select="@name"/>(<xsl:value-of select="@section"/>)</title>
+      <style type="text/css">
+        body { color: black; background-color: white; } 
+        a:link, a:visited { color: #900000; }       
+        h1 { text-transform:uppercase; font-size: 18pt; } 
+        p { margin-left:1cm; margin-right:1cm; } 
+        .cmd { font-family:monospace; }
+        .file { font-family:monospace; }
+        .arg { text-transform:uppercase; font-family:monospace; font-style: italic; }
+        .opt { font-family:monospace; font-weight: bold;  }
+        .manref { font-family:monospace; }
+        .option .optdesc { margin-left:2cm; }
+      </style>
     </head>
     <body>
       <h1>Name</h1>
       <p><xsl:value-of select="@name"/>
-        <xsl:if test="string-length(@desc) &gt; 0">
-          - <xsl:value-of select="@desc"/>
-        </xsl:if>
+        <xsl:if test="string-length(@desc) &gt; 0"> - <xsl:value-of select="@desc"/></xsl:if>
       </p>
       <xsl:apply-templates />
     </body>