/usr/lib/ruby/1.8/markaby/builder.rb is in libmarkaby-ruby1.8 0.5-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 | require 'markaby/tags'
module Markaby
# The Markaby::Builder class is the central gear in the system. When using
# from Ruby code, this is the only class you need to instantiate directly.
#
# mab = Markaby::Builder.new
# mab.html do
# head { title "Boats.com" }
# body do
# h1 "Boats.com has great deals"
# ul do
# li "$49 for a canoe"
# li "$39 for a raft"
# li "$29 for a huge boot that floats and can fit 5 people"
# end
# end
# end
# puts mab.to_s
#
class Builder
@@default = {
:indent => 0,
:output_helpers => true,
:output_xml_instruction => true,
:output_meta_tag => true,
:auto_validation => true,
:tagset => Markaby::XHTMLTransitional
}
def self.set(option, value)
@@default[option] = value
end
def self.ignored_helpers
@@ignored_helpers ||= []
end
def self.ignore_helpers(*helpers)
ignored_helpers.concat helpers
end
attr_accessor :output_helpers, :tagset
# Create a Markaby builder object. Pass in a hash of variable assignments to
# +assigns+ which will be available as instance variables inside tag construction
# blocks. If an object is passed in to +helpers+, its methods will be available
# from those same blocks.
#
# Pass in a +block+ to new and the block will be evaluated.
#
# mab = Markaby::Builder.new {
# html do
# body do
# h1 "Matching Mole"
# end
# end
# }
#
def initialize(assigns = {}, helpers = nil, &block)
@streams = [[]]
@assigns = assigns
@elements = {}
@@default.each do |k, v|
instance_variable_set("@#{k}", @assigns[k] || v)
end
if helpers.nil?
@helpers = nil
else
@helpers = helpers.dup
for iv in helpers.instance_variables
instance_variable_set(iv, helpers.instance_variable_get(iv))
end
end
unless assigns.nil? || assigns.empty?
for iv, val in assigns
instance_variable_set("@#{iv}", val)
unless @helpers.nil?
@helpers.instance_variable_set("@#{iv}", val)
end
end
end
@builder = ::Builder::XmlMarkup.new(:indent => @indent, :target => @streams.last)
class << @builder
attr_accessor :target, :level
end
if block
text(capture(&block))
end
end
# Returns a string containing the HTML stream. Internally, the stream is stored as an Array.
def to_s
@streams.last.to_s
end
# Write a +string+ to the HTML stream without escaping it.
def text(string)
@builder << "#{string}"
nil
end
alias_method :<<, :text
alias_method :concat, :text
# Emulate ERB to satisfy helpers like <tt>form_for</tt>.
def _erbout; self end
# Captures the HTML code built inside the +block+. This is done by creating a new
# stream for the builder object, running the block and passing back its stream as a string.
#
# >> Markaby::Builder.new.capture { h1 "TEST"; h2 "CAPTURE ME" }
# => "<h1>TITLE</h1>\n<h2>CAPTURE ME</h2>\n"
#
def capture(&block)
@streams.push(builder.target = [])
@builder.level += 1
str = instance_eval(&block)
str = @streams.last.join if @streams.last.any?
@streams.pop
@builder.level -= 1
builder.target = @streams.last
str
end
# Create a tag named +tag+. Other than the first argument which is the tag name,
# the arguments are the same as the tags implemented via method_missing.
def tag!(tag, *args, &block)
ele_id = nil
if @auto_validation and @tagset
if !@tagset.tagset.has_key?(tag)
raise InvalidXhtmlError, "no element `#{tag}' for #{tagset.doctype}"
elsif args.last.respond_to?(:to_hash)
attrs = args.last.to_hash
attrs.each do |k, v|
atname = k.to_s.downcase.intern
unless k =~ /:/ or @tagset.tagset[tag].include? atname
raise InvalidXhtmlError, "no attribute `#{k}' on #{tag} elements"
end
if atname == :id
ele_id = v.to_s
if @elements.has_key? ele_id
raise InvalidXhtmlError, "id `#{ele_id}' already used (id's must be unique)."
end
end
end
end
end
if block
str = capture &block
block = proc { text(str) }
end
f = fragment { @builder.method_missing(tag, *args, &block) }
@elements[ele_id] = f if ele_id
f
end
# This method is used to intercept calls to helper methods and instance
# variables. Here is the order of interception:
#
# * If +sym+ is a helper method, the helper method is called
# and output to the stream.
# * If +sym+ is a Builder::XmlMarkup method, it is passed on to the builder object.
# * If +sym+ is also the name of an instance variable, the
# value of the instance variable is returned.
# * If +sym+ has come this far and no +tagset+ is found, +sym+ and its arguments are passed to tag!
# * If a tagset is found, though, +NoMethodError+ is raised.
#
# method_missing used to be the lynchpin in Markaby, but it's no longer used to handle
# HTML tags. See html_tag for that.
def method_missing(sym, *args, &block)
if @helpers.respond_to?(sym, true) && !self.class.ignored_helpers.include?(sym)
r = @helpers.send(sym, *args, &block)
if @output_helpers and r.respond_to? :to_str
fragment { @builder << r }
else
r
end
elsif ::Builder::XmlMarkup.instance_methods.include?(sym.to_s)
@builder.__send__(sym, *args, &block)
elsif instance_variables.include?("@#{sym}")
instance_variable_get("@#{sym}")
elsif @tagset.nil?
tag!(sym, *args, &block)
else
raise NoMethodError, "no such method `#{sym}'"
end
end
# Every HTML tag method goes through an html_tag call. So, calling <tt>div</tt> is equivalent
# to calling <tt>html_tag(:div)</tt>. All HTML tags in Markaby's list are given generated wrappers
# for this method.
#
# If the @auto_validation setting is on, this method will check for many common mistakes which
# could lead to invalid XHTML.
def html_tag(sym, *args, &block)
if @auto_validation and @tagset.self_closing.include?(sym) and block
raise InvalidXhtmlError, "the `\#{sym}' element is self-closing, please remove the block"
end
if args.empty? and block.nil? and not NO_PROXY.include?(sym)
return CssProxy.new do |args, block|
if @tagset.forms.include?(sym) and args.last.respond_to?(:to_hash) and args.last[:id]
args.last[:name] ||= args.last[:id]
end
tag!(sym, *args, &block)
end
end
if not @tagset.self_closing.include?(sym) and args.first.respond_to?(:to_hash)
block ||= proc{}
end
tag!(sym, *args, &block)
end
XHTMLTransitional.tags.each do |k|
class_eval %{
def #{k}(*args, &block)
html_tag(#{k.inspect}, *args, &block)
end
}
end
# Builds a head tag. Adds a <tt>meta</tt> tag inside with Content-Type
# set to <tt>text/html; charset=utf-8</tt>.
def head(*args, &block)
tag!(:head, *args) do
tag!(:meta, "http-equiv" => "Content-Type", "content" => "text/html; charset=utf-8") if @output_meta_tag
instance_eval(&block)
end
end
# Builds an html tag. An XML 1.0 instruction and an XHTML 1.0 Transitional doctype
# are prepended. Also assumes <tt>:xmlns => "http://www.w3.org/1999/xhtml",
# :lang => "en"</tt>.
def xhtml_transitional(&block)
self.tagset = Markaby::XHTMLTransitional
xhtml_html &block
end
# Builds an html tag with XHTML 1.0 Strict doctype instead.
def xhtml_strict(&block)
self.tagset = Markaby::XHTMLStrict
xhtml_html &block
end
private
def xhtml_html(&block)
instruct! if @output_xml_instruction
declare!(:DOCTYPE, :html, :PUBLIC, *tagset.doctype)
tag!(:html, :xmlns => "http://www.w3.org/1999/xhtml", "xml:lang" => "en", :lang => "en", &block)
end
def fragment
stream = @streams.last
f1 = stream.length
yield
f2 = stream.length - f1
Fragment.new(stream, f1, f2)
end
end
# Every tag method in Markaby returns a Fragment. If any method gets called on the Fragment,
# the tag is removed from the Markaby stream and given back as a string. Usually the fragment
# is never used, though, and the stream stays intact.
#
# For a more practical explanation, check out the README.
class Fragment < ::Builder::BlankSlate
def initialize(s, a, b)
@s, @f1, @f2 = s, a, b
end
def method_missing(*a)
unless @str
@str = @s[@f1, @f2].to_s
@s[@f1, @f2] = [nil] * @f2
@str
end
@str.send(*a)
end
end
end
|