2011-07-04 19:56:38 +00:00
|
|
|
<%= wiki_page_breadcrumb(@page) %>
|
|
|
|
|
2009-04-21 12:19:56 +00:00
|
|
|
<h2><%=h @page.pretty_title %></h2>
|
2007-03-12 17:59:02 +00:00
|
|
|
|
2010-10-28 21:25:38 +00:00
|
|
|
<% form_for :content, @content, :url => {:action => 'update', :id => @page.title}, :html => {:method => :put, :multipart => true, :id => 'wiki_form'} do |f| %>
|
2007-05-26 17:22:27 +00:00
|
|
|
<%= f.hidden_field :version %>
|
2011-11-18 16:25:00 +00:00
|
|
|
<% if @section %>
|
|
|
|
<%= hidden_field_tag 'section', @section %>
|
|
|
|
<%= hidden_field_tag 'section_hash', @section_hash %>
|
|
|
|
<% end %>
|
2007-03-12 17:59:02 +00:00
|
|
|
<%= error_messages_for 'content' %>
|
2008-03-05 11:14:35 +00:00
|
|
|
|
2011-12-17 11:11:13 +00:00
|
|
|
<div class="box tabular">
|
|
|
|
<%= text_area_tag 'content[text]', @text, :cols => 100, :rows => 25, :class => 'wiki-edit', :accesskey => accesskey(:edit) %>
|
|
|
|
|
2011-12-17 11:44:04 +00:00
|
|
|
<% if @page.new_record? && @page.parent %>
|
|
|
|
<p><label><%= check_box_tag 'page[parent_id]', @page.parent.id %> <%= l(:field_parent_title) %></label> <%=h @page.parent.pretty_title %></p>
|
|
|
|
<% end %>
|
|
|
|
|
2011-12-17 11:11:13 +00:00
|
|
|
<p><label><%= l(:field_comments) %></label><%= f.text_field :comments, :size => 120 %></p>
|
|
|
|
<p><label><%=l(:label_attachment_plural)%></label><%= render :partial => 'attachments/form' %></p>
|
|
|
|
</div>
|
2010-02-28 09:43:13 +00:00
|
|
|
|
2007-03-12 17:59:02 +00:00
|
|
|
<p><%= submit_tag l(:button_save) %>
|
2011-09-14 08:37:43 +00:00
|
|
|
<%= link_to_remote l(:label_preview),
|
2010-10-27 16:27:06 +00:00
|
|
|
{ :url => { :controller => 'wiki', :action => 'preview', :project_id => @project, :id => @page.title },
|
2010-10-28 21:25:38 +00:00
|
|
|
:method => :post,
|
2007-03-12 17:59:02 +00:00
|
|
|
:update => 'preview',
|
2007-09-06 21:56:40 +00:00
|
|
|
:with => "Form.serialize('wiki_form')",
|
2008-02-11 20:45:46 +00:00
|
|
|
:complete => "Element.scrollTo('preview')"
|
2007-10-05 18:05:41 +00:00
|
|
|
}, :accesskey => accesskey(:preview) %></p>
|
2007-08-25 14:51:06 +00:00
|
|
|
<%= wikitoolbar_for 'content_text' %>
|
2007-03-12 17:59:02 +00:00
|
|
|
<% end %>
|
|
|
|
|
2007-08-25 14:51:06 +00:00
|
|
|
<div id="preview" class="wiki"></div>
|
2007-09-06 17:06:07 +00:00
|
|
|
|
|
|
|
<% content_for :header_tags do %>
|
|
|
|
<%= stylesheet_link_tag 'scm' %>
|
2011-04-12 19:22:44 +00:00
|
|
|
<%= robot_exclusion_tag %>
|
2007-09-06 17:06:07 +00:00
|
|
|
<% end %>
|
2007-09-07 20:52:45 +00:00
|
|
|
|
2011-10-02 18:45:17 +00:00
|
|
|
<% html_title @page.pretty_title %>
|