2005-04-08 00:07:20 +00:00
|
|
|
<?xml version='1.0'?>
|
|
|
|
<!DOCTYPE xsl:stylesheet
|
|
|
|
[
|
|
|
|
<!ENTITY site "file:///home/ds/cvs/comedi-www/src">
|
|
|
|
<!-- <!ENTITY site "http://www.comedi.org"> -->
|
|
|
|
]>
|
|
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
|
|
version="1.0">
|
|
|
|
|
2008-02-07 15:09:43 +00:00
|
|
|
<xsl:output method="xml" indent="yes"
|
|
|
|
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
|
|
|
|
doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"/>
|
2005-04-08 00:07:20 +00:00
|
|
|
|
2008-02-06 18:44:13 +00:00
|
|
|
<!-- identify even/odd table rows so we can apply alternating color scheme -->
|
2008-02-06 16:52:02 +00:00
|
|
|
<xsl:template match="table">
|
|
|
|
<xsl:copy>
|
2008-02-06 21:00:38 +00:00
|
|
|
<xsl:copy-of select="@*"/>
|
2008-02-06 16:52:02 +00:00
|
|
|
<xsl:for-each select="*">
|
|
|
|
<xsl:copy>
|
|
|
|
<xsl:if test="name()='tr'">
|
|
|
|
<xsl:attribute name="class">
|
|
|
|
<xsl:choose>
|
|
|
|
<xsl:when test="position() mod 2 = 0">even</xsl:when>
|
|
|
|
<xsl:otherwise>odd</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
|
|
|
</xsl:attribute>
|
|
|
|
</xsl:if>
|
2008-02-06 20:21:19 +00:00
|
|
|
<xsl:copy-of select="@*"/>
|
2008-02-06 16:52:02 +00:00
|
|
|
<xsl:apply-templates/>
|
|
|
|
</xsl:copy>
|
|
|
|
</xsl:for-each>
|
|
|
|
</xsl:copy>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
<xsl:template match="*">
|
|
|
|
<xsl:copy>
|
2008-02-06 18:44:13 +00:00
|
|
|
<xsl:copy-of select="@*"/>
|
2008-02-06 16:52:02 +00:00
|
|
|
<xsl:apply-templates/>
|
|
|
|
</xsl:copy>
|
|
|
|
</xsl:template>
|
|
|
|
|
2005-04-08 00:07:20 +00:00
|
|
|
<xsl:template match="page">
|
|
|
|
<xsl:param name="title" select="Big_Kitten_LLC" />
|
|
|
|
<xsl:param name="content" />
|
|
|
|
|
2008-02-07 15:09:43 +00:00
|
|
|
<html xml:lang="en" lang="en">
|
2005-04-08 00:07:20 +00:00
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
|
|
<meta name="GENERATOR" content="Mozilla/4.7 [en] (X11; I; Linux 2.3.50 i686) [Netscape]" />
|
2008-02-06 16:52:02 +00:00
|
|
|
<xsl:apply-templates select="title"/>
|
|
|
|
<link rel="stylesheet" href="comedi-www.css" type="text/css"/>
|
2005-04-08 00:07:20 +00:00
|
|
|
</head>
|
2008-02-06 16:52:02 +00:00
|
|
|
<body>
|
2005-04-08 00:07:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
<table border="0" width="99%" align="center" cellpadding="2" cellspacing="2"
|
|
|
|
bgcolor="#ffffff">
|
|
|
|
<tr valign="top">
|
|
|
|
<td valign="top" rowspan="5">
|
|
|
|
<center>
|
|
|
|
<font size="8" face="arial,helvetica"><b>
|
2018-05-10 12:01:23 +02:00
|
|
|
<img width="417" src="images/comedi_logo.svg" alt="Comedi - The Linux Control and Measurement Interface" />
|
2005-04-08 00:07:20 +00:00
|
|
|
</b></font>
|
|
|
|
</center>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
2008-02-06 20:21:19 +00:00
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<div class="navigation-bar">
|
|
|
|
<h4>Index</h4>
|
|
|
|
<ul>
|
|
|
|
<li><a href="index.html">Introduction</a></li>
|
|
|
|
<li><a href="download.html">Download</a></li>
|
|
|
|
<li><a href="documentation.html">Documentation</a></li>
|
|
|
|
<li><a href="mailinglist.html">Mailing list</a></li>
|
|
|
|
<li><a href="hardware.html">Supported<br/>hardware</a></li>
|
|
|
|
<li><a href="links.html">Manufacturers</a></li>
|
|
|
|
<li><a href="applications.html">Applications</a></li>
|
2011-05-10 11:53:28 +01:00
|
|
|
<!-- <li><a href="https://bugzilla.comedi.org/cgi-bin/bugzilla/query.cgi">Bug Tracking</a></li> -->
|
2008-02-06 20:21:19 +00:00
|
|
|
</ul>
|
|
|
|
<h4>Links</h4>
|
|
|
|
<ul>
|
|
|
|
<li><a href="http://www.linux.org/">Linux</a></li>
|
|
|
|
<li><a href="http://www.debian.org/">Debian</a></li>
|
|
|
|
<li><a href="http://www.rtai.org/">RTAI</a></li>
|
|
|
|
<li><a href="http://www.schleef.org/">David Schleef</a></li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<div class="body">
|
|
|
|
<xsl:apply-templates select="body/*"/>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2005-04-08 00:07:20 +00:00
|
|
|
</table>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|
|
|
|
</xsl:template>
|
2008-02-06 16:52:02 +00:00
|
|
|
|
2005-04-08 00:07:20 +00:00
|
|
|
</xsl:stylesheet>
|
|
|
|
|