Project

General

Profile

Statistics
| Revision:

# Date Author Comment
13305 2014-07-13 02:28 Toshi MARUYAMA

.travis.yml: run same commands with Redmine official CI server

13304 2014-07-13 02:08 Toshi MARUYAMA

Merged r13302 from trunk to rails-4.1

add missing fixtures to test/unit/journal_test.rb

13298 2014-07-12 15:15 Jean-Philippe Lang

Don't change the date format for the other tests.

13297 2014-07-12 14:36 Jean-Philippe Lang

Removed deprecated :action option in #link_to_project.

13296 2014-07-12 14:20 Jean-Philippe Lang

Add missing fixtures.

13295 2014-07-12 13:24 Jean-Philippe Lang

NameError: uninitialized constant ActiveSupport::TestCase::Shoulda error on the CI server.

13294 2014-07-12 13:13 Jean-Philippe Lang

Reverts r13279.

uninitialized constant Rake::TestTask error: bundle is not yet completed when running rake -f lib/tasks/ci.rake config/database.yml on the CI server. What was the problem with Rake::Task["test"].invoke ?

13293 2014-07-12 12:59 Jean-Philippe Lang

mysql gem no longer used.

13292 2014-07-11 18:17 Toshi MARUYAMA

Gemfile: use awesome_nested_set gem

13291 2014-07-11 18:16 Toshi MARUYAMA

revert r13239 awesome_nested_set modification

13290 2014-07-11 18:15 Toshi MARUYAMA

copy r13239 awesome_nested_set modification to Issue model

13286 2014-07-11 10:00 Toshi MARUYAMA

remove TODO comment from RepositorySubversionTest#test_log_encoding_ignore_setting

13283 2014-07-11 09:24 Toshi MARUYAMA

fix indents of PdfTest#test_attach

13282 2014-07-11 09:24 Toshi MARUYAMA

test both of CP932 and SJIS at PdfTest#test_attach

13281 2014-07-11 09:23 Toshi MARUYAMA

test both of CP932 and SJIS at PdfTest#test_rdm_pdf_iconv_cannot_convert_ja_cp932

13280 2014-07-11 09:23 Toshi MARUYAMA

follow r13269 change at PdfTest#test_rdm_pdf_iconv_cannot_convert_ja_cp932

13279 2014-07-11 07:18 Toshi MARUYAMA

define test tasks for CI

13278 2014-07-11 06:51 Toshi MARUYAMA

follow r13269 ja.yml change

13277 2014-07-11 00:21 Jean-Philippe Lang

Don't check request method in #update actions as we get PATCH requests now. PUT requests must be accepted for the API.

13276 2014-07-10 23:57 Jean-Philippe Lang

Moved binaries to /bin.

13275 2014-07-10 23:40 Jean-Philippe Lang

Environments files cleanup.

13274 2014-07-10 23:25 Jean-Philippe Lang

Config files cleanup.

13273 2014-07-10 23:19 Jean-Philippe Lang

Use eval_gemfile.

13272 2014-07-10 23:08 Jean-Philippe Lang

Set I18n.enforce_available_locales to true.

13271 2014-07-10 22:32 Jean-Philippe Lang

Set appropriate default language.

13270 2014-07-10 19:55 Jean-Philippe Lang

Removed FCSV stuff.

13269 2014-07-10 19:53 Jean-Philippe Lang

Removed Iconv stuff.

13268 2014-07-10 19:35 Jean-Philippe Lang

tzinfo-data gem required with Windows/JRuby.

13267 2014-07-09 22:53 Jean-Philippe Lang

Removed app/sweepers.

13266 2014-07-09 22:41 Jean-Philippe Lang

Removes ruby version checks.

13265 2014-07-09 22:41 Jean-Philippe Lang

Raise an ArgumentError when User#allowed_to? is called with wrong context.

13264 2014-07-09 22:31 Jean-Philippe Lang

Set appropriate default language.

13263 2014-07-09 22:12 Jean-Philippe Lang

Removes ruby version check.

13262 2014-07-09 22:11 Jean-Philippe Lang

Upgrade to Redcarpet 3 now that ruby1.8 support is dropped.

13261 2014-07-09 22:03 Jean-Philippe Lang

Cleanup: removes mocha requires.

13260 2014-07-09 21:56 Jean-Philippe Lang

