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 %>
|
2007-03-12 17:59:02 +00:00
|
|
|
<%= error_messages_for 'content' %>
|
2008-03-05 11:14:35 +00:00
|
|
|
|
2007-10-05 18:05:41 +00:00
|
|
|
<p><%= f.text_area :text, :cols => 100, :rows => 25, :class => 'wiki-edit', :accesskey => accesskey(:edit) %></p>
|
2007-04-25 15:06:20 +00:00
|
|
|
<p><label><%= l(:field_comments) %></label><br /><%= f.text_field :comments, :size => 120 %></p>
|
2010-02-28 09:43:13 +00:00
|
|
|
<p><label><%=l(:label_attachment_plural)%></label><br /><%= render :partial => 'attachments/form' %></p>
|
|
|
|
|
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-08-02 13:18:19 +00:00
|
|
|
<% html_title h(@page.pretty_title) %>
|