This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
glasnost/extensions/widCalendar.py

102 lines
3.8 KiB
Python

# -*- coding: iso-8859-15 -*-
# Glasnost
# By: Odile Bénassy <obenassy@entrouvert.com>
# Romain Chantereau <rchantereau@entrouvert.com>
# Nicolas Clapiès <nclapies@easter-eggs.org>
# Pierre-Antoine Dejace <padejace@entrouvert.be>
# Thierry Dulieu <tdulieu@easter-eggs.com>
# Florent Monnier <monnier@codelutin.com>
# Cédric Musso <cmusso@easter-eggs.org>
# Frédéric Péters <fpeters@entrouvert.be>
# Benjamin Poussin <poussin@codelutin.com>
# Emmanuel Raviart <eraviart@entrouvert.com>
# Sébastien Régnier <regnier@codelutin.com>
# Emmanuel Saracco <esaracco@easter-eggs.com>
#
# Copyright (C) 2000, 2001 Easter-eggs & Emmanuel Raviart
# Copyright (C) 2002 Odile Bénassy, Code Lutin, Thierry Dulieu, Easter-eggs,
# Entr'ouvert, Frédéric Péters, Benjamin Poussin, Emmanuel Raviart,
# Emmanuel Saracco & Théridion
# Copyright (C) 2003 Odile Bénassy, Romain Chantereau, Nicolas Clapiès,
# Code Lutin, Pierre-Antoine Dejace, Thierry Dulieu, Easter-eggs,
# Entr'ouvert, Florent Monnier, Cédric Musso, Ouvaton, Frédéric Péters,
# Benjamin Poussin, Rodolphe Quiédeville, Emmanuel Raviart, Sébastien
# Régnier, Emmanuel Saracco, Théridion & Vecam
#
# 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
__doc__ = """Glasnost Calendar Widget Extension"""
__version__ = '$Revision$'[11:-2]
import time
import calendar
def monthTupleJS(year = 0, month = 0):
if not year or not month:
year, month = time.gmtime(time.time())[:2]
year, month = int(year), int(month)
today = time.gmtime(time.time())[:3]
cal = calendar.monthcalendar(year, month)
for i in range(len(cal)):
w = cal[i]
for j in range(len(w)):
d = cal[i][j]
if d == 0:
cal[i][j] = ''
continue
more = ''
if (year, month, d) == today:
more = ' id="today"'
date = '%s-%02d-%02d' % (year, month, cal[i][j])
cal[i][j] = """<a href="#" onclick="selectDay('%s')"%s>%s</a>""" % \
(date, more, cal[i][j])
return cal
def getDayLabels():
return ( N_('Monday'), N_('Tuesday'), N_('Wednesday'), N_('Thursday'),
N_('Friday'), N_('Saturday'), N_('Sunday') )
def getMonthYear(year = 0, month = 0):
if not year or not month:
year, month = time.gmtime(time.time())[:2]
year, month = int(year), int(month)
monthNames = (N_('January'), N_('February'), N_('March'), N_('April'),
N_('May'), N_('June'), N_('July'), N_('August'), N_('September'),
N_('October'), N_('November'), N_('December') )
return '%s %s' % (_(monthNames[month-1]), year)
def getPreviousMonth(year = 0, month = 0):
if not year or not month:
year, month = time.gmtime(time.time())[:2]
year, month = int(year), int(month)
if month == 1:
return (year-1, 12)
else:
return (year, month-1)
def getNextMonth(year = 0, month = 0):
if not year or not month:
year, month = time.gmtime(time.time())[:2]
year, month = int(year), int(month)
if month == 12:
return (year+1, 1)
else:
return (year, month+1)