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:
- 703 Bytes
1 | <%- |
2 | @title = @page.plain_name |
3 | @hide_navigation = false |
4 | @style_additions = ".newWikiWord { background-color: white; font-style: italic; }" |
5 | @inline_style = false |
6 | @show_footer = true |
7 | -%> |
8 | |
9 | <%= @renderer.display_published %> |
10 | |
11 | <div class="byline"> |
12 | <%= @page.revisions? ? "Revised" : "Created" %> on <%= format_date(@page.revised_at) %> |
13 | by |
14 | <%= author_link(@page, { :mode => (@link_mode || :show) }) %> |
15 | </div> |
16 | |
17 | <div class="navigation navfoot"> |
18 | <span class="views"> |
19 | <%- if WikiReference.pages_in_category(@web, 'S5-slideshow').map.include?(@page.name) -%> |
20 | Views: |
21 | <%= link_to 'S5', {:web => @web.address, :action => 's5', |
22 | :id => @page.name}, {:id => 'view_S5'} %> |
23 | <%- end -%> |
24 | </span> |
25 | </div> |