[svg-developers] Re: Does SVG allow relative positioning of graphical elements?

2005-09-22 Thread Francis Hemsher
Hi Doug, thanks for your comeback...I was involved in stating what my needs were, and posted, before I read this. I will take a different approach in animating size in SVG Tiny 1.2 Francis --- In svg-developers@yahoogroups.com, Doug Schepers [EMAIL PROTECTED] wrote: Hi, Francis- | Do

Re: [svg-developers] Re: Does SVG allow relative positioning of graphical elements?

2005-09-22 Thread Andre M. Winter - Carto.net
hi simon, that limitation of % not being supported in paths and polygon lines is somthing that i found irritating too. in order to achieve what you want you could place your elements in svg-containers (as children of the outermost root one) and place them with x/y/w/h in %. but it really

Re: [svg-developers] SVG on CDMA phones?

2005-09-22 Thread Chris Lilley
On Friday, September 16, 2005, 1:25:15 AM, tbone58x wrote: t I have seen the list of the 56 and counting SVG enabled phones by t visiting the http://www.svg.org web site. However, last I checked t that list did not include any CDMA based phones. t Does anyone know if this will change (will

[svg-developers] Re: very urgent

2005-09-22 Thread arthycharm
hai Garry, thanx for your reply.that was what i expected.but a small note you have helped in the area where in a single groupid you have circles with specific id .but what i have used is every circle will be in induvidual group id .there would be one circle in one groupid.and i have to connect

[svg-developers] Converting HTML to SVG

2005-09-22 Thread Cafer Erbay
Hi all, This is my first day on and first message to this group I am looking for a converter to convert HTML file to SVG file. Does anyone know any way to convert such things. All help is very much appreciated, Regards, Cafer (Greetings from the Netherlands)

[svg-developers] Re: very urgent

2005-09-22 Thread Garry Haywood
--- In svg-developers@yahoogroups.com, arthycharm [EMAIL PROTECTED] wrote: hai Garry, thanx for your reply.that was what i expected.but a small note you have helped in the area where in a single groupid you have circles with specific id .but what i have used is every circle will be in

Re: [svg-developers] Converting HTML to SVG

2005-09-22 Thread Jérôme Tricand de la Goutte
Hi Cafer, I'm afraid there could not be conversion. Both HTML and SVG are derivated from XML, but they represent different data types: HTML is mainly used for text processing, with style, table, forms, and so. SVG is used to represent graphics like rectangles, lines, path, circles. It's true

RE: [svg-developers] Converting HTML to SVG

2005-09-22 Thread Mark Birbeck
Jérôme/Cafer, Jérôme wrote: I'm afraid there could not be conversion. Both HTML and SVG are derivated from XML, but they represent different data types: HTML is mainly used for text processing, with style, table, forms, and so. SVG is used to represent graphics like rectangles, lines,

[svg-developers] Re: Converting HTML to SVG

