[svg-developers] Clicking on the browser's back button crashes our SVG tool in IE7

2008-11-17 Thread xuemei liu

Dear SVG-Developers:
 
I got a problem with our SVG tool in IE7, while the tool works fine in IE6. Our 
tool points to several links which are supposed to get opened on the current 
browser window. When we click back button more than twice, the IE crashed 
without any error message. Did anyone experience the same problem? Any 
suggestion is welcome and appreciated. 
 
Thanks,
 
Xuemei 
_
See how Windows® connects the people, information, and fun that are part of 
your life
http://clk.atdmt.com/MRT/go/119463819/direct/01/

[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/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: other things you might not have the time for

2008-11-17 Thread Jake Beard
David, something that might be of interest to your project:

http://www.stumbleupon.com/toolbar/#topic=Animation&url=http%25253A%25252F%25252Fwww.gskinner.com%25252Fblog%25252Fassets%25252FInteractiveElm.html

A really beautiful example of animated tree budding, unfortunately
implemented in flash.

Jake

On Mon, Oct 27, 2008 at 5:49 AM, ddailey <[EMAIL PROTECTED]> wrote:
> Yes, perfect!
>
> thanks
> David
>
> - Original Message -
> From: Andreas Neumann
> To: svg-developers@yahoogroups.com
> Sent: Monday, October 27, 2008 4:27 AM
> Subject: [svg-developers] Re: other things you might not have the time for
>
> Hi David,
>
> not sure I fully understand your requirement. Are you looking for a
> progressive drawing of a path geometry? If yes, you can do this by
> animating the stroke-dash of a path.
>
> Here are 2 examples:
> http://www.carto.net/papers/svg/samples/animated_bustrack.shtml
> and
> http://pilat.free.fr/english/animer/france.htm
>
> Andreas
>
> --- In svg-developers@yahoogroups.com, "ddailey" <[EMAIL PROTECTED]> wrote:
>>
>> I will hope Frank finds the time to do the things he's talking
> about -- they all sound quite worthwhile.
>>
>> I, on the other hand, have been playing a bit more:
>>
>> http://srufaculty.sru.edu/david.dailey/svg/followpath6.svg
>>
>> You'll need SMIL support and JavaScript in your SVG to see it, but
> it's only 100 lines of code so it can be comprehended with a large
> glance.
>>
>> In the long run, a student and I are interested in animating the
> growth of a tree, but I wanted to get a simple context sensitive
> theory of budding. I've slowed down the budding so the brambles don't
> surround the castle too quickly. It might be nice to use a
> Lindenmeyer system (sort of a Chomskian grammar in parallel) to
> generate the budding, but for now it's just branch --> branch +
> branch, and there is no biophysics (other than edge avoidance).
>>
>> Any clever ideas on how to reveal the shape of a Bezier curve
> gradually -- namely to draw it as it is being traversed by an
> animation?
>>
>> cheers
>> David
>>
>> [Non-text portions of this message have been removed]
>>
>
> [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/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: getBBox with transformations

2008-11-17 Thread malutanpetronel
The following excample I've tried :

http://www.w3.org/2000/svg"; 
xmlns:xlink="http://www.w3.org/1999/xlink";
 id="SVGtest"
 viewBox="0 0 1300 1300"
>

function TalkToSVG(){
if (top.document.embeds !== undefined) {
   var svgdoc = top.document.embeds[0].getSVGDocument();
} else {
   var svgdoc = top.document;
}
  var targetElement = svgdoc.getElementById("colorRect");
  targetElement.setAttribute("fill", "orange");
}

function getBB(){
if (top.document.embeds !== undefined) {
   var svgdoc = top.document.embeds[0].getSVGDocument();
} else {
   var svgdoc = top.document;
}
   
   var id = "grp_ref_11";
 var targetElement = svgdoc.getElementById(id);
   var bbox = targetElement.getBBox();
   var svgns = 'http://www.w3.org/2000/svg';

   var outline = svgdoc.createElementNS(svgns, 'rect');
   outline.setAttributeNS( null, 'x', bbox.x - 2);
   outline.setAttributeNS( null, 'y', bbox.y - 2 );
   outline.setAttributeNS( null, 'width',  bbox.width + 4 );
   outline.setAttributeNS( null, 'height', bbox.height + 4 );
   outline.setAttributeNS( null, 'stroke', 'blue' );
   outline.setAttributeNS( null, 'fill', 'yellow' );

   CTM = svgdoc.getElementById(id).getCTM()
   CTM.scale=true
   s=CTM.a+" "+CTM.b+" "+CTM.c+" "+CTM.d+" "+CTM.e+" "+CTM.f
   outline.setAttributeNS(null,"transform","matrix("+s+")")

   targetElement.parentNode.insertBefore( outline, 
targetElement );
}
  

  


11
  

  

  
 
  click


Stefan where I do wrong ?

I also need the calculated bbox points. but it looks that bbox in 
Firefox comparing to IE is broken




-
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/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: How to convert TTF Fonts to SVG

2008-11-17 Thread caio ariede
I used Apache Batik from SVN, it works fine. :)

Anyway Fontforge appears to be interesting.

thanks.

Caio Ariede
http://caioariede.com/


On Mon, Nov 17, 2008 at 10:29 AM, Andreas Neumann <[EMAIL PROTECTED]>wrote:

>   Hi,
>
> there is a very powerful (but not very pretty) open source font
> editor available at http://fontforge.sourceforge.net/
>
> Among many other formats it also supports SVG fonts and even
> generates the kerning tables.
>
> It works fine on Mac and Linux but is a bit complicated to install on
> Windows, since it requires X11.
>
> Hope this helps,
> Andreas
>
> --- In svg-developers@yahoogroups.com ,
> "caio ariede"
> <[EMAIL PROTECTED]> wrote:
> >
> > Hello Bjoern.
> >
> > Yes, I found other problems.
> >
> > Firefox doesn't support SVG Fonts and the image viewer that I'm
> using
> > doesn't support too.
> >
> > I changed the code, and now I'm using glyph tags and could get it
> working
> > (viewing in Opera browser that support SVG Fonts).
> >
> > Thank you.
> >
> > On Sat, Nov 15, 2008 at 11:02 PM, Bjoern Hoehrmann
> <[EMAIL PROTECTED]>wrote:
> >
> > > * caio ariede wrote:
> > > >I'm starting with SVG and trying to convert an TTF font to SVG.
> > > >
> > > >I converted it with ttf2svg tool, but it not appears correct.
> > > >
> > > >The font converted is: http://caioariede.com/svg/testesvg/
> myfont.svg
> > >
> > > That only includes the digits 0-9, not any letters. There may be
> other
> > > problems aswell, but that's the most obvious.
> > > --
> > > Björn Höhrmann · mailto:[EMAIL PROTECTED]  ·
> > > http://bjoern.hoehrmann.de
> > > Am Badedeich 7 · Telefon: +49(0)160/4415681 · http://
> www.bjoernsworld.de
> > > 25899 Dagebüll · PGP Pub. KeyID: 0xA4357E78 · http://
> www.websitedev.de/
> > >
> > >
> >
> >
> >
> > --
> > Caio Ariede
> > http://caioariede.com/
> >
> >
> > [Non-text portions of this message have been removed]
> >
>
>  
>


[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/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: svg on webserver

2008-11-17 Thread Kristien Ooms
Yes, it was a problem with the mime-Type 

Its solved now, so thank you all very much J

 

Kristien

 

 

*

Kristien Ooms

Ghent University 

Department of Geography 

CartoGIS Cluster

Krijgslaan 281 (S8), B.2.72

B-9000 Ghent (Belgium) 

Tel: +32 (0)9 264 46 36

Fax: +32 (0)9 264 49 85 

e-mail: [EMAIL PROTECTED]

http://www.geoweb.ugent.be/

*

 

From: svg-developers@yahoogroups.com [mailto:[EMAIL PROTECTED]
On Behalf Of Andreas Neumann
Sent: maandag 17 november 2008 13:34
To: svg-developers@yahoogroups.com
Subject: [svg-developers] Re: svg on webserver

 

yes, it is almost certainly a mime-type issue:

see http://wiki.svg.org/MIME_Type for additional infos.

Andreas

--- In svg-developers@yahoogroups.com
 , veiko herne <[EMAIL PROTECTED]> 
wrote:
>
> Have you configured the server mimetype for SVG (SVGZ) files?
> 
> Veiko
> 
> http://veikoh.wordpress.com
> 
> 
> --- On Mon, 11/17/08, Kristien Ooms <[EMAIL PROTECTED]> wrote:
> 
> > From: Kristien Ooms <[EMAIL PROTECTED]>
> > Subject: RE: [svg-developers] Re: svg on webserver
> > To: svg-developers@yahoogroups.com
 
> > Date: Monday, November 17, 2008, 11:05 AM
> > Thanks for the answer, but it didn't work.
> > 
> > I can load svg-files from other servers without a problem,
> > 
> > but not those on my server.
> > 
> > I colleague told me I have to adjust some settings on the
> > server.
> > 
> > Does anybody have any experience with that?
> > 
> > (btw it's a WAMP-server: windows,Apache,mysql and php)
> > 
> > Thanks!
> > 
> > 
> > 
> > 
> > 
> > *
> > 
> > Kristien Ooms
> > 
> > Ghent University 
> > 
> > Department of Geography 
> > 
> > CartoGIS Cluster
> > 
> > Krijgslaan 281 (S8), B.2.72
> > 
> > B-9000 Ghent (Belgium) 
> > 
> > Tel: +32 (0)9 264 46 36
> > 
> > Fax: +32 (0)9 264 49 85 
> > 
> > e-mail: [EMAIL PROTECTED]
> > 
> > http://www.geoweb.ugent.be/
> > 
> > *
> > 
> > 
> > 
> > From: svg-developers@yahoogroups.com
 
> > [mailto:svg-developers@yahoogroups.com
 ]
> > On Behalf Of Samuel Dagan
> > Sent: zaterdag 15 november 2008 13:35
> > To: svg-developers@yahoogroups.com
 
> > Subject: [svg-developers] Re: svg on webserver
> > 
> > 
> > 
> > Hi Kristien,
> > It could be due to the Activex problem of MS. Try the
> > following:
> > In IE open Tools and choose: Internet Options, Advanced,
> > Security.
> > If "Allow active content to run on My Computer"
> > is marked, click to
> > remove the mark, choose: Apply, OK, and restart IE. If I am
> > right
> > you'll be able to open the external file, but that way
> > you won't be
> > able to see svg files locally. You can always reverse the
> > configuration.
> > Cheers, Samy
> > 
> > --- In svg-developers@yahoogroups.com
 
> >  ,
> > "Kristien Ooms"
> >  wrote:
> > >
> > > Hi all,
> > > 
> > > 
> > > 
> > > I have some svg-file which work fine when I open them
> > locally from my
> > > computer in IE.
> > > 
> > > However, when I place them on a web server, I
> > can't open them
> > anymore in IE.
> > > 
> > > It's not a problem in FireFox, only in IE.
> > > 
> > > 
> > > 
> > > Here is an example of a demo-file I placed on the
> > webserver:
> > > 
> > >
> > http://cartogis.ugent.be/kooms/studie/reactionTime/SVG/text.svg
> > 
> > > 
> > > 
> > > 
> > > Does anybode know why this isn't working?
> > > 
> > > Any help is appreciated.
> > > 
> > > 
> > > 
> > > Kristien
> > > 
> > > 
> > > 
> > > [Non-text portions of this message have been removed]
> > >
> > 
> > 
> > 
> > 
> > 
> > [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
> > 
> > 
> >
>

 



[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/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

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

[svg-developers] Re: svg on webserver

2008-11-17 Thread Andreas Neumann
yes, it is almost certainly a mime-type issue:

see http://wiki.svg.org/MIME_Type for additional infos.

Andreas


--- In svg-developers@yahoogroups.com, veiko herne <[EMAIL PROTECTED]> 
wrote:
>
> Have you configured the server mimetype for SVG (SVGZ) files?
> 
> Veiko
> 
> http://veikoh.wordpress.com
> 
> 
> --- On Mon, 11/17/08, Kristien Ooms <[EMAIL PROTECTED]> wrote:
> 
> > From: Kristien Ooms <[EMAIL PROTECTED]>
> > Subject: RE: [svg-developers] Re: svg on webserver
> > To: svg-developers@yahoogroups.com
> > Date: Monday, November 17, 2008, 11:05 AM
> > Thanks for the answer, but it didn't work.
> > 
> > I can load svg-files from other servers without a problem,
> > 
> > but not those on my server.
> > 
> > I colleague told me I have to adjust some settings on the
> > server.
> > 
> > Does anybody have any experience with that?
> > 
> > (btw it's a WAMP-server: windows,Apache,mysql and php)
> > 
> > Thanks!
> > 
> >  
> > 
> >  
> > 
> > *
> > 
> > Kristien Ooms
> > 
> > Ghent University 
> > 
> > Department of Geography 
> > 
> > CartoGIS Cluster
> > 
> > Krijgslaan 281 (S8), B.2.72
> > 
> > B-9000 Ghent (Belgium) 
> > 
> > Tel: +32 (0)9 264 46 36
> > 
> > Fax: +32 (0)9 264 49 85 
> > 
> > e-mail: [EMAIL PROTECTED]
> > 
> > http://www.geoweb.ugent.be/
> > 
> > *
> > 
> >  
> > 
> > From: svg-developers@yahoogroups.com
> > [mailto:[EMAIL PROTECTED]
> > On Behalf Of Samuel Dagan
> > Sent: zaterdag 15 november 2008 13:35
> > To: svg-developers@yahoogroups.com
> > Subject: [svg-developers] Re: svg on webserver
> > 
> >  
> > 
> > Hi Kristien,
> > It could be due to the Activex problem of MS. Try the
> > following:
> > In IE open Tools and choose: Internet Options, Advanced,
> > Security.
> > If "Allow active content to run on My Computer"
> > is marked, click to
> > remove the mark, choose: Apply, OK, and restart IE. If I am
> > right
> > you'll be able to open the external file, but that way
> > you won't be
> > able to see svg files locally. You can always reverse the
> > configuration.
> > Cheers, Samy
> > 
> > --- In svg-developers@yahoogroups.com
> >  ,
> > "Kristien Ooms"
> >  wrote:
> > >
> > > Hi all,
> > > 
> > > 
> > > 
> > > I have some svg-file which work fine when I open them
> > locally from my
> > > computer in IE.
> > > 
> > > However, when I place them on a web server, I
> > can't open them
> > anymore in IE.
> > > 
> > > It's not a problem in FireFox, only in IE.
> > > 
> > > 
> > > 
> > > Here is an example of a demo-file I placed on the
> > webserver:
> > > 
> > >
> > http://cartogis.ugent.be/kooms/studie/reactionTime/SVG/text.svg
> > 
> > > 
> > > 
> > > 
> > > Does anybode know why this isn't working?
> > > 
> > > Any help is appreciated.
> > > 
> > > 
> > > 
> > > Kristien
> > > 
> > > 
> > > 
> > > [Non-text portions of this message have been removed]
> > >
> > 
> >  
> > 
> > 
> > 
> > [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/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: A full SVG 1.1 spec editor

2008-11-17 Thread Andreas Neumann
Hi,

there is no SVG editor available that supports all features of SVG 
1.1 full.

Usually you have to work in combinations of a static graphical editor 
(e.g. inkscape, Corel or Illustrator) and animation editor (e.g. the 
Inkscape animator), a text or XML editor and font-tools, such as 
fontforge.

Hope this helps,
Andreas

--- In svg-developers@yahoogroups.com, "caio ariede" 
<[EMAIL PROTECTED]> wrote:
>
> I'm searching any editor that support full SVG 1.1 spec, including 
SVG Fonts
> and/or glyphs.
> 
> I tried Inkscape and Sodipodi, but both didn't opened glyphs.
> 
> If anyone knows any editor that support this, or a SVG-to-PNG 
converter.
> 
> I tried some converters (rsvg, apache batik, but seems doesn't 
support
> glyphs too).
> 
> I'm googlin' here, but without results yet.
> 
> Thanks in advance.
> 
> -- 
> Caio Ariede
> http://caioariede.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/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: How to convert TTF Fonts to SVG

2008-11-17 Thread Andreas Neumann
Hi,

there is a very powerful (but not very pretty) open source font 
editor available at http://fontforge.sourceforge.net/

Among many other formats it also supports SVG fonts and even 
generates the kerning tables.

It works fine on Mac and Linux but is a bit complicated to install on 
Windows, since it requires X11.

Hope this helps,
Andreas

--- In svg-developers@yahoogroups.com, "caio ariede" 
<[EMAIL PROTECTED]> wrote:
>
> Hello Bjoern.
> 
> Yes, I found other problems.
> 
> Firefox doesn't support SVG Fonts and the image viewer that I'm 
using
> doesn't support too.
> 
> I changed the code, and now I'm using glyph tags and could get it 
working
> (viewing in Opera browser that support SVG Fonts).
> 
> Thank you.
> 
> On Sat, Nov 15, 2008 at 11:02 PM, Bjoern Hoehrmann 
<[EMAIL PROTECTED]>wrote:
> 
> >   * caio ariede wrote:
> > >I'm starting with SVG and trying to convert an TTF font to SVG.
> > >
> > >I converted it with ttf2svg tool, but it not appears correct.
> > >
> > >The font converted is: http://caioariede.com/svg/testesvg/
myfont.svg
> >
> > That only includes the digits 0-9, not any letters. There may be 
other
> > problems aswell, but that's the most obvious.
> > --
> > Björn Höhrmann · mailto:[EMAIL PROTECTED]  ·
> > http://bjoern.hoehrmann.de
> > Am Badedeich 7 · Telefon: +49(0)160/4415681 · http://
www.bjoernsworld.de
> > 25899 Dagebüll · PGP Pub. KeyID: 0xA4357E78 · http://
www.websitedev.de/
> >  
> >
> 
> 
> 
> -- 
> Caio Ariede
> http://caioariede.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/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: svg on webserver

2008-11-17 Thread caio ariede
What plugin are you using?

IE doesn't support SVG natively.

On Mon, Nov 17, 2008 at 9:42 AM, veiko herne <[EMAIL PROTECTED]> wrote:

>   Have you configured the server mimetype for SVG (SVGZ) files?
>
> Veiko
>
> http://veikoh.wordpress.com
>
> --- On Mon, 11/17/08, Kristien Ooms <[EMAIL 
> PROTECTED]>
> wrote:
>
> > From: Kristien Ooms <[EMAIL PROTECTED] >
> > Subject: RE: [svg-developers] Re: svg on webserver
>
> > To: svg-developers@yahoogroups.com 
> > Date: Monday, November 17, 2008, 11:05 AM
>
> > Thanks for the answer, but it didn't work.
> >
> > I can load svg-files from other servers without a problem,
> >
> > but not those on my server.
> >
> > I colleague told me I have to adjust some settings on the
> > server.
> >
> > Does anybody have any experience with that?
> >
> > (btw it's a WAMP-server: windows,Apache,mysql and php)
> >
> > Thanks!
> >
> >
> >
> >
> >
> > *
> >
> > Kristien Ooms
> >
> > Ghent University
> >
> > Department of Geography
> >
> > CartoGIS Cluster
> >
> > Krijgslaan 281 (S8), B.2.72
> >
> > B-9000 Ghent (Belgium)
> >
> > Tel: +32 (0)9 264 46 36
> >
> > Fax: +32 (0)9 264 49 85
> >
> > e-mail: [EMAIL PROTECTED] 
> >
> > http://www.geoweb.ugent.be/
> >
> > *
> >
> >
> >
> > From: svg-developers@yahoogroups.com 
> > [mailto:svg-developers@yahoogroups.com
> ]
> > On Behalf Of Samuel Dagan
> > Sent: zaterdag 15 november 2008 13:35
> > To: svg-developers@yahoogroups.com 
> > Subject: [svg-developers] Re: svg on webserver
> >
> >
> >
> > Hi Kristien,
> > It could be due to the Activex problem of MS. Try the
> > following:
> > In IE open Tools and choose: Internet Options, Advanced,
> > Security.
> > If "Allow active content to run on My Computer"
> > is marked, click to
> > remove the mark, choose: Apply, OK, and restart IE. If I am
> > right
> > you'll be able to open the external file, but that way
> > you won't be
> > able to see svg files locally. You can always reverse the
> > configuration.
> > Cheers, Samy
> >
> > --- In svg-developers@yahoogroups.com 
> > 
> ,
> > "Kristien Ooms"
> > <[EMAIL PROTECTED]> wrote:
> > >
> > > Hi all,
> > >
> > >
> > >
> > > I have some svg-file which work fine when I open them
> > locally from my
> > > computer in IE.
> > >
> > > However, when I place them on a web server, I
> > can't open them
> > anymore in IE.
> > >
> > > It's not a problem in FireFox, only in IE.
> > >
> > >
> > >
> > > Here is an example of a demo-file I placed on the
> > webserver:
> > >
> > >
> > http://cartogis.ugent.be/kooms/studie/reactionTime/SVG/text.svg
> >
> > >
> > >
> > >
> > > Does anybode know why this isn't working?
> > >
> > > Any help is appreciated.
> > >
> > >
> > >
> > > Kristien
> > >
> > >
> > >
> > > [Non-text portions of this message have been removed]
> > >
> >
> >
> >
> >
> >
> > [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
> >
> >
> >
>
>  
>



-- 
Caio Ariede
http://caioariede.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/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: svg on webserver

2008-11-17 Thread veiko herne
Have you configured the server mimetype for SVG (SVGZ) files?

Veiko

http://veikoh.wordpress.com


--- On Mon, 11/17/08, Kristien Ooms <[EMAIL PROTECTED]> wrote:

> From: Kristien Ooms <[EMAIL PROTECTED]>
> Subject: RE: [svg-developers] Re: svg on webserver
> To: svg-developers@yahoogroups.com
> Date: Monday, November 17, 2008, 11:05 AM
> Thanks for the answer, but it didn't work.
> 
> I can load svg-files from other servers without a problem,
> 
> but not those on my server.
> 
> I colleague told me I have to adjust some settings on the
> server.
> 
> Does anybody have any experience with that?
> 
> (btw it's a WAMP-server: windows,Apache,mysql and php)
> 
> Thanks!
> 
>  
> 
>  
> 
> *
> 
> Kristien Ooms
> 
> Ghent University 
> 
> Department of Geography 
> 
> CartoGIS Cluster
> 
> Krijgslaan 281 (S8), B.2.72
> 
> B-9000 Ghent (Belgium) 
> 
> Tel: +32 (0)9 264 46 36
> 
> Fax: +32 (0)9 264 49 85 
> 
> e-mail: [EMAIL PROTECTED]
> 
> http://www.geoweb.ugent.be/
> 
> *
> 
>  
> 
> From: svg-developers@yahoogroups.com
> [mailto:[EMAIL PROTECTED]
> On Behalf Of Samuel Dagan
> Sent: zaterdag 15 november 2008 13:35
> To: svg-developers@yahoogroups.com
> Subject: [svg-developers] Re: svg on webserver
> 
>  
> 
> Hi Kristien,
> It could be due to the Activex problem of MS. Try the
> following:
> In IE open Tools and choose: Internet Options, Advanced,
> Security.
> If "Allow active content to run on My Computer"
> is marked, click to
> remove the mark, choose: Apply, OK, and restart IE. If I am
> right
> you'll be able to open the external file, but that way
> you won't be
> able to see svg files locally. You can always reverse the
> configuration.
> Cheers, Samy
> 
> --- In svg-developers@yahoogroups.com
>  ,
> "Kristien Ooms"
> <[EMAIL PROTECTED]> wrote:
> >
> > Hi all,
> > 
> > 
> > 
> > I have some svg-file which work fine when I open them
> locally from my
> > computer in IE.
> > 
> > However, when I place them on a web server, I
> can't open them
> anymore in IE.
> > 
> > It's not a problem in FireFox, only in IE.
> > 
> > 
> > 
> > Here is an example of a demo-file I placed on the
> webserver:
> > 
> >
> http://cartogis.ugent.be/kooms/studie/reactionTime/SVG/text.svg
> 
> > 
> > 
> > 
> > Does anybode know why this isn't working?
> > 
> > Any help is appreciated.
> > 
> > 
> > 
> > Kristien
> > 
> > 
> > 
> > [Non-text portions of this message have been removed]
> >
> 
>  
> 
> 
> 
> [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/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: svg on webserver

2008-11-17 Thread Kristien Ooms
Thanks for the answer, but it didn't work.

I can load svg-files from other servers without a problem,

but not those on my server.

I colleague told me I have to adjust some settings on the server.

Does anybody have any experience with that?

(btw it's a WAMP-server: windows,Apache,mysql and php)

Thanks!

 

 

*

Kristien Ooms

Ghent University 

Department of Geography 

CartoGIS Cluster

Krijgslaan 281 (S8), B.2.72

B-9000 Ghent (Belgium) 

Tel: +32 (0)9 264 46 36

Fax: +32 (0)9 264 49 85 

e-mail: [EMAIL PROTECTED]

http://www.geoweb.ugent.be/

*

 

From: svg-developers@yahoogroups.com [mailto:[EMAIL PROTECTED]
On Behalf Of Samuel Dagan
Sent: zaterdag 15 november 2008 13:35
To: svg-developers@yahoogroups.com
Subject: [svg-developers] Re: svg on webserver

 

Hi Kristien,
It could be due to the Activex problem of MS. Try the following:
In IE open Tools and choose: Internet Options, Advanced, Security.
If "Allow active content to run on My Computer" is marked, click to
remove the mark, choose: Apply, OK, and restart IE. If I am right
you'll be able to open the external file, but that way you won't be
able to see svg files locally. You can always reverse the configuration.
Cheers, Samy

--- In svg-developers@yahoogroups.com
 , "Kristien Ooms"
<[EMAIL PROTECTED]> wrote:
>
> Hi all,
> 
> 
> 
> I have some svg-file which work fine when I open them locally from my
> computer in IE.
> 
> However, when I place them on a web server, I can't open them
anymore in IE.
> 
> It's not a problem in FireFox, only in IE.
> 
> 
> 
> Here is an example of a demo-file I placed on the webserver:
> 
> http://cartogis.ugent.be/kooms/studie/reactionTime/SVG/text.svg 
> 
> 
> 
> Does anybode know why this isn't working?
> 
> Any help is appreciated.
> 
> 
> 
> Kristien
> 
> 
> 
> [Non-text portions of this message have been removed]
>

 



[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/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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/