0
votes
2answers
71 views

displaying session variable in alert message

I currently have this in my controller: if c.save session[:success] = "Career updated successfully." redirect_to "/career" And this in my view: - if session[:success] ...
0
votes
1answer
68 views

Rails view is viewing too much data

I have such RoR view (on haml): -if @articles.blank? %h3 Увы, нет артикулов в данной категории -else - @constr_num.each do |cc| = cc.ARL_SEARCH_NUMBER %table.zebra %tr %th ...
0
votes
1answer
695 views

HAML - syntax error, unexpected keyword_ensure

In the part of code below I am still getting this error: syntax error, unexpected keyword_ensure, expecting $end): 17: %input.btn.btn-primary{:name => "commit", :type => "submit", :value ...
11
votes
1answer
3k views

Rails 3.2 - haml vs. erb. Is haml faster? (february 2012)

I am working on a project and I am still thinking about using HAML (beautiful code, less size of view files) instead of classic ERB template. My worries why I didn't do it yet are the speed of ...
2
votes
1answer
389 views

Rails 3 - HAML Block Passed to Partial Rendered in Original Context instead of Partial

I have a partial that renders a table that I want to reuse on various pages. Some of the views using it need to insert additional columns, so I created helper methods for adding and retrieving new ...
2
votes
2answers
394 views

Rendering haml partials takes a long time… why?

My Rails 3.0 app on ruby 1.8.7 contains Haml 3.1.3. Most of the views are haml templates, it takes about 0.5-5ms to render them on my machine in production mode. Having said that, a few partials take ...
1
vote
1answer
696 views

The line was indented 2 levels deeper than the previous line. HAML

=image_tag('/images/public_stream_page/overlay_image.png', :onload=>"document.getElementById('dd_mid_right_box_public').style.background='url(#{stream.asset.url(:normal)})';") This is my haml ...
4
votes
1answer
745 views

Use cases for the different Padrino haml helpers

I read http://www.padrinorb.com/guides/application-helpers but I'm unclear as to what are the use cases for each of the view helpers. Specifically, how do content_for/yield_content, render/partial, ...
0
votes
1answer
370 views

Rails upgrade: rxml file rendered instead of haml file

I'm upgrading an old Rails 1.x app to 2.3.10, and I'm running into a problem with rendering views. I have a controller that has two views associated with it: index.haml and index.rxml. Before the ...
6
votes
4answers
2k views

Alternatives to ERB

I'm getting more heavily into RoR development. ERB doesn't quite feel right to me. I did this once before with JSP. Embedding Ruby code within my markup doesn't feel like a good plan even if the logic ...
13
votes
4answers
8k views

rendering a partial from a haml file

I have a simple sinatra app that uses haml and sass for the views. One of the views (located in the views folder) is a partial for my navigation menu. I am trying to render it from index.haml but I ...
5
votes
2answers
2k views

Conditional tags with HAML

I have this haml: .kudobox %div.kudos= number_to_human_size_not_bytes kudos %div= (kudos == 1 || kudos == -1) ? "kudo" : "kudos" Now I want the .kudobox have a positive, negative or zero class, ...