Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 3
- Log:
Configured for temporary /rails/instiki location on Alpha.
Updated several layouts for RISC OS Open Limited site style.
Removed local copy of Rails from /vendor because the copy
installed site-wide does not insert port numbers into URLs,
but the copy originally shipped with Instiki does. Modified
SQLite schema for PostgreSQL moving SQLite definitions to a
new subdirectory in /db.
- Author:
- adh
- Date:
- Sat Jul 22 16:32:18 +0100 2006
- Size:
- 2039 Bytes
1 | <div class="sidebar-node"> |
2 | <h3>Search documentation</h3> |
3 | |
4 | <p /> |
5 | <%= form_tag({ :controller => 'wiki', :action => 'search', :web => @web.address}, |
6 | {'id' => 'navigationSearchForm', 'method' => 'get'}) %> |
7 | <input type="text" id="searchField" name="query" size="15" value="Search" |
8 | onfocus="this.value == 'Search' ? this.value = '' : true" |
9 | onblur="this.value == '' ? this.value = 'Search' : true" /> |
10 | <%= end_form_tag %> |
11 | </div> |
12 | <% |
13 | def list_item(text, link_options, description, accesskey = nil) |
14 | link_options[:controller] = 'wiki' |
15 | link_options[:web] = @web.address |
16 | link_to_unless_current(text, link_options, :title => description, :accesskey => accesskey) { |
17 | content_tag('b', text, 'title' => description, 'class' => 'navOn') |
18 | } |
19 | end |
20 | %> |
21 | |
22 | <%= render 'shared/fixed_sidebar' %> |
23 | |
24 | <p /> |
25 | <div class="sidebar-node"> |
26 | <h3>Options</h3> |
27 | |
28 | <ul> |
29 | <% if @action_name != 'published' then %> |
30 | <li><%= list_item 'Documentation Home', {:action => 'show', :id => 'HomePage'}, 'Home, Sweet Home', 'H' %></li> |
31 | <li><%= list_item 'All Pages', {:action => 'list'}, 'Alphabetically sorted list of pages', 'A' %></li> |
32 | <li><%= list_item 'Recently Revised', {:action =>'recently_revised'}, 'Pages sorted by when they were last changed', 'U' %></li> |
33 | <li><%= list_item 'Authors', {:action => 'authors'}, 'Who wrote what' %></li> |
34 | <li><%= list_item 'Feeds', {:action => 'feeds'}, 'Subscribe to changes by RSS' %></li> |
35 | <li><%= list_item 'Export', {:action => 'export'}, 'Download a zip with all the pages in this wiki', 'X' %></li> |
36 | <% else %> |
37 | <li><%= list_item 'Home Page', {:action => 'published', :id => 'HomePage'}, 'Home, Sweet Home', 'H' %></li> |
38 | <% end%> |
39 | </ul> |
40 | </div> |