Quick Upload

Loading...
Flash Player 9 (or above) is needed to view slideshows. We have detected that you do not have it on your computer.To install it, go here
Post to Twitter Post to Twitter
Share on Facebook
Myspace Hi5 Friendster Xanga LiveJournal Facebook Blogger Tagged Typepad Freewebs BlackPlanet gigya icons

Intro to Haml

from cjheath, 2 years ago Add as contact

776 views | 0 comments | 0 favorites | 2 embeds (Stats)

Desc: Presentation on HAML given by Clifford Heath at the Melbourne Ruby group 2007/08/30.

Embed customize close
 

Categories

Technology

Tags

Groups/Events

More Info

This slideshow is Public

Views: 776 Comments: 0 Favorites: 0 Downloads: 17

View Details: 774 on Slideshare 2 from embeds
Most viewed embeds (Top 5): More
All Embeds: Less
Flagged as inappropriate Flag as inappropriate

Flag as inappropriate

Select your reason for flagging this slideshow as inappropriate.

If needed, use the feedback form to let us know more details.

Slideshow Transcript

  1. Slide 1: HAML or, how to get <arrowheads> out of your face Presented by Clifford Heath
  2. Slide 2: Is THIS YOU?
  3. Slide 3: when you see... <div id=\"column1\" class= \"robust\"> <div class=\"sidebaritem\"> <div class=\"sbihead\"> <h1>Status Watch</h1> </div> <div class=\"sbicontent\"> <%= render :partial => 'layouts/sidebar', :locals => { :value =>@mvalue } %> </div> </div> <div class=\"sidebaritem\"> <div class=\"sbihead\"> <h1>Your Account</h1> </div> <div class=\"sbilinks\"> <ul> <% if session[:user_id] %> <li><%= link_to 'Log Out', :controller => 'authenticate', :action => 'logout' %></li> <% if @user && @user[:is_admin] -%> <li><%= link_to \"Administration\", :controller => 'admin', :action => 'index' %></li> </etc></etc></etc> the right number of times ...
  4. Slide 4: With HAML... #column1.robust .sidebaritem .sbihead %h1 Status Watch .sbicontent = render :partial => 'layouts/sidebar', :locals => { :value =>@mvalue } .sidebaritem .sbihead %h1 Your Account .sbilinks %ul - if @user %li= link_to 'Log Out', :controller => 'authenticate', :action => 'logout' - if @user[:is_admin] %li= link_to \"Administration\", :controller => 'admin', :action => 'index'
  5. Slide 5: What’s Changed? All <arrowheads> are gone Tags and code both self-close by indentation id=”xyz” and class=”abc” are just #xyz and .abc <div> is the default tag - for others, use %tag <%= some code %> is now just = some code Same for <% some code -%>, use - some code
  6. Slide 6: Visual Simplicity The RHTML version has 261 lexical tokens counting each word in strings and syntactic white-space The HAML version has 117 tokens That makes it easier on the eyes and the fingers! Markup Haiku
  7. Slide 7: Read it again... #column1.robust .sidebaritem .sbihead %h1 Status Watch .sbicontent = render :partial => 'layouts/sidebar', :locals => { :value =>@mvalue } .sidebaritem .sbihead %h1 Your Account .sbilinks %ul - if @user %li= link_to 'Log Out', :controller => 'authenticate', :action => 'logout' - if @user[:is_admin] %li= link_to \"Administration\", :controller => 'admin', :action => 'index'
  8. Slide 8: Extra benefits Need care to close tags correctly in RHTML In HAML, generated code is indented properly including after nesting layouts and partials! valid XHTML with no extra effort DIVs almost always get a class or an ID or both Plays well with RHTML during conversion
  9. Slide 9: Other niceties Attribute values are Ruby code: %label{:for=>@field.name}= @field.description+’:’ Ruby blocks are automatically closed: %table - @people.each do |person| %tr %td= person.name %p.footer You can declare multiple classes, etc: %td.person.alignleft#husband= @husband.name
  10. Slide 10: Other niceties... 2 ID and class attributes can come from an object: %div[@mother] uses @mother.class and @mother.id to become: <div class=”person” id=”person_5724”> Most self-closing tags are recognised others may be declared self-closed: %br/ Comments start with a single / and are output! Even multi-line; a comment wraps indented content
  11. Slide 11: Other niceties... 3 Automatic generation of DOCTYPE tags: !!! and !!! XML become <?xml version=\"1.0\" encoding=\"utf-8\" ?> <!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"> Continue a long line using a trailing | :filter passes the content to the filter: %p :markdown Textile ======= Hello, *World*
  12. Slide 12: Tools Syntax highlighting modules available JEdit, Eclipse + RadRails, TextMate, (G)Vim, Komodo, Emacs or simple VIM setup (in your ~/.vimrc): au BufRead,BufNewFile *.haml set sw=2 sts=2 et
  13. Slide 13: How to install ./script/plugin install http://svn.hamptoncatlin.com/haml/tags/stable Also available as a GEM for use outside Rails Website: http://haml.hamptoncatlin.com/ See also SASS - similar approach for stylesheets Developer discussion: http://groups.google.com/group/haml Thanks to Hampton Catlin and his contributors!