1 | <?xml version='1.0'?> |
---|
2 | <!-- |
---|
3 | $Id$ |
---|
4 | Copyright (C) Authors contributing to this file. |
---|
5 | |
---|
6 | This file is part of BASE - BioArray Software Environment. |
---|
7 | Available at http://base.thep.lu.se/ |
---|
8 | |
---|
9 | BASE is free software; you can redistribute it and/or |
---|
10 | modify it under the terms of the GNU General Public License |
---|
11 | as published by the Free Software Foundation; either version 3 |
---|
12 | of the License, or (at your option) any later version. |
---|
13 | |
---|
14 | BASE is distributed in the hope that it will be useful, |
---|
15 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
17 | GNU General Public License for more details. |
---|
18 | |
---|
19 | You should have received a copy of the GNU General Public License |
---|
20 | along with this program; if not, write to the Free Software |
---|
21 | Foundation, Inc., 59 Temple Place - Suite 330, |
---|
22 | Boston, MA 02111-1307, USA. |
---|
23 | --> |
---|
24 | <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'> |
---|
25 | <xsl:import href="../docbook/xsl/html/docbook.xsl" /> |
---|
26 | <xsl:param name="admon.style"></xsl:param> |
---|
27 | |
---|
28 | <xsl:output method="xml" doctype-system="helpfile.dtd" indent="yes" encoding="UTF-8" /> |
---|
29 | |
---|
30 | <xsl:template match="/"> |
---|
31 | <xsl:comment> |
---|
32 | "Copyright (C) Authors contributing to this file. |
---|
33 | |
---|
34 | This file is part of BASE - BioArray Software Environment. Available at |
---|
35 | http://base.thep.lu.se/ |
---|
36 | |
---|
37 | BASE is free software; you can redistribute it and/or modify it under the terms of the |
---|
38 | GNU General Public License as published by the Free Software Foundation; either version |
---|
39 | 2 of the License, or (at your option) any later version. |
---|
40 | |
---|
41 | BASE is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
---|
42 | without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
---|
43 | PURPOSE. See the GNU General Public License for more details. |
---|
44 | |
---|
45 | You should have received a copy of the GNU General Public License along with this |
---|
46 | program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite |
---|
47 | 330, Boston, MA 02111-1307, USA." |
---|
48 | </xsl:comment> |
---|
49 | <xsl:element name="helptexts"> |
---|
50 | <xsl:attribute name="clientExternalID">net.sf.basedb.clients.web</xsl:attribute> |
---|
51 | <xsl:for-each select="//helptext"> |
---|
52 | <xsl:element name="helpitem"> |
---|
53 | <xsl:attribute name="externalID"> |
---|
54 | <xsl:value-of select="@external_id" /> |
---|
55 | </xsl:attribute> |
---|
56 | <xsl:element name="name"> |
---|
57 | <xsl:value-of select="@title" /> |
---|
58 | </xsl:element> |
---|
59 | <xsl:element name="description"> |
---|
60 | <xsl:apply-templates select="*"/> |
---|
61 | </xsl:element> |
---|
62 | </xsl:element> |
---|
63 | </xsl:for-each> |
---|
64 | </xsl:element> |
---|
65 | </xsl:template> |
---|
66 | |
---|
67 | <!-- skip text marked with <nohelp> tag --> |
---|
68 | <xsl:template match="nohelp"> |
---|
69 | </xsl:template> |
---|
70 | |
---|
71 | <xsl:template match="seeother"> |
---|
72 | <h4>See also</h4> |
---|
73 | <ul> |
---|
74 | <xsl:for-each select="other"> |
---|
75 | <li>{@link <xsl:value-of select="@external_id" /><xsl:text> </xsl:text><xsl:value-of select="." />}</li> |
---|
76 | </xsl:for-each> |
---|
77 | </ul> |
---|
78 | </xsl:template> |
---|
79 | |
---|
80 | <xsl:template match="guibutton"> |
---|
81 | <btn><xsl:apply-templates /></btn> |
---|
82 | </xsl:template> |
---|
83 | |
---|
84 | <xsl:template match="guilabel"> |
---|
85 | <lbl><xsl:apply-templates /></lbl> |
---|
86 | </xsl:template> |
---|
87 | |
---|
88 | </xsl:stylesheet> |
---|