2005-01-24 19:52:04 +01:00
|
|
|
<%
|
2005-03-26 19:56:37 +01:00
|
|
|
def list_item(text, link_options, description, accesskey = nil)
|
|
|
|
link_options[:controller] = 'wiki'
|
2005-03-27 16:23:09 +02:00
|
|
|
link_options[:web] = @web.address
|
2005-03-26 19:56:37 +01:00
|
|
|
link_to_unless_current(text, link_options, :title => description, :accesskey => accesskey) {
|
2005-04-28 07:35:58 +02:00
|
|
|
content_tag('b', text, 'title' => description, 'class' => 'navOn')
|
2005-03-26 19:56:37 +01:00
|
|
|
}
|
2005-01-24 19:52:04 +01:00
|
|
|
end
|
|
|
|
%>
|
|
|
|
|
|
|
|
<form id="navigationForm" class="navigation" action="../search/" method="get" style="font-size: 10px">
|
|
|
|
|
2005-03-26 19:56:37 +01:00
|
|
|
<% if @action_name != 'published' then %>
|
|
|
|
<%= list_item 'Home Page', {:action => 'show', :id => 'HomePage'}, 'Home, Sweet Home', 'H' %> |
|
|
|
|
<%= list_item 'All Pages', {:action => 'list'}, 'Alphabetically sorted list of pages', 'A' %> |
|
|
|
|
<%= list_item 'Recently Revised', {:action =>'recently_revised'},
|
|
|
|
'Pages sorted by when they were last changed', 'U'
|
2005-04-28 07:35:58 +02:00
|
|
|
%> |
|
2005-03-26 19:56:37 +01:00
|
|
|
<%= list_item 'Authors', {:action => 'authors'}, 'Who wrote what' %> |
|
|
|
|
<%= list_item 'Feeds', {:action => 'feeds'}, 'Subscribe to changes by RSS' %> |
|
|
|
|
<%= list_item 'Export', {:action => 'export'},
|
|
|
|
'Download a zip with all the pages in this wiki', 'X'
|
2005-04-28 07:35:58 +02:00
|
|
|
%> |
|
2005-03-26 19:56:37 +01:00
|
|
|
<input type="text" id="searchField" name="query" style="font-size: 10px" value="Search"
|
2005-04-28 07:35:58 +02:00
|
|
|
onfocus="if (this.value == 'Search' ) this.value = '' " />
|
2005-01-24 19:52:04 +01:00
|
|
|
<% else %>
|
2005-03-26 19:56:37 +01:00
|
|
|
<%= list_item 'Home Page', {:action => 'published', :id => 'HomePage'}, 'Home, Sweet Home', 'H' %> |
|
2005-01-24 19:52:04 +01:00
|
|
|
<% end%>
|
|
|
|
|
|
|
|
</form>
|