svghmi/gen_index_xhtml.ysl2
branchsvghmi
changeset 2793 2a97688c94c5
parent 2792 0c0d3895b036
child 2794 c10069a02ed0
--- 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 */
             xmlns:ns="beremiz"
-            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 */
     template "/" { 
+        comment > Made with SVGHMI. https://beremiz.org
         html xmlns="http://www.w3.org/1999/xhtml" {
             head;
             body style="margin:0;" {
@@ -105,6 +106,40 @@
         }
     }
 
+    func:function name="func:parselabel" {
+        param "label";
+        const "description", "substring-after($label,'HMI:')";
+
+        const "_args", "substring-before($description,'@')";
+        const "args" choose {
+            when "$_args" value "$_args";
+            otherwise value "$description";
+        }
+
+        const "_type", "substring-before($args,':')";
+        const "type" choose {
+            when "$_type" value "$_type";
+            otherwise value "$args";
+        }
+
+        const "ast" if "$type" widget {
+            attrib "type" > «$type»
+            foreach "str:split($args, ':')" {
+                arg {
+                    attrib "value" > «.»
+                }
+            }
+            const "paths", "substring-after($description,'@')";
+            foreach "str:split($paths, '@')" {
+                path {
+                    attrib "value" > «.»
+                }
+            }
+        }
+
+        func:result select="exsl:node-set($ast)"
+    }
+
     function "scripts"
     {
         /* TODO : paste hmitree hash stored in hmi tree root node */
@@ -154,10 +189,10 @@
         | var page_desc = {
 
         // apply "//*[substring-after(substring-before(@inkscape:label, '@'), 'HMI'
-        foreach "//*[starts-with(@inkscape:label,'HMI:')]" {
+        foreach "//*[func:parselabel(@inkscape:label)/widget/@type = 'Page']" {
             | «@inkscape:label»
-            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 @@
             path value="path2";
         }
     */
-    function "parse_label" {
-        param "label";
-        const "description", "substring-after($label,'HMI:')";
-
-        const "_args", "substring-before($description,'@')";
-        const "args" choose {
-            when "$_args" value "$_args";
-            otherwise value "$description";
-        }
-
-        const "_type", "substring-before($args,':')";
-        const "type" choose {
-            when "$_type" value "$_type";
-            otherwise value "$args";
-        }
-
-        if "$type" widget {
-            attrib "type" > «$type»
-            foreach "str:split($args, ':')" {
-                arg {
-                    attrib "value" > «.»
-                }
-            }
-            const "paths", "substring-after($description,'@')";
-            foreach "str:split($paths, '@')" {
-                path {
-                    attrib "value" > «.»
-                }
-            }
-        }
-    }
 
     template "*", mode="page_desc" {
     }