tests/traffic_lights/svgui-0@svgui/pyfile.xml
author Schlumpf <schlumpf@kr-ll.de>
Mon, 07 Jan 2019 18:32:03 +0100
branchwx3-fix
changeset 2497 e04824ad26e4
parent 1546 f1840d27823d
permissions -rw-r--r--
Fix an exception on wx-3.0-gtk3 in PLCOpenEditor when generating ST files.

On Python2.7 with WX3.0 and GTK3, an assertionError rises on generating a ST file if the name is already set. The first generation works without problems, if you generate the file a second one, PLCOpenEditor tries to open the file
save dialog with the pre entered name from last run. Then the following assertion pops up:

PyAssertionError: C++ assertion "volDummy.empty() && pathDummy.empty()" failed at ./src/common/filename.cpp(568) in Assign(): the file name shouldn't contain the path

This fix reduces the filepath of the ST file the to the filename. Now it works fine.
1383
45935812f930 Added example of SFC simulating traffic lights
Laurent Bessard
parents:
diff changeset
     1
<?xml version='1.0' encoding='utf-8'?>
45935812f930 Added example of SFC simulating traffic lights
Laurent Bessard
parents:
diff changeset
     2
<PyFile xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
45935812f930 Added example of SFC simulating traffic lights
Laurent Bessard
parents:
diff changeset
     3
  <variables/>
45935812f930 Added example of SFC simulating traffic lights
Laurent Bessard
parents:
diff changeset
     4
  <globals>
1546
f1840d27823d cleanup traffic lights example
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1383
diff changeset
     5
    <xhtml:p><![CDATA[
f1840d27823d cleanup traffic lights example
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1383
diff changeset
     6
/*
f1840d27823d cleanup traffic lights example
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1383
diff changeset
     7
    Web interface is build as SVG file in Inkscape. 
f1840d27823d cleanup traffic lights example
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1383
diff changeset
     8
    To edit SVG file click 'Inkscape' button on the toolbar above.
f1840d27823d cleanup traffic lights example
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1383
diff changeset
     9
    
f1840d27823d cleanup traffic lights example
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1383
diff changeset
    10
    Inkscape is a free and open-source vector graphics editor. 
f1840d27823d cleanup traffic lights example
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1383
diff changeset
    11
    It's not part of Beremiz and needs to be installed separately.
f1840d27823d cleanup traffic lights example
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1383
diff changeset
    12
*/
f1840d27823d cleanup traffic lights example
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1383
diff changeset
    13
f1840d27823d cleanup traffic lights example
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1383
diff changeset
    14
]]></xhtml:p>
1383
45935812f930 Added example of SFC simulating traffic lights
Laurent Bessard
parents:
diff changeset
    15
  </globals>
45935812f930 Added example of SFC simulating traffic lights
Laurent Bessard
parents:
diff changeset
    16
  <init>
1546
f1840d27823d cleanup traffic lights example
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1383
diff changeset
    17
    <xhtml:p><![CDATA[
f1840d27823d cleanup traffic lights example
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1383
diff changeset
    18
]]></xhtml:p>
1383
45935812f930 Added example of SFC simulating traffic lights
Laurent Bessard
parents:
diff changeset
    19
  </init>
45935812f930 Added example of SFC simulating traffic lights
Laurent Bessard
parents:
diff changeset
    20
  <cleanup>
1546
f1840d27823d cleanup traffic lights example
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1383
diff changeset
    21
    <xhtml:p><![CDATA[
f1840d27823d cleanup traffic lights example
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1383
diff changeset
    22
]]></xhtml:p>
1383
45935812f930 Added example of SFC simulating traffic lights
Laurent Bessard
parents:
diff changeset
    23
  </cleanup>
45935812f930 Added example of SFC simulating traffic lights
Laurent Bessard
parents:
diff changeset
    24
  <start>
1546
f1840d27823d cleanup traffic lights example
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1383
diff changeset
    25
    <xhtml:p><![CDATA[
f1840d27823d cleanup traffic lights example
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1383
diff changeset
    26
]]></xhtml:p>
1383
45935812f930 Added example of SFC simulating traffic lights
Laurent Bessard
parents:
diff changeset
    27
  </start>
45935812f930 Added example of SFC simulating traffic lights
Laurent Bessard
parents:
diff changeset
    28
  <stop>
1546
f1840d27823d cleanup traffic lights example
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1383
diff changeset
    29
    <xhtml:p><![CDATA[
f1840d27823d cleanup traffic lights example
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1383
diff changeset
    30
]]></xhtml:p>
1383
45935812f930 Added example of SFC simulating traffic lights
Laurent Bessard
parents:
diff changeset
    31
  </stop>
45935812f930 Added example of SFC simulating traffic lights
Laurent Bessard
parents:
diff changeset
    32
</PyFile>