remove trailing white-spaces from app/controllers/journals_controller.rb.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6883 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
adfe9b4219
commit
db1ddd5509
@ -5,12 +5,12 @@
|
|||||||
# 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 version 2
|
# as published by the Free Software Foundation; either version 2
|
||||||
# of the License, or (at your option) any later version.
|
# 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
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program; if not, write to the Free Software
|
# along with this program; if not, write to the Free Software
|
||||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
@ -22,7 +22,7 @@ class JournalsController < ApplicationController
|
|||||||
before_filter :authorize, :only => [:new, :edit, :diff]
|
before_filter :authorize, :only => [:new, :edit, :diff]
|
||||||
accept_rss_auth :index
|
accept_rss_auth :index
|
||||||
menu_item :issues
|
menu_item :issues
|
||||||
|
|
||||||
helper :issues
|
helper :issues
|
||||||
helper :custom_fields
|
helper :custom_fields
|
||||||
helper :queries
|
helper :queries
|
||||||
@ -34,9 +34,9 @@ class JournalsController < ApplicationController
|
|||||||
retrieve_query
|
retrieve_query
|
||||||
sort_init 'id', 'desc'
|
sort_init 'id', 'desc'
|
||||||
sort_update(@query.sortable_columns)
|
sort_update(@query.sortable_columns)
|
||||||
|
|
||||||
if @query.valid?
|
if @query.valid?
|
||||||
@journals = @query.journals(:order => "#{Journal.table_name}.created_on DESC",
|
@journals = @query.journals(:order => "#{Journal.table_name}.created_on DESC",
|
||||||
:limit => 25)
|
:limit => 25)
|
||||||
end
|
end
|
||||||
@title = (@project ? @project.name : Setting.app_title) + ": " + (@query.new_record? ? l(:label_changes_details) : @query.name)
|
@title = (@project ? @project.name : Setting.app_title) + ": " + (@query.new_record? ? l(:label_changes_details) : @query.name)
|
||||||
@ -44,7 +44,7 @@ class JournalsController < ApplicationController
|
|||||||
rescue ActiveRecord::RecordNotFound
|
rescue ActiveRecord::RecordNotFound
|
||||||
render_404
|
render_404
|
||||||
end
|
end
|
||||||
|
|
||||||
def diff
|
def diff
|
||||||
@issue = @journal.issue
|
@issue = @journal.issue
|
||||||
if params[:detail_id].present?
|
if params[:detail_id].present?
|
||||||
@ -55,7 +55,7 @@ class JournalsController < ApplicationController
|
|||||||
(render_404; return false) unless @issue && @detail
|
(render_404; return false) unless @issue && @detail
|
||||||
@diff = Redmine::Helpers::Diff.new(@detail.value, @detail.old_value)
|
@diff = Redmine::Helpers::Diff.new(@detail.value, @detail.old_value)
|
||||||
end
|
end
|
||||||
|
|
||||||
def new
|
def new
|
||||||
journal = Journal.find(params[:journal_id]) if params[:journal_id]
|
journal = Journal.find(params[:journal_id]) if params[:journal_id]
|
||||||
if journal
|
if journal
|
||||||
@ -69,7 +69,7 @@ class JournalsController < ApplicationController
|
|||||||
text = text.to_s.strip.gsub(%r{<pre>((.|\s)*?)</pre>}m, '[...]')
|
text = text.to_s.strip.gsub(%r{<pre>((.|\s)*?)</pre>}m, '[...]')
|
||||||
content = "#{ll(Setting.default_language, :text_user_wrote, user)}\n> "
|
content = "#{ll(Setting.default_language, :text_user_wrote, user)}\n> "
|
||||||
content << text.gsub(/(\r?\n|\r\n?)/, "\n> ") + "\n\n"
|
content << text.gsub(/(\r?\n|\r\n?)/, "\n> ") + "\n\n"
|
||||||
|
|
||||||
render(:update) { |page|
|
render(:update) { |page|
|
||||||
page.<< "$('notes').value = \"#{escape_javascript content}\";"
|
page.<< "$('notes').value = \"#{escape_javascript content}\";"
|
||||||
page.show 'update'
|
page.show 'update'
|
||||||
@ -78,7 +78,7 @@ class JournalsController < ApplicationController
|
|||||||
page << "$('notes').scrollTop = $('notes').scrollHeight - $('notes').clientHeight;"
|
page << "$('notes').scrollTop = $('notes').scrollHeight - $('notes').clientHeight;"
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
def edit
|
def edit
|
||||||
(render_403; return false) unless @journal.editable_by?(User.current)
|
(render_403; return false) unless @journal.editable_by?(User.current)
|
||||||
if request.post?
|
if request.post?
|
||||||
@ -93,15 +93,15 @@ class JournalsController < ApplicationController
|
|||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.html {
|
format.html {
|
||||||
# TODO: implement non-JS journal update
|
# TODO: implement non-JS journal update
|
||||||
render :nothing => true
|
render :nothing => true
|
||||||
}
|
}
|
||||||
format.js
|
format.js
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def find_journal
|
def find_journal
|
||||||
@journal = Journal.find(params[:id])
|
@journal = Journal.find(params[:id])
|
||||||
@project = @journal.journalized.project
|
@project = @journal.journalized.project
|
||||||
|
Loading…
x
Reference in New Issue
Block a user