Sha256: 38857e772aaaa5156c729423123f873bb9d517d122c980ca5566cfcac959374a

Contents?: true

Size: 1.37 KB

Versions: 4

Compression:

Stored size: 1.37 KB

Contents

<%
def list_item(title, url, description, accesskey = nil)
  if @title == title
    "<b class=\"navOn\" title=\"#{description}\" accesskey=\"#{accesskey}\">#{title}</b>"
  else
    "<a href=\"#{url}\" title=\"#{description}\" accesskey=\"#{accesskey}\">#{title}</a>"
  end
end
%>

<form id="navigationForm" class="navigation" action="../search/" action="get" style="font-size: 10px">  
  <%= list_item "Home Page", "../show/HomePage", "Home, Sweet Home", "H" %> | 
  <%= list_item "All Pages", "../list/", "Alphabetically sorted list of pages", "A" %> |
  <% if `dot -V 2>&1` =~ /dot version/ %>
    <%= list_item "Mind Map", "../mind/", "A 'Mind Map' graph of wiki pages", "M" %> |
  <% end %>
  <%= list_item "Bliki", "../bliki/", "Bliki", "B" %> |
  <%= list_item "ToDo", "../todo/", "Todo items from all pages", "T" %> |
  <%= list_item "Recently Revised", "../recently_revised/", "Pages sorted by when they were last changed", "U" %> |
  <!-- Moved to bottom of HomePage:
  <%= list_item "Authors", "../authors/", "Who wrote what" %> | 
  <%= list_item "Feeds", "../feeds/", "Subscribe to changes by RSS" %> | 
  <%= list_item "Export", "../export/", "Download a zip with all the pages in this wiki", "X" %> |
  -->
  <input type="text" id="searchField" name="query" style="font-size: 10px" value="Search" onClick="this.value == 'Search' ? this.value = '' : true">
</form>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
Pimki-1.0.092 app/views/navigation.rhtml
Pimki-1.1.092 app/views/navigation.rhtml
Pimki-1.2.092 app/views/navigation.rhtml
Pimki-1.3.092 app/views/navigation.rhtml