Sha256: 9428d934fd37459c29bc7da15da3c423f5efcde430693ff74064dce6263fd7d0

Contents?: true

Size: 926 Bytes

Versions: 30

Compression:

Stored size: 926 Bytes

Contents

class ArchiveYearIndexPage < Page
  
  description %{
    To create a year index for an archive, create a child page for the
    archive and assign the "Archive Year Index" page type to it.
    
    A year index page makes following tags available to you:
    
    <r:archive:children>...</r:archive:children>
      Grants access to a subset of the children of the archive page
      that match the specific year which the index page is rendering.
  }
  
  include ArchiveIndexTagsAndMethods
  desc %{
      Grants access to a subset of the children of the archive page
      that match the specific year which the index page is rendering.
      
      *Usage*:
       <pre><code><r:archive:children>...</r:archive:children></code></pre>
  }
  tag "archive:children" do |tag|
    year = $1 if request_uri =~ %r{/(\d{4})/?$}
    tag.locals.children = ArchiveFinder.year_finder(parent.children, year)
    tag.expand
  end
  
end

Version data entries

30 entries across 30 versions & 3 rubygems

Version Path
radiant-0.6.5.1 vendor/extensions/archive/app/models/archive_year_index_page.rb
radiant-0.6.4 vendor/extensions/archive/app/models/archive_year_index_page.rb
radiant-0.6.5 vendor/extensions/archive/app/models/archive_year_index_page.rb
radiant-0.6.6 vendor/extensions/archive/app/models/archive_year_index_page.rb
radiant-0.6.7 vendor/extensions/archive/app/models/archive_year_index_page.rb
radiant-0.6.9 vendor/extensions/archive/app/models/archive_year_index_page.rb
radiant-0.6.8 vendor/extensions/archive/app/models/archive_year_index_page.rb
radiant-0.7.0 vendor/extensions/archive/app/models/archive_year_index_page.rb
radiant-0.7.1 vendor/extensions/archive/app/models/archive_year_index_page.rb
radiant-0.8.0 vendor/extensions/archive/app/models/archive_year_index_page.rb