Class: Jekyll::Page
Constant Summary collapse
- FORWARD_SLASH =
'/'.freeze
- ATTRIBUTES_FOR_LIQUID =
Attributes for Liquid templates
%w( content dir name path url )
- HTML_EXTENSIONS =
A set of extensions that are considered HTML or HTML-like so we should not alter them, this includes .xhtml through XHTM5.
%W( .html .xhtml .htm )
Instance Attribute Summary collapse
-
#basename ⇒ Object
Returns the value of attribute basename.
-
#content ⇒ Object
Returns the value of attribute content.
-
#data ⇒ Object
Returns the value of attribute data.
-
#dir ⇒ Object
The generated directory into which the page will be placed upon generation.
-
#ext ⇒ Object
(also: #extname)
Returns the value of attribute ext.
-
#name ⇒ Object
Returns the value of attribute name.
-
#output ⇒ Object
Returns the value of attribute output.
-
#pager ⇒ Object
Returns the value of attribute pager.
-
#site ⇒ Object
Returns the value of attribute site.
Instance Method Summary collapse
-
#destination(dest) ⇒ Object
Obtain destination path.
-
#html? ⇒ Boolean
Returns the Boolean of whether this Page is HTML or not.
-
#index? ⇒ Boolean
Returns the Boolean of whether this Page is an index file or not.
-
#initialize(site, base, dir, name) ⇒ Page
constructor
Initialize a new Page.
-
#inspect ⇒ Object
Returns the object as a debug String.
-
#path ⇒ Object
The path to the source file.
-
#permalink ⇒ Object
The full path and filename of the post.
-
#process(name) ⇒ Object
Extract information from the page filename.
-
#relative_path ⇒ Object
The path to the page source file, relative to the site source.
-
#render(layouts, site_payload) ⇒ Object
Add any necessary layouts to this post.
-
#template ⇒ Object
The template of the permalink.
- #trigger_hooks(hook_name, *args) ⇒ Object
-
#url ⇒ Object
The generated relative url of this page.
-
#url_placeholders ⇒ Object
Returns a hash of URL placeholder names (as symbols) mapping to the desired placeholder replacements.
- #write? ⇒ Boolean
Methods included from Convertible
#[], #asset_file?, #coffeescript_file?, #converters, #do_layout, #hook_owner, #invalid_layout?, #output_ext, #place_in_layout?, #published?, #read_yaml, #render_all_layouts, #render_liquid, #render_with_liquid?, #sass_file?, #to_liquid, #to_s, #transform, #type, #validate_data!, #validate_permalink!, #write
Constructor Details
#initialize(site, base, dir, name) ⇒ Page
Initialize a new Page.
site - The Site object. base - The String path to the source. dir - The String path between the source and the file. name - The String filename of the file.
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
# File 'lib/jekyll/page.rb', line 38 def initialize(site, base, dir, name) @site = site @base = base @dir = dir @name = name process(name) read_yaml(File.join(base, dir), name) data.default_proc = proc do |_, key| site.frontmatter_defaults.find(File.join(dir, name), type, key) end Jekyll::Hooks.trigger :pages, :post_init, self end |
Instance Attribute Details
#basename ⇒ Object
Returns the value of attribute basename.
7 8 9 |
# File 'lib/jekyll/page.rb', line 7 def basename @basename end |
#content ⇒ Object
Returns the value of attribute content.
8 9 10 |
# File 'lib/jekyll/page.rb', line 8 def content @content end |
#data ⇒ Object
Returns the value of attribute data.
8 9 10 |
# File 'lib/jekyll/page.rb', line 8 def data @data end |
#dir ⇒ Object
The generated directory into which the page will be placed upon generation. This is derived from the permalink or, if permalink is absent, we be ‘/’
Returns the String destination directory.
59 60 61 62 63 64 65 66 |
# File 'lib/jekyll/page.rb', line 59 def dir if url.end_with?(FORWARD_SLASH) url else url_dir = File.dirname(url) url_dir.end_with?(FORWARD_SLASH) ? url_dir : "#{url_dir}/" end end |
#ext ⇒ Object Also known as: extname
Returns the value of attribute ext.
7 8 9 |
# File 'lib/jekyll/page.rb', line 7 def ext @ext end |
#name ⇒ Object
Returns the value of attribute name.
7 8 9 |
# File 'lib/jekyll/page.rb', line 7 def name @name end |
#output ⇒ Object
Returns the value of attribute output.
8 9 10 |
# File 'lib/jekyll/page.rb', line 8 def output @output end |
#pager ⇒ Object
Returns the value of attribute pager.
6 7 8 |
# File 'lib/jekyll/page.rb', line 6 def pager @pager end |
#site ⇒ Object
Returns the value of attribute site.
6 7 8 |
# File 'lib/jekyll/page.rb', line 6 def site @site end |
Instance Method Details
#destination(dest) ⇒ Object
Obtain destination path.
dest - The String path to the destination dir.
Returns the destination file path String.
150 151 152 153 154 155 |
# File 'lib/jekyll/page.rb', line 150 def destination(dest) path = site.in_dest_dir(dest, URL.unescape_path(url)) path = File.join(path, "index") if url.end_with?("/") path << output_ext unless path.end_with? output_ext path end |
#html? ⇒ Boolean
Returns the Boolean of whether this Page is HTML or not.
163 164 165 |
# File 'lib/jekyll/page.rb', line 163 def html? HTML_EXTENSIONS.include?(output_ext) end |
#index? ⇒ Boolean
Returns the Boolean of whether this Page is an index file or not.
168 169 170 |
# File 'lib/jekyll/page.rb', line 168 def index? basename == 'index' end |
#inspect ⇒ Object
Returns the object as a debug String.
158 159 160 |
# File 'lib/jekyll/page.rb', line 158 def inspect "#<Jekyll:Page @name=#{name.inspect}>" end |
#path ⇒ Object
The path to the source file
Returns the path to the source file
136 137 138 |
# File 'lib/jekyll/page.rb', line 136 def path data.fetch('path') { relative_path.sub(/\A\//, '') } end |
#permalink ⇒ Object
The full path and filename of the post. Defined in the YAML of the post body.
Returns the String permalink or nil if none has been set.
72 73 74 |
# File 'lib/jekyll/page.rb', line 72 def permalink data.nil? ? nil : data['permalink'] end |
#process(name) ⇒ Object
Extract information from the page filename.
name - The String filename of the page file.
Returns nothing.
115 116 117 118 |
# File 'lib/jekyll/page.rb', line 115 def process(name) self.ext = File.extname(name) self.basename = name[0..-ext.length - 1] end |
#relative_path ⇒ Object
The path to the page source file, relative to the site source
141 142 143 |
# File 'lib/jekyll/page.rb', line 141 def relative_path File.join(*[@dir, @name].map(&:to_s).reject(&:empty?)) end |
#render(layouts, site_payload) ⇒ Object
Add any necessary layouts to this post
layouts - The Hash of => “layout”. site_payload - The site payload Hash.
Returns nothing.
126 127 128 129 130 131 |
# File 'lib/jekyll/page.rb', line 126 def render(layouts, site_payload) site_payload["page"] = to_liquid site_payload["paginator"] = pager.to_liquid do_layout(site_payload, layouts) end |
#template ⇒ Object
The template of the permalink.
Returns the template String.
79 80 81 82 83 84 85 86 87 |
# File 'lib/jekyll/page.rb', line 79 def template if !html? "/:path/:basename:output_ext" elsif index? "/:path/" else Utils.add_permalink_suffix("/:path/:basename", site.permalink_style) end end |
#trigger_hooks(hook_name, *args) ⇒ Object
172 173 174 |
# File 'lib/jekyll/page.rb', line 172 def trigger_hooks(hook_name, *args) Jekyll::Hooks.trigger :pages, hook_name, self, *args end |
#url ⇒ Object
The generated relative url of this page. e.g. /about.html.
Returns the String url.
92 93 94 95 96 97 98 |
# File 'lib/jekyll/page.rb', line 92 def url @url ||= URL.new({ :template => template, :placeholders => url_placeholders, :permalink => permalink }).to_s end |
#url_placeholders ⇒ Object
Returns a hash of URL placeholder names (as symbols) mapping to the desired placeholder replacements. For details see “url.rb”
102 103 104 105 106 107 108 |
# File 'lib/jekyll/page.rb', line 102 def url_placeholders { :path => @dir, :basename => basename, :output_ext => output_ext } end |
#write? ⇒ Boolean
176 177 178 |
# File 'lib/jekyll/page.rb', line 176 def write? true end |