Cleanup: removes mocha requires.

13259 2014-07-09 21:53 Jean-Philippe Lang

Removes other #respond_to?(:force_encoding).

13258 2014-07-09 20:10 Jean-Philippe Lang

Removes #respond_to?(:force_encoding) checks in integration tests.

13257 2014-07-09 20:09 Jean-Philippe Lang

Removes #respond_to?(:force_encoding) checks in functional tests.

13256 2014-07-09 19:55 Jean-Philippe Lang

Removes #respond_to?(:force_encoding) checks in SCM adapters.

13255 2014-07-09 19:29 Jean-Philippe Lang

Removes some ruby1.8 handling code.

13254 2014-07-09 19:10 Jean-Philippe Lang

Set appropriate default language.

13253 2014-07-09 18:48 Jean-Philippe Lang

Removes some ruby1.8 handling code.

13252 2014-07-09 15:34 Toshi MARUYAMA

use references

On Rails 4.0:

DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: issues, projects, em)
that are referenced in a string SQL snippet. For example:

    Post.includes(:comments).where("comments.title = 'foo'")

Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query,...
13251 2014-07-09 15:33 Toshi MARUYAMA

replace Relation#all

On Rails4.0:

DEPRECATION WARNING: Relation#all is deprecated.
If you want to eager-load a relation, you can call #load (e.g. `Post.where(published: true).load`).
If you want to get an array of records from a relation,
you can call #to_a (e.g. `Post.where(published: true).to_a`).

13250 2014-07-09 13:37 Toshi MARUYAMA

replace Relation#all

On Rails4.0:

DEPRECATION WARNING: Relation#all is deprecated.
If you want to eager-load a relation, you can call #load (e.g. `Post.where(published: true).load`).
If you want to get an array of records from a relation,
you can call #to_a (e.g. `Post.where(published: true).to_a`).

13249 2014-07-09 13:37 Toshi MARUYAMA

use references

On Rails 4.0:

DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: issues, projects, em)
that are referenced in a string SQL snippet. For example:

    Post.includes(:comments).where("comments.title = 'foo'")

Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query,...
13248 2014-07-09 12:57 Toshi MARUYAMA

replace Relation#all

On Rails4.0:

DEPRECATION WARNING: Relation#all is deprecated.
If you want to eager-load a relation, you can call #load (e.g. `Post.where(published: true).load`).
If you want to get an array of records from a relation,
you can call #to_a (e.g. `Post.where(published: true).to_a`).

13247 2014-07-09 12:41 Toshi MARUYAMA

remove unneeded Relation#all from ProjectTest

13246 2014-07-09 10:08 Toshi MARUYAMA

Gemfile: remove version from mocha

13245 2014-07-09 10:08 Toshi MARUYAMA

Gemfile: remove version from shoulda

13244 2014-07-09 10:08 Toshi MARUYAMA

Gemfile: upgrade shoulda 3.5.0

This shoulda version is not support Ruby 1.8.7.

13243 2014-07-09 09:36 Toshi MARUYAMA

db migrate: remove Relation#all from 20100819172912_enable_calendar_and_gantt_modules_where_appropriate.rb

On Rails4.0:

DEPRECATION WARNING: Relation#all is deprecated.
If you want to eager-load a relation, you can call #load (e.g. `Post.where(published: true).load`)....

13242 2014-07-09 09:36 Toshi MARUYAMA

config: remove config.whiny_nils from test and development environments

On Rails 4.0:

DEPRECATION WARNING: config.whiny_nils option is deprecated and no longer works.

13241 2014-07-09 09:35 Toshi MARUYAMA

fix "connection" at IssueQuery model

13240 2014-07-09 09:35 Toshi MARUYAMA

.travis.yml: remove Ruby 1.8.7

13239 2014-07-09 08:16 Toshi MARUYAMA

graft trunk r13148 "not use cache for max rgt"

13238 2014-07-09 08:16 Toshi MARUYAMA

add lib/plugins/awesome_nested_set/init.rb

13237 2014-07-09 08:15 Toshi MARUYAMA

awesome_nested_set: import master branch source

https://github.com/collectiveidea/awesome_nested_set/commit/f823ffb304ccf5ca9c4f14b60ff1f45ad2c3f440

13236 2014-07-09 00:04 Jean-Philippe Lang

