Class: Ezamar::Template
Overview
This class is responsible for initializing and compiling the template.
Instance Method Summary collapse
-
#compile ⇒ Object
All ye who seek magic, look elsewhere, this method is ASAP (as simple as possible).
-
#initialize(template, options = {}) ⇒ Template
constructor
Take a template (anything that responds to ::to_str) and options.
-
#result(binding) ⇒ Object
Takes a binding and evals it with the previously set options.
Constructor Details
#initialize(template, options = {}) ⇒ Template
Take a template (anything that responds to ::to_str) and options. At the moment the only option used is :file, which is used to tell Kernel::eval how to produce better backtraces.
24 25 26 27 |
# File 'lib/ramaze/template/ezamar/engine.rb', line 24 def initialize(template, = {}) @template, @options = template, compile end |
Instance Method Details
#compile ⇒ Object
All ye who seek magic, look elsewhere, this method is ASAP (as simple as possible)
There are some simple gsubs that build a final template which is evaluated
The rules are following: <?r rubycode ?>
evaluate the code inside the tag, this is considered XHTML-valid and so is the
preferred method for executing code inside your templates.
The return-value is ignored
<% rubycode %>
The same as <?r ?>, ERB-style and not valid XHTML, but should give someone who
is already familiar with ERB some common ground
#{ rubycode }
You know this from normal ruby already and it's actually nothing else.
Interpolation at the position in the template, isn't any special taggy format
and therefor safe to use.
<%= rubycode %>
The result of this will be interpolated at the position in the template.
Not valid XHTML either.
TODO
- provide C version or maybe use erbuis
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/ramaze/template/ezamar/engine.rb', line 52 def compile temp = @template.dup start_heredoc = "T" << Digest::SHA1.hexdigest(temp) start_heredoc, end_heredoc = "\n<<#{start_heredoc}\n", "\n#{start_heredoc}\n" bufadd = "_out_ << " temp.gsub!(/<%(?!=)\s*(.*?)\s*%>/m, "#{end_heredoc} \\1; #{bufadd} #{start_heredoc}") temp.gsub!(/<\?r\s+(.*?)\s+\?>/m, "#{end_heredoc} \\1; #{bufadd} #{start_heredoc}") temp.gsub!(/<%=\s*(.*?)\s*%>/m, "#{end_heredoc} #{bufadd} (\\1); #{bufadd} #{start_heredoc}") @compiled = "_out_ = '' #{bufadd} #{start_heredoc} #{temp} #{end_heredoc} _out_" end |
#result(binding) ⇒ Object
Takes a binding and evals it with the previously set options.
72 73 74 |
# File 'lib/ramaze/template/ezamar/engine.rb', line 72 def result(binding) eval(@compiled, binding, @options[:file]).strip end |