* [gentoo-user] SVG plugin @ 2009-06-15 11:08 Mick 2009-06-15 11:44 ` Florian Philipp 0 siblings, 1 reply; 24+ messages in thread From: Mick @ 2009-06-15 11:08 UTC (permalink / raw To: gentoo-user Hi All, Trying to view a web page I produced some yonks ago, which at that the time would utilise the Adobe SVG plugin to render a gantt chart. The header of the file went like this: ============================================= <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000303 Stylable//EN" "http://www.w3.org/TR/2000/03/WD-SVG-20000303/DTD/svg-20000303-stylable.dtd"> <svg xml:space="preserve" width="10in" height="8in" style="font-family:'Arial';font-size:8"> ============================================= Adobe seem to have abandoned further development. Any idea what I can use to render such a graphic (image/svg+xml) in a browser? -- Regards, Mick ^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] SVG plugin 2009-06-15 11:08 [gentoo-user] SVG plugin Mick @ 2009-06-15 11:44 ` Florian Philipp 2009-06-15 12:30 ` Mick 0 siblings, 1 reply; 24+ messages in thread From: Florian Philipp @ 2009-06-15 11:44 UTC (permalink / raw To: gentoo-user [-- Attachment #1: Type: text/plain, Size: 844 bytes --] Mick schrieb: > Hi All, > > Trying to view a web page I produced some yonks ago, which at that the > time would utilise the Adobe SVG plugin to render a gantt chart. The > header of the file went like this: > ============================================= > <?xml version="1.0" encoding="iso-8859-1"?> > <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000303 Stylable//EN" > "http://www.w3.org/TR/2000/03/WD-SVG-20000303/DTD/svg-20000303-stylable.dtd"> > <svg xml:space="preserve" width="10in" height="8in" > style="font-family:'Arial';font-size:8"> > ============================================= > > Adobe seem to have abandoned further development. Any idea what I can > use to render such a graphic (image/svg+xml) in a browser? Firefox supports svg out of the box, now. Maybe you need the svg USE-flag for x11-libs/cairo. [-- Attachment #2: OpenPGP digital signature --] [-- Type: application/pgp-signature, Size: 261 bytes --] ^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] SVG plugin 2009-06-15 11:44 ` Florian Philipp @ 2009-06-15 12:30 ` Mick 2009-06-15 12:43 ` [gentoo-user] " Nikos Chantziaras 2009-06-15 13:30 ` [gentoo-user] " Florian Philipp 0 siblings, 2 replies; 24+ messages in thread From: Mick @ 2009-06-15 12:30 UTC (permalink / raw To: gentoo-user 2009/6/15 Florian Philipp <lists@f_philipp.fastmail.net>: > Mick schrieb: >> Hi All, >> >> Trying to view a web page I produced some yonks ago, which at that the >> time would utilise the Adobe SVG plugin to render a gantt chart. The >> header of the file went like this: >> ============================================= >> <?xml version="1.0" encoding="iso-8859-1"?> >> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000303 Stylable//EN" >> "http://www.w3.org/TR/2000/03/WD-SVG-20000303/DTD/svg-20000303-stylable.dtd"> >> <svg xml:space="preserve" width="10in" height="8in" >> style="font-family:'Arial';font-size:8"> >> ============================================= >> >> Adobe seem to have abandoned further development. Any idea what I can >> use to render such a graphic (image/svg+xml) in a browser? > > Firefox supports svg out of the box, now. Maybe you need the svg > USE-flag for x11-libs/cairo. Hmm, mozilla-firefox does not have an svg flag. Anyway, I have svg in my /etc/make.conf and also have cairo installed: [I] x11-libs/cairo Installed versions: 1.8.6-r1!t(18:54:43 03/17/09)(X glitz opengl svg -cleartype -debug -directfb -doc -xcb) It's not just FF, but also Opera and Konqueror cannot render it either and ask to download a plugin. -- Regards, Mick ^ permalink raw reply [flat|nested] 24+ messages in thread
* [gentoo-user] Re: SVG plugin 2009-06-15 12:30 ` Mick @ 2009-06-15 12:43 ` Nikos Chantziaras 2009-06-15 14:31 ` Kevin O'Gorman 2009-06-15 13:30 ` [gentoo-user] " Florian Philipp 1 sibling, 1 reply; 24+ messages in thread From: Nikos Chantziaras @ 2009-06-15 12:43 UTC (permalink / raw To: gentoo-user On 06/15/2009 03:30 PM, Mick wrote: > 2009/6/15 Florian Philipp<lists@f_philipp.fastmail.net>: >> Mick schrieb: >>> Hi All, >>> >>> Trying to view a web page I produced some yonks ago, which at that the >>> time would utilise the Adobe SVG plugin to render a gantt chart. The >>> header of the file went like this: >>> ============================================= >>> <?xml version="1.0" encoding="iso-8859-1"?> >>> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000303 Stylable//EN" >>> "http://www.w3.org/TR/2000/03/WD-SVG-20000303/DTD/svg-20000303-stylable.dtd"> >>> <svg xml:space="preserve" width="10in" height="8in" >>> style="font-family:'Arial';font-size:8"> >>> ============================================= >>> >>> Adobe seem to have abandoned further development. Any idea what I can >>> use to render such a graphic (image/svg+xml) in a browser? >> Firefox supports svg out of the box, now. Maybe you need the svg >> USE-flag for x11-libs/cairo. > > Hmm, mozilla-firefox does not have an svg flag. Anyway, I have svg in > my /etc/make.conf and also have cairo installed: > > [I] x11-libs/cairo > > Installed versions: 1.8.6-r1!t(18:54:43 03/17/09)(X glitz opengl > svg -cleartype -debug -directfb -doc -xcb) > > It's not just FF, but also Opera and Konqueror cannot render it either > and ask to download a plugin. The code in your webpage is probably wrong. You should just use a normal HTML header instead of this weird "<!DOCTYPE svg" thingy you're using now. Embed SVG images inside the page with a PNG fallback like this: <object data="URL_TO_YOUR.svg" type="image/svg+xml" height="PIXELS" width="PIXELS"> <img src="URL_TO_YOUR.png" height="PIXELS" width="PIXELS"> </object> ^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] Re: SVG plugin 2009-06-15 12:43 ` [gentoo-user] " Nikos Chantziaras @ 2009-06-15 14:31 ` Kevin O'Gorman 2009-06-15 14:44 ` Kevin O'Gorman ` (2 more replies) 0 siblings, 3 replies; 24+ messages in thread From: Kevin O'Gorman @ 2009-06-15 14:31 UTC (permalink / raw To: gentoo-user On Mon, Jun 15, 2009 at 5:43 AM, Nikos Chantziaras<realnc@arcor.de> wrote: > On 06/15/2009 03:30 PM, Mick wrote: >> >> 2009/6/15 Florian Philipp<lists@f_philipp.fastmail.net>: >>> >>> Mick schrieb: >>>> >>>> Hi All, >>>> >>>> Trying to view a web page I produced some yonks ago, which at that the >>>> time would utilise the Adobe SVG plugin to render a gantt chart. The >>>> header of the file went like this: >>>> ============================================= >>>> <?xml version="1.0" encoding="iso-8859-1"?> >>>> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000303 Stylable//EN" >>>> >>>> "http://www.w3.org/TR/2000/03/WD-SVG-20000303/DTD/svg-20000303-stylable.dtd"> >>>> <svg xml:space="preserve" width="10in" height="8in" >>>> style="font-family:'Arial';font-size:8"> >>>> ============================================= >>>> >>>> Adobe seem to have abandoned further development. Any idea what I can >>>> use to render such a graphic (image/svg+xml) in a browser? >>> >>> Firefox supports svg out of the box, now. Maybe you need the svg >>> USE-flag for x11-libs/cairo. >> >> Hmm, mozilla-firefox does not have an svg flag. Anyway, I have svg in >> my /etc/make.conf and also have cairo installed: >> >> [I] x11-libs/cairo >> >> Installed versions: 1.8.6-r1!t(18:54:43 03/17/09)(X glitz opengl >> svg -cleartype -debug -directfb -doc -xcb) >> >> It's not just FF, but also Opera and Konqueror cannot render it either >> and ask to download a plugin. > > The code in your webpage is probably wrong. You should just use a normal > HTML header instead of this weird "<!DOCTYPE svg" thingy you're using now. > Embed SVG images inside the page with a PNG fallback like this: > > <object data="URL_TO_YOUR.svg" type="image/svg+xml" height="PIXELS" > width="PIXELS"> > <img src="URL_TO_YOUR.png" height="PIXELS" width="PIXELS"> > </object> > > > I tried that Adobe site in FF on gentoo and ubuntu with the same non-result. On Vista, I tried FF, Opera, Safari and IE 8, with varied forms of failure. Interestingly, Opera at least offered to start inkscape to view the image, which succeeded. The text on that image suggested it's specific to an adobe plugin -- which it plugs of course. Does somebody have a web page with SVGs that normal browsers with non-proprietary plugins/viewers _can_ view? -- Kevin O'Gorman, PhD ^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] Re: SVG plugin 2009-06-15 14:31 ` Kevin O'Gorman @ 2009-06-15 14:44 ` Kevin O'Gorman 2009-06-15 14:51 ` Paul Hartman 2009-06-15 15:34 ` Daniel da Veiga 2009-06-15 14:48 ` Paul Hartman 2009-06-15 14:57 ` Paul Hartman 2 siblings, 2 replies; 24+ messages in thread From: Kevin O'Gorman @ 2009-06-15 14:44 UTC (permalink / raw To: gentoo-user On Mon, Jun 15, 2009 at 7:31 AM, Kevin O'Gorman<kogorman@gmail.com> wrote: > On Mon, Jun 15, 2009 at 5:43 AM, Nikos Chantziaras<realnc@arcor.de> wrote: >> On 06/15/2009 03:30 PM, Mick wrote: >>> >>> 2009/6/15 Florian Philipp<lists@f_philipp.fastmail.net>: >>>> >>>> Mick schrieb: >>>>> >>>>> Hi All, >>>>> >>>>> Trying to view a web page I produced some yonks ago, which at that the >>>>> time would utilise the Adobe SVG plugin to render a gantt chart. The >>>>> header of the file went like this: >>>>> ============================================= >>>>> <?xml version="1.0" encoding="iso-8859-1"?> >>>>> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000303 Stylable//EN" >>>>> >>>>> "http://www.w3.org/TR/2000/03/WD-SVG-20000303/DTD/svg-20000303-stylable.dtd"> >>>>> <svg xml:space="preserve" width="10in" height="8in" >>>>> style="font-family:'Arial';font-size:8"> >>>>> ============================================= >>>>> >>>>> Adobe seem to have abandoned further development. Any idea what I can >>>>> use to render such a graphic (image/svg+xml) in a browser? >>>> >>>> Firefox supports svg out of the box, now. Maybe you need the svg >>>> USE-flag for x11-libs/cairo. >>> >>> Hmm, mozilla-firefox does not have an svg flag. Anyway, I have svg in >>> my /etc/make.conf and also have cairo installed: >>> >>> [I] x11-libs/cairo >>> >>> Installed versions: 1.8.6-r1!t(18:54:43 03/17/09)(X glitz opengl >>> svg -cleartype -debug -directfb -doc -xcb) >>> >>> It's not just FF, but also Opera and Konqueror cannot render it either >>> and ask to download a plugin. >> >> The code in your webpage is probably wrong. You should just use a normal >> HTML header instead of this weird "<!DOCTYPE svg" thingy you're using now. >> Embed SVG images inside the page with a PNG fallback like this: >> >> <object data="URL_TO_YOUR.svg" type="image/svg+xml" height="PIXELS" >> width="PIXELS"> >> <img src="URL_TO_YOUR.png" height="PIXELS" width="PIXELS"> >> </object> >> >> >> > > I tried that Adobe site in FF on gentoo and ubuntu with the same > non-result. On Vista, I tried FF, Opera, Safari and IE 8, with varied > forms of failure. Interestingly, Opera at least offered to start > inkscape to view the image, which succeeded. The text on that image > suggested it's specific to an adobe plugin -- which it plugs of > course. > > Does somebody have a web page with SVGs that normal browsers with > non-proprietary plugins/viewers _can_ view? I looked a little further. I thought it interesting that Safari could also not view the Adobe SVG thingy. Moreover, http://www.adobe.com/svg/viewer/install/ shows they've dropped support for their viewer, and the most recent blurb promoting SVG relates to Illustrator CS2, when CS4 is the current version. I have CS4, but haven't learned to use it yet. Is there a future in SVG? -- Kevin O'Gorman, PhD ^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] Re: SVG plugin 2009-06-15 14:44 ` Kevin O'Gorman @ 2009-06-15 14:51 ` Paul Hartman 2009-06-15 15:58 ` Mick 2009-06-15 15:34 ` Daniel da Veiga 1 sibling, 1 reply; 24+ messages in thread From: Paul Hartman @ 2009-06-15 14:51 UTC (permalink / raw To: gentoo-user On Mon, Jun 15, 2009 at 9:44 AM, Kevin O'Gorman<kogorman@gmail.com> wrote: > On Mon, Jun 15, 2009 at 7:31 AM, Kevin O'Gorman<kogorman@gmail.com> wrote: >> On Mon, Jun 15, 2009 at 5:43 AM, Nikos Chantziaras<realnc@arcor.de> wrote: >>> On 06/15/2009 03:30 PM, Mick wrote: >>>> >>>> 2009/6/15 Florian Philipp<lists@f_philipp.fastmail.net>: >>>>> >>>>> Mick schrieb: >>>>>> >>>>>> Hi All, >>>>>> >>>>>> Trying to view a web page I produced some yonks ago, which at that the >>>>>> time would utilise the Adobe SVG plugin to render a gantt chart. The >>>>>> header of the file went like this: >>>>>> ============================================= >>>>>> <?xml version="1.0" encoding="iso-8859-1"?> >>>>>> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000303 Stylable//EN" >>>>>> >>>>>> "http://www.w3.org/TR/2000/03/WD-SVG-20000303/DTD/svg-20000303-stylable.dtd"> >>>>>> <svg xml:space="preserve" width="10in" height="8in" >>>>>> style="font-family:'Arial';font-size:8"> >>>>>> ============================================= >>>>>> >>>>>> Adobe seem to have abandoned further development. Any idea what I can >>>>>> use to render such a graphic (image/svg+xml) in a browser? >>>>> >>>>> Firefox supports svg out of the box, now. Maybe you need the svg >>>>> USE-flag for x11-libs/cairo. >>>> >>>> Hmm, mozilla-firefox does not have an svg flag. Anyway, I have svg in >>>> my /etc/make.conf and also have cairo installed: >>>> >>>> [I] x11-libs/cairo >>>> >>>> Installed versions: 1.8.6-r1!t(18:54:43 03/17/09)(X glitz opengl >>>> svg -cleartype -debug -directfb -doc -xcb) >>>> >>>> It's not just FF, but also Opera and Konqueror cannot render it either >>>> and ask to download a plugin. >>> >>> The code in your webpage is probably wrong. You should just use a normal >>> HTML header instead of this weird "<!DOCTYPE svg" thingy you're using now. >>> Embed SVG images inside the page with a PNG fallback like this: >>> >>> <object data="URL_TO_YOUR.svg" type="image/svg+xml" height="PIXELS" >>> width="PIXELS"> >>> <img src="URL_TO_YOUR.png" height="PIXELS" width="PIXELS"> >>> </object> >>> >>> >>> >> >> I tried that Adobe site in FF on gentoo and ubuntu with the same >> non-result. On Vista, I tried FF, Opera, Safari and IE 8, with varied >> forms of failure. Interestingly, Opera at least offered to start >> inkscape to view the image, which succeeded. The text on that image >> suggested it's specific to an adobe plugin -- which it plugs of >> course. >> >> Does somebody have a web page with SVGs that normal browsers with >> non-proprietary plugins/viewers _can_ view? > > I looked a little further. I thought it interesting that Safari could > also not view the Adobe SVG thingy. Moreover, > http://www.adobe.com/svg/viewer/install/ shows they've dropped support > for their viewer, and the most recent blurb promoting SVG relates to > Illustrator CS2, when CS4 is the current version. I have CS4, but > haven't learned to use it yet. > > Is there a future in SVG? Also, in Firefox make sure SVG is enabled. Type "about:config" in the URL bar and look for the "svg.enabled" option. Set it to "true" if it is not already. ^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] Re: SVG plugin 2009-06-15 14:51 ` Paul Hartman @ 2009-06-15 15:58 ` Mick 0 siblings, 0 replies; 24+ messages in thread From: Mick @ 2009-06-15 15:58 UTC (permalink / raw To: gentoo-user 2009/6/15 Paul Hartman <paul.hartman+gentoo@gmail.com>: > Also, in Firefox make sure SVG is enabled. Type "about:config" in the > URL bar and look for the "svg.enabled" option. Set it to "true" if it > is not already. It was set to true, but will not render (in Linux) -- Regards, Mick ^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] Re: SVG plugin 2009-06-15 14:44 ` Kevin O'Gorman 2009-06-15 14:51 ` Paul Hartman @ 2009-06-15 15:34 ` Daniel da Veiga 2009-06-15 16:05 ` Mick 1 sibling, 1 reply; 24+ messages in thread From: Daniel da Veiga @ 2009-06-15 15:34 UTC (permalink / raw To: gentoo-user On Mon, Jun 15, 2009 at 11:44, Kevin O'Gorman<kogorman@gmail.com> wrote: > On Mon, Jun 15, 2009 at 7:31 AM, Kevin O'Gorman<kogorman@gmail.com> wrote: >> On Mon, Jun 15, 2009 at 5:43 AM, Nikos Chantziaras<realnc@arcor.de> wrote: >>> On 06/15/2009 03:30 PM, Mick wrote: >>>> >>>> 2009/6/15 Florian Philipp<lists@f_philipp.fastmail.net>: >>>>> >>>>> Mick schrieb: >>>>>> >>>>>> Hi All, >>>>>> >>>>>> Trying to view a web page I produced some yonks ago, which at that the >>>>>> time would utilise the Adobe SVG plugin to render a gantt chart. The >>>>>> header of the file went like this: >>>>>> ============================================= >>>>>> <?xml version="1.0" encoding="iso-8859-1"?> >>>>>> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000303 Stylable//EN" >>>>>> >>>>>> "http://www.w3.org/TR/2000/03/WD-SVG-20000303/DTD/svg-20000303-stylable.dtd"> >>>>>> <svg xml:space="preserve" width="10in" height="8in" >>>>>> style="font-family:'Arial';font-size:8"> >>>>>> ============================================= >>>>>> >>>>>> Adobe seem to have abandoned further development. Any idea what I can >>>>>> use to render such a graphic (image/svg+xml) in a browser? >>>>> >>>>> Firefox supports svg out of the box, now. Maybe you need the svg >>>>> USE-flag for x11-libs/cairo. >>>> >>>> Hmm, mozilla-firefox does not have an svg flag. Anyway, I have svg in >>>> my /etc/make.conf and also have cairo installed: >>>> >>>> [I] x11-libs/cairo >>>> >>>> Installed versions: 1.8.6-r1!t(18:54:43 03/17/09)(X glitz opengl >>>> svg -cleartype -debug -directfb -doc -xcb) >>>> >>>> It's not just FF, but also Opera and Konqueror cannot render it either >>>> and ask to download a plugin. >>> >>> The code in your webpage is probably wrong. You should just use a normal >>> HTML header instead of this weird "<!DOCTYPE svg" thingy you're using now. >>> Embed SVG images inside the page with a PNG fallback like this: >>> >>> <object data="URL_TO_YOUR.svg" type="image/svg+xml" height="PIXELS" >>> width="PIXELS"> >>> <img src="URL_TO_YOUR.png" height="PIXELS" width="PIXELS"> >>> </object> >>> >>> >>> >> >> I tried that Adobe site in FF on gentoo and ubuntu with the same >> non-result. On Vista, I tried FF, Opera, Safari and IE 8, with varied >> forms of failure. Interestingly, Opera at least offered to start >> inkscape to view the image, which succeeded. The text on that image >> suggested it's specific to an adobe plugin -- which it plugs of >> course. >> >> Does somebody have a web page with SVGs that normal browsers with >> non-proprietary plugins/viewers _can_ view? > > I looked a little further. I thought it interesting that Safari could > also not view the Adobe SVG thingy. Moreover, > http://www.adobe.com/svg/viewer/install/ shows they've dropped support > for their viewer, and the most recent blurb promoting SVG relates to > Illustrator CS2, when CS4 is the current version. I have CS4, but > haven't learned to use it yet. > > Is there a future in SVG? > AFAIK, SVG has a future. Adobe's SVG, on the other hand, seems broken. My router firmware (Tomato) uses SVG for graphics and everything work fine on Firefox. That SVG example from Adobe's site doesn't work. You can safely assume they're using SVG in a way only THEIR plugin would read. <off>Reminds me of PDF, where Adobe completely broke standards, I have some PDFs that every other PDF Reader I could install, even online standalone apps can read, but Adobe Acrobat can't, and it yells the file is broken</off> -- Daniel da Veiga ^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] Re: SVG plugin 2009-06-15 15:34 ` Daniel da Veiga @ 2009-06-15 16:05 ` Mick 0 siblings, 0 replies; 24+ messages in thread From: Mick @ 2009-06-15 16:05 UTC (permalink / raw To: gentoo-user 2009/6/15 Daniel da Veiga <danieldaveiga@gmail.com>: > AFAIK, SVG has a future. Adobe's SVG, on the other hand, seems broken. > My router firmware (Tomato) uses SVG for graphics and everything work > fine on Firefox. That SVG example from Adobe's site doesn't work. You > can safely assume they're using SVG in a way only THEIR plugin would > read. > > <off>Reminds me of PDF, where Adobe completely broke standards, I have > some PDFs that every other PDF Reader I could install, even online > standalone apps can read, but Adobe Acrobat can't, and it yells the > file is broken</off> Hmm, there must be some truth in this, because the Adobe test page shows OK in MSWindows, but not in Linux. On the other hand the w3schools examples show fine in Linux. Thank you all for your help. -- Regards, Mick ^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] Re: SVG plugin 2009-06-15 14:31 ` Kevin O'Gorman 2009-06-15 14:44 ` Kevin O'Gorman @ 2009-06-15 14:48 ` Paul Hartman 2009-06-15 14:57 ` Paul Hartman 2 siblings, 0 replies; 24+ messages in thread From: Paul Hartman @ 2009-06-15 14:48 UTC (permalink / raw To: gentoo-user On Mon, Jun 15, 2009 at 9:31 AM, Kevin O'Gorman<kogorman@gmail.com> wrote: > On Mon, Jun 15, 2009 at 5:43 AM, Nikos Chantziaras<realnc@arcor.de> wrote: >> On 06/15/2009 03:30 PM, Mick wrote: >>> >>> 2009/6/15 Florian Philipp<lists@f_philipp.fastmail.net>: >>>> >>>> Mick schrieb: >>>>> >>>>> Hi All, >>>>> >>>>> Trying to view a web page I produced some yonks ago, which at that the >>>>> time would utilise the Adobe SVG plugin to render a gantt chart. The >>>>> header of the file went like this: >>>>> ============================================= >>>>> <?xml version="1.0" encoding="iso-8859-1"?> >>>>> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000303 Stylable//EN" >>>>> >>>>> "http://www.w3.org/TR/2000/03/WD-SVG-20000303/DTD/svg-20000303-stylable.dtd"> >>>>> <svg xml:space="preserve" width="10in" height="8in" >>>>> style="font-family:'Arial';font-size:8"> >>>>> ============================================= >>>>> >>>>> Adobe seem to have abandoned further development. Any idea what I can >>>>> use to render such a graphic (image/svg+xml) in a browser? >>>> >>>> Firefox supports svg out of the box, now. Maybe you need the svg >>>> USE-flag for x11-libs/cairo. >>> >>> Hmm, mozilla-firefox does not have an svg flag. Anyway, I have svg in >>> my /etc/make.conf and also have cairo installed: >>> >>> [I] x11-libs/cairo >>> >>> Installed versions: 1.8.6-r1!t(18:54:43 03/17/09)(X glitz opengl >>> svg -cleartype -debug -directfb -doc -xcb) >>> >>> It's not just FF, but also Opera and Konqueror cannot render it either >>> and ask to download a plugin. >> >> The code in your webpage is probably wrong. You should just use a normal >> HTML header instead of this weird "<!DOCTYPE svg" thingy you're using now. >> Embed SVG images inside the page with a PNG fallback like this: >> >> <object data="URL_TO_YOUR.svg" type="image/svg+xml" height="PIXELS" >> width="PIXELS"> >> <img src="URL_TO_YOUR.png" height="PIXELS" width="PIXELS"> >> </object> >> >> >> > > I tried that Adobe site in FF on gentoo and ubuntu with the same > non-result. On Vista, I tried FF, Opera, Safari and IE 8, with varied > forms of failure. Interestingly, Opera at least offered to start > inkscape to view the image, which succeeded. The text on that image > suggested it's specific to an adobe plugin -- which it plugs of > course. > > Does somebody have a web page with SVGs that normal browsers with > non-proprietary plugins/viewers _can_ view? http://www.w3schools.com/svg/svg_examples.asp All work fine for me in SeaMonkey ^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] Re: SVG plugin 2009-06-15 14:31 ` Kevin O'Gorman 2009-06-15 14:44 ` Kevin O'Gorman 2009-06-15 14:48 ` Paul Hartman @ 2009-06-15 14:57 ` Paul Hartman 2009-06-15 15:01 ` Paul Hartman ` (2 more replies) 2 siblings, 3 replies; 24+ messages in thread From: Paul Hartman @ 2009-06-15 14:57 UTC (permalink / raw To: gentoo-user On Mon, Jun 15, 2009 at 9:31 AM, Kevin O'Gorman<kogorman@gmail.com> wrote: > I tried that Adobe site in FF on gentoo and ubuntu with the same > non-result. On Vista, I tried FF, Opera, Safari and IE 8, with varied > forms of failure. Interestingly, Opera at least offered to start > inkscape to view the image, which succeeded. The text on that image > suggested it's specific to an adobe plugin -- which it plugs of > course. > > Does somebody have a web page with SVGs that normal browsers with > non-proprietary plugins/viewers _can_ view? http://www.w3schools.com/svg/svg_inhtml.asp This page has examples of 3 ways to do it (you should see blue rectangles if SVG is rendering). All 3 examples work for me in Firefox 3.0.11, Seamonkey 1.1.16, Opera 9.64, Konqueror 4.2.3 and Safari 4 (all on Windows). Internet Explorer 8, naturally, requires a plug-in to view SVG. ^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] Re: SVG plugin 2009-06-15 14:57 ` Paul Hartman @ 2009-06-15 15:01 ` Paul Hartman 2009-06-15 16:02 ` Mick 2009-06-16 14:13 ` Kevin O'Gorman 2 siblings, 0 replies; 24+ messages in thread From: Paul Hartman @ 2009-06-15 15:01 UTC (permalink / raw To: gentoo-user On Mon, Jun 15, 2009 at 9:57 AM, Paul Hartman<paul.hartman+gentoo@gmail.com> wrote: > http://www.w3schools.com/svg/svg_inhtml.asp > > This page has examples of 3 ways to do it (you should see blue > rectangles if SVG is rendering). All 3 examples work for me in Firefox > 3.0.11, Seamonkey 1.1.16, Opera 9.64, Konqueror 4.2.3 and Safari 4 > (all on Windows). Internet Explorer 8, naturally, requires a plug-in > to view SVG. Slight correction - the object tag did not work on Opera, but the other 2 techniques did work. Everything worked in every other browser (except IE, where nothing worked). ^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] Re: SVG plugin 2009-06-15 14:57 ` Paul Hartman 2009-06-15 15:01 ` Paul Hartman @ 2009-06-15 16:02 ` Mick 2009-06-15 17:58 ` pk 2009-06-16 14:13 ` Kevin O'Gorman 2 siblings, 1 reply; 24+ messages in thread From: Mick @ 2009-06-15 16:02 UTC (permalink / raw To: gentoo-user 2009/6/15 Paul Hartman <paul.hartman+gentoo@gmail.com>: > On Mon, Jun 15, 2009 at 9:31 AM, Kevin O'Gorman<kogorman@gmail.com> wrote: >> I tried that Adobe site in FF on gentoo and ubuntu with the same >> non-result. On Vista, I tried FF, Opera, Safari and IE 8, with varied >> forms of failure. Interestingly, Opera at least offered to start >> inkscape to view the image, which succeeded. The text on that image >> suggested it's specific to an adobe plugin -- which it plugs of >> course. >> >> Does somebody have a web page with SVGs that normal browsers with >> non-proprietary plugins/viewers _can_ view? > > http://www.w3schools.com/svg/svg_inhtml.asp > > This page has examples of 3 ways to do it (you should see blue > rectangles if SVG is rendering). All 3 examples work for me in Firefox > 3.0.11, Seamonkey 1.1.16, Opera 9.64, Konqueror 4.2.3 and Safari 4 > (all on Windows). Internet Explorer 8, naturally, requires a plug-in > to view SVG. All three examples show a solid blue rectangle in FF and Konqueror and go in a terrible loop of opening more and more tabs in Opera. -- Regards, Mick ^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] Re: SVG plugin 2009-06-15 16:02 ` Mick @ 2009-06-15 17:58 ` pk 0 siblings, 0 replies; 24+ messages in thread From: pk @ 2009-06-15 17:58 UTC (permalink / raw To: gentoo-user Mick wrote: > All three examples show a solid blue rectangle in FF and Konqueror and > go in a terrible loop of opening more and more tabs in Opera. You also have this: https://developer.mozilla.org/en/SVG_in_Firefox http://www.w3.org/Graphics/SVG/Test/20061213/ Best regards Peter K ^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] Re: SVG plugin 2009-06-15 14:57 ` Paul Hartman 2009-06-15 15:01 ` Paul Hartman 2009-06-15 16:02 ` Mick @ 2009-06-16 14:13 ` Kevin O'Gorman 2009-06-16 14:47 ` Paul Hartman 2009-06-16 14:51 ` Paul Hartman 2 siblings, 2 replies; 24+ messages in thread From: Kevin O'Gorman @ 2009-06-16 14:13 UTC (permalink / raw To: gentoo-user On Mon, Jun 15, 2009 at 7:57 AM, Paul Hartman<paul.hartman+gentoo@gmail.com> wrote: > On Mon, Jun 15, 2009 at 9:31 AM, Kevin O'Gorman<kogorman@gmail.com> wrote: >> I tried that Adobe site in FF on gentoo and ubuntu with the same >> non-result. On Vista, I tried FF, Opera, Safari and IE 8, with varied >> forms of failure. Interestingly, Opera at least offered to start >> inkscape to view the image, which succeeded. The text on that image >> suggested it's specific to an adobe plugin -- which it plugs of >> course. >> >> Does somebody have a web page with SVGs that normal browsers with >> non-proprietary plugins/viewers _can_ view? > > http://www.w3schools.com/svg/svg_inhtml.asp > > This page has examples of 3 ways to do it (you should see blue > rectangles if SVG is rendering). All 3 examples work for me in Firefox > 3.0.11, Seamonkey 1.1.16, Opera 9.64, Konqueror 4.2.3 and Safari 4 > (all on Windows). Internet Explorer 8, naturally, requires a plug-in > to view SVG. > > On Linux, my FF showed only the embed version, and that only after I got "NoScript" to stop blocking it. I wonder what's different on my system. Oh, and svg was enabled all along. -- Kevin O'Gorman, PhD ^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] Re: SVG plugin 2009-06-16 14:13 ` Kevin O'Gorman @ 2009-06-16 14:47 ` Paul Hartman 2009-06-16 14:51 ` Paul Hartman 1 sibling, 0 replies; 24+ messages in thread From: Paul Hartman @ 2009-06-16 14:47 UTC (permalink / raw To: gentoo-user On Tue, Jun 16, 2009 at 9:13 AM, Kevin O'Gorman<kogorman@gmail.com> wrote: > On Mon, Jun 15, 2009 at 7:57 AM, Paul > Hartman<paul.hartman+gentoo@gmail.com> wrote: >> On Mon, Jun 15, 2009 at 9:31 AM, Kevin O'Gorman<kogorman@gmail.com> wrote: >>> I tried that Adobe site in FF on gentoo and ubuntu with the same >>> non-result. On Vista, I tried FF, Opera, Safari and IE 8, with varied >>> forms of failure. Interestingly, Opera at least offered to start >>> inkscape to view the image, which succeeded. The text on that image >>> suggested it's specific to an adobe plugin -- which it plugs of >>> course. >>> >>> Does somebody have a web page with SVGs that normal browsers with >>> non-proprietary plugins/viewers _can_ view? >> >> http://www.w3schools.com/svg/svg_inhtml.asp >> >> This page has examples of 3 ways to do it (you should see blue >> rectangles if SVG is rendering). All 3 examples work for me in Firefox >> 3.0.11, Seamonkey 1.1.16, Opera 9.64, Konqueror 4.2.3 and Safari 4 >> (all on Windows). Internet Explorer 8, naturally, requires a plug-in >> to view SVG. >> >> > > On Linux, my FF showed only the embed version, and that only after I > got "NoScript" to stop blocking it. > I wonder what's different on my system. Oh, and svg was enabled all along. After having success with every browser (but IE) on Windows, here's my test results with the same browsers on Linux: SeaMonkey 1.1.16 - all 3 worked Firefox - Embed and Iframe work, but Object does not Konqueror 4.2.4 - all 3 worked Opera 10 beta - Embed and Iframe work, but Object does not. I think the reason why Opera and FF do not work in "Object" mode is because the example on the w3schools website is wrong. They use the "codebase" attribute as the "download location for the plug-in" but the HTML specs say "This attribute specifies the base path used to resolve relative URIs specified by the classid, data, and archive attributes." So, in other words, FF and Opera are trying to load "http://www.adobe.com/svg/viewer/install/rect1.svg" which does not exist, resulting in no blue rectangle. I'd be willing to bet both of these browsers would work with an Object-tag-embed SVG given a properly-formed example. ^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] Re: SVG plugin 2009-06-16 14:13 ` Kevin O'Gorman 2009-06-16 14:47 ` Paul Hartman @ 2009-06-16 14:51 ` Paul Hartman 2009-06-16 15:02 ` Paul Hartman 1 sibling, 1 reply; 24+ messages in thread From: Paul Hartman @ 2009-06-16 14:51 UTC (permalink / raw To: gentoo-user On Tue, Jun 16, 2009 at 9:13 AM, Kevin O'Gorman<kogorman@gmail.com> wrote: > On Linux, my FF showed only the embed version, and that only after I > got "NoScript" to stop blocking it. > I wonder what's different on my system. Oh, and svg was enabled all along. Do you guys have cairo built with the svg USE flag enabled? I think FF depends on that. I have "svg" in my global USE flags, FWIW. ^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] Re: SVG plugin 2009-06-16 14:51 ` Paul Hartman @ 2009-06-16 15:02 ` Paul Hartman 2009-06-16 20:02 ` Mick 0 siblings, 1 reply; 24+ messages in thread From: Paul Hartman @ 2009-06-16 15:02 UTC (permalink / raw To: gentoo-user On Tue, Jun 16, 2009 at 9:51 AM, Paul Hartman<paul.hartman+gentoo@gmail.com> wrote: > On Tue, Jun 16, 2009 at 9:13 AM, Kevin O'Gorman<kogorman@gmail.com> wrote: >> On Linux, my FF showed only the embed version, and that only after I >> got "NoScript" to stop blocking it. >> I wonder what's different on my system. Oh, and svg was enabled all along. > > Do you guys have cairo built with the svg USE flag enabled? I think FF > depends on that. I have "svg" in my global USE flags, FWIW. > also check for svg USE flag on gegl ^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] Re: SVG plugin 2009-06-16 15:02 ` Paul Hartman @ 2009-06-16 20:02 ` Mick 2009-06-16 20:19 ` Paul Hartman 0 siblings, 1 reply; 24+ messages in thread From: Mick @ 2009-06-16 20:02 UTC (permalink / raw To: gentoo-user [-- Attachment #1: Type: text/plain, Size: 702 bytes --] On Tuesday 16 June 2009, Paul Hartman wrote: > On Tue, Jun 16, 2009 at 9:51 AM, Paul > > Hartman<paul.hartman+gentoo@gmail.com> wrote: > > On Tue, Jun 16, 2009 at 9:13 AM, Kevin O'Gorman<kogorman@gmail.com> wrote: > >> On Linux, my FF showed only the embed version, and that only after I > >> got "NoScript" to stop blocking it. > >> I wonder what's different on my system. Oh, and svg was enabled all > >> along. > > > > Do you guys have cairo built with the svg USE flag enabled? Yes. > > I think FF > > depends on that. I have "svg" in my global USE flags, FWIW. > > also check for svg USE flag on gegl Hmm, I don't have gegl emerged. Is it needed? -- Regards, Mick [-- Attachment #2: This is a digitally signed message part. --] [-- Type: application/pgp-signature, Size: 198 bytes --] ^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] Re: SVG plugin 2009-06-16 20:02 ` Mick @ 2009-06-16 20:19 ` Paul Hartman 0 siblings, 0 replies; 24+ messages in thread From: Paul Hartman @ 2009-06-16 20:19 UTC (permalink / raw To: gentoo-user On Tue, Jun 16, 2009 at 3:02 PM, Mick<michaelkintzios@gmail.com> wrote: > On Tuesday 16 June 2009, Paul Hartman wrote: >> On Tue, Jun 16, 2009 at 9:51 AM, Paul >> >> Hartman<paul.hartman+gentoo@gmail.com> wrote: >> > On Tue, Jun 16, 2009 at 9:13 AM, Kevin O'Gorman<kogorman@gmail.com> wrote: >> >> On Linux, my FF showed only the embed version, and that only after I >> >> got "NoScript" to stop blocking it. >> >> I wonder what's different on my system. Oh, and svg was enabled all >> >> along. >> > >> > Do you guys have cairo built with the svg USE flag enabled? > > Yes. > >> > I think FF >> > depends on that. I have "svg" in my global USE flags, FWIW. >> >> also check for svg USE flag on gegl > > Hmm, I don't have gegl emerged. Is it needed? I guess not :) I thought it was in the firefox dep tree but now I'm not seeing it. I must have been looking at the wrong thing. ^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] SVG plugin 2009-06-15 12:30 ` Mick 2009-06-15 12:43 ` [gentoo-user] " Nikos Chantziaras @ 2009-06-15 13:30 ` Florian Philipp 2009-06-15 13:58 ` Mick 1 sibling, 1 reply; 24+ messages in thread From: Florian Philipp @ 2009-06-15 13:30 UTC (permalink / raw To: gentoo-user [-- Attachment #1: Type: text/plain, Size: 1532 bytes --] Mick schrieb: > 2009/6/15 Florian Philipp <lists@f_philipp.fastmail.net>: >> Mick schrieb: >>> Hi All, >>> >>> Trying to view a web page I produced some yonks ago, which at that the >>> time would utilise the Adobe SVG plugin to render a gantt chart. The >>> header of the file went like this: >>> ============================================= >>> <?xml version="1.0" encoding="iso-8859-1"?> >>> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000303 Stylable//EN" >>> "http://www.w3.org/TR/2000/03/WD-SVG-20000303/DTD/svg-20000303-stylable.dtd"> >>> <svg xml:space="preserve" width="10in" height="8in" >>> style="font-family:'Arial';font-size:8"> >>> ============================================= >>> >>> Adobe seem to have abandoned further development. Any idea what I can >>> use to render such a graphic (image/svg+xml) in a browser? >> Firefox supports svg out of the box, now. Maybe you need the svg >> USE-flag for x11-libs/cairo. > > Hmm, mozilla-firefox does not have an svg flag. Anyway, I have svg in > my /etc/make.conf and also have cairo installed: > > [I] x11-libs/cairo > > Installed versions: 1.8.6-r1!t(18:54:43 03/17/09)(X glitz opengl > svg -cleartype -debug -directfb -doc -xcb) > > It's not just FF, but also Opera and Konqueror cannot render it either > and ask to download a plugin. How did you put the svg into the web site? I know for certain that FF can render SVG (just try to open an SVG directly with FF). Have you put it into an <embed> or an <object> tag? [-- Attachment #2: OpenPGP digital signature --] [-- Type: application/pgp-signature, Size: 261 bytes --] ^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] SVG plugin 2009-06-15 13:30 ` [gentoo-user] " Florian Philipp @ 2009-06-15 13:58 ` Mick 2009-06-15 16:56 ` Florian Philipp 0 siblings, 1 reply; 24+ messages in thread From: Mick @ 2009-06-15 13:58 UTC (permalink / raw To: gentoo-user Thanks Philip, 2009/6/15 Florian Philipp <lists@f_philipp.fastmail.net>: > Mick schrieb: >> It's not just FF, but also Opera and Konqueror cannot render it either >> and ask to download a plugin. > > How did you put the svg into the web site? I know for certain that FF > can render SVG (just try to open an SVG directly with FF). Have you put > it into an <embed> or an <object> tag? ========================================== <P ALIGN=Center><TABLE BORDER=1><TR><TD> <EMBED WIDTH=564 HEIGHT=240 SRC=aprj1.svg PLUGINSPAGE=http://www.adobe.com/svg/viewer/install/> <NOEMBED><SMALL>SVG graphic not displayed. Browser does not support plugins. </SMALL></NOEMBED></TD></TR></TABLE></P> ========================================== When you go here: http://www.adobe.com/svg/viewer/install/svgtest.html Do you get to see the SVG graphics? It won't work on my machine. FF says "click here to download plugin". -- Regards, Mick ^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] SVG plugin 2009-06-15 13:58 ` Mick @ 2009-06-15 16:56 ` Florian Philipp 0 siblings, 0 replies; 24+ messages in thread From: Florian Philipp @ 2009-06-15 16:56 UTC (permalink / raw To: gentoo-user [-- Attachment #1: Type: text/plain, Size: 1490 bytes --] Mick schrieb: > Thanks Philip, > > 2009/6/15 Florian Philipp <lists@f_philipp.fastmail.net>: >> Mick schrieb: > >>> It's not just FF, but also Opera and Konqueror cannot render it either >>> and ask to download a plugin. >> How did you put the svg into the web site? I know for certain that FF >> can render SVG (just try to open an SVG directly with FF). Have you put >> it into an <embed> or an <object> tag? > > ========================================== > <P ALIGN=Center><TABLE BORDER=1><TR><TD> > > <EMBED WIDTH=564 HEIGHT=240 SRC=aprj1.svg > PLUGINSPAGE=http://www.adobe.com/svg/viewer/install/> > > > > <NOEMBED><SMALL>SVG graphic not displayed. Browser does not support plugins. > > </SMALL></NOEMBED></TD></TR></TABLE></P> > ========================================== > > When you go here: http://www.adobe.com/svg/viewer/install/svgtest.html > > Do you get to see the SVG graphics? It won't work on my machine. FF > says "click here to download plugin". Try something as simple as <object data="image.svg" type="image/svg+xml" width="200" height="200"> <param name="src" value="image.svg"> Your browser does not support SVG. </object> As far as I know, <embed> is deprecated. You have to state explicitly with which plugin you want to render it. Firefox notices that it doesn't have the plugin for which the link is given in your example and therefore stops to bother without even trying its own support. [-- Attachment #2: OpenPGP digital signature --] [-- Type: application/pgp-signature, Size: 261 bytes --] ^ permalink raw reply [flat|nested] 24+ messages in thread
end of thread, other threads:[~2009-06-16 20:19 UTC | newest] Thread overview: 24+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2009-06-15 11:08 [gentoo-user] SVG plugin Mick 2009-06-15 11:44 ` Florian Philipp 2009-06-15 12:30 ` Mick 2009-06-15 12:43 ` [gentoo-user] " Nikos Chantziaras 2009-06-15 14:31 ` Kevin O'Gorman 2009-06-15 14:44 ` Kevin O'Gorman 2009-06-15 14:51 ` Paul Hartman 2009-06-15 15:58 ` Mick 2009-06-15 15:34 ` Daniel da Veiga 2009-06-15 16:05 ` Mick 2009-06-15 14:48 ` Paul Hartman 2009-06-15 14:57 ` Paul Hartman 2009-06-15 15:01 ` Paul Hartman 2009-06-15 16:02 ` Mick 2009-06-15 17:58 ` pk 2009-06-16 14:13 ` Kevin O'Gorman 2009-06-16 14:47 ` Paul Hartman 2009-06-16 14:51 ` Paul Hartman 2009-06-16 15:02 ` Paul Hartman 2009-06-16 20:02 ` Mick 2009-06-16 20:19 ` Paul Hartman 2009-06-15 13:30 ` [gentoo-user] " Florian Philipp 2009-06-15 13:58 ` Mick 2009-06-15 16:56 ` Florian Philipp
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox