Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 344
- Log:
Massive changeset which brings the old, ROOL customised Instiki
version up to date, but without any ROOL customisations in this
latest checked-in version (which is 0.19.1). This is deliberate,
so that it's easy to see the changes made for the ROOL version
in a subsequent changeset. The 'app/views/shared' directory is not
part of Instiki but is kept to maintain the change history with
updated ROOL customisations, some of which involve the same files
in that same directory.
- Author:
- rool
- Date:
- Sat Mar 19 19:52:13 +0000 2011
- Size:
- 651 Bytes
1 | #!/usr/bin/env ruby |
2 | |
3 | ENV['RAILS_ENV'] = ARGV.first || 'development' |
4 | |
5 | $stderr.puts "Loading Rails for #{ENV['RAILS_ENV']} environment..." |
6 | require File.dirname(__FILE__) + '/../config/environment' |
7 | |
8 | class StubUrlGenerator |
9 | def make_link(*args) |
10 | 'StubLink' |
11 | end |
12 | end |
13 | |
14 | PageRenderer.setup_url_generator(StubUrlGenerator.new) |
15 | WikiReference.delete_all |
16 | |
17 | Web.find_all.each do |web| |
18 | web.pages.find(:all, :order => 'name').each do |page| |
19 | $stderr.puts "Processing page '#{page.name}'" |
20 | begin |
21 | PageRenderer.new(page.current_revision).display_content(update_references = true) |
22 | rescue => e |
23 | puts e |
24 | puts e.backtrace |
25 | end |
26 | end |
27 | end |
28 |