Preload project by default in #shared_versions.

13235 2014-07-08 23:45 Jean-Philippe Lang

Fixed default admin account creation during migration (#14534).

13234 2014-07-08 23:35 Jean-Philippe Lang

Fixed error on Project.rebuild_tree! during migration (#14534).

13233 2014-07-08 23:19 Jean-Philippe Lang

Test suite passes with Rails 4.1.

13232 2014-07-08 23:16 Jean-Philippe Lang

Rails 4.1 branch

12399 2013-12-13 18:42 Jean-Philippe Lang

Custom field inputs styling.

12398 2013-12-10 19:32 Jean-Philippe Lang

Split the custom field form.

12397 2013-12-10 19:25 Jean-Philippe Lang

Add a description for custom fields.

12386 2013-12-08 11:37 Jean-Philippe Lang

Let boolean custom fields have no value.

12385 2013-12-08 11:10 Jean-Philippe Lang

Allow filtering on boolean custom field with no value (#2183).

12384 2013-12-08 10:54 Jean-Philippe Lang

Raised custom field inputs width.

12383 2013-12-08 10:43 Jean-Philippe Lang

Removed individual block class on checkboxes.

12382 2013-12-08 10:24 Jean-Philippe Lang

Adds an option to render list/user/version custom fields as a drop-down list or checkboxes/radio buttons.

12381 2013-12-08 09:14 Jean-Philippe Lang

Split FieldFormatTest.

12380 2013-12-07 14:15 Jean-Philippe Lang

Move format specific statements to Redmine::FieldFormat.

12379 2013-12-07 12:52 Jean-Philippe Lang

Typo.

12378 2013-12-07 12:37 Jean-Philippe Lang

Removed duplicate ids.

12377 2013-12-07 12:32 Jean-Philippe Lang

Adds check all links on custom field trackers.

12376 2013-12-07 12:30 Jean-Philippe Lang

Set a maximum width on form elements.

12375 2013-12-07 12:25 Jean-Philippe Lang

Rename ObjectList to RecordList.

12374 2013-12-07 12:24 Jean-Philippe Lang

Consider existing values as valid for user and version custom fields.

12373 2013-12-07 11:54 Jean-Philippe Lang

Consider existing values as valid for list custom fields.

12372 2013-12-07 10:57 Jean-Philippe Lang

Adds a callback on custom field save to remove blank values.

12371 2013-12-07 10:48 Jean-Philippe Lang

Let version custom fields return versions with specific status.

12370 2013-12-07 10:17 Jean-Philippe Lang

Let user custom fields return members with specific roles.

12354 2013-12-03 21:38 Jean-Philippe Lang

Use data-disables and data-enables attribute helpers to toggle other inputs.

12353 2013-12-01 13:33 Jean-Philippe Lang

Adds more substitution options for link custom fields.

12352 2013-12-01 13:01 Jean-Philippe Lang

Adds a Link custom field format.

12351 2013-12-01 12:21 Jean-Philippe Lang

Enables optional text formatting for string/text custom fields.

12347 2013-11-27 14:34 Jean-Philippe Lang

Fixed that element option without attribute label must not be empty.

12345 2013-11-27 14:28 Jean-Philippe Lang

Prevent duplicate ids.

12344 2013-11-27 14:26 Jean-Philippe Lang

Moved formatting to FieldFormat.

12343 2013-11-26 19:14 Jean-Philippe Lang

Adds a store to custom fields for format specific options.

12338 2013-11-24 19:23 Jean-Philippe Lang

Use em.info pour tips.

12337 2013-11-24 18:59 Jean-Philippe Lang

Removed useless condition.

12336 2013-11-24 18:49 Jean-Philippe Lang

Move part of the custom field form that is format specific to partials.

12335 2013-11-24 15:57 Jean-Philippe Lang

Fixed casting of blank values.

12334 2013-11-24 15:46 Jean-Philippe Lang

Removed Redmine::CustomFieldFormat.

12333 2013-11-24 15:37 Jean-Philippe Lang

Move edit tag rendering to Redmine::FieldFormat.

12330 2013-11-23 23:11 Jean-Philippe Lang

Moved query filter logic to Redmine::FieldFormat.

12329 2013-11-23 22:34 Jean-Philippe Lang

Moves #as_select to Redmine::FieldFormat.