├── .gitignore ├── LICENSE ├── README.md ├── app ├── controllers │ ├── project_project_enumerations_controller.rb │ └── project_project_list_values_controller.rb ├── models │ └── project_enumeration.rb └── views │ ├── custom_fields │ └── formats │ │ ├── _project_enumeration.html.erb │ │ └── _project_list_value.html.erb │ ├── project_project_enumerations │ ├── _form.html.erb │ ├── create.js.erb │ ├── edit.html.erb │ ├── index.api.rsb │ ├── index.html.erb │ ├── new.html.erb │ └── show.api.rsb │ ├── project_project_list_values │ ├── _form.html.erb │ ├── create.js.erb │ ├── edit.html.erb │ ├── index.api.rsb │ ├── index.html.erb │ ├── new.html.erb │ └── show.api.rsb │ ├── projects │ └── settings │ │ ├── _custom_field_checkbox.html.erb │ │ ├── _issues.html.erb │ │ ├── _project_enumerations.html.erb │ │ └── _project_list_values.html.erb │ └── settings │ └── _redmine_smile_project_enumerations_custom_field_format.html.erb ├── assets ├── images │ ├── loading.gif │ └── reorder.png └── stylesheets │ └── style.css ├── config ├── locales │ ├── ca.yml │ ├── en-GB.yml │ ├── en.yml │ ├── es.yml │ ├── fr.yml │ └── uk.yml └── routes.rb ├── db └── migrate │ ├── 20190901140000_fix_migration_name.rb │ ├── 20190904123000_create_project_enumerations.rb │ └── 20191204234500_add_project_enumeration_position.rb ├── doc ├── Project_Enumeration_In_Issue_20191004.png ├── Project_Enumerations_CF_20191004.png ├── Project_Enumerations_Edit_20191004.png └── Project_Enumerations_Edit_enumeration_20191015.png ├── init.rb ├── lib ├── controllers │ └── smile_controllers_projects.rb ├── helpers │ └── smile_helpers_projects.rb ├── models │ ├── smile_models_custom_field.rb │ └── smile_models_project.rb ├── project_enumeration_field_format.rb ├── project_list_value_field_format.rb ├── redmine_smile_project_enumerations_custom_field_format │ └── hooks.rb └── smile_tools.rb ├── scripts └── test_it.sh └── test ├── fixtures ├── custom_fields.yml ├── custom_fields_projects.yml ├── custom_fields_trackers.yml ├── custom_values.yml └── project_enumerations.yml ├── functional └── issues_controller_test.rb ├── test_helper.rb └── unit └── custom_value_test.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/README.md -------------------------------------------------------------------------------- /app/controllers/project_project_enumerations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/app/controllers/project_project_enumerations_controller.rb -------------------------------------------------------------------------------- /app/controllers/project_project_list_values_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/app/controllers/project_project_list_values_controller.rb -------------------------------------------------------------------------------- /app/models/project_enumeration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/app/models/project_enumeration.rb -------------------------------------------------------------------------------- /app/views/custom_fields/formats/_project_enumeration.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/app/views/custom_fields/formats/_project_enumeration.html.erb -------------------------------------------------------------------------------- /app/views/custom_fields/formats/_project_list_value.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/app/views/custom_fields/formats/_project_list_value.html.erb -------------------------------------------------------------------------------- /app/views/project_project_enumerations/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/app/views/project_project_enumerations/_form.html.erb -------------------------------------------------------------------------------- /app/views/project_project_enumerations/create.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/app/views/project_project_enumerations/create.js.erb -------------------------------------------------------------------------------- /app/views/project_project_enumerations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/app/views/project_project_enumerations/edit.html.erb -------------------------------------------------------------------------------- /app/views/project_project_enumerations/index.api.rsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/app/views/project_project_enumerations/index.api.rsb -------------------------------------------------------------------------------- /app/views/project_project_enumerations/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/app/views/project_project_enumerations/index.html.erb -------------------------------------------------------------------------------- /app/views/project_project_enumerations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/app/views/project_project_enumerations/new.html.erb -------------------------------------------------------------------------------- /app/views/project_project_enumerations/show.api.rsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/app/views/project_project_enumerations/show.api.rsb -------------------------------------------------------------------------------- /app/views/project_project_list_values/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/app/views/project_project_list_values/_form.html.erb -------------------------------------------------------------------------------- /app/views/project_project_list_values/create.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/app/views/project_project_list_values/create.js.erb -------------------------------------------------------------------------------- /app/views/project_project_list_values/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/app/views/project_project_list_values/edit.html.erb -------------------------------------------------------------------------------- /app/views/project_project_list_values/index.api.rsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/app/views/project_project_list_values/index.api.rsb -------------------------------------------------------------------------------- /app/views/project_project_list_values/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/app/views/project_project_list_values/index.html.erb -------------------------------------------------------------------------------- /app/views/project_project_list_values/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/app/views/project_project_list_values/new.html.erb -------------------------------------------------------------------------------- /app/views/project_project_list_values/show.api.rsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/app/views/project_project_list_values/show.api.rsb -------------------------------------------------------------------------------- /app/views/projects/settings/_custom_field_checkbox.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/app/views/projects/settings/_custom_field_checkbox.html.erb -------------------------------------------------------------------------------- /app/views/projects/settings/_issues.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/app/views/projects/settings/_issues.html.erb -------------------------------------------------------------------------------- /app/views/projects/settings/_project_enumerations.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/app/views/projects/settings/_project_enumerations.html.erb -------------------------------------------------------------------------------- /app/views/projects/settings/_project_list_values.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/app/views/projects/settings/_project_list_values.html.erb -------------------------------------------------------------------------------- /app/views/settings/_redmine_smile_project_enumerations_custom_field_format.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/app/views/settings/_redmine_smile_project_enumerations_custom_field_format.html.erb -------------------------------------------------------------------------------- /assets/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/assets/images/loading.gif -------------------------------------------------------------------------------- /assets/images/reorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/assets/images/reorder.png -------------------------------------------------------------------------------- /assets/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/assets/stylesheets/style.css -------------------------------------------------------------------------------- /config/locales/ca.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/config/locales/ca.yml -------------------------------------------------------------------------------- /config/locales/en-GB.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/config/locales/en-GB.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/config/locales/es.yml -------------------------------------------------------------------------------- /config/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/config/locales/fr.yml -------------------------------------------------------------------------------- /config/locales/uk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/config/locales/uk.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/config/routes.rb -------------------------------------------------------------------------------- /db/migrate/20190901140000_fix_migration_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/db/migrate/20190901140000_fix_migration_name.rb -------------------------------------------------------------------------------- /db/migrate/20190904123000_create_project_enumerations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/db/migrate/20190904123000_create_project_enumerations.rb -------------------------------------------------------------------------------- /db/migrate/20191204234500_add_project_enumeration_position.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/db/migrate/20191204234500_add_project_enumeration_position.rb -------------------------------------------------------------------------------- /doc/Project_Enumeration_In_Issue_20191004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/doc/Project_Enumeration_In_Issue_20191004.png -------------------------------------------------------------------------------- /doc/Project_Enumerations_CF_20191004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/doc/Project_Enumerations_CF_20191004.png -------------------------------------------------------------------------------- /doc/Project_Enumerations_Edit_20191004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/doc/Project_Enumerations_Edit_20191004.png -------------------------------------------------------------------------------- /doc/Project_Enumerations_Edit_enumeration_20191015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/doc/Project_Enumerations_Edit_enumeration_20191015.png -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/init.rb -------------------------------------------------------------------------------- /lib/controllers/smile_controllers_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/lib/controllers/smile_controllers_projects.rb -------------------------------------------------------------------------------- /lib/helpers/smile_helpers_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/lib/helpers/smile_helpers_projects.rb -------------------------------------------------------------------------------- /lib/models/smile_models_custom_field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/lib/models/smile_models_custom_field.rb -------------------------------------------------------------------------------- /lib/models/smile_models_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/lib/models/smile_models_project.rb -------------------------------------------------------------------------------- /lib/project_enumeration_field_format.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/lib/project_enumeration_field_format.rb -------------------------------------------------------------------------------- /lib/project_list_value_field_format.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/lib/project_list_value_field_format.rb -------------------------------------------------------------------------------- /lib/redmine_smile_project_enumerations_custom_field_format/hooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/lib/redmine_smile_project_enumerations_custom_field_format/hooks.rb -------------------------------------------------------------------------------- /lib/smile_tools.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/lib/smile_tools.rb -------------------------------------------------------------------------------- /scripts/test_it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/scripts/test_it.sh -------------------------------------------------------------------------------- /test/fixtures/custom_fields.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/test/fixtures/custom_fields.yml -------------------------------------------------------------------------------- /test/fixtures/custom_fields_projects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/test/fixtures/custom_fields_projects.yml -------------------------------------------------------------------------------- /test/fixtures/custom_fields_trackers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/test/fixtures/custom_fields_trackers.yml -------------------------------------------------------------------------------- /test/fixtures/custom_values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/test/fixtures/custom_values.yml -------------------------------------------------------------------------------- /test/fixtures/project_enumerations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/test/fixtures/project_enumerations.yml -------------------------------------------------------------------------------- /test/functional/issues_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/test/functional/issues_controller_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/unit/custom_value_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/redmine_smile_project_enumerations_custom_field_format/HEAD/test/unit/custom_value_test.rb --------------------------------------------------------------------------------