format.css
author Edouard Tisserant <edouard.tisserant@gmail.com>
Wed, 28 Apr 2021 23:40:51 +0200
changeset 78 0b05c2bce9e4
parent 0 76005e62091d
permissions -rw-r--r--
Fix expension of macros in pointers with default values.

For example :

in xsl decl widget_class(%name, *clsname="%nameWidget", match="widget[@type='%name']", mode="widget_class") alias template {
| class `text **clsname` extends Widget{
content;
| }
};

widget_class('Input');

gives now :

<xsl:template match="widget[@type='Input']" mode="widget_class">
<xsl:text>class </xsl:text>
<xsl:text>InputWidget</xsl:text>
<xsl:text> extends Widget{
</xsl:text>
<xsl:text>}
</xsl:text>
</xsl:template>

Without the fix, <xsl:text>InputWidget</xsl:text> would be <xsl:text>%nameWidget</xsl:text>
html {
    background-color: lightgrey;
}

body {
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    width: 900px;
    min-height: 768px;
    background-color: white;
    font-family: Arial,Helvetica,FreeSans
}

em {
    color: darkblue;
    font-weight: bold;
    font-style: normal;
}

#headline {
    color: black;
    font-size: x-large;
    font-weight: normal;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    padding: 10px;
}

td {
    vertical-align: top;
}

#navigation {
    position: relative;
    float: right;
    width: 200px;
    border-left-width: 1px;
    border-left-style: dotted;
    padding: 10px;
    font-size: small;
}

#entries {
    width: 569px;
    padding: 10px;
}

.statusline {
    width: 569px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: small;
}

#bottom {
    clear: both;
    color: grey;
    padding: 10px;
}

h1, h2 {
    font-size: medium;
    color: darkblue;
}

h3 {
    font-size: medium;
    color: black;
}

h4 {
    font-size: medium;
    font-weight: normal;
    font-style: italic;
}

.subscript {
    font-size: small;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    margin-bottom: 1em;
    padding-bottom: 1em;
}

.small {
    font-size: small;
    margin-bottom: 1em;
    padding-bottom: 1em;
}