Mercurial > hg > soundsoftware-site
annotate test/exemplars/wiki_redirect_exemplar.rb @ 1021:967fb7e62b1d browsing
Include only public projects in busy institutions / projects queries, so results can be cached (the tag cloud was already public projects only). Introduce tentatively some cacheing thingies
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Tue, 13 Nov 2012 10:35:23 +0000 |
parents | cbb26bc654de |
children |
rev | line source |
---|---|
Chris@0 | 1 class WikiRedirect < ActiveRecord::Base |
Chris@909 | 2 generator_for :title, :start => 'AWikiPage' |
Chris@909 | 3 generator_for :redirects_to, :start => '/a/path/000001' |
Chris@0 | 4 generator_for :wiki, :method => :generate_wiki |
Chris@0 | 5 |
Chris@0 | 6 def self.generate_wiki |
Chris@0 | 7 Wiki.generate! |
Chris@0 | 8 end |
Chris@0 | 9 end |