Class: Tilt::Template
- Inherits:
-
Object
- Object
- Tilt::Template
- Defined in:
- lib/tilt/template.rb
Overview
Base class for template implementations. Subclasses must implement the #prepare method and one of the #evaluate or #precompiled_template methods.
Direct Known Subclasses
AsciidoctorTemplate, BabelTemplate, BlueClothTemplate, BuilderTemplate, CSVTemplate, CoffeeScriptTemplate, CommonMarkerTemplate, CreoleTemplate, ERBTemplate, EtanniTemplate, HamlTemplate, KramdownTemplate, LessTemplate, LiquidTemplate, MarkabyTemplate, MarukuTemplate, NokogiriTemplate, PandocTemplate, PlainTemplate, PrawnTemplate, RDiscountTemplate, RDocTemplate, RadiusTemplate, RedClothTemplate, Redcarpet1Template, Redcarpet2Template, SassTemplate, StringTemplate, TypeScriptTemplate, WikiClothTemplate, YajlTemplate
Instance Attribute Summary collapse
-
#data ⇒ Object
readonly
Template source; loaded from a file or given directly.
-
#file ⇒ Object
readonly
The name of the file where the template data was loaded from.
-
#line ⇒ Object
readonly
The line number in #file where template data was loaded from.
-
#options ⇒ Object
readonly
A Hash of template engine specific options.
Class Method Summary collapse
-
.default_mime_type ⇒ Object
deprecated
Deprecated.
Use ‘.metadata` instead.
-
.default_mime_type=(value) ⇒ Object
deprecated
Deprecated.
Use ‘.metadata = val` instead.
-
.metadata ⇒ Object
An empty Hash that the template engine can populate with various metadata.
Instance Method Summary collapse
-
#basename(suffix = '') ⇒ Object
The basename of the template file.
-
#eval_file ⇒ Object
The filename used in backtraces to describe the template.
-
#initialize(file = nil, line = 1, options = {}, &block) ⇒ Template
constructor
Create a new template with the file, line, and options specified.
-
#metadata ⇒ Object
An empty Hash that the template engine can populate with various metadata.
-
#name ⇒ Object
The template file’s basename with all extensions chomped off.
-
#render(scope = nil, locals = {}, &block) ⇒ Object
Render the template in the given scope with the locals specified.
Constructor Details
#initialize(file = nil, line = 1, options = {}, &block) ⇒ Template
Create a new template with the file, line, and options specified. By default, template data is read from the file. When a block is given, it should read template data and return as a String. When file is nil, a block is required.
All arguments are optional.
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
# File 'lib/tilt/template.rb', line 53 def initialize(file=nil, line=1, ={}, &block) @file, @line, @options = nil, 1, {} [, line, file].compact.each do |arg| case when arg.respond_to?(:to_str) ; @file = arg.to_str when arg.respond_to?(:to_int) ; @line = arg.to_int when arg.respond_to?(:to_hash) ; @options = arg.to_hash.dup when arg.respond_to?(:path) ; @file = arg.path when arg.respond_to?(:to_path) ; @file = arg.to_path else raise TypeError, "Can't load the template file. Pass a string with a path " + "or an object that responds to 'to_str', 'path' or 'to_path'" end end raise ArgumentError, "file or block required" if (@file || block).nil? # used to hold compiled template methods @compiled_method = {} # used on 1.9 to set the encoding if it is not set elsewhere (like a magic comment) # currently only used if template compiles to ruby @default_encoding = @options.delete :default_encoding # load template data and prepare (uses binread to avoid encoding issues) @reader = block || lambda { |t| read_template_file } @data = @reader.call(self) if @data.respond_to?(:force_encoding) if default_encoding @data = @data.dup if @data.frozen? @data.force_encoding(default_encoding) end if !@data.valid_encoding? raise Encoding::InvalidByteSequenceError, "#{eval_file} is not valid #{@data.encoding}" end end prepare end |
Instance Attribute Details
#data ⇒ Object (readonly)
Template source; loaded from a file or given directly.
16 17 18 |
# File 'lib/tilt/template.rb', line 16 def data @data end |
#file ⇒ Object (readonly)
The name of the file where the template data was loaded from.
19 20 21 |
# File 'lib/tilt/template.rb', line 19 def file @file end |
#line ⇒ Object (readonly)
The line number in #file where template data was loaded from.
22 23 24 |
# File 'lib/tilt/template.rb', line 22 def line @line end |
#options ⇒ Object (readonly)
A Hash of template engine specific options. This is passed directly to the underlying engine and is not used by the generic template interface.
27 28 29 |
# File 'lib/tilt/template.rb', line 27 def @options end |
Class Method Details
.default_mime_type ⇒ Object
Use ‘.metadata` instead.
37 38 39 |
# File 'lib/tilt/template.rb', line 37 def default_mime_type [:mime_type] end |
.default_mime_type=(value) ⇒ Object
Use ‘.metadata = val` instead.
42 43 44 |
# File 'lib/tilt/template.rb', line 42 def default_mime_type=(value) [:mime_type] = value end |
.metadata ⇒ Object
An empty Hash that the template engine can populate with various metadata.
32 33 34 |
# File 'lib/tilt/template.rb', line 32 def @metadata ||= {} end |
Instance Method Details
#basename(suffix = '') ⇒ Object
The basename of the template file.
108 109 110 |
# File 'lib/tilt/template.rb', line 108 def basename(suffix='') File.basename(file, suffix) if file end |
#eval_file ⇒ Object
The filename used in backtraces to describe the template.
118 119 120 |
# File 'lib/tilt/template.rb', line 118 def eval_file file || '(__TEMPLATE__)' end |
#metadata ⇒ Object
An empty Hash that the template engine can populate with various metadata.
124 125 126 127 128 129 130 |
# File 'lib/tilt/template.rb', line 124 def if respond_to?(:allows_script?) self.class..merge(:allows_script => allows_script?) else self.class. end end |
#name ⇒ Object
The template file’s basename with all extensions chomped off.
113 114 115 |
# File 'lib/tilt/template.rb', line 113 def name basename.split('.', 2).first if basename end |
#render(scope = nil, locals = {}, &block) ⇒ Object
Render the template in the given scope with the locals specified. If a block is given, it is typically available within the template via yield.
98 99 100 101 102 103 104 105 |
# File 'lib/tilt/template.rb', line 98 def render(scope=nil, locals={}, &block) scope ||= Object.new current_template = Thread.current[:tilt_current_template] Thread.current[:tilt_current_template] = self evaluate(scope, locals || {}, &block) ensure Thread.current[:tilt_current_template] = current_template end |