Home directory for Malawi's wwwroot
Duncan Ewan
2021-02-19 3e758c29e0fde36fc088efcfc88f9a3014432b64
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
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (c) 1995-2005 Macromedia, Inc. All rights reserved. -->
 
<xsl:stylesheet version="1.0" 
xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
xmlns:cf="http://www.macromedia.com/2004/cfform" 
xmlns:xf="http://www.w3.org/2002/xforms" 
xmlns:html="http://www.w3.org/1999/xhtml" 
exclude-result-prefixes="xsi cf xsl xf html">
 
    
    
    <!-- <cfformitem type="buttonbar" > -->
    <xsl:template match="xf:group[@appearance='buttonbar']">
        <xsl:element name="table">
            <xsl:attribute name="border">0</xsl:attribute>
            <xsl:attribute name="cellspacing">0</xsl:attribute>
            <xsl:attribute name="cellpadding">0</xsl:attribute>
            <xsl:attribute name="class">cfButtonBar</xsl:attribute>
            <xsl:attribute name="width">100%</xsl:attribute>
 
            <xsl:element name="tr">
                <xsl:element name="td">
                    <xsl:attribute name="align">right</xsl:attribute>
                    <xsl:apply-templates select="*[not(self::xf:extension)][not(self::xf:label)]"/>
                </xsl:element>
            </xsl:element>
        </xsl:element>
    </xsl:template>        
    
    
</xsl:stylesheet>