diff options
Diffstat (limited to 'app/views/wiki/edit.html.erb')
-rw-r--r-- | app/views/wiki/edit.html.erb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/app/views/wiki/edit.html.erb b/app/views/wiki/edit.html.erb new file mode 100644 index 000000000..5a164ba81 --- /dev/null +++ b/app/views/wiki/edit.html.erb @@ -0,0 +1,31 @@ +<%= wiki_page_breadcrumb(@page) %> + +<h2><%=h @page.pretty_title %></h2> + +<% form_for :content, @content, :url => {:action => 'update', :id => @page.title}, :html => {:method => :put, :multipart => true, :id => 'wiki_form'} do |f| %> +<%= f.hidden_field :version %> +<%= error_messages_for 'content' %> + +<p><%= f.text_area :text, :cols => 100, :rows => 25, :class => 'wiki-edit', :accesskey => accesskey(:edit) %></p> +<p><label><%= l(:field_comments) %></label><br /><%= f.text_field :comments, :size => 120 %></p> +<p><label><%=l(:label_attachment_plural)%></label><br /><%= render :partial => 'attachments/form' %></p> + +<p><%= submit_tag l(:button_save) %> + <%= link_to_remote l(:label_preview), + { :url => { :controller => 'wiki', :action => 'preview', :project_id => @project, :id => @page.title }, + :method => :post, + :update => 'preview', + :with => "Form.serialize('wiki_form')", + :complete => "Element.scrollTo('preview')" + }, :accesskey => accesskey(:preview) %></p> +<%= wikitoolbar_for 'content_text' %> +<% end %> + +<div id="preview" class="wiki"></div> + +<% content_for :header_tags do %> + <%= stylesheet_link_tag 'scm' %> + <%= robot_exclusion_tag %> +<% end %> + +<% html_title h(@page.pretty_title) %> |