Method: AutomaticAuthorIndex#create_author_page_for

Defined in:
lib/helpers/default-helpers.rb

#create_author_page_for(author) ⇒ Object



402
403
404
405
406
407
408
409
410
411
412
413
# File 'lib/helpers/default-helpers.rb', line 402

def create_author_page_for( author ) 
AutomaticSummary.new( @wiki, {   :pagename => "#{author}#{@author_page_tail}" ,
								:regexp_for_author => /#{author}/,
								:author => @author,
								:only_new_pages => false,
								:sort_pages_by => :revised_on,
								:include_metadata => true,
								:summarise_revisions => true,
								:reverse_sort => true,
								:remove_deleted_pages => false,
							 } )		
end