]> source.dussan.org Git - redmine.git/commit
Merged custom fields format refactoring.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 14 Dec 2013 08:22:43 +0000 (08:22 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 14 Dec 2013 08:22:43 +0000 (08:22 +0000)
commit2e2e2cfe425c2664517fb59836fbd3eff5e35861
treee3daa66ee8b36d2f1a1468ec9501fba5bc37d71c
parentc74f6d9f9bcf02ccc480a2028802b83ec5d91aca
Merged custom fields format refactoring.

git-svn-id: http://svn.redmine.org/redmine/trunk@12400 e93f8b46-1217-0410-a6f0-8f06a7374b81
45 files changed:
app/controllers/custom_fields_controller.rb
app/helpers/application_helper.rb
app/helpers/custom_fields_helper.rb
app/helpers/issues_helper.rb
app/helpers/timelog_helper.rb
app/models/custom_field.rb
app/models/custom_field_value.rb
app/models/query.rb
app/views/custom_fields/_form.html.erb
app/views/custom_fields/_index.html.erb
app/views/custom_fields/formats/_bool.html.erb [new file with mode: 0644]
app/views/custom_fields/formats/_date.html.erb [new file with mode: 0644]
app/views/custom_fields/formats/_link.html.erb [new file with mode: 0644]
app/views/custom_fields/formats/_list.html.erb [new file with mode: 0644]
app/views/custom_fields/formats/_numeric.html.erb [new file with mode: 0644]
app/views/custom_fields/formats/_regexp.html.erb [new file with mode: 0644]
app/views/custom_fields/formats/_string.html.erb [new file with mode: 0644]
app/views/custom_fields/formats/_text.html.erb [new file with mode: 0644]
app/views/custom_fields/formats/_user.html.erb [new file with mode: 0644]
app/views/custom_fields/formats/_version.html.erb [new file with mode: 0644]
app/views/custom_fields/new.html.erb
app/views/issues/bulk_edit.html.erb
app/views/timelog/bulk_edit.html.erb
db/migrate/20131124175346_add_custom_fields_format_store.rb [new file with mode: 0644]
db/migrate/20131210180802_add_custom_fields_description.rb [new file with mode: 0644]
lib/plugins/acts_as_customizable/lib/acts_as_customizable.rb
lib/redmine.rb
lib/redmine/custom_field_format.rb [deleted file]
lib/redmine/export/pdf.rb
lib/redmine/field_format.rb [new file with mode: 0644]
lib/redmine/helpers/time_report.rb
lib/redmine/views/labelled_form_builder.rb
public/javascripts/application.js
public/stylesheets/application.css
test/functional/custom_fields_controller_test.rb
test/functional/issues_controller_test.rb
test/unit/custom_field_test.rb
test/unit/custom_field_user_format_test.rb
test/unit/custom_field_version_format_test.rb
test/unit/helpers/custom_fields_helper_test.rb
test/unit/lib/redmine/field_format/field_format_test.rb [new file with mode: 0644]
test/unit/lib/redmine/field_format/link_format_test.rb [new file with mode: 0644]
test/unit/lib/redmine/field_format/list_format_test.rb [new file with mode: 0644]
test/unit/lib/redmine/field_format/user_field_format_test.rb [new file with mode: 0644]
test/unit/lib/redmine/field_format/version_field_format_test.rb [new file with mode: 0644]