Merged r6199 from trunk.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.2-stable@6200 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
a5bcdf6d2c
commit
3e9ad22fad
@ -32,6 +32,7 @@ class Enumeration < ActiveRecord::Base
|
|||||||
|
|
||||||
named_scope :shared, :conditions => { :project_id => nil }
|
named_scope :shared, :conditions => { :project_id => nil }
|
||||||
named_scope :active, :conditions => { :active => true }
|
named_scope :active, :conditions => { :active => true }
|
||||||
|
named_scope :named, lambda {|arg| { :conditions => ["LOWER(#{table_name}.name) = LOWER(?)", arg.to_s.strip]}}
|
||||||
|
|
||||||
def self.default
|
def self.default
|
||||||
# Creates a fake default scope so Enumeration.default will check
|
# Creates a fake default scope so Enumeration.default will check
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# redMine - project management software
|
# Redmine - project management software
|
||||||
# Copyright (C) 2006 Jean-Philippe Lang
|
# Copyright (C) 2006-2011 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
|
||||||
@ -24,6 +24,8 @@ class IssueCategory < ActiveRecord::Base
|
|||||||
validates_uniqueness_of :name, :scope => [:project_id]
|
validates_uniqueness_of :name, :scope => [:project_id]
|
||||||
validates_length_of :name, :maximum => 30
|
validates_length_of :name, :maximum => 30
|
||||||
|
|
||||||
|
named_scope :named, lambda {|arg| { :conditions => ["LOWER(#{table_name}.name) = LOWER(?)", arg.to_s.strip]}}
|
||||||
|
|
||||||
alias :destroy_without_reassign :destroy
|
alias :destroy_without_reassign :destroy
|
||||||
|
|
||||||
# Destroy the category
|
# Destroy the category
|
||||||
|
@ -26,6 +26,8 @@ class IssueStatus < ActiveRecord::Base
|
|||||||
validates_uniqueness_of :name
|
validates_uniqueness_of :name
|
||||||
validates_length_of :name, :maximum => 30
|
validates_length_of :name, :maximum => 30
|
||||||
validates_inclusion_of :default_done_ratio, :in => 0..100, :allow_nil => true
|
validates_inclusion_of :default_done_ratio, :in => 0..100, :allow_nil => true
|
||||||
|
|
||||||
|
named_scope :named, lambda {|arg| { :conditions => ["LOWER(#{table_name}.name) = LOWER(?)", arg.to_s.strip]}}
|
||||||
|
|
||||||
def after_save
|
def after_save
|
||||||
IssueStatus.update_all("is_default=#{connection.quoted_false}", ['id <> ?', id]) if self.is_default?
|
IssueStatus.update_all("is_default=#{connection.quoted_false}", ['id <> ?', id]) if self.is_default?
|
||||||
|
@ -265,12 +265,12 @@ class MailHandler < ActionMailer::Base
|
|||||||
assigned_to = nil if assigned_to && !issue.assignable_users.include?(assigned_to)
|
assigned_to = nil if assigned_to && !issue.assignable_users.include?(assigned_to)
|
||||||
|
|
||||||
attrs = {
|
attrs = {
|
||||||
'tracker_id' => (k = get_keyword(:tracker)) && issue.project.trackers.find_by_name(k).try(:id),
|
'tracker_id' => (k = get_keyword(:tracker)) && issue.project.trackers.named(k).first.try(:id),
|
||||||
'status_id' => (k = get_keyword(:status)) && IssueStatus.find_by_name(k).try(:id),
|
'status_id' => (k = get_keyword(:status)) && IssueStatus.named(k).first.try(:id),
|
||||||
'priority_id' => (k = get_keyword(:priority)) && IssuePriority.find_by_name(k).try(:id),
|
'priority_id' => (k = get_keyword(:priority)) && IssuePriority.named(k).first.try(:id),
|
||||||
'category_id' => (k = get_keyword(:category)) && issue.project.issue_categories.find_by_name(k).try(:id),
|
'category_id' => (k = get_keyword(:category)) && issue.project.issue_categories.named(k).first.try(:id),
|
||||||
'assigned_to_id' => assigned_to.try(:id),
|
'assigned_to_id' => assigned_to.try(:id),
|
||||||
'fixed_version_id' => (k = get_keyword(:fixed_version, :override => true)) && issue.project.shared_versions.find_by_name(k).try(:id),
|
'fixed_version_id' => (k = get_keyword(:fixed_version, :override => true)) && issue.project.shared_versions.named(k).first.try(:id),
|
||||||
'start_date' => get_keyword(:start_date, :override => true, :format => '\d{4}-\d{2}-\d{2}'),
|
'start_date' => get_keyword(:start_date, :override => true, :format => '\d{4}-\d{2}-\d{2}'),
|
||||||
'due_date' => get_keyword(:due_date, :override => true, :format => '\d{4}-\d{2}-\d{2}'),
|
'due_date' => get_keyword(:due_date, :override => true, :format => '\d{4}-\d{2}-\d{2}'),
|
||||||
'estimated_hours' => get_keyword(:estimated_hours, :override => true),
|
'estimated_hours' => get_keyword(:estimated_hours, :override => true),
|
||||||
|
@ -32,6 +32,8 @@ class Tracker < ActiveRecord::Base
|
|||||||
validates_uniqueness_of :name
|
validates_uniqueness_of :name
|
||||||
validates_length_of :name, :maximum => 30
|
validates_length_of :name, :maximum => 30
|
||||||
|
|
||||||
|
named_scope :named, lambda {|arg| { :conditions => ["LOWER(#{table_name}.name) = LOWER(?)", arg.to_s.strip]}}
|
||||||
|
|
||||||
def to_s; name end
|
def to_s; name end
|
||||||
|
|
||||||
def <=>(tracker)
|
def <=>(tracker)
|
||||||
|
@ -33,6 +33,7 @@ class Version < ActiveRecord::Base
|
|||||||
validates_inclusion_of :status, :in => VERSION_STATUSES
|
validates_inclusion_of :status, :in => VERSION_STATUSES
|
||||||
validates_inclusion_of :sharing, :in => VERSION_SHARINGS
|
validates_inclusion_of :sharing, :in => VERSION_SHARINGS
|
||||||
|
|
||||||
|
named_scope :named, lambda {|arg| { :conditions => ["LOWER(#{table_name}.name) = LOWER(?)", arg.to_s.strip]}}
|
||||||
named_scope :open, :conditions => {:status => 'open'}
|
named_scope :open, :conditions => {:status => 'open'}
|
||||||
named_scope :visible, lambda {|*args| { :include => :project,
|
named_scope :visible, lambda {|*args| { :include => :project,
|
||||||
:conditions => Project.allowed_to_condition(args.first || User.current, :view_issues) } }
|
:conditions => Project.allowed_to_condition(args.first || User.current, :view_issues) } }
|
||||||
|
@ -38,6 +38,6 @@ massa. Sed sodales, ante fermentum ultricies sollicitudin, massa leo
|
|||||||
pulvinar dui, a gravida orci mi eget odio. Nunc a lacus.
|
pulvinar dui, a gravida orci mi eget odio. Nunc a lacus.
|
||||||
|
|
||||||
Project: onlinestore
|
Project: onlinestore
|
||||||
Tracker: Feature request
|
Tracker: Feature Request
|
||||||
category: Stock management
|
category: stock management
|
||||||
priority: Urgent
|
priority: URGENT
|
||||||
|
@ -63,7 +63,7 @@ class MailHandlerTest < ActiveSupport::TestCase
|
|||||||
assert_equal '2010-01-01', issue.start_date.to_s
|
assert_equal '2010-01-01', issue.start_date.to_s
|
||||||
assert_equal '2010-12-31', issue.due_date.to_s
|
assert_equal '2010-12-31', issue.due_date.to_s
|
||||||
assert_equal User.find_by_login('jsmith'), issue.assigned_to
|
assert_equal User.find_by_login('jsmith'), issue.assigned_to
|
||||||
assert_equal Version.find_by_name('alpha'), issue.fixed_version
|
assert_equal Version.find_by_name('Alpha'), issue.fixed_version
|
||||||
assert_equal 2.5, issue.estimated_hours
|
assert_equal 2.5, issue.estimated_hours
|
||||||
assert_equal 30, issue.done_ratio
|
assert_equal 30, issue.done_ratio
|
||||||
assert_equal [issue.id, 1, 2], [issue.root_id, issue.lft, issue.rgt]
|
assert_equal [issue.id, 1, 2], [issue.root_id, issue.lft, issue.rgt]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user