Module XSLTools.XMLCalendar
Copyright (C) 2005 Paul Boddie <paul@boddie.org.uk>
Additional copyrights for the monthcalendar function:
Copyright (c) 2001, 2002, 2003, 2004, 2005 Python Software Foundation.
Copyright (c) 2000 BeOpen.com. Copyright (c) 1995-2001 Corporation for
National Research Initiatives. Copyright (c) 1991-1995 Stichting
Mathematisch Centrum.
This library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published
by the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
This library 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 Lesser
General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
USA
Function Summary |
|
get_calendar_for_month(year,
month)
|
|
get_next_year_and_month(year,
month)
|
|
get_previous_year_and_month(year,
month)
|
|
monthcalendar (year,
month,
firstweekday)
Return a matrix representing a month's calendar. |
|
write_month_to_document(doc,
root,
year,
month)
|
monthcalendar(year,
month,
firstweekday=0)
Return a matrix representing a month's calendar. Each row represents
a week; days outside this month are zero.
-
|