From 5259dec0611a00c84b4ae7f460202c761abec5f9 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sat, 6 Oct 2007 08:54:05 +0000 Subject: Added preview on add/edit issue form. git-svn-id: http://redmine.rubyforge.org/svn/trunk@812 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/views/common/_preview.rhtml | 3 +++ app/views/issues/_form.rhtml | 6 +++++- app/views/issues/edit.rhtml | 14 +++++++++++++- app/views/projects/add_issue.rhtml | 14 +++++++++++++- app/views/wiki/_preview.rhtml | 3 --- 5 files changed, 34 insertions(+), 6 deletions(-) create mode 100644 app/views/common/_preview.rhtml delete mode 100644 app/views/wiki/_preview.rhtml (limited to 'app/views') diff --git a/app/views/common/_preview.rhtml b/app/views/common/_preview.rhtml new file mode 100644 index 000000000..e3bfc3a25 --- /dev/null +++ b/app/views/common/_preview.rhtml @@ -0,0 +1,3 @@ +
<%= l(:label_preview) %> +<%= textilizable @text, :attachments => @attachements %> +
diff --git a/app/views/issues/_form.rhtml b/app/views/issues/_form.rhtml index 28d2b97ec..203d1cca3 100644 --- a/app/views/issues/_form.rhtml +++ b/app/views/issues/_form.rhtml @@ -25,7 +25,11 @@

<%= f.text_field :subject, :size => 80, :required => true %>

-

<%= f.text_area :description, :required => true, :cols => 60, :rows => (@issue.description.blank? ? 10 : [[10, @issue.description.length / 50].max, 100].min), :class => 'wiki-edit' %>

+

<%= f.text_area :description, :required => true, + :cols => 60, + :rows => (@issue.description.blank? ? 10 : [[10, @issue.description.length / 50].max, 100].min), + :accesskey => accesskey(:edit), + :class => 'wiki-edit' %>

<%= f.select :fixed_version_id, (@project.versions.sort.collect {|v| [v.name, v.id]}), { :include_blank => true } %>

<% for @custom_value in @custom_values %>

<%= custom_field_tag_with_label @custom_value %>

diff --git a/app/views/issues/edit.rhtml b/app/views/issues/edit.rhtml index 9efaeb2e4..1577216ed 100644 --- a/app/views/issues/edit.rhtml +++ b/app/views/issues/edit.rhtml @@ -1,7 +1,19 @@

<%=h "#{@issue.tracker.name} ##{@issue.id}" %>

-<% labelled_tabular_form_for :issue, @issue, :url => {:action => 'edit'} do |f| %> +<% labelled_tabular_form_for :issue, @issue, + :url => {:action => 'edit'}, + :html => {:id => 'issue-form'} do |f| %> <%= render :partial => 'form', :locals => {:f => f} %> <%= f.hidden_field :lock_version %> <%= submit_tag l(:button_save) %> + <%= link_to_remote l(:label_preview), + { :url => { :controller => 'issues', :action => 'preview', :id => @issue }, + :method => 'post', + :update => 'preview', + :with => "Form.serialize('issue-form')", + :complete => "location.href='#preview-top'" + }, :accesskey => accesskey(:preview) %> <% end %> + + +
diff --git a/app/views/projects/add_issue.rhtml b/app/views/projects/add_issue.rhtml index f0dbead94..8382d6c9f 100644 --- a/app/views/projects/add_issue.rhtml +++ b/app/views/projects/add_issue.rhtml @@ -1,7 +1,19 @@

<%=l(:label_issue_new)%>: <%= @tracker.name %>

-<% labelled_tabular_form_for :issue, @issue, :url => {:action => 'add_issue'}, :html => {:multipart => true} do |f| %> +<% labelled_tabular_form_for :issue, @issue, + :url => {:action => 'add_issue'}, + :html => {:multipart => true, :id => 'issue-form'} do |f| %> <%= hidden_field_tag 'tracker_id', @tracker.id %> <%= render :partial => 'issues/form', :locals => {:f => f} %> <%= submit_tag l(:button_create) %> + <%= link_to_remote l(:label_preview), + { :url => { :controller => 'issues', :action => 'preview', :id => @issue }, + :method => 'post', + :update => 'preview', + :with => "Form.serialize('issue-form')", + :complete => "location.href='#preview-top'" + }, :accesskey => accesskey(:preview) %> <% end %> + + +
diff --git a/app/views/wiki/_preview.rhtml b/app/views/wiki/_preview.rhtml deleted file mode 100644 index e3bfc3a25..000000000 --- a/app/views/wiki/_preview.rhtml +++ /dev/null @@ -1,3 +0,0 @@ -
<%= l(:label_preview) %> -<%= textilizable @text, :attachments => @attachements %> -
-- cgit v1.2.3