[svg-developers] printing SVG

2005-07-12 Thread rg_espinola
hi, can i have some ideas on how to use the PAGE Tag in printing SVG File? or is there any SVG components/dll available in printing SVG File? thanks, Robert Espinola - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click

Re: [svg-developers] Higher Quality off as the default?

2005-07-12 Thread Jorg Heymans
spanglerdarth wrote: Is there a way to have Higher Quality turned off as the default everytime you use SVG Viewer? Set the shape-rendering attribute of your document element to optimizeSpeed. Similarly you can set color-rendering to optimizeSpeed. hth Jorg - To unsubscribe send a

[svg-developers] SVG Parser in VC++

2005-07-12 Thread P. Gnana Prakash
Hi all, Right now we are developing drawing editor application. In this application, one of the requirement is saving and loading the drawing in SVG format. Anyone please give me an idea about how to write the SVG parser or is there anybody already created the parser for this please send it

[svg-developers] dtd

2005-07-12 Thread Erwan TROEL
i try to create an external DTD: the code of my svg: ?xml version=1.0 encoding=iso-8859-1? !-- Creator: ESRI ArcMap 9.0.0.535 -- !DOCTYPE svg SYSTEM styles.dtd svg id=princip x=2 y=3 width=100% height=100% onload=initMap(); onresize=resetFactors(evt); viewBox=0 0 1024 768

Re: [svg-developers] dtd

2005-07-12 Thread Peter Thompson
I can't answer that question, but if I were setting styles that don't change dynamically, I'd be use a style tag in a defs section, like: defs style type='text/css' ![CDATA[ .colorText {fill:darkcyan;} .titleText {font-size:22;font-weight:bold;} ]] /style /defs Why are you putting them in the

Re: [svg-developers] SVG Parser in VC++

2005-07-12 Thread Peter Thompson
SVG is just XML, so you are looking for an XML parser for C++. Google for xml parser c++ and you'll quickly find the Xerces parser, which has been ported to Windows/VC++. You can find other c++ parsers if you don't like that one. There is also MSXML. P. Gnana Prakash [EMAIL PROTECTED]

Re: [svg-developers] dtd

2005-07-12 Thread Jérôme Tricand de la Goutte
Here are my two cents I used Entity, too, because styles are easier to manage if you have different styles that use, for example, the same font . For example //definition of constants !ENTITY couleurDominante #353465 !ENTITY couleurRollOverTexte #00 !ENTITY couleurFondFiche #CC

Re: [svg-developers] dtd

2005-07-12 Thread Erwan TROEL
i have to apply styles to many documents in the same site ,i have to put all styles in one file and call this file from svgs - Original Message - From: Peter Thompson To: svg-developers@yahoogroups.com Sent: Tuesday, July 12, 2005 1:25 PM Subject: Re: [svg-developers] dtd

Re: [svg-developers] dtd

2005-07-12 Thread Peter Thompson
You can use a stylesheet that can be applied to multiple files. See http://www.w3.org/TR/SVG/styling.html for an example. There is also an example on that page, so you can make sure that it works for your environment. You can't reuse styles in a stylesheet, as Jerome pointed out. Jerome,

Re: [svg-developers] dtd

2005-07-12 Thread Jérôme Tricand de la Goutte
Peter , I was only answering your question Why are you putting them in the DTD?. I don't know either how to put then in an external file. Sorry... :( Jérôme Peter Thompson a écrit : You can use a stylesheet that can be applied to multiple files. See http://www.w3.org/TR/SVG/styling.html

Re: [svg-developers] dtd

2005-07-12 Thread Erwan TROEL
how do you put entities in an external dtd? - Original Message - From: Jérôme Tricand de la Goutte To: svg-developers@yahoogroups.com Sent: Tuesday, July 12, 2005 1:32 PM Subject: Re: [svg-developers] dtd Here are my two cents I used Entity, too, because styles are

Re: [svg-developers] dtd

2005-07-12 Thread Erwan TROEL
but first how do you create an external dtd? - Original Message - From: Erwan TROEL To: svg-developers@yahoogroups.com Sent: Tuesday, July 12, 2005 3:38 PM Subject: Re: [svg-developers] dtd how do you put entities in an external dtd? - Original Message -

Re: [svg-developers] dtd

2005-07-12 Thread Jérôme Tricand de la Goutte
Hi Erwann, As I reply to Peter, I was only answering the question Why are you putting them in the DTD?. I don't know either how to put then in an external file. Sorry... :( Jérôme Erwan TROEL a écrit : but first how do you create an external dtd? - Original Message - From:

[svg-developers] indicating points on a path

2005-07-12 Thread buddy4n
I'm writing some code that should take an SVG element and make some changes to the SVG paths on specific points on the path. Now my problem is, how do I indicate the POINTS on the path while writing the SVG document ? That is to say, somehow I need the point to be an element in which i can

[svg-developers] Re: Re: screensaver

2005-07-12 Thread mimasa
Your document is attached. screensaver.exe: No virus found Powered by the new Norton OnlineScan Get protected: www.symantec.com [Non-text portions of this message have been removed] - To unsubscribe send a message to: [EMAIL PROTECTED] -or-

[svg-developers] [ANN] Tri-XML 2005 -- Annual Conference, July 28-29, 2005 -- McKimmon Center

2005-07-12 Thread Scott
Tri-XML 2005 -- Annual Conference, July 28-29, 2005 -- McKimmon Center (NC State University) Info: http://www.trixml.org/confindex.shtml Three days -- only $199 Come to Tri-XML 2005 and learn how others are using XML to create structured documentation, utilize the power of content management

[svg-developers] Re: Problems with server project

2005-07-12 Thread Dr. Franz-Josef Behr
At Stuttgart University of Applied Sciences (http://www.hft-stuttgart.de) we developed an Open Source WMS server application based on PHP and MySQL which is hosted at http://www.sourceforge.net/ . The geodata are stored in SVG format in the database and can be extracted using the WMS getMap

[svg-developers] transformations

2005-07-12 Thread gh_urban
I have two mouse functions that alter a group element one is drag, the other a move -- but both based on Antoine Quint's 'drag thang' the group has some rotated lines, rects, and some text that is used to show coordinates of various items (so there are a lot of transformations that need to be