using 3.1.0.rc5 (though same thing happened on rc4), asset pipeline is loaded with blueprint css (I just dumped it all into a sub-directory and loaded it in the manifest). All of my show something like <text> (href)... so for <a href"/my/page">woot</a> it renders woot (/my/page).... Anybody know WTH? Its gotta have something to do with blueprint, right? I thought it may be that "button as icons" plugin, though I deleted that out and restarted the server (thinking that sprockets does some caching or something) and nada. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/uv7OQAXiSa8J. 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.
Wojtek Augustynski wrote in post #1013139:> using 3.1.0.rc5 (though same thing happened on rc4), asset pipeline is > loaded with blueprint css (I just dumped it all into a sub-directory and > loaded it in the manifest). > All of my show something like <text> (href)... so for <a > href"/my/page">woot</a> it renders woot (/my/page)....Did you mean.... <a href="/my/page">woot</a> or did you really have <a href"/my/page">woot</a> -- 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.
Comment the part where you include the application.css in your application.html.erb. I had the same problem, as I was also using blueprint-css. Hope it helps. Cheers Jatin On Tue, Jul 26, 2011 at 11:52 AM, Robert Walker <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org>wrote:> Wojtek Augustynski wrote in post #1013139: > > using 3.1.0.rc5 (though same thing happened on rc4), asset pipeline is > > loaded with blueprint css (I just dumped it all into a sub-directory and > > loaded it in the manifest). > > All of my show something like <text> (href)... so for <a > > href"/my/page">woot</a> it renders woot (/my/page).... > > Did you mean.... > > <a href="/my/page">woot</a> > > or did you really have > > <a href"/my/page">woot</a> > > -- > 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. > >-- 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.
Yeah...typo on my part (links are naturally auto-generated and fine)... Its deffinetly blueprint.css... I moved it out to vendor/assets/stylesheets though I''m at a loss on how to "require" it... I thought sprockets has that in its load path (according to http://ryanbigg.com/guides/asset_pipeline.html) though it doesn''t seem to be picking up anything there... (though my links are fine without blueprint there :) -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/tP4JhI0iq7IJ. 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.
Wah, wah, wah, wah..... Apperently its a bug with the print.css: http://agilewarrior.wordpress.com/2011/07/10/rails3-1-link-problem-with-strange-hrefs/ http://stackoverflow.com/questions/6146755/rails-3-1-link-to-weird-issue ..... huh... oh well. I''m still a little puzzled as to the sprockets load path dealie.... I would think that anything in app/assets/** is supposed to be there IF it requires processing (.coffee, .scss, .erb). Though I couldn''t find any resources out there on how to manage the manifest files to load the static asset files in lib/assets and vendor/assets. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/uQ1sqaN3vlAJ. 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.