Mercurial > hg > soundsoftware-site
view test/exemplars/.svn/text-base/wiki_page_exemplar.rb.svn-base @ 254:0c9da2b87ad6 feature_80
Naively display download "active" status in downloads page, and allow sorting by it
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Thu, 03 Mar 2011 18:31:22 +0000 |
parents | 513646585e45 |
children |
line wrap: on
line source
class WikiPage < ActiveRecord::Base generator_for :title, :method => :next_title generator_for :wiki, :method => :generate_wiki def self.next_title @last_title ||= 'AWikiPage' @last_title.succ! @last_title end def self.generate_wiki Wiki.generate! end end