[svg-developers] Re: patched

2005-01-19 Thread mimasa

Please confirm the document.


product.zip: 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-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[svg-developers] Re: image problem when including other SVG files

2005-01-19 Thread Domenico Strazzullo


Hi

the files to embed need to be parsed for the fonts to be loaded. You 
need to insert a little script in fonttest.svg:



See also other small changes in file for this to work. The working 
folder "fonttest_rev.zip" has been uploaded. I haven't tried to make 
it work with the  element. I used  instead.

Domenico


--- In svg-developers@yahoogroups.com, "Katherine  Maguire" 
<[EMAIL PROTECTED]> wrote:
> 
> Hi
> 
> We include other svg files using the image tag, the fonts in the 
> external file are not loaded.
> 
>  xlink:href="457096_266874.svg" id="_H00495660NL"/>
> 
> When viewing the fonttest.svg, the symbol fonts are shown as 
normal 
> charactors instead of symbols.
> 
> Does anyone know why this does not work, when 457096_266874.svg is 
> viewed in IE by itself it views correctly but as part of 
fonttest.svg 
> it views which incorrect fonts.
> 
> I have uploaded fonttest.zip, which contains fonttest.svg and 
> 457096_266874.svg plus fonts.
> 
> Thank you
> 
> Katherine





-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[svg-developers] Re: FYI: Solution to C++ integration and ASV3.0

2005-01-19 Thread MH


Thanks Shreesh, that was very helpful. I have scratched my head for 
ages wondering why setAttribute didn't work from my c++ code. I put 
it on the TODO list and moved on, so thanks for solving it for me.

Cheers





-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[svg-developers] Re: Embedding images from a database?

2005-01-19 Thread TJ


When you say "redirect to it..." are you assuming the images still
reside on a web server some place?  Or am I missing the point of what
you are suggesting?

The goal is to get rid of the necessity of a web server all together.
 I am developing an application that needs to connect to a MySql
database.  Currently the only reason we are running a web server is to
host the images we embed in some svg we generate and view within the
application.

I am just looking for a way to get rid of the web server and host the
images in the MySql database and still be able to view them by linking
through an image tag in svg, or even by linking in html.

Thank you for the help, I really appreciate it.  If you need me to
clarify the question furhter please ask.

Thank you,
TJ  

