aboutsummaryrefslogtreecommitdiffstats
path: root/fix/hfField.xsl
blob: 3a01365ef1a7757a2caac5f96a6214dbd4f1bdf7 (plain)
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
<!--
-->

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
 <xsl:output method="text" encoding="UTF-8"/>

 <xsl:template match="text()"/>

 <xsl:template match="/">
static hf_register_info hf_FIX[] = {
      <xsl:apply-templates/>
  };

</xsl:template>


<xsl:template match="fields">
<xsl:for-each select="field">
    <xsl:sort select="@number" data-type="number"/> 
        { &amp;fix_fields[<xsl:value-of select="position( ) -1" />].hf_id, 
            { "<xsl:value-of select="@name"/> (<xsl:value-of select="@number"/>)", "fix.<xsl:value-of select="@name"/>",
            FT_STRING, BASE_NONE, NULL, 0x00,
            NULL, HFILL }
        },</xsl:for-each></xsl:template>
</xsl:stylesheet>