Erwin
2011-Dec-28 18:05 UTC
very strange haml behavior , display fine w html.erb , not in html.haml
when I display in an html page : <div class="contact_map"> <iframe width="276" height="180" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps? ie=UTF8&f=q&source=s_q&hl=en&geocode=&q=crach, +morbihan, +56950,+france&aq=&sll=37.0625,-95.677068&sspn=37.325633,62.050781&vpsrc=0&ie=UTF8&hq=&hnear=Crac''h, +Morbihan,+Brittany, +France&t=m&z=12&ll=47.616486,-3.000283&output=embed"></ iframe> </div> I get it right, but not in haml : .contact_map %iframe{:width => "276", :height => "180", :frameborder => "0", :scrolling => "no", :marginheight= => "0", :marginwidth => "0", :src => "http://maps.google.com/maps? ie=UTF8&f=q&source=s_q&hl=en&geocode=&q=crach, +morbihan, +56950,+france&aq=&sll=37.0625,-95.677068&sspn=37.325633,62.050781&vpsrc=0&ie=UTF8&hq=&hnear=Crac''h, +Morbihan,+Brittany, +France&t=m&z=12&ll=47.616486,-3.000283&output=embed"} is there any reason ? obvious ? hope to display it this year ... Happy 2012 ! -- 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
2011-Dec-29 21:32 UTC
Re: very strange haml behavior , display fine w html.erb , not in html.haml
On 28 December 2011 18:05, Erwin <yves_dufour-ee4meeAH724@public.gmane.org> wrote:> when I display in an html page : > > <div class="contact_map"> > <iframe width="276" height="180" frameborder="0" scrolling="no" > marginheight="0" marginwidth="0" src="http://maps.google.com/maps? > ie=UTF8&f=q&source=s_q&hl=en&geocode=&q=crach, > +morbihan, > +56950,+france&aq=&sll=37.0625,-95.677068&sspn=37.325633,62.050781&vpsrc=0&ie=UTF8&hq=&hnear=Crac''h, > +Morbihan,+Brittany, > +France&t=m&z=12&ll=47.616486,-3.000283&output=embed"></ > iframe> > </div> > > I get it right, but not in haml : > > .contact_map > %iframe{:width => "276", :height => "180", :frameborder => > "0", :scrolling => "no", :marginheight= => "0", :marginwidth => > "0", :src => "http://maps.google.com/maps? > ie=UTF8&f=q&source=s_q&hl=en&geocode=&q=crach, > +morbihan, > +56950,+france&aq=&sll=37.0625,-95.677068&sspn=37.325633,62.050781&vpsrc=0&ie=UTF8&hq=&hnear=Crac''h, > +Morbihan,+Brittany, > +France&t=m&z=12&ll=47.616486,-3.000283&output=embed"} > > > is there any reason ? obvious ? hope to display it this year ...Have a look at the html of the page (View > Page Source or similar in browser) in each case and compare them. They must be different. 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.
Kad Kerforn
2012-Jan-05 13:10 UTC
Re: very strange haml behavior , display fine w html.erb , not in html.haml
Colin Law wrote in post #1038772:> Have a look at the html of the page (View > Page Source or similar in > browser) in each case and compare them. They must be different. > > ColinThanks Colin .. they were different using HTML, in the iframe src url, I had : maps?ie=UTF8&f=q&source=s_q ..... # & !!! I was using ALSO & in HAML ! .. the correct way is only the "&" ampersand character... maps?ie=UTF8&f=q&source=s_q ..... # only & thanks a lot for pointing me in the right direction and read read read again the generated code .. Happy New Rails Year ! -- Posted via http://www.ruby-forum.com/. -- 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.