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.
2
votes
2answers
70 views
Why isn't this simple Ruby code working in HAML?
If I run this simple Ruby code regularly, it works fine:
class String
def add_two
self + "2"
end
end
puts "hello".add_two
It prints "hello2" as it should. But this fails:
:ruby
class ...
1
vote
4answers
727 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 ...
0
votes
1answer
192 views
append and prepend with simple-form and bootstrap
I need to be able to use simple form input tag using a bootstrap append and prepend. I can do it with one easily but not getting them both to work. Is this possible.
here is what I have using haml ...
0
votes
2answers
43 views
Why does HAML code usually use Ruby symbols (:http_equiv, :content) instead of plain strings (“http_equiv”, “content”)?
HAML code usually uses symbols, like this:
%meta{:http_equiv=>"Content-Type", :content=>"text/html; charset=utf-8"}
But why isn't it like this, using strings instead?
...
0
votes
2answers
76 views
Using I18n markdown strings in HAML
I have localised markdown strings in my language file, and I am looking for a cleaner way to do the following in HAML:
#text_for_something
:markdown
#{ t(:text_in_markown) }
Or, equivalently:
...
1
vote
1answer
84 views
jquery remove particular accordion class
This code runs fine in fiddle:
You can expand/collapse all items and also expand/collapse individual items.
Now I have added some logic in ruby (i cannot add that in jsfiddle)
.accordion-body{id: ...
0
votes
1answer
52 views
concatenated i18n string with variabele in HAML
this is my code
%ul.thumbnails
%li.span3
%header
%h2
= link_to t('homepage.house.link'), houses_path
i have a variabele @country.name. How can i 'add/concatenated' this ...
1
vote
0answers
53 views
Conditional Top Level Tags HAML w/o using partials
What is an elegant way to conditionally add a higher level html element without repeating the inner contents? How can this be achieved without using partials (all content in one file)?
For example, ...
1
vote
1answer
70 views
Rails: Form with conditional required field
I'm relatively new to RoR. I got the following source in haml
= form.text_field :country, 'Country'
= form.text_field :state, 'State', :placeholder => 'optional'
but the :state filed is not ...
0
votes
1answer
77 views
jquery collapse all does not work when combined with HAML format
My Exapand All button works fine (collapses and expands) in the following jsfiddle.
http://jsfiddle.net/HqXMN/6/
But the Expand all/Collapse all feature does not work when used in a HAML format.. I ...
0
votes
1answer
34 views
Using to_sentence with HAML and mongoid
I know this should be pretty simple, but I am new to ruby, haml, and rails.
I want to display a list of the locations, for a specific lawyer. I want convert them `to_sentence' so there are commas ...
0
votes
1answer
76 views
Increase the width of div ignoring the width of container-parent (and use x scrollbar)
Let me explain with madskillz.
The current status
I'm doing a gallery which is formed by array of urls.
Haml code:
%section#content
%form
%fieldset
#gallery
%i.gallery_title ...
0
votes
2answers
47 views
how to get rid of bullet in haml ul
so here's an ul in haml that I have
.content
.testing
.testing-ul2
%ul
%li
a
b
c
.testing-ul2
%ul
%li
d
...
1
vote
3answers
90 views
boolean value in ruby on rails
I've declared some simple boolean field in my model/user.rb
class User < ActiveRecord::Base
attr_accessible :name, :has_car
def init(age)
if age > 18
has_car = true
else
has_car = ...
1
vote
1answer
32 views
creating a th tag in haml with an id that is a Ruby variable
I have a table in haml and I would like the id of a table header to be able to change according to a ruby variable @title_id.
In pseudo-code, this is what I am trying to accomplish:
%th.@title_id
0
votes
0answers
41 views
Setting color codes on middleman but is being read as a Comment or String. [closed]
I have this code
On my layout.haml
:css
.caption {
background-color: @title_color;
}
and on my /source/pages/index.html.haml I have,
- @title_color = #000
But the output is
...
1
vote
1answer
41 views
I'm trying to do an 'each do' code that will generate my alt, src and title in the same line
Hi how do u achieve this one on Ruby HAML, I'm trying to do an 'each do' code that will generate my array collection of alt, src and title in the same line but I ran out of idea on how to do it.
...
0
votes
1answer
232 views
Buttons on the same line in twitter bootstrap
There are buttons and one button group
%button.btn{type: :submit}button1
%button.btn{type: :submit}button2
%button.btn{type: :submit}button3
.btn-group{"data-toggle" => "buttons-radio"}
...
0
votes
2answers
140 views
Rails Haml form url parameter - how to make html form use the desired rails route
With the HAML code:
%form{:action => "activate_foobar", :method => :post, :controller => "foobar", :url => activate_foobar_foobar_index_path}
%input{:type => "submit", :value => ...
0
votes
2answers
103 views
How to write haml code for corresponding javascript?
Here is the haml that i have created out of html. But it doesn't seem to give any output. Please help me to find out the error. May be I am going somewhere wrong with the syntax or not getting what ...
0
votes
0answers
82 views
Rails : JST and HTML from HAML
We have an app that must serve templates in 2 ways, .html, for pages rendering on the server, and JST for client side rendering. All pages must have that capability.
So, we want to write HAML files, ...
1
vote
2answers
123 views
Rails & Haml - Passing data to javascript
I am trying to pass data from my haml views to javascript. In my welcome controller I have index method. In my index.html.haml view file I have the below:
:javascript
window.putalert = "#{ "Data" ...
0
votes
1answer
49 views
Weird issue with i18n rails haml
I was looking into How to use rails-i18n with HAML to find out how i18n works together with haml but ran into an issue I can't figure out.
This works:
en.yml
en:
sitename: "Happy Sunday"
...
0
votes
0answers
53 views
rails haml collection_select with each
How can I use this haml view with each method.
%li.string.required
%label Coupon :
= f.collection_select :coupon_id, DiscountCoupon.all, :id, :coupon_no, {:include_blank => true}
My ...
0
votes
2answers
37 views
which code I should put into a partal in rails
Ideally the code which is reusable, that we can put into a septate partial and can call it from different actions.
Now, if my parial _list.html.haml file has code
#betting_list
%table.table
...
1
vote
1answer
118 views
using middleman framework, can;t make this code work on my project. (generating navigation)
Hi guys, I can't seem to make this code work on my project.
This is the code in my config.rb
active_nav = {:class => "Active"} // Changed it to nav_active hoping it would work but it didn't.
...
0
votes
1answer
27 views
How to cache PHP code being called from the database?
I've got some pages (or "nodes" in Drupal parlance) that have the content of a PHP function which calls an external library to render a HAML template. These nodes (meaning the actual <?php ?> ...
0
votes
0answers
124 views
Object app/index.haml has no method forEach [closed]
I used yeoman-angularjs-haml - https://github.com/vlad/yeoman-angularjs-haml
I installed needed module 'grunt-haml'
sudo npm install grunt-haml
I started yeoman server
yeoman server
and ...
0
votes
1answer
75 views
Haml “Illegal nesting” after extracting partial [closed]
Here is what works:
%ol
- if not retailer.approved?
%li.pending
= render partial: 'domain_request_form', locals: { retailer: retailer }
- else
%li.live
shopa has verified ...
1
vote
0answers
52 views
Filter "coffee is not defined error in HAML 4
For some reason my deployed rails app is now giving me a:
Haml::Error in Explore#index
Filter "coffee" is not defined.
...after updating to latest version rails and latest haml 4.
Locally, I do ...
0
votes
2answers
86 views
haml: how to nest elements within %a tag?
I would like to wrap an event div in a %a tag to make the whole clickable.
This block:
= link_to event_path(event.id) do
.flipper
.event-inner
...
Compiles to:
<div ...
0
votes
1answer
67 views
HAML + Bootstrap div.row and div.spanX, new row every N elements
I found this question, which has an answer which is exactly what I tried to start. However, it does not yield the intended results.
Given array @items, I want to create a new row for every 3 items. ...
0
votes
1answer
88 views
HAML markdown rendering and showing ERB within
I have this in one of my HAML templates:
:markdown
#{render 'home.md'}
and in home.md I have:
There are **#{@photo_count}** photos.
When viewing the site, it literally outputs that. How can I ...
0
votes
1answer
94 views
each_with_index not working correct
i want the first element of the each loop to be "active" and wrap it with a active css class. I tried this, but every item is active now. What a i doing wrong?
#myCarousel.carousel.slide
...
0
votes
1answer
71 views
Haml: for whom is it? [closed]
In professional development different people make code for web applications and HTML for views. First are programmers and second are HTML markup developer with basic programming skills, but with good ...
0
votes
1answer
61 views
Sinatra image displaying issue
Here is parts of my view code (haml):
%link{rel:'stylesheet', href:'/screen.css', type:'text/css', media:'screen'}
%img{scr:'/tile.jpg'}
The ./public folder contains files
screen.css and tile.jpg
...
0
votes
2answers
36 views
Running a haml file
I have a rails app, that has a haml file in the view. I would like to see the haml file in the browser, what is the correct way of doing this?
I have started up rails s
using http://localhost:3000
...
2
votes
2answers
49 views
How do I stay DRY with HAML?
I have HAML installed with Rails. I'm trying to extend the functionality of it by making snippet-templates. For example I have this general image structure:
- @images.each do |image|
.image
%a{ ...
0
votes
2answers
79 views
How to render js using haml rails
I'm using haml and before i haven't any experience with haml. I'm fire ujs call whose code are below
= link_to "this is the best",cast_vote_cast_votes_path(job_application.id),:id => ...
4
votes
1answer
229 views
Mthaml composer package with Laravel 4 - Howto?
Original: Has anyone figured out, or is there anyone interested in helping me figure out how to use haml with Laravel 4?
Update: A fresh implementation of Laravel 4 using HAML(MtHaml) is being ...
1
vote
1answer
55 views
How to make the check box checked by default when using check_box_tag?
= form_tag movies_path, :id => 'ratings_form', :method => :get do
Include:
- @all_ratings.each do |rating|
= rating
- is_checked = (!@selected_ratings.nil? && ...
1
vote
1answer
27 views
Rails: Controller dumps data in view
I have a simple controller with def index having the following code:
@companies = Company.all
respond_to do |format|
format.html
end
But in the view I get these errors appended after all the ...
0
votes
2answers
105 views
migrating erb to haml - strange behavior when using the build method with nested forms
I have a simple view in Rails that I'm migrating from ERB to HAML. This view renders a nested form, but includes an empty child object it there aren't any existing child objects.
With ERB, I was ...
-1
votes
1answer
57 views
Syntax error with HAML
header.clearfix{:role => "banner"}
%h1.logo
%span.company> Cerner
Care
%h2.application-name Welcome to the BigData application suite!
%ul.button-bar
...
0
votes
3answers
84 views
Put HTML in javascript using Ruby
Note: This is a very strange and unique use case so I apologise in advance if it seems a bit ass-backwards.
I have a haml file content.haml and a coffeescript file main.coffee.
I wish to somehow get ...
0
votes
3answers
73 views
Links are not clickable in Rails 3 and HAML
I have a Rails 3.1 app with HAML and I'm trying to set up the homepage with links to other sites. My Haml code looks like this:
.home-container
%section.news
%a{:href => ...
0
votes
0answers
18 views
phamp php interprer for haml not working correctly
I am using http://code.google.com/p/phamlp/
However when I try to write this haml code
#mydiv.myclass
I get
<div id="mydiv">.myclass</div>
Is this a phamlp library bug or am I ...
0
votes
1answer
76 views
display search results in haml syntax
I am new to ruby and am having trouble implementing the view for search in haml syntax.
Here is my controller code for search which works fine
app/controllers/search
def search(text)
...
0
votes
1answer
105 views
Pass Arguments to HAML Partial
Using rails 3.2.11, and whatever the newest version of HAML is, I've been trying to pass a block to a HAML partial. I suppose I could use a variable in the HAML file, and then assign that variable ...
0
votes
2answers
106 views
haml and ruby on rails date of birth date field syntax
SO I have been learning ror and trying out some form examples.
Most of the examples in the web is in erb format and my files are in .haml format. I am trying to a write a static dob field where it ...


