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="app">
  <%= start_form_tag({:action => 'postreply', :id => @replyto.id }, {:method => 'post'}) %>
    <label>Subject: <%= text_field_tag('subject', @topic.subject || '', {:size => '60'}) %></label><br /> 
    <%= text_area_tag('content', @post.data || quote_post(@replyto), {:class => 'editbox'}) %> 
    <br /><br />
    <%= submit_tag("Save") %>
    <%= submit_tag("Preview") %>
    <%= submit_tag("Cancel") %>
  <%= end_form_tag %>
  <% if @preview %>
    <hr />
    <div class="forum">
      <%= format_post @post.data %>
    </div>  
  <% end %>
</div>