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:
- 461 Bytes
1 | <%- @title = "Feeds" -%> |
2 | |
3 | <p>You can subscribe to this wiki's Atom feed and get either just the headlines of the pages that change or the entire page.</p> |
4 | |
5 | <ul id="feedsList"> |
6 | <%- if @rss_with_content_allowed -%> |
7 | <li> |
8 | <%= link_to 'Full content (Atom 1.0)', :web => @web.address, :action => :atom_with_content %> |
9 | </li> |
10 | <%- end -%> |
11 | <li> |
12 | <%= link_to 'Headlines (Atom 1.0)', :web => @web.address, :action => :atom_with_headlines %> |
13 | </li> |
14 | </ul> |