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:
- 294 Bytes
1 | <%- @title = 'Authors' -%> |
2 | |
3 | <ul id="authorList"> |
4 | <%- for author in @authors -%> |
5 | <li> |
6 | <%= link_to_page author.purify %> |
7 | co- or authored: |
8 | <%= raw @page_names_by_author[author].collect { |page_name| link_to_page(page_name) }.sort.join ', ' %> |
9 | </li> |
10 | <%- end -%> |
11 | </ul> |