##// END OF EJS Templates
Update version to 0.8.5....
Update version to 0.8.5. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/0.8-stable@2890 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2768:94488269d1c3
r2776:6ecfcd84b7b0
Show More
changeset.rb
157 lines | 5.8 KiB | text/x-ruby | RubyLexer
Jean-Philippe Lang
Maps repository users to Redmine users (#1383)....
r2004 # Redmine - project management software
# Copyright (C) 2006-2008 Jean-Philippe Lang
Jean-Philippe Lang
SVN commits are now stored in the database, and added to the activity view and the search engine....
r374 #
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Jean-Philippe Lang
Adds support for commit logs reencoding to UTF-8 before insertion in the database (#834, #917, #1663)....
r1766 require 'iconv'
Jean-Philippe Lang
SVN commits are now stored in the database, and added to the activity view and the search engine....
r374 class Changeset < ActiveRecord::Base
belongs_to :repository
Jean-Philippe Lang
Maps repository users to Redmine users (#1383)....
r2004 belongs_to :user
Jean-Philippe Lang
SVN commits are now stored in the database, and added to the activity view and the search engine....
r374 has_many :changes, :dependent => :delete_all
Jean-Philippe Lang
Commit messages are now scanned for referenced or fixed issue IDs....
r470 has_and_belongs_to_many :issues
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663
acts_as_event :title => Proc.new {|o| "#{l(:label_revision)} #{o.revision}" + (o.comments.blank? ? '' : (': ' + o.comments))},
:description => :comments,
:datetime => :committed_on,
:url => Proc.new {|o| {:controller => 'repositories', :action => 'revision', :id => o.repository.project_id, :rev => o.revision}}
Jean-Philippe Lang
Search engines now supports pagination....
r755
acts_as_searchable :columns => 'comments',
Jean-Philippe Lang
Ability to search all projects or the projects the user belongs to (#791)....
r1420 :include => {:repository => :project},
Jean-Philippe Lang
Search engines now supports pagination....
r755 :project_key => "#{Repository.table_name}.project_id",
:date_column => 'committed_on'
Jean-Philippe Lang
Activity refactoring....
r1692
acts_as_activity_provider :timestamp => "#{table_name}.committed_on",
Jean-Philippe Lang
Display latest user's activity on account/show view....
r2064 :author_key => :user_id,
Jean-Philippe Lang
Activity refactoring....
r1692 :find_options => {:include => {:repository => :project}}
Jean-Philippe Lang
SVN commits are now stored in the database, and added to the activity view and the search engine....
r374
Jean-Philippe Lang
added simple svn statistics graphs, rendered using SVG::Graph...
r377 validates_presence_of :repository_id, :revision, :committed_on, :commit_date
Jean-Philippe Lang
SVN commits are now stored in the database, and added to the activity view and the search engine....
r374 validates_uniqueness_of :revision, :scope => :repository_id
Jean-Philippe Lang
Added Darcs basic support....
r570 validates_uniqueness_of :scmid, :scope => :repository_id, :allow_nil => true
Jean-Philippe Lang
added simple svn statistics graphs, rendered using SVG::Graph...
r377
Jean-Philippe Lang
Postgresql 8.3 compatibility fix (#834)....
r1348 def revision=(r)
write_attribute :revision, (r.nil? ? nil : r.to_s)
end
Jean-Philippe Lang
Changeset comments are now stripped before being stored in the database (patch by Nicholas Wieland)....
r651 def comments=(comment)
Jean-Philippe Lang
Fixes error with CVS+Postgresql and non-UTF8 commit logs (#917, #1659)....
r1767 write_attribute(:comments, Changeset.normalize_comments(comment))
Jean-Philippe Lang
Changeset comments are now stripped before being stored in the database (patch by Nicholas Wieland)....
r651 end
Jean-Philippe Lang
added simple svn statistics graphs, rendered using SVG::Graph...
r377 def committed_on=(date)
self.commit_date = date
super
end
Jean-Philippe Lang
Commit messages are now scanned for referenced or fixed issue IDs....
r470
Jean-Philippe Lang
Activity enhancements:...
r1213 def project
repository.project
end
Jean-Philippe Lang
Maps repository users to Redmine users (#1383)....
r2004 def author
user || committer.to_s.split('<').first
end
def before_create
self.user = repository.find_committer_user(committer)
end
Jean-Philippe Lang
Commit messages are now scanned for referenced or fixed issue IDs....
r470 def after_create
scan_comment_for_issue_ids
end
Jean-Philippe Lang
Create a journal and send an email when an issue is closed by commit (#609)....
r1112 require 'pp'
Jean-Philippe Lang
Commit messages are now scanned for referenced or fixed issue IDs....
r470
def scan_comment_for_issue_ids
Jean-Philippe Lang
Fixed: 10342 Creation of Schema in Oracle...
r476 return if comments.blank?
Jean-Philippe Lang
Commit messages are now scanned for referenced or fixed issue IDs....
r470 # keywords used to reference issues
Jean-Philippe Lang
Commit message parser:...
r848 ref_keywords = Setting.commit_ref_keywords.downcase.split(",").collect(&:strip)
Jean-Philippe Lang
Commit messages are now scanned for referenced or fixed issue IDs....
r470 # keywords used to fix issues
Jean-Philippe Lang
Commit message parser:...
r848 fix_keywords = Setting.commit_fix_keywords.downcase.split(",").collect(&:strip)
Jean-Philippe Lang
Added the ability to set the "done ratio" of issues fixed by commit (original path by Nikolay Solakov, slightly edited)....
r810 # status and optional done ratio applied
Jean-Philippe Lang
Commit messages are now scanned for referenced or fixed issue IDs....
r470 fix_status = IssueStatus.find_by_id(Setting.commit_fix_status_id)
Jean-Philippe Lang
Added the ability to set the "done ratio" of issues fixed by commit (original path by Nikolay Solakov, slightly edited)....
r810 done_ratio = Setting.commit_fix_done_ratio.blank? ? nil : Setting.commit_fix_done_ratio.to_i
Jean-Philippe Lang
Commit messages are now scanned for referenced or fixed issue IDs....
r470
Jean-Philippe Lang
Commit message parser:...
r848 kw_regexp = (ref_keywords + fix_keywords).collect{|kw| Regexp.escape(kw)}.join("|")
Jean-Philippe Lang
Commit messages are now scanned for referenced or fixed issue IDs....
r470 return if kw_regexp.blank?
Jean-Philippe Lang
Commit message parser:...
r848 referenced_issues = []
Jean-Philippe Lang
* Referencing issues in commit messages: enter * in 'Referencing keywords' to link any issue id without using keywords....
r905
if ref_keywords.delete('*')
# find any issue ID in the comments
target_issue_ids = []
Jean-Philippe Lang
Fixed: using '*' as keyword for repository referencing keywords doesn't work when issue id is at the beginning of a line (#1253)....
r1437 comments.scan(%r{([\s\(,-]|^)#(\d+)(?=[[:punct:]]|\s|<|$)}).each { |m| target_issue_ids << m[1] }
Jean-Philippe Lang
* Referencing issues in commit messages: enter * in 'Referencing keywords' to link any issue id without using keywords....
r905 referenced_issues += repository.project.issues.find_all_by_id(target_issue_ids)
end
Jean-Philippe Lang
Fixed: 10342 Creation of Schema in Oracle...
r476 comments.scan(Regexp.new("(#{kw_regexp})[\s:]+(([\s,;&]*#?\\d+)+)", Regexp::IGNORECASE)).each do |match|
Jean-Philippe Lang
Commit messages are now scanned for referenced or fixed issue IDs....
r470 action = match[0]
target_issue_ids = match[1].scan(/\d+/)
target_issues = repository.project.issues.find_all_by_id(target_issue_ids)
if fix_status && fix_keywords.include?(action.downcase)
# update status of issues
logger.debug "Issues fixed by changeset #{self.revision}: #{issue_ids.join(', ')}." if logger && logger.debug?
target_issues.each do |issue|
Jean-Philippe Lang
Fixed: fetch_changesets fails on commit comments that close 2 duplicates issues....
r1169 # the issue may have been updated by the closure of another one (eg. duplicate)
issue.reload
Jean-Philippe Lang
Create a journal and send an email when an issue is closed by commit (#609)....
r1112 # don't change the status is the issue is closed
Jean-Philippe Lang
Commit messages are now scanned for referenced or fixed issue IDs....
r470 next if issue.status.is_closed?
Jean-Philippe Lang
Merged Git support branch (r1200 to r1226)....
r1222 csettext = "r#{self.revision}"
if self.scmid && (! (csettext =~ /^r[0-9]+$/))
csettext = "commit:\"#{self.scmid}\""
end
Jean-Philippe Lang
Maps repository users to Redmine users (#1383)....
r2004 journal = issue.init_journal(user || User.anonymous, l(:text_status_changed_by_changeset, csettext))
Jean-Philippe Lang
Commit messages are now scanned for referenced or fixed issue IDs....
r470 issue.status = fix_status
Jean-Philippe Lang
Added the ability to set the "done ratio" of issues fixed by commit (original path by Nikolay Solakov, slightly edited)....
r810 issue.done_ratio = done_ratio if done_ratio
Jean-Philippe Lang
Merged r2768, r2773, r2774, r2775, r2796 from trunk....
r2768 Redmine::Hook.call_hook(:model_changeset_scan_commit_for_issue_ids_pre_issue_update,
{ :changeset => self, :issue => issue })
Jean-Philippe Lang
Commit messages are now scanned for referenced or fixed issue IDs....
r470 issue.save
Jean-Philippe Lang
Create a journal and send an email when an issue is closed by commit (#609)....
r1112 Mailer.deliver_issue_edit(journal) if Setting.notified_events.include?('issue_updated')
Jean-Philippe Lang
Commit messages are now scanned for referenced or fixed issue IDs....
r470 end
end
Jean-Philippe Lang
Commit message parser:...
r848 referenced_issues += target_issues
Jean-Philippe Lang
Commit messages are now scanned for referenced or fixed issue IDs....
r470 end
Jean-Philippe Lang
* Referencing issues in commit messages: enter * in 'Referencing keywords' to link any issue id without using keywords....
r905
Jean-Philippe Lang
Commit message parser:...
r848 self.issues = referenced_issues.uniq
Jean-Philippe Lang
Commit messages are now scanned for referenced or fixed issue IDs....
r470 end
Jean-Philippe Lang
Create a journal and send an email when an issue is closed by commit (#609)....
r1112
Jean-Philippe Lang
* Added links to previous and next revisions on revision view (patch by Cyril Mougel slightly edited)...
r925 # Returns the previous changeset
def previous
Jean-Philippe Lang
Merged Git support branch (r1200 to r1226)....
r1222 @previous ||= Changeset.find(:first, :conditions => ['id < ? AND repository_id = ?', self.id, self.repository_id], :order => 'id DESC')
Jean-Philippe Lang
* Added links to previous and next revisions on revision view (patch by Cyril Mougel slightly edited)...
r925 end
# Returns the next changeset
def next
Jean-Philippe Lang
Merged Git support branch (r1200 to r1226)....
r1222 @next ||= Changeset.find(:first, :conditions => ['id > ? AND repository_id = ?', self.id, self.repository_id], :order => 'id ASC')
Jean-Philippe Lang
* Added links to previous and next revisions on revision view (patch by Cyril Mougel slightly edited)...
r925 end
Jean-Philippe Lang
Adds support for commit logs reencoding to UTF-8 before insertion in the database (#834, #917, #1663)....
r1766
Jean-Philippe Lang
Fixes error with CVS+Postgresql and non-UTF8 commit logs (#917, #1659)....
r1767 # Strips and reencodes a commit log before insertion into the database
def self.normalize_comments(str)
to_utf8(str.to_s.strip)
end
Jean-Philippe Lang
Adds support for commit logs reencoding to UTF-8 before insertion in the database (#834, #917, #1663)....
r1766 private
Jean-Philippe Lang
Maps repository users to Redmine users (#1383)....
r2004
Jean-Philippe Lang
Fixes error with CVS+Postgresql and non-UTF8 commit logs (#917, #1659)....
r1767 def self.to_utf8(str)
Jean-Philippe Lang
Adds support for commit logs reencoding to UTF-8 before insertion in the database (#834, #917, #1663)....
r1766 return str if /\A[\r\n\t\x20-\x7e]*\Z/n.match(str) # for us-ascii
encoding = Setting.commit_logs_encoding.to_s.strip
unless encoding.blank? || encoding == 'UTF-8'
begin
return Iconv.conv('UTF-8', encoding, str)
rescue Iconv::Failure
# do nothing here
end
end
str
end
Jean-Philippe Lang
SVN commits are now stored in the database, and added to the activity view and the search engine....
r374 end