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/
<%= render_partial "syntax" %>
<div class="edit">
<%= start_form_tag({:action => 'edit', :id => page_name }, {:method => 'post'}) %>
<%= text_area_tag('content', @revision.data, {:class => 'editbox'}) %> 
<br />
<label for="comment">Comment: </label>
<%= text_field_tag('comment', params['comment'] || '', {:size => '60'}) %> 
<br />
<%= submit_tag("Save") %>
<%= submit_tag("Preview") %>
<%= submit_tag("Cancel") %>
<%= end_form_tag %>
<% if @preview %>
  <hr />
  <div class="forum">
    <%= wikify @revision.data %>
  </div>  
<% end %>
</div>