On Thu, 2008-03-06 at 07:08 -0600, Aaron Spike wrote:
The inx file would seem to indicate that a value of 0 for max is unallowed. Are these constraints no longer enforced? When you run add nodes do are you passing 0 for the parameter?
<param name="max" type="float" min="0.1" max="10000.0" _gui-text="Maximum segment length (px)">10.0</param>
No, I think no parameter was getting passed. This was why the virtual patch fixed this, makes sense.
and with Dimensions I get:
/home/ted/Development/inkscape.work/install/share/inkscape/extensions/dimension.py:60: TagNameWarning: Tag names must not contain ':', lxml 2.0 will enforce well-formed tag names as required by the XML specification. marker.set('inkscape:stockid', name)
Aaron, do you have any ideas on what these could be caused by?
This is a real error in the script: marker.set('inkscape:stockid', name) should be: marker.set(inkex.addNS('stockid','inkscape'), name)
Is this something that should go in 0.46?
--Ted