]> source.dussan.org Git - redmine.git/commitdiff
Added preview for issue notes.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Wed, 23 Jan 2008 18:21:42 +0000 (18:21 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Wed, 23 Jan 2008 18:21:42 +0000 (18:21 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1096 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/controllers/issues_controller.rb
app/views/issues/_update.rhtml
app/views/issues/show.rhtml

index 643a4e0ef974ad631b04c1317ebbe6f114378ed9..fdece9e1a2c596502aa301b45b927992b00d1d07 100644 (file)
@@ -242,7 +242,7 @@ class IssuesController < ApplicationController
   def preview
     issue = Issue.find_by_id(params[:id])
     @attachements = issue.attachments if issue
-    @text = params[:issue][:description]
+    @text = (params[:issue] ? params[:issue][:description] : nil) || params[:notes]
     render :partial => 'common/preview'
   end
   
index 3cf59380673eb9d188fa181c7f205ee4c7b95d60..49d1473d957b747ef47d1fcaece7803736901ca1 100644 (file)
@@ -1,4 +1,6 @@
-<% labelled_tabular_form_for(:issue, @issue, :url => {:action => 'update', :id => @issue}, :html => {:multipart => true}) do |f| %>
+<% labelled_tabular_form_for(:issue, @issue, :url => {:action => 'update', :id => @issue},
+                                             :html => {:multipart => true,
+                                                       :id => 'issue-form'}) do |f| %>
 
 <div class="box">
 <% unless @status_options.empty? %>
 </div>
 
 <%= submit_tag l(:button_submit) %>
+<%= link_to_remote l(:label_preview), 
+                   { :url => { :controller => 'issues', :action => 'preview', :id => @issue },
+                     :method => 'post',
+                     :update => 'preview',
+                     :with => "Form.serialize('issue-form')",
+                     :complete => "window.location.hash='preview'"
+                   }, :accesskey => accesskey(:preview) %> |
+<%= toggle_link l(:button_cancel), 'update' %>
 <% end %>
+
+<div id="preview" class="wiki"></div>
index 45423a2e039c1735bc66dc11efde0f42b259194a..d29b1b88fe395a973521da170c4684f6ef72c18c 100644 (file)
@@ -94,7 +94,6 @@ end %>
   <div id="update" style="display:none;">
   <h3><%= l(:button_update) %></h3>
   <%= render :partial => 'update' %>
-  <%= toggle_link l(:button_cancel), 'update' %>
   </div>
 <% end %>