teensyweb/
teensyweb/app/models/
teensyweb/app/views/account/
teensyweb/app/views/layouts/
teensyweb/app/views/notifications/
teensyweb/app/views/repository/
teensyweb/config/
teensyweb/config/environments/
teensyweb/db/migrate/
teensyweb/doc/
teensyweb/lib/
teensyweb/public/images/
teensyweb/public/javascripts/
teensyweb/public/stylesheets/
teensyweb/script/
teensyweb/script/performance/
teensyweb/script/process/
teensyweb/test/
teensyweb/test/fixtures/
teensyweb/test/fixtures/notifications/
<div class="navigation">
  <%= start_form_tag({:action => 'edit'}, {:method => 'get', :id => 'pageForm'}) %>
    <div class="form">
      <%= link_to('Edit', {:action => 'edit', :id => page_name}, {:accesskey => 'E'}) %>
      <%= link_to('Revisions', {:action => 'revisions', :id => page_name}) %>
      <% if params[:action] == 'show' %> 
        <%= link_to('Raw', {:action => 'raw', :id => page_name}) %>
      <% else %>  
        <%= link_to('Show', {:action => 'show', :id => page_name}) %>
      <% end %>  
      <% if admin? %>
        <%= link_to((@page.page_locked == 0 ? 'Lock' : 'Unlock'), {:action => 'lock', :id => page_name}) %>
        <%= link_to('Rename', {:action => 'rename', :id => page_name}) %>
      <% end %>
      <%= submit_tag 'Create' %>
      <%= text_field_tag('id', 'PageName', {:id => 'pageField', 
        :onclick => "this.value == 'PageName' ? this.value = '' : true"}) %>
    </div>
  <%= end_form_tag %>	

</div>