diff --git a/.rubocop.yml b/.rubocop.yml index fbf0f090..8ab7b21e 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -32,9 +32,6 @@ require: - rubocop-rails # Rules for DMSF -Layout/EmptyLineAfterMagicComment: - Enabled: false - Layout/LineLength: Exclude: - app/models/dmsf_query.rb diff --git a/Gemfile b/Gemfile index 62526ccf..3df41955 100644 --- a/Gemfile +++ b/Gemfile @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/after_init.rb b/after_init.rb index 1ab0cadf..60cf99b7 100644 --- a/after_init.rb +++ b/after_init.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš @@ -147,4 +147,9 @@ Rails.application.configure do # Uncomment to remove the original Documents from searching and project's modules (replaced with DMSF) # Redmine::Search.available_search_types.delete('documents') # Redmine::AccessControl.available_project_modules.delete(:documents) + + if Redmine::Plugin.installed?('easy_extensions') + require "#{File.dirname(__FILE__)}/lib/redmine_dmsf/webdav/custom_middleware" + config.middleware.insert_before ActionDispatch::Cookies, RedmineDmsf::Webdav::CustomMiddleware + end end diff --git a/app/controllers/dmsf_context_menus_controller.rb b/app/controllers/dmsf_context_menus_controller.rb index 0f04c14f..00f93122 100644 --- a/app/controllers/dmsf_context_menus_controller.rb +++ b/app/controllers/dmsf_context_menus_controller.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/app/controllers/dmsf_controller.rb b/app/controllers/dmsf_controller.rb index a97dde58..2701d06b 100644 --- a/app/controllers/dmsf_controller.rb +++ b/app/controllers/dmsf_controller.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/app/controllers/dmsf_files_controller.rb b/app/controllers/dmsf_files_controller.rb index a74f5f4b..476be18b 100644 --- a/app/controllers/dmsf_files_controller.rb +++ b/app/controllers/dmsf_files_controller.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/app/controllers/dmsf_files_copy_controller.rb b/app/controllers/dmsf_files_copy_controller.rb index 207af743..bdc32c07 100644 --- a/app/controllers/dmsf_files_copy_controller.rb +++ b/app/controllers/dmsf_files_copy_controller.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/app/controllers/dmsf_folder_permissions_controller.rb b/app/controllers/dmsf_folder_permissions_controller.rb index 7a9267e4..9d31347b 100644 --- a/app/controllers/dmsf_folder_permissions_controller.rb +++ b/app/controllers/dmsf_folder_permissions_controller.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/app/controllers/dmsf_folders_copy_controller.rb b/app/controllers/dmsf_folders_copy_controller.rb index 50f84030..80f727d5 100644 --- a/app/controllers/dmsf_folders_copy_controller.rb +++ b/app/controllers/dmsf_folders_copy_controller.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/app/controllers/dmsf_links_controller.rb b/app/controllers/dmsf_links_controller.rb index 66bed41f..c8d2847b 100644 --- a/app/controllers/dmsf_links_controller.rb +++ b/app/controllers/dmsf_links_controller.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/app/controllers/dmsf_public_urls_controller.rb b/app/controllers/dmsf_public_urls_controller.rb index 80089b20..416508fa 100644 --- a/app/controllers/dmsf_public_urls_controller.rb +++ b/app/controllers/dmsf_public_urls_controller.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/app/controllers/dmsf_state_controller.rb b/app/controllers/dmsf_state_controller.rb index 9c983682..e41d4019 100644 --- a/app/controllers/dmsf_state_controller.rb +++ b/app/controllers/dmsf_state_controller.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/app/controllers/dmsf_upload_controller.rb b/app/controllers/dmsf_upload_controller.rb index d9a57006..ccad2ba8 100644 --- a/app/controllers/dmsf_upload_controller.rb +++ b/app/controllers/dmsf_upload_controller.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/app/controllers/dmsf_workflows_controller.rb b/app/controllers/dmsf_workflows_controller.rb index 081fe1f5..b86ef700 100644 --- a/app/controllers/dmsf_workflows_controller.rb +++ b/app/controllers/dmsf_workflows_controller.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/app/helpers/dmsf_files_helper.rb b/app/helpers/dmsf_files_helper.rb index 7faa9257..63a9a0d5 100644 --- a/app/helpers/dmsf_files_helper.rb +++ b/app/helpers/dmsf_files_helper.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/app/helpers/dmsf_folder_permissions_helper.rb b/app/helpers/dmsf_folder_permissions_helper.rb index 3ff2a3ba..82a2f052 100644 --- a/app/helpers/dmsf_folder_permissions_helper.rb +++ b/app/helpers/dmsf_folder_permissions_helper.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/app/helpers/dmsf_helper.rb b/app/helpers/dmsf_helper.rb index 570212fa..01ff35a7 100644 --- a/app/helpers/dmsf_helper.rb +++ b/app/helpers/dmsf_helper.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/app/helpers/dmsf_links_helper.rb b/app/helpers/dmsf_links_helper.rb index 67ba38d0..026d04e5 100644 --- a/app/helpers/dmsf_links_helper.rb +++ b/app/helpers/dmsf_links_helper.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/app/helpers/dmsf_queries_helper.rb b/app/helpers/dmsf_queries_helper.rb index e216fd74..a8f495b0 100644 --- a/app/helpers/dmsf_queries_helper.rb +++ b/app/helpers/dmsf_queries_helper.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/app/helpers/dmsf_upload_helper.rb b/app/helpers/dmsf_upload_helper.rb index 3600832d..b7d90031 100644 --- a/app/helpers/dmsf_upload_helper.rb +++ b/app/helpers/dmsf_upload_helper.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/app/helpers/dmsf_workflows_helper.rb b/app/helpers/dmsf_workflows_helper.rb index a8dd0da2..04833153 100644 --- a/app/helpers/dmsf_workflows_helper.rb +++ b/app/helpers/dmsf_workflows_helper.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/app/models/application_record.rb b/app/models/application_record.rb index 4508de10..80e810ed 100644 --- a/app/models/application_record.rb +++ b/app/models/application_record.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/app/models/dmsf_file.rb b/app/models/dmsf_file.rb index 63fe70be..160851db 100644 --- a/app/models/dmsf_file.rb +++ b/app/models/dmsf_file.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/app/models/dmsf_file_revision.rb b/app/models/dmsf_file_revision.rb index 8b80ec3e..83ef89b0 100644 --- a/app/models/dmsf_file_revision.rb +++ b/app/models/dmsf_file_revision.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/app/models/dmsf_file_revision_access.rb b/app/models/dmsf_file_revision_access.rb index 63578db7..2a487f17 100644 --- a/app/models/dmsf_file_revision_access.rb +++ b/app/models/dmsf_file_revision_access.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/app/models/dmsf_file_revision_access_query.rb b/app/models/dmsf_file_revision_access_query.rb index c26573fc..8d2a9a55 100644 --- a/app/models/dmsf_file_revision_access_query.rb +++ b/app/models/dmsf_file_revision_access_query.rb @@ -1,6 +1,6 @@ # encode: utf-8 # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/app/models/dmsf_file_revision_custom_field.rb b/app/models/dmsf_file_revision_custom_field.rb index 58dfd0c9..cd7019ab 100644 --- a/app/models/dmsf_file_revision_custom_field.rb +++ b/app/models/dmsf_file_revision_custom_field.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/app/models/dmsf_folder.rb b/app/models/dmsf_folder.rb index 98159db3..96854be4 100644 --- a/app/models/dmsf_folder.rb +++ b/app/models/dmsf_folder.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/app/models/dmsf_folder_permission.rb b/app/models/dmsf_folder_permission.rb index f6bdf818..f4442281 100644 --- a/app/models/dmsf_folder_permission.rb +++ b/app/models/dmsf_folder_permission.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/app/models/dmsf_link.rb b/app/models/dmsf_link.rb index 817a71d3..3bf8295f 100644 --- a/app/models/dmsf_link.rb +++ b/app/models/dmsf_link.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/app/models/dmsf_lock.rb b/app/models/dmsf_lock.rb index 72e89f4e..5c2354d1 100644 --- a/app/models/dmsf_lock.rb +++ b/app/models/dmsf_lock.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/app/models/dmsf_mailer.rb b/app/models/dmsf_mailer.rb index 62770879..b7e17b50 100644 --- a/app/models/dmsf_mailer.rb +++ b/app/models/dmsf_mailer.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/app/models/dmsf_public_url.rb b/app/models/dmsf_public_url.rb index 7869001c..8b4db5ac 100644 --- a/app/models/dmsf_public_url.rb +++ b/app/models/dmsf_public_url.rb @@ -1,6 +1,6 @@ # encode: utf-8 # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/app/models/dmsf_query.rb b/app/models/dmsf_query.rb index a9f9fa71..4c2de446 100644 --- a/app/models/dmsf_query.rb +++ b/app/models/dmsf_query.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/app/models/dmsf_query_modified_column.rb b/app/models/dmsf_query_modified_column.rb index 758e8010..fbd387a8 100644 --- a/app/models/dmsf_query_modified_column.rb +++ b/app/models/dmsf_query_modified_column.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/app/models/dmsf_query_title_column.rb b/app/models/dmsf_query_title_column.rb index 09f35d0b..c0b6d188 100644 --- a/app/models/dmsf_query_title_column.rb +++ b/app/models/dmsf_query_title_column.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/app/models/dmsf_query_version_column.rb b/app/models/dmsf_query_version_column.rb index 18205173..c305823c 100644 --- a/app/models/dmsf_query_version_column.rb +++ b/app/models/dmsf_query_version_column.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/app/models/dmsf_upload.rb b/app/models/dmsf_upload.rb index dd762ead..cc797c40 100644 --- a/app/models/dmsf_upload.rb +++ b/app/models/dmsf_upload.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/app/models/dmsf_workflow.rb b/app/models/dmsf_workflow.rb index ccdd8d80..1d3726a3 100644 --- a/app/models/dmsf_workflow.rb +++ b/app/models/dmsf_workflow.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/app/models/dmsf_workflow_step.rb b/app/models/dmsf_workflow_step.rb index 8d30a7c3..18567d4f 100644 --- a/app/models/dmsf_workflow_step.rb +++ b/app/models/dmsf_workflow_step.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/app/models/dmsf_workflow_step_action.rb b/app/models/dmsf_workflow_step_action.rb index e3af317f..9aad4c04 100644 --- a/app/models/dmsf_workflow_step_action.rb +++ b/app/models/dmsf_workflow_step_action.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/app/models/dmsf_workflow_step_assignment.rb b/app/models/dmsf_workflow_step_assignment.rb index b172557a..7cf24055 100644 --- a/app/models/dmsf_workflow_step_assignment.rb +++ b/app/models/dmsf_workflow_step_assignment.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/app/models/easy_page_module.rb b/app/models/easy_page_module.rb index 3bdbe4b7..c492a1f9 100644 --- a/app/models/easy_page_module.rb +++ b/app/models/easy_page_module.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/app/models/epm_dmsf_locked_documents.rb b/app/models/epm_dmsf_locked_documents.rb index 5a76fda1..9adc281d 100644 --- a/app/models/epm_dmsf_locked_documents.rb +++ b/app/models/epm_dmsf_locked_documents.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/app/models/epm_dmsf_open_approvals.rb b/app/models/epm_dmsf_open_approvals.rb index de7ddb2f..3b51b955 100644 --- a/app/models/epm_dmsf_open_approvals.rb +++ b/app/models/epm_dmsf_open_approvals.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/app/models/epm_dmsf_watched_documents.rb b/app/models/epm_dmsf_watched_documents.rb index 0f454a02..71404e57 100644 --- a/app/models/epm_dmsf_watched_documents.rb +++ b/app/models/epm_dmsf_watched_documents.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/app/validators/dmsf_file_name_validator.rb b/app/validators/dmsf_file_name_validator.rb index a3ab8c51..7b5b193f 100644 --- a/app/validators/dmsf_file_name_validator.rb +++ b/app/validators/dmsf_file_name_validator.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/app/validators/dmsf_folder_parent_validator.rb b/app/validators/dmsf_folder_parent_validator.rb index 8e54c0c4..e6c666cb 100644 --- a/app/validators/dmsf_folder_parent_validator.rb +++ b/app/validators/dmsf_folder_parent_validator.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/app/validators/dmsf_max_file_size_validator.rb b/app/validators/dmsf_max_file_size_validator.rb index 3d2ad3ed..5b96b64c 100644 --- a/app/validators/dmsf_max_file_size_validator.rb +++ b/app/validators/dmsf_max_file_size_validator.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/app/validators/dmsf_url_validator.rb b/app/validators/dmsf_url_validator.rb index 194b89c9..7a7c9d58 100644 --- a/app/validators/dmsf_url_validator.rb +++ b/app/validators/dmsf_url_validator.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/app/validators/dmsf_workflow_name_validator.rb b/app/validators/dmsf_workflow_name_validator.rb index 9084f113..57e0e5bb 100644 --- a/app/validators/dmsf_workflow_name_validator.rb +++ b/app/validators/dmsf_workflow_name_validator.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/config/routes.rb b/config/routes.rb index 228c65c5..c4dead85 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/db/migrate/01_create_hierarchy.rb b/db/migrate/01_create_hierarchy.rb index 65777ffb..f9cb2351 100644 --- a/db/migrate/01_create_hierarchy.rb +++ b/db/migrate/01_create_hierarchy.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/db/migrate/02_dmsf_normalization.rb b/db/migrate/02_dmsf_normalization.rb index 2ceaf760..db0fdc46 100644 --- a/db/migrate/02_dmsf_normalization.rb +++ b/db/migrate/02_dmsf_normalization.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/db/migrate/03_dmsf_0_8_0.rb b/db/migrate/03_dmsf_0_8_0.rb index b26bcac7..87d3483a 100644 --- a/db/migrate/03_dmsf_0_8_0.rb +++ b/db/migrate/03_dmsf_0_8_0.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/db/migrate/04_dmsf_0_9_0.rb b/db/migrate/04_dmsf_0_9_0.rb index 86a4ff6a..113aa442 100644 --- a/db/migrate/04_dmsf_0_9_0.rb +++ b/db/migrate/04_dmsf_0_9_0.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/db/migrate/05_dmsf_0_9_0_1.rb b/db/migrate/05_dmsf_0_9_0_1.rb index f2edfea4..49fee112 100644 --- a/db/migrate/05_dmsf_0_9_0_1.rb +++ b/db/migrate/05_dmsf_0_9_0_1.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/db/migrate/06_dmsf_1_2_0.rb b/db/migrate/06_dmsf_1_2_0.rb index 2d639597..d6fb5d57 100644 --- a/db/migrate/06_dmsf_1_2_0.rb +++ b/db/migrate/06_dmsf_1_2_0.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/db/migrate/07_dmsf_1_4_4.rb b/db/migrate/07_dmsf_1_4_4.rb index efe3e941..c91d4649 100644 --- a/db/migrate/07_dmsf_1_4_4.rb +++ b/db/migrate/07_dmsf_1_4_4.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2012 Daniel Munn diff --git a/db/migrate/20120822100401_create_dmsf_workflows.rb b/db/migrate/20120822100401_create_dmsf_workflows.rb index 8aa78207..07177538 100644 --- a/db/migrate/20120822100401_create_dmsf_workflows.rb +++ b/db/migrate/20120822100401_create_dmsf_workflows.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20120822100402_create_dmsf_workflow_steps.rb b/db/migrate/20120822100402_create_dmsf_workflow_steps.rb index af5f760a..e02c7120 100644 --- a/db/migrate/20120822100402_create_dmsf_workflow_steps.rb +++ b/db/migrate/20120822100402_create_dmsf_workflow_steps.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20120822100403_create_dmsf_workflow_step_assignments.rb b/db/migrate/20120822100403_create_dmsf_workflow_step_assignments.rb index f48a4479..d5c791de 100644 --- a/db/migrate/20120822100403_create_dmsf_workflow_step_assignments.rb +++ b/db/migrate/20120822100403_create_dmsf_workflow_step_assignments.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20120822100404_create_dmsf_workflow_step_actions.rb b/db/migrate/20120822100404_create_dmsf_workflow_step_actions.rb index e20e77da..a7b85ac0 100644 --- a/db/migrate/20120822100404_create_dmsf_workflow_step_actions.rb +++ b/db/migrate/20120822100404_create_dmsf_workflow_step_actions.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20130819013955_update_projects.rb b/db/migrate/20130819013955_update_projects.rb index 4d54f066..72a85af8 100644 --- a/db/migrate/20130819013955_update_projects.rb +++ b/db/migrate/20130819013955_update_projects.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20131108141401_add_index_to_dmsf_files.rb b/db/migrate/20131108141401_add_index_to_dmsf_files.rb index acb55ef8..7816e836 100644 --- a/db/migrate/20131108141401_add_index_to_dmsf_files.rb +++ b/db/migrate/20131108141401_add_index_to_dmsf_files.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20131108141402_add_index_to_dmsf_folders.rb b/db/migrate/20131108141402_add_index_to_dmsf_folders.rb index 8a9b69bb..ef0940f8 100644 --- a/db/migrate/20131108141402_add_index_to_dmsf_folders.rb +++ b/db/migrate/20131108141402_add_index_to_dmsf_folders.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20131113141401_add_index_to_dmsf_file_revision.rb b/db/migrate/20131113141401_add_index_to_dmsf_file_revision.rb index e9c566f3..d3aac4a6 100644 --- a/db/migrate/20131113141401_add_index_to_dmsf_file_revision.rb +++ b/db/migrate/20131113141401_add_index_to_dmsf_file_revision.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20131113141402_add_index_to_dmsf_lock.rb b/db/migrate/20131113141402_add_index_to_dmsf_lock.rb index b42b9fa8..6bfc13f3 100644 --- a/db/migrate/20131113141402_add_index_to_dmsf_lock.rb +++ b/db/migrate/20131113141402_add_index_to_dmsf_lock.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20131113141403_create_dmsf_links.rb b/db/migrate/20131113141403_create_dmsf_links.rb index a373b4d4..ccee32a5 100644 --- a/db/migrate/20131113141403_create_dmsf_links.rb +++ b/db/migrate/20131113141403_create_dmsf_links.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20140314132501_notifications_on.rb b/db/migrate/20140314132501_notifications_on.rb index 9dcb250b..0ea8b5be 100644 --- a/db/migrate/20140314132501_notifications_on.rb +++ b/db/migrate/20140314132501_notifications_on.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20140519133201_trash_bin.rb b/db/migrate/20140519133201_trash_bin.rb index 87851825..8a5e1bd0 100644 --- a/db/migrate/20140519133201_trash_bin.rb +++ b/db/migrate/20140519133201_trash_bin.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20141013102501_remove_project_from_revision.rb b/db/migrate/20141013102501_remove_project_from_revision.rb index 6dd5c9b8..7e634519 100644 --- a/db/migrate/20141013102501_remove_project_from_revision.rb +++ b/db/migrate/20141013102501_remove_project_from_revision.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20141015132701_remove_folder_from_revision.rb b/db/migrate/20141015132701_remove_folder_from_revision.rb index ac06ce4d..194c2007 100644 --- a/db/migrate/20141015132701_remove_folder_from_revision.rb +++ b/db/migrate/20141015132701_remove_folder_from_revision.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20141205143001_remove_uniqueness_from_wf.rb b/db/migrate/20141205143001_remove_uniqueness_from_wf.rb index 95dafbdb..587e3e0b 100644 --- a/db/migrate/20141205143001_remove_uniqueness_from_wf.rb +++ b/db/migrate/20141205143001_remove_uniqueness_from_wf.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20150120152101_notifications_nullable.rb b/db/migrate/20150120152101_notifications_nullable.rb index 1b4dbafb..754618cf 100644 --- a/db/migrate/20150120152101_notifications_nullable.rb +++ b/db/migrate/20150120152101_notifications_nullable.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20150130052716_add_external.rb b/db/migrate/20150130052716_add_external.rb index 0564c790..16bcd52c 100644 --- a/db/migrate/20150130052716_add_external.rb +++ b/db/migrate/20150130052716_add_external.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20150202010301_add_user_to_links.rb b/db/migrate/20150202010301_add_user_to_links.rb index 2ae41531..a939f67d 100644 --- a/db/migrate/20150202010301_add_user_to_links.rb +++ b/db/migrate/20150202010301_add_user_to_links.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20150910153701_title_not_null.rb b/db/migrate/20150910153701_title_not_null.rb index ebf2824c..45896e0a 100644 --- a/db/migrate/20150910153701_title_not_null.rb +++ b/db/migrate/20150910153701_title_not_null.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20151020141801_large_files.rb b/db/migrate/20151020141801_large_files.rb index 984f5c63..81758827 100644 --- a/db/migrate/20151020141801_large_files.rb +++ b/db/migrate/20151020141801_large_files.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20151209100001_title_format.rb b/db/migrate/20151209100001_title_format.rb index 1958f442..c612a8a4 100644 --- a/db/migrate/20151209100001_title_format.rb +++ b/db/migrate/20151209100001_title_format.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20160215125801_approval_workflow_status.rb b/db/migrate/20160215125801_approval_workflow_status.rb index decf6e8c..cee5130b 100644 --- a/db/migrate/20160215125801_approval_workflow_status.rb +++ b/db/migrate/20160215125801_approval_workflow_status.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20160217133001_status_deleted.rb b/db/migrate/20160217133001_status_deleted.rb index c9b14fef..03afa73c 100644 --- a/db/migrate/20160217133001_status_deleted.rb +++ b/db/migrate/20160217133001_status_deleted.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20160222140401_approval_workflow_std_fields.rb b/db/migrate/20160222140401_approval_workflow_std_fields.rb index 7396fa37..eed89a85 100644 --- a/db/migrate/20160222140401_approval_workflow_std_fields.rb +++ b/db/migrate/20160222140401_approval_workflow_std_fields.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20160421150501_add_digest_to_revision.rb b/db/migrate/20160421150501_add_digest_to_revision.rb index 310e3cc4..3f16f975 100644 --- a/db/migrate/20160421150501_add_digest_to_revision.rb +++ b/db/migrate/20160421150501_add_digest_to_revision.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20161223133200_create_dmsf_public_urls.rb b/db/migrate/20161223133200_create_dmsf_public_urls.rb index 9361b7f8..f57b02e0 100644 --- a/db/migrate/20161223133200_create_dmsf_public_urls.rb +++ b/db/migrate/20161223133200_create_dmsf_public_urls.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20170103164701_add_name_to_appoval_workflow_step.rb b/db/migrate/20170103164701_add_name_to_appoval_workflow_step.rb index 4c31609b..6849efa7 100644 --- a/db/migrate/20170103164701_add_name_to_appoval_workflow_step.rb +++ b/db/migrate/20170103164701_add_name_to_appoval_workflow_step.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20170118142001_dmsf_file_container.rb b/db/migrate/20170118142001_dmsf_file_container.rb index 4bb02007..5319ccef 100644 --- a/db/migrate/20170118142001_dmsf_file_container.rb +++ b/db/migrate/20170118142001_dmsf_file_container.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20170204214753_add_revision_to_dmsf_lock.rb b/db/migrate/20170204214753_add_revision_to_dmsf_lock.rb index 767ae4c6..743154ed 100644 --- a/db/migrate/20170204214753_add_revision_to_dmsf_lock.rb +++ b/db/migrate/20170204214753_add_revision_to_dmsf_lock.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20170214153223_add_dmsf_file_last_revision_id_to_dmsf_lock.rb b/db/migrate/20170214153223_add_dmsf_file_last_revision_id_to_dmsf_lock.rb index 3dce1c2b..22a80669 100644 --- a/db/migrate/20170214153223_add_dmsf_file_last_revision_id_to_dmsf_lock.rb +++ b/db/migrate/20170214153223_add_dmsf_file_last_revision_id_to_dmsf_lock.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20170217141601_add_dmsf_not_inheritable_to_custom_fields.rb b/db/migrate/20170217141601_add_dmsf_not_inheritable_to_custom_fields.rb index c6d1e028..30744dbf 100644 --- a/db/migrate/20170217141601_add_dmsf_not_inheritable_to_custom_fields.rb +++ b/db/migrate/20170217141601_add_dmsf_not_inheritable_to_custom_fields.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20170323131231_dmsf_description_limit.rb b/db/migrate/20170323131231_dmsf_description_limit.rb index 1e0dc827..7bad0e3f 100644 --- a/db/migrate/20170323131231_dmsf_description_limit.rb +++ b/db/migrate/20170323131231_dmsf_description_limit.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20170330131901_create_dmsf_folder_permissions.rb b/db/migrate/20170330131901_create_dmsf_folder_permissions.rb index d27be5a4..0c4b42bf 100644 --- a/db/migrate/20170330131901_create_dmsf_folder_permissions.rb +++ b/db/migrate/20170330131901_create_dmsf_folder_permissions.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20170421101901_dmsf_file_container_rollback.rb b/db/migrate/20170421101901_dmsf_file_container_rollback.rb index 4ac7f14b..aa772280 100644 --- a/db/migrate/20170421101901_dmsf_file_container_rollback.rb +++ b/db/migrate/20170421101901_dmsf_file_container_rollback.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20170422104901_migrate_documents.rb b/db/migrate/20170422104901_migrate_documents.rb index db2d6517..849c7525 100644 --- a/db/migrate/20170422104901_migrate_documents.rb +++ b/db/migrate/20170422104901_migrate_documents.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20170526144701_dmsf_attachable.rb b/db/migrate/20170526144701_dmsf_attachable.rb index 4d7b5a12..00a14544 100644 --- a/db/migrate/20170526144701_dmsf_attachable.rb +++ b/db/migrate/20170526144701_dmsf_attachable.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20171027124101_change_revision_digest_limit_to_64.rb b/db/migrate/20171027124101_change_revision_digest_limit_to_64.rb index 424f9fc0..ae8ebd23 100644 --- a/db/migrate/20171027124101_change_revision_digest_limit_to_64.rb +++ b/db/migrate/20171027124101_change_revision_digest_limit_to_64.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20171110155901_add_index_to_dmsf_folder.rb b/db/migrate/20171110155901_add_index_to_dmsf_folder.rb index 278d8bbd..b4786943 100644 --- a/db/migrate/20171110155901_add_index_to_dmsf_folder.rb +++ b/db/migrate/20171110155901_add_index_to_dmsf_folder.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20180216152501_rename_title_format.rb b/db/migrate/20180216152501_rename_title_format.rb index 458eab7d..dc27e6b6 100644 --- a/db/migrate/20180216152501_rename_title_format.rb +++ b/db/migrate/20180216152501_rename_title_format.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20180903132101_fast_links.rb b/db/migrate/20180903132101_fast_links.rb index 12061176..cdc1d2e1 100644 --- a/db/migrate/20180903132101_fast_links.rb +++ b/db/migrate/20180903132101_fast_links.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20192703123101_workflow_started_by.rb b/db/migrate/20192703123101_workflow_started_by.rb index 00f7afac..85c31bd7 100644 --- a/db/migrate/20192703123101_workflow_started_by.rb +++ b/db/migrate/20192703123101_workflow_started_by.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20200218142414_add_index_on_dmsf_file_revision_id_to_access.rb b/db/migrate/20200218142414_add_index_on_dmsf_file_revision_id_to_access.rb index 95107a42..e54a20be 100644 --- a/db/migrate/20200218142414_add_index_on_dmsf_file_revision_id_to_access.rb +++ b/db/migrate/20200218142414_add_index_on_dmsf_file_revision_id_to_access.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20200423071301_add_indexes_on_dmsf_folder_id.rb b/db/migrate/20200423071301_add_indexes_on_dmsf_folder_id.rb index 0209c459..0158230f 100644 --- a/db/migrate/20200423071301_add_indexes_on_dmsf_folder_id.rb +++ b/db/migrate/20200423071301_add_indexes_on_dmsf_folder_id.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20200813075501_change_index_in_dmsf_locks.rb b/db/migrate/20200813075501_change_index_in_dmsf_locks.rb index 7a9b7535..2bca8361 100644 --- a/db/migrate/20200813075501_change_index_in_dmsf_locks.rb +++ b/db/migrate/20200813075501_change_index_in_dmsf_locks.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20210115120901_add_owner_to_dmsf_lock.rb b/db/migrate/20210115120901_add_owner_to_dmsf_lock.rb index 7986cd2d..ba2943b7 100644 --- a/db/migrate/20210115120901_add_owner_to_dmsf_lock.rb +++ b/db/migrate/20210115120901_add_owner_to_dmsf_lock.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20220317100901_add_patch_version.rb b/db/migrate/20220317100901_add_patch_version.rb index 91d8474d..ed98a3e2 100644 --- a/db/migrate/20220317100901_add_patch_version.rb +++ b/db/migrate/20220317100901_add_patch_version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20220906151100_add_projects_default_dmsf_query_id.rb b/db/migrate/20220906151100_add_projects_default_dmsf_query_id.rb index f8ed16f0..27086aff 100644 --- a/db/migrate/20220906151100_add_projects_default_dmsf_query_id.rb +++ b/db/migrate/20220906151100_add_projects_default_dmsf_query_id.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20230105082201_null_minor_version.rb b/db/migrate/20230105082201_null_minor_version.rb index 98e0fb3a..7505cbdf 100644 --- a/db/migrate/20230105082201_null_minor_version.rb +++ b/db/migrate/20230105082201_null_minor_version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/db/migrate/20230426130301_add_uniqness_to_step_assignments.rb b/db/migrate/20230426130301_add_uniqness_to_step_assignments.rb index b050f395..4476c508 100644 --- a/db/migrate/20230426130301_add_uniqness_to_step_assignments.rb +++ b/db/migrate/20230426130301_add_uniqness_to_step_assignments.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/extra/api/api_client.rb b/extra/api/api_client.rb index 1fd48424..ef21e299 100644 --- a/extra/api/api_client.rb +++ b/extra/api/api_client.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/extra/xapian_indexer.rb b/extra/xapian_indexer.rb index f713d5c7..7a7d742e 100644 --- a/extra/xapian_indexer.rb +++ b/extra/xapian_indexer.rb @@ -1,7 +1,7 @@ #!/usr/bin/ruby -W0 # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2010 Xabier Elkano diff --git a/init.rb b/init.rb index 6bdc4d38..7526c19a 100644 --- a/init.rb +++ b/init.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/lib/dav4rack.rb b/lib/dav4rack.rb index be7458e8..57dc3a27 100644 --- a/lib/dav4rack.rb +++ b/lib/dav4rack.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/lib/redmine_dmsf.rb b/lib/redmine_dmsf.rb index d57bc1ff..0783bf44 100644 --- a/lib/redmine_dmsf.rb +++ b/lib/redmine_dmsf.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/lib/redmine_dmsf/dmsf_zip.rb b/lib/redmine_dmsf/dmsf_zip.rb index 3276c971..f8cc346b 100644 --- a/lib/redmine_dmsf/dmsf_zip.rb +++ b/lib/redmine_dmsf/dmsf_zip.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/lib/redmine_dmsf/errors/dmsf_access_error.rb b/lib/redmine_dmsf/errors/dmsf_access_error.rb index 06021f89..4b75dbd9 100644 --- a/lib/redmine_dmsf/errors/dmsf_access_error.rb +++ b/lib/redmine_dmsf/errors/dmsf_access_error.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/lib/redmine_dmsf/errors/dmsf_email_max_file_size_error.rb b/lib/redmine_dmsf/errors/dmsf_email_max_file_size_error.rb index fb8bb37e..cabe5654 100644 --- a/lib/redmine_dmsf/errors/dmsf_email_max_file_size_error.rb +++ b/lib/redmine_dmsf/errors/dmsf_email_max_file_size_error.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/redmine_dmsf/errors/dmsf_file_not_found_error.rb b/lib/redmine_dmsf/errors/dmsf_file_not_found_error.rb index e1bdee61..4f19db96 100644 --- a/lib/redmine_dmsf/errors/dmsf_file_not_found_error.rb +++ b/lib/redmine_dmsf/errors/dmsf_file_not_found_error.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/redmine_dmsf/errors/dmsf_lock_error.rb b/lib/redmine_dmsf/errors/dmsf_lock_error.rb index a6aa9873..c16dc856 100644 --- a/lib/redmine_dmsf/errors/dmsf_lock_error.rb +++ b/lib/redmine_dmsf/errors/dmsf_lock_error.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2012 Daniel Munn diff --git a/lib/redmine_dmsf/errors/dmsf_zip_max_files_error.rb b/lib/redmine_dmsf/errors/dmsf_zip_max_files_error.rb index a8598b0c..9a55ba88 100644 --- a/lib/redmine_dmsf/errors/dmsf_zip_max_files_error.rb +++ b/lib/redmine_dmsf/errors/dmsf_zip_max_files_error.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/redmine_dmsf/hooks/controllers/issues_controller_hooks.rb b/lib/redmine_dmsf/hooks/controllers/issues_controller_hooks.rb index b603c4fd..53936a0e 100644 --- a/lib/redmine_dmsf/hooks/controllers/issues_controller_hooks.rb +++ b/lib/redmine_dmsf/hooks/controllers/issues_controller_hooks.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/redmine_dmsf/hooks/controllers/search_controller_hooks.rb b/lib/redmine_dmsf/hooks/controllers/search_controller_hooks.rb index 2bbc1704..a79cef3a 100644 --- a/lib/redmine_dmsf/hooks/controllers/search_controller_hooks.rb +++ b/lib/redmine_dmsf/hooks/controllers/search_controller_hooks.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/redmine_dmsf/hooks/helpers/issues_helper_hooks.rb b/lib/redmine_dmsf/hooks/helpers/issues_helper_hooks.rb index db1fb8ca..357fec68 100644 --- a/lib/redmine_dmsf/hooks/helpers/issues_helper_hooks.rb +++ b/lib/redmine_dmsf/hooks/helpers/issues_helper_hooks.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/redmine_dmsf/hooks/helpers/project_helper_hooks.rb b/lib/redmine_dmsf/hooks/helpers/project_helper_hooks.rb index 64eb4074..e406c6a2 100644 --- a/lib/redmine_dmsf/hooks/helpers/project_helper_hooks.rb +++ b/lib/redmine_dmsf/hooks/helpers/project_helper_hooks.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/redmine_dmsf/hooks/helpers/search_helper_hooks.rb b/lib/redmine_dmsf/hooks/helpers/search_helper_hooks.rb index eef7dd45..77e97ec9 100644 --- a/lib/redmine_dmsf/hooks/helpers/search_helper_hooks.rb +++ b/lib/redmine_dmsf/hooks/helpers/search_helper_hooks.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/redmine_dmsf/hooks/views/base_view_hooks.rb b/lib/redmine_dmsf/hooks/views/base_view_hooks.rb index 1d940e64..5cfc33e2 100644 --- a/lib/redmine_dmsf/hooks/views/base_view_hooks.rb +++ b/lib/redmine_dmsf/hooks/views/base_view_hooks.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/redmine_dmsf/hooks/views/custom_field_view_hooks.rb b/lib/redmine_dmsf/hooks/views/custom_field_view_hooks.rb index 7c5f2759..df9074f9 100644 --- a/lib/redmine_dmsf/hooks/views/custom_field_view_hooks.rb +++ b/lib/redmine_dmsf/hooks/views/custom_field_view_hooks.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/redmine_dmsf/hooks/views/issue_view_hooks.rb b/lib/redmine_dmsf/hooks/views/issue_view_hooks.rb index b91d8fb8..a758513e 100644 --- a/lib/redmine_dmsf/hooks/views/issue_view_hooks.rb +++ b/lib/redmine_dmsf/hooks/views/issue_view_hooks.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/redmine_dmsf/hooks/views/my_account_view_hooks.rb b/lib/redmine_dmsf/hooks/views/my_account_view_hooks.rb index 33759a88..796698ed 100644 --- a/lib/redmine_dmsf/hooks/views/my_account_view_hooks.rb +++ b/lib/redmine_dmsf/hooks/views/my_account_view_hooks.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/redmine_dmsf/hooks/views/search_view_hooks.rb b/lib/redmine_dmsf/hooks/views/search_view_hooks.rb index 2f6f5945..e0b48262 100644 --- a/lib/redmine_dmsf/hooks/views/search_view_hooks.rb +++ b/lib/redmine_dmsf/hooks/views/search_view_hooks.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/redmine_dmsf/hooks/views/view_projects_form_hook.rb b/lib/redmine_dmsf/hooks/views/view_projects_form_hook.rb index cdf9a585..afd8c4b8 100644 --- a/lib/redmine_dmsf/hooks/views/view_projects_form_hook.rb +++ b/lib/redmine_dmsf/hooks/views/view_projects_form_hook.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/redmine_dmsf/lockable.rb b/lib/redmine_dmsf/lockable.rb index 212d506b..5294a51c 100644 --- a/lib/redmine_dmsf/lockable.rb +++ b/lib/redmine_dmsf/lockable.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/lib/redmine_dmsf/macros.rb b/lib/redmine_dmsf/macros.rb index 7866c813..96d19e95 100644 --- a/lib/redmine_dmsf/macros.rb +++ b/lib/redmine_dmsf/macros.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/redmine_dmsf/patches/attachable_patch.rb b/lib/redmine_dmsf/patches/attachable_patch.rb index d14a8900..a2444d22 100644 --- a/lib/redmine_dmsf/patches/attachable_patch.rb +++ b/lib/redmine_dmsf/patches/attachable_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/redmine_dmsf/patches/easy_crm_case_patch.rb b/lib/redmine_dmsf/patches/easy_crm_case_patch.rb index 538316ec..88b0f353 100644 --- a/lib/redmine_dmsf/patches/easy_crm_case_patch.rb +++ b/lib/redmine_dmsf/patches/easy_crm_case_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/redmine_dmsf/patches/easy_crm_cases_controller_patch.rb b/lib/redmine_dmsf/patches/easy_crm_cases_controller_patch.rb index a55bbbdc..d85cf664 100644 --- a/lib/redmine_dmsf/patches/easy_crm_cases_controller_patch.rb +++ b/lib/redmine_dmsf/patches/easy_crm_cases_controller_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/redmine_dmsf/patches/formatting_helper_patch.rb b/lib/redmine_dmsf/patches/formatting_helper_patch.rb index 7c6b6c41..b8e98457 100644 --- a/lib/redmine_dmsf/patches/formatting_helper_patch.rb +++ b/lib/redmine_dmsf/patches/formatting_helper_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/redmine_dmsf/patches/issue_patch.rb b/lib/redmine_dmsf/patches/issue_patch.rb index 5beb5e51..51e8770a 100644 --- a/lib/redmine_dmsf/patches/issue_patch.rb +++ b/lib/redmine_dmsf/patches/issue_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/redmine_dmsf/patches/notifiable_patch.rb b/lib/redmine_dmsf/patches/notifiable_patch.rb index 2781cae2..58739011 100644 --- a/lib/redmine_dmsf/patches/notifiable_patch.rb +++ b/lib/redmine_dmsf/patches/notifiable_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/redmine_dmsf/patches/notifiable_ru_patch.rb b/lib/redmine_dmsf/patches/notifiable_ru_patch.rb index 65a45ba8..bb3a1491 100644 --- a/lib/redmine_dmsf/patches/notifiable_ru_patch.rb +++ b/lib/redmine_dmsf/patches/notifiable_ru_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/redmine_dmsf/patches/pdf_patch.rb b/lib/redmine_dmsf/patches/pdf_patch.rb index 0fd3e0e4..28f67aad 100644 --- a/lib/redmine_dmsf/patches/pdf_patch.rb +++ b/lib/redmine_dmsf/patches/pdf_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/redmine_dmsf/patches/project_patch.rb b/lib/redmine_dmsf/patches/project_patch.rb index 6abafc2a..a2d89b09 100644 --- a/lib/redmine_dmsf/patches/project_patch.rb +++ b/lib/redmine_dmsf/patches/project_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/lib/redmine_dmsf/patches/projects_helper_patch.rb b/lib/redmine_dmsf/patches/projects_helper_patch.rb index 91c91d83..02f2ff48 100644 --- a/lib/redmine_dmsf/patches/projects_helper_patch.rb +++ b/lib/redmine_dmsf/patches/projects_helper_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/lib/redmine_dmsf/patches/queries_controller_patch.rb b/lib/redmine_dmsf/patches/queries_controller_patch.rb index c87a6819..e77cd3ac 100644 --- a/lib/redmine_dmsf/patches/queries_controller_patch.rb +++ b/lib/redmine_dmsf/patches/queries_controller_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/redmine_dmsf/patches/role_patch.rb b/lib/redmine_dmsf/patches/role_patch.rb index 3cd49f23..27e6e3f0 100644 --- a/lib/redmine_dmsf/patches/role_patch.rb +++ b/lib/redmine_dmsf/patches/role_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/redmine_dmsf/patches/user_patch.rb b/lib/redmine_dmsf/patches/user_patch.rb index 77af0692..9b8640d6 100644 --- a/lib/redmine_dmsf/patches/user_patch.rb +++ b/lib/redmine_dmsf/patches/user_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/redmine_dmsf/patches/user_preference_patch.rb b/lib/redmine_dmsf/patches/user_preference_patch.rb index e282c978..3f4ba6cf 100644 --- a/lib/redmine_dmsf/patches/user_preference_patch.rb +++ b/lib/redmine_dmsf/patches/user_preference_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/redmine_dmsf/plugin.rb b/lib/redmine_dmsf/plugin.rb index 998e59d7..9fdae99d 100644 --- a/lib/redmine_dmsf/plugin.rb +++ b/lib/redmine_dmsf/plugin.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/lib/redmine_dmsf/preview.rb b/lib/redmine_dmsf/preview.rb index 24a86670..84b36185 100644 --- a/lib/redmine_dmsf/preview.rb +++ b/lib/redmine_dmsf/preview.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/lib/redmine_dmsf/webdav/base_resource.rb b/lib/redmine_dmsf/webdav/base_resource.rb index 63ab20da..f18cbea8 100644 --- a/lib/redmine_dmsf/webdav/base_resource.rb +++ b/lib/redmine_dmsf/webdav/base_resource.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2012 Daniel Munn diff --git a/lib/redmine_dmsf/webdav/custom_middleware.rb b/lib/redmine_dmsf/webdav/custom_middleware.rb index c8dbb225..9fdd4883 100644 --- a/lib/redmine_dmsf/webdav/custom_middleware.rb +++ b/lib/redmine_dmsf/webdav/custom_middleware.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/redmine_dmsf/webdav/dmsf_resource.rb b/lib/redmine_dmsf/webdav/dmsf_resource.rb index 79ddf61b..2c0b61cb 100644 --- a/lib/redmine_dmsf/webdav/dmsf_resource.rb +++ b/lib/redmine_dmsf/webdav/dmsf_resource.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2012 Daniel Munn diff --git a/lib/redmine_dmsf/webdav/index_resource.rb b/lib/redmine_dmsf/webdav/index_resource.rb index cf655fea..4f84d839 100644 --- a/lib/redmine_dmsf/webdav/index_resource.rb +++ b/lib/redmine_dmsf/webdav/index_resource.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2012 Daniel Munn diff --git a/lib/redmine_dmsf/webdav/project_resource.rb b/lib/redmine_dmsf/webdav/project_resource.rb index 24d356d8..7f0a56bd 100644 --- a/lib/redmine_dmsf/webdav/project_resource.rb +++ b/lib/redmine_dmsf/webdav/project_resource.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2012 Daniel Munn diff --git a/lib/redmine_dmsf/webdav/resource_proxy.rb b/lib/redmine_dmsf/webdav/resource_proxy.rb index 0a7a8dbb..a0a3c8b8 100644 --- a/lib/redmine_dmsf/webdav/resource_proxy.rb +++ b/lib/redmine_dmsf/webdav/resource_proxy.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2012 Daniel Munn diff --git a/lib/tasks/dmsf_alert_approvals.rake b/lib/tasks/dmsf_alert_approvals.rake index 54e45e01..649eb8ea 100644 --- a/lib/tasks/dmsf_alert_approvals.rake +++ b/lib/tasks/dmsf_alert_approvals.rake @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/tasks/dmsf_convert_documents.rake b/lib/tasks/dmsf_convert_documents.rake index 2503a3ea..80caeb3d 100644 --- a/lib/tasks/dmsf_convert_documents.rake +++ b/lib/tasks/dmsf_convert_documents.rake @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/lib/tasks/dmsf_create_digests.rake b/lib/tasks/dmsf_create_digests.rake index d61a9d02..afbd4183 100644 --- a/lib/tasks/dmsf_create_digests.rake +++ b/lib/tasks/dmsf_create_digests.rake @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/tasks/dmsf_maintenance.rake b/lib/tasks/dmsf_maintenance.rake index 9e4d73f3..c2bb75b5 100644 --- a/lib/tasks/dmsf_maintenance.rake +++ b/lib/tasks/dmsf_maintenance.rake @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/lib/tasks/dmsf_webdav_test.rake b/lib/tasks/dmsf_webdav_test.rake index 7f8814e2..3380f47c 100644 --- a/lib/tasks/dmsf_webdav_test.rake +++ b/lib/tasks/dmsf_webdav_test.rake @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/functional/dmsf_context_menus_controller_test.rb b/test/functional/dmsf_context_menus_controller_test.rb index bad2bd5b..e809a9bf 100644 --- a/test/functional/dmsf_context_menus_controller_test.rb +++ b/test/functional/dmsf_context_menus_controller_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/functional/dmsf_controller_test.rb b/test/functional/dmsf_controller_test.rb index 5c80c7c3..bc1952f4 100644 --- a/test/functional/dmsf_controller_test.rb +++ b/test/functional/dmsf_controller_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/functional/dmsf_files_controller_test.rb b/test/functional/dmsf_files_controller_test.rb index 56cffcf4..c806e287 100644 --- a/test/functional/dmsf_files_controller_test.rb +++ b/test/functional/dmsf_files_controller_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/functional/dmsf_files_copy_controller_test.rb b/test/functional/dmsf_files_copy_controller_test.rb index f2c77443..6b99d7c5 100644 --- a/test/functional/dmsf_files_copy_controller_test.rb +++ b/test/functional/dmsf_files_copy_controller_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/functional/dmsf_folder_permissions_controller_test.rb b/test/functional/dmsf_folder_permissions_controller_test.rb index 80a99c4f..3db16004 100644 --- a/test/functional/dmsf_folder_permissions_controller_test.rb +++ b/test/functional/dmsf_folder_permissions_controller_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/functional/dmsf_folders_copy_controller_test.rb b/test/functional/dmsf_folders_copy_controller_test.rb index 943562bb..3cb23ce1 100644 --- a/test/functional/dmsf_folders_copy_controller_test.rb +++ b/test/functional/dmsf_folders_copy_controller_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/functional/dmsf_links_controller_test.rb b/test/functional/dmsf_links_controller_test.rb index af80bf37..eeeb5917 100644 --- a/test/functional/dmsf_links_controller_test.rb +++ b/test/functional/dmsf_links_controller_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/functional/dmsf_public_urls_controller_test.rb b/test/functional/dmsf_public_urls_controller_test.rb index f780454f..c854a7f6 100644 --- a/test/functional/dmsf_public_urls_controller_test.rb +++ b/test/functional/dmsf_public_urls_controller_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/functional/dmsf_state_controller_test.rb b/test/functional/dmsf_state_controller_test.rb index 303cdf7a..bf62e051 100644 --- a/test/functional/dmsf_state_controller_test.rb +++ b/test/functional/dmsf_state_controller_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/functional/dmsf_workflow_controller_test.rb b/test/functional/dmsf_workflow_controller_test.rb index af65b942..d17edc19 100644 --- a/test/functional/dmsf_workflow_controller_test.rb +++ b/test/functional/dmsf_workflow_controller_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb index 49adeb0a..b8190479 100644 --- a/test/functional/issues_controller_test.rb +++ b/test/functional/issues_controller_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/functional/my_controller_test.rb b/test/functional/my_controller_test.rb index f700b6e8..1c87d128 100644 --- a/test/functional/my_controller_test.rb +++ b/test/functional/my_controller_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/functional/projects_controller_test.rb b/test/functional/projects_controller_test.rb index 4cf89634..1455cfbd 100644 --- a/test/functional/projects_controller_test.rb +++ b/test/functional/projects_controller_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/helper_test.rb b/test/helper_test.rb index ceb721af..2c895f55 100644 --- a/test/helper_test.rb +++ b/test/helper_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/test/helpers/dmsf_helper_test.rb b/test/helpers/dmsf_helper_test.rb index fd22f816..7fa142f9 100644 --- a/test/helpers/dmsf_helper_test.rb +++ b/test/helpers/dmsf_helper_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/helpers/dmsf_links_helper_test.rb b/test/helpers/dmsf_links_helper_test.rb index 78ab3195..60066470 100644 --- a/test/helpers/dmsf_links_helper_test.rb +++ b/test/helpers/dmsf_links_helper_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/helpers/dmsf_queries_helper_test.rb b/test/helpers/dmsf_queries_helper_test.rb index c98b8b95..7ce190b0 100644 --- a/test/helpers/dmsf_queries_helper_test.rb +++ b/test/helpers/dmsf_queries_helper_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/integration/rest_api/dmsf_api_test.rb b/test/integration/rest_api/dmsf_api_test.rb index 9a23ea47..722060f2 100644 --- a/test/integration/rest_api/dmsf_api_test.rb +++ b/test/integration/rest_api/dmsf_api_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/integration/rest_api/dmsf_file_api_test.rb b/test/integration/rest_api/dmsf_file_api_test.rb index 2f4971bb..f20d0c26 100644 --- a/test/integration/rest_api/dmsf_file_api_test.rb +++ b/test/integration/rest_api/dmsf_file_api_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/integration/rest_api/dmsf_folder_api_test.rb b/test/integration/rest_api/dmsf_folder_api_test.rb index 7608e1e9..7706df8a 100644 --- a/test/integration/rest_api/dmsf_folder_api_test.rb +++ b/test/integration/rest_api/dmsf_folder_api_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/integration/rest_api/dmsf_link_api_test.rb b/test/integration/rest_api/dmsf_link_api_test.rb index e63fad50..ed2d389b 100644 --- a/test/integration/rest_api/dmsf_link_api_test.rb +++ b/test/integration/rest_api/dmsf_link_api_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/integration/webdav/dmsf_webdav_custom_middleware_test.rb b/test/integration/webdav/dmsf_webdav_custom_middleware_test.rb index 437b9d56..b868746a 100644 --- a/test/integration/webdav/dmsf_webdav_custom_middleware_test.rb +++ b/test/integration/webdav/dmsf_webdav_custom_middleware_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/integration/webdav/dmsf_webdav_delete_test.rb b/test/integration/webdav/dmsf_webdav_delete_test.rb index d62f3ebd..9360e087 100644 --- a/test/integration/webdav/dmsf_webdav_delete_test.rb +++ b/test/integration/webdav/dmsf_webdav_delete_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2012 Daniel Munn diff --git a/test/integration/webdav/dmsf_webdav_get_test.rb b/test/integration/webdav/dmsf_webdav_get_test.rb index 4b145aa5..07d02f73 100644 --- a/test/integration/webdav/dmsf_webdav_get_test.rb +++ b/test/integration/webdav/dmsf_webdav_get_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2012 Daniel Munn diff --git a/test/integration/webdav/dmsf_webdav_head_test.rb b/test/integration/webdav/dmsf_webdav_head_test.rb index 84daec6e..1f070b39 100644 --- a/test/integration/webdav/dmsf_webdav_head_test.rb +++ b/test/integration/webdav/dmsf_webdav_head_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2012 Daniel Munn diff --git a/test/integration/webdav/dmsf_webdav_lock_test.rb b/test/integration/webdav/dmsf_webdav_lock_test.rb index 157765ea..6807b771 100644 --- a/test/integration/webdav/dmsf_webdav_lock_test.rb +++ b/test/integration/webdav/dmsf_webdav_lock_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2012 Daniel Munn diff --git a/test/integration/webdav/dmsf_webdav_mkcol_test.rb b/test/integration/webdav/dmsf_webdav_mkcol_test.rb index f6e15e21..46f88052 100644 --- a/test/integration/webdav/dmsf_webdav_mkcol_test.rb +++ b/test/integration/webdav/dmsf_webdav_mkcol_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2012 Daniel Munn diff --git a/test/integration/webdav/dmsf_webdav_move_test.rb b/test/integration/webdav/dmsf_webdav_move_test.rb index 84f47062..754bdece 100644 --- a/test/integration/webdav/dmsf_webdav_move_test.rb +++ b/test/integration/webdav/dmsf_webdav_move_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2012 Daniel Munn diff --git a/test/integration/webdav/dmsf_webdav_options_test.rb b/test/integration/webdav/dmsf_webdav_options_test.rb index ac7a522f..009ba2ec 100644 --- a/test/integration/webdav/dmsf_webdav_options_test.rb +++ b/test/integration/webdav/dmsf_webdav_options_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2012 Daniel Munn diff --git a/test/integration/webdav/dmsf_webdav_post_test.rb b/test/integration/webdav/dmsf_webdav_post_test.rb index 04f625e9..f3b40f41 100644 --- a/test/integration/webdav/dmsf_webdav_post_test.rb +++ b/test/integration/webdav/dmsf_webdav_post_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2012 Daniel Munn diff --git a/test/integration/webdav/dmsf_webdav_propfind_test.rb b/test/integration/webdav/dmsf_webdav_propfind_test.rb index 2464cfc8..fce4f122 100644 --- a/test/integration/webdav/dmsf_webdav_propfind_test.rb +++ b/test/integration/webdav/dmsf_webdav_propfind_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2012 Daniel Munn diff --git a/test/integration/webdav/dmsf_webdav_put_test.rb b/test/integration/webdav/dmsf_webdav_put_test.rb index 992bb4bb..a11ac455 100644 --- a/test/integration/webdav/dmsf_webdav_put_test.rb +++ b/test/integration/webdav/dmsf_webdav_put_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2012 Daniel Munn diff --git a/test/integration/webdav/dmsf_webdav_unlock_test.rb b/test/integration/webdav/dmsf_webdav_unlock_test.rb index db0b7a0b..c090332f 100644 --- a/test/integration/webdav/dmsf_webdav_unlock_test.rb +++ b/test/integration/webdav/dmsf_webdav_unlock_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2012 Daniel Munn diff --git a/test/integration_test.rb b/test/integration_test.rb index ffee0123..de41fec4 100644 --- a/test/integration_test.rb +++ b/test/integration_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/test/test_case.rb b/test/test_case.rb index 20065c66..2ced8e40 100644 --- a/test/test_case.rb +++ b/test/test_case.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/test/test_helper.rb b/test/test_helper.rb index 4026886e..12adfcb5 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš diff --git a/test/unit/attachable_patch_test.rb b/test/unit/attachable_patch_test.rb index 20792753..460994de 100644 --- a/test/unit/attachable_patch_test.rb +++ b/test/unit/attachable_patch_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/unit/dmsf_file_revision_test.rb b/test/unit/dmsf_file_revision_test.rb index 4f41025b..3e31f2bf 100644 --- a/test/unit/dmsf_file_revision_test.rb +++ b/test/unit/dmsf_file_revision_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/unit/dmsf_file_test.rb b/test/unit/dmsf_file_test.rb index 62f8a964..bb99b7d8 100644 --- a/test/unit/dmsf_file_test.rb +++ b/test/unit/dmsf_file_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2012 Daniel Munn diff --git a/test/unit/dmsf_folder_permission_test.rb b/test/unit/dmsf_folder_permission_test.rb index f8732b10..99be4f72 100644 --- a/test/unit/dmsf_folder_permission_test.rb +++ b/test/unit/dmsf_folder_permission_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/unit/dmsf_folder_test.rb b/test/unit/dmsf_folder_test.rb index 2b41748e..a4e24cf4 100644 --- a/test/unit/dmsf_folder_test.rb +++ b/test/unit/dmsf_folder_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2012 Daniel Munn diff --git a/test/unit/dmsf_link_test.rb b/test/unit/dmsf_link_test.rb index 212c9237..768867b9 100644 --- a/test/unit/dmsf_link_test.rb +++ b/test/unit/dmsf_link_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/unit/dmsf_lock_test.rb b/test/unit/dmsf_lock_test.rb index 8d865c01..4ac719de 100644 --- a/test/unit/dmsf_lock_test.rb +++ b/test/unit/dmsf_lock_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2012 Daniel Munn diff --git a/test/unit/dmsf_mailer_test.rb b/test/unit/dmsf_mailer_test.rb index de3baed8..eadffa2f 100644 --- a/test/unit/dmsf_mailer_test.rb +++ b/test/unit/dmsf_mailer_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/unit/dmsf_public_url_test.rb b/test/unit/dmsf_public_url_test.rb index 10259ae9..1161da8b 100644 --- a/test/unit/dmsf_public_url_test.rb +++ b/test/unit/dmsf_public_url_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/unit/dmsf_query_test.rb b/test/unit/dmsf_query_test.rb index 74fc5145..bb3e5fcb 100644 --- a/test/unit/dmsf_query_test.rb +++ b/test/unit/dmsf_query_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2012 Daniel Munn diff --git a/test/unit/dmsf_upload_test.rb b/test/unit/dmsf_upload_test.rb index 34688b06..609b404f 100644 --- a/test/unit/dmsf_upload_test.rb +++ b/test/unit/dmsf_upload_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/unit/dmsf_workflow_step_action_test.rb b/test/unit/dmsf_workflow_step_action_test.rb index e5913406..27807bbd 100644 --- a/test/unit/dmsf_workflow_step_action_test.rb +++ b/test/unit/dmsf_workflow_step_action_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/unit/dmsf_workflow_step_assignment_test.rb b/test/unit/dmsf_workflow_step_assignment_test.rb index b0ed5f9a..31d740e5 100644 --- a/test/unit/dmsf_workflow_step_assignment_test.rb +++ b/test/unit/dmsf_workflow_step_assignment_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/unit/dmsf_workflow_step_test.rb b/test/unit/dmsf_workflow_step_test.rb index 23cd938e..54bd4f06 100644 --- a/test/unit/dmsf_workflow_step_test.rb +++ b/test/unit/dmsf_workflow_step_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/unit/dmsf_workflow_test.rb b/test/unit/dmsf_workflow_test.rb index 8d0323d1..201cf364 100644 --- a/test/unit/dmsf_workflow_test.rb +++ b/test/unit/dmsf_workflow_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/unit/issue_patch_test.rb b/test/unit/issue_patch_test.rb index 1b906f11..efe701ed 100644 --- a/test/unit/issue_patch_test.rb +++ b/test/unit/issue_patch_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/unit/lib/redmine_dmsf/dmsf_macros_test.rb b/test/unit/lib/redmine_dmsf/dmsf_macros_test.rb index 1522889f..a6c09951 100644 --- a/test/unit/lib/redmine_dmsf/dmsf_macros_test.rb +++ b/test/unit/lib/redmine_dmsf/dmsf_macros_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/unit/lib/redmine_dmsf/dmsf_plugin_test.rb b/test/unit/lib/redmine_dmsf/dmsf_plugin_test.rb index 50146b90..9b2e782b 100644 --- a/test/unit/lib/redmine_dmsf/dmsf_plugin_test.rb +++ b/test/unit/lib/redmine_dmsf/dmsf_plugin_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/unit/project_patch_test.rb b/test/unit/project_patch_test.rb index 7b36bc31..d966beae 100644 --- a/test/unit/project_patch_test.rb +++ b/test/unit/project_patch_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/unit/user_patch_test.rb b/test/unit/user_patch_test.rb index 276b5b65..d9b0c9ac 100644 --- a/test/unit/user_patch_test.rb +++ b/test/unit/user_patch_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/unit/user_preference_patch_test.rb b/test/unit/user_preference_patch_test.rb index 9d10da70..6eefc8d1 100644 --- a/test/unit/user_preference_patch_test.rb +++ b/test/unit/user_preference_patch_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011-23 Karel Pičman diff --git a/test/unit_test.rb b/test/unit_test.rb index ec1ee2d5..533cb6dd 100644 --- a/test/unit_test.rb +++ b/test/unit_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš