module StaticMatic::RenderMixin def source_for_layout if layout_exists?(@layout) File.read(full_layout_path(@layout)) else raise StaticMatic::Error.new("", full_layout_path(@layout), "Layout not found") end end # Generate html from source file: # generate_html("index") def generate_html(source_file, source_dir = '') full_file_path = File.join(@src_dir, 'pages', source_dir, "#{source_file}.haml") begin # clear all scope variables except @staticmatic @scope.instance_variables.each do |var| @scope.instance_variable_set(var, nil) unless var == '@staticmatic' || :@staticmatic end html = generate_html_from_template_source(File.read(full_file_path)) @layout = determine_layout(source_dir) rescue StaticMatic::TemplateError => e raise e # re-raise inline errors rescue Exception => e raise StaticMatic::TemplateError.new(full_file_path, e) end html end def generate_html_with_layout(source, source_dir = '') @current_page = File.join(source_dir, "#{source}.html") @current_file_stack.unshift(File.join(source_dir, "#{source}.haml")) begin template_content = generate_html(source, source_dir) @layout = determine_layout(source_dir) generate_html_from_template_source(source_for_layout) { template_content } rescue Exception => e render_rescue_from_error(e) ensure @current_page = nil @current_file_stack.shift end end def generate_partial(name, options = {}) partial_dir, partial_name = File.dirname(self.current_file), name # default relative to current file partial_dir, partial_name = File.split(name) if name.index('/') # contains a path so it's absolute from src/pages dir partial_name = "_#{partial_name}.haml" partial_path = File.join(@src_dir, 'pages', partial_dir, partial_name) unless File.exists?(partial_path) # couldn't find it in the pages subdirectory tree so try old way (ignoring the path) partial_dir = 'partials' partial_name = "#{File.basename(name)}.haml" partial_path = File.join(@src_dir, partial_dir, partial_name) end if File.exists?(partial_path) partial_rel_path = "/#{partial_dir}/#{partial_name}".gsub(/\/+/, '/') @current_file_stack.unshift(partial_rel_path) begin generate_html_from_template_source(File.read(partial_path), options) rescue Exception => e raise StaticMatic::TemplateError.new(partial_path, e) ensure @current_file_stack.shift end else raise StaticMatic::Error.new("", name, "Partial not found") end end def generate_css(source, source_dir = '') full_file_path = File.join(@src_dir, 'stylesheets', source_dir, "#{source}.sass") begin sass_options = { :load_paths => [ File.join(@src_dir, 'stylesheets') ] }.merge(self.configuration.sass_options) stylesheet = Sass::Engine.new(File.read(full_file_path), sass_options) stylesheet.to_css rescue Exception => e render_rescue_from_error(StaticMatic::TemplateError.new(full_file_path, e)) end end # Generates html from the passed source string # # generate_html_from_template_source("%h1 Welcome to My Site") -> "