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:
- 839 Bytes
1 | <%- |
2 | @title = "#{@page.plain_name} (Rev ##{@revision_number}#{@show_diff ? ', changes' : ''})".html_safe |
3 | -%> |
4 | |
5 | |
6 | <div id="revision"> |
7 | <%- if @show_diff -%> |
8 | <p class="show_diff"> |
9 | Showing changes from revision #<%= @revision_number - 1 %> to #<%= @revision_number %>: |
10 | <ins class="diffins">Added</ins> | <del class="diffdel">Removed</del> | <del class="diffmod">Chan</del><ins class="diffmod">ged</ins> |
11 | </p> |
12 | <%= @renderer.display_diff %> |
13 | <%- else -%> |
14 | <%= @renderer.display_content %> |
15 | <%- end -%> |
16 | </div> <!-- Revision --> |
17 | |
18 | <div class="byline"> |
19 | <%= "Revision from #{format_date(@revision.revised_at)} by" %> |
20 | <%= link_to_page @revision.author.purify %> |
21 | </div> |
22 | |
23 | <div class="navigation navfoot"> |
24 | <%= raw navigation_menu_for_revision.join(' | ') %> |
25 | <%= render :partial => 'inbound_links' %> |
26 | </div> |