Edouard Tisserant <edouard.tisserant@gmail.com> [Wed, 28 Apr 2021 23:40:51 +0200] rev 78
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>
Volker Birk <vb@pep-project.org> [Thu, 08 Apr 2021 21:11:30 +0200] rev 77
updating documentation
Volker Birk <vb@pep-project.org> [Thu, 08 Apr 2021 15:22:59 +0200] rev 76
document gitea
Volker Birk <vb@pep-project.org> [Thu, 08 Apr 2021 15:20:11 +0200] rev 75
version stamp
Volker Birk <vb@pep-project.org> [Thu, 08 Apr 2021 15:17:25 +0200] rev 74
feature: include from *pointer
Volker Birk <vb@pep-project.org> [Thu, 08 Apr 2021 14:42:47 +0200] rev 73
add pointer support for include
Volker Birk <vb@pep-project.org> [Thu, 08 Apr 2021 14:37:11 +0200] rev 72
grammar in own file
heck <heck@pep.foundation> [Thu, 04 Feb 2021 01:41:09 +0100] rev 71
used a perl script[0] to convert .hgignore to .gitigore
[0] https://github.com/devzendo/hgignore-to-gitignore