##// END OF EJS Templates
Merged r3051 from trunk with some changes for 0.8 sessions....
Eric Davis -
r2939:051741f05c17
parent child
Show More
@@ -1,240 +1,241
1 # redMine - project management software
1 # redMine - project management software
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
17
18 require 'uri'
18 require 'uri'
19 require 'cgi'
19 require 'cgi'
20
20
21 class ApplicationController < ActionController::Base
21 class ApplicationController < ActionController::Base
22 layout 'base'
22 layout 'base'
23
23
24 before_filter :user_setup, :check_if_login_required, :set_localization
24 before_filter :user_setup, :check_if_login_required, :set_localization
25 filter_parameter_logging :password
25 filter_parameter_logging :password
26 protect_from_forgery :secret => session.first[:secret]
26
27
27 include Redmine::MenuManager::MenuController
28 include Redmine::MenuManager::MenuController
28 helper Redmine::MenuManager::MenuHelper
29 helper Redmine::MenuManager::MenuHelper
29
30
30 REDMINE_SUPPORTED_SCM.each do |scm|
31 REDMINE_SUPPORTED_SCM.each do |scm|
31 require_dependency "repository/#{scm.underscore}"
32 require_dependency "repository/#{scm.underscore}"
32 end
33 end
33
34
34 def current_role
35 def current_role
35 @current_role ||= User.current.role_for_project(@project)
36 @current_role ||= User.current.role_for_project(@project)
36 end
37 end
37
38
38 def user_setup
39 def user_setup
39 # Check the settings cache for each request
40 # Check the settings cache for each request
40 Setting.check_cache
41 Setting.check_cache
41 # Find the current user
42 # Find the current user
42 User.current = find_current_user
43 User.current = find_current_user
43 end
44 end
44
45
45 # Returns the current user or nil if no user is logged in
46 # Returns the current user or nil if no user is logged in
46 def find_current_user
47 def find_current_user
47 if session[:user_id]
48 if session[:user_id]
48 # existing session
49 # existing session
49 (User.active.find(session[:user_id]) rescue nil)
50 (User.active.find(session[:user_id]) rescue nil)
50 elsif cookies[:autologin] && Setting.autologin?
51 elsif cookies[:autologin] && Setting.autologin?
51 # auto-login feature
52 # auto-login feature
52 User.find_by_autologin_key(cookies[:autologin])
53 User.find_by_autologin_key(cookies[:autologin])
53 elsif params[:key] && accept_key_auth_actions.include?(params[:action])
54 elsif params[:key] && accept_key_auth_actions.include?(params[:action])
54 # RSS key authentication
55 # RSS key authentication
55 User.find_by_rss_key(params[:key])
56 User.find_by_rss_key(params[:key])
56 end
57 end
57 end
58 end
58
59
59 # check if login is globally required to access the application
60 # check if login is globally required to access the application
60 def check_if_login_required
61 def check_if_login_required
61 # no check needed if user is already logged in
62 # no check needed if user is already logged in
62 return true if User.current.logged?
63 return true if User.current.logged?
63 require_login if Setting.login_required?
64 require_login if Setting.login_required?
64 end
65 end
65
66
66 def set_localization
67 def set_localization
67 User.current.language = nil unless User.current.logged?
68 User.current.language = nil unless User.current.logged?
68 lang = begin
69 lang = begin
69 if !User.current.language.blank? && GLoc.valid_language?(User.current.language)
70 if !User.current.language.blank? && GLoc.valid_language?(User.current.language)
70 User.current.language
71 User.current.language
71 elsif request.env['HTTP_ACCEPT_LANGUAGE']
72 elsif request.env['HTTP_ACCEPT_LANGUAGE']
72 accept_lang = parse_qvalues(request.env['HTTP_ACCEPT_LANGUAGE']).first.downcase
73 accept_lang = parse_qvalues(request.env['HTTP_ACCEPT_LANGUAGE']).first.downcase
73 if !accept_lang.blank? && (GLoc.valid_language?(accept_lang) || GLoc.valid_language?(accept_lang = accept_lang.split('-').first))
74 if !accept_lang.blank? && (GLoc.valid_language?(accept_lang) || GLoc.valid_language?(accept_lang = accept_lang.split('-').first))
74 User.current.language = accept_lang
75 User.current.language = accept_lang
75 end
76 end
76 end
77 end
77 rescue
78 rescue
78 nil
79 nil
79 end || Setting.default_language
80 end || Setting.default_language
80 set_language_if_valid(lang)
81 set_language_if_valid(lang)
81 end
82 end
82
83
83 def require_login
84 def require_login
84 if !User.current.logged?
85 if !User.current.logged?
85 # Extract only the basic url parameters on non-GET requests
86 # Extract only the basic url parameters on non-GET requests
86 if request.get?
87 if request.get?
87 url = url_for(params)
88 url = url_for(params)
88 else
89 else
89 url = url_for(:controller => params[:controller], :action => params[:action], :id => params[:id], :project_id => params[:project_id])
90 url = url_for(:controller => params[:controller], :action => params[:action], :id => params[:id], :project_id => params[:project_id])
90 end
91 end
91 redirect_to :controller => "account", :action => "login", :back_url => url
92 redirect_to :controller => "account", :action => "login", :back_url => url
92 return false
93 return false
93 end
94 end
94 true
95 true
95 end
96 end
96
97
97 def require_admin
98 def require_admin
98 return unless require_login
99 return unless require_login
99 if !User.current.admin?
100 if !User.current.admin?
100 render_403
101 render_403
101 return false
102 return false
102 end
103 end
103 true
104 true
104 end
105 end
105
106
106 def deny_access
107 def deny_access
107 User.current.logged? ? render_403 : require_login
108 User.current.logged? ? render_403 : require_login
108 end
109 end
109
110
110 # Authorize the user for the requested action
111 # Authorize the user for the requested action
111 def authorize(ctrl = params[:controller], action = params[:action])
112 def authorize(ctrl = params[:controller], action = params[:action])
112 allowed = User.current.allowed_to?({:controller => ctrl, :action => action}, @project)
113 allowed = User.current.allowed_to?({:controller => ctrl, :action => action}, @project)
113 allowed ? true : deny_access
114 allowed ? true : deny_access
114 end
115 end
115
116
116 # make sure that the user is a member of the project (or admin) if project is private
117 # make sure that the user is a member of the project (or admin) if project is private
117 # used as a before_filter for actions that do not require any particular permission on the project
118 # used as a before_filter for actions that do not require any particular permission on the project
118 def check_project_privacy
119 def check_project_privacy
119 if @project && @project.active?
120 if @project && @project.active?
120 if @project.is_public? || User.current.member_of?(@project) || User.current.admin?
121 if @project.is_public? || User.current.member_of?(@project) || User.current.admin?
121 true
122 true
122 else
123 else
123 User.current.logged? ? render_403 : require_login
124 User.current.logged? ? render_403 : require_login
124 end
125 end
125 else
126 else
126 @project = nil
127 @project = nil
127 render_404
128 render_404
128 false
129 false
129 end
130 end
130 end
131 end
131
132
132 def redirect_back_or_default(default)
133 def redirect_back_or_default(default)
133 back_url = CGI.unescape(params[:back_url].to_s)
134 back_url = CGI.unescape(params[:back_url].to_s)
134 if !back_url.blank?
135 if !back_url.blank?
135 begin
136 begin
136 uri = URI.parse(back_url)
137 uri = URI.parse(back_url)
137 # do not redirect user to another host or to the login or register page
138 # do not redirect user to another host or to the login or register page
138 if (uri.relative? || (uri.host == request.host)) && !uri.path.match(%r{/(login|account/register)})
139 if (uri.relative? || (uri.host == request.host)) && !uri.path.match(%r{/(login|account/register)})
139 redirect_to(back_url) and return
140 redirect_to(back_url) and return
140 end
141 end
141 rescue URI::InvalidURIError
142 rescue URI::InvalidURIError
142 # redirect to default
143 # redirect to default
143 end
144 end
144 end
145 end
145 redirect_to default
146 redirect_to default
146 end
147 end
147
148
148 def render_403
149 def render_403
149 @project = nil
150 @project = nil
150 render :template => "common/403", :layout => !request.xhr?, :status => 403
151 render :template => "common/403", :layout => !request.xhr?, :status => 403
151 return false
152 return false
152 end
153 end
153
154
154 def render_404
155 def render_404
155 render :template => "common/404", :layout => !request.xhr?, :status => 404
156 render :template => "common/404", :layout => !request.xhr?, :status => 404
156 return false
157 return false
157 end
158 end
158
159
159 def render_error(msg)
160 def render_error(msg)
160 flash.now[:error] = msg
161 flash.now[:error] = msg
161 render :nothing => true, :layout => !request.xhr?, :status => 500
162 render :nothing => true, :layout => !request.xhr?, :status => 500
162 end
163 end
163
164
164 def render_feed(items, options={})
165 def render_feed(items, options={})
165 @items = items || []
166 @items = items || []
166 @items.sort! {|x,y| y.event_datetime <=> x.event_datetime }
167 @items.sort! {|x,y| y.event_datetime <=> x.event_datetime }
167 @items = @items.slice(0, Setting.feeds_limit.to_i)
168 @items = @items.slice(0, Setting.feeds_limit.to_i)
168 @title = options[:title] || Setting.app_title
169 @title = options[:title] || Setting.app_title
169 render :template => "common/feed.atom.rxml", :layout => false, :content_type => 'application/atom+xml'
170 render :template => "common/feed.atom.rxml", :layout => false, :content_type => 'application/atom+xml'
170 end
171 end
171
172
172 def self.accept_key_auth(*actions)
173 def self.accept_key_auth(*actions)
173 actions = actions.flatten.map(&:to_s)
174 actions = actions.flatten.map(&:to_s)
174 write_inheritable_attribute('accept_key_auth_actions', actions)
175 write_inheritable_attribute('accept_key_auth_actions', actions)
175 end
176 end
176
177
177 def accept_key_auth_actions
178 def accept_key_auth_actions
178 self.class.read_inheritable_attribute('accept_key_auth_actions') || []
179 self.class.read_inheritable_attribute('accept_key_auth_actions') || []
179 end
180 end
180
181
181 # TODO: move to model
182 # TODO: move to model
182 def attach_files(obj, attachments)
183 def attach_files(obj, attachments)
183 attached = []
184 attached = []
184 unsaved = []
185 unsaved = []
185 if attachments && attachments.is_a?(Hash)
186 if attachments && attachments.is_a?(Hash)
186 attachments.each_value do |attachment|
187 attachments.each_value do |attachment|
187 file = attachment['file']
188 file = attachment['file']
188 next unless file && file.size > 0
189 next unless file && file.size > 0
189 a = Attachment.create(:container => obj,
190 a = Attachment.create(:container => obj,
190 :file => file,
191 :file => file,
191 :description => attachment['description'].to_s.strip,
192 :description => attachment['description'].to_s.strip,
192 :author => User.current)
193 :author => User.current)
193 a.new_record? ? (unsaved << a) : (attached << a)
194 a.new_record? ? (unsaved << a) : (attached << a)
194 end
195 end
195 if unsaved.any?
196 if unsaved.any?
196 flash[:warning] = l(:warning_attachments_not_saved, unsaved.size)
197 flash[:warning] = l(:warning_attachments_not_saved, unsaved.size)
197 end
198 end
198 end
199 end
199 attached
200 attached
200 end
201 end
201
202
202 # Returns the number of objects that should be displayed
203 # Returns the number of objects that should be displayed
203 # on the paginated list
204 # on the paginated list
204 def per_page_option
205 def per_page_option
205 per_page = nil
206 per_page = nil
206 if params[:per_page] && Setting.per_page_options_array.include?(params[:per_page].to_s.to_i)
207 if params[:per_page] && Setting.per_page_options_array.include?(params[:per_page].to_s.to_i)
207 per_page = params[:per_page].to_s.to_i
208 per_page = params[:per_page].to_s.to_i
208 session[:per_page] = per_page
209 session[:per_page] = per_page
209 elsif session[:per_page]
210 elsif session[:per_page]
210 per_page = session[:per_page]
211 per_page = session[:per_page]
211 else
212 else
212 per_page = Setting.per_page_options_array.first || 25
213 per_page = Setting.per_page_options_array.first || 25
213 end
214 end
214 per_page
215 per_page
215 end
216 end
216
217
217 # qvalues http header parser
218 # qvalues http header parser
218 # code taken from webrick
219 # code taken from webrick
219 def parse_qvalues(value)
220 def parse_qvalues(value)
220 tmp = []
221 tmp = []
221 if value
222 if value
222 parts = value.split(/,\s*/)
223 parts = value.split(/,\s*/)
223 parts.each {|part|
224 parts.each {|part|
224 if m = %r{^([^\s,]+?)(?:;\s*q=(\d+(?:\.\d+)?))?$}.match(part)
225 if m = %r{^([^\s,]+?)(?:;\s*q=(\d+(?:\.\d+)?))?$}.match(part)
225 val = m[1]
226 val = m[1]
226 q = (m[2] or 1).to_f
227 q = (m[2] or 1).to_f
227 tmp.push([val, q])
228 tmp.push([val, q])
228 end
229 end
229 }
230 }
230 tmp = tmp.sort_by{|val, q| -q}
231 tmp = tmp.sort_by{|val, q| -q}
231 tmp.collect!{|val, q| val}
232 tmp.collect!{|val, q| val}
232 end
233 end
233 return tmp
234 return tmp
234 end
235 end
235
236
236 # Returns a string that can be used as filename value in Content-Disposition header
237 # Returns a string that can be used as filename value in Content-Disposition header
237 def filename_for_content_disposition(name)
238 def filename_for_content_disposition(name)
238 request.env['HTTP_USER_AGENT'] =~ %r{MSIE} ? ERB::Util.url_encode(name) : name
239 request.env['HTTP_USER_AGENT'] =~ %r{MSIE} ? ERB::Util.url_encode(name) : name
239 end
240 end
240 end
241 end
@@ -1,17 +1,20
1 # Settings specified here will take precedence over those in config/environment.rb
1 # Settings specified here will take precedence over those in config/environment.rb
2
2
3 # The test environment is used exclusively to run your application's
3 # The test environment is used exclusively to run your application's
4 # test suite. You never need to work with it otherwise. Remember that
4 # test suite. You never need to work with it otherwise. Remember that
5 # your test database is "scratch space" for the test suite and is wiped
5 # your test database is "scratch space" for the test suite and is wiped
6 # and recreated between test runs. Don't rely on the data there!
6 # and recreated between test runs. Don't rely on the data there!
7 config.cache_classes = true
7 config.cache_classes = true
8
8
9 # Log error messages when you accidentally call methods on nil.
9 # Log error messages when you accidentally call methods on nil.
10 config.whiny_nils = true
10 config.whiny_nils = true
11
11
12 # Show full error reports and disable caching
12 # Show full error reports and disable caching
13 config.action_controller.consider_all_requests_local = true
13 config.action_controller.consider_all_requests_local = true
14 config.action_controller.perform_caching = false
14 config.action_controller.perform_caching = false
15
15
16 config.action_mailer.perform_deliveries = true
16 config.action_mailer.perform_deliveries = true
17 config.action_mailer.delivery_method = :test
17 config.action_mailer.delivery_method = :test
18
19 # Skip protect_from_forgery in requests http://m.onkey.org/2007/9/28/csrf-protection-for-your-existing-rails-application
20 config.action_controller.allow_forgery_protection = false
@@ -1,17 +1,21
1 # Settings specified here will take precedence over those in config/environment.rb
1 # Settings specified here will take precedence over those in config/environment.rb
2
2
3 # The test environment is used exclusively to run your application's
3 # The test environment is used exclusively to run your application's
4 # test suite. You never need to work with it otherwise. Remember that
4 # test suite. You never need to work with it otherwise. Remember that
5 # your test database is "scratch space" for the test suite and is wiped
5 # your test database is "scratch space" for the test suite and is wiped
6 # and recreated between test runs. Don't rely on the data there!
6 # and recreated between test runs. Don't rely on the data there!
7 config.cache_classes = true
7 config.cache_classes = true
8
8
9 # Log error messages when you accidentally call methods on nil.
9 # Log error messages when you accidentally call methods on nil.
10 config.whiny_nils = true
10 config.whiny_nils = true
11
11
12 # Show full error reports and disable caching
12 # Show full error reports and disable caching
13 config.action_controller.consider_all_requests_local = true
13 config.action_controller.consider_all_requests_local = true
14 config.action_controller.perform_caching = false
14 config.action_controller.perform_caching = false
15
15
16 config.action_mailer.perform_deliveries = true
16 config.action_mailer.perform_deliveries = true
17 config.action_mailer.delivery_method = :test
17 config.action_mailer.delivery_method = :test
18
19 # Skip protect_from_forgery in requests http://m.onkey.org/2007/9/28/csrf-protection-for-your-existing-rails-application
20 config.action_controller.allow_forgery_protection = false
21
@@ -1,17 +1,20
1 # Settings specified here will take precedence over those in config/environment.rb
1 # Settings specified here will take precedence over those in config/environment.rb
2
2
3 # The test environment is used exclusively to run your application's
3 # The test environment is used exclusively to run your application's
4 # test suite. You never need to work with it otherwise. Remember that
4 # test suite. You never need to work with it otherwise. Remember that
5 # your test database is "scratch space" for the test suite and is wiped
5 # your test database is "scratch space" for the test suite and is wiped
6 # and recreated between test runs. Don't rely on the data there!
6 # and recreated between test runs. Don't rely on the data there!
7 config.cache_classes = true
7 config.cache_classes = true
8
8
9 # Log error messages when you accidentally call methods on nil.
9 # Log error messages when you accidentally call methods on nil.
10 config.whiny_nils = true
10 config.whiny_nils = true
11
11
12 # Show full error reports and disable caching
12 # Show full error reports and disable caching
13 config.action_controller.consider_all_requests_local = true
13 config.action_controller.consider_all_requests_local = true
14 config.action_controller.perform_caching = false
14 config.action_controller.perform_caching = false
15
15
16 config.action_mailer.perform_deliveries = true
16 config.action_mailer.perform_deliveries = true
17 config.action_mailer.delivery_method = :test
17 config.action_mailer.delivery_method = :test
18
19 # Skip protect_from_forgery in requests http://m.onkey.org/2007/9/28/csrf-protection-for-your-existing-rails-application
20 config.action_controller.allow_forgery_protection = false
@@ -1,947 +1,948
1 == Redmine changelog
1 == Redmine changelog
2
2
3 Redmine - project management software
3 Redmine - project management software
4 Copyright (C) 2006-2009 Jean-Philippe Lang
4 Copyright (C) 2006-2009 Jean-Philippe Lang
5 http://www.redmine.org/
5 http://www.redmine.org/
6
6
7 == TDB v0.8.7
7 == TDB v0.8.7
8
8
9 * Fixed: Hide paragraph terminator at the end of headings on html export
9 * Fixed: Hide paragraph terminator at the end of headings on html export
10 * Fixed: pre tags containing "<pre*"
10 * Fixed: pre tags containing "<pre*"
11 * Fixed: First date of the date range not included in the time report with SQLite
11 * Fixed: First date of the date range not included in the time report with SQLite
12 * Fixed: Password field not styled correctly on alternative stylesheet
12 * Fixed: Password field not styled correctly on alternative stylesheet
13 * Fixed: Error when sumbitting a POST request that requires a login
13 * Fixed: Error when sumbitting a POST request that requires a login
14 * Fixed: CSRF vulnerabilities
14
15
15 == 2009-11-04 v0.8.6
16 == 2009-11-04 v0.8.6
16
17
17 * Change links to closed issues to be a grey color
18 * Change links to closed issues to be a grey color
18 * Change subversion adapter to not cache authentication and run non interactively
19 * Change subversion adapter to not cache authentication and run non interactively
19 * Fixed: Custom Values with a nil value cause HTTP error 500
20 * Fixed: Custom Values with a nil value cause HTTP error 500
20 * Fixed: Failure to convert HTML entities when editing an Issue reply
21 * Fixed: Failure to convert HTML entities when editing an Issue reply
21 * Fixed: Error trying to show repository when there are no comments in a changeset
22 * Fixed: Error trying to show repository when there are no comments in a changeset
22 * Fixed: account/show/:user_id should not be accessible for other users not in your projects
23 * Fixed: account/show/:user_id should not be accessible for other users not in your projects
23 * Fixed: XSS vulnerabilities
24 * Fixed: XSS vulnerabilities
24 * Fixed: IssuesController#destroy should accept POST only
25 * Fixed: IssuesController#destroy should accept POST only
25 * Fixed: Inline images in wiki headings
26 * Fixed: Inline images in wiki headings
26
27
27
28
28 == 2009-09-13 v0.8.5
29 == 2009-09-13 v0.8.5
29
30
30 * Incoming mail handler : Allow spaces between keywords and colon
31 * Incoming mail handler : Allow spaces between keywords and colon
31 * Do not require a non-word character after a comma in Redmine links
32 * Do not require a non-word character after a comma in Redmine links
32 * Include issue hyperlinks in reminder emails
33 * Include issue hyperlinks in reminder emails
33 * Prevent nil error when retrieving svn version
34 * Prevent nil error when retrieving svn version
34 * Various plugin hooks added
35 * Various plugin hooks added
35 * Add plugins information to script/about
36 * Add plugins information to script/about
36 * Fixed: 500 Internal Server Error is raised if add an empty comment to the news
37 * Fixed: 500 Internal Server Error is raised if add an empty comment to the news
37 * Fixed: Atom links for wiki pages are not correct
38 * Fixed: Atom links for wiki pages are not correct
38 * Fixed: Atom feeds leak email address
39 * Fixed: Atom feeds leak email address
39 * Fixed: Case sensitivity in Issue filtering
40 * Fixed: Case sensitivity in Issue filtering
40 * Fixed: When reading RSS feed, the inline-embedded images are not properly shown
41 * Fixed: When reading RSS feed, the inline-embedded images are not properly shown
41
42
42
43
43 == 2009-05-17 v0.8.4
44 == 2009-05-17 v0.8.4
44
45
45 * Allow textile mailto links
46 * Allow textile mailto links
46 * Fixed: memory consumption when uploading file
47 * Fixed: memory consumption when uploading file
47 * Fixed: Mercurial integration doesn't work if Redmine is installed in folder path containing space
48 * Fixed: Mercurial integration doesn't work if Redmine is installed in folder path containing space
48 * Fixed: an error is raised when no tab is available on project settings
49 * Fixed: an error is raised when no tab is available on project settings
49 * Fixed: insert image macro corrupts urls with excalamation marks
50 * Fixed: insert image macro corrupts urls with excalamation marks
50 * Fixed: error on cross-project gantt PNG export
51 * Fixed: error on cross-project gantt PNG export
51 * Fixed: self and alternate links in atom feeds do not respect Atom specs
52 * Fixed: self and alternate links in atom feeds do not respect Atom specs
52 * Fixed: accept any svn tunnel scheme in repository URL
53 * Fixed: accept any svn tunnel scheme in repository URL
53 * Fixed: issues/show should accept user's rss key
54 * Fixed: issues/show should accept user's rss key
54 * Fixed: consistency of custom fields display on the issue detail view
55 * Fixed: consistency of custom fields display on the issue detail view
55 * Fixed: wiki comments length validation is missing
56 * Fixed: wiki comments length validation is missing
56 * Fixed: weak autologin token generation algorithm causes duplicate tokens
57 * Fixed: weak autologin token generation algorithm causes duplicate tokens
57
58
58
59
59 == 2009-04-05 v0.8.3
60 == 2009-04-05 v0.8.3
60
61
61 * Separate project field and subject in cross-project issue view
62 * Separate project field and subject in cross-project issue view
62 * Ability to set language for redmine:load_default_data task using REDMINE_LANG environment variable
63 * Ability to set language for redmine:load_default_data task using REDMINE_LANG environment variable
63 * Rescue Redmine::DefaultData::DataAlreadyLoaded in redmine:load_default_data task
64 * Rescue Redmine::DefaultData::DataAlreadyLoaded in redmine:load_default_data task
64 * CSS classes to highlight own and assigned issues
65 * CSS classes to highlight own and assigned issues
65 * Hide "New file" link on wiki pages from printing
66 * Hide "New file" link on wiki pages from printing
66 * Flush buffer when asking for language in redmine:load_default_data task
67 * Flush buffer when asking for language in redmine:load_default_data task
67 * Minimum project identifier length set to 1
68 * Minimum project identifier length set to 1
68 * Include headers so that emails don't trigger vacation auto-responders
69 * Include headers so that emails don't trigger vacation auto-responders
69 * Fixed: Time entries csv export links for all projects are malformed
70 * Fixed: Time entries csv export links for all projects are malformed
70 * Fixed: Files without Version aren't visible in the Activity page
71 * Fixed: Files without Version aren't visible in the Activity page
71 * Fixed: Commit logs are centered in the repo browser
72 * Fixed: Commit logs are centered in the repo browser
72 * Fixed: News summary field content is not searchable
73 * Fixed: News summary field content is not searchable
73 * Fixed: Journal#save has a wrong signature
74 * Fixed: Journal#save has a wrong signature
74 * Fixed: Email footer signature convention
75 * Fixed: Email footer signature convention
75 * Fixed: Timelog report do not show time for non-versioned issues
76 * Fixed: Timelog report do not show time for non-versioned issues
76
77
77
78
78 == 2009-03-07 v0.8.2
79 == 2009-03-07 v0.8.2
79
80
80 * Send an email to the user when an administrator activates a registered user
81 * Send an email to the user when an administrator activates a registered user
81 * Strip keywords from received email body
82 * Strip keywords from received email body
82 * Footer updated to 2009
83 * Footer updated to 2009
83 * Show RSS-link even when no issues is found
84 * Show RSS-link even when no issues is found
84 * One click filter action in activity view
85 * One click filter action in activity view
85 * Clickable/linkable line #'s while browsing the repo or viewing a file
86 * Clickable/linkable line #'s while browsing the repo or viewing a file
86 * Links to versions on files list
87 * Links to versions on files list
87 * Added request and controller objects to the hooks by default
88 * Added request and controller objects to the hooks by default
88 * Fixed: exporting an issue with attachments to PDF raises an error
89 * Fixed: exporting an issue with attachments to PDF raises an error
89 * Fixed: "too few arguments" error may occur on activerecord error translation
90 * Fixed: "too few arguments" error may occur on activerecord error translation
90 * Fixed: "Default columns Displayed on the Issues list" setting is not easy to read
91 * Fixed: "Default columns Displayed on the Issues list" setting is not easy to read
91 * Fixed: visited links to closed tickets are not striked through with IE6
92 * Fixed: visited links to closed tickets are not striked through with IE6
92 * Fixed: MailHandler#plain_text_body returns nil if there was nothing to strip
93 * Fixed: MailHandler#plain_text_body returns nil if there was nothing to strip
93 * Fixed: MailHandler raises an error when processing an email without From header
94 * Fixed: MailHandler raises an error when processing an email without From header
94
95
95
96
96 == 2009-02-15 v0.8.1
97 == 2009-02-15 v0.8.1
97
98
98 * Select watchers on new issue form
99 * Select watchers on new issue form
99 * Issue description is no longer a required field
100 * Issue description is no longer a required field
100 * Files module: ability to add files without version
101 * Files module: ability to add files without version
101 * Jump to the current tab when using the project quick-jump combo
102 * Jump to the current tab when using the project quick-jump combo
102 * Display a warning if some attachments were not saved
103 * Display a warning if some attachments were not saved
103 * Import custom fields values from emails on issue creation
104 * Import custom fields values from emails on issue creation
104 * Show view/annotate/download links on entry and annotate views
105 * Show view/annotate/download links on entry and annotate views
105 * Admin Info Screen: Display if plugin assets directory is writable
106 * Admin Info Screen: Display if plugin assets directory is writable
106 * Adds a 'Create and continue' button on the new issue form
107 * Adds a 'Create and continue' button on the new issue form
107 * IMAP: add options to move received emails
108 * IMAP: add options to move received emails
108 * Do not show Category field when categories are not defined
109 * Do not show Category field when categories are not defined
109 * Lower the project identifier limit to a minimum of two characters
110 * Lower the project identifier limit to a minimum of two characters
110 * Add "closed" html class to closed entries in issue list
111 * Add "closed" html class to closed entries in issue list
111 * Fixed: broken redirect URL on login failure
112 * Fixed: broken redirect URL on login failure
112 * Fixed: Deleted files are shown when using Darcs
113 * Fixed: Deleted files are shown when using Darcs
113 * Fixed: Darcs adapter works on Win32 only
114 * Fixed: Darcs adapter works on Win32 only
114 * Fixed: syntax highlight doesn't appear in new ticket preview
115 * Fixed: syntax highlight doesn't appear in new ticket preview
115 * Fixed: email notification for changes I make still occurs when running Repository.fetch_changesets
116 * Fixed: email notification for changes I make still occurs when running Repository.fetch_changesets
116 * Fixed: no error is raised when entering invalid hours on the issue update form
117 * Fixed: no error is raised when entering invalid hours on the issue update form
117 * Fixed: Details time log report CSV export doesn't honour date format from settings
118 * Fixed: Details time log report CSV export doesn't honour date format from settings
118 * Fixed: invalid css classes on issue details
119 * Fixed: invalid css classes on issue details
119 * Fixed: Trac importer creates duplicate custom values
120 * Fixed: Trac importer creates duplicate custom values
120 * Fixed: inline attached image should not match partial filename
121 * Fixed: inline attached image should not match partial filename
121
122
122
123
123 == 2008-12-30 v0.8.0
124 == 2008-12-30 v0.8.0
124
125
125 * Setting added in order to limit the number of diff lines that should be displayed
126 * Setting added in order to limit the number of diff lines that should be displayed
126 * Makes logged-in username in topbar linking to
127 * Makes logged-in username in topbar linking to
127 * Mail handler: strip tags when receiving a html-only email
128 * Mail handler: strip tags when receiving a html-only email
128 * Mail handler: add watchers before sending notification
129 * Mail handler: add watchers before sending notification
129 * Adds a css class (overdue) to overdue issues on issue lists and detail views
130 * Adds a css class (overdue) to overdue issues on issue lists and detail views
130 * Fixed: project activity truncated after viewing user's activity
131 * Fixed: project activity truncated after viewing user's activity
131 * Fixed: email address entered for password recovery shouldn't be case-sensitive
132 * Fixed: email address entered for password recovery shouldn't be case-sensitive
132 * Fixed: default flag removed when editing a default enumeration
133 * Fixed: default flag removed when editing a default enumeration
133 * Fixed: default category ignored when adding a document
134 * Fixed: default category ignored when adding a document
134 * Fixed: error on repository user mapping when a repository username is blank
135 * Fixed: error on repository user mapping when a repository username is blank
135 * Fixed: Firefox cuts off large diffs
136 * Fixed: Firefox cuts off large diffs
136 * Fixed: CVS browser should not show dead revisions (deleted files)
137 * Fixed: CVS browser should not show dead revisions (deleted files)
137 * Fixed: escape double-quotes in image titles
138 * Fixed: escape double-quotes in image titles
138 * Fixed: escape textarea content when editing a issue note
139 * Fixed: escape textarea content when editing a issue note
139 * Fixed: JS error on context menu with IE
140 * Fixed: JS error on context menu with IE
140 * Fixed: bold syntax around single character in series doesn't work
141 * Fixed: bold syntax around single character in series doesn't work
141 * Fixed several XSS vulnerabilities
142 * Fixed several XSS vulnerabilities
142 * Fixed a SQL injection vulnerability
143 * Fixed a SQL injection vulnerability
143
144
144
145
145 == 2008-12-07 v0.8.0-rc1
146 == 2008-12-07 v0.8.0-rc1
146
147
147 * Wiki page protection
148 * Wiki page protection
148 * Wiki page hierarchy. Parent page can be assigned on the Rename screen
149 * Wiki page hierarchy. Parent page can be assigned on the Rename screen
149 * Adds support for issue creation via email
150 * Adds support for issue creation via email
150 * Adds support for free ticket filtering and custom queries on Gantt chart and calendar
151 * Adds support for free ticket filtering and custom queries on Gantt chart and calendar
151 * Cross-project search
152 * Cross-project search
152 * Ability to search a project and its subprojects
153 * Ability to search a project and its subprojects
153 * Ability to search the projects the user belongs to
154 * Ability to search the projects the user belongs to
154 * Adds custom fields on time entries
155 * Adds custom fields on time entries
155 * Adds boolean and list custom fields for time entries as criteria on time report
156 * Adds boolean and list custom fields for time entries as criteria on time report
156 * Cross-project time reports
157 * Cross-project time reports
157 * Display latest user's activity on account/show view
158 * Display latest user's activity on account/show view
158 * Show last connexion time on user's page
159 * Show last connexion time on user's page
159 * Obfuscates email address on user's account page using javascript
160 * Obfuscates email address on user's account page using javascript
160 * wiki TOC rendered as an unordered list
161 * wiki TOC rendered as an unordered list
161 * Adds the ability to search for a user on the administration users list
162 * Adds the ability to search for a user on the administration users list
162 * Adds the ability to search for a project name or identifier on the administration projects list
163 * Adds the ability to search for a project name or identifier on the administration projects list
163 * Redirect user to the previous page after logging in
164 * Redirect user to the previous page after logging in
164 * Adds a permission 'view wiki edits' so that wiki history can be hidden to certain users
165 * Adds a permission 'view wiki edits' so that wiki history can be hidden to certain users
165 * Adds permissions for viewing the watcher list and adding new watchers on the issue detail view
166 * Adds permissions for viewing the watcher list and adding new watchers on the issue detail view
166 * Adds permissions to let users edit and/or delete their messages
167 * Adds permissions to let users edit and/or delete their messages
167 * Link to activity view when displaying dates
168 * Link to activity view when displaying dates
168 * Hide Redmine version in atom feeds and pdf properties
169 * Hide Redmine version in atom feeds and pdf properties
169 * Maps repository users to Redmine users. Users with same username or email are automatically mapped. Mapping can be manually adjusted in repository settings. Multiple usernames can be mapped to the same Redmine user.
170 * Maps repository users to Redmine users. Users with same username or email are automatically mapped. Mapping can be manually adjusted in repository settings. Multiple usernames can be mapped to the same Redmine user.
170 * Sort users by their display names so that user dropdown lists are sorted alphabetically
171 * Sort users by their display names so that user dropdown lists are sorted alphabetically
171 * Adds estimated hours to issue filters
172 * Adds estimated hours to issue filters
172 * Switch order of current and previous revisions in side-by-side diff
173 * Switch order of current and previous revisions in side-by-side diff
173 * Render the commit changes list as a tree
174 * Render the commit changes list as a tree
174 * Adds watch/unwatch functionality at forum topic level
175 * Adds watch/unwatch functionality at forum topic level
175 * When moving an issue to another project, reassign it to the category with same name if any
176 * When moving an issue to another project, reassign it to the category with same name if any
176 * Adds child_pages macro for wiki pages
177 * Adds child_pages macro for wiki pages
177 * Use GET instead of POST on roadmap (#718), gantt and calendar forms
178 * Use GET instead of POST on roadmap (#718), gantt and calendar forms
178 * Search engine: display total results count and count by result type
179 * Search engine: display total results count and count by result type
179 * Email delivery configuration moved to an unversioned YAML file (config/email.yml, see the sample file)
180 * Email delivery configuration moved to an unversioned YAML file (config/email.yml, see the sample file)
180 * Adds icons on search results
181 * Adds icons on search results
181 * Adds 'Edit' link on account/show for admin users
182 * Adds 'Edit' link on account/show for admin users
182 * Adds Lock/Unlock/Activate link on user edit screen
183 * Adds Lock/Unlock/Activate link on user edit screen
183 * Adds user count in status drop down on admin user list
184 * Adds user count in status drop down on admin user list
184 * Adds multi-levels blockquotes support by using > at the beginning of lines
185 * Adds multi-levels blockquotes support by using > at the beginning of lines
185 * Adds a Reply link to each issue note
186 * Adds a Reply link to each issue note
186 * Adds plain text only option for mail notifications
187 * Adds plain text only option for mail notifications
187 * Gravatar support for issue detail, user grid, and activity stream (disabled by default)
188 * Gravatar support for issue detail, user grid, and activity stream (disabled by default)
188 * Adds 'Delete wiki pages attachments' permission
189 * Adds 'Delete wiki pages attachments' permission
189 * Show the most recent file when displaying an inline image
190 * Show the most recent file when displaying an inline image
190 * Makes permission screens localized
191 * Makes permission screens localized
191 * AuthSource list: display associated users count and disable 'Delete' buton if any
192 * AuthSource list: display associated users count and disable 'Delete' buton if any
192 * Make the 'duplicates of' relation asymmetric
193 * Make the 'duplicates of' relation asymmetric
193 * Adds username to the password reminder email
194 * Adds username to the password reminder email
194 * Adds links to forum messages using message#id syntax
195 * Adds links to forum messages using message#id syntax
195 * Allow same name for custom fields on different object types
196 * Allow same name for custom fields on different object types
196 * One-click bulk edition using the issue list context menu within the same project
197 * One-click bulk edition using the issue list context menu within the same project
197 * Adds support for commit logs reencoding to UTF-8 before insertion in the database. Source encoding of commit logs can be selected in Application settings -> Repositories.
198 * Adds support for commit logs reencoding to UTF-8 before insertion in the database. Source encoding of commit logs can be selected in Application settings -> Repositories.
198 * Adds checkboxes toggle links on permissions report
199 * Adds checkboxes toggle links on permissions report
199 * Adds Trac-Like anchors on wiki headings
200 * Adds Trac-Like anchors on wiki headings
200 * Adds support for wiki links with anchor
201 * Adds support for wiki links with anchor
201 * Adds category to the issue context menu
202 * Adds category to the issue context menu
202 * Adds a workflow overview screen
203 * Adds a workflow overview screen
203 * Appends the filename to the attachment url so that clients that ignore content-disposition http header get the real filename
204 * Appends the filename to the attachment url so that clients that ignore content-disposition http header get the real filename
204 * Dots allowed in custom field name
205 * Dots allowed in custom field name
205 * Adds posts quoting functionality
206 * Adds posts quoting functionality
206 * Adds an option to generate sequential project identifiers
207 * Adds an option to generate sequential project identifiers
207 * Adds mailto link on the user administration list
208 * Adds mailto link on the user administration list
208 * Ability to remove enumerations (activities, priorities, document categories) that are in use. Associated objects can be reassigned to another value
209 * Ability to remove enumerations (activities, priorities, document categories) that are in use. Associated objects can be reassigned to another value
209 * Gantt chart: display issues that don't have a due date if they are assigned to a version with a date
210 * Gantt chart: display issues that don't have a due date if they are assigned to a version with a date
210 * Change projects homepage limit to 255 chars
211 * Change projects homepage limit to 255 chars
211 * Improved on-the-fly account creation. If some attributes are missing (eg. not present in the LDAP) or are invalid, the registration form is displayed so that the user is able to fill or fix these attributes
212 * Improved on-the-fly account creation. If some attributes are missing (eg. not present in the LDAP) or are invalid, the registration form is displayed so that the user is able to fill or fix these attributes
212 * Adds "please select" to activity select box if no activity is set as default
213 * Adds "please select" to activity select box if no activity is set as default
213 * Do not silently ignore timelog validation failure on issue edit
214 * Do not silently ignore timelog validation failure on issue edit
214 * Adds a rake task to send reminder emails
215 * Adds a rake task to send reminder emails
215 * Allow empty cells in wiki tables
216 * Allow empty cells in wiki tables
216 * Makes wiki text formatter pluggable
217 * Makes wiki text formatter pluggable
217 * Adds back textile acronyms support
218 * Adds back textile acronyms support
218 * Remove pre tag attributes
219 * Remove pre tag attributes
219 * Plugin hooks
220 * Plugin hooks
220 * Pluggable admin menu
221 * Pluggable admin menu
221 * Plugins can provide activity content
222 * Plugins can provide activity content
222 * Moves plugin list to its own administration menu item
223 * Moves plugin list to its own administration menu item
223 * Adds url and author_url plugin attributes
224 * Adds url and author_url plugin attributes
224 * Adds Plugin#requires_redmine method so that plugin compatibility can be checked against current Redmine version
225 * Adds Plugin#requires_redmine method so that plugin compatibility can be checked against current Redmine version
225 * Adds atom feed on time entries details
226 * Adds atom feed on time entries details
226 * Adds project name to issues feed title
227 * Adds project name to issues feed title
227 * Adds a css class on menu items in order to apply item specific styles (eg. icons)
228 * Adds a css class on menu items in order to apply item specific styles (eg. icons)
228 * Adds a Redmine plugin generators
229 * Adds a Redmine plugin generators
229 * Adds timelog link to the issue context menu
230 * Adds timelog link to the issue context menu
230 * Adds links to the user page on various views
231 * Adds links to the user page on various views
231 * Turkish translation by Ismail Sezen
232 * Turkish translation by Ismail Sezen
232 * Catalan translation
233 * Catalan translation
233 * Vietnamese translation
234 * Vietnamese translation
234 * Slovak translation
235 * Slovak translation
235 * Better naming of activity feed if only one kind of event is displayed
236 * Better naming of activity feed if only one kind of event is displayed
236 * Enable syntax highlight on issues, messages and news
237 * Enable syntax highlight on issues, messages and news
237 * Add target version to the issue list context menu
238 * Add target version to the issue list context menu
238 * Hide 'Target version' filter if no version is defined
239 * Hide 'Target version' filter if no version is defined
239 * Add filters on cross-project issue list for custom fields marked as 'For all projects'
240 * Add filters on cross-project issue list for custom fields marked as 'For all projects'
240 * Turn ftp urls into links
241 * Turn ftp urls into links
241 * Hiding the View Differences button when a wiki page's history only has one version
242 * Hiding the View Differences button when a wiki page's history only has one version
242 * Messages on a Board can now be sorted by the number of replies
243 * Messages on a Board can now be sorted by the number of replies
243 * Adds a class ('me') to events of the activity view created by current user
244 * Adds a class ('me') to events of the activity view created by current user
244 * Strip pre/code tags content from activity view events
245 * Strip pre/code tags content from activity view events
245 * Display issue notes in the activity view
246 * Display issue notes in the activity view
246 * Adds links to changesets atom feed on repository browser
247 * Adds links to changesets atom feed on repository browser
247 * Track project and tracker changes in issue history
248 * Track project and tracker changes in issue history
248 * Adds anchor to atom feed messages links
249 * Adds anchor to atom feed messages links
249 * Adds a key in lang files to set the decimal separator (point or comma) in csv exports
250 * Adds a key in lang files to set the decimal separator (point or comma) in csv exports
250 * Makes importer work with Trac 0.8.x
251 * Makes importer work with Trac 0.8.x
251 * Upgraded to Prototype 1.6.0.1
252 * Upgraded to Prototype 1.6.0.1
252 * File viewer for attached text files
253 * File viewer for attached text files
253 * Menu mapper: add support for :before, :after and :last options to #push method and add #delete method
254 * Menu mapper: add support for :before, :after and :last options to #push method and add #delete method
254 * Removed inconsistent revision numbers on diff view
255 * Removed inconsistent revision numbers on diff view
255 * CVS: add support for modules names with spaces
256 * CVS: add support for modules names with spaces
256 * Log the user in after registration if account activation is not needed
257 * Log the user in after registration if account activation is not needed
257 * Mercurial adapter improvements
258 * Mercurial adapter improvements
258 * Trac importer: read session_attribute table to find user's email and real name
259 * Trac importer: read session_attribute table to find user's email and real name
259 * Ability to disable unused SCM adapters in application settings
260 * Ability to disable unused SCM adapters in application settings
260 * Adds Filesystem adapter
261 * Adds Filesystem adapter
261 * Clear changesets and changes with raw sql when deleting a repository for performance
262 * Clear changesets and changes with raw sql when deleting a repository for performance
262 * Redmine.pm now uses the 'commit access' permission defined in Redmine
263 * Redmine.pm now uses the 'commit access' permission defined in Redmine
263 * Reposman can create any type of scm (--scm option)
264 * Reposman can create any type of scm (--scm option)
264 * Reposman creates a repository if the 'repository' module is enabled at project level only
265 * Reposman creates a repository if the 'repository' module is enabled at project level only
265 * Display svn properties in the browser, svn >= 1.5.0 only
266 * Display svn properties in the browser, svn >= 1.5.0 only
266 * Reduces memory usage when importing large git repositories
267 * Reduces memory usage when importing large git repositories
267 * Wider SVG graphs in repository stats
268 * Wider SVG graphs in repository stats
268 * SubversionAdapter#entries performance improvement
269 * SubversionAdapter#entries performance improvement
269 * SCM browser: ability to download raw unified diffs
270 * SCM browser: ability to download raw unified diffs
270 * More detailed error message in log when scm command fails
271 * More detailed error message in log when scm command fails
271 * Adds support for file viewing with Darcs 2.0+
272 * Adds support for file viewing with Darcs 2.0+
272 * Check that git changeset is not in the database before creating it
273 * Check that git changeset is not in the database before creating it
273 * Unified diff viewer for attached files with .patch or .diff extension
274 * Unified diff viewer for attached files with .patch or .diff extension
274 * File size display with Bazaar repositories
275 * File size display with Bazaar repositories
275 * Git adapter: use commit time instead of author time
276 * Git adapter: use commit time instead of author time
276 * Prettier url for changesets
277 * Prettier url for changesets
277 * Makes changes link to entries on the revision view
278 * Makes changes link to entries on the revision view
278 * Adds a field on the repository view to browse at specific revision
279 * Adds a field on the repository view to browse at specific revision
279 * Adds new projects atom feed
280 * Adds new projects atom feed
280 * Added rake tasks to generate rcov code coverage reports
281 * Added rake tasks to generate rcov code coverage reports
281 * Add Redcloth's :block_markdown_rule to allow horizontal rules in wiki
282 * Add Redcloth's :block_markdown_rule to allow horizontal rules in wiki
282 * Show the project hierarchy in the drop down list for new membership on user administration screen
283 * Show the project hierarchy in the drop down list for new membership on user administration screen
283 * Split user edit screen into tabs
284 * Split user edit screen into tabs
284 * Renames bundled RedCloth to RedCloth3 to avoid RedCloth 4 to be loaded instead
285 * Renames bundled RedCloth to RedCloth3 to avoid RedCloth 4 to be loaded instead
285 * Fixed: Roadmap crashes when a version has a due date > 2037
286 * Fixed: Roadmap crashes when a version has a due date > 2037
286 * Fixed: invalid effective date (eg. 99999-01-01) causes an error on version edition screen
287 * Fixed: invalid effective date (eg. 99999-01-01) causes an error on version edition screen
287 * Fixed: login filter providing incorrect back_url for Redmine installed in sub-directory
288 * Fixed: login filter providing incorrect back_url for Redmine installed in sub-directory
288 * Fixed: logtime entry duplicated when edited from parent project
289 * Fixed: logtime entry duplicated when edited from parent project
289 * Fixed: wrong digest for text files under Windows
290 * Fixed: wrong digest for text files under Windows
290 * Fixed: associated revisions are displayed in wrong order on issue view
291 * Fixed: associated revisions are displayed in wrong order on issue view
291 * Fixed: Git Adapter date parsing ignores timezone
292 * Fixed: Git Adapter date parsing ignores timezone
292 * Fixed: Printing long roadmap doesn't split across pages
293 * Fixed: Printing long roadmap doesn't split across pages
293 * Fixes custom fields display order at several places
294 * Fixes custom fields display order at several places
294 * Fixed: urls containing @ are parsed as email adress by the wiki formatter
295 * Fixed: urls containing @ are parsed as email adress by the wiki formatter
295 * Fixed date filters accuracy with SQLite
296 * Fixed date filters accuracy with SQLite
296 * Fixed: tokens not escaped in highlight_tokens regexp
297 * Fixed: tokens not escaped in highlight_tokens regexp
297 * Fixed Bazaar shared repository browsing
298 * Fixed Bazaar shared repository browsing
298 * Fixes platform determination under JRuby
299 * Fixes platform determination under JRuby
299 * Fixed: Estimated time in issue's journal should be rounded to two decimals
300 * Fixed: Estimated time in issue's journal should be rounded to two decimals
300 * Fixed: 'search titles only' box ignored after one search is done on titles only
301 * Fixed: 'search titles only' box ignored after one search is done on titles only
301 * Fixed: non-ASCII subversion path can't be displayed
302 * Fixed: non-ASCII subversion path can't be displayed
302 * Fixed: Inline images don't work if file name has upper case letters or if image is in BMP format
303 * Fixed: Inline images don't work if file name has upper case letters or if image is in BMP format
303 * Fixed: document listing shows on "my page" when viewing documents is disabled for the role
304 * Fixed: document listing shows on "my page" when viewing documents is disabled for the role
304 * Fixed: Latest news appear on the homepage for projects with the News module disabled
305 * Fixed: Latest news appear on the homepage for projects with the News module disabled
305 * Fixed: cross-project issue list should not show issues of projects for which the issue tracking module was disabled
306 * Fixed: cross-project issue list should not show issues of projects for which the issue tracking module was disabled
306 * Fixed: the default status is lost when reordering issue statuses
307 * Fixed: the default status is lost when reordering issue statuses
307 * Fixes error with Postgresql and non-UTF8 commit logs
308 * Fixes error with Postgresql and non-UTF8 commit logs
308 * Fixed: textile footnotes no longer work
309 * Fixed: textile footnotes no longer work
309 * Fixed: http links containing parentheses fail to reder correctly
310 * Fixed: http links containing parentheses fail to reder correctly
310 * Fixed: GitAdapter#get_rev should use current branch instead of hardwiring master
311 * Fixed: GitAdapter#get_rev should use current branch instead of hardwiring master
311
312
312
313
313 == 2008-07-06 v0.7.3
314 == 2008-07-06 v0.7.3
314
315
315 * Allow dot in firstnames and lastnames
316 * Allow dot in firstnames and lastnames
316 * Add project name to cross-project Atom feeds
317 * Add project name to cross-project Atom feeds
317 * Encoding set to utf8 in example database.yml
318 * Encoding set to utf8 in example database.yml
318 * HTML titles on forums related views
319 * HTML titles on forums related views
319 * Fixed: various XSS vulnerabilities
320 * Fixed: various XSS vulnerabilities
320 * Fixed: Entourage (and some old client) fails to correctly render notification styles
321 * Fixed: Entourage (and some old client) fails to correctly render notification styles
321 * Fixed: Fixed: timelog redirects inappropriately when :back_url is blank
322 * Fixed: Fixed: timelog redirects inappropriately when :back_url is blank
322 * Fixed: wrong relative paths to images in wiki_syntax.html
323 * Fixed: wrong relative paths to images in wiki_syntax.html
323
324
324
325
325 == 2008-06-15 v0.7.2
326 == 2008-06-15 v0.7.2
326
327
327 * "New Project" link on Projects page
328 * "New Project" link on Projects page
328 * Links to repository directories on the repo browser
329 * Links to repository directories on the repo browser
329 * Move status to front in Activity View
330 * Move status to front in Activity View
330 * Remove edit step from Status context menu
331 * Remove edit step from Status context menu
331 * Fixed: No way to do textile horizontal rule
332 * Fixed: No way to do textile horizontal rule
332 * Fixed: Repository: View differences doesn't work
333 * Fixed: Repository: View differences doesn't work
333 * Fixed: attachement's name maybe invalid.
334 * Fixed: attachement's name maybe invalid.
334 * Fixed: Error when creating a new issue
335 * Fixed: Error when creating a new issue
335 * Fixed: NoMethodError on @available_filters.has_key?
336 * Fixed: NoMethodError on @available_filters.has_key?
336 * Fixed: Check All / Uncheck All in Email Settings
337 * Fixed: Check All / Uncheck All in Email Settings
337 * Fixed: "View differences" of one file at /repositories/revision/ fails
338 * Fixed: "View differences" of one file at /repositories/revision/ fails
338 * Fixed: Column width in "my page"
339 * Fixed: Column width in "my page"
339 * Fixed: private subprojects are listed on Issues view
340 * Fixed: private subprojects are listed on Issues view
340 * Fixed: Textile: bold, italics, underline, etc... not working after parentheses
341 * Fixed: Textile: bold, italics, underline, etc... not working after parentheses
341 * Fixed: Update issue form: comment field from log time end out of screen
342 * Fixed: Update issue form: comment field from log time end out of screen
342 * Fixed: Editing role: "issue can be assigned to this role" out of box
343 * Fixed: Editing role: "issue can be assigned to this role" out of box
343 * Fixed: Unable use angular braces after include word
344 * Fixed: Unable use angular braces after include word
344 * Fixed: Using '*' as keyword for repository referencing keywords doesn't work
345 * Fixed: Using '*' as keyword for repository referencing keywords doesn't work
345 * Fixed: Subversion repository "View differences" on each file rise ERROR
346 * Fixed: Subversion repository "View differences" on each file rise ERROR
346 * Fixed: View differences for individual file of a changeset fails if the repository URL doesn't point to the repository root
347 * Fixed: View differences for individual file of a changeset fails if the repository URL doesn't point to the repository root
347 * Fixed: It is possible to lock out the last admin account
348 * Fixed: It is possible to lock out the last admin account
348 * Fixed: Wikis are viewable for anonymous users on public projects, despite not granting access
349 * Fixed: Wikis are viewable for anonymous users on public projects, despite not granting access
349 * Fixed: Issue number display clipped on 'my issues'
350 * Fixed: Issue number display clipped on 'my issues'
350 * Fixed: Roadmap version list links not carrying state
351 * Fixed: Roadmap version list links not carrying state
351 * Fixed: Log Time fieldset in IssueController#edit doesn't set default Activity as default
352 * Fixed: Log Time fieldset in IssueController#edit doesn't set default Activity as default
352 * Fixed: git's "get_rev" API should use repo's current branch instead of hardwiring "master"
353 * Fixed: git's "get_rev" API should use repo's current branch instead of hardwiring "master"
353 * Fixed: browser's language subcodes ignored
354 * Fixed: browser's language subcodes ignored
354 * Fixed: Error on project selection with numeric (only) identifier.
355 * Fixed: Error on project selection with numeric (only) identifier.
355 * Fixed: Link to PDF doesn't work after creating new issue
356 * Fixed: Link to PDF doesn't work after creating new issue
356 * Fixed: "Replies" should not be shown on forum threads that are locked
357 * Fixed: "Replies" should not be shown on forum threads that are locked
357 * Fixed: SVN errors lead to svn username/password being displayed to end users (security issue)
358 * Fixed: SVN errors lead to svn username/password being displayed to end users (security issue)
358 * Fixed: http links containing hashes don't display correct
359 * Fixed: http links containing hashes don't display correct
359 * Fixed: Allow ampersands in Enumeration names
360 * Fixed: Allow ampersands in Enumeration names
360 * Fixed: Atom link on saved query does not include query_id
361 * Fixed: Atom link on saved query does not include query_id
361 * Fixed: Logtime info lost when there's an error updating an issue
362 * Fixed: Logtime info lost when there's an error updating an issue
362 * Fixed: TOC does not parse colorization markups
363 * Fixed: TOC does not parse colorization markups
363 * Fixed: CVS: add support for modules names with spaces
364 * Fixed: CVS: add support for modules names with spaces
364 * Fixed: Bad rendering on projects/add
365 * Fixed: Bad rendering on projects/add
365 * Fixed: exception when viewing differences on cvs
366 * Fixed: exception when viewing differences on cvs
366 * Fixed: export issue to pdf will messup when use Chinese language
367 * Fixed: export issue to pdf will messup when use Chinese language
367 * Fixed: Redmine::Scm::Adapters::GitAdapter#get_rev ignored GIT_BIN constant
368 * Fixed: Redmine::Scm::Adapters::GitAdapter#get_rev ignored GIT_BIN constant
368 * Fixed: Adding non-ASCII new issue type in the New Issue page have encoding error using IE
369 * Fixed: Adding non-ASCII new issue type in the New Issue page have encoding error using IE
369 * Fixed: Importing from trac : some wiki links are messed
370 * Fixed: Importing from trac : some wiki links are messed
370 * Fixed: Incorrect weekend definition in Hebrew calendar locale
371 * Fixed: Incorrect weekend definition in Hebrew calendar locale
371 * Fixed: Atom feeds don't provide author section for repository revisions
372 * Fixed: Atom feeds don't provide author section for repository revisions
372 * Fixed: In Activity views, changesets titles can be multiline while they should not
373 * Fixed: In Activity views, changesets titles can be multiline while they should not
373 * Fixed: Ignore unreadable subversion directories (read disabled using authz)
374 * Fixed: Ignore unreadable subversion directories (read disabled using authz)
374 * Fixed: lib/SVG/Graph/Graph.rb can't externalize stylesheets
375 * Fixed: lib/SVG/Graph/Graph.rb can't externalize stylesheets
375 * Fixed: Close statement handler in Redmine.pm
376 * Fixed: Close statement handler in Redmine.pm
376
377
377
378
378 == 2008-05-04 v0.7.1
379 == 2008-05-04 v0.7.1
379
380
380 * Thai translation added (Gampol Thitinilnithi)
381 * Thai translation added (Gampol Thitinilnithi)
381 * Translations updates
382 * Translations updates
382 * Escape HTML comment tags
383 * Escape HTML comment tags
383 * Prevent "can't convert nil into String" error when :sort_order param is not present
384 * Prevent "can't convert nil into String" error when :sort_order param is not present
384 * Fixed: Updating tickets add a time log with zero hours
385 * Fixed: Updating tickets add a time log with zero hours
385 * Fixed: private subprojects names are revealed on the project overview
386 * Fixed: private subprojects names are revealed on the project overview
386 * Fixed: Search for target version of "none" fails with postgres 8.3
387 * Fixed: Search for target version of "none" fails with postgres 8.3
387 * Fixed: Home, Logout, Login links shouldn't be absolute links
388 * Fixed: Home, Logout, Login links shouldn't be absolute links
388 * Fixed: 'Latest projects' box on the welcome screen should be hidden if there are no projects
389 * Fixed: 'Latest projects' box on the welcome screen should be hidden if there are no projects
389 * Fixed: error when using upcase language name in coderay
390 * Fixed: error when using upcase language name in coderay
390 * Fixed: error on Trac import when :due attribute is nil
391 * Fixed: error on Trac import when :due attribute is nil
391
392
392
393
393 == 2008-04-28 v0.7.0
394 == 2008-04-28 v0.7.0
394
395
395 * Forces Redmine to use rails 2.0.2 gem when vendor/rails is not present
396 * Forces Redmine to use rails 2.0.2 gem when vendor/rails is not present
396 * Queries can be marked as 'For all projects'. Such queries will be available on all projects and on the global issue list.
397 * Queries can be marked as 'For all projects'. Such queries will be available on all projects and on the global issue list.
397 * Add predefined date ranges to the time report
398 * Add predefined date ranges to the time report
398 * Time report can be done at issue level
399 * Time report can be done at issue level
399 * Various timelog report enhancements
400 * Various timelog report enhancements
400 * Accept the following formats for "hours" field: 1h, 1 h, 1 hour, 2 hours, 30m, 30min, 1h30, 1h30m, 1:30
401 * Accept the following formats for "hours" field: 1h, 1 h, 1 hour, 2 hours, 30m, 30min, 1h30, 1h30m, 1:30
401 * Display the context menu above and/or to the left of the click if needed
402 * Display the context menu above and/or to the left of the click if needed
402 * Make the admin project files list sortable
403 * Make the admin project files list sortable
403 * Mercurial: display working directory files sizes unless browsing a specific revision
404 * Mercurial: display working directory files sizes unless browsing a specific revision
404 * Preserve status filter and page number when using lock/unlock/activate links on the users list
405 * Preserve status filter and page number when using lock/unlock/activate links on the users list
405 * Redmine.pm support for LDAP authentication
406 * Redmine.pm support for LDAP authentication
406 * Better error message and AR errors in log for failed LDAP on-the-fly user creation
407 * Better error message and AR errors in log for failed LDAP on-the-fly user creation
407 * Redirected user to where he is coming from after logging hours
408 * Redirected user to where he is coming from after logging hours
408 * Warn user that subprojects are also deleted when deleting a project
409 * Warn user that subprojects are also deleted when deleting a project
409 * Include subprojects versions on calendar and gantt
410 * Include subprojects versions on calendar and gantt
410 * Notify project members when a message is posted if they want to receive notifications
411 * Notify project members when a message is posted if they want to receive notifications
411 * Fixed: Feed content limit setting has no effect
412 * Fixed: Feed content limit setting has no effect
412 * Fixed: Priorities not ordered when displayed as a filter in issue list
413 * Fixed: Priorities not ordered when displayed as a filter in issue list
413 * Fixed: can not display attached images inline in message replies
414 * Fixed: can not display attached images inline in message replies
414 * Fixed: Boards are not deleted when project is deleted
415 * Fixed: Boards are not deleted when project is deleted
415 * Fixed: trying to preview a new issue raises an exception with postgresql
416 * Fixed: trying to preview a new issue raises an exception with postgresql
416 * Fixed: single file 'View difference' links do not work because of duplicate slashes in url
417 * Fixed: single file 'View difference' links do not work because of duplicate slashes in url
417 * Fixed: inline image not displayed when including a wiki page
418 * Fixed: inline image not displayed when including a wiki page
418 * Fixed: CVS duplicate key violation
419 * Fixed: CVS duplicate key violation
419 * Fixed: ActiveRecord::StaleObjectError exception on closing a set of circular duplicate issues
420 * Fixed: ActiveRecord::StaleObjectError exception on closing a set of circular duplicate issues
420 * Fixed: custom field filters behaviour
421 * Fixed: custom field filters behaviour
421 * Fixed: Postgresql 8.3 compatibility
422 * Fixed: Postgresql 8.3 compatibility
422 * Fixed: Links to repository directories don't work
423 * Fixed: Links to repository directories don't work
423
424
424
425
425 == 2008-03-29 v0.7.0-rc1
426 == 2008-03-29 v0.7.0-rc1
426
427
427 * Overall activity view and feed added, link is available on the project list
428 * Overall activity view and feed added, link is available on the project list
428 * Git VCS support
429 * Git VCS support
429 * Rails 2.0 sessions cookie store compatibility
430 * Rails 2.0 sessions cookie store compatibility
430 * Use project identifiers in urls instead of ids
431 * Use project identifiers in urls instead of ids
431 * Default configuration data can now be loaded from the administration screen
432 * Default configuration data can now be loaded from the administration screen
432 * Administration settings screen split to tabs (email notifications options moved to 'Settings')
433 * Administration settings screen split to tabs (email notifications options moved to 'Settings')
433 * Project description is now unlimited and optional
434 * Project description is now unlimited and optional
434 * Wiki annotate view
435 * Wiki annotate view
435 * Escape HTML tag in textile content
436 * Escape HTML tag in textile content
436 * Add Redmine links to documents, versions, attachments and repository files
437 * Add Redmine links to documents, versions, attachments and repository files
437 * New setting to specify how many objects should be displayed on paginated lists. There are 2 ways to select a set of issues on the issue list:
438 * New setting to specify how many objects should be displayed on paginated lists. There are 2 ways to select a set of issues on the issue list:
438 * by using checkbox and/or the little pencil that will select/unselect all issues
439 * by using checkbox and/or the little pencil that will select/unselect all issues
439 * by clicking on the rows (but not on the links), Ctrl and Shift keys can be used to select multiple issues
440 * by clicking on the rows (but not on the links), Ctrl and Shift keys can be used to select multiple issues
440 * Context menu disabled on links so that the default context menu of the browser is displayed when right-clicking on a link (click anywhere else on the row to display the context menu)
441 * Context menu disabled on links so that the default context menu of the browser is displayed when right-clicking on a link (click anywhere else on the row to display the context menu)
441 * User display format is now configurable in administration settings
442 * User display format is now configurable in administration settings
442 * Issue list now supports bulk edit/move/delete (for a set of issues that belong to the same project)
443 * Issue list now supports bulk edit/move/delete (for a set of issues that belong to the same project)
443 * Merged 'change status', 'edit issue' and 'add note' actions:
444 * Merged 'change status', 'edit issue' and 'add note' actions:
444 * Users with 'edit issues' permission can now update any property including custom fields when adding a note or changing the status
445 * Users with 'edit issues' permission can now update any property including custom fields when adding a note or changing the status
445 * 'Change issue status' permission removed. To change an issue status, a user just needs to have either 'Edit' or 'Add note' permissions and some workflow transitions allowed
446 * 'Change issue status' permission removed. To change an issue status, a user just needs to have either 'Edit' or 'Add note' permissions and some workflow transitions allowed
446 * Details by assignees on issue summary view
447 * Details by assignees on issue summary view
447 * 'New issue' link in the main menu (accesskey 7). The drop-down lists to add an issue on the project overview and the issue list are removed
448 * 'New issue' link in the main menu (accesskey 7). The drop-down lists to add an issue on the project overview and the issue list are removed
448 * Change status select box default to current status
449 * Change status select box default to current status
449 * Preview for issue notes, news and messages
450 * Preview for issue notes, news and messages
450 * Optional description for attachments
451 * Optional description for attachments
451 * 'Fixed version' label changed to 'Target version'
452 * 'Fixed version' label changed to 'Target version'
452 * Let the user choose when deleting issues with reported hours to:
453 * Let the user choose when deleting issues with reported hours to:
453 * delete the hours
454 * delete the hours
454 * assign the hours to the project
455 * assign the hours to the project
455 * reassign the hours to another issue
456 * reassign the hours to another issue
456 * Date range filter and pagination on time entries detail view
457 * Date range filter and pagination on time entries detail view
457 * Propagate time tracking to the parent project
458 * Propagate time tracking to the parent project
458 * Switch added on the project activity view to include subprojects
459 * Switch added on the project activity view to include subprojects
459 * Display total estimated and spent hours on the version detail view
460 * Display total estimated and spent hours on the version detail view
460 * Weekly time tracking block for 'My page'
461 * Weekly time tracking block for 'My page'
461 * Permissions to edit time entries
462 * Permissions to edit time entries
462 * Include subprojects on the issue list, calendar, gantt and timelog by default (can be turned off is administration settings)
463 * Include subprojects on the issue list, calendar, gantt and timelog by default (can be turned off is administration settings)
463 * Roadmap enhancements (separate related issues from wiki contents, leading h1 in version wiki pages is hidden, smaller wiki headings)
464 * Roadmap enhancements (separate related issues from wiki contents, leading h1 in version wiki pages is hidden, smaller wiki headings)
464 * Make versions with same date sorted by name
465 * Make versions with same date sorted by name
465 * Allow issue list to be sorted by target version
466 * Allow issue list to be sorted by target version
466 * Related changesets messages displayed on the issue details view
467 * Related changesets messages displayed on the issue details view
467 * Create a journal and send an email when an issue is closed by commit
468 * Create a journal and send an email when an issue is closed by commit
468 * Add 'Author' to the available columns for the issue list
469 * Add 'Author' to the available columns for the issue list
469 * More appropriate default sort order on sortable columns
470 * More appropriate default sort order on sortable columns
470 * Add issue subject to the time entries view and issue subject, description and tracker to the csv export
471 * Add issue subject to the time entries view and issue subject, description and tracker to the csv export
471 * Permissions to edit issue notes
472 * Permissions to edit issue notes
472 * Display date/time instead of date on files list
473 * Display date/time instead of date on files list
473 * Do not show Roadmap menu item if the project doesn't define any versions
474 * Do not show Roadmap menu item if the project doesn't define any versions
474 * Allow longer version names (60 chars)
475 * Allow longer version names (60 chars)
475 * Ability to copy an existing workflow when creating a new role
476 * Ability to copy an existing workflow when creating a new role
476 * Display custom fields in two columns on the issue form
477 * Display custom fields in two columns on the issue form
477 * Added 'estimated time' in the csv export of the issue list
478 * Added 'estimated time' in the csv export of the issue list
478 * Display the last 30 days on the activity view rather than the current month (number of days can be configured in the application settings)
479 * Display the last 30 days on the activity view rather than the current month (number of days can be configured in the application settings)
479 * Setting for whether new projects should be public by default
480 * Setting for whether new projects should be public by default
480 * User preference to choose how comments/replies are displayed: in chronological or reverse chronological order
481 * User preference to choose how comments/replies are displayed: in chronological or reverse chronological order
481 * Added default value for custom fields
482 * Added default value for custom fields
482 * Added tabindex property on wiki toolbar buttons (to easily move from field to field using the tab key)
483 * Added tabindex property on wiki toolbar buttons (to easily move from field to field using the tab key)
483 * Redirect to issue page after creating a new issue
484 * Redirect to issue page after creating a new issue
484 * Wiki toolbar improvements (mainly for Firefox)
485 * Wiki toolbar improvements (mainly for Firefox)
485 * Display wiki syntax quick ref link on all wiki textareas
486 * Display wiki syntax quick ref link on all wiki textareas
486 * Display links to Atom feeds
487 * Display links to Atom feeds
487 * Breadcrumb nav for the forums
488 * Breadcrumb nav for the forums
488 * Show replies when choosing to display messages in the activity
489 * Show replies when choosing to display messages in the activity
489 * Added 'include' macro to include another wiki page
490 * Added 'include' macro to include another wiki page
490 * RedmineWikiFormatting page available as a static HTML file locally
491 * RedmineWikiFormatting page available as a static HTML file locally
491 * Wrap diff content
492 * Wrap diff content
492 * Strip out email address from authors in repository screens
493 * Strip out email address from authors in repository screens
493 * Highlight the current item of the main menu
494 * Highlight the current item of the main menu
494 * Added simple syntax highlighters for php and java languages
495 * Added simple syntax highlighters for php and java languages
495 * Do not show empty diffs
496 * Do not show empty diffs
496 * Show explicit error message when the scm command failed (eg. when svn binary is not available)
497 * Show explicit error message when the scm command failed (eg. when svn binary is not available)
497 * Lithuanian translation added (Sergej Jegorov)
498 * Lithuanian translation added (Sergej Jegorov)
498 * Ukrainan translation added (Natalia Konovka & Mykhaylo Sorochan)
499 * Ukrainan translation added (Natalia Konovka & Mykhaylo Sorochan)
499 * Danish translation added (Mads Vestergaard)
500 * Danish translation added (Mads Vestergaard)
500 * Added i18n support to the jstoolbar and various settings screen
501 * Added i18n support to the jstoolbar and various settings screen
501 * RedCloth's glyphs no longer user
502 * RedCloth's glyphs no longer user
502 * New icons for the wiki toolbar (from http://www.famfamfam.com/lab/icons/silk/)
503 * New icons for the wiki toolbar (from http://www.famfamfam.com/lab/icons/silk/)
503 * The following menus can now be extended by plugins: top_menu, account_menu, application_menu
504 * The following menus can now be extended by plugins: top_menu, account_menu, application_menu
504 * Added a simple rake task to fetch changesets from the repositories: rake redmine:fetch_changesets
505 * Added a simple rake task to fetch changesets from the repositories: rake redmine:fetch_changesets
505 * Remove hardcoded "Redmine" strings in account related emails and use application title instead
506 * Remove hardcoded "Redmine" strings in account related emails and use application title instead
506 * Mantis importer preserve bug ids
507 * Mantis importer preserve bug ids
507 * Trac importer: Trac guide wiki pages skipped
508 * Trac importer: Trac guide wiki pages skipped
508 * Trac importer: wiki attachments migration added
509 * Trac importer: wiki attachments migration added
509 * Trac importer: support database schema for Trac migration
510 * Trac importer: support database schema for Trac migration
510 * Trac importer: support CamelCase links
511 * Trac importer: support CamelCase links
511 * Removes the Redmine version from the footer (can be viewed on admin -> info)
512 * Removes the Redmine version from the footer (can be viewed on admin -> info)
512 * Rescue and display an error message when trying to delete a role that is in use
513 * Rescue and display an error message when trying to delete a role that is in use
513 * Add various 'X-Redmine' headers to email notifications: X-Redmine-Host, X-Redmine-Site, X-Redmine-Project, X-Redmine-Issue-Id, -Author, -Assignee, X-Redmine-Topic-Id
514 * Add various 'X-Redmine' headers to email notifications: X-Redmine-Host, X-Redmine-Site, X-Redmine-Project, X-Redmine-Issue-Id, -Author, -Assignee, X-Redmine-Topic-Id
514 * Add "--encoding utf8" option to the Mercurial "hg log" command in order to get utf8 encoded commit logs
515 * Add "--encoding utf8" option to the Mercurial "hg log" command in order to get utf8 encoded commit logs
515 * Fixed: Gantt and calendar not properly refreshed (fragment caching removed)
516 * Fixed: Gantt and calendar not properly refreshed (fragment caching removed)
516 * Fixed: Textile image with style attribute cause internal server error
517 * Fixed: Textile image with style attribute cause internal server error
517 * Fixed: wiki TOC not rendered properly when used in an issue or document description
518 * Fixed: wiki TOC not rendered properly when used in an issue or document description
518 * Fixed: 'has already been taken' error message on username and email fields if left empty
519 * Fixed: 'has already been taken' error message on username and email fields if left empty
519 * Fixed: non-ascii attachement filename with IE
520 * Fixed: non-ascii attachement filename with IE
520 * Fixed: wrong url for wiki syntax pop-up when Redmine urls are prefixed
521 * Fixed: wrong url for wiki syntax pop-up when Redmine urls are prefixed
521 * Fixed: search for all words doesn't work
522 * Fixed: search for all words doesn't work
522 * Fixed: Do not show sticky and locked checkboxes when replying to a message
523 * Fixed: Do not show sticky and locked checkboxes when replying to a message
523 * Fixed: Mantis importer: do not duplicate Mantis username in firstname and lastname if realname is blank
524 * Fixed: Mantis importer: do not duplicate Mantis username in firstname and lastname if realname is blank
524 * Fixed: Date custom fields not displayed as specified in application settings
525 * Fixed: Date custom fields not displayed as specified in application settings
525 * Fixed: titles not escaped in the activity view
526 * Fixed: titles not escaped in the activity view
526 * Fixed: issue queries can not use custom fields marked as 'for all projects' in a project context
527 * Fixed: issue queries can not use custom fields marked as 'for all projects' in a project context
527 * Fixed: on calendar, gantt and in the tracker filter on the issue list, only active trackers of the project (and its sub projects) should be available
528 * Fixed: on calendar, gantt and in the tracker filter on the issue list, only active trackers of the project (and its sub projects) should be available
528 * Fixed: locked users should not receive email notifications
529 * Fixed: locked users should not receive email notifications
529 * Fixed: custom field selection is not saved when unchecking them all on project settings
530 * Fixed: custom field selection is not saved when unchecking them all on project settings
530 * Fixed: can not lock a topic when creating it
531 * Fixed: can not lock a topic when creating it
531 * Fixed: Incorrect filtering for unset values when using 'is not' filter
532 * Fixed: Incorrect filtering for unset values when using 'is not' filter
532 * Fixed: PostgreSQL issues_seq_id not updated when using Trac importer
533 * Fixed: PostgreSQL issues_seq_id not updated when using Trac importer
533 * Fixed: ajax pagination does not scroll up
534 * Fixed: ajax pagination does not scroll up
534 * Fixed: error when uploading a file with no content-type specified by the browser
535 * Fixed: error when uploading a file with no content-type specified by the browser
535 * Fixed: wiki and changeset links not displayed when previewing issue description or notes
536 * Fixed: wiki and changeset links not displayed when previewing issue description or notes
536 * Fixed: 'LdapError: no bind result' error when authenticating
537 * Fixed: 'LdapError: no bind result' error when authenticating
537 * Fixed: 'LdapError: invalid binding information' when no username/password are set on the LDAP account
538 * Fixed: 'LdapError: invalid binding information' when no username/password are set on the LDAP account
538 * Fixed: CVS repository doesn't work if port is used in the url
539 * Fixed: CVS repository doesn't work if port is used in the url
539 * Fixed: Email notifications: host name is missing in generated links
540 * Fixed: Email notifications: host name is missing in generated links
540 * Fixed: Email notifications: referenced changesets, wiki pages, attachments... are not turned into links
541 * Fixed: Email notifications: referenced changesets, wiki pages, attachments... are not turned into links
541 * Fixed: Do not clear issue relations when moving an issue to another project if cross-project issue relations are allowed
542 * Fixed: Do not clear issue relations when moving an issue to another project if cross-project issue relations are allowed
542 * Fixed: "undefined method 'textilizable'" error on email notification when running Repository#fetch_changesets from the console
543 * Fixed: "undefined method 'textilizable'" error on email notification when running Repository#fetch_changesets from the console
543 * Fixed: Do not send an email with no recipient, cc or bcc
544 * Fixed: Do not send an email with no recipient, cc or bcc
544 * Fixed: fetch_changesets fails on commit comments that close 2 duplicates issues.
545 * Fixed: fetch_changesets fails on commit comments that close 2 duplicates issues.
545 * Fixed: Mercurial browsing under unix-like os and for directory depth > 2
546 * Fixed: Mercurial browsing under unix-like os and for directory depth > 2
546 * Fixed: Wiki links with pipe can not be used in wiki tables
547 * Fixed: Wiki links with pipe can not be used in wiki tables
547 * Fixed: migrate_from_trac doesn't import timestamps of wiki and tickets
548 * Fixed: migrate_from_trac doesn't import timestamps of wiki and tickets
548 * Fixed: when bulk editing, setting "Assigned to" to "nobody" causes an sql error with Postgresql
549 * Fixed: when bulk editing, setting "Assigned to" to "nobody" causes an sql error with Postgresql
549
550
550
551
551 == 2008-03-12 v0.6.4
552 == 2008-03-12 v0.6.4
552
553
553 * Fixed: private projects name are displayed on account/show even if the current user doesn't have access to these private projects
554 * Fixed: private projects name are displayed on account/show even if the current user doesn't have access to these private projects
554 * Fixed: potential LDAP authentication security flaw
555 * Fixed: potential LDAP authentication security flaw
555 * Fixed: context submenus on the issue list don't show up with IE6.
556 * Fixed: context submenus on the issue list don't show up with IE6.
556 * Fixed: Themes are not applied with Rails 2.0
557 * Fixed: Themes are not applied with Rails 2.0
557 * Fixed: crash when fetching Mercurial changesets if changeset[:files] is nil
558 * Fixed: crash when fetching Mercurial changesets if changeset[:files] is nil
558 * Fixed: Mercurial repository browsing
559 * Fixed: Mercurial repository browsing
559 * Fixed: undefined local variable or method 'log' in CvsAdapter when a cvs command fails
560 * Fixed: undefined local variable or method 'log' in CvsAdapter when a cvs command fails
560 * Fixed: not null constraints not removed with Postgresql
561 * Fixed: not null constraints not removed with Postgresql
561 * Doctype set to transitional
562 * Doctype set to transitional
562
563
563
564
564 == 2007-12-18 v0.6.3
565 == 2007-12-18 v0.6.3
565
566
566 * Fixed: upload doesn't work in 'Files' section
567 * Fixed: upload doesn't work in 'Files' section
567
568
568
569
569 == 2007-12-16 v0.6.2
570 == 2007-12-16 v0.6.2
570
571
571 * Search engine: issue custom fields can now be searched
572 * Search engine: issue custom fields can now be searched
572 * News comments are now textilized
573 * News comments are now textilized
573 * Updated Japanese translation (Satoru Kurashiki)
574 * Updated Japanese translation (Satoru Kurashiki)
574 * Updated Chinese translation (Shortie Lo)
575 * Updated Chinese translation (Shortie Lo)
575 * Fixed Rails 2.0 compatibility bugs:
576 * Fixed Rails 2.0 compatibility bugs:
576 * Unable to create a wiki
577 * Unable to create a wiki
577 * Gantt and calendar error
578 * Gantt and calendar error
578 * Trac importer error (readonly? is defined by ActiveRecord)
579 * Trac importer error (readonly? is defined by ActiveRecord)
579 * Fixed: 'assigned to me' filter broken
580 * Fixed: 'assigned to me' filter broken
580 * Fixed: crash when validation fails on issue edition with no custom fields
581 * Fixed: crash when validation fails on issue edition with no custom fields
581 * Fixed: reposman "can't find group" error
582 * Fixed: reposman "can't find group" error
582 * Fixed: 'LDAP account password is too long' error when leaving the field empty on creation
583 * Fixed: 'LDAP account password is too long' error when leaving the field empty on creation
583 * Fixed: empty lines when displaying repository files with Windows style eol
584 * Fixed: empty lines when displaying repository files with Windows style eol
584 * Fixed: missing body closing tag in repository annotate and entry views
585 * Fixed: missing body closing tag in repository annotate and entry views
585
586
586
587
587 == 2007-12-10 v0.6.1
588 == 2007-12-10 v0.6.1
588
589
589 * Rails 2.0 compatibility
590 * Rails 2.0 compatibility
590 * Custom fields can now be displayed as columns on the issue list
591 * Custom fields can now be displayed as columns on the issue list
591 * Added version details view (accessible from the roadmap)
592 * Added version details view (accessible from the roadmap)
592 * Roadmap: more accurate completion percentage calculation (done ratio of open issues is now taken into account)
593 * Roadmap: more accurate completion percentage calculation (done ratio of open issues is now taken into account)
593 * Added per-project tracker selection. Trackers can be selected on project settings
594 * Added per-project tracker selection. Trackers can be selected on project settings
594 * Anonymous users can now be allowed to create, edit, comment issues, comment news and post messages in the forums
595 * Anonymous users can now be allowed to create, edit, comment issues, comment news and post messages in the forums
595 * Forums: messages can now be edited/deleted (explicit permissions need to be given)
596 * Forums: messages can now be edited/deleted (explicit permissions need to be given)
596 * Forums: topics can be locked so that no reply can be added
597 * Forums: topics can be locked so that no reply can be added
597 * Forums: topics can be marked as sticky so that they always appear at the top of the list
598 * Forums: topics can be marked as sticky so that they always appear at the top of the list
598 * Forums: attachments can now be added to replies
599 * Forums: attachments can now be added to replies
599 * Added time zone support
600 * Added time zone support
600 * Added a setting to choose the account activation strategy (available in application settings)
601 * Added a setting to choose the account activation strategy (available in application settings)
601 * Added 'Classic' theme (inspired from the v0.51 design)
602 * Added 'Classic' theme (inspired from the v0.51 design)
602 * Added an alternate theme which provides issue list colorization based on issues priority
603 * Added an alternate theme which provides issue list colorization based on issues priority
603 * Added Bazaar SCM adapter
604 * Added Bazaar SCM adapter
604 * Added Annotate/Blame view in the repository browser (except for Darcs SCM)
605 * Added Annotate/Blame view in the repository browser (except for Darcs SCM)
605 * Diff style (inline or side by side) automatically saved as a user preference
606 * Diff style (inline or side by side) automatically saved as a user preference
606 * Added issues status changes on the activity view (by Cyril Mougel)
607 * Added issues status changes on the activity view (by Cyril Mougel)
607 * Added forums topics on the activity view (disabled by default)
608 * Added forums topics on the activity view (disabled by default)
608 * Added an option on 'My account' for users who don't want to be notified of changes that they make
609 * Added an option on 'My account' for users who don't want to be notified of changes that they make
609 * Trac importer now supports mysql and postgresql databases
610 * Trac importer now supports mysql and postgresql databases
610 * Trac importer improvements (by Mat Trudel)
611 * Trac importer improvements (by Mat Trudel)
611 * 'fixed version' field can now be displayed on the issue list
612 * 'fixed version' field can now be displayed on the issue list
612 * Added a couple of new formats for the 'date format' setting
613 * Added a couple of new formats for the 'date format' setting
613 * Added Traditional Chinese translation (by Shortie Lo)
614 * Added Traditional Chinese translation (by Shortie Lo)
614 * Added Russian translation (iGor kMeta)
615 * Added Russian translation (iGor kMeta)
615 * Project name format limitation removed (name can now contain any character)
616 * Project name format limitation removed (name can now contain any character)
616 * Project identifier maximum length changed from 12 to 20
617 * Project identifier maximum length changed from 12 to 20
617 * Changed the maximum length of LDAP account to 255 characters
618 * Changed the maximum length of LDAP account to 255 characters
618 * Removed the 12 characters limit on passwords
619 * Removed the 12 characters limit on passwords
619 * Added wiki macros support
620 * Added wiki macros support
620 * Performance improvement on workflow setup screen
621 * Performance improvement on workflow setup screen
621 * More detailed html title on several views
622 * More detailed html title on several views
622 * Custom fields can now be reordered
623 * Custom fields can now be reordered
623 * Search engine: search can be restricted to an exact phrase by using quotation marks
624 * Search engine: search can be restricted to an exact phrase by using quotation marks
624 * Added custom fields marked as 'For all projects' to the csv export of the cross project issue list
625 * Added custom fields marked as 'For all projects' to the csv export of the cross project issue list
625 * Email notifications are now sent as Blind carbon copy by default
626 * Email notifications are now sent as Blind carbon copy by default
626 * Fixed: all members (including non active) should be deleted when deleting a project
627 * Fixed: all members (including non active) should be deleted when deleting a project
627 * Fixed: Error on wiki syntax link (accessible from wiki/edit)
628 * Fixed: Error on wiki syntax link (accessible from wiki/edit)
628 * Fixed: 'quick jump to a revision' form on the revisions list
629 * Fixed: 'quick jump to a revision' form on the revisions list
629 * Fixed: error on admin/info if there's more than 1 plugin installed
630 * Fixed: error on admin/info if there's more than 1 plugin installed
630 * Fixed: svn or ldap password can be found in clear text in the html source in editing mode
631 * Fixed: svn or ldap password can be found in clear text in the html source in editing mode
631 * Fixed: 'Assigned to' drop down list is not sorted
632 * Fixed: 'Assigned to' drop down list is not sorted
632 * Fixed: 'View all issues' link doesn't work on issues/show
633 * Fixed: 'View all issues' link doesn't work on issues/show
633 * Fixed: error on account/register when validation fails
634 * Fixed: error on account/register when validation fails
634 * Fixed: Error when displaying the issue list if a float custom field is marked as 'used as filter'
635 * Fixed: Error when displaying the issue list if a float custom field is marked as 'used as filter'
635 * Fixed: Mercurial adapter breaks on missing :files entry in changeset hash (James Britt)
636 * Fixed: Mercurial adapter breaks on missing :files entry in changeset hash (James Britt)
636 * Fixed: Wrong feed URLs on the home page
637 * Fixed: Wrong feed URLs on the home page
637 * Fixed: Update of time entry fails when the issue has been moved to an other project
638 * Fixed: Update of time entry fails when the issue has been moved to an other project
638 * Fixed: Error when moving an issue without changing its tracker (Postgresql)
639 * Fixed: Error when moving an issue without changing its tracker (Postgresql)
639 * Fixed: Changes not recorded when using :pserver string (CVS adapter)
640 * Fixed: Changes not recorded when using :pserver string (CVS adapter)
640 * Fixed: admin should be able to move issues to any project
641 * Fixed: admin should be able to move issues to any project
641 * Fixed: adding an attachment is not possible when changing the status of an issue
642 * Fixed: adding an attachment is not possible when changing the status of an issue
642 * Fixed: No mime-types in documents/files downloading
643 * Fixed: No mime-types in documents/files downloading
643 * Fixed: error when sorting the messages if there's only one board for the project
644 * Fixed: error when sorting the messages if there's only one board for the project
644 * Fixed: 'me' doesn't appear in the drop down filters on a project issue list.
645 * Fixed: 'me' doesn't appear in the drop down filters on a project issue list.
645
646
646 == 2007-11-04 v0.6.0
647 == 2007-11-04 v0.6.0
647
648
648 * Permission model refactoring.
649 * Permission model refactoring.
649 * Permissions: there are now 2 builtin roles that can be used to specify permissions given to other users than members of projects
650 * Permissions: there are now 2 builtin roles that can be used to specify permissions given to other users than members of projects
650 * Permissions: some permissions (eg. browse the repository) can be removed for certain roles
651 * Permissions: some permissions (eg. browse the repository) can be removed for certain roles
651 * Permissions: modules (eg. issue tracking, news, documents...) can be enabled/disabled at project level
652 * Permissions: modules (eg. issue tracking, news, documents...) can be enabled/disabled at project level
652 * Added Mantis and Trac importers
653 * Added Mantis and Trac importers
653 * New application layout
654 * New application layout
654 * Added "Bulk edit" functionality on the issue list
655 * Added "Bulk edit" functionality on the issue list
655 * More flexible mail notifications settings at user level
656 * More flexible mail notifications settings at user level
656 * Added AJAX based context menu on the project issue list that provide shortcuts for editing, re-assigning, changing the status or the priority, moving or deleting an issue
657 * Added AJAX based context menu on the project issue list that provide shortcuts for editing, re-assigning, changing the status or the priority, moving or deleting an issue
657 * Added the hability to copy an issue. It can be done from the "issue/show" view or from the context menu on the issue list
658 * Added the hability to copy an issue. It can be done from the "issue/show" view or from the context menu on the issue list
658 * Added the ability to customize issue list columns (at application level or for each saved query)
659 * Added the ability to customize issue list columns (at application level or for each saved query)
659 * Overdue versions (date reached and open issues > 0) are now always displayed on the roadmap
660 * Overdue versions (date reached and open issues > 0) are now always displayed on the roadmap
660 * Added the ability to rename wiki pages (specific permission required)
661 * Added the ability to rename wiki pages (specific permission required)
661 * Search engines now supports pagination. Results are sorted in reverse chronological order
662 * Search engines now supports pagination. Results are sorted in reverse chronological order
662 * Added "Estimated hours" attribute on issues
663 * Added "Estimated hours" attribute on issues
663 * A category with assigned issue can now be deleted. 2 options are proposed: remove assignments or reassign issues to another category
664 * A category with assigned issue can now be deleted. 2 options are proposed: remove assignments or reassign issues to another category
664 * Forum notifications are now also sent to the authors of the thread, even if they donοΏ½t watch the board
665 * Forum notifications are now also sent to the authors of the thread, even if they donοΏ½t watch the board
665 * Added an application setting to specify the application protocol (http or https) used to generate urls in emails
666 * Added an application setting to specify the application protocol (http or https) used to generate urls in emails
666 * Gantt chart: now starts at the current month by default
667 * Gantt chart: now starts at the current month by default
667 * Gantt chart: month count and zoom factor are automatically saved as user preferences
668 * Gantt chart: month count and zoom factor are automatically saved as user preferences
668 * Wiki links can now refer to other project wikis
669 * Wiki links can now refer to other project wikis
669 * Added wiki index by date
670 * Added wiki index by date
670 * Added preview on add/edit issue form
671 * Added preview on add/edit issue form
671 * Emails footer can now be customized from the admin interface (Admin -> Email notifications)
672 * Emails footer can now be customized from the admin interface (Admin -> Email notifications)
672 * Default encodings for repository files can now be set in application settings (used to convert files content and diff to UTF-8 so that theyοΏ½re properly displayed)
673 * Default encodings for repository files can now be set in application settings (used to convert files content and diff to UTF-8 so that theyοΏ½re properly displayed)
673 * Calendar: first day of week can now be set in lang files
674 * Calendar: first day of week can now be set in lang files
674 * Automatic closing of duplicate issues
675 * Automatic closing of duplicate issues
675 * Added a cross-project issue list
676 * Added a cross-project issue list
676 * AJAXified the SCM browser (tree view)
677 * AJAXified the SCM browser (tree view)
677 * Pretty URL for the repository browser (Cyril Mougel)
678 * Pretty URL for the repository browser (Cyril Mougel)
678 * Search engine: added a checkbox to search titles only
679 * Search engine: added a checkbox to search titles only
679 * Added "% done" in the filter list
680 * Added "% done" in the filter list
680 * Enumerations: values can now be reordered and a default value can be specified (eg. default issue priority)
681 * Enumerations: values can now be reordered and a default value can be specified (eg. default issue priority)
681 * Added some accesskeys
682 * Added some accesskeys
682 * Added "Float" as a custom field format
683 * Added "Float" as a custom field format
683 * Added basic Theme support
684 * Added basic Theme support
684 * Added the ability to set the οΏ½done ratioοΏ½ of issues fixed by commit (Nikolay Solakov)
685 * Added the ability to set the οΏ½done ratioοΏ½ of issues fixed by commit (Nikolay Solakov)
685 * Added custom fields in issue related mail notifications
686 * Added custom fields in issue related mail notifications
686 * Email notifications are now sent in plain text and html
687 * Email notifications are now sent in plain text and html
687 * Gantt chart can now be exported to a graphic file (png). This functionality is only available if RMagick is installed.
688 * Gantt chart can now be exported to a graphic file (png). This functionality is only available if RMagick is installed.
688 * Added syntax highlightment for repository files and wiki
689 * Added syntax highlightment for repository files and wiki
689 * Improved automatic Redmine links
690 * Improved automatic Redmine links
690 * Added automatic table of content support on wiki pages
691 * Added automatic table of content support on wiki pages
691 * Added radio buttons on the documents list to sort documents by category, date, title or author
692 * Added radio buttons on the documents list to sort documents by category, date, title or author
692 * Added basic plugin support, with a sample plugin
693 * Added basic plugin support, with a sample plugin
693 * Added a link to add a new category when creating or editing an issue
694 * Added a link to add a new category when creating or editing an issue
694 * Added a "Assignable" boolean on the Role model. If unchecked, issues can not be assigned to users having this role.
695 * Added a "Assignable" boolean on the Role model. If unchecked, issues can not be assigned to users having this role.
695 * Added an option to be able to relate issues in different projects
696 * Added an option to be able to relate issues in different projects
696 * Added the ability to move issues (to another project) without changing their trackers.
697 * Added the ability to move issues (to another project) without changing their trackers.
697 * Atom feeds added on project activity, news and changesets
698 * Atom feeds added on project activity, news and changesets
698 * Added the ability to reset its own RSS access key
699 * Added the ability to reset its own RSS access key
699 * Main project list now displays root projects with their subprojects
700 * Main project list now displays root projects with their subprojects
700 * Added anchor links to issue notes
701 * Added anchor links to issue notes
701 * Added reposman Ruby version. This script can now register created repositories in Redmine (Nicolas Chuche)
702 * Added reposman Ruby version. This script can now register created repositories in Redmine (Nicolas Chuche)
702 * Issue notes are now included in search
703 * Issue notes are now included in search
703 * Added email sending test functionality
704 * Added email sending test functionality
704 * Added LDAPS support for LDAP authentication
705 * Added LDAPS support for LDAP authentication
705 * Removed hard-coded URLs in mail templates
706 * Removed hard-coded URLs in mail templates
706 * Subprojects are now grouped by projects in the navigation drop-down menu
707 * Subprojects are now grouped by projects in the navigation drop-down menu
707 * Added a new value for date filters: this week
708 * Added a new value for date filters: this week
708 * Added cache for application settings
709 * Added cache for application settings
709 * Added Polish translation (Tomasz Gawryl)
710 * Added Polish translation (Tomasz Gawryl)
710 * Added Czech translation (Jan Kadlecek)
711 * Added Czech translation (Jan Kadlecek)
711 * Added Romanian translation (Csongor Bartus)
712 * Added Romanian translation (Csongor Bartus)
712 * Added Hebrew translation (Bob Builder)
713 * Added Hebrew translation (Bob Builder)
713 * Added Serbian translation (Dragan Matic)
714 * Added Serbian translation (Dragan Matic)
714 * Added Korean translation (Choi Jong Yoon)
715 * Added Korean translation (Choi Jong Yoon)
715 * Fixed: the link to delete issue relations is displayed even if the user is not authorized to delete relations
716 * Fixed: the link to delete issue relations is displayed even if the user is not authorized to delete relations
716 * Performance improvement on calendar and gantt
717 * Performance improvement on calendar and gantt
717 * Fixed: wiki preview doesnοΏ½t work on long entries
718 * Fixed: wiki preview doesnοΏ½t work on long entries
718 * Fixed: queries with multiple custom fields return no result
719 * Fixed: queries with multiple custom fields return no result
719 * Fixed: Can not authenticate user against LDAP if its DN contains non-ascii characters
720 * Fixed: Can not authenticate user against LDAP if its DN contains non-ascii characters
720 * Fixed: URL with ~ broken in wiki formatting
721 * Fixed: URL with ~ broken in wiki formatting
721 * Fixed: some quotation marks are rendered as strange characters in pdf
722 * Fixed: some quotation marks are rendered as strange characters in pdf
722
723
723
724
724 == 2007-07-15 v0.5.1
725 == 2007-07-15 v0.5.1
725
726
726 * per project forums added
727 * per project forums added
727 * added the ability to archive projects
728 * added the ability to archive projects
728 * added οΏ½WatchοΏ½ functionality on issues. It allows users to receive notifications about issue changes
729 * added οΏ½WatchοΏ½ functionality on issues. It allows users to receive notifications about issue changes
729 * custom fields for issues can now be used as filters on issue list
730 * custom fields for issues can now be used as filters on issue list
730 * added per user custom queries
731 * added per user custom queries
731 * commit messages are now scanned for referenced or fixed issue IDs (keywords defined in Admin -> Settings)
732 * commit messages are now scanned for referenced or fixed issue IDs (keywords defined in Admin -> Settings)
732 * projects list now shows the list of public projects and private projects for which the user is a member
733 * projects list now shows the list of public projects and private projects for which the user is a member
733 * versions can now be created with no date
734 * versions can now be created with no date
734 * added issue count details for versions on Reports view
735 * added issue count details for versions on Reports view
735 * added time report, by member/activity/tracker/version and year/month/week for the selected period
736 * added time report, by member/activity/tracker/version and year/month/week for the selected period
736 * each category can now be associated to a user, so that new issues in that category are automatically assigned to that user
737 * each category can now be associated to a user, so that new issues in that category are automatically assigned to that user
737 * added autologin feature (disabled by default)
738 * added autologin feature (disabled by default)
738 * optimistic locking added for wiki edits
739 * optimistic locking added for wiki edits
739 * added wiki diff
740 * added wiki diff
740 * added the ability to destroy wiki pages (requires permission)
741 * added the ability to destroy wiki pages (requires permission)
741 * a wiki page can now be attached to each version, and displayed on the roadmap
742 * a wiki page can now be attached to each version, and displayed on the roadmap
742 * attachments can now be added to wiki pages (original patch by Pavol Murin) and displayed online
743 * attachments can now be added to wiki pages (original patch by Pavol Murin) and displayed online
743 * added an option to see all versions in the roadmap view (including completed ones)
744 * added an option to see all versions in the roadmap view (including completed ones)
744 * added basic issue relations
745 * added basic issue relations
745 * added the ability to log time when changing an issue status
746 * added the ability to log time when changing an issue status
746 * account information can now be sent to the user when creating an account
747 * account information can now be sent to the user when creating an account
747 * author and assignee of an issue always receive notifications (even if they turned of mail notifications)
748 * author and assignee of an issue always receive notifications (even if they turned of mail notifications)
748 * added a quick search form in page header
749 * added a quick search form in page header
749 * added 'me' value for 'assigned to' and 'author' query filters
750 * added 'me' value for 'assigned to' and 'author' query filters
750 * added a link on revision screen to see the entire diff for the revision
751 * added a link on revision screen to see the entire diff for the revision
751 * added last commit message for each entry in repository browser
752 * added last commit message for each entry in repository browser
752 * added the ability to view a file diff with free to/from revision selection.
753 * added the ability to view a file diff with free to/from revision selection.
753 * text files can now be viewed online when browsing the repository
754 * text files can now be viewed online when browsing the repository
754 * added basic support for other SCM: CVS (Ralph Vater), Mercurial and Darcs
755 * added basic support for other SCM: CVS (Ralph Vater), Mercurial and Darcs
755 * added fragment caching for svn diffs
756 * added fragment caching for svn diffs
756 * added fragment caching for calendar and gantt views
757 * added fragment caching for calendar and gantt views
757 * login field automatically focused on login form
758 * login field automatically focused on login form
758 * subproject name displayed on issue list, calendar and gantt
759 * subproject name displayed on issue list, calendar and gantt
759 * added an option to choose the date format: language based or ISO 8601
760 * added an option to choose the date format: language based or ISO 8601
760 * added a simple mail handler. It lets users add notes to an existing issue by replying to the initial notification email.
761 * added a simple mail handler. It lets users add notes to an existing issue by replying to the initial notification email.
761 * a 403 error page is now displayed (instead of a blank page) when trying to access a protected page
762 * a 403 error page is now displayed (instead of a blank page) when trying to access a protected page
762 * added portuguese translation (Joao Carlos Clementoni)
763 * added portuguese translation (Joao Carlos Clementoni)
763 * added partial online help japanese translation (Ken Date)
764 * added partial online help japanese translation (Ken Date)
764 * added bulgarian translation (Nikolay Solakov)
765 * added bulgarian translation (Nikolay Solakov)
765 * added dutch translation (Linda van den Brink)
766 * added dutch translation (Linda van den Brink)
766 * added swedish translation (Thomas Habets)
767 * added swedish translation (Thomas Habets)
767 * italian translation update (Alessio Spadaro)
768 * italian translation update (Alessio Spadaro)
768 * japanese translation update (Satoru Kurashiki)
769 * japanese translation update (Satoru Kurashiki)
769 * fixed: error on history atom feed when thereοΏ½s no notes on an issue change
770 * fixed: error on history atom feed when thereοΏ½s no notes on an issue change
770 * fixed: error in journalizing an issue with longtext custom fields (Postgresql)
771 * fixed: error in journalizing an issue with longtext custom fields (Postgresql)
771 * fixed: creation of Oracle schema
772 * fixed: creation of Oracle schema
772 * fixed: last day of the month not included in project activity
773 * fixed: last day of the month not included in project activity
773 * fixed: files with an apostrophe in their names can't be accessed in SVN repository
774 * fixed: files with an apostrophe in their names can't be accessed in SVN repository
774 * fixed: performance issue on RepositoriesController#revisions when a changeset has a great number of changes (eg. 100,000)
775 * fixed: performance issue on RepositoriesController#revisions when a changeset has a great number of changes (eg. 100,000)
775 * fixed: open/closed issue counts are always 0 on reports view (postgresql)
776 * fixed: open/closed issue counts are always 0 on reports view (postgresql)
776 * fixed: date query filters (wrong results and sql error with postgresql)
777 * fixed: date query filters (wrong results and sql error with postgresql)
777 * fixed: confidentiality issue on account/show (private project names displayed to anyone)
778 * fixed: confidentiality issue on account/show (private project names displayed to anyone)
778 * fixed: Long text custom fields displayed without line breaks
779 * fixed: Long text custom fields displayed without line breaks
779 * fixed: Error when editing the wokflow after deleting a status
780 * fixed: Error when editing the wokflow after deleting a status
780 * fixed: SVN commit dates are now stored as local time
781 * fixed: SVN commit dates are now stored as local time
781
782
782
783
783 == 2007-04-11 v0.5.0
784 == 2007-04-11 v0.5.0
784
785
785 * added per project Wiki
786 * added per project Wiki
786 * added rss/atom feeds at project level (custom queries can be used as feeds)
787 * added rss/atom feeds at project level (custom queries can be used as feeds)
787 * added search engine (search in issues, news, commits, wiki pages, documents)
788 * added search engine (search in issues, news, commits, wiki pages, documents)
788 * simple time tracking functionality added
789 * simple time tracking functionality added
789 * added version due dates on calendar and gantt
790 * added version due dates on calendar and gantt
790 * added subprojects issue count on project Reports page
791 * added subprojects issue count on project Reports page
791 * added the ability to copy an existing workflow when creating a new tracker
792 * added the ability to copy an existing workflow when creating a new tracker
792 * added the ability to include subprojects on calendar and gantt
793 * added the ability to include subprojects on calendar and gantt
793 * added the ability to select trackers to display on calendar and gantt (Jeffrey Jones)
794 * added the ability to select trackers to display on calendar and gantt (Jeffrey Jones)
794 * added side by side svn diff view (Cyril Mougel)
795 * added side by side svn diff view (Cyril Mougel)
795 * added back subproject filter on issue list
796 * added back subproject filter on issue list
796 * added permissions report in admin area
797 * added permissions report in admin area
797 * added a status filter on users list
798 * added a status filter on users list
798 * support for password-protected SVN repositories
799 * support for password-protected SVN repositories
799 * SVN commits are now stored in the database
800 * SVN commits are now stored in the database
800 * added simple svn statistics SVG graphs
801 * added simple svn statistics SVG graphs
801 * progress bars for roadmap versions (Nick Read)
802 * progress bars for roadmap versions (Nick Read)
802 * issue history now shows file uploads and deletions
803 * issue history now shows file uploads and deletions
803 * #id patterns are turned into links to issues in descriptions and commit messages
804 * #id patterns are turned into links to issues in descriptions and commit messages
804 * japanese translation added (Satoru Kurashiki)
805 * japanese translation added (Satoru Kurashiki)
805 * chinese simplified translation added (Andy Wu)
806 * chinese simplified translation added (Andy Wu)
806 * italian translation added (Alessio Spadaro)
807 * italian translation added (Alessio Spadaro)
807 * added scripts to manage SVN repositories creation and user access control using ssh+svn (Nicolas Chuche)
808 * added scripts to manage SVN repositories creation and user access control using ssh+svn (Nicolas Chuche)
808 * better calendar rendering time
809 * better calendar rendering time
809 * fixed migration scripts to work with mysql 5 running in strict mode
810 * fixed migration scripts to work with mysql 5 running in strict mode
810 * fixed: error when clicking "add" with no block selected on my/page_layout
811 * fixed: error when clicking "add" with no block selected on my/page_layout
811 * fixed: hard coded links in navigation bar
812 * fixed: hard coded links in navigation bar
812 * fixed: table_name pre/suffix support
813 * fixed: table_name pre/suffix support
813
814
814
815
815 == 2007-02-18 v0.4.2
816 == 2007-02-18 v0.4.2
816
817
817 * Rails 1.2 is now required
818 * Rails 1.2 is now required
818 * settings are now stored in the database and editable through the application in: Admin -> Settings (config_custom.rb is no longer used)
819 * settings are now stored in the database and editable through the application in: Admin -> Settings (config_custom.rb is no longer used)
819 * added project roadmap view
820 * added project roadmap view
820 * mail notifications added when a document, a file or an attachment is added
821 * mail notifications added when a document, a file or an attachment is added
821 * tooltips added on Gantt chart and calender to view the details of the issues
822 * tooltips added on Gantt chart and calender to view the details of the issues
822 * ability to set the sort order for roles, trackers, issue statuses
823 * ability to set the sort order for roles, trackers, issue statuses
823 * added missing fields to csv export: priority, start date, due date, done ratio
824 * added missing fields to csv export: priority, start date, due date, done ratio
824 * added total number of issues per tracker on project overview
825 * added total number of issues per tracker on project overview
825 * all icons replaced (new icons are based on GPL icon set: "KDE Crystal Diamond 2.5" -by paolino- and "kNeu! Alpha v0.1" -by Pablo Fabregat-)
826 * all icons replaced (new icons are based on GPL icon set: "KDE Crystal Diamond 2.5" -by paolino- and "kNeu! Alpha v0.1" -by Pablo Fabregat-)
826 * added back "fixed version" field on issue screen and in filters
827 * added back "fixed version" field on issue screen and in filters
827 * project settings screen split in 4 tabs
828 * project settings screen split in 4 tabs
828 * custom fields screen split in 3 tabs (one for each kind of custom field)
829 * custom fields screen split in 3 tabs (one for each kind of custom field)
829 * multiple issues pdf export now rendered as a table
830 * multiple issues pdf export now rendered as a table
830 * added a button on users/list to manually activate an account
831 * added a button on users/list to manually activate an account
831 * added a setting option to disable "password lost" functionality
832 * added a setting option to disable "password lost" functionality
832 * added a setting option to set max number of issues in csv/pdf exports
833 * added a setting option to set max number of issues in csv/pdf exports
833 * fixed: subprojects count is always 0 on projects list
834 * fixed: subprojects count is always 0 on projects list
834 * fixed: locked users are proposed when adding a member to a project
835 * fixed: locked users are proposed when adding a member to a project
835 * fixed: setting an issue status as default status leads to an sql error with SQLite
836 * fixed: setting an issue status as default status leads to an sql error with SQLite
836 * fixed: unable to delete an issue status even if it's not used yet
837 * fixed: unable to delete an issue status even if it's not used yet
837 * fixed: filters ignored when exporting a predefined query to csv/pdf
838 * fixed: filters ignored when exporting a predefined query to csv/pdf
838 * fixed: crash when french "issue_edit" email notification is sent
839 * fixed: crash when french "issue_edit" email notification is sent
839 * fixed: hide mail preference not saved (my/account)
840 * fixed: hide mail preference not saved (my/account)
840 * fixed: crash when a new user try to edit its "my page" layout
841 * fixed: crash when a new user try to edit its "my page" layout
841
842
842
843
843 == 2007-01-03 v0.4.1
844 == 2007-01-03 v0.4.1
844
845
845 * fixed: emails have no recipient when one of the project members has notifications disabled
846 * fixed: emails have no recipient when one of the project members has notifications disabled
846
847
847
848
848 == 2007-01-02 v0.4.0
849 == 2007-01-02 v0.4.0
849
850
850 * simple SVN browser added (just needs svn binaries in PATH)
851 * simple SVN browser added (just needs svn binaries in PATH)
851 * comments can now be added on news
852 * comments can now be added on news
852 * "my page" is now customizable
853 * "my page" is now customizable
853 * more powerfull and savable filters for issues lists
854 * more powerfull and savable filters for issues lists
854 * improved issues change history
855 * improved issues change history
855 * new functionality: move an issue to another project or tracker
856 * new functionality: move an issue to another project or tracker
856 * new functionality: add a note to an issue
857 * new functionality: add a note to an issue
857 * new report: project activity
858 * new report: project activity
858 * "start date" and "% done" fields added on issues
859 * "start date" and "% done" fields added on issues
859 * project calendar added
860 * project calendar added
860 * gantt chart added (exportable to pdf)
861 * gantt chart added (exportable to pdf)
861 * single/multiple issues pdf export added
862 * single/multiple issues pdf export added
862 * issues reports improvements
863 * issues reports improvements
863 * multiple file upload for issues, documents and files
864 * multiple file upload for issues, documents and files
864 * option to set maximum size of uploaded files
865 * option to set maximum size of uploaded files
865 * textile formating of issue and news descritions (RedCloth required)
866 * textile formating of issue and news descritions (RedCloth required)
866 * integration of DotClear jstoolbar for textile formatting
867 * integration of DotClear jstoolbar for textile formatting
867 * calendar date picker for date fields (LGPL DHTML Calendar http://sourceforge.net/projects/jscalendar)
868 * calendar date picker for date fields (LGPL DHTML Calendar http://sourceforge.net/projects/jscalendar)
868 * new filter in issues list: Author
869 * new filter in issues list: Author
869 * ajaxified paginators
870 * ajaxified paginators
870 * news rss feed added
871 * news rss feed added
871 * option to set number of results per page on issues list
872 * option to set number of results per page on issues list
872 * localized csv separator (comma/semicolon)
873 * localized csv separator (comma/semicolon)
873 * csv output encoded to ISO-8859-1
874 * csv output encoded to ISO-8859-1
874 * user custom field displayed on account/show
875 * user custom field displayed on account/show
875 * default configuration improved (default roles, trackers, status, permissions and workflows)
876 * default configuration improved (default roles, trackers, status, permissions and workflows)
876 * language for default configuration data can now be chosen when running 'load_default_data' task
877 * language for default configuration data can now be chosen when running 'load_default_data' task
877 * javascript added on custom field form to show/hide fields according to the format of custom field
878 * javascript added on custom field form to show/hide fields according to the format of custom field
878 * fixed: custom fields not in csv exports
879 * fixed: custom fields not in csv exports
879 * fixed: project settings now displayed according to user's permissions
880 * fixed: project settings now displayed according to user's permissions
880 * fixed: application error when no version is selected on projects/add_file
881 * fixed: application error when no version is selected on projects/add_file
881 * fixed: public actions not authorized for members of non public projects
882 * fixed: public actions not authorized for members of non public projects
882 * fixed: non public projects were shown on welcome screen even if current user is not a member
883 * fixed: non public projects were shown on welcome screen even if current user is not a member
883
884
884
885
885 == 2006-10-08 v0.3.0
886 == 2006-10-08 v0.3.0
886
887
887 * user authentication against multiple LDAP (optional)
888 * user authentication against multiple LDAP (optional)
888 * token based "lost password" functionality
889 * token based "lost password" functionality
889 * user self-registration functionality (optional)
890 * user self-registration functionality (optional)
890 * custom fields now available for issues, users and projects
891 * custom fields now available for issues, users and projects
891 * new custom field format "text" (displayed as a textarea field)
892 * new custom field format "text" (displayed as a textarea field)
892 * project & administration drop down menus in navigation bar for quicker access
893 * project & administration drop down menus in navigation bar for quicker access
893 * text formatting is preserved for long text fields (issues, projects and news descriptions)
894 * text formatting is preserved for long text fields (issues, projects and news descriptions)
894 * urls and emails are turned into clickable links in long text fields
895 * urls and emails are turned into clickable links in long text fields
895 * "due date" field added on issues
896 * "due date" field added on issues
896 * tracker selection filter added on change log
897 * tracker selection filter added on change log
897 * Localization plugin replaced with GLoc 1.1.0 (iconv required)
898 * Localization plugin replaced with GLoc 1.1.0 (iconv required)
898 * error messages internationalization
899 * error messages internationalization
899 * german translation added (thanks to Karim Trott)
900 * german translation added (thanks to Karim Trott)
900 * data locking for issues to prevent update conflicts (using ActiveRecord builtin optimistic locking)
901 * data locking for issues to prevent update conflicts (using ActiveRecord builtin optimistic locking)
901 * new filter in issues list: "Fixed version"
902 * new filter in issues list: "Fixed version"
902 * active filters are displayed with colored background on issues list
903 * active filters are displayed with colored background on issues list
903 * custom configuration is now defined in config/config_custom.rb
904 * custom configuration is now defined in config/config_custom.rb
904 * user object no more stored in session (only user_id)
905 * user object no more stored in session (only user_id)
905 * news summary field is no longer required
906 * news summary field is no longer required
906 * tables and forms redesign
907 * tables and forms redesign
907 * Fixed: boolean custom field not working
908 * Fixed: boolean custom field not working
908 * Fixed: error messages for custom fields are not displayed
909 * Fixed: error messages for custom fields are not displayed
909 * Fixed: invalid custom fields should have a red border
910 * Fixed: invalid custom fields should have a red border
910 * Fixed: custom fields values are not validated on issue update
911 * Fixed: custom fields values are not validated on issue update
911 * Fixed: unable to choose an empty value for 'List' custom fields
912 * Fixed: unable to choose an empty value for 'List' custom fields
912 * Fixed: no issue categories sorting
913 * Fixed: no issue categories sorting
913 * Fixed: incorrect versions sorting
914 * Fixed: incorrect versions sorting
914
915
915
916
916 == 2006-07-12 - v0.2.2
917 == 2006-07-12 - v0.2.2
917
918
918 * Fixed: bug in "issues list"
919 * Fixed: bug in "issues list"
919
920
920
921
921 == 2006-07-09 - v0.2.1
922 == 2006-07-09 - v0.2.1
922
923
923 * new databases supported: Oracle, PostgreSQL, SQL Server
924 * new databases supported: Oracle, PostgreSQL, SQL Server
924 * projects/subprojects hierarchy (1 level of subprojects only)
925 * projects/subprojects hierarchy (1 level of subprojects only)
925 * environment information display in admin/info
926 * environment information display in admin/info
926 * more filter options in issues list (rev6)
927 * more filter options in issues list (rev6)
927 * default language based on browser settings (Accept-Language HTTP header)
928 * default language based on browser settings (Accept-Language HTTP header)
928 * issues list exportable to CSV (rev6)
929 * issues list exportable to CSV (rev6)
929 * simple_format and auto_link on long text fields
930 * simple_format and auto_link on long text fields
930 * more data validations
931 * more data validations
931 * Fixed: error when all mail notifications are unchecked in admin/mail_options
932 * Fixed: error when all mail notifications are unchecked in admin/mail_options
932 * Fixed: all project news are displayed on project summary
933 * Fixed: all project news are displayed on project summary
933 * Fixed: Can't change user password in users/edit
934 * Fixed: Can't change user password in users/edit
934 * Fixed: Error on tables creation with PostgreSQL (rev5)
935 * Fixed: Error on tables creation with PostgreSQL (rev5)
935 * Fixed: SQL error in "issue reports" view with PostgreSQL (rev5)
936 * Fixed: SQL error in "issue reports" view with PostgreSQL (rev5)
936
937
937
938
938 == 2006-06-25 - v0.1.0
939 == 2006-06-25 - v0.1.0
939
940
940 * multiple users/multiple projects
941 * multiple users/multiple projects
941 * role based access control
942 * role based access control
942 * issue tracking system
943 * issue tracking system
943 * fully customizable workflow
944 * fully customizable workflow
944 * documents/files repository
945 * documents/files repository
945 * email notifications on issue creation and update
946 * email notifications on issue creation and update
946 * multilanguage support (except for error messages):english, french, spanish
947 * multilanguage support (except for error messages):english, french, spanish
947 * online manual in french (unfinished)
948 * online manual in french (unfinished)
General Comments 0
You need to be logged in to leave comments. Login now