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:
- 2044 Bytes
1 | xml.feed('xmlns' => "http://www.w3.org/2005/Atom", "xml:lang" => 'en') do |
2 | xml.title(@web.name) |
3 | xml.link( 'rel' => 'alternate', 'type' => "application/xhtml+xml", 'href' => url_for(:only_path => false, :web => @web_name, :action => @link_action, :id => 'HomePage') ) |
4 | xml.link( 'rel' => 'self', 'href' => url_for(:only_path => false, :web => @web_name, :action => @hide_description? :atom_with_headlines : :atom_with_content ) ) |
5 | xml.updated(@web.revised_at.getgm.strftime("%Y-%m-%dT%H:%M:%SZ") ) |
6 | xml.id('tag:' + url_for(:only_path => false, :web => @web_name).split('/')[2].split(':')[0] + ',' + @web.created_at.getgm.strftime("%Y-%m-%d") + ':' + CGI.escape(@web.name) ) |
7 | xml.subtitle('An Instiki Wiki') |
8 | xml.generator('Instiki', 'uri' => "http://golem.ph.utexas.edu/instiki/show/HomePage", 'version' => Instiki::VERSION::STRING) |
9 | |
10 | for page in @pages_by_revision |
11 | xml.entry do |
12 | xml.title(page.plain_name, 'type' => "html") |
13 | xml.link('rel' => 'alternate', 'type' => 'application/xhtml+xml', 'href' => url_for(:only_path => false, :web => @web_name, :action => @link_action, :id => page.name) ) |
14 | xml.updated(page.revised_at.getgm.strftime("%Y-%m-%dT%H:%M:%SZ") ) |
15 | xml.published(page.created_at.getgm.strftime("%Y-%m-%dT%H:%M:%SZ") ) |
16 | xml.id('tag:' +url_for(:only_path => false, :web => @web_name).split('/')[2].split(':')[0] + ',' + page.created_at.getgm.strftime("%Y-%m-%d") + ":" + @web.name + ',' + CGI.escape(page.name)) |
17 | xml.author do |
18 | xml.name(page.author) |
19 | end |
20 | if @hide_description |
21 | xml.summary("Updated by #{page.author} on #{page.revised_at.getgm.strftime("%Y-%m-%d")} at #{page.revised_at.getgm.strftime("%H:%M:%SZ")}.", 'type' => 'text') |
22 | else |
23 | xml.content('type' => 'xhtml', 'xml:base' => url_for(:only_path => false, :web => @web_name, :action => @link_action, :id => page.name) ) do |
24 | xml.div('xmlns' => 'http://www.w3.org/1999/xhtml' ) do |
25 | |x| x << rendered_content(page) |
26 | end |
27 | end |
28 | end |
29 | end |
30 | end |
31 | end |