##// END OF EJS Templates
Makes 'delete links' the same on admin views....
Makes 'delete links' the same on admin views. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2872 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2274:12792d8068d0
r2758:7f4635022f7d
Show More
custom_fields.yml
89 lines | 1.6 KiB | text/x-yaml | YamlLexer
Jean-Philippe Lang
0.3 unstable...
r10 ---
custom_fields_001:
name: Database
min_length: 0
regexp: ""
Jean-Philippe Lang
Custom fields (list and boolean) can be used as criteria in time report (#1012)....
r1325 is_for_all: true
Jean-Philippe Lang
Fixed: Search for target version of "none" fails with postgres 8.3 (#1134)....
r1364 is_filter: true
Jean-Philippe Lang
0.3 unstable...
r10 type: IssueCustomField
max_length: 0
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 possible_values:
- MySQL
- PostgreSQL
- Oracle
Jean-Philippe Lang
0.3 unstable...
r10 id: 1
is_required: false
field_format: list
Jean-Philippe Lang
Added default value for custom fields. Fixed javascript on custom field form for project and user custom fields....
r1076 default_value: ""
Jean-Philippe Lang
User custom fields can now be set as editable so that users can edit them on 'My account'....
r2274 editable: true
Jean-Philippe Lang
0.3 unstable...
r10 custom_fields_002:
Jean-Philippe Lang
Search engine: issue custom fields can now be searched....
r981 name: Searchable field
Jean-Philippe Lang
0.3 unstable...
r10 min_length: 1
regexp: ""
is_for_all: true
type: IssueCustomField
Jean-Philippe Lang
Search engine: issue custom fields can now be searched....
r981 max_length: 100
Jean-Philippe Lang
0.3 unstable...
r10 possible_values: ""
id: 2
is_required: false
field_format: string
Jean-Philippe Lang
Search engine: issue custom fields can now be searched....
r981 searchable: true
Jean-Philippe Lang
Added default value for custom fields. Fixed javascript on custom field form for project and user custom fields....
r1076 default_value: "Default string"
Jean-Philippe Lang
User custom fields can now be set as editable so that users can edit them on 'My account'....
r2274 editable: true
Jean-Philippe Lang
0.3 unstable...
r10 custom_fields_003:
name: Development status
min_length: 0
regexp: ""
is_for_all: false
Jean-Philippe Lang
Add filters on cross-project issue list for custom fields marked as 'For all projects'....
r1562 is_filter: true
Jean-Philippe Lang
0.3 unstable...
r10 type: ProjectCustomField
max_length: 0
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 possible_values:
- Stable
- Beta
- Alpha
- Planning
Jean-Philippe Lang
0.3 unstable...
r10 id: 3
is_required: true
field_format: list
Jean-Philippe Lang
Added default value for custom fields. Fixed javascript on custom field form for project and user custom fields....
r1076 default_value: ""
Jean-Philippe Lang
User custom fields can now be set as editable so that users can edit them on 'My account'....
r2274 editable: true
Jean-Philippe Lang
0.3 unstable...
r10 custom_fields_004:
name: Phone number
min_length: 0
regexp: ""
is_for_all: false
type: UserCustomField
max_length: 0
possible_values: ""
id: 4
is_required: false
field_format: string
Jean-Philippe Lang
Added default value for custom fields. Fixed javascript on custom field form for project and user custom fields....
r1076 default_value: ""
Jean-Philippe Lang
User custom fields can now be set as editable so that users can edit them on 'My account'....
r2274 editable: true
Jean-Philippe Lang
Added "Float" as a custom field format....
r857 custom_fields_005:
name: Money
min_length: 0
regexp: ""
is_for_all: false
type: UserCustomField
max_length: 0
possible_values: ""
id: 5
is_required: false
field_format: float
Jean-Philippe Lang
Added default value for custom fields. Fixed javascript on custom field form for project and user custom fields....
r1076 default_value: ""
Jean-Philippe Lang
User custom fields can now be set as editable so that users can edit them on 'My account'....
r2274 editable: true
Jean-Philippe Lang
Ability to sort the issue list by text, int and float custom fields (#1139)....
r2256 custom_fields_006:
name: Float field
min_length: 0
regexp: ""
is_for_all: true
type: IssueCustomField
max_length: 0
possible_values: ""
id: 6
is_required: false
field_format: float
default_value: ""
Jean-Philippe Lang
User custom fields can now be set as editable so that users can edit them on 'My account'....
r2274 editable: true
Jean-Philippe Lang
Added "Float" as a custom field format....
r857