Sha256: 2cbcc59b41adddda78d69ec71c31d250e752f754104b69bd8aeca80ea7236f27

Contents?: true

Size: 1.15 KB

Versions: 1

Compression:

Stored size: 1.15 KB

Contents

require 'awestruct/handlers/base_handler'

module Awestruct
  module Handlers
    class FileHandler < BaseHandler

      attr_accessor :path

      def initialize(site, path)
        super( site )
        case ( path )
          when Pathname
            @path = path
          else
            @path = Pathname.new( path.to_s )
        end
      end

      def output_filename
        File.basename( @path )
      end

      def relative_source_path
        begin
          p = path.relative_path_from( site.dir ) 
          return nil if !! ( %r(^\.\.) =~ p )
          r = File.join( '', p )
          return r
        rescue Exception=>e
          nil
        end
      end

      def stale?
        return true if ( @content.nil? || ( File.mtime( @path ) > @mtime ) )
        false
      end

      def input_mtime(page)
        path.mtime
      end

      def raw_content
        read
        @content
      end

      def rendered_content(context, with_layouts=true)
        raw_content
      end

      private 

      def read
        ( @content = File.read( @path ) ) if stale?
        @mtime = File.mtime( @path )
        return @content
      end

    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
awestructx-0.4.1 lib/awestruct/handlers/file_handler.rb