--- a/svghmi/gen_index_xhtml.xslt Tue Oct 08 13:27:00 2019 +0200
+++ b/svghmi/gen_index_xhtml.xslt Wed Oct 09 09:04:35 2019 +0200
@@ -1,5 +1,5 @@
-<xsl:stylesheet xmlns:svg="http://www.w3.org/2000/svg" xmlns:ns="beremiz" xmlns:cc="http://creativecommons.org/ns#" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:str="http://exslt.org/strings" xmlns:regexp="http://exslt.org/regular-expressions" xmlns:exsl="http://exslt.org/common" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" exclude-result-prefixes="ns str regexp exsl" extension-element-prefixes="ns" version="1.0">
+<xsl:stylesheet xmlns:func="http://exslt.org/functions" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:svg="http://www.w3.org/2000/svg" xmlns:str="http://exslt.org/strings" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:exsl="http://exslt.org/common" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns="beremiz" xmlns:cc="http://creativecommons.org/ns#" xmlns:regexp="http://exslt.org/regular-expressions" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:dc="http://purl.org/dc/elements/1.1/" extension-element-prefixes="ns func" version="1.0" exclude-result-prefixes="ns str regexp exsl func"> <xsl:output method="xml" cdata-section-elements="script"/>
<xsl:variable name="geometry" select="ns:GetSVGGeometry()"/>
<xsl:variable name="hmitree" select="ns:GetHMITree()"/>
@@ -83,6 +83,9 @@
+ <xsl:text>Made with SVGHMI. https://beremiz.org</xsl:text> <html xmlns="http://www.w3.org/1999/xhtml">
@@ -104,6 +107,57 @@
+ <func:function name="func:parselabel"> + <xsl:param name="label"/> + <xsl:variable name="description" select="substring-after($label,'HMI:')"/> + <xsl:variable name="_args" select="substring-before($description,'@')"/> + <xsl:variable name="args"> + <xsl:when test="$_args"> + <xsl:value-of select="$_args"/> + <xsl:value-of select="$description"/> + <xsl:variable name="_type" select="substring-before($args,':')"/> + <xsl:variable name="type"> + <xsl:when test="$_type"> + <xsl:value-of select="$_type"/> + <xsl:value-of select="$args"/> + <xsl:variable name="ast"> + <xsl:attribute name="type"> + <xsl:value-of select="$type"/> + <xsl:for-each select="str:split($args, ':')"> + <xsl:attribute name="value"> + <xsl:value-of select="."/> + <xsl:variable name="paths" select="substring-after($description,'@')"/> + <xsl:for-each select="str:split($paths, '@')"> + <xsl:attribute name="value"> + <xsl:value-of select="."/> + <func:result select="exsl:node-set($ast)"/> <xsl:template name="scripts">
<xsl:text>var hmi_index = {
@@ -148,16 +202,12 @@
<xsl:text>var page_desc = {
- <xsl:for-each select="//*[starts-with(@inkscape:label,'HMI:')]">
+ <xsl:for-each select="//*[func:parselabel(@inkscape:label)/widget/@type = 'Page']"> <xsl:value-of select="@inkscape:label"/>
- <xsl:variable name="ast">
- <xsl:call-template name="parse_label">
- <xsl:with-param name="label" select="@inkscape:label"/>
- <xsl:apply-templates mode="testtree" select="exsl:node-set($ast)"/>
+ <xsl:variable name="ast" select="func:parselabel(@inkscape:label)"/> + <xsl:apply-templates mode="testtree" select="$ast"/> @@ -288,54 +338,6 @@
- <xsl:template name="parse_label">
- <xsl:param name="label"/>
- <xsl:variable name="description" select="substring-after($label,'HMI:')"/>
- <xsl:variable name="_args" select="substring-before($description,'@')"/>
- <xsl:variable name="args">
- <xsl:when test="$_args">
- <xsl:value-of select="$_args"/>
- <xsl:value-of select="$description"/>
- <xsl:variable name="_type" select="substring-before($args,':')"/>
- <xsl:variable name="type">
- <xsl:when test="$_type">
- <xsl:value-of select="$_type"/>
- <xsl:value-of select="$args"/>
- <xsl:attribute name="type">
- <xsl:value-of select="$type"/>
- <xsl:for-each select="str:split($args, ':')">
- <xsl:attribute name="value">
- <xsl:value-of select="."/>
- <xsl:variable name="paths" select="substring-after($description,'@')"/>
- <xsl:for-each select="str:split($paths, '@')">
- <xsl:attribute name="value">
- <xsl:value-of select="."/>
<xsl:template mode="page_desc" match="*"/>
<xsl:template mode="code_from_descs" match="*">
--- a/svghmi/gen_index_xhtml.ysl2 Tue Oct 08 13:27:00 2019 +0200
+++ b/svghmi/gen_index_xhtml.ysl2 Wed Oct 09 09:04:35 2019 +0200
@@ -14,8 +14,8 @@
/* Our namespace to invoke python code */
- extension-element-prefixes="ns"
- exclude-result-prefixes="ns str regexp exsl" {
+ extension-element-prefixes="ns func" + exclude-result-prefixes="ns str regexp exsl func" { /* This retrieves geometry obtained through "inkscape -S"
* already parsed by python and presented as a list of
@@ -83,6 +83,7 @@
/* copy root node and add geometry as comment for a test */
+ comment > Made with SVGHMI. https://beremiz.org html xmlns="http://www.w3.org/1999/xhtml" {
@@ -105,6 +106,40 @@
+ func:function name="func:parselabel" { + const "description", "substring-after($label,'HMI:')"; + const "_args", "substring-before($description,'@')"; + when "$_args" value "$_args"; + otherwise value "$description"; + const "_type", "substring-before($args,':')"; + when "$_type" value "$_type"; + otherwise value "$args"; + const "ast" if "$type" widget { + attrib "type" > «$type» + foreach "str:split($args, ':')" { + const "paths", "substring-after($description,'@')"; + foreach "str:split($paths, '@')" { + func:result select="exsl:node-set($ast)" /* TODO : paste hmitree hash stored in hmi tree root node */
@@ -154,10 +189,10 @@
// apply "//*[substring-after(substring-before(@inkscape:label, '@'), 'HMI'
- foreach "//*[starts-with(@inkscape:label,'HMI:')]" {
+ foreach "//*[func:parselabel(@inkscape:label)/widget/@type = 'Page']" { - const "ast" call "parse_label" with "label","@inkscape:label";
- apply "exsl:node-set($ast)", mode="testtree";
+ const "ast", "func:parselabel(@inkscape:label)"; + apply "$ast", mode="testtree"; @@ -176,37 +211,6 @@
- function "parse_label" {
- const "description", "substring-after($label,'HMI:')";
- const "_args", "substring-before($description,'@')";
- when "$_args" value "$_args";
- otherwise value "$description";
- const "_type", "substring-before($args,':')";
- when "$_type" value "$_type";
- otherwise value "$args";
- attrib "type" > «$type»
- foreach "str:split($args, ':')" {
- const "paths", "substring-after($description,'@')";
- foreach "str:split($paths, '@')" {
template "*", mode="page_desc" {
--- a/yslt_noindent.yml2 Tue Oct 08 13:27:00 2019 +0200
+++ b/yslt_noindent.yml2 Wed Oct 09 09:04:35 2019 +0200
@@ -12,7 +12,8 @@
xmlns:exsl='http://exslt.org/common',
xmlns:regexp="http://exslt.org/regular-expressions",
xmlns:str="http://exslt.org/strings",
- extension-element-prefixes='exsl regexp str'
+ xmlns:func="http://exslt.org/functions", + extension-element-prefixes='exsl regexp str func'