Sha256: d9bad4cdc96eae61f89cad2862e7275b7aad6ff60dc03b52220faff5d773c52e
Contents?: true
Size: 727 Bytes
Versions: 1
Compression:
Stored size: 727 Bytes
Contents
# Copyright (c) 2006 Michael Fellinger m.fellinger@gmail.com # All files in this distribution are subject to the terms of the Ruby license. require 'ramaze/template/ezamar/engine' module Ezamar class RenderPartial # Renders <render src="/path" [optional="option", ...]> in place. # # Other options than `src` will be transformed to session parameters for the # rendered action to use. def self.transform(template, action, file = __FILE__) template.gsub!(/<render (.*?) \/>/) do |m| args = Hash[*$1.scan(/(\S+)=["'](.*?)["']/).flatten] if src = args.delete('src') PartialHelper.render_partial(src, args) end end template end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ramaze-0.1.2 | lib/ramaze/template/ezamar/render_partial.rb |