Display SVG challenge

Here’s a challenge to all you good rails programmers: how does one
display SVG images in Rails ? Now I realize many of you ignore SVG
since it “isn’t supported everywhere” but that is rapidly changing (it
is supported in Firefox since 1.5, it’s now in the Safari overnight
builds, and in IE under the SVG plugin - which is usually shipped but
not activated with the Adobe plugins.

Since SVG can be displayed in ordinary HTML (using <embed type=image/
svg+xml in Firefox), I can only think of 2 reasons that it is not
recognized under Rails:

  1. maybe Webrick or Mongrel doesn’t recognize it ?
  2. somewhere Rails doesn’t recognize the mime type - I’ve tried
    changing mime in 2 locations:
    a) in the environment.rb file under myproject/config
    adding Mime::Type.register “image/svg+xml” (also tried “application/
    xhtml+xml”)

b) in httputils.rb under /usr/lib/ruby/1.8/webrick/
adding “svg” => “image/svg+xml”

But no matter what I try the browser recognizes it is a svg file but
wants to just save it (indicative of a mime problem).

Can anyone solve this problem ?

Are you embedding the SVG image in HTML or serving it directly?

On 3/11/07, john [email protected] wrote:

svg+xml in Firefox), I can only think of 2 reasons that it is not

But no matter what I try the browser recognizes it is a svg file but
wants to just save it (indicative of a mime problem).

Can anyone solve this problem ?


Thanks,
-Steve
http://www.stevelongdo.com

well for icons - they are static svg files located in the /public/
images folder, but graphs will be generated dynamically based on data.

thanks for info - and perhaps if .svg is added to the yml mapping to
application/xhtml+xml it may work,
I’ll also try this in webrick (I thought I did but will double
check).

Getting closer I think - I applied the “.svg” => application/xhtml
+xml mapping to webrick httputils.rb and now I get empty scrollbars
when trying to display a SVG icon from the /public/images folder. I
played around with some sizes - but no luck. Any ideas ?

Mongrel seems to work with embedded SVG, IF you serve the page as .xhtml
which maps in Mongrel’s mimetypes.yml to application/xhtml+xml.

try this little chunk stolen from Sam Ruby’s (
application/atom+json ?) site:





<circle fill="#80a3cf" r="6.5" stroke="#FFF"/>

On 3/12/07, john [email protected] wrote:

b) in httputils.rb under /usr/lib/ruby/1.8/webrick/


Thanks,
-Steve
http://www.stevelongdo.com