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:
- 621 Bytes
1 | <%- @title = "#{@page.plain_name} is locked".html_safe -%> |
2 | |
3 | <p> |
4 | <%= link_to_page(h(@page.locked_by.purify)) %> |
5 | <%- if @page.lock_duration(Time.now) == 0 -%> |
6 | just started editing this page. |
7 | <%- else -%> |
8 | has been editing this page for <%= @page.lock_duration(Time.now) %> minutes. |
9 | <%- end -%> |
10 | </p> |
11 | |
12 | <p> |
13 | <%= link_to 'Edit the page anyway', |
14 | {:web => @web_name, :action => 'edit', :id => @page.name, :params => {'break_lock' => '1'} }, |
15 | {:accesskey => 'E'} |
16 | %> |
17 | |
18 | <%= link_to 'Cancel', |
19 | {:web => @web_name, :action => 'show', :id => @page.name}, |
20 | {:accesskey => 'C'} |
21 | %> |
22 | |
23 | </p> |