David Gravereaux wrote:
> Great Job.  Two of the bugs in eeschema that bothered me are now squashed, 
> thank you.
> 
> + SVG plot output didn't draw arcs correctly.
> + SVG output was missing <!DOCTYPE> and an xmlns:svg param in the root <svg> 
> tag
> that caused it not to be showable in firefox.

Looks like I made a couple mistakes in my original bug report.  According to
http://www.w3.org/QA/2002/04/valid-dtd-list.html , it looks like the DOCTYPE
should really be:

 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
        "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd";>

rather than:

 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
        "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd";>

and the xmlns:svg param doesn't need to be there according to the w3c validator,
thanks.

I should really be looking at the source to see if we can use css styles to get
the file size down :)  IOW, schematic lines are brown and a known width, etc., 
so
instead of setting a long style on each <g>,

ie.  style="fill:#000000; fill-opacity:0.0; stroke:#000000; 
stroke-linecap:round;
stroke-linejoin:round; stroke-opacity:1.0; stroke-opacity:1.0; stroke-width:6"

we could just use a css class instead.

-- 
David Gravereaux <[EMAIL PROTECTED]>  Have a cookie:->
You can learn a lot about people by their wallet.
 -- Daniel Will-Harris

Reply via email to