--- In svg-developers@yahoogroups.com, "Peter Kalev" <[EMAIL PROTECTED]>
wrote:
> How about a call to a file on the server that will find the right
image
> based on information from the DB and redirect to it...
> 
> Peter Kalev
> Senior Developer,
> SWF, LLC
> 
> 
> -Original Message-
> From: TJ [mailto:[EMAIL PROTECTED] 
> Sent: Wednesday, January 19, 2005 11:07 AM
> To: svg-developers@yahoogroups.com
> Subject: [svg-developers] Embedding images from a database?
> 
> 
> 
> Hello,
> 
> Please excuse me if this is a bit off topic, or has been covered
> elsewhere.  I have searched the archives but was unsuccessful.
> 
> I am embedding images into svg using the image tag.  The images are
> stored on a web server.  For example it is typicial to see something
> like this in my svg.
>  xlink:href="www.mydomain.com/myImage.gif"/>
> 
> I would actually like to be able to store my images in a MySql
> database rather than in a web directory.  Is there anyway to link an
> image, stored as a BLOB perhaps, in a database to my image tag.  So
> for example:
> 
> 
> I am not too familiar with MySql.  Any suggestions welcome.
> 
> Thank you,
> TJ
> 
> 
> 
> 
> 
> -
> To unsubscribe send a message to:
> [EMAIL PROTECTED]
> -or-
> visit http://groups.yahoo.com/group/svg-developers and click "edit
my
> membership"
>  
> Yahoo! Groups Links





-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





RE: [svg-developers] Re: Embedding images from a database?

2005-01-19 Thread Randy George

Hi,

Try this:

http://host:port/webapp/servlet/ImageLookup?image=imagename.jpg";
/>

You need to furnish your own ImageLookup servlet to return the appropriate
JDBC query result with a response.setContentType("image/jpeg");


-Original Message-
From: TJ [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, January 19, 2005 1:04 PM
To: svg-developers@yahoogroups.com
Subject: [svg-developers] Re: Embedding images from a database?



When you say "redirect to it..." are you assuming the images still
reside on a web server some place?  Or am I missing the point of what
you are suggesting?

The goal is to get rid of the necessity of a web server all together.
 I am developing an application that needs to connect to a MySql
database.  Currently the only reason we are running a web server is to
host the images we embed in some svg we generate and view within the
application.

I am just looking for a way to get rid of the web server and host the
images in the MySql database and still be able to view them by linking
through an image tag in svg, or even by linking in html.

Thank you for the help, I really appreciate it.  If you need me to
clarify the question furhter please ask.

Thank you,
TJ  

--- In svg-developers@yahoogroups.com, "Peter Kalev" <[EMAIL PROTECTED]>
wrote:
> How about a call to a file on the server that will find the right
image
> based on information from the DB and redirect to it...
> 
> Peter Kalev
> Senior Developer,
> SWF, LLC
> 
> 
> -Original Message-
> From: TJ [mailto:[EMAIL PROTECTED] 
> Sent: Wednesday, January 19, 2005 11:07 AM
> To: svg-developers@yahoogroups.com
> Subject: [svg-developers] Embedding images from a database?
> 
> 
> 
> Hello,
> 
> Please excuse me if this is a bit off topic, or has been covered
> elsewhere.  I have searched the archives but was unsuccessful.
> 
> I am embedding images into svg using the image tag.  The images are
> stored on a web server.  For example it is typicial to see something
> like this in my svg.
>  xlink:href="www.mydomain.com/myImage.gif"/>
> 
> I would actually like to be able to store my images in a MySql
> database rather than in a web directory.  Is there anyway to link an
> image, stored as a BLOB perhaps, in a database to my image tag.  So
> for example:
> 
> 
> I am not too familiar with MySql.  Any suggestions welcome.
> 
> Thank you,
> TJ
> 
> 
> 
> 
> 
> -
> To unsubscribe send a message to:
> [EMAIL PROTECTED]
> -or-
> visit http://groups.yahoo.com/group/svg-developers and click "edit
my
> membership"
>  
> Yahoo! Groups Links





-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my
membership"
 
Yahoo! Groups Links



 





-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





RE: [svg-developers] JSP Tomcat SVG and IE

2005-01-19 Thread Barend Köbben

I had the same problem sometimes, and found that

<%@ page contentType="image/svg+xml" %>


resulted in the first line of the output being empty, while IE (And others) 
always want the line

as the very first line.

In my case putting it as


<%response.setContentType("image/svg+xml");%>

helped, but reading this list for already some time I have gotten the 
impression that IE in its many incarnations is somewhat instable in its 
behaviour...



Barend Köbben
International Institute for Geo-information Sciences and  Earth Observation 
(ITC)
PO Box 6, 7500AA Enschede (The Netherlands)
ph: +31 (0)53 4874253; fax: +31 (0)53 4874335 
_


-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





RE: [svg-developers] Embedding images from a database?

2005-01-19 Thread Peter Kalev

How about a call to a file on the server that will find the right image
based on information from the DB and redirect to it...

Peter Kalev
Senior Developer,
SWF, LLC


-Original Message-
From: TJ [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, January 19, 2005 11:07 AM
To: svg-developers@yahoogroups.com
Subject: [svg-developers] Embedding images from a database?



Hello,

Please excuse me if this is a bit off topic, or has been covered
elsewhere.  I have searched the archives but was unsuccessful.

I am embedding images into svg using the image tag.  The images are
stored on a web server.  For example it is typicial to see something
like this in my svg.


I would actually like to be able to store my images in a MySql
database rather than in a web directory.  Is there anyway to link an
image, stored as a BLOB perhaps, in a database to my image tag.  So
for example:


I am not too familiar with MySql.  Any suggestions welcome.

Thank you,
TJ





-
To unsubscribe send a message to:
[EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my
membership"
 
Yahoo! Groups Links



 





-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[svg-developers] Embedding images from a database?

2005-01-19 Thread TJ


Hello,

Please excuse me if this is a bit off topic, or has been covered
elsewhere.  I have searched the archives but was unsuccessful.

I am embedding images into svg using the image tag.  The images are
stored on a web server.  For example it is typicial to see something
like this in my svg.


I would actually like to be able to store my images in a MySql
database rather than in a web directory.  Is there anyway to link an
image, stored as a BLOB perhaps, in a database to my image tag.  So
for example:


I am not too familiar with MySql.  Any suggestions welcome.

Thank you,
TJ





-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [svg-developers] SVG Date Picker

2005-01-19 Thread Antoine Quint

On 19 janv. 2005, at 18:30, renatonow wrote:

> Does anyone know of a free SVG Date Picker control available?. The
> reason is that I want to preserve a pure svg-javascript code without
> html.
>
> I've been googling looking for it but I was no lucky. Please let me
> know if you know any good source.

You can take a look at http://svg.org/story/2004/06/06/150647/00, 
although these use non-standard pre-release features from ASV6. You 
should be able to write it in pure SVG 1.1 and DOM-scripting though.

Antoine
-- 
Antoine Quint <[EMAIL PROTECTED]>
W3C Invited Expert (SVG and CDF)
SVG Consulting and Outsourcing
http://svg.org/user/uid:2/diary



[Non-text portions of this message have been removed]



-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[svg-developers] SVG Date Picker

2005-01-19 Thread renatonow


Hi All:

Does anyone know of a free SVG Date Picker control available?. The 
reason is that I want to preserve a pure svg-javascript code without 
html.

I've been googling looking for it but I was no lucky. Please let me 
know if you know any good source.

Thank you very much in advance,

Renato F. Salas





-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[svg-developers] Re: SVG Editor with animation capability

2005-01-19 Thread sara_j_porter


Welcome to the group and SVG.

I'm not a coder, programmer, or developer either.  My experiences 
have been with Illustrator (best for detailed vector illustrations) 
and Mobile Designer (best for support questions, mobile output and 
animation).  Personally I feel that Beatware (the folks who 
created/sell Mobile Designer) are incredibly helpful and SVG 
evangelistic (in a good way).

Sara Porter

I find that the best
--- In svg-developers@yahoogroups.com, "forkinpatrick" 
<[EMAIL PROTECTED]> wrote:
> 
> Hallo!
> I'm new to the group and relatively new to SVG.
> I'm not a programmer or developer.
> Building a web-site with many presentations I have decided on SVG 
as 
> an alternative to conventional data formats. 
> I'm experimenting with SKETSA from kiyut.com and EVE and would like 
> to try the pro editor from Virtual Mechanics.
> 
> Are there any users of these products who would like to share 
> experience or give advice?
> 
> Are ther any users of other useful SVG editors with animation 
> capability able to offer advice / guidance?
> 
> Thanks. pmf.





-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [svg-developers] Re: text-anchor:middle in Adobe Illustrator 10

2005-01-19 Thread engineering

Sorry - I didn't realize there were any responses to my message.

In Illustrator 10, I had to use align left and set the left side of the
text where I would like the center to be.  Then I added (in Illustrator)
some onload Javascript to the text which sets text-anchor="middle".

example:

onload="setStyleProp(evt, 'text-anchor', 'middle');"

function setStyleProp(mouseEvent, property, setting)
{
var tgt = mouseEvent.getTarget();
tgt.getStyle().setProperty(property, setting, null);
}

Thanks for the responses.

On Tue, 2005-01-18 at 12:16, sara_j_porter wrote:
> Can you give us an example of the image?
> 
> -Sara Porter
> 
> --- In svg-developers@yahoogroups.com, "wsdickerson" 
> <[EMAIL PROTECTED]> wrote:
> > 
> > Is there a way to set text-anchor="middle", "start" or "end" in 
> > Illustrator 10?  I've tried paragraph align left, center and right 
> > but the text is left aligned in the SVG.  I'm dynamically 
> > changing "0%"..."100%" etc. and would like for the text to stay 
> > center aligned.  I had to manually insert text-anchor="middle" and 
> > adjust the x position - then it looked OK in Batik.
> > 
> > 
> > Thanks
> 
> 
> 
> 
> 
> -
> To unsubscribe send a message to:
> [EMAIL PROTECTED]
> -or-
> visit http://groups.yahoo.com/group/svg-developers and click "edit my
> membership"
> 
> 
> 
> 
> __
> Yahoo! Groups Links
>   * To visit your group on the web, go to:
> http://groups.yahoo.com/group/svg-developers/
>   
>   * To unsubscribe from this group, send an email to:
> [EMAIL PROTECTED]
>   
>   * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> Service.
  * -- 
Stan Dickerson
Product Development Engineer
Energy Control Systems
2940 Cole Court
Norcross, GA 30071

1-800-648-0970
770-448-0651
770-446-1319 fax



-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [svg-developers] pseudo LOD

2005-01-19 Thread "André M. Winter - Carto.net"

bonjour pierre,

the outermost svg tag in ASV has the properies innerWidth and 
innerHeight (you may call them with 
onload="myFunc(this,innerWidth,innerHeight);"). those values give you 
the extent of the canvas in px in whatever the plugin gets loaded.

on the other hand you have your initial viewBox width and height. those 
give you your drawing size in drawing units. with the pixels from above 
you get a scale (-figure).

when the user zooms around, you can track this with the onzoom-event in 
the outermost svg tag. onlaod the value always is 1. as long as you do 
not touch the viewBox (re-inits onzoom with 1), onzoom always gives you 
a correct value of the actual zoom level.

andré

-- 
___
andre m. winter,
  SVG consulting and development
  online cartography focusing on SVG
 print and online touristic map solutions 





Bru, Pierre wrote:

>AFAIK, there is no provision for level of detail (LOD) in SVG. I can
>simultate it with by hidding thin elements at large scale and showing
>them as needed. but... how can I know how much zoom is currently used
>(say with ASV) ?
> 
>TIA,
>Pierre.
>
>
>[Non-text portions of this message have been removed]
>
>
>
>-
>To unsubscribe send a message to: [EMAIL PROTECTED]
>-or-
>visit http://groups.yahoo.com/group/svg-developers and click "edit my 
>membership"
> 
>Yahoo! Groups Links
>
>
>
> 
>
>
>
>  
>




-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[svg-developers] pseudo LOD

2005-01-19 Thread Bru, Pierre

AFAIK, there is no provision for level of detail (LOD) in SVG. I can
simultate it with by hidding thin elements at large scale and showing
them as needed. but... how can I know how much zoom is currently used
(say with ASV) ?
 
TIA,
Pierre.


[Non-text portions of this message have been removed]



-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[svg-developers] Re: image problem when including other SVG files

2005-01-19 Thread Katherine Maguire


--- In svg-developers@yahoogroups.com, "Katherine  Maguire" 
Also when I have the following SVG,










The ellipse appears plus the circle but the square inside the circle 
does not, using ASV6

circle svg












rect svg









Does anyone know anything about this?

<[EMAIL PROTECTED]> wrote:
> 
> Hi
> 
> We include other svg files using the image tag, the fonts in the 
> external file are not loaded.
> 
>  xlink:href="457096_266874.svg" id="_H00495660NL"/>
> 
> When viewing the fonttest.svg, the symbol fonts are shown as normal 
> charactors instead of symbols.
> 
> Does anyone know why this does not work, when 457096_266874.svg is 
> viewed in IE by itself it views correctly but as part of 
fonttest.svg 
> it views which incorrect fonts.
> 
> I have uploaded fonttest.zip, which contains fonttest.svg and 
> 457096_266874.svg plus fonts.
> 
> Thank you
> 
> Katherine





-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[svg-developers] image problem when including other SVG files

2005-01-19 Thread Katherine Maguire


Hi

We include other svg files using the image tag, the fonts in the 
external file are not loaded.



When viewing the fonttest.svg, the symbol fonts are shown as normal 
charactors instead of symbols.

Does anyone know why this does not work, when 457096_266874.svg is 
viewed in IE by itself it views correctly but as part of fonttest.svg 
it views which incorrect fonts.

I have uploaded fonttest.zip, which contains fonttest.svg and 
457096_266874.svg plus fonts.

Thank you

Katherine







-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[svg-developers] Re: Map with moving objects

2005-01-19 Thread Heiko Niemann


Hello Hans,

there is a sample plus download at www.zuccaralloo.de/devgroup - 
direct link:

http://www.zuccaralloo.de/devgroup/samples/movingObjects.svg 

It uses random data generated by a php script, the real data could 
be sent on a similar way though. Move over objects to show tooltip. 
No zooming of the map yet :)

Regards-
-Heiko


--- In svg-developers@yahoogroups.com, " Hans M. Rupp"  wrote:
> Hallo! I am a complete newbie to SVG. I want to evaluate if I can 
use it
> in an upcoming project.
> I need to display a map on a client (ideally just a browser or a 
browser
> with a plug-in). On the map the position of moving objects
> should be displayed. Their position should be updated every second.
> Is it possible with SVG to separate the map data from the data of 
the
> moving objects?
> Ideally the map should only be transmitted once each session to the
> client.
> The map should be zoomable, without sending a request.
> The position of the moving objects should be requested 
independently
> from the map.
> 
> Is this possible?
> 
> Thanks,
> 
> Hans





-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[svg-developers] JSP Tomcat SVG and IE

2005-01-19 Thread Hans M. Rupp

Hi!
How do convince IE 6 to display SVG generated by JSPs on Tomcat (4.1)

The JSP  is
--

<%@ page contentType="image/svg+xml" %>

http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd";>
http://www.w3.org/2000/svg"; width="100%" height="100%">
 
  
 
 
  
 

-
I have added the mime-type to the web.xml:


svg
image/svg+xml


The IE only displays the resulting XML.
When I open an *.svg file locally in IE everything works fine.
Any ideas?

Thanks,

Hans





-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [svg-developers] Map with moving objects

2005-01-19 Thread Jérôme Tricand de la Goutte

Hello Hans,

To do that, you'd better search Google, or the SVG-developpers group 
archive for getURL.


But here is what I propose to you:

...
your map
...



But there are limitations:
- your XML data must be ONE object, not more. But this object can 
contain childs. For example, if you want to transfer many svg data, put 
all of them in a single  element.
- if your not transfering svg data but other XML data, you will have to 
use namespaces.
- if you want to transfer javascript , just replace "var node = 
parseXML(string, document);" "by eval(string)"


Hope it helps

Jerome



Hans M. Rupp wrote:

>Hallo Jerome!
>
>Thanks for your kind answer.
>Meanwhile I have looked into SVG basics and even figured out how to add
>elements by dom-manipulation and scripting :-)
>However I still have not figured out how I can send a request from
>javascript and parse the response without reloading the page.
>As you have probably figured out I have not done much client-side
>scripting yet :-(
>
>  
>
>>>In this Javascriot, there are specific functions like, for this
>>>  
>>>
>example, getURL.
>getURL downloads any XML datas from a server.
>
>  
>
>>>So, for your project, you can, at first display the blank map, then,
>>>  
>>>
>every
>second, ask the server for the new positions of your mobiles, then
>display them
>on your map.
>
>I would be very grateful when you could push a bit further in the right
>direction.
>
>Thanks,
>
>Hans
>
>
>
>
>
>-
>To unsubscribe send a message to: [EMAIL PROTECTED]
>-or-
>visit http://groups.yahoo.com/group/svg-developers and click "edit my 
>membership"
> 
>Yahoo! Groups Links
>
>
>
> 
>
>
>
>  
>


-- 
Jérôme Tricand de la Goutte

Société Logatique
50 rue Marcel Dassault
92100 Boulogne-Billancourt

01 46 21 59 59



-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/