module Sinatra::Templates
def builder(template=nil, options={}, locals={}, &block)
def builder(template=nil, options={}, locals={}, &block) render_xml(:builder, template, options, locals, &block) end
def coffee(template, options={}, locals={})
def coffee(template, options={}, locals={}) options.merge! :layout => false, :default_content_type => :js render :coffee, template, options, locals end
def compile_template(engine, data, options, views)
def compile_template(engine, data, options, views) template_cache.fetch engine, data, options do template = Tilt[engine] raise "Template engine not found: #{engine}" if template.nil? case when data.is_a?(Symbol) body, path, line = self.class.templates[data] if body body = body.call if body.respond_to?(:call) template.new(path, line.to_i, options) { body } else path = ::File.join(views, "#{data}.#{engine}") Tilt.mappings.each do |ext, klass| break if File.exists?(path) next unless klass == template path = ::File.join(views, "#{data}.#{ext}") end template.new(path, 1, options) end when data.is_a?(Proc) || data.is_a?(String) body = data.is_a?(String) ? Proc.new { data } : data path, line = self.class.caller_locations.first template.new(path, line.to_i, options, &body) else raise ArgumentError end end end
def erb(template, options={}, locals={})
def erb(template, options={}, locals={}) render :erb, template, options, locals end
def erubis(template, options={}, locals={})
def erubis(template, options={}, locals={}) render :erubis, template, options, locals end
def haml(template, options={}, locals={})
def haml(template, options={}, locals={}) render :haml, template, options, locals end
def less(template, options={}, locals={})
def less(template, options={}, locals={}) options.merge! :layout => false, :default_content_type => :css render :less, template, options, locals end
def liquid(template, options={}, locals={})
def liquid(template, options={}, locals={}) render :liquid, template, options, locals end
def markaby(template, options={}, locals={})
def markaby(template, options={}, locals={}) render :mab, template, options, locals end
def markdown(template, options={}, locals={})
def markdown(template, options={}, locals={}) render :markdown, template, options, locals end
def nokogiri(template=nil, options={}, locals={}, &block)
def nokogiri(template=nil, options={}, locals={}, &block) options[:layout] = false if Tilt::VERSION <= "1.1" render_xml(:nokogiri, template, options, locals, &block) end
def radius(template, options={}, locals={})
def radius(template, options={}, locals={}) render :radius, template, options, locals end
def rdoc(template, options={}, locals={})
def rdoc(template, options={}, locals={}) render :rdoc, template, options, locals end
def render(engine, data, options={}, locals={}, &block)
def render(engine, data, options={}, locals={}, &block) # merge app-level options options = settings.send(engine).merge(options) if settings.respond_to?(engine) options[:outvar] ||= '@_out_buf' # extract generic options locals = options.delete(:locals) || locals || {} views = options.delete(:views) || settings.views || "./views" @default_layout = :layout if @default_layout.nil? layout = options.delete(:layout) layout = @default_layout if layout.nil? or layout == true content_type = options.delete(:content_type) || options.delete(:default_content_type) # compile and render template layout_was = @default_layout @default_layout = false if layout template = compile_template(engine, data, options, views) output = template.render(self, locals, &block) @default_layout = layout_was # render layout if layout begin options = options.merge(:views => views, :layout => false) output = render(engine, layout, options, locals) { output } rescue Errno::ENOENT end end output.extend(ContentTyped).content_type = content_type if content_type output end
def render_xml(engine, template, options={}, locals={}, &block)
def render_xml(engine, template, options={}, locals={}, &block) options[:default_content_type] = :xml options, template = template, nil if template.is_a?(Hash) template = Proc.new { block } if template.nil? render engine, template, options, locals end
def sass(template, options={}, locals={})
def sass(template, options={}, locals={}) options.merge! :layout => false, :default_content_type => :css render :sass, template, options, locals end
def scss(template, options={}, locals={})
def scss(template, options={}, locals={}) options.merge! :layout => false, :default_content_type => :css render :scss, template, options, locals end
def textile(template, options={}, locals={})
def textile(template, options={}, locals={}) render :textile, template, options, locals end