Sha256: 91f62c9d862680f0517398cb819775ea5ecc1069fcb862972f49de7871cf0348

Contents?: true

Size: 1.44 KB

Versions: 6

Compression:

Stored size: 1.44 KB

Contents

require 'haml'

module Jekyll

  class HamlPartialTag < Liquid::Tag
    def initialize(tag_name, file, tokens)
      super
      @file = file.strip
    end

    def render(context)
      includes_dir = File.join(context.registers[:site].source, '_includes')

      if File.symlink?(includes_dir)
        return "Includes directory '#{includes_dir}' cannot be a symlink"
      end

      if @file !~ /^[a-zA-Z0-9_\/\.-]+$/ || @file =~ /\.\// || @file =~ /\/\./
        return "Include file '#{@file}' contains invalid characters or sequences"
      end

      return "File must have \".haml\" extension" if @file !~ /\.haml$/

      Dir.chdir(includes_dir) do
        choices = Dir['**/*'].reject { |x| File.symlink?(x) }
        if choices.include?(@file)
          source     = File.read(@file)
          conversion = ::Haml::Engine.new(source).render
          partial    = Liquid::Template.parse(conversion)
          begin
            return partial.render!(context)
          rescue => e
            puts "Liquid Exception: #{e.message} in #{self.data["layout"]}"
            e.backtrace.each do |backtrace|
              puts backtrace
            end
            abort("Build Failed")
          end

          context.stack do
            return partial.render(context)
          end
        else
          "Included file '#{@file}' not found in _includes directory"
        end
      end
    end
  end

end

Liquid::Template.register_tag('haml', Jekyll::HamlPartialTag)

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
jekyll-haml-0.1.5 lib/jekyll-haml/tags/haml_partial.rb
jekyll-haml-0.1.4 lib/jekyll-haml/tags/haml_partial.rb
jekyll-haml-0.1.3 lib/jekyll-haml/tags/haml_partial.rb
jekyll-haml-0.1.2 lib/jekyll-haml/tags/haml_partial.rb
jekyll-haml-0.1.1 lib/jekyll-haml/tags/haml_partial.rb
jekyll-haml-0.0.1 lib/jekyll-haml/tags/haml_partial.rb