Add "frozen_string_literal: false" for all files (#26561).
This will be changed to true in the future. git-svn-id: https://svn.redmine.org/redmine/trunk@17947 e93f8b46-1217-0410-a6f0-8f06a7374b81
Showing
with
2078 additions
and
202 deletions
+2078
-202
- Gemfile Gemfile +2 -0
- Rakefile Rakefile +2 -0
- app/controllers/account_controller.rb app/controllers/account_controller.rb +2 -0
- app/controllers/activities_controller.rb app/controllers/activities_controller.rb +2 -0
- app/controllers/admin_controller.rb app/controllers/admin_controller.rb +2 -0
- app/controllers/application_controller.rb app/controllers/application_controller.rb +2 -0
- app/controllers/attachments_controller.rb app/controllers/attachments_controller.rb +2 -0
- app/controllers/auth_sources_controller.rb app/controllers/auth_sources_controller.rb +2 -0
- app/controllers/auto_completes_controller.rb app/controllers/auto_completes_controller.rb +2 -0
- app/controllers/boards_controller.rb app/controllers/boards_controller.rb +2 -0
- app/controllers/calendars_controller.rb app/controllers/calendars_controller.rb +2 -0
- app/controllers/comments_controller.rb app/controllers/comments_controller.rb +2 -0
- app/controllers/context_menus_controller.rb app/controllers/context_menus_controller.rb +2 -0
- app/controllers/custom_field_enumerations_controller.rb app/controllers/custom_field_enumerations_controller.rb +2 -0
- app/controllers/custom_fields_controller.rb app/controllers/custom_fields_controller.rb +2 -0
- app/controllers/documents_controller.rb app/controllers/documents_controller.rb +2 -0
- app/controllers/email_addresses_controller.rb app/controllers/email_addresses_controller.rb +2 -0
- app/controllers/enumerations_controller.rb app/controllers/enumerations_controller.rb +2 -0
- app/controllers/files_controller.rb app/controllers/files_controller.rb +2 -0
- app/controllers/gantts_controller.rb app/controllers/gantts_controller.rb +2 -0
- app/controllers/groups_controller.rb app/controllers/groups_controller.rb +2 -0
- app/controllers/imports_controller.rb app/controllers/imports_controller.rb +2 -0
- app/controllers/issue_categories_controller.rb app/controllers/issue_categories_controller.rb +2 -0
- app/controllers/issue_relations_controller.rb app/controllers/issue_relations_controller.rb +2 -0
- app/controllers/issue_statuses_controller.rb app/controllers/issue_statuses_controller.rb +2 -0
- app/controllers/issues_controller.rb app/controllers/issues_controller.rb +2 -0
- app/controllers/journals_controller.rb app/controllers/journals_controller.rb +2 -0
- app/controllers/mail_handler_controller.rb app/controllers/mail_handler_controller.rb +2 -0
- app/controllers/members_controller.rb app/controllers/members_controller.rb +2 -0
- app/controllers/messages_controller.rb app/controllers/messages_controller.rb +2 -0
- app/controllers/my_controller.rb app/controllers/my_controller.rb +2 -0
- app/controllers/news_controller.rb app/controllers/news_controller.rb +2 -0
- app/controllers/previews_controller.rb app/controllers/previews_controller.rb +2 -0
- app/controllers/principal_memberships_controller.rb app/controllers/principal_memberships_controller.rb +2 -0
- app/controllers/project_enumerations_controller.rb app/controllers/project_enumerations_controller.rb +2 -0
- app/controllers/projects_controller.rb app/controllers/projects_controller.rb +2 -0
- app/controllers/queries_controller.rb app/controllers/queries_controller.rb +2 -0
- app/controllers/reports_controller.rb app/controllers/reports_controller.rb +2 -0
- app/controllers/repositories_controller.rb app/controllers/repositories_controller.rb +2 -0
- app/controllers/roles_controller.rb app/controllers/roles_controller.rb +2 -0
- app/controllers/search_controller.rb app/controllers/search_controller.rb +2 -0
- app/controllers/settings_controller.rb app/controllers/settings_controller.rb +2 -0
- app/controllers/sys_controller.rb app/controllers/sys_controller.rb +2 -0
- app/controllers/timelog_controller.rb app/controllers/timelog_controller.rb +2 -0
- app/controllers/trackers_controller.rb app/controllers/trackers_controller.rb +2 -0
- app/controllers/users_controller.rb app/controllers/users_controller.rb +2 -0
- app/controllers/versions_controller.rb app/controllers/versions_controller.rb +2 -0
- app/controllers/watchers_controller.rb app/controllers/watchers_controller.rb +2 -0
- app/controllers/welcome_controller.rb app/controllers/welcome_controller.rb +2 -0
- app/controllers/wiki_controller.rb app/controllers/wiki_controller.rb +2 -0
- app/controllers/wikis_controller.rb app/controllers/wikis_controller.rb +2 -0
- app/controllers/workflows_controller.rb app/controllers/workflows_controller.rb +2 -0
- app/helpers/account_helper.rb app/helpers/account_helper.rb +2 -0
- app/helpers/activities_helper.rb app/helpers/activities_helper.rb +2 -0
- app/helpers/admin_helper.rb app/helpers/admin_helper.rb +2 -0
- app/helpers/application_helper.rb app/helpers/application_helper.rb +2 -0
- app/helpers/attachments_helper.rb app/helpers/attachments_helper.rb +2 -0
- app/helpers/auth_sources_helper.rb app/helpers/auth_sources_helper.rb +2 -0
- app/helpers/boards_helper.rb app/helpers/boards_helper.rb +2 -0
- app/helpers/calendars_helper.rb app/helpers/calendars_helper.rb +2 -0
- app/helpers/context_menus_helper.rb app/helpers/context_menus_helper.rb +2 -0
- app/helpers/custom_fields_helper.rb app/helpers/custom_fields_helper.rb +2 -0
- app/helpers/documents_helper.rb app/helpers/documents_helper.rb +2 -0
- app/helpers/email_addresses_helper.rb app/helpers/email_addresses_helper.rb +2 -0
- app/helpers/enumerations_helper.rb app/helpers/enumerations_helper.rb +2 -0
- app/helpers/gantt_helper.rb app/helpers/gantt_helper.rb +2 -0
- app/helpers/groups_helper.rb app/helpers/groups_helper.rb +2 -0
- app/helpers/imports_helper.rb app/helpers/imports_helper.rb +2 -0
- app/helpers/issue_categories_helper.rb app/helpers/issue_categories_helper.rb +2 -0
- app/helpers/issue_relations_helper.rb app/helpers/issue_relations_helper.rb +2 -0
- app/helpers/issue_statuses_helper.rb app/helpers/issue_statuses_helper.rb +2 -0
- app/helpers/issues_helper.rb app/helpers/issues_helper.rb +2 -0
- app/helpers/journals_helper.rb app/helpers/journals_helper.rb +2 -0
- app/helpers/mail_handler_helper.rb app/helpers/mail_handler_helper.rb +2 -0
- app/helpers/members_helper.rb app/helpers/members_helper.rb +2 -0
- app/helpers/messages_helper.rb app/helpers/messages_helper.rb +2 -0
- app/helpers/my_helper.rb app/helpers/my_helper.rb +2 -0
- app/helpers/news_helper.rb app/helpers/news_helper.rb +2 -0
- app/helpers/principal_memberships_helper.rb app/helpers/principal_memberships_helper.rb +2 -0
- app/helpers/projects_helper.rb app/helpers/projects_helper.rb +2 -0
- app/helpers/queries_helper.rb app/helpers/queries_helper.rb +2 -0
- app/helpers/reports_helper.rb app/helpers/reports_helper.rb +2 -0
- app/helpers/repositories_helper.rb app/helpers/repositories_helper.rb +2 -0
- app/helpers/roles_helper.rb app/helpers/roles_helper.rb +2 -0
- app/helpers/routes_helper.rb app/helpers/routes_helper.rb +2 -0
- app/helpers/search_helper.rb app/helpers/search_helper.rb +2 -0
- app/helpers/settings_helper.rb app/helpers/settings_helper.rb +2 -0
- app/helpers/sort_helper.rb app/helpers/sort_helper.rb +2 -0
- app/helpers/timelog_helper.rb app/helpers/timelog_helper.rb +2 -0
- app/helpers/trackers_helper.rb app/helpers/trackers_helper.rb +2 -0
- app/helpers/users_helper.rb app/helpers/users_helper.rb +2 -0
- app/helpers/versions_helper.rb app/helpers/versions_helper.rb +2 -0
- app/helpers/watchers_helper.rb app/helpers/watchers_helper.rb +2 -0
- app/helpers/welcome_helper.rb app/helpers/welcome_helper.rb +2 -0
- app/helpers/wiki_helper.rb app/helpers/wiki_helper.rb +2 -0
- app/helpers/workflows_helper.rb app/helpers/workflows_helper.rb +2 -0
- app/models/attachment.rb app/models/attachment.rb +2 -0
- app/models/auth_source.rb app/models/auth_source.rb +2 -0
- app/models/auth_source_ldap.rb app/models/auth_source_ldap.rb +2 -0
- app/models/board.rb app/models/board.rb +2 -0
- app/models/change.rb app/models/change.rb +2 -0
- app/models/changeset.rb app/models/changeset.rb +2 -0
- app/models/comment.rb app/models/comment.rb +2 -0
- app/models/custom_field.rb app/models/custom_field.rb +2 -0
- app/models/custom_field_enumeration.rb app/models/custom_field_enumeration.rb +2 -0
- app/models/custom_field_value.rb app/models/custom_field_value.rb +2 -0
- app/models/custom_value.rb app/models/custom_value.rb +2 -0
- app/models/document.rb app/models/document.rb +2 -0
- app/models/document_category.rb app/models/document_category.rb +2 -0
- app/models/document_category_custom_field.rb app/models/document_category_custom_field.rb +2 -0
- app/models/document_custom_field.rb app/models/document_custom_field.rb +2 -0
- app/models/email_address.rb app/models/email_address.rb +2 -0
- app/models/enabled_module.rb app/models/enabled_module.rb +2 -0
- app/models/enumeration.rb app/models/enumeration.rb +2 -0
- app/models/group.rb app/models/group.rb +2 -0
- app/models/group_anonymous.rb app/models/group_anonymous.rb +2 -0
- app/models/group_builtin.rb app/models/group_builtin.rb +2 -0
- app/models/group_custom_field.rb app/models/group_custom_field.rb +2 -0
- app/models/group_non_member.rb app/models/group_non_member.rb +2 -0
- app/models/import.rb app/models/import.rb +2 -0
- app/models/import_item.rb app/models/import_item.rb +2 -0
- app/models/issue.rb app/models/issue.rb +2 -0
- app/models/issue_category.rb app/models/issue_category.rb +2 -0
- app/models/issue_custom_field.rb app/models/issue_custom_field.rb +2 -0
- app/models/issue_import.rb app/models/issue_import.rb +2 -0
- app/models/issue_priority.rb app/models/issue_priority.rb +2 -0
- app/models/issue_priority_custom_field.rb app/models/issue_priority_custom_field.rb +2 -0
- app/models/issue_query.rb app/models/issue_query.rb +2 -0
- app/models/issue_relation.rb app/models/issue_relation.rb +2 -0
- app/models/issue_status.rb app/models/issue_status.rb +2 -0
- app/models/journal.rb app/models/journal.rb +2 -0
- app/models/journal_detail.rb app/models/journal_detail.rb +2 -0
- app/models/mail_handler.rb app/models/mail_handler.rb +2 -0
- app/models/mailer.rb app/models/mailer.rb +2 -0
- app/models/member.rb app/models/member.rb +2 -0
- app/models/member_role.rb app/models/member_role.rb +2 -0
- app/models/message.rb app/models/message.rb +2 -0
- app/models/news.rb app/models/news.rb +2 -0
- app/models/principal.rb app/models/principal.rb +2 -0
- app/models/project.rb app/models/project.rb +2 -0
- app/models/project_custom_field.rb app/models/project_custom_field.rb +2 -0
- app/models/query.rb app/models/query.rb +2 -0
- app/models/repository.rb app/models/repository.rb +2 -0
- app/models/repository/bazaar.rb app/models/repository/bazaar.rb +2 -0
- app/models/repository/cvs.rb app/models/repository/cvs.rb +2 -0
- app/models/repository/filesystem.rb app/models/repository/filesystem.rb +2 -0
- app/models/repository/git.rb app/models/repository/git.rb +2 -0
- app/models/repository/mercurial.rb app/models/repository/mercurial.rb +2 -0
- app/models/repository/subversion.rb app/models/repository/subversion.rb +2 -0
- app/models/role.rb app/models/role.rb +2 -0
- app/models/setting.rb app/models/setting.rb +2 -0
- app/models/time_entry.rb app/models/time_entry.rb +2 -0
- app/models/time_entry_activity.rb app/models/time_entry_activity.rb +2 -0
- app/models/time_entry_activity_custom_field.rb app/models/time_entry_activity_custom_field.rb +2 -0
- app/models/time_entry_custom_field.rb app/models/time_entry_custom_field.rb +2 -0
- app/models/time_entry_query.rb app/models/time_entry_query.rb +2 -0
- app/models/token.rb app/models/token.rb +2 -0
- app/models/tracker.rb app/models/tracker.rb +2 -0
- app/models/user.rb app/models/user.rb +2 -0
- app/models/user_custom_field.rb app/models/user_custom_field.rb +2 -0
- app/models/user_preference.rb app/models/user_preference.rb +2 -0
- app/models/version.rb app/models/version.rb +2 -0
- app/models/version_custom_field.rb app/models/version_custom_field.rb +2 -0
- app/models/watcher.rb app/models/watcher.rb +2 -0
- app/models/wiki.rb app/models/wiki.rb +2 -0
- app/models/wiki_content.rb app/models/wiki_content.rb +2 -0
- app/models/wiki_content_version.rb app/models/wiki_content_version.rb +119 -117
- app/models/wiki_page.rb app/models/wiki_page.rb +2 -0
- app/models/wiki_redirect.rb app/models/wiki_redirect.rb +2 -0
- app/models/workflow_permission.rb app/models/workflow_permission.rb +2 -0
- app/models/workflow_rule.rb app/models/workflow_rule.rb +2 -0
- app/models/workflow_transition.rb app/models/workflow_transition.rb +2 -0
- app/views/common/feed.atom.builder app/views/common/feed.atom.builder +2 -0
- app/views/journals/index.builder app/views/journals/index.builder +2 -0
- bin/about bin/about +1 -0
- bin/bundle bin/bundle +2 -0
- bin/changelog.rb bin/changelog.rb +2 -0
- bin/rails bin/rails +2 -0
- bin/rake bin/rake +2 -0
- config.ru config.ru +2 -0
- config/application.rb config/application.rb +2 -0
- config/boot.rb config/boot.rb +2 -0
- config/environment.rb config/environment.rb +2 -0
- config/environments/development.rb config/environments/development.rb +2 -0
- config/environments/production.rb config/environments/production.rb +2 -0
- config/environments/test.rb config/environments/test.rb +2 -0
- config/environments/test_pgsql.rb config/environments/test_pgsql.rb +2 -0
- config/environments/test_sqlite3.rb config/environments/test_sqlite3.rb +2 -0
- config/initializers/00-core_plugins.rb config/initializers/00-core_plugins.rb +2 -0
- config/initializers/10-patches.rb config/initializers/10-patches.rb +2 -0
- config/initializers/20-mime_types.rb config/initializers/20-mime_types.rb +2 -0
- config/initializers/30-redmine.rb config/initializers/30-redmine.rb +2 -0
- config/initializers/backtrace_silencers.rb config/initializers/backtrace_silencers.rb +2 -0
- config/initializers/inflections.rb config/initializers/inflections.rb +2 -0
- config/routes.rb config/routes.rb +2 -0
- db/migrate/001_setup.rb db/migrate/001_setup.rb +2 -0
- db/migrate/002_issue_move.rb db/migrate/002_issue_move.rb +2 -0
- db/migrate/003_issue_add_note.rb db/migrate/003_issue_add_note.rb +2 -0
- db/migrate/004_export_pdf.rb db/migrate/004_export_pdf.rb +2 -0
- db/migrate/005_issue_start_date.rb db/migrate/005_issue_start_date.rb +2 -0
- db/migrate/006_calendar_and_activity.rb db/migrate/006_calendar_and_activity.rb +2 -0
- db/migrate/007_create_journals.rb db/migrate/007_create_journals.rb +2 -0
- db/migrate/008_create_user_preferences.rb db/migrate/008_create_user_preferences.rb +2 -0
- db/migrate/009_add_hide_mail_pref.rb db/migrate/009_add_hide_mail_pref.rb +2 -0
- db/migrate/010_create_comments.rb db/migrate/010_create_comments.rb +2 -0
- db/migrate/011_add_news_comments_count.rb db/migrate/011_add_news_comments_count.rb +2 -0
- db/migrate/012_add_comments_permissions.rb db/migrate/012_add_comments_permissions.rb +2 -0
- db/migrate/013_create_queries.rb db/migrate/013_create_queries.rb +2 -0
- db/migrate/014_add_queries_permissions.rb db/migrate/014_add_queries_permissions.rb +2 -0
- db/migrate/015_create_repositories.rb db/migrate/015_create_repositories.rb +2 -0
- db/migrate/016_add_repositories_permissions.rb db/migrate/016_add_repositories_permissions.rb +2 -0
- db/migrate/017_create_settings.rb db/migrate/017_create_settings.rb +2 -0
- db/migrate/018_set_doc_and_files_notifications.rb db/migrate/018_set_doc_and_files_notifications.rb +2 -0
- db/migrate/019_add_issue_status_position.rb db/migrate/019_add_issue_status_position.rb +2 -0
- db/migrate/020_add_role_position.rb db/migrate/020_add_role_position.rb +2 -0
- db/migrate/021_add_tracker_position.rb db/migrate/021_add_tracker_position.rb +2 -0
- db/migrate/022_serialize_possibles_values.rb db/migrate/022_serialize_possibles_values.rb +2 -0
- db/migrate/023_add_tracker_is_in_roadmap.rb db/migrate/023_add_tracker_is_in_roadmap.rb +2 -0
- db/migrate/024_add_roadmap_permission.rb db/migrate/024_add_roadmap_permission.rb +2 -0
- db/migrate/025_add_search_permission.rb db/migrate/025_add_search_permission.rb +2 -0
- db/migrate/026_add_repository_login_and_password.rb db/migrate/026_add_repository_login_and_password.rb +2 -0
- db/migrate/027_create_wikis.rb db/migrate/027_create_wikis.rb +2 -0
- db/migrate/028_create_wiki_pages.rb db/migrate/028_create_wiki_pages.rb +2 -0
- db/migrate/029_create_wiki_contents.rb db/migrate/029_create_wiki_contents.rb +2 -0
- db/migrate/030_add_projects_feeds_permissions.rb db/migrate/030_add_projects_feeds_permissions.rb +2 -0
- db/migrate/031_add_repository_root_url.rb db/migrate/031_add_repository_root_url.rb +2 -0
- db/migrate/032_create_time_entries.rb db/migrate/032_create_time_entries.rb +2 -0
- db/migrate/033_add_timelog_permissions.rb db/migrate/033_add_timelog_permissions.rb +2 -0
- db/migrate/034_create_changesets.rb db/migrate/034_create_changesets.rb +2 -0
- db/migrate/035_create_changes.rb db/migrate/035_create_changes.rb +2 -0
- db/migrate/036_add_changeset_commit_date.rb db/migrate/036_add_changeset_commit_date.rb +2 -0
- db/migrate/037_add_project_identifier.rb db/migrate/037_add_project_identifier.rb +2 -0
- db/migrate/038_add_custom_field_is_filter.rb db/migrate/038_add_custom_field_is_filter.rb +2 -0
- db/migrate/039_create_watchers.rb db/migrate/039_create_watchers.rb +2 -0
- db/migrate/040_create_changesets_issues.rb db/migrate/040_create_changesets_issues.rb +2 -0
- db/migrate/041_rename_comment_to_comments.rb db/migrate/041_rename_comment_to_comments.rb +2 -0
- db/migrate/042_create_issue_relations.rb db/migrate/042_create_issue_relations.rb +2 -0
- db/migrate/043_add_relations_permissions.rb db/migrate/043_add_relations_permissions.rb +2 -0
- db/migrate/044_set_language_length_to_five.rb db/migrate/044_set_language_length_to_five.rb +2 -0
- db/migrate/045_create_boards.rb db/migrate/045_create_boards.rb +2 -0
- db/migrate/046_create_messages.rb db/migrate/046_create_messages.rb +2 -0
- db/migrate/047_add_boards_permissions.rb db/migrate/047_add_boards_permissions.rb +2 -0
- db/migrate/048_allow_null_version_effective_date.rb db/migrate/048_allow_null_version_effective_date.rb +2 -0
- db/migrate/049_add_wiki_destroy_page_permission.rb db/migrate/049_add_wiki_destroy_page_permission.rb +2 -0
- db/migrate/050_add_wiki_attachments_permissions.rb db/migrate/050_add_wiki_attachments_permissions.rb +2 -0
- db/migrate/051_add_project_status.rb db/migrate/051_add_project_status.rb +2 -0
- db/migrate/052_add_changes_revision.rb db/migrate/052_add_changes_revision.rb +2 -0
- db/migrate/053_add_changes_branch.rb db/migrate/053_add_changes_branch.rb +2 -0
- db/migrate/054_add_changesets_scmid.rb db/migrate/054_add_changesets_scmid.rb +2 -0
- db/migrate/055_add_repositories_type.rb db/migrate/055_add_repositories_type.rb +2 -0
- db/migrate/056_add_repositories_changes_permission.rb db/migrate/056_add_repositories_changes_permission.rb +2 -0
- db/migrate/057_add_versions_wiki_page_title.rb db/migrate/057_add_versions_wiki_page_title.rb +2 -0
- db/migrate/058_add_issue_categories_assigned_to_id.rb db/migrate/058_add_issue_categories_assigned_to_id.rb +2 -0
- db/migrate/059_add_roles_assignable.rb db/migrate/059_add_roles_assignable.rb +2 -0
- db/migrate/060_change_changesets_committer_limit.rb db/migrate/060_change_changesets_committer_limit.rb +2 -0
- db/migrate/061_add_roles_builtin.rb db/migrate/061_add_roles_builtin.rb +2 -0
- db/migrate/062_insert_builtin_roles.rb db/migrate/062_insert_builtin_roles.rb +2 -0
- db/migrate/063_add_roles_permissions.rb db/migrate/063_add_roles_permissions.rb +2 -0
- db/migrate/064_drop_permissions.rb db/migrate/064_drop_permissions.rb +2 -0
- db/migrate/065_add_settings_updated_on.rb db/migrate/065_add_settings_updated_on.rb +2 -0
- db/migrate/066_add_custom_value_customized_index.rb db/migrate/066_add_custom_value_customized_index.rb +2 -0
- db/migrate/067_create_wiki_redirects.rb db/migrate/067_create_wiki_redirects.rb +2 -0
- db/migrate/068_create_enabled_modules.rb db/migrate/068_create_enabled_modules.rb +2 -0
- db/migrate/069_add_issues_estimated_hours.rb db/migrate/069_add_issues_estimated_hours.rb +2 -0
- db/migrate/070_change_attachments_content_type_limit.rb db/migrate/070_change_attachments_content_type_limit.rb +2 -0
- db/migrate/071_add_queries_column_names.rb db/migrate/071_add_queries_column_names.rb +2 -0
- db/migrate/072_add_enumerations_position.rb db/migrate/072_add_enumerations_position.rb +2 -0
- db/migrate/073_add_enumerations_is_default.rb db/migrate/073_add_enumerations_is_default.rb +2 -0
- db/migrate/074_add_auth_sources_tls.rb db/migrate/074_add_auth_sources_tls.rb +2 -0
- db/migrate/075_add_members_mail_notification.rb db/migrate/075_add_members_mail_notification.rb +2 -0
- db/migrate/076_allow_null_position.rb db/migrate/076_allow_null_position.rb +2 -0
- db/migrate/077_remove_issue_statuses_html_color.rb db/migrate/077_remove_issue_statuses_html_color.rb +2 -0
- db/migrate/078_add_custom_fields_position.rb db/migrate/078_add_custom_fields_position.rb +2 -0
- db/migrate/079_add_user_preferences_time_zone.rb db/migrate/079_add_user_preferences_time_zone.rb +2 -0
- db/migrate/080_add_users_type.rb db/migrate/080_add_users_type.rb +2 -0
- db/migrate/081_create_projects_trackers.rb db/migrate/081_create_projects_trackers.rb +2 -0
- db/migrate/082_add_messages_locked.rb db/migrate/082_add_messages_locked.rb +2 -0
- db/migrate/083_add_messages_sticky.rb db/migrate/083_add_messages_sticky.rb +2 -0
- db/migrate/084_change_auth_sources_account_limit.rb db/migrate/084_change_auth_sources_account_limit.rb +2 -0
- db/migrate/085_add_role_tracker_old_status_index_to_workflows.rb ...ate/085_add_role_tracker_old_status_index_to_workflows.rb +2 -0
- db/migrate/086_add_custom_fields_searchable.rb db/migrate/086_add_custom_fields_searchable.rb +2 -0
- db/migrate/087_change_projects_description_to_text.rb db/migrate/087_change_projects_description_to_text.rb +2 -0
- db/migrate/088_add_custom_fields_default_value.rb db/migrate/088_add_custom_fields_default_value.rb +2 -0
- db/migrate/089_add_attachments_description.rb db/migrate/089_add_attachments_description.rb +2 -0
- db/migrate/090_change_versions_name_limit.rb db/migrate/090_change_versions_name_limit.rb +2 -0
- db/migrate/091_change_changesets_revision_to_string.rb db/migrate/091_change_changesets_revision_to_string.rb +2 -0
- db/migrate/092_change_changes_from_revision_to_string.rb db/migrate/092_change_changes_from_revision_to_string.rb +2 -0
- db/migrate/093_add_wiki_pages_protected.rb db/migrate/093_add_wiki_pages_protected.rb +2 -0
- db/migrate/094_change_projects_homepage_limit.rb db/migrate/094_change_projects_homepage_limit.rb +2 -0
- db/migrate/095_add_wiki_pages_parent_id.rb db/migrate/095_add_wiki_pages_parent_id.rb +2 -0
- db/migrate/096_add_commit_access_permission.rb db/migrate/096_add_commit_access_permission.rb +2 -0
- db/migrate/097_add_view_wiki_edits_permission.rb db/migrate/097_add_view_wiki_edits_permission.rb +2 -0
- db/migrate/098_set_topic_authors_as_watchers.rb db/migrate/098_set_topic_authors_as_watchers.rb +2 -0
- db/migrate/099_add_delete_wiki_pages_attachments_permission.rb ...grate/099_add_delete_wiki_pages_attachments_permission.rb +2 -0
- db/migrate/100_add_changesets_user_id.rb db/migrate/100_add_changesets_user_id.rb +2 -0
- db/migrate/101_populate_changesets_user_id.rb db/migrate/101_populate_changesets_user_id.rb +2 -0
- db/migrate/102_add_custom_fields_editable.rb db/migrate/102_add_custom_fields_editable.rb +2 -0
- db/migrate/103_set_custom_fields_editable.rb db/migrate/103_set_custom_fields_editable.rb +2 -0
- db/migrate/104_add_projects_lft_and_rgt.rb db/migrate/104_add_projects_lft_and_rgt.rb +2 -0
- db/migrate/105_build_projects_tree.rb db/migrate/105_build_projects_tree.rb +2 -0
- db/migrate/106_remove_projects_projects_count.rb db/migrate/106_remove_projects_projects_count.rb +2 -0
- db/migrate/107_add_open_id_authentication_tables.rb db/migrate/107_add_open_id_authentication_tables.rb +2 -0
- db/migrate/108_add_identity_url_to_users.rb db/migrate/108_add_identity_url_to_users.rb +2 -0
- db/migrate/20090214190337_add_watchers_user_id_type_index.rb db/migrate/20090214190337_add_watchers_user_id_type_index.rb +2 -0
- db/migrate/20090312172426_add_queries_sort_criteria.rb db/migrate/20090312172426_add_queries_sort_criteria.rb +2 -0
- db/migrate/20090312194159_add_projects_trackers_unique_index.rb ...rate/20090312194159_add_projects_trackers_unique_index.rb +2 -0
- db/migrate/20090318181151_extend_settings_name.rb db/migrate/20090318181151_extend_settings_name.rb +2 -0
- db/migrate/20090323224724_add_type_to_enumerations.rb db/migrate/20090323224724_add_type_to_enumerations.rb +2 -0
- db/migrate/20090401221305_update_enumerations_to_sti.rb db/migrate/20090401221305_update_enumerations_to_sti.rb +2 -0
- db/migrate/20090401231134_add_active_field_to_enumerations.rb ...igrate/20090401231134_add_active_field_to_enumerations.rb +2 -0
- db/migrate/20090403001910_add_project_to_enumerations.rb db/migrate/20090403001910_add_project_to_enumerations.rb +2 -0
- db/migrate/20090406161854_add_parent_id_to_enumerations.rb db/migrate/20090406161854_add_parent_id_to_enumerations.rb +2 -0
- db/migrate/20090425161243_add_queries_group_by.rb db/migrate/20090425161243_add_queries_group_by.rb +2 -0
- db/migrate/20090503121501_create_member_roles.rb db/migrate/20090503121501_create_member_roles.rb +2 -0
- db/migrate/20090503121505_populate_member_roles.rb db/migrate/20090503121505_populate_member_roles.rb +2 -0
- db/migrate/20090503121510_drop_members_role_id.rb db/migrate/20090503121510_drop_members_role_id.rb +2 -0
- db/migrate/20090614091200_fix_messages_sticky_null.rb db/migrate/20090614091200_fix_messages_sticky_null.rb +2 -0
- db/migrate/20090704172350_populate_users_type.rb db/migrate/20090704172350_populate_users_type.rb +2 -0
- db/migrate/20090704172355_create_groups_users.rb db/migrate/20090704172355_create_groups_users.rb +2 -0
- db/migrate/20090704172358_add_member_roles_inherited_from.rb db/migrate/20090704172358_add_member_roles_inherited_from.rb +2 -0
- db/migrate/20091010093521_fix_users_custom_values.rb db/migrate/20091010093521_fix_users_custom_values.rb +2 -0
- db/migrate/20091017212227_add_missing_indexes_to_workflows.rb ...igrate/20091017212227_add_missing_indexes_to_workflows.rb +2 -0
- db/migrate/20091017212457_add_missing_indexes_to_custom_fields_projects.rb ...17212457_add_missing_indexes_to_custom_fields_projects.rb +2 -0
- db/migrate/20091017212644_add_missing_indexes_to_messages.rb db/migrate/20091017212644_add_missing_indexes_to_messages.rb +2 -0
- db/migrate/20091017212938_add_missing_indexes_to_repositories.rb ...ate/20091017212938_add_missing_indexes_to_repositories.rb +2 -0
- db/migrate/20091017213027_add_missing_indexes_to_comments.rb db/migrate/20091017213027_add_missing_indexes_to_comments.rb +2 -0
- db/migrate/20091017213113_add_missing_indexes_to_enumerations.rb ...ate/20091017213113_add_missing_indexes_to_enumerations.rb +2 -0
- db/migrate/20091017213151_add_missing_indexes_to_wiki_pages.rb ...grate/20091017213151_add_missing_indexes_to_wiki_pages.rb +2 -0
- db/migrate/20091017213228_add_missing_indexes_to_watchers.rb db/migrate/20091017213228_add_missing_indexes_to_watchers.rb +2 -0
- db/migrate/20091017213257_add_missing_indexes_to_auth_sources.rb ...ate/20091017213257_add_missing_indexes_to_auth_sources.rb +2 -0
- db/migrate/20091017213332_add_missing_indexes_to_documents.rb ...igrate/20091017213332_add_missing_indexes_to_documents.rb +2 -0
- db/migrate/20091017213444_add_missing_indexes_to_tokens.rb db/migrate/20091017213444_add_missing_indexes_to_tokens.rb +2 -0
- db/migrate/20091017213536_add_missing_indexes_to_changesets.rb ...grate/20091017213536_add_missing_indexes_to_changesets.rb +2 -0
- db/migrate/20091017213642_add_missing_indexes_to_issue_categories.rb ...20091017213642_add_missing_indexes_to_issue_categories.rb +2 -0
- db/migrate/20091017213716_add_missing_indexes_to_member_roles.rb ...ate/20091017213716_add_missing_indexes_to_member_roles.rb +2 -0
- db/migrate/20091017213757_add_missing_indexes_to_boards.rb db/migrate/20091017213757_add_missing_indexes_to_boards.rb +2 -0
- db/migrate/20091017213835_add_missing_indexes_to_user_preferences.rb ...20091017213835_add_missing_indexes_to_user_preferences.rb +2 -0
- db/migrate/20091017213910_add_missing_indexes_to_issues.rb db/migrate/20091017213910_add_missing_indexes_to_issues.rb +2 -0
- db/migrate/20091017214015_add_missing_indexes_to_members.rb db/migrate/20091017214015_add_missing_indexes_to_members.rb +2 -0
- db/migrate/20091017214107_add_missing_indexes_to_custom_fields.rb ...te/20091017214107_add_missing_indexes_to_custom_fields.rb +2 -0
- db/migrate/20091017214136_add_missing_indexes_to_queries.rb db/migrate/20091017214136_add_missing_indexes_to_queries.rb +2 -0
- db/migrate/20091017214236_add_missing_indexes_to_time_entries.rb ...ate/20091017214236_add_missing_indexes_to_time_entries.rb +2 -0
- db/migrate/20091017214308_add_missing_indexes_to_news.rb db/migrate/20091017214308_add_missing_indexes_to_news.rb +2 -0
- db/migrate/20091017214336_add_missing_indexes_to_users.rb db/migrate/20091017214336_add_missing_indexes_to_users.rb +2 -0
- db/migrate/20091017214406_add_missing_indexes_to_attachments.rb ...rate/20091017214406_add_missing_indexes_to_attachments.rb +2 -0
- db/migrate/20091017214440_add_missing_indexes_to_wiki_contents.rb ...te/20091017214440_add_missing_indexes_to_wiki_contents.rb +2 -0
- db/migrate/20091017214519_add_missing_indexes_to_custom_values.rb ...te/20091017214519_add_missing_indexes_to_custom_values.rb +2 -0
- db/migrate/20091017214611_add_missing_indexes_to_journals.rb db/migrate/20091017214611_add_missing_indexes_to_journals.rb +2 -0
- db/migrate/20091017214644_add_missing_indexes_to_issue_relations.rb .../20091017214644_add_missing_indexes_to_issue_relations.rb +2 -0
- db/migrate/20091017214720_add_missing_indexes_to_wiki_redirects.rb ...e/20091017214720_add_missing_indexes_to_wiki_redirects.rb +2 -0
- db/migrate/20091017214750_add_missing_indexes_to_custom_fields_trackers.rb ...17214750_add_missing_indexes_to_custom_fields_trackers.rb +2 -0
- db/migrate/20091025163651_add_activity_indexes.rb db/migrate/20091025163651_add_activity_indexes.rb +2 -0
- db/migrate/20091108092559_add_versions_status.rb db/migrate/20091108092559_add_versions_status.rb +2 -0
- db/migrate/20091114105931_add_view_issues_permission.rb db/migrate/20091114105931_add_view_issues_permission.rb +2 -0
- db/migrate/20091123212029_add_default_done_ratio_to_issue_status.rb .../20091123212029_add_default_done_ratio_to_issue_status.rb +2 -0
- db/migrate/20091205124427_add_versions_sharing.rb db/migrate/20091205124427_add_versions_sharing.rb +2 -0
- db/migrate/20091220183509_add_lft_and_rgt_indexes_to_projects.rb ...ate/20091220183509_add_lft_and_rgt_indexes_to_projects.rb +2 -0
- db/migrate/20091220183727_add_index_to_settings_name.rb db/migrate/20091220183727_add_index_to_settings_name.rb +2 -0
- db/migrate/20091220184736_add_indexes_to_issue_status.rb db/migrate/20091220184736_add_indexes_to_issue_status.rb +2 -0
- db/migrate/20091225164732_remove_enumerations_opt.rb db/migrate/20091225164732_remove_enumerations_opt.rb +2 -0
- db/migrate/20091227112908_change_wiki_contents_text_limit.rb db/migrate/20091227112908_change_wiki_contents_text_limit.rb +2 -0
- db/migrate/20100129193402_change_users_mail_notification_to_string.rb ...0100129193402_change_users_mail_notification_to_string.rb +2 -0
- db/migrate/20100129193813_update_mail_notification_values.rb db/migrate/20100129193813_update_mail_notification_values.rb +2 -0
- db/migrate/20100221100219_add_index_on_changesets_scmid.rb db/migrate/20100221100219_add_index_on_changesets_scmid.rb +2 -0
- db/migrate/20100313132032_add_issues_nested_sets_columns.rb db/migrate/20100313132032_add_issues_nested_sets_columns.rb +2 -0
- db/migrate/20100313171051_add_index_on_issues_nested_set.rb db/migrate/20100313171051_add_index_on_issues_nested_set.rb +2 -0
- db/migrate/20100705164950_change_changes_path_length_limit.rb ...igrate/20100705164950_change_changes_path_length_limit.rb +2 -0
- db/migrate/20100819172912_enable_calendar_and_gantt_modules_where_appropriate.rb ...12_enable_calendar_and_gantt_modules_where_appropriate.rb +2 -0
- db/migrate/20101104182107_add_unique_index_on_members.rb db/migrate/20101104182107_add_unique_index_on_members.rb +2 -0
- db/migrate/20101107130441_add_custom_fields_visible.rb db/migrate/20101107130441_add_custom_fields_visible.rb +2 -0
- db/migrate/20101114115114_change_projects_name_limit.rb db/migrate/20101114115114_change_projects_name_limit.rb +2 -0
- db/migrate/20101114115359_change_projects_identifier_limit.rb ...igrate/20101114115359_change_projects_identifier_limit.rb +2 -0
- db/migrate/20110220160626_add_workflows_assignee_and_author.rb ...grate/20110220160626_add_workflows_assignee_and_author.rb +2 -0
- db/migrate/20110223180944_add_users_salt.rb db/migrate/20110223180944_add_users_salt.rb +2 -0
- db/migrate/20110223180953_salt_user_passwords.rb db/migrate/20110223180953_salt_user_passwords.rb +2 -0
- db/migrate/20110224000000_add_repositories_path_encoding.rb db/migrate/20110224000000_add_repositories_path_encoding.rb +2 -0
- db/migrate/20110226120112_change_repositories_password_limit.rb ...rate/20110226120112_change_repositories_password_limit.rb +2 -0
- db/migrate/20110226120132_change_auth_sources_account_password_limit.rb ...10226120132_change_auth_sources_account_password_limit.rb +2 -0
- db/migrate/20110227125750_change_journal_details_values_to_text.rb ...e/20110227125750_change_journal_details_values_to_text.rb +2 -0
- db/migrate/20110228000000_add_repositories_log_encoding.rb db/migrate/20110228000000_add_repositories_log_encoding.rb +2 -0
- db/migrate/20110228000100_copy_repositories_log_encoding.rb db/migrate/20110228000100_copy_repositories_log_encoding.rb +2 -0
- db/migrate/20110401192910_add_index_to_users_type.rb db/migrate/20110401192910_add_index_to_users_type.rb +2 -0
- db/migrate/20110408103312_add_roles_issues_visibility.rb db/migrate/20110408103312_add_roles_issues_visibility.rb +2 -0
- db/migrate/20110412065600_add_issues_is_private.rb db/migrate/20110412065600_add_issues_is_private.rb +2 -0
- db/migrate/20110511000000_add_repositories_extra_info.rb db/migrate/20110511000000_add_repositories_extra_info.rb +2 -0
- db/migrate/20110902000000_create_changeset_parents.rb db/migrate/20110902000000_create_changeset_parents.rb +2 -0
- db/migrate/20111201201315_add_unique_index_to_issue_relations.rb ...ate/20111201201315_add_unique_index_to_issue_relations.rb +2 -0
- db/migrate/20120115143024_add_repositories_identifier.rb db/migrate/20120115143024_add_repositories_identifier.rb +2 -0
- db/migrate/20120115143100_add_repositories_is_default.rb db/migrate/20120115143100_add_repositories_is_default.rb +2 -0
- db/migrate/20120115143126_set_default_repositories.rb db/migrate/20120115143126_set_default_repositories.rb +2 -0
- db/migrate/20120127174243_add_custom_fields_multiple.rb db/migrate/20120127174243_add_custom_fields_multiple.rb +2 -0
- db/migrate/20120205111326_change_users_login_limit.rb db/migrate/20120205111326_change_users_login_limit.rb +2 -0
- db/migrate/20120223110929_change_attachments_container_defaults.rb ...e/20120223110929_change_attachments_container_defaults.rb +2 -0
- db/migrate/20120301153455_add_auth_sources_filter.rb db/migrate/20120301153455_add_auth_sources_filter.rb +2 -0
- db/migrate/20120422150750_change_repositories_to_full_sti.rb db/migrate/20120422150750_change_repositories_to_full_sti.rb +2 -0
- db/migrate/20120705074331_add_trackers_fields_bits.rb db/migrate/20120705074331_add_trackers_fields_bits.rb +2 -0
- db/migrate/20120707064544_add_auth_sources_timeout.rb db/migrate/20120707064544_add_auth_sources_timeout.rb +2 -0
- db/migrate/20120714122000_add_workflows_type.rb db/migrate/20120714122000_add_workflows_type.rb +2 -0
- db/migrate/20120714122100_update_workflows_to_sti.rb db/migrate/20120714122100_update_workflows_to_sti.rb +2 -0
- db/migrate/20120714122200_add_workflows_rule_fields.rb db/migrate/20120714122200_add_workflows_rule_fields.rb +2 -0
- db/migrate/20120731164049_add_boards_parent_id.rb db/migrate/20120731164049_add_boards_parent_id.rb +2 -0
- db/migrate/20120930112914_add_journals_private_notes.rb db/migrate/20120930112914_add_journals_private_notes.rb +2 -0
- db/migrate/20121026002032_add_enumerations_position_name.rb db/migrate/20121026002032_add_enumerations_position_name.rb +2 -0
- db/migrate/20121026003537_populate_enumerations_position_name.rb ...ate/20121026003537_populate_enumerations_position_name.rb +2 -0
- db/migrate/20121209123234_add_queries_type.rb db/migrate/20121209123234_add_queries_type.rb +2 -0
- db/migrate/20121209123358_update_queries_to_sti.rb db/migrate/20121209123358_update_queries_to_sti.rb +2 -0
- db/migrate/20121213084931_add_attachments_disk_directory.rb db/migrate/20121213084931_add_attachments_disk_directory.rb +2 -0
- db/migrate/20130110122628_split_documents_permissions.rb db/migrate/20130110122628_split_documents_permissions.rb +2 -0
- db/migrate/20130201184705_add_unique_index_on_tokens_value.rb ...igrate/20130201184705_add_unique_index_on_tokens_value.rb +2 -0
- db/migrate/20130202090625_add_projects_inherit_members.rb db/migrate/20130202090625_add_projects_inherit_members.rb +2 -0
- db/migrate/20130207175206_add_unique_index_on_custom_fields_trackers.rb ...30207175206_add_unique_index_on_custom_fields_trackers.rb +2 -0
- db/migrate/20130207181455_add_unique_index_on_custom_fields_projects.rb ...30207181455_add_unique_index_on_custom_fields_projects.rb +2 -0
- db/migrate/20130215073721_change_users_lastname_length_to_255.rb ...ate/20130215073721_change_users_lastname_length_to_255.rb +2 -0
- db/migrate/20130215111127_add_issues_closed_on.rb db/migrate/20130215111127_add_issues_closed_on.rb +2 -0
- db/migrate/20130215111141_populate_issues_closed_on.rb db/migrate/20130215111141_populate_issues_closed_on.rb +2 -0
- db/migrate/20130217094251_remove_issues_default_fk_values.rb db/migrate/20130217094251_remove_issues_default_fk_values.rb +2 -0
- db/migrate/20130602092539_create_queries_roles.rb db/migrate/20130602092539_create_queries_roles.rb +2 -0
- db/migrate/20130710182539_add_queries_visibility.rb db/migrate/20130710182539_add_queries_visibility.rb +2 -0
- db/migrate/20130713104233_create_custom_fields_roles.rb db/migrate/20130713104233_create_custom_fields_roles.rb +2 -0
- db/migrate/20130713111657_add_queries_options.rb db/migrate/20130713111657_add_queries_options.rb +2 -0
- db/migrate/20130729070143_add_users_must_change_passwd.rb db/migrate/20130729070143_add_users_must_change_passwd.rb +2 -0
- db/migrate/20130911193200_remove_eols_from_attachments_filename.rb ...e/20130911193200_remove_eols_from_attachments_filename.rb +2 -0
- db/migrate/20131004113137_support_for_multiple_commit_keywords.rb ...te/20131004113137_support_for_multiple_commit_keywords.rb +2 -0
- db/migrate/20131005100610_add_repositories_created_on.rb db/migrate/20131005100610_add_repositories_created_on.rb +2 -0
- db/migrate/20131124175346_add_custom_fields_format_store.rb db/migrate/20131124175346_add_custom_fields_format_store.rb +2 -0
- db/migrate/20131210180802_add_custom_fields_description.rb db/migrate/20131210180802_add_custom_fields_description.rb +2 -0
- db/migrate/20131214094309_remove_custom_fields_min_max_length_default_values.rb ...309_remove_custom_fields_min_max_length_default_values.rb +2 -0
- db/migrate/20131215104612_store_relation_type_in_journal_details.rb .../20131215104612_store_relation_type_in_journal_details.rb +2 -0
- db/migrate/20131218183023_delete_orphan_time_entries_custom_values.rb ...0131218183023_delete_orphan_time_entries_custom_values.rb +2 -0
- db/migrate/20140228130325_change_changesets_comments_limit.rb ...igrate/20140228130325_change_changesets_comments_limit.rb +2 -0
- db/migrate/20140903143914_add_password_changed_at_to_user.rb db/migrate/20140903143914_add_password_changed_at_to_user.rb +7 -5
- db/migrate/20140920094058_insert_builtin_groups.rb db/migrate/20140920094058_insert_builtin_groups.rb +2 -0
- db/migrate/20141029181752_add_trackers_default_status_id.rb db/migrate/20141029181752_add_trackers_default_status_id.rb +2 -0
- db/migrate/20141029181824_remove_issue_statuses_is_default.rb ...igrate/20141029181824_remove_issue_statuses_is_default.rb +2 -0
- db/migrate/20141109112308_add_roles_users_visibility.rb db/migrate/20141109112308_add_roles_users_visibility.rb +2 -0
- db/migrate/20141122124142_add_wiki_redirects_redirects_to_wiki_id.rb ...20141122124142_add_wiki_redirects_redirects_to_wiki_id.rb +2 -0
- db/migrate/20150113194759_create_email_addresses.rb db/migrate/20150113194759_create_email_addresses.rb +2 -0
- db/migrate/20150113211532_populate_email_addresses.rb db/migrate/20150113211532_populate_email_addresses.rb +2 -0
- db/migrate/20150113213922_remove_users_mail.rb db/migrate/20150113213922_remove_users_mail.rb +2 -0
- db/migrate/20150113213955_add_email_addresses_user_id_index.rb ...grate/20150113213955_add_email_addresses_user_id_index.rb +2 -0
- db/migrate/20150208105930_replace_move_issues_permission.rb db/migrate/20150208105930_replace_move_issues_permission.rb +2 -0
- db/migrate/20150510083747_change_documents_title_limit.rb db/migrate/20150510083747_change_documents_title_limit.rb +2 -0
- db/migrate/20150525103953_clear_estimated_hours_on_parent_issues.rb .../20150525103953_clear_estimated_hours_on_parent_issues.rb +2 -0
- db/migrate/20150526183158_add_roles_time_entries_visibility.rb ...grate/20150526183158_add_roles_time_entries_visibility.rb +2 -0
- db/migrate/20150528084820_add_roles_all_roles_managed.rb db/migrate/20150528084820_add_roles_all_roles_managed.rb +2 -0
- db/migrate/20150528092912_create_roles_managed_roles.rb db/migrate/20150528092912_create_roles_managed_roles.rb +2 -0
- db/migrate/20150528093249_add_unique_index_on_roles_managed_roles.rb ...20150528093249_add_unique_index_on_roles_managed_roles.rb +2 -0
- db/migrate/20150725112753_insert_allowed_statuses_for_new_issues.rb .../20150725112753_insert_allowed_statuses_for_new_issues.rb +2 -0
- db/migrate/20150730122707_create_imports.rb db/migrate/20150730122707_create_imports.rb +2 -0
- db/migrate/20150730122735_create_import_items.rb db/migrate/20150730122735_create_import_items.rb +2 -0
- db/migrate/20150921204850_change_time_entries_comments_limit_to_1024.rb ...50921204850_change_time_entries_comments_limit_to_1024.rb +2 -0
- db/migrate/20150921210243_change_wiki_contents_comments_limit_to_1024.rb ...0921210243_change_wiki_contents_comments_limit_to_1024.rb +2 -0
- db/migrate/20151020182334_change_attachments_filesize_limit_to_8.rb .../20151020182334_change_attachments_filesize_limit_to_8.rb +2 -0
- db/migrate/20151020182731_fix_comma_in_user_format_setting_value.rb .../20151020182731_fix_comma_in_user_format_setting_value.rb +2 -0
- db/migrate/20151021184614_change_issue_categories_name_limit_to_60.rb ...0151021184614_change_issue_categories_name_limit_to_60.rb +2 -0
- db/migrate/20151021185456_change_auth_sources_filter_to_text.rb ...rate/20151021185456_change_auth_sources_filter_to_text.rb +2 -0
- db/migrate/20151021190616_change_user_preferences_hide_mail_default_to_true.rb ...0616_change_user_preferences_hide_mail_default_to_true.rb +2 -0
- db/migrate/20151024082034_add_tokens_updated_on.rb db/migrate/20151024082034_add_tokens_updated_on.rb +2 -0
- db/migrate/20151025072118_create_custom_field_enumerations.rb ...igrate/20151025072118_create_custom_field_enumerations.rb +2 -0
- db/migrate/20151031095005_add_projects_default_version_id.rb db/migrate/20151031095005_add_projects_default_version_id.rb +2 -0
- db/migrate/20160404080304_force_password_reset_during_setup.rb ...grate/20160404080304_force_password_reset_during_setup.rb +2 -0
- db/migrate/20160416072926_remove_position_defaults.rb db/migrate/20160416072926_remove_position_defaults.rb +2 -0
- db/migrate/20160529063352_add_roles_settings.rb db/migrate/20160529063352_add_roles_settings.rb +2 -0
- db/migrate/20161001122012_add_tracker_id_index_to_workflows.rb ...grate/20161001122012_add_tracker_id_index_to_workflows.rb +2 -0
- db/migrate/20161002133421_add_index_on_member_roles_inherited_from.rb ...0161002133421_add_index_on_member_roles_inherited_from.rb +2 -0
- db/migrate/20161010081301_change_issues_description_limit.rb db/migrate/20161010081301_change_issues_description_limit.rb +2 -0
- db/migrate/20161010081528_change_journal_details_value_limit.rb ...rate/20161010081528_change_journal_details_value_limit.rb +2 -0
- db/migrate/20161010081600_change_journals_notes_limit.rb db/migrate/20161010081600_change_journals_notes_limit.rb +2 -0
- db/migrate/20161126094932_add_index_on_changesets_issues_issue_id.rb ...20161126094932_add_index_on_changesets_issues_issue_id.rb +7 -5
- db/migrate/20161220091118_add_index_on_issues_parent_id.rb db/migrate/20161220091118_add_index_on_issues_parent_id.rb +2 -0
- db/migrate/20170207050700_add_index_on_disk_filename_to_attachments.rb ...170207050700_add_index_on_disk_filename_to_attachments.rb +2 -0
- db/migrate/20170302015225_change_attachments_digest_limit_to_64.rb ...e/20170302015225_change_attachments_digest_limit_to_64.rb +2 -0
- db/migrate/20170309214320_add_project_default_assigned_to_id.rb ...rate/20170309214320_add_project_default_assigned_to_id.rb +2 -0
- db/migrate/20170320051650_change_repositories_extra_info_limit.rb ...te/20170320051650_change_repositories_extra_info_limit.rb +2 -0
- db/migrate/20170418090031_add_view_news_to_all_existing_roles.rb ...ate/20170418090031_add_view_news_to_all_existing_roles.rb +2 -0
- db/migrate/20170419144536_add_view_messages_to_all_existing_roles.rb ...20170419144536_add_view_messages_to_all_existing_roles.rb +2 -0
- db/migrate/20170723112801_rename_comments_to_content.rb db/migrate/20170723112801_rename_comments_to_content.rb +2 -0
- db/migrate/20180501132547_add_author_id_to_time_entries.rb db/migrate/20180501132547_add_author_id_to_time_entries.rb +2 -0
- db/migrate/20180913072918_add_verify_peer_to_auth_sources.rb db/migrate/20180913072918_add_verify_peer_to_auth_sources.rb +2 -0
- db/migrate/20180923082945_change_sqlite_booleans_to_0_and_1.rb ...grate/20180923082945_change_sqlite_booleans_to_0_and_1.rb +2 -0
- db/migrate/20180923091603_change_sqlite_booleans_default.rb db/migrate/20180923091603_change_sqlite_booleans_default.rb +2 -0
- extra/mail_handler/rdm-mailhandler.rb extra/mail_handler/rdm-mailhandler.rb +2 -0
- extra/sample_plugin/app/controllers/example_controller.rb extra/sample_plugin/app/controllers/example_controller.rb +2 -0
- extra/sample_plugin/app/models/meeting.rb extra/sample_plugin/app/models/meeting.rb +2 -0
- extra/sample_plugin/config/routes.rb extra/sample_plugin/config/routes.rb +2 -0
- extra/sample_plugin/db/migrate/001_create_meetings.rb extra/sample_plugin/db/migrate/001_create_meetings.rb +2 -0
- extra/sample_plugin/init.rb extra/sample_plugin/init.rb +2 -0
- extra/sample_plugin/test/integration/routing_test.rb extra/sample_plugin/test/integration/routing_test.rb +1 -0
- extra/svn/reposman.rb extra/svn/reposman.rb +1 -0
- lib/diff.rb lib/diff.rb +2 -0
- lib/generators/redmine_plugin/redmine_plugin_generator.rb lib/generators/redmine_plugin/redmine_plugin_generator.rb +2 -0
- lib/generators/redmine_plugin/templates/routes.rb lib/generators/redmine_plugin/templates/routes.rb +2 -0
- lib/generators/redmine_plugin_controller/redmine_plugin_controller_generator.rb ..._plugin_controller/redmine_plugin_controller_generator.rb +2 -0
- lib/generators/redmine_plugin_model/redmine_plugin_model_generator.rb ...rs/redmine_plugin_model/redmine_plugin_model_generator.rb +2 -0
- lib/plugins/acts_as_activity_provider/init.rb lib/plugins/acts_as_activity_provider/init.rb +2 -0
- lib/plugins/acts_as_activity_provider/lib/acts_as_activity_provider.rb ...cts_as_activity_provider/lib/acts_as_activity_provider.rb +2 -0
- lib/plugins/acts_as_attachable/init.rb lib/plugins/acts_as_attachable/init.rb +2 -0
- lib/plugins/acts_as_attachable/lib/acts_as_attachable.rb lib/plugins/acts_as_attachable/lib/acts_as_attachable.rb +2 -0
- lib/plugins/acts_as_customizable/init.rb lib/plugins/acts_as_customizable/init.rb +2 -0
- lib/plugins/acts_as_customizable/lib/acts_as_customizable.rb lib/plugins/acts_as_customizable/lib/acts_as_customizable.rb +2 -0
- lib/plugins/acts_as_event/init.rb lib/plugins/acts_as_event/init.rb +2 -0
- lib/plugins/acts_as_event/lib/acts_as_event.rb lib/plugins/acts_as_event/lib/acts_as_event.rb +2 -0
- lib/plugins/acts_as_searchable/init.rb lib/plugins/acts_as_searchable/init.rb +2 -0
- lib/plugins/acts_as_searchable/lib/acts_as_searchable.rb lib/plugins/acts_as_searchable/lib/acts_as_searchable.rb +2 -0
- lib/plugins/acts_as_tree/Rakefile lib/plugins/acts_as_tree/Rakefile +2 -0
- lib/plugins/acts_as_tree/init.rb lib/plugins/acts_as_tree/init.rb +2 -0
- lib/plugins/acts_as_tree/lib/active_record/acts/tree.rb lib/plugins/acts_as_tree/lib/active_record/acts/tree.rb +2 -0
- lib/plugins/acts_as_tree/test/acts_as_tree_test.rb lib/plugins/acts_as_tree/test/acts_as_tree_test.rb +2 -0
- lib/plugins/acts_as_watchable/init.rb lib/plugins/acts_as_watchable/init.rb +2 -0
- lib/plugins/acts_as_watchable/lib/acts_as_watchable.rb lib/plugins/acts_as_watchable/lib/acts_as_watchable.rb +2 -0
- lib/plugins/gravatar/Rakefile lib/plugins/gravatar/Rakefile +2 -0
- lib/plugins/gravatar/init.rb lib/plugins/gravatar/init.rb +2 -0
- lib/plugins/gravatar/lib/gravatar.rb lib/plugins/gravatar/lib/gravatar.rb +2 -0
- lib/plugins/gravatar/spec/gravatar_spec.rb lib/plugins/gravatar/spec/gravatar_spec.rb +2 -0
- lib/plugins/open_id_authentication/Rakefile lib/plugins/open_id_authentication/Rakefile +2 -0
- lib/plugins/open_id_authentication/generators/open_id_authentication_tables/open_id_authentication_tables_generator.rb ...ication_tables/open_id_authentication_tables_generator.rb +2 -0
- lib/plugins/open_id_authentication/generators/upgrade_open_id_authentication_tables/upgrade_open_id_authentication_tables_generator.rb ...tables/upgrade_open_id_authentication_tables_generator.rb +2 -0
- lib/plugins/open_id_authentication/init.rb lib/plugins/open_id_authentication/init.rb +2 -0
- lib/plugins/open_id_authentication/lib/open_id_authentication.rb ...gins/open_id_authentication/lib/open_id_authentication.rb +2 -0
- lib/plugins/open_id_authentication/lib/open_id_authentication/association.rb ..._authentication/lib/open_id_authentication/association.rb +2 -0
- lib/plugins/open_id_authentication/lib/open_id_authentication/db_store.rb ..._id_authentication/lib/open_id_authentication/db_store.rb +2 -0
- lib/plugins/open_id_authentication/lib/open_id_authentication/mem_cache_store.rb ...hentication/lib/open_id_authentication/mem_cache_store.rb +2 -0
- lib/plugins/open_id_authentication/lib/open_id_authentication/nonce.rb ...pen_id_authentication/lib/open_id_authentication/nonce.rb +2 -0
- lib/plugins/open_id_authentication/lib/open_id_authentication/request.rb ...n_id_authentication/lib/open_id_authentication/request.rb +2 -0
- lib/plugins/open_id_authentication/lib/open_id_authentication/timeout_fixes.rb ...uthentication/lib/open_id_authentication/timeout_fixes.rb +3 -1
- lib/plugins/open_id_authentication/lib/tasks/open_id_authentication_tasks.rake ...uthentication/lib/tasks/open_id_authentication_tasks.rake +2 -0
- lib/plugins/open_id_authentication/test/mem_cache_store_test.rb ...ugins/open_id_authentication/test/mem_cache_store_test.rb +2 -0
- lib/plugins/open_id_authentication/test/normalize_test.rb lib/plugins/open_id_authentication/test/normalize_test.rb +2 -0
- lib/plugins/open_id_authentication/test/open_id_authentication_test.rb ...pen_id_authentication/test/open_id_authentication_test.rb +2 -0
- lib/plugins/open_id_authentication/test/status_test.rb lib/plugins/open_id_authentication/test/status_test.rb +3 -1
- lib/plugins/open_id_authentication/test/test_helper.rb lib/plugins/open_id_authentication/test/test_helper.rb +2 -0
- lib/redmine.rb lib/redmine.rb +2 -0
- lib/redmine/access_control.rb lib/redmine/access_control.rb +2 -0
- lib/redmine/access_keys.rb lib/redmine/access_keys.rb +2 -0
- lib/redmine/activity.rb lib/redmine/activity.rb +2 -0
- lib/redmine/activity/fetcher.rb lib/redmine/activity/fetcher.rb +2 -0
- lib/redmine/acts/positioned.rb lib/redmine/acts/positioned.rb +2 -0
- lib/redmine/ciphering.rb lib/redmine/ciphering.rb +2 -0
- lib/redmine/codeset_util.rb lib/redmine/codeset_util.rb +1 -0
- lib/redmine/configuration.rb lib/redmine/configuration.rb +2 -0
- lib/redmine/core_ext.rb lib/redmine/core_ext.rb +2 -0
- lib/redmine/core_ext/active_record.rb lib/redmine/core_ext/active_record.rb +2 -0
- lib/redmine/core_ext/string.rb lib/redmine/core_ext/string.rb +2 -0
- lib/redmine/core_ext/string/conversions.rb lib/redmine/core_ext/string/conversions.rb +2 -0
- lib/redmine/core_ext/string/inflections.rb lib/redmine/core_ext/string/inflections.rb +2 -0
- lib/redmine/database.rb lib/redmine/database.rb +2 -0
- lib/redmine/default_data/loader.rb lib/redmine/default_data/loader.rb +2 -0
- lib/redmine/export/csv.rb lib/redmine/export/csv.rb +2 -0
- lib/redmine/export/pdf.rb lib/redmine/export/pdf.rb +2 -0
- lib/redmine/export/pdf/issues_pdf_helper.rb lib/redmine/export/pdf/issues_pdf_helper.rb +2 -0
- lib/redmine/export/pdf/wiki_pdf_helper.rb lib/redmine/export/pdf/wiki_pdf_helper.rb +2 -0
- lib/redmine/field_format.rb lib/redmine/field_format.rb +2 -0
- lib/redmine/helpers/calendar.rb lib/redmine/helpers/calendar.rb +2 -0
- lib/redmine/helpers/diff.rb lib/redmine/helpers/diff.rb +2 -0
- lib/redmine/helpers/gantt.rb lib/redmine/helpers/gantt.rb +2 -0
- lib/redmine/helpers/time_report.rb lib/redmine/helpers/time_report.rb +2 -0
- lib/redmine/helpers/url.rb lib/redmine/helpers/url.rb +2 -0
- lib/redmine/hook.rb lib/redmine/hook.rb +2 -0
- lib/redmine/hook/listener.rb lib/redmine/hook/listener.rb +3 -1
- lib/redmine/hook/view_listener.rb lib/redmine/hook/view_listener.rb +2 -0
- lib/redmine/i18n.rb lib/redmine/i18n.rb +2 -0
- lib/redmine/imap.rb lib/redmine/imap.rb +2 -0
- lib/redmine/info.rb lib/redmine/info.rb +2 -0
- lib/redmine/menu_manager.rb lib/redmine/menu_manager.rb +2 -0
- lib/redmine/mime_type.rb lib/redmine/mime_type.rb +2 -0
- lib/redmine/my_page.rb lib/redmine/my_page.rb +2 -0
- lib/redmine/nested_set/issue_nested_set.rb lib/redmine/nested_set/issue_nested_set.rb +2 -0
- lib/redmine/nested_set/project_nested_set.rb lib/redmine/nested_set/project_nested_set.rb +2 -0
- lib/redmine/nested_set/traversing.rb lib/redmine/nested_set/traversing.rb +2 -0
- lib/redmine/notifiable.rb lib/redmine/notifiable.rb +2 -0
- lib/redmine/pagination.rb lib/redmine/pagination.rb +2 -0
- lib/redmine/platform.rb lib/redmine/platform.rb +2 -0
- lib/redmine/plugin.rb lib/redmine/plugin.rb +2 -0
- lib/redmine/pop3.rb lib/redmine/pop3.rb +2 -0
- lib/redmine/safe_attributes.rb lib/redmine/safe_attributes.rb +2 -0
- lib/redmine/scm/adapters.rb lib/redmine/scm/adapters.rb +2 -0
- lib/redmine/scm/adapters/abstract_adapter.rb lib/redmine/scm/adapters/abstract_adapter.rb +2 -0
- lib/redmine/scm/adapters/bazaar_adapter.rb lib/redmine/scm/adapters/bazaar_adapter.rb +2 -0
- lib/redmine/scm/adapters/command_failed.rb lib/redmine/scm/adapters/command_failed.rb +2 -0
- lib/redmine/scm/adapters/cvs_adapter.rb lib/redmine/scm/adapters/cvs_adapter.rb +2 -0
- lib/redmine/scm/adapters/filesystem_adapter.rb lib/redmine/scm/adapters/filesystem_adapter.rb +2 -0
- lib/redmine/scm/adapters/git_adapter.rb lib/redmine/scm/adapters/git_adapter.rb +2 -0
- lib/redmine/scm/adapters/mercurial_adapter.rb lib/redmine/scm/adapters/mercurial_adapter.rb +2 -0
- lib/redmine/scm/adapters/subversion_adapter.rb lib/redmine/scm/adapters/subversion_adapter.rb +2 -0
- lib/redmine/scm/base.rb lib/redmine/scm/base.rb +2 -0
- lib/redmine/search.rb lib/redmine/search.rb +2 -0
- lib/redmine/sort_criteria.rb lib/redmine/sort_criteria.rb +2 -0
- lib/redmine/subclass_factory.rb lib/redmine/subclass_factory.rb +2 -0
- lib/redmine/sudo_mode.rb lib/redmine/sudo_mode.rb +2 -0
- lib/redmine/syntax_highlighting.rb lib/redmine/syntax_highlighting.rb +2 -0
- lib/redmine/themes.rb lib/redmine/themes.rb +2 -0
- lib/redmine/thumbnail.rb lib/redmine/thumbnail.rb +2 -0
- lib/redmine/unified_diff.rb lib/redmine/unified_diff.rb +2 -0
- lib/redmine/utils.rb lib/redmine/utils.rb +2 -0
- lib/redmine/version.rb lib/redmine/version.rb +2 -0
- lib/redmine/views/api_template_handler.rb lib/redmine/views/api_template_handler.rb +2 -0
- lib/redmine/views/builders.rb lib/redmine/views/builders.rb +2 -0
- lib/redmine/views/builders/json.rb lib/redmine/views/builders/json.rb +2 -0
- lib/redmine/views/builders/structure.rb lib/redmine/views/builders/structure.rb +2 -0
- lib/redmine/views/builders/xml.rb lib/redmine/views/builders/xml.rb +2 -0
- lib/redmine/views/labelled_form_builder.rb lib/redmine/views/labelled_form_builder.rb +2 -0
- lib/redmine/views/other_formats_builder.rb lib/redmine/views/other_formats_builder.rb +2 -0
- lib/redmine/wiki_formatting.rb lib/redmine/wiki_formatting.rb +2 -0
- lib/redmine/wiki_formatting/html_parser.rb lib/redmine/wiki_formatting/html_parser.rb +2 -0
- lib/redmine/wiki_formatting/macros.rb lib/redmine/wiki_formatting/macros.rb +2 -0
- lib/redmine/wiki_formatting/markdown/formatter.rb lib/redmine/wiki_formatting/markdown/formatter.rb +2 -0
- lib/redmine/wiki_formatting/markdown/helper.rb lib/redmine/wiki_formatting/markdown/helper.rb +2 -0
- lib/redmine/wiki_formatting/markdown/html_parser.rb lib/redmine/wiki_formatting/markdown/html_parser.rb +2 -0
- lib/redmine/wiki_formatting/textile/formatter.rb lib/redmine/wiki_formatting/textile/formatter.rb +2 -0
- lib/redmine/wiki_formatting/textile/helper.rb lib/redmine/wiki_formatting/textile/helper.rb +2 -0
- lib/redmine/wiki_formatting/textile/html_parser.rb lib/redmine/wiki_formatting/textile/html_parser.rb +2 -0
- lib/redmine/wiki_formatting/textile/redcloth3.rb lib/redmine/wiki_formatting/textile/redcloth3.rb +2 -0
- lib/tasks/ci.rake lib/tasks/ci.rake +2 -0
- lib/tasks/ciphering.rake lib/tasks/ciphering.rake +2 -0
- lib/tasks/deprecated.rake lib/tasks/deprecated.rake +2 -0
- lib/tasks/email.rake lib/tasks/email.rake +2 -0
- lib/tasks/extract_fixtures.rake lib/tasks/extract_fixtures.rake +2 -0
- lib/tasks/initializers.rake lib/tasks/initializers.rake +2 -0
- lib/tasks/load_default_data.rake lib/tasks/load_default_data.rake +2 -0
- lib/tasks/locales.rake lib/tasks/locales.rake +2 -0
- lib/tasks/metrics.rake lib/tasks/metrics.rake +2 -0
- lib/tasks/migrate_from_mantis.rake lib/tasks/migrate_from_mantis.rake +2 -0
- lib/tasks/migrate_from_trac.rake lib/tasks/migrate_from_trac.rake +2 -0
- lib/tasks/permissions.rake lib/tasks/permissions.rake +2 -0
- lib/tasks/redmine.rake lib/tasks/redmine.rake +2 -0
- lib/tasks/reminder.rake lib/tasks/reminder.rake +2 -0
- lib/tasks/testing.rake lib/tasks/testing.rake +2 -0
- lib/tasks/yardoc.rake lib/tasks/yardoc.rake +2 -0
- test/application_system_test_case.rb test/application_system_test_case.rb +2 -0
- test/coverage/html_formatter.rb test/coverage/html_formatter.rb +2 -0
- test/extra/redmine_pm/repository_git_test_pm.rb test/extra/redmine_pm/repository_git_test_pm.rb +2 -0
- test/extra/redmine_pm/repository_subversion_test_pm.rb test/extra/redmine_pm/repository_subversion_test_pm.rb +2 -0
- test/extra/redmine_pm/test_case.rb test/extra/redmine_pm/test_case.rb +2 -0
- test/fixtures/files/2006/07/060719210727_source.rb test/fixtures/files/2006/07/060719210727_source.rb +2 -0
- test/functional/account_controller_openid_test.rb test/functional/account_controller_openid_test.rb +2 -0
- test/functional/account_controller_test.rb test/functional/account_controller_test.rb +2 -0
- test/functional/activities_controller_test.rb test/functional/activities_controller_test.rb +2 -0
- test/functional/admin_controller_test.rb test/functional/admin_controller_test.rb +2 -0
- test/functional/attachments_controller_test.rb test/functional/attachments_controller_test.rb +2 -0
- test/functional/attachments_visibility_test.rb test/functional/attachments_visibility_test.rb +2 -0
- test/functional/auth_sources_controller_test.rb test/functional/auth_sources_controller_test.rb +2 -0
- test/functional/auto_completes_controller_test.rb test/functional/auto_completes_controller_test.rb +2 -0
- test/functional/boards_controller_test.rb test/functional/boards_controller_test.rb +2 -0
- test/functional/calendars_controller_test.rb test/functional/calendars_controller_test.rb +2 -0
- test/functional/comments_controller_test.rb test/functional/comments_controller_test.rb +2 -0
- test/functional/context_menus_controller_test.rb test/functional/context_menus_controller_test.rb +2 -0
- test/functional/custom_field_enumerations_controller_test.rb test/functional/custom_field_enumerations_controller_test.rb +2 -0
- test/functional/custom_fields_controller_test.rb test/functional/custom_fields_controller_test.rb +2 -0
- test/functional/documents_controller_test.rb test/functional/documents_controller_test.rb +2 -0
- test/functional/email_addresses_controller_test.rb test/functional/email_addresses_controller_test.rb +2 -0
- test/functional/enumerations_controller_test.rb test/functional/enumerations_controller_test.rb +2 -0
- test/functional/files_controller_test.rb test/functional/files_controller_test.rb +2 -0
- test/functional/gantts_controller_test.rb test/functional/gantts_controller_test.rb +2 -0
- test/functional/groups_controller_test.rb test/functional/groups_controller_test.rb +2 -0
- test/functional/imports_controller_test.rb test/functional/imports_controller_test.rb +2 -0
- test/functional/issue_categories_controller_test.rb test/functional/issue_categories_controller_test.rb +2 -0
- test/functional/issue_relations_controller_test.rb test/functional/issue_relations_controller_test.rb +2 -0
- test/functional/issue_statuses_controller_test.rb test/functional/issue_statuses_controller_test.rb +2 -0
- test/functional/issues_controller_test.rb test/functional/issues_controller_test.rb +2 -0
- test/functional/issues_controller_transaction_test.rb test/functional/issues_controller_transaction_test.rb +2 -0
- test/functional/issues_custom_fields_visibility_test.rb test/functional/issues_custom_fields_visibility_test.rb +2 -0
- test/functional/journals_controller_test.rb test/functional/journals_controller_test.rb +2 -0
- test/functional/mail_handler_controller_test.rb test/functional/mail_handler_controller_test.rb +2 -0
- test/functional/members_controller_test.rb test/functional/members_controller_test.rb +2 -0
- test/functional/messages_controller_test.rb test/functional/messages_controller_test.rb +2 -0
- test/functional/my_controller_test.rb test/functional/my_controller_test.rb +2 -0
- test/functional/news_controller_test.rb test/functional/news_controller_test.rb +2 -0
- test/functional/previews_controller_test.rb test/functional/previews_controller_test.rb +2 -0
- test/functional/principal_memberships_controller_test.rb test/functional/principal_memberships_controller_test.rb +2 -0
- test/functional/project_enumerations_controller_test.rb test/functional/project_enumerations_controller_test.rb +2 -0
- test/functional/projects_controller_test.rb test/functional/projects_controller_test.rb +2 -0
- test/functional/queries_controller_test.rb test/functional/queries_controller_test.rb +2 -0
- test/functional/reports_controller_test.rb test/functional/reports_controller_test.rb +2 -0
- test/functional/repositories_bazaar_controller_test.rb test/functional/repositories_bazaar_controller_test.rb +2 -0
- test/functional/repositories_controller_test.rb test/functional/repositories_controller_test.rb +2 -0
- test/functional/repositories_cvs_controller_test.rb test/functional/repositories_cvs_controller_test.rb +2 -0
- test/functional/repositories_filesystem_controller_test.rb test/functional/repositories_filesystem_controller_test.rb +2 -0
- test/functional/repositories_git_controller_test.rb test/functional/repositories_git_controller_test.rb +2 -0
- test/functional/repositories_mercurial_controller_test.rb test/functional/repositories_mercurial_controller_test.rb +2 -0
- test/functional/repositories_subversion_controller_test.rb test/functional/repositories_subversion_controller_test.rb +2 -0
- test/functional/roles_controller_test.rb test/functional/roles_controller_test.rb +2 -0
- test/functional/search_controller_test.rb test/functional/search_controller_test.rb +2 -0
- test/functional/search_custom_fields_visibility_test.rb test/functional/search_custom_fields_visibility_test.rb +2 -0
- test/functional/sessions_controller_test.rb test/functional/sessions_controller_test.rb +2 -0
- test/functional/settings_controller_test.rb test/functional/settings_controller_test.rb +2 -0
- test/functional/sys_controller_test.rb test/functional/sys_controller_test.rb +2 -0
- test/functional/timelog_controller_test.rb test/functional/timelog_controller_test.rb +2 -0
- test/functional/timelog_custom_fields_visibility_test.rb test/functional/timelog_custom_fields_visibility_test.rb +2 -0
- test/functional/timelog_report_test.rb test/functional/timelog_report_test.rb +2 -0
- test/functional/trackers_controller_test.rb test/functional/trackers_controller_test.rb +2 -0
- test/functional/users_controller_test.rb test/functional/users_controller_test.rb +2 -0
- test/functional/versions_controller_test.rb test/functional/versions_controller_test.rb +2 -0
- test/functional/watchers_controller_test.rb test/functional/watchers_controller_test.rb +2 -0
- test/functional/welcome_controller_test.rb test/functional/welcome_controller_test.rb +2 -0
- test/functional/wiki_controller_test.rb test/functional/wiki_controller_test.rb +2 -0
- test/functional/wikis_controller_test.rb test/functional/wikis_controller_test.rb +2 -0
- test/functional/workflows_controller_test.rb test/functional/workflows_controller_test.rb +2 -0
- test/helpers/activities_helper_test.rb test/helpers/activities_helper_test.rb +2 -0
- test/helpers/application_helper_test.rb test/helpers/application_helper_test.rb +2 -0
- test/helpers/custom_fields_helper_test.rb test/helpers/custom_fields_helper_test.rb +2 -0
- test/helpers/groups_helper_test.rb test/helpers/groups_helper_test.rb +2 -0
- test/helpers/issues_helper_test.rb test/helpers/issues_helper_test.rb +2 -0
- test/helpers/journals_helper_test.rb test/helpers/journals_helper_test.rb +2 -0
- test/helpers/members_helper_test.rb test/helpers/members_helper_test.rb +2 -0
- test/helpers/projects_helper_test.rb test/helpers/projects_helper_test.rb +2 -0
- test/helpers/queries_helper_test.rb test/helpers/queries_helper_test.rb +2 -0
- test/helpers/routes_helper_test.rb test/helpers/routes_helper_test.rb +2 -0
- test/helpers/search_helper_test.rb test/helpers/search_helper_test.rb +2 -0
- test/helpers/settings_helper_test.rb test/helpers/settings_helper_test.rb +2 -0
- test/helpers/sort_helper_test.rb test/helpers/sort_helper_test.rb +2 -0
- test/helpers/timelog_helper_test.rb test/helpers/timelog_helper_test.rb +2 -0
- test/helpers/version_helper_test.rb test/helpers/version_helper_test.rb +2 -0
- test/helpers/watchers_helper_test.rb test/helpers/watchers_helper_test.rb +2 -0
- test/helpers/wiki_helper_test.rb test/helpers/wiki_helper_test.rb +2 -0
- test/integration/account_test.rb test/integration/account_test.rb +2 -0
- test/integration/admin_test.rb test/integration/admin_test.rb +2 -0
- test/integration/api_test/api_routing_test.rb test/integration/api_test/api_routing_test.rb +2 -0
- test/integration/api_test/api_test.rb test/integration/api_test/api_test.rb +2 -0
- test/integration/api_test/attachments_test.rb test/integration/api_test/attachments_test.rb +2 -0
- test/integration/api_test/authentication_test.rb test/integration/api_test/authentication_test.rb +2 -0
- test/integration/api_test/custom_fields_attribute_test.rb test/integration/api_test/custom_fields_attribute_test.rb +2 -0
- test/integration/api_test/custom_fields_test.rb test/integration/api_test/custom_fields_test.rb +2 -0
- test/integration/api_test/disabled_rest_api_test.rb test/integration/api_test/disabled_rest_api_test.rb +2 -0
- test/integration/api_test/enumerations_test.rb test/integration/api_test/enumerations_test.rb +2 -0
- test/integration/api_test/files_test.rb test/integration/api_test/files_test.rb +2 -0
- test/integration/api_test/groups_test.rb test/integration/api_test/groups_test.rb +2 -0
- test/integration/api_test/issue_categories_test.rb test/integration/api_test/issue_categories_test.rb +2 -0
- test/integration/api_test/issue_relations_test.rb test/integration/api_test/issue_relations_test.rb +2 -0
- test/integration/api_test/issue_statuses_test.rb test/integration/api_test/issue_statuses_test.rb +2 -0
- test/integration/api_test/issues_test.rb test/integration/api_test/issues_test.rb +2 -0
- test/integration/api_test/jsonp_test.rb test/integration/api_test/jsonp_test.rb +2 -0
- test/integration/api_test/memberships_test.rb test/integration/api_test/memberships_test.rb +2 -0
- test/integration/api_test/news_test.rb test/integration/api_test/news_test.rb +2 -0
- test/integration/api_test/projects_test.rb test/integration/api_test/projects_test.rb +2 -0
- test/integration/api_test/queries_test.rb test/integration/api_test/queries_test.rb +2 -0
- test/integration/api_test/roles_test.rb test/integration/api_test/roles_test.rb +2 -0
- test/integration/api_test/search_test.rb test/integration/api_test/search_test.rb +2 -0
- test/integration/api_test/time_entries_test.rb test/integration/api_test/time_entries_test.rb +2 -0
- test/integration/api_test/trackers_test.rb test/integration/api_test/trackers_test.rb +2 -0
- test/integration/api_test/users_test.rb test/integration/api_test/users_test.rb +2 -0
- test/integration/api_test/versions_test.rb test/integration/api_test/versions_test.rb +2 -0
- test/integration/api_test/wiki_pages_test.rb test/integration/api_test/wiki_pages_test.rb +2 -0
- test/integration/application_test.rb test/integration/application_test.rb +2 -0
- test/integration/attachments_test.rb test/integration/attachments_test.rb +2 -0
- test/integration/feeds_test.rb test/integration/feeds_test.rb +2 -0
- test/integration/issues_test.rb test/integration/issues_test.rb +2 -0
- test/integration/layout_test.rb test/integration/layout_test.rb +2 -0
- test/integration/lib/redmine/field_format/attachment_format_test.rb ...ration/lib/redmine/field_format/attachment_format_test.rb +2 -0
- test/integration/lib/redmine/hook_test.rb test/integration/lib/redmine/hook_test.rb +2 -0
- test/integration/lib/redmine/menu_manager_test.rb test/integration/lib/redmine/menu_manager_test.rb +2 -0
- test/integration/lib/redmine/themes_test.rb test/integration/lib/redmine/themes_test.rb +2 -0
- test/integration/projects_test.rb test/integration/projects_test.rb +2 -0
- test/integration/repositories_git_test.rb test/integration/repositories_git_test.rb +2 -0
- test/integration/routing/account_test.rb test/integration/routing/account_test.rb +2 -0
- test/integration/routing/activities_test.rb test/integration/routing/activities_test.rb +2 -0
- test/integration/routing/admin_test.rb test/integration/routing/admin_test.rb +2 -0
- test/integration/routing/attachments_test.rb test/integration/routing/attachments_test.rb +2 -0
- test/integration/routing/auth_sources_test.rb test/integration/routing/auth_sources_test.rb +2 -0
- test/integration/routing/auto_completes_test.rb test/integration/routing/auto_completes_test.rb +2 -0
- test/integration/routing/boards_test.rb test/integration/routing/boards_test.rb +2 -0
- test/integration/routing/calendars_test.rb test/integration/routing/calendars_test.rb +2 -0
- test/integration/routing/comments_test.rb test/integration/routing/comments_test.rb +2 -0
- test/integration/routing/context_menus_test.rb test/integration/routing/context_menus_test.rb +2 -0
- test/integration/routing/custom_fields_test.rb test/integration/routing/custom_fields_test.rb +2 -0
- test/integration/routing/documents_test.rb test/integration/routing/documents_test.rb +2 -0
- test/integration/routing/enumerations_test.rb test/integration/routing/enumerations_test.rb +2 -0
- test/integration/routing/files_test.rb test/integration/routing/files_test.rb +2 -0
- test/integration/routing/gantts_test.rb test/integration/routing/gantts_test.rb +2 -0
- test/integration/routing/groups_test.rb test/integration/routing/groups_test.rb +2 -0
- test/integration/routing/imports_test.rb test/integration/routing/imports_test.rb +2 -0
- test/integration/routing/issue_categories_test.rb test/integration/routing/issue_categories_test.rb +2 -0
- test/integration/routing/issue_relations_test.rb test/integration/routing/issue_relations_test.rb +2 -0
- test/integration/routing/issue_statuses_test.rb test/integration/routing/issue_statuses_test.rb +2 -0
- test/integration/routing/issues_test.rb test/integration/routing/issues_test.rb +2 -0
- test/integration/routing/journals_test.rb test/integration/routing/journals_test.rb +2 -0
- test/integration/routing/mail_handler_test.rb test/integration/routing/mail_handler_test.rb +2 -0
- test/integration/routing/members_test.rb test/integration/routing/members_test.rb +2 -0
- test/integration/routing/messages_test.rb test/integration/routing/messages_test.rb +2 -0
- test/integration/routing/my_test.rb test/integration/routing/my_test.rb +2 -0
- test/integration/routing/news_test.rb test/integration/routing/news_test.rb +2 -0
- test/integration/routing/previews_test.rb test/integration/routing/previews_test.rb +2 -0
- test/integration/routing/principal_memberships_test.rb test/integration/routing/principal_memberships_test.rb +2 -0
- test/integration/routing/project_enumerations_test.rb test/integration/routing/project_enumerations_test.rb +2 -0
- test/integration/routing/projects_test.rb test/integration/routing/projects_test.rb +2 -0
- test/integration/routing/queries_test.rb test/integration/routing/queries_test.rb +2 -0
- test/integration/routing/reports_test.rb test/integration/routing/reports_test.rb +2 -0
- test/integration/routing/repositories_test.rb test/integration/routing/repositories_test.rb +2 -0
- test/integration/routing/roles_test.rb test/integration/routing/roles_test.rb +2 -0
- test/integration/routing/search_test.rb test/integration/routing/search_test.rb +2 -0
- test/integration/routing/settings_test.rb test/integration/routing/settings_test.rb +2 -0
- test/integration/routing/sys_test.rb test/integration/routing/sys_test.rb +2 -0
- test/integration/routing/timelog_test.rb test/integration/routing/timelog_test.rb +2 -0
- test/integration/routing/trackers_test.rb test/integration/routing/trackers_test.rb +2 -0
- test/integration/routing/users_test.rb test/integration/routing/users_test.rb +2 -0
- test/integration/routing/versions_test.rb test/integration/routing/versions_test.rb +2 -0
- test/integration/routing/watchers_test.rb test/integration/routing/watchers_test.rb +2 -0
- test/integration/routing/welcome_test.rb test/integration/routing/welcome_test.rb +2 -0
- test/integration/routing/wiki_test.rb test/integration/routing/wiki_test.rb +2 -0
- test/integration/routing/wikis_test.rb test/integration/routing/wikis_test.rb +2 -0
- test/integration/routing/workflows_test.rb test/integration/routing/workflows_test.rb +2 -0
- test/integration/sessions_test.rb test/integration/sessions_test.rb +2 -0
- test/integration/sudo_mode_test.rb test/integration/sudo_mode_test.rb +2 -0
- test/integration/users_test.rb test/integration/users_test.rb +2 -0
- test/integration/welcome_test.rb test/integration/welcome_test.rb +2 -0
- test/mocks/open_id_authentication_mock.rb test/mocks/open_id_authentication_mock.rb +2 -0
- test/object_helpers.rb test/object_helpers.rb +2 -0
- test/system/issues_import_test.rb test/system/issues_import_test.rb +2 -0
- test/system/issues_test.rb test/system/issues_test.rb +2 -0
- test/system/my_page_test.rb test/system/my_page_test.rb +2 -0
- test/system/quick_jump_test.rb test/system/quick_jump_test.rb +2 -0
- test/system/sudo_mode_test.rb test/system/sudo_mode_test.rb +2 -0
- test/system/timelog_test.rb test/system/timelog_test.rb +2 -0
- test/test_helper.rb test/test_helper.rb +2 -0
- test/unit/activity_test.rb test/unit/activity_test.rb +2 -0
- test/unit/attachment_test.rb test/unit/attachment_test.rb +2 -0
- test/unit/attachment_transaction_test.rb test/unit/attachment_transaction_test.rb +2 -0
- test/unit/auth_source_ldap_test.rb test/unit/auth_source_ldap_test.rb +2 -0
- test/unit/board_test.rb test/unit/board_test.rb +2 -0
- test/unit/changeset_test.rb test/unit/changeset_test.rb +2 -0
- test/unit/comment_test.rb test/unit/comment_test.rb +2 -0
- test/unit/custom_field_test.rb test/unit/custom_field_test.rb +2 -0
- test/unit/custom_field_user_format_test.rb test/unit/custom_field_user_format_test.rb +2 -0
- test/unit/custom_field_version_format_test.rb test/unit/custom_field_version_format_test.rb +2 -0
- test/unit/custom_value_test.rb test/unit/custom_value_test.rb +2 -0
- test/unit/default_data_test.rb test/unit/default_data_test.rb +2 -0
- test/unit/document_category_test.rb test/unit/document_category_test.rb +2 -0
- test/unit/document_test.rb test/unit/document_test.rb +2 -0
- test/unit/enabled_module_test.rb test/unit/enabled_module_test.rb +2 -0
- test/unit/enumeration_test.rb test/unit/enumeration_test.rb +2 -0
- test/unit/group_test.rb test/unit/group_test.rb +2 -0
- test/unit/initializers/patches_test.rb test/unit/initializers/patches_test.rb +2 -0
- test/unit/issue_category_test.rb test/unit/issue_category_test.rb +2 -0
- test/unit/issue_custom_field_test.rb test/unit/issue_custom_field_test.rb +2 -0
- test/unit/issue_import_test.rb test/unit/issue_import_test.rb +2 -0
- test/unit/issue_nested_set_concurrency_test.rb test/unit/issue_nested_set_concurrency_test.rb +2 -0
- test/unit/issue_nested_set_test.rb test/unit/issue_nested_set_test.rb +2 -0
- test/unit/issue_priority_test.rb test/unit/issue_priority_test.rb +2 -0
- test/unit/issue_relation_test.rb test/unit/issue_relation_test.rb +2 -0
- test/unit/issue_scopes_test.rb test/unit/issue_scopes_test.rb +2 -0
- test/unit/issue_status_test.rb test/unit/issue_status_test.rb +2 -0
- test/unit/issue_subtasking_test.rb test/unit/issue_subtasking_test.rb +2 -0
- test/unit/issue_test.rb test/unit/issue_test.rb +2 -0
- test/unit/issue_transaction_test.rb test/unit/issue_transaction_test.rb +2 -0
- test/unit/journal_observer_test.rb test/unit/journal_observer_test.rb +2 -0
- test/unit/journal_test.rb test/unit/journal_test.rb +2 -0
- test/unit/lib/redmine/access_control_test.rb test/unit/lib/redmine/access_control_test.rb +2 -0
- test/unit/lib/redmine/acts/positioned_with_scope_test.rb test/unit/lib/redmine/acts/positioned_with_scope_test.rb +2 -0
- test/unit/lib/redmine/acts/positioned_without_scope_test.rb test/unit/lib/redmine/acts/positioned_without_scope_test.rb +2 -0
- test/unit/lib/redmine/ciphering_test.rb test/unit/lib/redmine/ciphering_test.rb +2 -0
- test/unit/lib/redmine/codeset_util_test.rb test/unit/lib/redmine/codeset_util_test.rb +2 -0
- test/unit/lib/redmine/configuration_test.rb test/unit/lib/redmine/configuration_test.rb +2 -0
- test/unit/lib/redmine/export/csv_test.rb test/unit/lib/redmine/export/csv_test.rb +2 -0
- test/unit/lib/redmine/export/pdf/issues_pdf_test.rb test/unit/lib/redmine/export/pdf/issues_pdf_test.rb +2 -0
- test/unit/lib/redmine/export/pdf_test.rb test/unit/lib/redmine/export/pdf_test.rb +2 -0
- test/unit/lib/redmine/field_format/attachment_format_test.rb test/unit/lib/redmine/field_format/attachment_format_test.rb +2 -0
- test/unit/lib/redmine/field_format/attachment_format_visibility_test.rb ...redmine/field_format/attachment_format_visibility_test.rb +2 -0
- test/unit/lib/redmine/field_format/bool_format_test.rb test/unit/lib/redmine/field_format/bool_format_test.rb +2 -0
- test/unit/lib/redmine/field_format/enumeration_format_test.rb .../unit/lib/redmine/field_format/enumeration_format_test.rb +2 -0
- test/unit/lib/redmine/field_format/field_format_test.rb test/unit/lib/redmine/field_format/field_format_test.rb +2 -0
- test/unit/lib/redmine/field_format/link_format_test.rb test/unit/lib/redmine/field_format/link_format_test.rb +2 -0
- test/unit/lib/redmine/field_format/list_format_test.rb test/unit/lib/redmine/field_format/list_format_test.rb +2 -0
- test/unit/lib/redmine/field_format/numeric_format_test.rb test/unit/lib/redmine/field_format/numeric_format_test.rb +37 -35
- test/unit/lib/redmine/field_format/user_field_format_test.rb test/unit/lib/redmine/field_format/user_field_format_test.rb +2 -0
- test/unit/lib/redmine/field_format/version_field_format_test.rb ...nit/lib/redmine/field_format/version_field_format_test.rb +2 -0
- test/unit/lib/redmine/helpers/calendar_test.rb test/unit/lib/redmine/helpers/calendar_test.rb +2 -0
- test/unit/lib/redmine/helpers/diff_test.rb test/unit/lib/redmine/helpers/diff_test.rb +39 -37
- test/unit/lib/redmine/helpers/gantt_test.rb test/unit/lib/redmine/helpers/gantt_test.rb +2 -0
- test/unit/lib/redmine/helpers/url_test.rb test/unit/lib/redmine/helpers/url_test.rb +2 -0
- test/unit/lib/redmine/hook_test.rb test/unit/lib/redmine/hook_test.rb +2 -0
- test/unit/lib/redmine/i18n_test.rb test/unit/lib/redmine/i18n_test.rb +2 -0
- test/unit/lib/redmine/info_test.rb test/unit/lib/redmine/info_test.rb +2 -0
- test/unit/lib/redmine/menu_manager/mapper_test.rb test/unit/lib/redmine/menu_manager/mapper_test.rb +2 -0
- test/unit/lib/redmine/menu_manager/menu_helper_test.rb test/unit/lib/redmine/menu_manager/menu_helper_test.rb +2 -0
- test/unit/lib/redmine/menu_manager/menu_item_test.rb test/unit/lib/redmine/menu_manager/menu_item_test.rb +2 -0
- test/unit/lib/redmine/menu_manager_test.rb test/unit/lib/redmine/menu_manager_test.rb +2 -0
- test/unit/lib/redmine/mime_type_test.rb test/unit/lib/redmine/mime_type_test.rb +2 -0
- test/unit/lib/redmine/notifiable_test.rb test/unit/lib/redmine/notifiable_test.rb +2 -0
- test/unit/lib/redmine/pagination_helper_test.rb test/unit/lib/redmine/pagination_helper_test.rb +2 -0
- test/unit/lib/redmine/pagination_test.rb test/unit/lib/redmine/pagination_test.rb +2 -0
- test/unit/lib/redmine/plugin_test.rb test/unit/lib/redmine/plugin_test.rb +2 -0
- test/unit/lib/redmine/safe_attributes_test.rb test/unit/lib/redmine/safe_attributes_test.rb +2 -0
- test/unit/lib/redmine/scm/adapters/bazaar_adapter_test.rb test/unit/lib/redmine/scm/adapters/bazaar_adapter_test.rb +2 -0
- test/unit/lib/redmine/scm/adapters/cvs_adapter_test.rb test/unit/lib/redmine/scm/adapters/cvs_adapter_test.rb +2 -0
- test/unit/lib/redmine/scm/adapters/filesystem_adapter_test.rb .../unit/lib/redmine/scm/adapters/filesystem_adapter_test.rb +2 -0
- test/unit/lib/redmine/scm/adapters/git_adapter_test.rb test/unit/lib/redmine/scm/adapters/git_adapter_test.rb +2 -0
- test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb +2 -0
- test/unit/lib/redmine/scm/adapters/subversion_adapter_test.rb .../unit/lib/redmine/scm/adapters/subversion_adapter_test.rb +2 -0
- test/unit/lib/redmine/themes_test.rb test/unit/lib/redmine/themes_test.rb +2 -0
- test/unit/lib/redmine/unified_diff_test.rb test/unit/lib/redmine/unified_diff_test.rb +2 -0
- test/unit/lib/redmine/utils/date_calculation.rb test/unit/lib/redmine/utils/date_calculation.rb +2 -0
- test/unit/lib/redmine/views/builders/json_test.rb test/unit/lib/redmine/views/builders/json_test.rb +2 -0
- test/unit/lib/redmine/views/builders/xml_test.rb test/unit/lib/redmine/views/builders/xml_test.rb +2 -0
- test/unit/lib/redmine/views/labelled_form_builder_test.rb test/unit/lib/redmine/views/labelled_form_builder_test.rb +2 -0
- test/unit/lib/redmine/wiki_formatting/html_parser_test.rb test/unit/lib/redmine/wiki_formatting/html_parser_test.rb +2 -0
- test/unit/lib/redmine/wiki_formatting/macros_test.rb test/unit/lib/redmine/wiki_formatting/macros_test.rb +2 -0
- test/unit/lib/redmine/wiki_formatting/markdown_formatter_test.rb ...it/lib/redmine/wiki_formatting/markdown_formatter_test.rb +2 -0
- test/unit/lib/redmine/wiki_formatting/markdown_html_parser_test.rb .../lib/redmine/wiki_formatting/markdown_html_parser_test.rb +2 -0
- test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb ...nit/lib/redmine/wiki_formatting/textile_formatter_test.rb +2 -0
- test/unit/lib/redmine/wiki_formatting/textile_html_parser_test.rb ...t/lib/redmine/wiki_formatting/textile_html_parser_test.rb +2 -0
- test/unit/lib/redmine/wiki_formatting_test.rb test/unit/lib/redmine/wiki_formatting_test.rb +2 -0
- test/unit/lib/redmine_test.rb test/unit/lib/redmine_test.rb +2 -0
- test/unit/mail_handler_test.rb test/unit/mail_handler_test.rb +2 -0
- test/unit/mailer_localisation_test.rb test/unit/mailer_localisation_test.rb +2 -0
- test/unit/mailer_test.rb test/unit/mailer_test.rb +2 -0
- test/unit/member_test.rb test/unit/member_test.rb +2 -0
- test/unit/message_test.rb test/unit/message_test.rb +2 -0
- test/unit/news_test.rb test/unit/news_test.rb +2 -0
- test/unit/principal_test.rb test/unit/principal_test.rb +2 -0
- test/unit/project_copy_test.rb test/unit/project_copy_test.rb +2 -0
- test/unit/project_members_inheritance_test.rb test/unit/project_members_inheritance_test.rb +2 -0
- test/unit/project_nested_set_concurrency_test.rb test/unit/project_nested_set_concurrency_test.rb +2 -0
- test/unit/project_nested_set_test.rb test/unit/project_nested_set_test.rb +2 -0
- test/unit/project_test.rb test/unit/project_test.rb +2 -0
- test/unit/query_test.rb test/unit/query_test.rb +2 -0
- test/unit/repository_bazaar_test.rb test/unit/repository_bazaar_test.rb +2 -0
- test/unit/repository_cvs_test.rb test/unit/repository_cvs_test.rb +2 -0
- test/unit/repository_filesystem_test.rb test/unit/repository_filesystem_test.rb +2 -0
- test/unit/repository_git_test.rb test/unit/repository_git_test.rb +2 -0
- test/unit/repository_mercurial_test.rb test/unit/repository_mercurial_test.rb +2 -0
- test/unit/repository_subversion_test.rb test/unit/repository_subversion_test.rb +2 -0
- test/unit/repository_test.rb test/unit/repository_test.rb +2 -0
- test/unit/role_test.rb test/unit/role_test.rb +2 -0
- test/unit/search_test.rb test/unit/search_test.rb +2 -0
- test/unit/setting_test.rb test/unit/setting_test.rb +2 -0
- test/unit/time_entry_activity_test.rb test/unit/time_entry_activity_test.rb +2 -0
- test/unit/time_entry_query_test.rb test/unit/time_entry_query_test.rb +2 -0
- test/unit/time_entry_test.rb test/unit/time_entry_test.rb +2 -0
- test/unit/token_test.rb test/unit/token_test.rb +2 -0
- test/unit/tracker_test.rb test/unit/tracker_test.rb +2 -0
- test/unit/user_preference_test.rb test/unit/user_preference_test.rb +2 -0
- test/unit/user_test.rb test/unit/user_test.rb +2 -0
- test/unit/version_test.rb test/unit/version_test.rb +2 -0
- test/unit/watcher_test.rb test/unit/watcher_test.rb +2 -0
- test/unit/wiki_content_test.rb test/unit/wiki_content_test.rb +2 -0
- test/unit/wiki_content_version_test.rb test/unit/wiki_content_version_test.rb +2 -0
- test/unit/wiki_page_test.rb test/unit/wiki_page_test.rb +2 -0
- test/unit/wiki_redirect_test.rb test/unit/wiki_redirect_test.rb +2 -0
- test/unit/wiki_test.rb test/unit/wiki_test.rb +2 -0
- test/unit/workflow_test.rb test/unit/workflow_test.rb +2 -0
- test/unit/workflow_transition_test.rb test/unit/workflow_transition_test.rb +2 -0
- No files found.