2005-09-22 Thread Jim Ley
Mark Birbeck [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Jérôme wrote: But maybe if your HTML page show many images, it could be converted to SVG. Otherwise, it doens't worth it. But if HTML can't be 'converted' to SVG, why is everyone complaining that Microsoft has invented its

RE: [svg-developers] Re: Converting HTML to SVG

2005-09-22 Thread Mark Birbeck
Thanks for the links Jim. My interest was more on the application front, rather than a once-only transform. Since SVG is a fine rendering language, there is no reason why it couldn't be the UI layer for applications, including web browsers. So whilst the links you provided give a viewable

[svg-developers] Re: DOM Nodelist whitespace

2005-09-22 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Jonathan Watt [EMAIL PROTECTED] wrote: On 9/21/05, Martin Honnen [EMAIL PROTECTED] wrote: But they are static members of the Node interface, so in both the Java binding and the ECMAScript binding Node.ELEMENT_NODE should work to comply with the W3C

Re: [svg-developers] Re: Converting HTML to SVG

2005-09-22 Thread Robin Berjon
Mark Birbeck wrote: My interest was more on the application front, rather than a once-only transform. Since SVG is a fine rendering language, there is no reason why it couldn't be the UI layer for applications, including web browsers. So whilst the links you provided give a viewable rendition

Re: [svg-developers] Re: Converting HTML to SVG

2005-09-22 Thread Cafer Erbay
Thank for the replying Jim and Mark, I would like to only convert the html with an action to svg. I have in the html images in tables and some text and text on the images. If it is not possible then I will look for any other solution. Thank you very much, Cafer --- Jim Ley [EMAIL PROTECTED]

[svg-developers] SVG Lint? Or a conformance test for content?

2005-09-22 Thread Mike C. Fletcher
Hi all, I'm working on a product that generates SVG graphics. We've been recommending use of the Adobe SVG Viewer where it's available, and Mozilla SVG elsewhere. Since development is done on an AMD64 Linux box, we use Mozilla SVG ourselves. However, we are getting reports from users that one

Re: [svg-developers] SVG Lint? Or a conformance test for content?

2005-09-22 Thread Chris Lilley
On Thursday, September 22, 2005, 11:30:40 PM, Mike wrote: MCF Hi all, MCF I'm working on a product that generates SVG graphics. We've been MCF recommending use of the Adobe SVG Viewer where it's available, and MCF Mozilla SVG elsewhere. Since development is done on an AMD64 Linux box, MCF we

Re: [svg-developers] SVG Lint? Or a conformance test for content?

2005-09-22 Thread Chris Lilley
On Thursday, September 22, 2005, 11:30:40 PM, Mike wrote: MCF Hi all, MCF I'm working on a product that generates SVG graphics. We've been MCF recommending use of the Adobe SVG Viewer where it's available, and MCF Mozilla SVG elsewhere. Since development is done on an AMD64 Linux box, MCF we

Re: [svg-developers] SVG Lint? Or a conformance test for content?

2005-09-22 Thread Mike C. Fletcher
Chris Lilley wrote: On Thursday, September 22, 2005, 11:30:40 PM, Mike wrote: ... MCF My hypothesis is that the AdobeSVG viewer is picking up some unexpected MCF feature/property and isn't able to deal with it, while the MCF Mozilla/KDE/Inkscape engines are slightly more robust in dealing

Re: [svg-developers] SVG Lint? Or a conformance test for content?

2005-09-22 Thread Chris Lilley
On Friday, September 23, 2005, 1:26:57 AM, Mike wrote: MCF Chris Lilley wrote: On Thursday, September 22, 2005, 11:30:40 PM, Mike wrote: MCF ... MCF My hypothesis is that the AdobeSVG viewer is picking up some unexpected MCF feature/property and isn't able to deal with it, while the MCF

Re: [svg-developers] Re: DOM Nodelist whitespace

2005-09-22 Thread Cameron McCormack
Martin Honnen: So for Java it is pretty clear those constants in the IDL interface are static members of the Java interface which means in Java you would access e.g. org.w3c.dom.Node.ELEMENT_NODE or, if you do import org.w3c.dom.*; shorter as Node.ELEMENT_NODE to get at that

Re: [svg-developers] SVG Lint? Or a conformance test for content?

2005-09-22 Thread Mike C. Fletcher
Chris Lilley wrote: On Friday, September 23, 2005, 1:26:57 AM, Mike wrote: MCF Okay, I have now defined a namespace for us (though not yet a DTD for MCF it), A DDTD wouldn't help - combining DTDs for different name spaces is non trivial hackery. I suppose, seems like overkill just to

[svg-developers] Fwd: svg req

2005-09-22 Thread arthy subramanian
Note: forwarded message attached. __ Yahoo! India Matrimony: Find your partner now. Go to http://yahoo.shaadi.com [Non-text portions of this message have been removed] Yahoo! Groups Sponsor

[svg-developers] SVG in the IE6+ASV3+Windows Server: You can't beat me!

2005-09-22 Thread Francis Hemsher
I can greatly exceed the dynamic performance of SVG when it attempts to be significent in any other environment...Try Me. Francis Yahoo! Groups Sponsor ~-- Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.

[svg-developers] re:very urgent

2005-09-22 Thread arthycharm
hai garry, first i would like to thank you for your immediate response. the following is the sample set of code created. =34 r=10 fill=green circle /circle r=10 fill=green circle /circle simlarly i have created 15 circles .suppose if there is linkage connection as follows circle 1 to