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:
- 803 Bytes
1 | <%- @title = "Recently Revised" -%> |
2 | |
3 | <%= categories_menu %> |
4 | |
5 | <%- @pages_by_day.keys.sort.reverse.each do |day| -%> |
6 | <h3><%= format_date(day, include_time = false) %></h3> |
7 | <ul> |
8 | <%- for page in @pages_by_day[day] -%> |
9 | <li> |
10 | <%= link_to_existing_page page %> |
11 | <%- if page.revisions.size > 1 %> |
12 | <span class="views"> |
13 | ( <%= link_to_revision(page, page.revisions.size, text='diff', |
14 | mode='diff') %> | <%= link_to_history(page, text='history') %> ) |
15 | </span> |
16 | <%- end -%> |
17 | <div class="byline" style="margin-bottom: 0px"> |
18 | by <%= link_to_page(page.author) %> |
19 | at <%= format_date(page.revised_at) %> |
20 | <%= "from #{page.author.ip}" if page.author.respond_to?(:ip) %> |
21 | </div> |
22 | </li> |
23 | <%- end -%> |
24 | </ul> |
25 | <%- end -%> |