1 <?xml version="1.0" encoding="UTF-8"?>
4 PLC configuration file-to-DocBook conversion stylesheet
6 Mark Huang <mlhuang@cs.princeton.edu>
7 Copyright (C) 2006 The Trustees of Princeton University
9 $Id: GenDoc.xsl,v 1.8 2005/10/10 17:46:36 mlhuang Exp $
12 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'>
14 <xsl:output omit-xml-declaration="yes" encoding="UTF-8" indent="yes" />
16 <xsl:template match="/">
19 <xsl:for-each select="configuration/variables/category">
20 <xsl:variable name="category_id" select="translate(@id,
21 'abcdefghijklmnopqrstuvwxyz',
22 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" />
23 <xsl:for-each select="variablelist/variable">
24 <xsl:variable name="variable_id" select="translate(@id,
25 'abcdefghijklmnopqrstuvwxyz',
26 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" />
29 <xsl:value-of select="$category_id" />_<xsl:value-of select="$variable_id" />
33 Type: <xsl:value-of select="@type" />
36 Default: <xsl:value-of select="value" />
39 <xsl:value-of select="description" />