HAML is a markup language that’s used to cleanly and simply describe the HTML of any web document without the use of inline code. It can be used as a standalone HTML generation tool or as a template rendering engine in a web framework such as Ruby on Rails or Ramaze.

learn more… | top users | synonyms

-1
votes
0answers
7 views

How to use html2haml reading from stdin? [closed]

I saw documentation option -s But I don't understand how to use it, a example would help me so much. Also when I write html2haml terminal seems expecting input, like if -s were not needed.
0
votes
0answers
8 views

Padrino remote js form rendering as text instead of js

I'm learning to use padrino with haml and I get this weird behaviour while working with remote forms. The partial used for creation of an element works like a charm but the one used after the update ...
1
vote
2answers
42 views

Rails 3.0 undefined local variable when rendering a partial

I'm working with a Rails 3.0.20 app and I'm trying to pass a local variable through a partial and it's displaying 'undefined local variable' I've had a look at the other posts on this issue and ...
1
vote
1answer
39 views

Executing JavaScript in a Haml form using Rails

I am trying to use jquery.datetimeentry and I am a newbie having trouble with the javascript. if I put: $(function () { $.datetimeEntry.setDefaults({spinnerImage: 'spinnerDefault.png'}); ...
3
votes
2answers
1k views

Generating unique HTML ids in Rails when using a repeated partial that has form_for

I have a view on my current project which does something like the following(in haml): -@horses.each do |horse| = render :partial => 'main/votingbox', :locals => {:horse => horse} The in ...
2
votes
1answer
39 views

multiline code block in markdown adds unwanted tabs

today I'm implementing my page in nanoc (haml templates) and I wanted to write some posts in markdown, but when it goes to multiline code blocks something weird is happening - second line in code ...
3
votes
2answers
6k views

Haml render multiple partials in layout

How can I make the code indent correctly? app/views/layouts/shared.html.haml: = render :partial => "shared/head" = yield = render :partial => "shared/footer" ...
0
votes
0answers
26 views

Rails doesnt log tempalte errors in development mode

My Rails 3.2.9-app does not show any specific error information to me on errors in templates! It doesn't matter if I use haml or erb, I am always getting "We're sorry, but something went wrong". In ...
1
vote
1answer
42 views

Rails HAML div as link -> not getting it worked

I try to make a complete DIV as a link, but it is just working. This is what I have: = link_to (user_orders_path(current_user)) do .current_orders.box.tile.one_third.lightblue .count ...
3
votes
2answers
42 views

Unescaping HAML in an Attribute Hash

I have a problem similar to some I've found on stackoverflow, but not quite the same. I'd like to avoid the solution to the following question: http://stackoverflow.com/a/10407782/996587 Basically, ...
0
votes
2answers
485 views

unnecessary debug info in rails view

In my rails app I'm displaying some posts using nested loops. In development mode, after each loop completes the post objects are dumped in plain text in sequence. So it looks like this: It's ...
2
votes
2answers
193 views

Haml::Engine.render will not place content from block inside proper containing element

Let's first start with a code snippet to explain the issue: = Haml::Engine.new('#bar= yield').render do this should show up inside div#bar, right? Given that code and according to the ...
-2
votes
2answers
38 views

Comment model form not working [closed]

i'm learning Rails by doing social app called bloggers. I have problem with my comment model. Comment model is associated with models: post and user. comments controller: class CommentsController ...
1
vote
4answers
740 views

Bootstrap modal's data-dismiss on close modal not closing audio in mozila and IE

I am using bootstrap modal pop up for showing audio/videos attached in the project. On clicking the cancel button the modal should close and the audio should stop playing. This is working correctly in ...
3
votes
2answers
2k views

Include inline JS in HAML

I'm not up on my HAML. Wondering how I can write something like this to include in a template while I'm hacking on it, but in HAML? <script type='text/javascript'> $(document).ready( function() ...
1
vote
2answers
41 views

Rails: submit form with nested attributes throws 'couldn't find entity with id=xxx'

I got the following model classes: class Movie < ActiveRecord::Base has_and_belongs_to_many :actors accepts_nested_attributes_for :actors, :allow_destroy => true ... end and class ...
0
votes
1answer
30 views

Multiple input field for multiple forms for multiple users

I am trying to create a small accounting system. Here I have some products. Each month I want to write down how many of each product each user bought. Lets say I have 3 users and 4 products. I want a ...
-1
votes
0answers
21 views

Sass only converting to .sass, not .scss using prompt sass-convert [closed]

So I'm on Windows and working from standard cmd prompt, though the issue seems like it would be applicable to any POSIX prompt as well. The language for either with sass is identical. So the ...
-1
votes
0answers
16 views

Haml javascript editor for text area in rails app [closed]

Are there any good solutions for rails apps, like JCE for joomla etc... ? I need to add editing tools to my text area, but main trouble is that all of them work only with simple and pure html but ...
2
votes
2answers
148 views

AngularJS and Rails template engines

As a Rails guy, I love me some Haml or Slim. However, I haven't had much luck with either when it comes to using AngularJS. Is there a templating engine that is AngularJS friendly and is less verbose ...
0
votes
1answer
45 views

pass variables to controll and save to database

I'm able to pass the variables to the controller but I think my method is incorrect. I have Referrals where a reply can be applied to a referral, in the routes I have nested the replies inside ...
0
votes
1answer
44 views

Yeoman watching HAML files, but not compiling

When using grunt-contrib-haml, I can get Grunt to watch for HAML changes, but nothing is generated to HTML. What do I need to add to Gruntfile.js file to get this to occur?
5
votes
4answers
941 views

HAML nesting tags

I'm trying to nest this %h1 Admin Menu %small logged in as: #{session[:username]} To get something like this <h1>Admin Menu <small>logged in as: ...
1
vote
2answers
44 views

HAML putting a partial inside previous div

I'm using a layout for the landing area of my site, and on that I'm using the devise_controller? method to add #login & .span.offset4 that tell the Devise views to move to the middle and set a ...
0
votes
3answers
23 views

How do I set the ID in a link_to tag in haml?

I've tried = link_to 'foo', :action => 'bar', :id => 'foobar' But ID only seems to modify the href, resulting in <a href="controller/foobar/bar">foo</a> How do I set the ID ...
0
votes
1answer
35 views

ng-show is not working within HAML template on Internet Explorer 7

I have the following minimum failure case: %span.add-on - if planned_date.blank? %i.icon-calendar - else if successful %i.icon-calendar.foo ...
0
votes
1answer
60 views

create a button that pulls a table id and user id

I have a page that has a list of referrals on it. I have a button on each of the referrals that is set to reply to the referral. I don't need any pop up or form to show except for a flash message to ...
0
votes
3answers
47 views

How to disable Checkbox unless one checkbox is clicked

i have two check boxes, when one check box is clicked then the other one must be enable otherwise it should be disabled (both check box and text) HAML code: %label.checkbox = check_box_tag ...
-1
votes
0answers
16 views

how can I get the result of a post submit using ajax with haml for ruby?

Ive done a little form that submits some information, and depends of it returns true or false, the problem is that I dont know how to how to read that information that is given back... there is any ...
0
votes
1answer
37 views

radio button counter in database

Ruby on Rails beginner here. extremely simple question.I have a form with 4 radio buttons. a,b,c,d. everytime a user selects one of the four options and hits submit,i want the value incremented by 1 ...
0
votes
1answer
26 views

HAML Form For Rails

I'm currently trying to convert an ERB layout to HAML. This is the error I keep receiving: index.html.haml:18: syntax error, unexpected ')' ));}\n #{_hamlout.format_... Here is the HAML ...
0
votes
0answers
25 views

Haml nesting with rendered partial in Rails

Consider a partial.haml like this: - haml_tag :body, {:id => @instance_var} What I'm trying to do is to nest haml content under a rendered partial. Something like: = render 'partial_file' do ...
0
votes
4answers
35 views

how can I enable my form to use ajax in ruby on rails using haml?

I am trying to create a form to send data via ajax and order to update a user (I used scaffolds, so the methods for update already exist). I created my form and I did something like this %form{ ...
0
votes
1answer
37 views

Render haml with locals and partials within partials to html file

I need to create some html files and want to use my partials already done to the show view. I used to do this with markaby, but now i think that with haml the thing will be easier. I'm trying to do: ...
6
votes
4answers
2k views

Rendering HAML partials from within HAMLoutside of Rails

I'm using HAML to generate some static html pages for a site, and I was wanting to split out common components into partials that I can include in multiple pages, just like in Rails. However I don't ...
3
votes
3answers
528 views

Using rails methods with Haml::Engine

I want to have a rake task that reads a HAML file and creates a static html file out of it. The reason for this is that I want to dynamically localize my error pages in a manner described here ...
0
votes
1answer
35 views

Issue mixing jquery, rails, and haml

I'm converting an html.erb into html.haml. I have some jquery in an erb which is.. :javascript $(".level").live("click", function() { //..some code <% if @milestone %> milestone ...
0
votes
2answers
28 views

Inline conditional statement using haml css

How do you write inline if else in haml/css? Here is my working code: - if unit > 10 = value - else .unit = value I tried to make it inline like the below, but that doesnt work: ...
0
votes
2answers
48 views

how can I specify controller and method in a link using haml with rails?

I am new in ralis, and I am trying to create a link in what calls an specific method of a specific controller, in this case car and method add_to_cart sending a parameters, unfortunately I dont know ...
0
votes
1answer
69 views

jQuery stepper doesn't trigger the change function

I want to toggle the visibility of the submit button on change of input fields. Since the HTML5 input type="number" is not supported in firefox, I use the stepper jQuery plugin. The submit button ...
0
votes
1answer
41 views

Why does Ruby on Rails Create Unformatted HTML Code?

I'm working on a ruby on rails app and i noticed that the HTML output isn't formatted, it's just flat. I'm using HAML and running Rails 4.0.0rc1, this also happened on 3.2.x and I am using Heroku and ...
-2
votes
1answer
48 views

Sinatra/Ruby new to programming - increasing an integer if a radio button is selected

I am very new to this and I am trying to do something pretty simple but I am not sure where to begin. I simply need to increase the "vote" count of a newly posted link from 0 to 10 if a radio button ...
0
votes
1answer
25 views

In this Rails app view loop, how can I include CSS button styling?

I want the "complete" below to have a fake button styling, basically a border and a colored interior. What would be the best way to do this? I tried to suffix class: 'btn btn-mini' but that doesn't ...
5
votes
4answers
1k views

What is a good Ruby on Rails forum that can easily integrated to an existing application?

What is a good, open source RoR 3 forum that can easily integrated to an existing application? Optional features: OpenID support Haml/SCSS templates Support for smilies, YouTube, images, etc I'm ...
3
votes
1answer
395 views

Haml for rails, Use 'haml' gem alone or with 'haml-rails'

I am making the switch to Haml for our rails 3.1 application, and I wonder what is bringing to the table by the 'haml-rails' gem against 'haml' alone, apart rails generators? It says that it preloads ...
2
votes
2answers
351 views

Possible to “watch” both HAML and SASS at the same time?

I'd like to be able to update/save both my html and css on-the-fly, but I can't figure out how to watch both HAML and SASS at the same time. Thanks!
0
votes
2answers
257 views

How to practice HAML and SASS (environment)

Could you please give me advice how its better to practice HAML and SASS. I`ve downloaded and installed everything for windows and i can compile files and use it via command line. But still i want to ...
0
votes
0answers
33 views

replaceWith is not working but append works

this is my html .advise-needed .replace-advise-needed %h2 Advice there is a form which I submit and on successful ajax submission the form should change the value this is my jquery ...
2
votes
3answers
1k views

Support for live preview of Haml in Coda or Espresso?

I just discovered the beautiful Haml and Sass, and want to develop in these languages but with live previews. Coda and Espresso both allow for beautiful live previews of HTML files, but previews of an ...
0
votes
1answer
85 views

Navigation bar in Sinatra with Haml

I have a small Sinatra app using haml. I'd like to have a navigation bar on each page that will contain the menu, search, and directional scrolling arrows. Since this will be on every page I assume ...

1 2 3 4 5 33