2011-12-14 23:56:23 +04:00
|
|
|
# encoding: utf-8
|
|
|
|
#
|
|
|
|
# Redmine - project management software
|
2013-01-12 13:29:31 +04:00
|
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
2011-12-14 23:56:23 +04:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
2010-08-26 20:37:05 +04:00
|
|
|
module CalendarsHelper
|
2010-08-26 20:37:21 +04:00
|
|
|
def link_to_previous_month(year, month, options={})
|
2010-08-26 20:37:11 +04:00
|
|
|
target_year, target_month = if month == 1
|
|
|
|
[year - 1, 12]
|
|
|
|
else
|
|
|
|
[year, month - 1]
|
|
|
|
end
|
2011-08-31 11:01:17 +04:00
|
|
|
|
2010-08-26 20:37:11 +04:00
|
|
|
name = if target_month == 12
|
|
|
|
"#{month_name(target_month)} #{target_year}"
|
|
|
|
else
|
|
|
|
"#{month_name(target_month)}"
|
|
|
|
end
|
2010-08-26 20:37:21 +04:00
|
|
|
|
2011-08-05 17:53:54 +04:00
|
|
|
# \xc2\xab(utf-8) = «
|
|
|
|
link_to_month(("\xc2\xab " + name), target_year, target_month, options)
|
2010-08-26 20:37:05 +04:00
|
|
|
end
|
|
|
|
|
2010-08-26 20:37:21 +04:00
|
|
|
def link_to_next_month(year, month, options={})
|
2010-08-26 20:37:11 +04:00
|
|
|
target_year, target_month = if month == 12
|
|
|
|
[year + 1, 1]
|
|
|
|
else
|
|
|
|
[year, month + 1]
|
|
|
|
end
|
|
|
|
|
|
|
|
name = if target_month == 1
|
|
|
|
"#{month_name(target_month)} #{target_year}"
|
|
|
|
else
|
|
|
|
"#{month_name(target_month)}"
|
|
|
|
end
|
|
|
|
|
2011-08-05 17:53:54 +04:00
|
|
|
# \xc2\xbb(utf-8) = »
|
|
|
|
link_to_month((name + " \xc2\xbb"), target_year, target_month, options)
|
2010-08-26 20:37:26 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
def link_to_month(link_name, year, month, options={})
|
2011-08-02 16:48:24 +04:00
|
|
|
link_to_content_update(h(link_name), params.merge(:year => year, :month => month))
|
2010-08-26 20:37:05 +04:00
|
|
|
end
|
|
|
|
end
|