Fix Bug 577940

This commit is contained in:
schiller 2010-05-09 15:32:21 -05:00
parent 5e97247f98
commit 40aa6cd54a
2 changed files with 6 additions and 4 deletions

View file

@ -17,6 +17,7 @@
<ul> <ul>
<li>Fix <a href="https://bugs.launchpad.net/scour/+bug/541889">Bug 541889</a> to parse polygon/polyline points missing whitespace/comma separating a negative value. Always output points attributes as comma-separated.</li> <li>Fix <a href="https://bugs.launchpad.net/scour/+bug/541889">Bug 541889</a> to parse polygon/polyline points missing whitespace/comma separating a negative value. Always output points attributes as comma-separated.</li>
<li>Fix <a href="https://bugs.launchpad.net/scour/+bug/519698">Bug 519698</a> to properly parse move commands that have line segments.</li> <li>Fix <a href="https://bugs.launchpad.net/scour/+bug/519698">Bug 519698</a> to properly parse move commands that have line segments.</li>
<li>Fix <a href="https://bugs.launchpad.net/scour/+bug/577940">Bug 577940</a> to include stroke-dasharray into list of style properties turned into XML attributes.</li>
</ul> </ul>
</section> </section>
@ -225,7 +226,7 @@
<li>Convert lines to horiz/vertical line segments where possible</li> <li>Convert lines to horiz/vertical line segments where possible</li>
<li>Remove some more default styles (display:none, visibility:visible, overflow:visible, <li>Remove some more default styles (display:none, visibility:visible, overflow:visible,
marker:none)</li> marker:none)</li>
</ul> </ul>
</section> </section>
<section id="0.09"> <section id="0.09">
@ -239,7 +240,7 @@
<li>Added option to prevent group collapsing</li> <li>Added option to prevent group collapsing</li>
<li>Prevent groups with title/desc children from being collapsed</li> <li>Prevent groups with title/desc children from being collapsed</li>
<li>Remove stroke="none"</li> <li>Remove stroke="none"</li>
</ul> </ul>
</section> </section>
<section id="0.08"> <section id="0.08">
@ -251,7 +252,7 @@
<li>Remove unnecessary nested &lt;g&gt; elements</li> <li>Remove unnecessary nested &lt;g&gt; elements</li>
<li>Remove duplicate gradient stops (same offset, stop-color, stop-opacity)</li> <li>Remove duplicate gradient stops (same offset, stop-color, stop-opacity)</li>
<li>Always keep fonts inside &lt;defs&gt;, always keep ids on fonts</li> <li>Always keep fonts inside &lt;defs&gt;, always keep ids on fonts</li>
<li>made ID stripping optional (disabled by default)</li> <li>made ID stripping optional (disabled by default)</li>
</ul> </ul>
</section> </section>
@ -303,7 +304,7 @@
</ul></li> </ul></li>
<li>Convert style properties into SVG attributes</li> <li>Convert style properties into SVG attributes</li>
</ul> </ul>
</section> </section>
</body> </body>

View file

@ -115,6 +115,7 @@ svgAttributes = [
'stop-color', 'stop-color',
'stop-opacity', 'stop-opacity',
'stroke', 'stroke',
'stroke-dasharray',
'stroke-dashoffset', 'stroke-dashoffset',
'stroke-linecap', 'stroke-linecap',
'stroke-linejoin', 'stroke-linejoin',