diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-03-05 11:14:35 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-03-05 11:14:35 +0000 |
commit | c61424e57a0f41943aeda7b22ed2b206d138427e (patch) | |
tree | abec5c51bffd7d6ad41c1f718c02483e31d0d3fe /app/views/wiki | |
parent | b0754ca720f6262dd3b6f16eac23082d28d6fae6 (diff) | |
download | redmine-c61424e57a0f41943aeda7b22ed2b206d138427e.tar.gz redmine-c61424e57a0f41943aeda7b22ed2b206d138427e.zip |
Display wiki syntax quick ref link within the jstoolbar (closes #629, #767).
Added named links syntax on quick ref (closes #766, #778).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1190 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/wiki')
-rw-r--r-- | app/views/wiki/edit.rhtml | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/app/views/wiki/edit.rhtml b/app/views/wiki/edit.rhtml index e5b0687f6..19f3bd5ae 100644 --- a/app/views/wiki/edit.rhtml +++ b/app/views/wiki/edit.rhtml @@ -3,11 +3,7 @@ <% form_for :content, @content, :url => {:action => 'edit', :page => @page.title}, :html => {:id => 'wiki_form'} do |f| %> <%= f.hidden_field :version %> <%= error_messages_for 'content' %> -<div class="contextual"> -<%= l(:setting_text_formatting) %>: -<%= 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;" %> -</div> + <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><%= submit_tag l(:button_save) %> |