Merge branch 'ticket/unstable/406-journals-controller-aaj' into unstable
This commit is contained in:
commit
c83c1d9aea
@ -1,12 +1,10 @@
|
|||||||
# This file is part of the acts_as_journalized plugin for the redMine
|
# Redmine - project management software
|
||||||
# project management software
|
# Copyright (C) 2006-2011 Jean-Philippe Lang
|
||||||
#
|
|
||||||
# Copyright (C) 2006-2008 Jean-Philippe Lang
|
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or
|
# This program is free software; you can redistribute it and/or
|
||||||
# modify it under the terms of the GNU General Public License
|
# modify it under the terms of the GNU General Public License
|
||||||
# as published by the Free Software Foundation; either journal 2
|
# as published by the Free Software Foundation; either version 2
|
||||||
# of the License, or (at your option) any later journal.
|
# of the License, or (at your option) any later version.
|
||||||
#
|
#
|
||||||
# This program is distributed in the hope that it will be useful,
|
# This program is distributed in the hope that it will be useful,
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
@ -18,27 +16,90 @@
|
|||||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
class JournalsController < ApplicationController
|
class JournalsController < ApplicationController
|
||||||
unloadable
|
before_filter :find_journal, :only => [:edit, :diff]
|
||||||
before_filter :find_journal
|
before_filter :find_issue, :only => [:new]
|
||||||
|
before_filter :find_optional_project, :only => [:index]
|
||||||
|
before_filter :authorize, :only => [:new, :edit, :diff]
|
||||||
|
accept_key_auth :index
|
||||||
|
menu_item :issues
|
||||||
|
|
||||||
|
include QueriesHelper
|
||||||
|
include SortHelper
|
||||||
|
|
||||||
|
def index
|
||||||
|
retrieve_query
|
||||||
|
sort_init 'id', 'desc'
|
||||||
|
sort_update(@query.sortable_columns)
|
||||||
|
|
||||||
|
if @query.valid?
|
||||||
|
@journals = @query.issue_journals(:order => "#{Journal.table_name}.created_at DESC",
|
||||||
|
:limit => 25)
|
||||||
|
end
|
||||||
|
@title = (@project ? @project.name : Setting.app_title) + ": " + (@query.new_record? ? l(:label_changes_details) : @query.name)
|
||||||
|
render :layout => false, :content_type => 'application/atom+xml'
|
||||||
|
rescue ActiveRecord::RecordNotFound
|
||||||
|
render_404
|
||||||
|
end
|
||||||
|
|
||||||
|
# Used when replying to an issue or journal
|
||||||
|
def new
|
||||||
|
journal = Journal.find(params[:journal_id]) if params[:journal_id]
|
||||||
|
if journal
|
||||||
|
user = journal.user
|
||||||
|
text = journal.notes
|
||||||
|
else
|
||||||
|
user = @issue.author
|
||||||
|
text = @issue.description
|
||||||
|
end
|
||||||
|
# Replaces pre blocks with [...]
|
||||||
|
text = text.to_s.strip.gsub(%r{<pre>((.|\s)*?)</pre>}m, '[...]')
|
||||||
|
content = "#{ll(Setting.default_language, :text_user_wrote, user)}\n> "
|
||||||
|
content << text.gsub(/(\r?\n|\r\n?)/, "\n> ") + "\n\n"
|
||||||
|
|
||||||
|
render(:update) { |page|
|
||||||
|
page.<< "$('notes').value = \"#{escape_javascript content}\";"
|
||||||
|
page.show 'update'
|
||||||
|
page << "Form.Element.focus('notes');"
|
||||||
|
page << "Element.scrollTo('update');"
|
||||||
|
page << "$('notes').scrollTop = $('notes').scrollHeight - $('notes').clientHeight;"
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
def edit
|
def edit
|
||||||
|
(render_403; return false) unless @journal.editable_by?(User.current)
|
||||||
if request.post?
|
if request.post?
|
||||||
@journal.update_attribute(:notes, params[:notes]) if params[:notes]
|
@journal.update_attribute(:notes, params[:notes]) if params[:notes]
|
||||||
@journal.destroy if @journal.details.empty? && @journal.notes.blank?
|
@journal.destroy if @journal.details.empty? && @journal.notes.blank?
|
||||||
call_hook(:controller_journals_edit_post, { :journal => @journal, :params => params})
|
call_hook(:controller_journals_edit_post, { :journal => @journal, :params => params})
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.html { redirect_to :controller => @journal.journaled.class.name.pluralize.downcase,
|
format.html { redirect_to :controller => @journal.journaled.class.name.pluralize.downcase,
|
||||||
:action => 'show', :id => @journal.journaled_id }
|
:action => 'show', :id => @journal.journaled_id }
|
||||||
format.js { render :action => 'update' }
|
format.js { render :action => 'update' }
|
||||||
end
|
end
|
||||||
|
else
|
||||||
|
respond_to do |format|
|
||||||
|
format.html {
|
||||||
|
# TODO: implement non-JS journal update
|
||||||
|
render :nothing => true
|
||||||
|
}
|
||||||
|
format.js
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def find_journal
|
def find_journal
|
||||||
@journal = Journal.find(params[:id])
|
@journal = Journal.find(params[:id])
|
||||||
(render_403; return false) unless @journal.editable_by?(User.current)
|
@project = @journal.journalized.project
|
||||||
@project = @journal.project
|
rescue ActiveRecord::RecordNotFound
|
||||||
|
render_404
|
||||||
|
end
|
||||||
|
|
||||||
|
# TODO: duplicated in IssuesController
|
||||||
|
def find_issue
|
||||||
|
@issue = Issue.find(params[:id], :include => [:project, :tracker, :status, :author, :priority, :category])
|
||||||
|
@project = @issue.project
|
||||||
rescue ActiveRecord::RecordNotFound
|
rescue ActiveRecord::RecordNotFound
|
||||||
render_404
|
render_404
|
||||||
end
|
end
|
||||||
|
@ -3,6 +3,16 @@
|
|||||||
:rows => (@journal.notes.blank? ? 10 : [[10, @journal.notes.length / 50].max, 100].min) %>
|
:rows => (@journal.notes.blank? ? 10 : [[10, @journal.notes.length / 50].max, 100].min) %>
|
||||||
<%= call_hook(:view_journals_notes_form_after_notes, { :journal => @journal}) %>
|
<%= call_hook(:view_journals_notes_form_after_notes, { :journal => @journal}) %>
|
||||||
<p><%= submit_tag l(:button_save) %>
|
<p><%= submit_tag l(:button_save) %>
|
||||||
|
<%= link_to_remote l(:label_preview),
|
||||||
|
{ :url => preview_issue_path(:project_id => @project, :id => @journal.issue),
|
||||||
|
:method => 'post',
|
||||||
|
:update => "journal_#{@journal.id}_preview",
|
||||||
|
:with => "Form.serialize('journal-#{@journal.id}-form')",
|
||||||
|
:complete => "Element.scrollTo('journal_#{@journal.id}_preview')"
|
||||||
|
}, :accesskey => accesskey(:preview) %>
|
||||||
|
|
|
||||||
<%= link_to l(:button_cancel), '#', :onclick => "Element.remove('journal-#{@journal.id}-form'); " +
|
<%= link_to l(:button_cancel), '#', :onclick => "Element.remove('journal-#{@journal.id}-form'); " +
|
||||||
"Element.show('journal-#{@journal.id}-notes'); return false;" %></p>
|
"Element.show('journal-#{@journal.id}-notes'); return false;" %></p>
|
||||||
|
|
||||||
|
<div id="journal_<%= @journal.id %>_preview" class="wiki"></div>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
@ -1,10 +0,0 @@
|
|||||||
<h2><%=h @issue.tracker %> #<%= @issue.id %></h2>
|
|
||||||
<p><%= authoring @journal.created_on, @journal.user, :label => :label_updated_time_by %></p>
|
|
||||||
|
|
||||||
<div class="text-diff">
|
|
||||||
<%= simple_format_without_paragraph @diff.to_html %>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<p><%= link_to l(:button_back), issue_path(@issue), :onclick => 'history.back(); return false;' %></p>
|
|
||||||
|
|
||||||
<% html_title "#{@issue.tracker.name} ##{@issue.id}: #{@issue.subject}" %>
|
|
@ -56,4 +56,32 @@ class JournalsControllerTest < ActionController::TestCase
|
|||||||
assert_select_rjs :remove, 'change-2'
|
assert_select_rjs :remove, 'change-2'
|
||||||
assert_nil Journal.find_by_id(2)
|
assert_nil Journal.find_by_id(2)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_index
|
||||||
|
get :index, :project_id => 1
|
||||||
|
assert_response :success
|
||||||
|
assert_not_nil assigns(:journals)
|
||||||
|
assert_equal 'application/atom+xml', @response.content_type
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_reply_to_issue
|
||||||
|
@request.session[:user_id] = 2
|
||||||
|
get :new, :id => 6
|
||||||
|
assert_response :success
|
||||||
|
assert_select_rjs :show, "update"
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_reply_to_issue_without_permission
|
||||||
|
@request.session[:user_id] = 7
|
||||||
|
get :new, :id => 6
|
||||||
|
assert_response 403
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_reply_to_note
|
||||||
|
@request.session[:user_id] = 2
|
||||||
|
get :new, :id => 6, :journal_id => 4
|
||||||
|
assert_response :success
|
||||||
|
assert_select_rjs :show, "update"
|
||||||
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user