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:
- 1002 Bytes
1 | <%- @title = @page.plain_name + " (history)".html_safe -%> |
2 | <%- @show_footer = true -%> |
3 | |
4 | <%- @revisions_by_day.keys.sort.reverse.each do |day| -%> |
5 | <h3><%= format_date(day, include_time = false) %></h3> |
6 | <ul> |
7 | <%- for rev in @revisions_by_day[day] -%> |
8 | <li> |
9 | <%= link_to_revision(rev.page, @revision_numbers[rev.id], |
10 | text= (rev.page.revisions.size == @revision_numbers[rev.id] ? |
11 | "Current" : |
12 | "Revision #{@revision_numbers[rev.id]}" ) |
13 | ) %> |
14 | <%- if @revision_numbers[rev.id] > 1 -%> |
15 | <span class="hist_views"> |
16 | (<%= link_to_revision(rev.page, @revision_numbers[rev.id], |
17 | text="diff", mode='diff') %>) |
18 | </span> |
19 | <%- end -%> |
20 | <div class="byline" style="margin-bottom: 0px"> |
21 | by <%= link_to_page(rev.author) %> |
22 | at <%= format_date(rev.revised_at) %> |
23 | <%= "from #{rev.author.ip}" if rev.author.respond_to?(:ip) %> |
24 | </div> |
25 | </li> |
26 | <%- end -%> |
27 | </ul> |
28 | <%- end -%> |