Changeset 319

Show
Ignore:
Timestamp:
02/08/07 21:00:23 (2 years ago)
Author:
seancribbs
Message:

facets: updated Archive page types documentation.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/facets/app/models/archive_day_index_page.rb

    r182 r319  
    1313   
    1414  include ArchiveIndexTagsAndMethods 
    15    
     15  desc %{ 
     16      Grants access to a subset of the children of the archive page 
     17      that match the specific day which the index page is rendering. 
     18       
     19      *Usage*: 
     20       <pre><code><r:archive:children>...</r:archive:children></code></pre> 
     21  } 
    1622  tag "archive:children" do |tag| 
    1723    year, month, day = $1, $2, $3 if request_uri =~ %r{/(\d{4})/(\d{2})/(\d{2})/?$} 
  • branches/facets/app/models/archive_month_index_page.rb

    r182 r319  
    1313   
    1414  include ArchiveIndexTagsAndMethods 
    15    
     15  desc %{ 
     16      Grants access to a subset of the children of the archive page 
     17      that match the specific month which the index page is rendering. 
     18       
     19      *Usage*: 
     20       <pre><code><r:archive:children>...</r:archive:children></code></pre> 
     21  } 
    1622  tag "archive:children" do |tag| 
    1723    year, month = $1, $2 if request_uri =~ %r{/(\d{4})/(\d{2})/?$} 
  • branches/facets/app/models/archive_year_index_page.rb

    r182 r319  
    1313   
    1414  include ArchiveIndexTagsAndMethods 
    15    
     15  desc %{ 
     16      Grants access to a subset of the children of the archive page 
     17      that match the specific year which the index page is rendering. 
     18       
     19      *Usage*: 
     20       <pre><code><r:archive:children>...</r:archive:children></code></pre> 
     21  } 
    1622  tag "archive:children" do |tag| 
    1723    year = $1 if request_uri =~ %r{/(\d{4})/?$}