Hi guys (and gals), The code formatting is so nice on SO.com, so I thought I''d just share my post in hopes that someone from the group can help. http://stackoverflow.com/questions/9643786/cartographer-shows-correct-info-box-but-over-wrong-marker Feel free to answer back via email if you don''t have an SO account. Thanks! Abram -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Colin Law
2012-Mar-11 16:10 UTC
Re: Cartographer shows correct info box BUT over wrong marker
On 10 March 2012 21:12, Abram <funkdified-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Hi guys (and gals), > > The code formatting is so nice on SO.com, so I thought I''d just share > my post in hopes that someone from the group can help. > > http://stackoverflow.com/questions/9643786/cartographer-shows-correct-info-box-but-over-wrong-markerI may be wrong but I think that most here will not want to take the time to go over there to look at your problem. If you want to ask a question here it is best to ask it. Colin -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Thanks for that Colin. I am trying to create a map with markers for Dispensers pulled from the DB. I am able to successfully do this, however, whenever I click on the markers the info box always appears over the same marker. The CORRECT dispenser''s info box is popping up on the map, but over the wrong marker! Has anyone run across this issue? In my controller: def find_map @location = Location.new @location.address = params[:location][:address] @latlon = @location.geocode @dispensers = Dispenser.near(@latlon) @numrecords = 0 @lat = [] @long = [] @user_id = [] @dispensers.each do |x| @lat[@numrecords] = x.latitude @long[@numrecords] = x.longitude @user_id[@numrecords] = x.user_id @numrecords += 1 end @map = Cartographer::Gmap.new( ''map'') @map.zoom = :bound @icon = Cartographer::Gicon.new() @map.icons << @icon @count = 0 @numrecords.times do markername = "marker#{@count}" markername = Cartographer::Gmarker.new(:name=> "Business", :marker_type => "Building", :position => [@lat[@count], @long[@count]], :info_window_url => "/bio/#{@user_id[@count]}", :icon => @icon) @map.markers << markername @count += 1 end In my show.html.erb <%= raw Cartographer::Header.new.to_s %> <%= raw @map.to_html %> <div style="width:350px;height:250px;" id="map" > [Map]</div> Thanks again On Mon, Mar 12, 2012 at 5:10 AM, Colin Law <clanlaw-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> On 10 March 2012 21:12, Abram <funkdified-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> Hi guys (and gals), >> >> The code formatting is so nice on SO.com, so I thought I''d just share >> my post in hopes that someone from the group can help. >> >> http://stackoverflow.com/questions/9643786/cartographer-shows-correct-info-box-but-over-wrong-marker > > I may be wrong but I think that most here will not want to take the > time to go over there to look at your problem. If you want to ask a > question here it is best to ask it. > > Colin > > -- > You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. > For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Walter Lee Davis
2012-Mar-11 19:06 UTC
Re: Cartographer shows correct info box BUT over wrong marker
On Mar 11, 2012, at 2:56 PM, Abram wrote:> Thanks for that Colin. > > I am trying to create a map with markers for Dispensers pulled from > the DB. I am able to successfully do this, however, whenever I click > on the markers the info box always appears over the same marker. The > CORRECT dispenser''s info box is popping up on the map, but over the > wrong marker! Has anyone run across this issue? > > In my controller: > > def find_map > > @location = Location.new > @location.address = params[:location][:address] > @latlon = @location.geocode > @dispensers = Dispenser.near(@latlon) > @numrecords = 0 > @lat = [] > @long = [] > @user_id = [] > @dispensers.each do |x| > @lat[@numrecords] = x.latitude > @long[@numrecords] = x.longitude > @user_id[@numrecords] = x.user_id > @numrecords += 1 > end > > @map = Cartographer::Gmap.new( ''map'') > @map.zoom = :bound > @icon = Cartographer::Gicon.new() > @map.icons << @icon > > @count = 0 > @numrecords.times do > markername = "marker#{@count}" > markername = Cartographer::Gmarker.new(:name=> "Business", > :marker_type => "Building", > :position => [@lat[@count], @long[@count]], > :info_window_url => > "/bio/#{@user_id[@count]}", :icon => @icon) > > @map.markers << markername > @count += 1 > end > In my show.html.erb > > <%= raw Cartographer::Header.new.to_s %> > <%= raw @map.to_html %> > > <div style="width:350px;height:250px;" id="map" > [Map]</div> > > Thanks againValidate the rendered HTML in the W3C validator, see if you have duplicate HTML Element IDs somehow. That''s what this sounds like precisely. Walter> > On Mon, Mar 12, 2012 at 5:10 AM, Colin Law <clanlaw-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: >> On 10 March 2012 21:12, Abram <funkdified-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >>> Hi guys (and gals), >>> >>> The code formatting is so nice on SO.com, so I thought I''d just share >>> my post in hopes that someone from the group can help. >>> >>> http://stackoverflow.com/questions/9643786/cartographer-shows-correct-info-box-but-over-wrong-marker >> >> I may be wrong but I think that most here will not want to take the >> time to go over there to look at your problem. If you want to ask a >> question here it is best to ask it. >> >> Colin >> >> -- >> You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. >> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. >> > > -- > You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Walter. Thanks for your response. Unfortunately this doesn''t seem to be the problem. W3C came up clean! On Mon, Mar 12, 2012 at 8:06 AM, Walter Lee Davis <waltd-HQgmohHLjDZWk0Htik3J/w@public.gmane.org> wrote:> > On Mar 11, 2012, at 2:56 PM, Abram wrote: > >> Thanks for that Colin. >> >> I am trying to create a map with markers for Dispensers pulled from >> the DB. I am able to successfully do this, however, whenever I click >> on the markers the info box always appears over the same marker. The >> CORRECT dispenser''s info box is popping up on the map, but over the >> wrong marker! Has anyone run across this issue? >> >> In my controller: >> >> def find_map >> >> @location = Location.new >> -0tkTgdqk2ekIyNk/ANZRzA@public.gmane.org = params[:location][:address] >> @latlon = @location.geocode >> @dispensers = Dispenser.near(@latlon) >> @numrecords = 0 >> @lat = [] >> @long = [] >> @user_id = [] >> -6k2GQa5aYYuKYXroLCPkpQ@public.gmane.org do |x| >> @lat[@numrecords] = x.latitude >> @long[@numrecords] = x.longitude >> @user_id[@numrecords] = x.user_id >> @numrecords += 1 >> end >> >> @map = Cartographer::Gmap.new( ''map'') >> -OvhfqpQTThU@public.gmane.org = :bound >> @icon = Cartographer::Gicon.new() >> -6GU8fHoeZZb1P9xLtpHBDw@public.gmane.org << @icon >> >> @count = 0 >> -CiIAayBECNaJl7B6tgY4MQ@public.gmane.org do >> markername = "marker#{@count}" >> markername = Cartographer::Gmarker.new(:name=> "Business", >> :marker_type => "Building", >> :position => [@lat[@count], @long[@count]], >> :info_window_url => >> "/bio/#{@user_id[@count]}", :icon => @icon) >> >> -js6ocL750zZRFHODAJjncw@public.gmane.org << markername >> @count += 1 >> end >> In my show.html.erb >> >> <%= raw Cartographer::Header.new.to_s %> >> <%= raw @map.to_html %> >> >> <div style="width:350px;height:250px;" id="map" > [Map]</div> >> >> Thanks again > > Validate the rendered HTML in the W3C validator, see if you have duplicate HTML Element IDs somehow. That''s what this sounds like precisely. > > Walter > >> >> On Mon, Mar 12, 2012 at 5:10 AM, Colin Law <clanlaw-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: >>> On 10 March 2012 21:12, Abram <funkdified-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >>>> Hi guys (and gals), >>>> >>>> The code formatting is so nice on SO.com, so I thought I''d just share >>>> my post in hopes that someone from the group can help. >>>> >>>> http://stackoverflow.com/questions/9643786/cartographer-shows-correct-info-box-but-over-wrong-marker >>> >>> I may be wrong but I think that most here will not want to take the >>> time to go over there to look at your problem. If you want to ask a >>> question here it is best to ask it. >>> >>> Colin >>> >>> -- >>> You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. >>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. >>> >> >> -- >> You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. >> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. >> > > -- > You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. > For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Great news, I figured it out. In the code below I had to add #{@count} to the business name... I am assuming the marker location is set with position and the marker itself just gets attached to the marker with the same :name attribute, which is presumably the last marker created by the loop. Thanks! @numrecords.times do markername = "marker#{@count}" markername = Cartographer::Gmarker.new(:name=> "Business#{@count}", :marker_type => "Building", :position => [@lat[@count], @long[@count]], :info_window_url => "/bio/#{@user_id[@count]}", :icon => @icon) @map.markers << markername @count += 1 end On Mon, Mar 12, 2012 at 9:05 PM, Abram <funkdified-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Walter. Thanks for your response. Unfortunately this doesn''t seem to > be the problem. W3C came up clean! > > On Mon, Mar 12, 2012 at 8:06 AM, Walter Lee Davis <waltd-HQgmohHLjDZWk0Htik3J/w@public.gmane.org> wrote: >> >> On Mar 11, 2012, at 2:56 PM, Abram wrote: >> >>> Thanks for that Colin. >>> >>> I am trying to create a map with markers for Dispensers pulled from >>> the DB. I am able to successfully do this, however, whenever I click >>> on the markers the info box always appears over the same marker. The >>> CORRECT dispenser''s info box is popping up on the map, but over the >>> wrong marker! Has anyone run across this issue? >>> >>> In my controller: >>> >>> def find_map >>> >>> @location = Location.new >>> -0tkTgdqk2ekIyNk/ANZRzA@public.gmane.org = params[:location][:address] >>> @latlon = @location.geocode >>> @dispensers = Dispenser.near(@latlon) >>> @numrecords = 0 >>> @lat = [] >>> @long = [] >>> @user_id = [] >>> -6k2GQa5aYYuKYXroLCPkpQ@public.gmane.org do |x| >>> @lat[@numrecords] = x.latitude >>> @long[@numrecords] = x.longitude >>> @user_id[@numrecords] = x.user_id >>> @numrecords += 1 >>> end >>> >>> @map = Cartographer::Gmap.new( ''map'') >>> -OvhfqpQTThU@public.gmane.org = :bound >>> @icon = Cartographer::Gicon.new() >>> -6GU8fHoeZZb1P9xLtpHBDw@public.gmane.org << @icon >>> >>> @count = 0 >>> -CiIAayBECNaJl7B6tgY4MQ@public.gmane.org do >>> markername = "marker#{@count}" >>> markername = Cartographer::Gmarker.new(:name=> "Business", >>> :marker_type => "Building", >>> :position => [@lat[@count], @long[@count]], >>> :info_window_url => >>> "/bio/#{@user_id[@count]}", :icon => @icon) >>> >>> -js6ocL750zZRFHODAJjncw@public.gmane.org << markername >>> @count += 1 >>> end >>> In my show.html.erb >>> >>> <%= raw Cartographer::Header.new.to_s %> >>> <%= raw @map.to_html %> >>> >>> <div style="width:350px;height:250px;" id="map" > [Map]</div> >>> >>> Thanks again >> >> Validate the rendered HTML in the W3C validator, see if you have duplicate HTML Element IDs somehow. That''s what this sounds like precisely. >> >> Walter >> >>> >>> On Mon, Mar 12, 2012 at 5:10 AM, Colin Law <clanlaw-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: >>>> On 10 March 2012 21:12, Abram <funkdified-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >>>>> Hi guys (and gals), >>>>> >>>>> The code formatting is so nice on SO.com, so I thought I''d just share >>>>> my post in hopes that someone from the group can help. >>>>> >>>>> http://stackoverflow.com/questions/9643786/cartographer-shows-correct-info-box-but-over-wrong-marker >>>> >>>> I may be wrong but I think that most here will not want to take the >>>> time to go over there to look at your problem. If you want to ask a >>>> question here it is best to ask it. >>>> >>>> Colin >>>> >>>> -- >>>> You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. >>>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org. >>>> To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>> For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. >>>> >>> >>> -- >>> You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. >>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. >>> >> >> -- >> You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. >> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. >>-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
jay.gallivan-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
2012-Mar-12 13:53 UTC
Re: Cartographer shows correct info box BUT over wrong marker
<html> <head> <meta content="text/html; charset=ISO-8859-1" http-equiv="Content-Type"> </head> <body bgcolor="#FFFFFF" text="#000000"> You might find <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> <a href="https://github.com/apneadiving/Google-Maps-for-Rails">https://github.com/apneadiving/Google-Maps-for-Rails</a> worth a look. <br> <br> On 03/12/2012 03:12 AM, Abram wrote: <blockquote cite="mid:CAHon80xJqnLmzm3pVBAnGDSYGejxs7AvT0=jarjHnZX+a_2dSg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org" type="cite"> <pre wrap="">Great news, I figured it out. In the code below I had to add #{@count} to the business name... I am assuming the marker location is set with position and the marker itself just gets attached to the marker with the same :name attribute, which is presumably the last marker created by the loop. Thanks! @numrecords.times do markername = "marker#{@count}" markername = Cartographer::Gmarker.new(:name=> "Business#{@count}", :marker_type => "Building", :position => [@lat[@count], @long[@count]], :info_window_url => "/bio/#{@user_id[@count]}", :icon => @icon) @map.markers << markername @count += 1 end On Mon, Mar 12, 2012 at 9:05 PM, Abram <a class="moz-txt-link-rfc2396E" href="mailto:funkdified-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org"><funkdified-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org></a> wrote: </pre> <blockquote type="cite"> <pre wrap="">Walter. Thanks for your response. Unfortunately this doesn''t seem to be the problem. W3C came up clean! On Mon, Mar 12, 2012 at 8:06 AM, Walter Lee Davis <a class="moz-txt-link-rfc2396E" href="mailto:waltd-HQgmohHLjDZWk0Htik3J/w@public.gmane.org"><waltd-HQgmohHLjDZWk0Htik3J/w@public.gmane.org></a> wrote: </pre> <blockquote type="cite"> <pre wrap=""> On Mar 11, 2012, at 2:56 PM, Abram wrote: </pre> <blockquote type="cite"> <pre wrap="">Thanks for that Colin. I am trying to create a map with markers for Dispensers pulled from the DB. I am able to successfully do this, however, whenever I click on the markers the info box always appears over the same marker. The CORRECT dispenser''s info box is popping up on the map, but over the wrong marker! Has anyone run across this issue? In my controller: def find_map @location = Location.new @location.address = params[:location][:address] @latlon = @location.geocode @dispensers = Dispenser.near(@latlon) @numrecords = 0 @lat = [] @long = [] @user_id = [] @dispensers.each do |x| @lat[@numrecords] = x.latitude @long[@numrecords] = x.longitude @user_id[@numrecords] = x.user_id @numrecords += 1 end @map = Cartographer::Gmap.new( ''map'') @map.zoom = :bound @icon = Cartographer::Gicon.new() @map.icons << @icon @count = 0 @numrecords.times do markername = "marker#{@count}" markername = Cartographer::Gmarker.new(:name=> "Business", :marker_type => "Building", :position => [@lat[@count], @long[@count]], :info_window_url => "/bio/#{@user_id[@count]}", :icon => @icon) @map.markers << markername @count += 1 end In my show.html.erb <%= raw Cartographer::Header.new.to_s %> <%= raw @map.to_html %> <div style="width:350px;height:250px;" id="map" > [Map]</div> Thanks again </pre> </blockquote> <pre wrap=""> Validate the rendered HTML in the W3C validator, see if you have duplicate HTML Element IDs somehow. That''s what this sounds like precisely. Walter </pre> <blockquote type="cite"> <pre wrap=""> On Mon, Mar 12, 2012 at 5:10 AM, Colin Law <a class="moz-txt-link-rfc2396E" href="mailto:clanlaw-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org"><clanlaw-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org></a> wrote: </pre> <blockquote type="cite"> <pre wrap="">On 10 March 2012 21:12, Abram <a class="moz-txt-link-rfc2396E" href="mailto:funkdified-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org"><funkdified-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org></a> wrote: </pre> <blockquote type="cite"> <pre wrap="">Hi guys (and gals), The code formatting is so nice on SO.com, so I thought I''d just share my post in hopes that someone from the group can help. <a class="moz-txt-link-freetext" href="http://stackoverflow.com/questions/9643786/cartographer-shows-correct-info-box-but-over-wrong-marker">http://stackoverflow.com/questions/9643786/cartographer-shows-correct-info-box-but-over-wrong-marker</a> </pre> </blockquote> <pre wrap=""> I may be wrong but I think that most here will not want to take the time to go over there to look at your problem. If you want to ask a question here it is best to ask it. Colin -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to <a class="moz-txt-link-abbreviated" href="mailto:rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org">rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org</a>. To unsubscribe from this group, send email to <a class="moz-txt-link-abbreviated" href="mailto:rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org">rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org</a>. For more options, visit this group at <a class="moz-txt-link-freetext" href="http://groups.google.com/group/rubyonrails-talk?hl=en">http://groups.google.com/group/rubyonrails-talk?hl=en</a>. </pre> </blockquote> <pre wrap=""> -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to <a class="moz-txt-link-abbreviated" href="mailto:rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org">rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org</a>. To unsubscribe from this group, send email to <a class="moz-txt-link-abbreviated" href="mailto:rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org">rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org</a>. For more options, visit this group at <a class="moz-txt-link-freetext" href="http://groups.google.com/group/rubyonrails-talk?hl=en">http://groups.google.com/group/rubyonrails-talk?hl=en</a>. </pre> </blockquote> <pre wrap=""> -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to <a class="moz-txt-link-abbreviated" href="mailto:rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org">rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org</a>. To unsubscribe from this group, send email to <a class="moz-txt-link-abbreviated" href="mailto:rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org">rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org</a>. For more options, visit this group at <a class="moz-txt-link-freetext" href="http://groups.google.com/group/rubyonrails-talk?hl=en">http://groups.google.com/group/rubyonrails-talk?hl=en</a>. </pre> </blockquote> </blockquote> <pre wrap=""> </pre> </blockquote> <br> </body> </html> <p></p> -- <br /> You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.<br /> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org<br /> To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org<br /> For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.<br />