├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── README.md~ ├── app └── views │ ├── hooks │ └── redmine_more_filters │ │ ├── _css.html.erb │ │ ├── _issue_show.html.erb │ │ ├── _issues_context_menu.html.erb │ │ └── _toggle_operator.html.erb │ └── queries │ └── _filters.html.erb ├── assets ├── images │ └── icon-gantt.png └── stylesheets │ └── redmine_more_filters.css ├── config └── locales │ ├── de.yml │ ├── en.yml │ ├── es.yml │ ├── fr.yml │ ├── pt.yml │ ├── ru.yml │ ├── zh-TW.yml │ └── zh.yml ├── doc ├── new_date_filters.png └── new_string_and_text_filters.png ├── init.rb └── lib ├── redmine_more_filters.rb └── redmine_more_filters ├── hooks ├── header_hook.rb ├── issue_context_menu_hook.rb └── issue_show_hook.rb └── patches ├── database_patch.rb ├── gantt_patch.rb ├── gantts_controller_patch.rb ├── info_patch.rb ├── issue_patch.rb ├── issue_query_patch.rb ├── list_patch.rb ├── queries_helper_patch.rb ├── query_column_patch.rb ├── query_patch.rb └── user_patch.rb /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/README.md -------------------------------------------------------------------------------- /README.md~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/README.md~ -------------------------------------------------------------------------------- /app/views/hooks/redmine_more_filters/_css.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/app/views/hooks/redmine_more_filters/_css.html.erb -------------------------------------------------------------------------------- /app/views/hooks/redmine_more_filters/_issue_show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/app/views/hooks/redmine_more_filters/_issue_show.html.erb -------------------------------------------------------------------------------- /app/views/hooks/redmine_more_filters/_issues_context_menu.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/app/views/hooks/redmine_more_filters/_issues_context_menu.html.erb -------------------------------------------------------------------------------- /app/views/hooks/redmine_more_filters/_toggle_operator.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/app/views/hooks/redmine_more_filters/_toggle_operator.html.erb -------------------------------------------------------------------------------- /app/views/queries/_filters.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/app/views/queries/_filters.html.erb -------------------------------------------------------------------------------- /assets/images/icon-gantt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/assets/images/icon-gantt.png -------------------------------------------------------------------------------- /assets/stylesheets/redmine_more_filters.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/assets/stylesheets/redmine_more_filters.css -------------------------------------------------------------------------------- /config/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/config/locales/de.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/config/locales/es.yml -------------------------------------------------------------------------------- /config/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/config/locales/fr.yml -------------------------------------------------------------------------------- /config/locales/pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/config/locales/pt.yml -------------------------------------------------------------------------------- /config/locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/config/locales/ru.yml -------------------------------------------------------------------------------- /config/locales/zh-TW.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/config/locales/zh-TW.yml -------------------------------------------------------------------------------- /config/locales/zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/config/locales/zh.yml -------------------------------------------------------------------------------- /doc/new_date_filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/doc/new_date_filters.png -------------------------------------------------------------------------------- /doc/new_string_and_text_filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/doc/new_string_and_text_filters.png -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/init.rb -------------------------------------------------------------------------------- /lib/redmine_more_filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/lib/redmine_more_filters.rb -------------------------------------------------------------------------------- /lib/redmine_more_filters/hooks/header_hook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/lib/redmine_more_filters/hooks/header_hook.rb -------------------------------------------------------------------------------- /lib/redmine_more_filters/hooks/issue_context_menu_hook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/lib/redmine_more_filters/hooks/issue_context_menu_hook.rb -------------------------------------------------------------------------------- /lib/redmine_more_filters/hooks/issue_show_hook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/lib/redmine_more_filters/hooks/issue_show_hook.rb -------------------------------------------------------------------------------- /lib/redmine_more_filters/patches/database_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/lib/redmine_more_filters/patches/database_patch.rb -------------------------------------------------------------------------------- /lib/redmine_more_filters/patches/gantt_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/lib/redmine_more_filters/patches/gantt_patch.rb -------------------------------------------------------------------------------- /lib/redmine_more_filters/patches/gantts_controller_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/lib/redmine_more_filters/patches/gantts_controller_patch.rb -------------------------------------------------------------------------------- /lib/redmine_more_filters/patches/info_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/lib/redmine_more_filters/patches/info_patch.rb -------------------------------------------------------------------------------- /lib/redmine_more_filters/patches/issue_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/lib/redmine_more_filters/patches/issue_patch.rb -------------------------------------------------------------------------------- /lib/redmine_more_filters/patches/issue_query_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/lib/redmine_more_filters/patches/issue_query_patch.rb -------------------------------------------------------------------------------- /lib/redmine_more_filters/patches/list_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/lib/redmine_more_filters/patches/list_patch.rb -------------------------------------------------------------------------------- /lib/redmine_more_filters/patches/queries_helper_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/lib/redmine_more_filters/patches/queries_helper_patch.rb -------------------------------------------------------------------------------- /lib/redmine_more_filters/patches/query_column_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/lib/redmine_more_filters/patches/query_column_patch.rb -------------------------------------------------------------------------------- /lib/redmine_more_filters/patches/query_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/lib/redmine_more_filters/patches/query_patch.rb -------------------------------------------------------------------------------- /lib/redmine_more_filters/patches/user_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoHasenbein/redmine_more_filters/HEAD/lib/redmine_more_filters/patches/user_patch.rb --------------------------------------------------------------------------------