To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / plugins / redmine_tags / lib / redmine_tags / hooks / views_issues_hook.rb @ 1360:45dbcd39b9e9

History | View | Annotate | Download (1.33 KB)

1 593:f12948591050 chris
# This file is a part of redmine_tags
2
# redMine plugin, that adds tagging support.
3
#
4
# Copyright (c) 2010 Aleksey V Zapparov AKA ixti
5
#
6
# redmine_tags is free software: you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation, either version 3 of the License, or
9
# (at your option) any later version.
10
#
11
# redmine_tags is distributed in the hope that it will be useful,
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
# GNU General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with redmine_tags.  If not, see <http://www.gnu.org/licenses/>.
18
19
module RedmineTags
20
  module Hooks
21
    class ViewsIssuesHook < Redmine::Hook::ViewListener
22 1351:6e033c113bd4 luis
23
        # TODO: temporary hack to disable tags on issues
24
        ## BEGIN     ~lf 20130712
25
26
        # render_on :view_issues_show_details_bottom, :partial => '# issues/tags'
27
        # render_on :view_issues_form_details_bottom, :partial => '# issues/tags_form'
28
        # render_on :view_issues_sidebar_planning_bottom, :partial => '# issues/tags_sidebar'
29
        # render_on :view_issues_bulk_edit_details_bottom, :partial => 'issues/tags_form'
30
31
        ## END     ~lf 20130712
32
33
34 593:f12948591050 chris
    end
35
  end
36
end