edit.rhtml
30 lines
| 1.5 KiB
| text/html+ruby
|
RhtmlLexer
|
r330 | <h2><%= @page.pretty_title %></h2> | ||
<% form_for :content, @content, :url => {:action => 'edit', :page => @page.title}, :html => {:id => 'wiki_form'} do |f| %> | ||||
|
r542 | <%= f.hidden_field :version %> | ||
|
r330 | <%= error_messages_for 'content' %> | ||
<div class="contextual"> | ||||
<%= l(:setting_text_formatting) %>: | ||||
|
r1044 | <%= link_to l(:label_help), compute_public_path('wiki_syntax', 'help', 'html'), | ||
:onclick => "window.open('#{ compute_public_path('wiki_syntax', 'help', 'html') }', '', 'resizable=yes, location=no, width=300, height=640, menubar=no, status=no, scrollbars=yes'); return false;" %> | ||||
|
r330 | </div> | ||
|
r793 | <p><%= f.text_area :text, :cols => 100, :rows => 25, :class => 'wiki-edit', :accesskey => accesskey(:edit) %></p> | ||
|
r476 | <p><label><%= l(:field_comments) %></label><br /><%= f.text_field :comments, :size => 120 %></p> | ||
|
r330 | <p><%= submit_tag l(:button_save) %> | ||
<%= link_to_remote l(:label_preview), | ||||
|
r408 | { :url => { :controller => 'wiki', :action => 'preview', :id => @project, :page => @page.title }, | ||
|
r652 | :method => 'post', | ||
|
r330 | :update => 'preview', | ||
|
r701 | :with => "Form.serialize('wiki_form')", | ||
|
r1122 | :complete => "Element.scrollTo('preview')" | ||
|
r793 | }, :accesskey => accesskey(:preview) %></p> | ||
|
r652 | <%= wikitoolbar_for 'content_text' %> | ||
|
r330 | <% end %> | ||
|
r652 | <div id="preview" class="wiki"></div> | ||
|
r699 | |||
<% content_for :header_tags do %> | ||||
<%= stylesheet_link_tag 'scm' %> | ||||
<% end %> | ||||
|
r704 | |||
|
r1019 | <% html_title @page.pretty_title %> | ||