├── Gemfile ├── LICENSE.txt ├── README.md ├── app └── views │ └── hooks │ ├── _insert_xlsx_link_for_dialog.erb │ ├── _insert_xlsx_link_for_download.erb │ ├── _xlsx_export_dialog_on_issues_index.erb │ ├── _xlsx_export_dialog_on_projects_index.erb │ ├── _xlsx_export_dialog_on_timelog_index.erb │ └── _xlsx_export_dialog_on_users_index.erb ├── config └── routes.rb ├── init.rb ├── lib └── redmine_xlsx_format_issue_exporter │ ├── files_query_column.rb │ ├── issues_controller_patch.rb │ ├── other_formats_builder.rb │ ├── projects_controller_patch.rb │ ├── timelog_controller_patch.rb │ ├── users_controller_patch.rb │ ├── view_layouts_base_body_bottom_hook.rb │ ├── xlsx_export_helper.rb │ ├── xlsx_report_helper.rb │ └── xlsx_users_helper.rb └── test ├── functional ├── issues_controller_test.rb ├── projects_controller_latest.rb ├── projects_controller_test.rb └── timelog_controller_test.rb ├── integration ├── issues_index_page_33x.rb ├── issues_index_page_34x.rb ├── issues_index_page_latest.rb ├── issues_index_page_test.rb ├── issues_show_page_test.rb ├── plugins_page_test.rb ├── projects_index_page_40x.rb ├── projects_index_page_41x.rb ├── projects_index_page_latest.rb ├── projects_index_page_test.rb ├── timelog_index_page_test.rb ├── timelog_report_page_test.rb ├── users_index_page_latest.rb └── users_index_page_test.rb ├── rails4 └── action_controller │ └── test_case.rb ├── test_helper.rb └── unit └── lib ├── files_query_column_test.rb └── xlsx_export_helper_test.rb /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'write_xlsx' -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/README.md -------------------------------------------------------------------------------- /app/views/hooks/_insert_xlsx_link_for_dialog.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/app/views/hooks/_insert_xlsx_link_for_dialog.erb -------------------------------------------------------------------------------- /app/views/hooks/_insert_xlsx_link_for_download.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/app/views/hooks/_insert_xlsx_link_for_download.erb -------------------------------------------------------------------------------- /app/views/hooks/_xlsx_export_dialog_on_issues_index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/app/views/hooks/_xlsx_export_dialog_on_issues_index.erb -------------------------------------------------------------------------------- /app/views/hooks/_xlsx_export_dialog_on_projects_index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/app/views/hooks/_xlsx_export_dialog_on_projects_index.erb -------------------------------------------------------------------------------- /app/views/hooks/_xlsx_export_dialog_on_timelog_index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/app/views/hooks/_xlsx_export_dialog_on_timelog_index.erb -------------------------------------------------------------------------------- /app/views/hooks/_xlsx_export_dialog_on_users_index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/app/views/hooks/_xlsx_export_dialog_on_users_index.erb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- 1 | RedmineApp::Application.routes.draw do 2 | end -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/init.rb -------------------------------------------------------------------------------- /lib/redmine_xlsx_format_issue_exporter/files_query_column.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/lib/redmine_xlsx_format_issue_exporter/files_query_column.rb -------------------------------------------------------------------------------- /lib/redmine_xlsx_format_issue_exporter/issues_controller_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/lib/redmine_xlsx_format_issue_exporter/issues_controller_patch.rb -------------------------------------------------------------------------------- /lib/redmine_xlsx_format_issue_exporter/other_formats_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/lib/redmine_xlsx_format_issue_exporter/other_formats_builder.rb -------------------------------------------------------------------------------- /lib/redmine_xlsx_format_issue_exporter/projects_controller_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/lib/redmine_xlsx_format_issue_exporter/projects_controller_patch.rb -------------------------------------------------------------------------------- /lib/redmine_xlsx_format_issue_exporter/timelog_controller_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/lib/redmine_xlsx_format_issue_exporter/timelog_controller_patch.rb -------------------------------------------------------------------------------- /lib/redmine_xlsx_format_issue_exporter/users_controller_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/lib/redmine_xlsx_format_issue_exporter/users_controller_patch.rb -------------------------------------------------------------------------------- /lib/redmine_xlsx_format_issue_exporter/view_layouts_base_body_bottom_hook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/lib/redmine_xlsx_format_issue_exporter/view_layouts_base_body_bottom_hook.rb -------------------------------------------------------------------------------- /lib/redmine_xlsx_format_issue_exporter/xlsx_export_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/lib/redmine_xlsx_format_issue_exporter/xlsx_export_helper.rb -------------------------------------------------------------------------------- /lib/redmine_xlsx_format_issue_exporter/xlsx_report_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/lib/redmine_xlsx_format_issue_exporter/xlsx_report_helper.rb -------------------------------------------------------------------------------- /lib/redmine_xlsx_format_issue_exporter/xlsx_users_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/lib/redmine_xlsx_format_issue_exporter/xlsx_users_helper.rb -------------------------------------------------------------------------------- /test/functional/issues_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/test/functional/issues_controller_test.rb -------------------------------------------------------------------------------- /test/functional/projects_controller_latest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/test/functional/projects_controller_latest.rb -------------------------------------------------------------------------------- /test/functional/projects_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/test/functional/projects_controller_test.rb -------------------------------------------------------------------------------- /test/functional/timelog_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/test/functional/timelog_controller_test.rb -------------------------------------------------------------------------------- /test/integration/issues_index_page_33x.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/test/integration/issues_index_page_33x.rb -------------------------------------------------------------------------------- /test/integration/issues_index_page_34x.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/test/integration/issues_index_page_34x.rb -------------------------------------------------------------------------------- /test/integration/issues_index_page_latest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/test/integration/issues_index_page_latest.rb -------------------------------------------------------------------------------- /test/integration/issues_index_page_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/test/integration/issues_index_page_test.rb -------------------------------------------------------------------------------- /test/integration/issues_show_page_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/test/integration/issues_show_page_test.rb -------------------------------------------------------------------------------- /test/integration/plugins_page_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/test/integration/plugins_page_test.rb -------------------------------------------------------------------------------- /test/integration/projects_index_page_40x.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/test/integration/projects_index_page_40x.rb -------------------------------------------------------------------------------- /test/integration/projects_index_page_41x.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/test/integration/projects_index_page_41x.rb -------------------------------------------------------------------------------- /test/integration/projects_index_page_latest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/test/integration/projects_index_page_latest.rb -------------------------------------------------------------------------------- /test/integration/projects_index_page_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/test/integration/projects_index_page_test.rb -------------------------------------------------------------------------------- /test/integration/timelog_index_page_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/test/integration/timelog_index_page_test.rb -------------------------------------------------------------------------------- /test/integration/timelog_report_page_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/test/integration/timelog_report_page_test.rb -------------------------------------------------------------------------------- /test/integration/users_index_page_latest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/test/integration/users_index_page_latest.rb -------------------------------------------------------------------------------- /test/integration/users_index_page_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/test/integration/users_index_page_test.rb -------------------------------------------------------------------------------- /test/rails4/action_controller/test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/test/rails4/action_controller/test_case.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/unit/lib/files_query_column_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/test/unit/lib/files_query_column_test.rb -------------------------------------------------------------------------------- /test/unit/lib/xlsx_export_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/two-pack/redmine_xlsx_format_issue_exporter/HEAD/test/unit/lib/xlsx_export_helper_test.rb --------------------------------------------------------------------------------