Browse Source

Create svg template

DricomDragon 5 years ago
parent
commit
d8ceaf6858

+ 9 - 0
logoPlayer/galgas-sources/logoPlayer-semantics.galgas

@@ -74,3 +74,12 @@ override method @forward codeDisplay
     ioY = y
 }
 
+# Declare svg template
+filewrapper generationTemplate in "." {
+}
+{}
+{
+    template svg "logoPlayer-svg.galgasTemplate"
+    ?@string TITLE
+    ?@string DRAWINGS
+}

+ 7 - 0
logoPlayer/galgas-sources/logoPlayer-svg.galgasTemplate

@@ -0,0 +1,7 @@
+<? xml version="1.0" standalone="no" ?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
+"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg width="100\%" height="100\%" version="1.1" xmlns="http://www.w3.org/2000/svg">
+    <title>%!TITLE%</title>
+    %!DRAWINGS%
+</svg>