[svg-developers] External SVG file in an SVG

2013-04-19 Thread al_i_bi_bi
Hello,
I start with SVG (sorry) and sorry twice for my poor english (i'm
french) ...
I try to call an external SVG (made with Illustrator) in an SVG using
use and xlink :
?xml version=1.0 encoding=ISO-8859-1
standalone=no?!DOCTYPE svg PUBLIC -//W3C//DTD SVG 1.0//EN
http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd;svgxmlns:svg\
=http://www.w3.org/2000/svgxmlns=http://www.w3.org/2000/svgxmlns:xli\
nk=http://www.w3.org/1999/xlinkversion=1.1width=620height=550onl\
oad=INIT(evt)
!-- CARTE -- g id=carte transform=matrix(1 0 0 1 0 0) width=460
height=550 use id=aaa x=0 y=0
xlink:href=img/carte.svg#Calque_1 /   /g  
/svg
It works very well with Safari and Firefox, but not with IE or Chrome
How can I do ?
Thank you for your first help (I think there ail be others ...)


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





-
To unsubscribe send a message to: svg-developers-unsubscr...@yahoogroups.com
-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:
svg-developers-dig...@yahoogroups.com 
svg-developers-fullfeatu...@yahoogroups.com

* To unsubscribe from this group, send an email to:
svg-developers-unsubscr...@yahoogroups.com

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



[svg-developers] Hiding SVG Elements in #document

2013-04-19 Thread srcard
Hi,

I've exported some HTML / SVG from Visio.  I'd like to hide some elements 
within it.

The problem is that I'm unable to use jQuery selectors to get access to any of 
the SVG elements - it appears to be due to the #document.

How can I get access to elements that are within the following, please?

body
  object width=100% height=100% id=SVGViewer1 data=svg_1.svg 
type=image/svg+xml viewastext=
#document
  svg ...
 ...
  /svg
  /object
/body

Many thanks,

Simon





-
To unsubscribe send a message to: svg-developers-unsubscr...@yahoogroups.com
-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:
svg-developers-dig...@yahoogroups.com 
svg-developers-fullfeatu...@yahoogroups.com

* To unsubscribe from this group, send an email to:
svg-developers-unsubscr...@yahoogroups.com

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



Re: [svg-developers] Hiding SVG Elements in #document

2013-04-19 Thread Bjoern Hoehrmann
* srcard wrote:
I've exported some HTML / SVG from Visio.  I'd like to hide some elements 
within it.

The problem is that I'm unable to use jQuery selectors to get access to any of 
the
SVG elements - it appears to be due to the #document.

How can I get access to elements that are within the following, please?

body
  object width=100% height=100% id=SVGViewer1 data=svg_1.svg 
 type=image/svg+xml viewastext=
#document

This looks like copied and pasted from some kind of document tree viewer
as one may find them in some debuggers and development environments. I'd
imagine `#document` is used as a placeholder for the embedded image, and
the image is not in fact inline SVG code. The object element uses the
HTMLObjectElement interface, see e.g.

  https://developer.mozilla.org/en-US/docs/DOM/HTMLObjectElement

and the `contentWindow` and `contentDocument` attributes are what you
are looking for. For my personal homepage I found some time ago that it
is better to use `iframe` though, if you want it to work across many
browsers, so you may have to try that instead.
-- 
Björn Höhrmann · mailto:bjo...@hoehrmann.de · 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/ 




-
To unsubscribe send a message to: svg-developers-unsubscr...@yahoogroups.com
-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:
svg-developers-dig...@yahoogroups.com 
svg-developers-fullfeatu...@yahoogroups.com

* To unsubscribe from this group, send an email to:
svg-developers-unsubscr...@yahoogroups.com

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



Re: [svg-developers] External SVG file in an SVG

2013-04-19 Thread Bjoern Hoehrmann
* al_i_bi_bi wrote:
use id=aaa x=0 y=0 xlink:href=img/carte.svg#Calque_1 / [...]

It works very well with Safari and Firefox, but not with IE or Chrome

That probably depends a bit on what `Calque_1` is (is it a shape like
rect or a view element or...), but you probably have to use image
instead, if that is an option for your use case.
-- 
Björn Höhrmann · mailto:bjo...@hoehrmann.de · 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/ 




-
To unsubscribe send a message to: svg-developers-unsubscr...@yahoogroups.com
-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:
svg-developers-dig...@yahoogroups.com 
svg-developers-fullfeatu...@yahoogroups.com

* To unsubscribe from this group, send an email to:
svg-developers-unsubscr...@yahoogroups.com

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



[svg-developers] The Graphical Web conference -- San Francisco, October 21-23 2013

2013-04-19 Thread David Dailey
Hi folks,

 

I'm pleased to announce that The Graphical Web (previously SVG Open) will be
held in San Francisco this year at the Moscone Center. The dates will be
October 21 and 22 with workshops taking place on October 23rd. We're pleased
to have worked closely with several people on scheduling this event in this
very high-profile venue in the Bay Area. People at Adobe Systems, Inc., as
well as Ann Burkett have been particularly supportive in our  initial stages
of planning.

 

The website at http://www.svgopen.org/2013/ as well as the Twitter feed at
https://twitter.com/thegraphicalweb should provide additional details on
paper submission, sponsorship opportunities, and so forth.

 

Cheers,

David Dailey



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





-
To unsubscribe send a message to: svg-developers-unsubscr...@yahoogroups.com
-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:
svg-developers-dig...@yahoogroups.com 
svg-developers-fullfeatu...@yahoogroups.com

* To unsubscribe from this group, send an email to:
svg-developers-unsubscr...@yahoogroups.com

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