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:
- 1952 Bytes
1 | <%- |
2 | @title = @page.plain_name |
3 | @title += ' (changes)' if @show_diff |
4 | @show_footer = true |
5 | -%> |
6 | |
7 | <div id="revision"> |
8 | <%- if @show_diff -%> |
9 | <p class="show_diff"> |
10 | Showing changes from revision #<%= @page.revisions.size - 1 %> to #<%= @page.revisions.size %>: |
11 | <ins class="diffins">Added</ins> | <del class="diffdel">Removed</del> | <del class="diffmod">Chan</del><ins class="diffmod">ged</ins> |
12 | </p> |
13 | <%= @renderer.display_diff %> |
14 | <%- else -%> |
15 | <%= @renderer.display_content %> |
16 | <%- end -%> |
17 | </div> |
18 | |
19 | <div class="byline"> |
20 | <%= @page.revisions? ? "Revised" : "Created" %> on <%= format_date(@page.revised_at) %> |
21 | by <%= author_link(@page) %> |
22 | <%= "(#{@page.author.ip})" if @page.author.respond_to?(:ip) %> |
23 | <% if @web.count_pages? %> |
24 | <% total_chars = @page.content.length %> |
25 | (<%= total_chars %> characters / <%= sprintf("%-.1f", (total_chars / 2275 rescue 0)) %> pages) |
26 | <% end %> |
27 | </div> |
28 | |
29 | <div class="navigation navfoot"> |
30 | |
31 | <%= raw navigation_menu_for_page.join(' | ') %> |
32 | |
33 | <span class="views"> |
34 | | Views: |
35 | <%= link_to('Print', |
36 | { :web => @web.address, :action => 'print', :id => @page.name }, |
37 | { :accesskey => 'p', :id => 'view_print', :rel => 'nofollow' }) %> |
38 | <%- if @web.markup == :markdownMML or @web.markup == :markdown or @web.markup == :markdownPNG -%> |
39 | | |
40 | <%= link_to 'TeX', {:web => @web.address, :action => 'tex', :id => @page.name}, |
41 | {:id => 'view_tex', :rel => 'nofollow' } %> |
42 | <% if WikiReference.pages_in_category(@web, 'S5-slideshow').map.include?(@page.name) %> |
43 | | |
44 | <%= link_to 'S5', {:web => @web.address, :action => 's5', :id => @page.name}, |
45 | {:id => 'view_S5'} %> |
46 | <%- end -%> |
47 | <%- end -%> |
48 | | |
49 | <%= link_to 'Source', {:web => @web.address, :action => 'source', :id => @page.name}, |
50 | {:id => 'view_source', :rel => 'nofollow' } %> |
51 | </span> |
52 | |
53 | <%= render :partial => 'inbound_links' %> |
54 | </div> |