Sha256: 171f32fb657d0d0ccfa90483a4e59f7a826883a68b630b30a56730bc4a681a6f

Contents?: true

Size: 1.34 KB

Versions: 18

Compression:

Stored size: 1.34 KB

Contents

#          Copyright (c) 2008 Michael Fellinger m.fellinger@gmail.com
# All files in this distribution are subject to the terms of the Ruby license.

require 'nagoro'

module Ramaze
  module Template

    # Is responsible for compiling a template using the Nagoro templating engine.

    class Nagoro < Template

      ENGINES[self] = %w[ xhtml nag ]

      PIPES = ::Nagoro::DEFAULT_PIPES.dup

      class << self

        # Transforms an action into the XHTML code for parsing and returns
        # the result
        def transform action
          nagoro = wrap_compile(action)
          file = action.template || action.method
          nagoro.result(:file => file, :binding => action.binding)
        end

        # Use file_or_result instead of reaction_or_file
        def wrap_compile(action, template = nil)
          template ||= file_or_result(action)
          caching_compile(action, template)
        end

        def file_or_result(action)
          result = render_method(action).to_s

          if file = action.template
            return File.new(file)
          end

          result
        end

        # Compile a template, applying all transformations from the pipeline
        # and returning an instance of ::Nagoro::Template

        def compile(action, template)
          ::Nagoro.compile(template)
        end
      end
    end
  end
end

Version data entries

18 entries across 18 versions & 5 rubygems

Version Path
Pistos-ramaze-2008.09 lib/ramaze/template/nagoro.rb
Pistos-ramaze-2008.12 lib/ramaze/template/nagoro.rb
Pistos-ramaze-2009.01 lib/ramaze/template/nagoro.rb
Pistos-ramaze-2009.02 lib/ramaze/template/nagoro.rb
clivecrous-ramaze-0.3.9.5 lib/ramaze/template/nagoro.rb
manveru-ramaze-2008.07 lib/ramaze/template/nagoro.rb
manveru-ramaze-2008.08 lib/ramaze/template/nagoro.rb
manveru-ramaze-2008.09 lib/ramaze/template/nagoro.rb
manveru-ramaze-2008.10 lib/ramaze/template/nagoro.rb
manveru-ramaze-2008.12 lib/ramaze/template/nagoro.rb
manveru-ramaze-2009.01 lib/ramaze/template/nagoro.rb
ptomato-ramaze-2009.02.1 lib/ramaze/template/nagoro.rb
ptomato-ramaze-2009.02 lib/ramaze/template/nagoro.rb
ramaze-2008.06 lib/ramaze/template/nagoro.rb
ramaze-2009.01 lib/ramaze/template/nagoro.rb
ramaze-2008.11 lib/ramaze/template/nagoro.rb
ramaze-2009.03 lib/ramaze/template/nagoro.rb
ramaze-2009.02 lib/ramaze/template/nagoro.rb