2011-07-04 19:56:38 +00:00
|
|
|
<%= wiki_page_breadcrumb(@page) %>
|
|
|
|
|
2012-02-05 23:51:03 +00:00
|
|
|
<h2><%= h @page.pretty_title %></h2>
|
2007-03-12 17:59:02 +00:00
|
|
|
|
2012-04-25 17:17:49 +00:00
|
|
|
<%= form_for @content, :as => :content,
|
2012-02-05 23:51:03 +00:00
|
|
|
: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">
|
2012-05-09 14:18:53 +00:00
|
|
|
<%= text_area_tag 'content[text]', @text, :cols => 100, :rows => 25,
|
|
|
|
:class => 'wiki-edit', :accesskey => accesskey(:edit) %>
|
2011-12-17 11:11:13 +00:00
|
|
|
|
2012-02-05 14:35:27 +00:00
|
|
|
<% if @page.safe_attribute_names.include?('parent_id') && @wiki.pages.any? %>
|
2012-04-25 17:17:49 +00:00
|
|
|
<%= fields_for @page do |fp| %>
|
2012-02-05 14:35:27 +00:00
|
|
|
<p>
|
2012-02-05 23:50:36 +00:00
|
|
|
<label><%= l(:field_parent_title) %></label>
|
2012-05-09 14:18:53 +00:00
|
|
|
<%= fp.select :parent_id,
|
|
|
|
content_tag('option', '', :value => '') +
|
|
|
|
wiki_page_options_for_select(@wiki.pages.all(:include => :parent) -
|
|
|
|
@page.self_and_descendants, @page.parent) %>
|
2012-02-05 23:50:36 +00:00
|
|
|
</p>
|
2012-02-05 14:35:27 +00:00
|
|
|
<% end %>
|
2011-12-17 11:44:04 +00:00
|
|
|
<% 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) %>
|
2012-07-18 17:47:19 +00:00
|
|
|
<%= preview_link({:controller => 'wiki', :action => 'preview', :project_id => @project, :id => @page.title }, 'wiki_form') %></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 %>
|
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 %>
|