2006-08-05 23:18:54 -04:00
|
|
|
require File.dirname(__FILE__) + '/helpers'
|
2006-10-14 18:24:53 -04:00
|
|
|
require File.dirname(__FILE__) + '/buffer'
|
2006-08-05 23:18:54 -04:00
|
|
|
|
2006-10-14 18:24:53 -04:00
|
|
|
module Haml
|
|
|
|
# This is the class where all the parsing and processing of the HAML
|
|
|
|
# template is done. It can be directly used by the user by creating a
|
|
|
|
# new instance and calling to_html to render the template. For example:
|
|
|
|
#
|
|
|
|
# template = File.load('templates/really_cool_template.haml')
|
|
|
|
# haml_engine = Haml::Engine.new(template)
|
|
|
|
# output = haml_engine.to_html
|
|
|
|
# puts output
|
2006-08-05 23:18:54 -04:00
|
|
|
class Engine
|
2006-09-12 00:14:21 -04:00
|
|
|
include Haml::Helpers
|
2006-10-21 16:07:01 -04:00
|
|
|
|
|
|
|
# Allow access to the precompiled template
|
|
|
|
attr_reader :precompiled
|
2006-10-14 18:24:53 -04:00
|
|
|
|
2006-10-27 17:20:19 -04:00
|
|
|
# Allow reading and writing of the options hash
|
|
|
|
attr :options, true
|
|
|
|
|
2006-10-22 15:09:53 -04:00
|
|
|
# Designates an XHTML/XML element.
|
|
|
|
ELEMENT = '%'[0]
|
|
|
|
|
|
|
|
# Designates a <tt><div></tt> element with the given class.
|
|
|
|
DIV_CLASS = '.'[0]
|
|
|
|
|
|
|
|
# Designates a <tt><div></tt> element with the given id.
|
|
|
|
DIV_ID = '#'[0]
|
|
|
|
|
|
|
|
# Designates an XHTML/XML comment.
|
|
|
|
COMMENT = '/'[0]
|
|
|
|
|
2006-10-22 15:13:17 -04:00
|
|
|
# Designates an XHTML doctype.
|
|
|
|
DOCTYPE = '!'[0]
|
|
|
|
|
2006-10-22 15:09:53 -04:00
|
|
|
# Designates script, the result of which is output.
|
|
|
|
SCRIPT = '='[0]
|
|
|
|
|
|
|
|
# Designates script, the result of which is flattened and output.
|
|
|
|
FLAT_SCRIPT = '~'[0]
|
|
|
|
|
|
|
|
# Designates script which is run but not output.
|
|
|
|
SILENT_SCRIPT = '-'[0]
|
|
|
|
|
|
|
|
# When following SILENT_SCRIPT, designates a comment that is not output.
|
|
|
|
SILENT_COMMENT = '#'[0]
|
|
|
|
|
2006-10-22 15:13:17 -04:00
|
|
|
# Designates a non-parsed line. Not actually a character.
|
|
|
|
PLAIN_TEXT = -1
|
|
|
|
|
2006-10-14 18:24:53 -04:00
|
|
|
# Keeps track of the ASCII values of the characters that begin a
|
|
|
|
# specially-interpreted line.
|
2006-10-22 15:09:53 -04:00
|
|
|
SPECIAL_CHARACTERS = [
|
|
|
|
ELEMENT,
|
|
|
|
DIV_CLASS,
|
|
|
|
DIV_ID,
|
|
|
|
COMMENT,
|
2006-10-22 15:13:17 -04:00
|
|
|
DOCTYPE,
|
2006-10-22 15:09:53 -04:00
|
|
|
SCRIPT,
|
|
|
|
FLAT_SCRIPT,
|
|
|
|
SILENT_SCRIPT
|
|
|
|
]
|
2006-10-14 18:24:53 -04:00
|
|
|
|
|
|
|
# The value of the character that designates that a line is part
|
|
|
|
# of a multiline string.
|
2006-09-21 22:18:43 -04:00
|
|
|
MULTILINE_CHAR_VALUE = '|'[0]
|
2006-10-14 18:24:53 -04:00
|
|
|
|
|
|
|
# Characters that designate that a multiline string may be about
|
|
|
|
# to begin.
|
2006-09-29 15:20:53 -04:00
|
|
|
MULTILINE_STARTERS = SPECIAL_CHARACTERS - ["/"[0]]
|
2006-10-14 18:24:53 -04:00
|
|
|
|
|
|
|
# Keywords that appear in the middle of a Ruby block with lowered
|
|
|
|
# indentation. If a block has been started using indentation,
|
|
|
|
# lowering the indentation with one of these won't end the block.
|
|
|
|
# For example:
|
|
|
|
#
|
|
|
|
# - if foo
|
|
|
|
# %p yes!
|
|
|
|
# - else
|
|
|
|
# %p no!
|
|
|
|
#
|
|
|
|
# The block is ended after <tt>%p no!</tt>, because <tt>else</tt>
|
|
|
|
# is a member of this array.
|
|
|
|
MID_BLOCK_KEYWORDS = ['else', 'elsif', 'rescue', 'ensure', 'when']
|
2006-09-29 14:39:13 -04:00
|
|
|
|
2006-10-14 18:24:53 -04:00
|
|
|
# Creates a new instace of Haml::Engine to compile the given
|
|
|
|
# template string.
|
|
|
|
#
|
|
|
|
# Available options are:
|
|
|
|
#
|
2006-10-27 17:20:19 -04:00
|
|
|
# [<tt>:suppress_eval</tt>] Whether or not attribute hashes and Ruby scripts
|
|
|
|
# designated by <tt>=</tt> or <tt>~</tt> should be
|
|
|
|
# evaluated. If this is true, said scripts are
|
|
|
|
# rendered as empty strings. Defaults to false.
|
|
|
|
#
|
|
|
|
# [<tt>:precompiled</tt>] A string containing a precompiled Haml template.
|
|
|
|
# If this is passed, <tt>template</tt> is ignored
|
|
|
|
# and no precompilation is done.
|
|
|
|
|
2006-09-29 15:57:35 -04:00
|
|
|
def initialize(template, options = {})
|
2006-10-27 17:20:19 -04:00
|
|
|
@options = {
|
|
|
|
:suppress_eval => false
|
|
|
|
}.merge options
|
|
|
|
@precompiled = @options[:precompiled]
|
2006-09-29 15:57:35 -04:00
|
|
|
|
2006-09-29 14:39:13 -04:00
|
|
|
@template = template #String
|
2006-10-14 18:24:53 -04:00
|
|
|
@to_close_stack = []
|
|
|
|
@tabulation = 0
|
2006-10-21 16:07:01 -04:00
|
|
|
|
|
|
|
# Only do the first round of pre-compiling if we really need to.
|
|
|
|
# They might be passing in the precompiled string.
|
|
|
|
do_precompile if @precompiled.nil? && (@precompiled = String.new)
|
2006-09-12 00:14:21 -04:00
|
|
|
end
|
2006-09-29 15:59:21 -04:00
|
|
|
|
2006-10-14 18:24:53 -04:00
|
|
|
# Processes the template and returns the resulting (X)HTML code as
|
|
|
|
# a string.
|
2006-10-22 16:21:15 -04:00
|
|
|
def to_html(scope = Object.new, &block)
|
2006-10-21 17:11:55 -04:00
|
|
|
@scope_object = scope
|
2006-10-27 16:48:40 -04:00
|
|
|
@buffer = Haml::Buffer.new
|
2006-10-21 16:07:01 -04:00
|
|
|
|
|
|
|
# Compile the @precompiled buffer
|
2006-10-22 16:21:15 -04:00
|
|
|
compile &block
|
2006-10-21 16:07:01 -04:00
|
|
|
|
|
|
|
# Return the result string
|
|
|
|
@buffer.buffer
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
#Precompile each line
|
|
|
|
def do_precompile
|
2006-10-22 16:21:15 -04:00
|
|
|
push_silent <<-END
|
|
|
|
def _haml_render
|
|
|
|
_hamlout = @haml_stack[-1]
|
|
|
|
_erbout = _hamlout.buffer
|
|
|
|
END
|
2006-09-29 14:39:13 -04:00
|
|
|
@template.each_with_index do |line, index|
|
2006-09-12 00:14:21 -04:00
|
|
|
count, line = count_soft_tabs(line)
|
2006-10-14 18:24:53 -04:00
|
|
|
suppress_render = handle_multiline(count, line, index)
|
2006-10-21 16:07:01 -04:00
|
|
|
|
2006-10-14 18:24:53 -04:00
|
|
|
if !suppress_render && count && line
|
|
|
|
count, line = process_line(count, line, index)
|
2006-07-01 22:09:44 -04:00
|
|
|
end
|
2006-06-30 11:14:44 -04:00
|
|
|
end
|
2006-10-21 16:07:01 -04:00
|
|
|
|
2006-10-14 18:24:53 -04:00
|
|
|
# Make sure an ending multiline gets closed
|
|
|
|
handle_multiline(0, nil, 0)
|
2006-10-21 16:07:01 -04:00
|
|
|
|
2006-09-12 00:14:21 -04:00
|
|
|
# Close all the open tags
|
2006-10-14 18:24:53 -04:00
|
|
|
@to_close_stack.length.times { close }
|
2006-10-22 16:21:15 -04:00
|
|
|
|
|
|
|
push_silent "end"
|
2006-06-30 11:14:44 -04:00
|
|
|
end
|
2006-10-14 18:24:53 -04:00
|
|
|
|
|
|
|
# Processes a single line of HAML. <tt>count</tt> does *not* represent the
|
|
|
|
# line number; rather, it represents the tabulation count (the number of
|
|
|
|
# spaces before the line divided by two).
|
|
|
|
#
|
|
|
|
# This method doesn't return anything; it simply processes the line and
|
|
|
|
# adds the appropriate code to <tt>@precompiled</tt>.
|
|
|
|
def process_line(count, line, index)
|
2006-10-22 15:13:17 -04:00
|
|
|
if count > @to_close_stack.size
|
|
|
|
|
|
|
|
# Indentation has been increased without a new tag
|
|
|
|
if @latest_command == SILENT_SCRIPT
|
2006-10-14 18:24:53 -04:00
|
|
|
|
2006-10-22 15:13:17 -04:00
|
|
|
# The indentation was increased after silent script,
|
|
|
|
# it must be a block
|
2006-10-22 17:42:45 -04:00
|
|
|
@to_close_stack.push [:script]
|
2006-10-22 15:13:17 -04:00
|
|
|
end
|
2006-10-14 18:24:53 -04:00
|
|
|
|
2006-10-22 15:28:54 -04:00
|
|
|
elsif count <= @to_close_stack.size && @to_close_stack.size > 0
|
2006-10-22 15:13:17 -04:00
|
|
|
# The tabulation has gone down, and it's not because of one of
|
|
|
|
# Ruby's mid-block keywords
|
2006-10-22 15:28:54 -04:00
|
|
|
to_close = @to_close_stack.size - count
|
|
|
|
|
|
|
|
to_close.times do |i|
|
|
|
|
offset = to_close - 1 - i
|
|
|
|
unless offset == 0 && line.length > 2 && line[0] == SILENT_SCRIPT &&
|
|
|
|
MID_BLOCK_KEYWORDS.include?(line[1..-1].split[0])
|
|
|
|
close
|
|
|
|
end
|
|
|
|
end
|
2006-10-22 15:13:17 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
if line.length > 0
|
|
|
|
@latest_command = line[0]
|
|
|
|
case @latest_command
|
|
|
|
when DIV_CLASS, DIV_ID
|
|
|
|
render_div(line, index)
|
|
|
|
when ELEMENT
|
|
|
|
render_tag(line, index)
|
|
|
|
when COMMENT
|
|
|
|
render_comment(line)
|
|
|
|
when SCRIPT
|
|
|
|
push_script(line[1..-1], false, index)
|
|
|
|
when FLAT_SCRIPT
|
|
|
|
push_script(line[1..-1], true, index)
|
|
|
|
when SILENT_SCRIPT
|
|
|
|
sub_line = line[1..-1]
|
|
|
|
unless sub_line[0] == SILENT_COMMENT
|
|
|
|
push_silent(sub_line, index)
|
|
|
|
else
|
|
|
|
@latest_command = SILENT_COMMENT
|
2006-10-14 18:24:53 -04:00
|
|
|
end
|
2006-10-22 15:13:17 -04:00
|
|
|
when DOCTYPE
|
|
|
|
if line[0...3] == '!!!'
|
2006-10-27 16:36:34 -04:00
|
|
|
version, type = line.scan(/!!![\s]*([0-9]\.[0-9])?[\s]*([a-zA-Z]*)/)[0]
|
|
|
|
type = type.downcase if type
|
|
|
|
if version == "1.1"
|
|
|
|
doctype = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">'
|
|
|
|
else
|
|
|
|
case type
|
|
|
|
when "strict"
|
|
|
|
doctype = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">'
|
|
|
|
when "frameset"
|
|
|
|
doctype = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">'
|
|
|
|
else
|
|
|
|
doctype = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
push_text doctype
|
2006-10-14 18:24:53 -04:00
|
|
|
else
|
2006-10-22 15:13:17 -04:00
|
|
|
@latest_command = PLAIN_TEXT
|
2006-10-14 18:24:53 -04:00
|
|
|
push_text line.strip
|
|
|
|
end
|
2006-10-22 15:13:17 -04:00
|
|
|
else
|
|
|
|
@latest_command = PLAIN_TEXT
|
|
|
|
push_text line.strip
|
2006-09-21 22:18:43 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2006-10-14 18:24:53 -04:00
|
|
|
# Deals with all the logic of figuring out whether a given line is
|
|
|
|
# the beginning, continuation, or end of a multiline sequence. Like
|
|
|
|
# process_line, <tt>count</tt> represents the tabulation, not line
|
|
|
|
# number.
|
|
|
|
#
|
|
|
|
# This returns whether or not the line should be
|
|
|
|
# rendered normally.
|
|
|
|
def handle_multiline(count, line, index)
|
2006-09-29 14:39:13 -04:00
|
|
|
# Multilines are denoting by ending with a `|` (124)
|
2006-10-22 15:09:53 -04:00
|
|
|
if is_multiline?(line) && @multiline_buffer
|
2006-09-21 22:18:43 -04:00
|
|
|
# A multiline string is active, and is being continued
|
|
|
|
@multiline_buffer += line[0...-1]
|
2006-10-14 18:24:53 -04:00
|
|
|
suppress_render = true
|
2006-10-22 15:09:53 -04:00
|
|
|
elsif is_multiline?(line) && (MULTILINE_STARTERS.include? line[0])
|
2006-09-21 22:18:43 -04:00
|
|
|
# A multiline string has just been activated, start adding the lines
|
|
|
|
@multiline_buffer = line[0...-1]
|
|
|
|
@multiline_count = count
|
2006-10-14 18:24:53 -04:00
|
|
|
@multiline_index = index
|
|
|
|
suppress_render = true
|
2006-09-21 22:18:43 -04:00
|
|
|
elsif @multiline_buffer
|
|
|
|
# A multiline string has just ended, make line into the result
|
2006-10-14 18:24:53 -04:00
|
|
|
process_line(@multiline_count, @multiline_buffer, @multiline_index)
|
2006-09-21 22:18:43 -04:00
|
|
|
@multiline_buffer = nil
|
2006-10-14 18:24:53 -04:00
|
|
|
suppress_render = false
|
2006-09-21 22:18:43 -04:00
|
|
|
end
|
2006-10-02 19:49:53 -04:00
|
|
|
|
2006-10-14 18:24:53 -04:00
|
|
|
return suppress_render
|
2006-06-30 11:14:44 -04:00
|
|
|
end
|
2006-10-22 15:09:53 -04:00
|
|
|
|
|
|
|
# Checks whether or not +line+ is in a multiline sequence.
|
|
|
|
def is_multiline?(line) # ' '[0] == 32
|
|
|
|
line && line.length > 1 && line[-1] == MULTILINE_CHAR_VALUE && line[-2] == 32
|
|
|
|
end
|
2006-08-05 23:18:54 -04:00
|
|
|
|
2006-10-14 18:24:53 -04:00
|
|
|
# Takes <tt>@precompiled</tt>, a string buffer of Ruby code, and
|
|
|
|
# evaluates it in the context of <tt>@scope_object</tt>, after preparing
|
|
|
|
# <tt>@scope_object</tt>. The code in <tt>@precompiled</tt> populates
|
|
|
|
# <tt>@buffer</tt> with the compiled XHTML code.
|
2006-10-22 16:21:15 -04:00
|
|
|
def compile(&block)
|
2006-10-14 18:24:53 -04:00
|
|
|
# Set the local variables pointing to the buffer
|
|
|
|
buffer = @buffer
|
|
|
|
@scope_object.instance_eval do
|
|
|
|
@haml_stack ||= Array.new
|
|
|
|
@haml_stack.push(buffer)
|
|
|
|
self.class.instance_eval { include Haml::Helpers }
|
|
|
|
|
|
|
|
class << self
|
|
|
|
attr :haml_lineno
|
2006-09-29 15:57:35 -04:00
|
|
|
end
|
2006-10-14 18:24:53 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
begin
|
2006-10-21 16:16:26 -04:00
|
|
|
# Evaluate the buffer in the context of the scope object
|
2006-10-14 18:24:53 -04:00
|
|
|
@scope_object.instance_eval @precompiled
|
2006-10-22 16:21:15 -04:00
|
|
|
@scope_object._haml_render &block
|
2006-10-14 18:24:53 -04:00
|
|
|
rescue Exception => e
|
2006-10-21 16:16:26 -04:00
|
|
|
# Get information from the exception and format it so that
|
|
|
|
# Rails can understand it.
|
|
|
|
compile_error = e.message.scan(/\(eval\):([0-9]*):in `[-_a-zA-Z]*': compile error/)[0]
|
2006-10-14 18:24:53 -04:00
|
|
|
filename = "(haml)"
|
|
|
|
if @scope_object.methods.include? "haml_filename"
|
|
|
|
# For some reason that I can't figure out,
|
|
|
|
# @scope_object.methods.include? "haml_filename" && @scope_object.haml_filename
|
|
|
|
# is false when it shouldn't be. Nested if statements work, though.
|
|
|
|
|
|
|
|
if @scope_object.haml_filename
|
|
|
|
filename = "#{@scope_object.haml_filename}.haml"
|
|
|
|
end
|
|
|
|
end
|
2006-10-21 16:16:26 -04:00
|
|
|
lineno = @scope_object.haml_lineno
|
|
|
|
|
|
|
|
if compile_error
|
|
|
|
eval_line = compile_error[0].to_i
|
|
|
|
line_marker = @precompiled.split("\n")[0...eval_line].grep(/@haml_lineno = [0-9]*/)[-1]
|
|
|
|
lineno = line_marker.scan(/[0-9]+/)[0].to_i if line_marker
|
|
|
|
end
|
|
|
|
|
|
|
|
e.backtrace.unshift "#{filename}:#{lineno}"
|
2006-10-14 18:24:53 -04:00
|
|
|
raise e
|
|
|
|
end
|
|
|
|
|
|
|
|
# Get rid of the current buffer
|
|
|
|
@scope_object.instance_eval do
|
|
|
|
@haml_stack.pop
|
|
|
|
end
|
2006-07-19 18:23:01 -04:00
|
|
|
end
|
|
|
|
|
2006-10-14 18:24:53 -04:00
|
|
|
# Evaluates <tt>text</tt> in the context of <tt>@scope_object</tt>, but
|
|
|
|
# does not output the result.
|
|
|
|
def push_silent(text, index = nil)
|
|
|
|
if index
|
|
|
|
@precompiled << "@haml_lineno = #{index + 1}\n#{text}\n"
|
|
|
|
else
|
|
|
|
# Not really DRY, but probably faster
|
|
|
|
@precompiled << "#{text}\n"
|
|
|
|
end
|
2006-09-29 14:39:13 -04:00
|
|
|
end
|
|
|
|
|
2006-10-14 18:24:53 -04:00
|
|
|
# Adds <tt>text</tt> to <tt>@buffer</tt> with appropriate tabulation
|
|
|
|
# without parsing it.
|
|
|
|
def push_text(text)
|
|
|
|
@precompiled << "_hamlout.push_text(#{text.dump}, #{@tabulation})\n"
|
2006-07-19 18:23:01 -04:00
|
|
|
end
|
2006-08-05 23:18:54 -04:00
|
|
|
|
2006-10-14 18:24:53 -04:00
|
|
|
# Causes <tt>text</tt> to be evaluated in the context of
|
|
|
|
# <tt>@scope_object</tt> and the result to be added to <tt>@buffer</tt>.
|
|
|
|
#
|
|
|
|
# If <tt>flattened</tt> is true, Haml::Helpers#find_and_flatten is run on
|
|
|
|
# the result before it is added to <tt>@buffer</tt>
|
|
|
|
def push_script(text, flattened, index)
|
2006-10-27 17:20:19 -04:00
|
|
|
unless options[:suppress_eval]
|
2006-10-14 18:24:53 -04:00
|
|
|
push_silent("haml_temp = #{text}", index)
|
|
|
|
@precompiled << "haml_temp = _hamlout.push_script(haml_temp, #{@tabulation}, #{flattened})\n"
|
|
|
|
end
|
2006-09-29 14:39:13 -04:00
|
|
|
end
|
2006-10-05 11:18:35 -04:00
|
|
|
|
2006-10-14 18:24:53 -04:00
|
|
|
# Closes the most recent item in <tt>@to_close_stack</tt>.
|
|
|
|
def close
|
2006-10-22 17:42:45 -04:00
|
|
|
tag, value = @to_close_stack.pop
|
|
|
|
case tag
|
|
|
|
when :script
|
2006-10-14 18:24:53 -04:00
|
|
|
close_block
|
2006-10-22 17:42:45 -04:00
|
|
|
when :comment
|
|
|
|
close_comment value
|
|
|
|
when :element
|
|
|
|
close_tag value
|
2006-07-20 00:01:23 -04:00
|
|
|
end
|
|
|
|
end
|
2006-07-19 18:23:01 -04:00
|
|
|
|
2006-10-14 18:24:53 -04:00
|
|
|
# Puts a line in <tt>@precompiled</tt> that will add the closing tag of
|
|
|
|
# the most recently opened tag.
|
|
|
|
def close_tag(tag)
|
|
|
|
@tabulation -= 1
|
|
|
|
@precompiled << "_hamlout.close_tag(#{tag.dump}, #{@tabulation})\n"
|
2006-07-19 18:23:01 -04:00
|
|
|
end
|
2006-10-14 18:24:53 -04:00
|
|
|
|
|
|
|
# Closes a Ruby block.
|
|
|
|
def close_block
|
|
|
|
push_silent "end"
|
2006-06-30 11:14:44 -04:00
|
|
|
end
|
2006-10-22 17:42:45 -04:00
|
|
|
|
|
|
|
# Closes a comment.
|
|
|
|
def close_comment(has_conditional)
|
|
|
|
@tabulation -= 1
|
|
|
|
push_silent "_hamlout.close_comment(#{has_conditional}, #{@tabulation})"
|
|
|
|
end
|
2006-08-05 23:18:54 -04:00
|
|
|
|
2006-10-14 18:24:53 -04:00
|
|
|
# Parses a line that will render as an XHTML tag, and adds the code that will
|
|
|
|
# render that tag to <tt>@precompiled</tt>.
|
|
|
|
def render_tag(line, index)
|
2006-10-21 23:56:59 -04:00
|
|
|
line.scan(/[%]([-:_a-zA-Z0-9]+)([-_a-zA-Z0-9\.\#]*)(\{.*\})?(\[.*\])?([=\/\~]?)?(.*)?/) do |tag_name, attributes, attributes_hash, object_ref, action, value|
|
2006-10-14 18:24:53 -04:00
|
|
|
value = value.to_s
|
|
|
|
|
2006-09-29 14:39:13 -04:00
|
|
|
case action
|
|
|
|
when '/'
|
2006-10-14 18:24:53 -04:00
|
|
|
atomic = true
|
2006-09-29 14:39:13 -04:00
|
|
|
when '=', '~'
|
2006-10-14 18:24:53 -04:00
|
|
|
flattened = (action == '~')
|
|
|
|
parse = true
|
2006-07-19 18:23:01 -04:00
|
|
|
else
|
2006-10-14 18:24:53 -04:00
|
|
|
value = value.strip
|
|
|
|
end
|
|
|
|
|
|
|
|
value_exists = !value.empty?
|
|
|
|
attributes_hash = "nil" unless attributes_hash
|
|
|
|
object_ref = "nil" unless object_ref
|
|
|
|
|
2006-10-22 17:42:45 -04:00
|
|
|
push_silent "_hamlout.open_tag(#{tag_name.inspect}, #{@tabulation}, #{atomic.inspect}, #{value_exists.inspect}, #{attributes.inspect}, #{attributes_hash}, #{object_ref})\n"
|
2006-10-14 18:24:53 -04:00
|
|
|
|
|
|
|
unless atomic
|
2006-10-22 17:42:45 -04:00
|
|
|
@to_close_stack.push [:element, tag_name]
|
2006-10-14 18:24:53 -04:00
|
|
|
@tabulation += 1
|
|
|
|
|
|
|
|
if value_exists
|
|
|
|
if parse
|
|
|
|
push_script(value, flattened, index)
|
|
|
|
else
|
|
|
|
push_text(value)
|
|
|
|
end
|
|
|
|
close
|
|
|
|
end
|
2006-06-30 11:14:44 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2006-07-20 00:01:23 -04:00
|
|
|
|
2006-10-14 18:24:53 -04:00
|
|
|
# Renders a line that creates an XHTML tag and has an implicit div because of
|
|
|
|
# <tt>.</tt> or <tt>#</tt>.
|
|
|
|
def render_div(line, index)
|
|
|
|
render_tag('%div' + line, index)
|
2006-06-30 11:14:44 -04:00
|
|
|
end
|
2006-08-09 14:12:54 -04:00
|
|
|
|
2006-10-14 18:24:53 -04:00
|
|
|
# Renders an XHTML comment.
|
2006-09-29 14:39:13 -04:00
|
|
|
def render_comment(line)
|
2006-10-22 17:42:45 -04:00
|
|
|
conditional, content = line.scan(/\/(\[[a-zA-Z0-9 ]*\])?(.*)/)[0]
|
|
|
|
content = content.strip
|
|
|
|
try_one_line = !content.empty?
|
|
|
|
push_silent "_hamlout.open_comment(#{try_one_line}, #{conditional.inspect}, #{@tabulation})"
|
|
|
|
@tabulation += 1
|
|
|
|
@to_close_stack.push [:comment, !conditional.nil?]
|
|
|
|
if try_one_line
|
|
|
|
push_text content
|
|
|
|
close
|
|
|
|
end
|
2006-07-20 00:01:23 -04:00
|
|
|
end
|
2006-06-30 11:14:44 -04:00
|
|
|
end
|
2006-09-14 15:12:45 -04:00
|
|
|
end
|