Cleanup work to make NarrativeWeb and WebCal. With this they should

produce webpages similar to grams 3.x, but under the hood there are a
lot of changes. There are new and improved CSS files and images. And
these are shares between NarrativeWeb and WebCal.
  *** Many thanks to Jason and Rob. ***


svn: r11180
This commit is contained in:
Kees Bakker
2008-10-21 18:57:42 +00:00
parent e08fee7d29
commit 0ead404135
23 changed files with 8963 additions and 2845 deletions

View File

@@ -6,6 +6,7 @@
# Copyright (C) 2007 Gary Burton <gary.burton@zen.co.uk>
# Copyright (C) 2007-2008 Stephane Charette <stephanecharette@gmail.com>
# Copyright (C) 2008 Brian G. Matherly
# Copyright (C) 2008 Jason M. Simanek <jason@bohemianalps.com>
#
# 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
@@ -114,9 +115,14 @@ _XOFFSET = 5
# stylesheets.
_CSS_FILES = [
# First is used as default selection.
[_("Evergreen"), 'Web_Evergreen.css'],
[_("Nebraska"), 'Web_Nebraska.css'],
[_("Simply Red"), 'Web_Simply-Red.css'],
[_("Basic-Ash"), 'Web_Basic-Ash.css'],
[_("Basic-Cypress"), 'Web_Basic-Cypress.css'],
[_("Basic-Lilac"), 'Web_Basic-Lilac.css'],
[_("Basic-Peach"), 'Web_Basic-Peach.css'],
[_("Basic-Spruce"), 'Web_Basic-Spruce.css'],
[_("Mainz"), 'Web_Mainz.css'],
[_("Nebraska"), 'Web_Nebraska.css'],
[_("Visually Impaired"), 'Web_Visually.css'],
[_("No style sheet"), ''],
]
@@ -359,10 +365,7 @@ class BasePage:
of.write('</head>\n\n')
of.write('<body id="NarrativeWeb">\n') # Terminated in write_footer()
of.write(' <div id="header">\n')
# FIXME. Do we want an empty GRAMPSinfo div below if no self.linkhome?
msg = ""
of.write('<div id="header">\n')
db = self.report.database
if self.linkhome:
@@ -370,26 +373,24 @@ class BasePage:
if home_person:
home_person_url = self.report.build_url_fname_html(home_person.handle, 'ppl', self.up)
home_person_name = home_person.get_primary_name().get_regular_name()
msg = _('Created for <a href="%s">%s</a>') % (home_person_url, home_person_name)
of.write(' <div id="GRAMPSinfo">%s</div>\n' % msg)
of.write(' <h1 id="SiteTitle">%s</h1>\n' % html_escape(self.title_str))
of.write('\t<h1 id="SiteTitle">%s</h1>\n' % html_escape(self.title_str))
header = self.report.options['headernote']
if header:
note = db.get_note_from_gramps_id(header)
of.write(' <p id="user_header">')
of.write('\t<p id="user_header">')
of.write(note.get())
of.write('</p>\n')
of.write('\t</div>\n')
of.write('</div>\n\n')
# Begin Navigation Menu
of.write(' <div id="navigation">\n')
of.write(' <ul>\n')
of.write('<div id="navigation">\n')
of.write('\t<ul>\n')
self.display_nav_links(of, title)
of.write(' </ul>\n')
of.write(' </div>\n') # End Navigation Menu
of.write('\t</ul>\n')
of.write('</div>\n') # End Navigation Menu
divid = ''
if content_divid:
@@ -666,9 +667,12 @@ class BasePage:
of.write('\t</div>\n')
def person_link(self, of, url, name, gid=None, thumbnailUrl=None):
of.write('<a href="%s">' % url)
of.write('<a href="%s"' % url)
if not thumbnailUrl:
of.write(' class="noThumb"')
of.write('>')
if thumbnailUrl:
of.write('<img src="%s"><br />' % thumbnailUrl)
of.write('<span class="thumbnail"><img src="%s" width="" height="" alt="Image of %s" /></span>' % (thumbnailUrl, name))
of.write('%s' % name)
if not self.noid and gid:
of.write('&nbsp;<span class="grampsid">[%s]</span>' % gid)
@@ -1772,16 +1776,16 @@ class IndividualPage(BasePage):
xoff = _XOFFSET+col*(_WIDTH+_HGAP)
sex = person.get_gender()
if sex == gen.lib.Person.MALE:
divclass = "boxbg male"
divclass = "male"
elif sex == gen.lib.Person.FEMALE:
divclass = "boxbg female"
divclass = "female"
else:
divclass = "boxbg unknown"
of.write('\t\t\t<div class="%s" style="top: %dpx; left: %dpx;">\n' % (divclass, top, xoff+1))
of.write('\t\t\t\t<div class="box">')
divclass = "unknown"
of.write('\t\t\t<div class="boxbg %s AncCol%s" style="top: %dpx; left: %dpx;">\n' % (divclass, col, top, xoff+1))
of.write('\t\t\t\t')
if person.handle in self.ind_list:
thumbnailUrl = None
if self.use_gallery and col < 3:
if self.use_gallery and col < 5:
photolist = person.get_media_list()
if photolist:
photo_handle = photolist[0].get_reference_handle()
@@ -1795,8 +1799,7 @@ class IndividualPage(BasePage):
self.person_link(of, url, person_name, thumbnailUrl=thumbnailUrl)
else:
of.write(_nd.display(person))
of.write('</div>\n')
of.write('\t\t\t</div>\n')
of.write('\n\t\t\t</div>\n')
of.write('\t\t\t<div class="shadow" style="top: %dpx; left: %dpx;"></div>\n' % (top+_SHADOW, xoff+_SHADOW))
def extend_line(self, of, y0, x0):
@@ -2012,8 +2015,10 @@ class IndividualPage(BasePage):
# table head
of.write('\t\t\t<thead>\n')
of.write('\t\t\t\t<tr>\n')
for h in (_('event|Type'), _('Date'), _('Place'), _('Description'), _('Notes')):
of.write('\t\t\t\t<th>%s</th>' % h)
of.write('\t\t\t\t\t<th>%s</th>\n' % h)
of.write('\t\t\t\t</tr>\n')
of.write('\t\t\t</thead>\n')
of.write('\t\t\t<tbody>\n')
@@ -2078,6 +2083,10 @@ class IndividualPage(BasePage):
done_first_note = False
notelist = event.get_note_list()
notelist.extend(event_ref.get_note_list())
if notelist:
of.write('\t\t\t\t\t\t<ol>\n')
else:
of.write('\t\t\t\t\t\t&nbsp;\n')
for notehandle in notelist:
note = db.get_note_from_handle(notehandle)
if note:
@@ -2088,11 +2097,9 @@ class IndividualPage(BasePage):
else:
# TODO. Decide what to do with multiline notes.
txt = u" ".join(note_text.split("\n"))
if not done_first_note:
of.write('\t\t\t\t\t\t<ol>\n')
txt = txt or '&nbsp;'
of.write('\t\t\t\t\t\t\t<li>%s</li>\n' % txt)
if done_first_note:
if notelist:
of.write('\t\t\t\t\t\t</ol>\n')
of.write('\t\t\t\t\t</td>\n')
@@ -2497,9 +2504,9 @@ class IndividualPage(BasePage):
date = _dd.display(event.get_date_object())
if date and place:
text = _("%(date)s &nbsp; at &nbsp; %(place)s") % { 'date': date, 'place': place }
text = _('%(date)s <span class="preposition">at</span> %(place)s') % { 'date': date, 'place': place }
elif place:
text = _("at &nbsp; %(place)s") % { 'place': place }
text = _('<span class="preposition">at</span> %(place)s') % { 'place': place }
elif date:
text = date
else:
@@ -2704,10 +2711,10 @@ class NavWebReport(Report):
imgs = []
if self.css == "Web_Mainz.css":
# Copy Mainz Style Images
imgs += ["NWeb_Mainz_Bkgd.png",
"NWeb_Mainz_Header.png",
"NWeb_Mainz_Mid.png",
"NWeb_Mainz_MidLight.png",
imgs += ["Web_Mainz_Bkgd.png",
"Web_Mainz_Header.png",
"Web_Mainz_Mid.png",
"Web_Mainz_MidLight.png",
"document.png"]
# Copy the Creative Commons icon if the Creative Commons
@@ -2715,7 +2722,11 @@ class NavWebReport(Report):
if 0 < self.copyright < 7:
imgs += ["somerights20.gif"]
imgs += ["favicon.ico"]
imgs += ["favicon.ico",
"Web_Gender_Female.png",
"Web_Gender_FemaleFFF.png",
"Web_Gender_Male.png",
"Web_Gender_MaleFFF.png"]
for f in imgs:
from_path = os.path.join(const.IMAGE_DIR, f)

View File

@@ -103,10 +103,15 @@ _ARROW_GIF = "arrow102.gif"
# stylesheets.
_CSS_FILES = [
# First is used as default selection.
[_("Evergreen"), 'Web_Evergreen.css'],
[_("Nebraska"), 'Web_Nebraska.css'],
[_("Simply Red"), 'Web_Simply-Red.css'],
[_("No style sheet"), ''],
[_("Basic-Ash"), 'Web_Basic-Ash.css'],
[_("Basic-Cypress"), 'Web_Basic-Cypress.css'],
[_("Basic-Lilac"), 'Web_Basic-Lilac.css'],
[_("Basic-Peach"), 'Web_Basic-Peach.css'],
[_("Basic-Spruce"), 'Web_Basic-Spruce.css'],
[_("Mainz"), 'Web_Mainz.css'],
[_("Nebraska"), 'Web_Nebraska.css'],
[_("Visually Impaired"), 'Web_Visually.css'],
[_("No style sheet"), ''],
]
_CHARACTER_SETS = [
@@ -262,6 +267,7 @@ class WebCalReport(Report):
self.warn_dir = True # Only give warning once.
self.has_arrow_gif = False # Set to True after copying to destination
self.imgs = []
calendar.setfirstweekday(_dow_gramps2iso[self.start_dow])
@@ -406,6 +412,10 @@ class WebCalReport(Report):
fname = os.path.join(const.IMAGE_DIR, 'somerights20.gif')
self.copy_file(fname, 'somerights20.gif', 'images')
for f in self.imgs:
from_path = os.path.join(const.IMAGE_DIR, f)
self.copy_file(from_path, f, "images")
def display_month_navs(self, of, currentsection, use_home=False):
"""
Will create and display the navigation menu bar
@@ -435,8 +445,8 @@ class WebCalReport(Report):
item = [('blankyear', _('Blank Calendar'), self.blankyear)]
navs.append(item)
of.write(' <div id="navigation">\n')
of.write(' <ul>\n')
of.write('<div id="navigation">\n')
of.write('\t<ul>\n')
for item in navs:
for url_fname, nav_text, cond in item:
@@ -466,16 +476,10 @@ class WebCalReport(Report):
url += self.ext
cs = cs and ' id="CurrentSection"' or ''
of.write('\t\t<li%s><a href="%s">%s</a></li>\n' % (cs, url, nav_text))
of.write(' <li%s><a name="%s" href="%s">%s</a></li>\n'
% (cs, url_fname, url, nav_text))
of.write(' </ul>\n')
if self.multiyear:
of.write(' </div>\n')
else:
of.write(' </div>\n\n')
of.write('\t</ul>\n')
of.write('</div>\n\n')
def display_year_navs(self, of, currentsection):
"""
@@ -485,8 +489,8 @@ class WebCalReport(Report):
if not self.multiyear:
return
of.write(' <div id="navigation">\n')
of.write(' <ul>\n')
of.write('<div id="navigation">\n')
of.write('\t<ul>\n')
cols = 0
cal_year = self.start_year
while ((0 <= cols <= 25) and (self.start_year <= cal_year <= self.end_year)):
@@ -518,8 +522,7 @@ class WebCalReport(Report):
# if True, highlight currentsection
cs = cs and ' id="CurrentSection"' or ''
of.write(' <li%s><a href="%s">%s</a></li>\n'
% (cs, url, str(cal_year)))
of.write('\t\t<li%s><a href="%s">%s</a></li>\n' % (cs, url, str(cal_year)))
# increase year
cal_year += 1
@@ -527,8 +530,8 @@ class WebCalReport(Report):
# increase column
cols += 1
of.write(' </ul>\n')
of.write(' </div>\n\n')
of.write('\t</ul>\n')
of.write('</div>\n\n')
def calendar_common(self, of, currsec1, currsec2, title, body_id, year, use_home=False):
"""
@@ -545,19 +548,18 @@ class WebCalReport(Report):
of.write('<body id="%s">\n' % body_id)
# Header Title
of.write(' <div id="header" />\n')
of.write(' <h1 id="SiteTitle" />%s</h1>\n' % title)
of.write('<div id="header" />\n')
of.write('\t<h1 id="SiteTitle" />%s</h1>\n' % title)
if self.author != '':
of.write(' <div id="GRAMPSinfo" />')
of.write('\t<p id="CreatorInfo">')
if self.email != '':
msg = _('Created for <a href="mailto:%(email)s?subject=WebCal" />%(author)s</a>\n') % {
msg = _('Created for <a href="mailto:%(email)s?subject=WebCal">%(author)s</a>\n') % {
'email' : self.email,
'author' : self.author}
else:
msg = _('Created for %(author)s\n') % {'author' : self.author}
of.write('%s' % msg)
of.write(' </div>\n') # end GRAMPSinfo
of.write(' </div>\n') # end header
of.write('%s</p>\n' % msg)
of.write('</div>\n') # end header
# adjust the months being created if self.partyear is True
# and year is eequal to current year, then start_month is current month
@@ -619,22 +621,22 @@ class WebCalReport(Report):
if not self.multiyear:
th_txt = '%s %d' % (month_name, year)
of.write('<!-- %s -->\n\n' % month_name)
of.write(' <table id="%s" class="calendar">\n' % month_name)
of.write(' <thead>\n')
of.write(' <tr>\n')
of.write(' <th colspan="7" class="monthName">%s</th>\n' % th_txt)
of.write(' </tr>\n')
of.write('<table id="%s" class="calendar">\n' % month_name)
of.write('\t<thead>\n')
of.write('\t\t<tr>\n')
of.write('\t\t\t<th colspan="7" class="monthName">%s</th>\n' % th_txt)
of.write('\t\t</tr>\n')
# Calendar weekday names header
of.write(' <tr>\n')
of.write('\t\t<tr>\n')
for day_col in range(7):
dayclass = get_class_for_daycol(day_col)
of.write(' <th class="%s">%s</th>\n' % (dayclass, get_name_for_daycol(day_col)))
of.write(' </tr>\n')
of.write(' </thead>\n')
of.write('\t\t\t<th class="%s">%s</th>\n' % (dayclass, get_name_for_daycol(day_col)))
of.write('\t\t</tr>\n')
of.write('\t</thead>\n')
# begin table body
of.write(' <tbody>\n')
of.write('\t<tbody>\n')
# Compute the first day to display for this month.
# It can also be a day in the previous month.
@@ -659,7 +661,7 @@ class WebCalReport(Report):
nweeks = len(monthinfo)
for week_row in range(0, nweeks):
week = monthinfo[week_row]
of.write(' <tr class="week%d">\n' % week_row)
of.write('\t\t<tr class="week%d">\n' % week_row)
for day_col in range(0, 7):
dayclass = get_class_for_daycol(day_col)
@@ -674,23 +676,21 @@ class WebCalReport(Report):
specclass = "next " + dayclass
if specclass[0] == 'p': # previous day of last month
of.write(' <td id="prevday%d" ' % specday)
of.write('\t\t\t<td id="prevday%d" ' % specday)
else: # next day of next month
of.write(' <td id="nextday%d" ' % specday)
of.write('\t\t\t<td id="nextday%d" ' % specday)
of.write('class="%s">\n' % specclass)
# span class is used here to differentiate between previous/next days versus calendar days
of.write(' <span class="date">%d</span>\n' % specday)
of.write(' </td>\n')
of.write('\t\t\t\t<div class="date">%d</div>\n' % specday)
of.write('\t\t\t</td>\n')
else: # normal day number in current month
if cal == "by": # blank_year() doesn't need any highlighting or hyperlinks
of.write(' <td id="day%d" class="%s">\n' % (day, dayclass))
of.write(' <div class="date">%d</div>\n' % day)
of.write(' </td>\n')
of.write('\t\t\t<td id="day%d" class="%s">\n' % (day, dayclass))
of.write('\t\t\t\t<div class="date">%d</div>\n' % day)
of.write('\t\t\t</td>\n')
else:
thisday = datetime.date.fromordinal(current_ord)
of.write(' <td id="day%d" ' % day)
of.write('\t\t\t<td id="day%d" ' % day)
if thisday.month == month: # Something this month
holiday_list = self.holidays.get(month, {}).get(thisday.day, [])
bday_anniv_list = self.calendar.get(month, {}).get(thisday.day, [])
@@ -701,13 +701,14 @@ class WebCalReport(Report):
# Year at a Glance
if cal == "yg":
of.write(' <a name="%s%d" href="%s/%s%d%s" title="%s%d">\n'
of.write('\t\t\t\t<a id="%s%d" href="%s/%s%d%s" title="%s%d">\n'
% (shrt_month, day, lng_month, shrt_month, day, self.ext, shrt_month, day))
of.write(' <div class="date">%d</div></a>\n' % day)
of.write('\t\t\t\t\t<div class="date">%d</div>\n' % day)
of.write('\t\t\t\t</a>\n')
# WebCal
elif cal == 'wc':
of.write(' <div class="date">%d</div>\n' % day)
of.write('\t\t\t\t<div class="date">%d</div>\n' % day)
# year_glance() and print_page() both need this to itemize the list
self.one_day(of, evt_date, cal, holiday_list, bday_anniv_list)
@@ -715,21 +716,21 @@ class WebCalReport(Report):
# no holiday/ bday/ anniversary this day
else:
of.write('class="%s">\n' % dayclass)
of.write(' <div class="date">%d</div>\n' % day)
of.write('\t\t\t\t<div class="date">%d</div>\n' % day)
# no holiday/ bday/ anniversary this month
else:
of.write('class="%s">\n' % dayclass)
of.write(' <div class="date">%d</div>\n' % day)
of.write('\t\t\t\t<div class="date">%d</div>\n' % day)
# close the day/ column
of.write(' </td>\n')
# close the day/ column
of.write('\t\t\t</td>\n')
# change day number
current_ord += 1
# close the week/ row
of.write(' </tr>\n')
of.write('\t\t</tr>\n')
def write_header(self, of, title, skip_print=None):
"""
@@ -738,18 +739,18 @@ class WebCalReport(Report):
root of the directory tree (i.e. to self.html_dir).
"""
of.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"\n ')
of.write(' "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">\n ')
of.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"\n')
of.write(' "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">\n')
of.write('<html xmlns="http://www.w3.org/1999/xhtml" ')
xmllang = Utils.xml_lang()
of.write('xml:lang="%s" lang="%s">\n' % (xmllang, xmllang))
of.write('<head>\n')
of.write(' <title>%s</title>\n' % title)
of.write(' <meta http-equiv="Content-Type" content="text/html;charset=%s" />\n'
of.write('\t<title>%s</title>\n\n' % title)
of.write('\t<meta http-equiv="Content-Type" content="text/html;charset=%s" />\n'
% self.encoding)
of.write(' <meta name="robots" content="noindex" />\n')
of.write(' <meta name="generator" content="GRAMPS 3.1.x: http://www.gramps-project.org" />\n')
of.write(' <meta name="author" content="%s" />\n' % self.author)
of.write('\t<meta name="robots" content="noindex" />\n')
of.write('\t<meta name="generator" content="GRAMPS 3.1.x: http://www.gramps-project.org" />\n')
of.write('\t<meta name="author" content="%s" />\n\n' % self.author)
subdirs = ['..'] * self.nr_up
# Note. We use '/' here because it is a URL, not a OS dependent pathname
@@ -758,19 +759,19 @@ class WebCalReport(Report):
fname3 = '/'.join(subdirs + ['images'] + ['favicon.ico'])
# link to _CALENDARSCREEN stylesheet
of.write(' <link rel="stylesheet" href="%s" type="text/css" media="screen" />\n' % fname1)
of.write('\t<link rel="stylesheet" href="%s" type="text/css" media="screen" />\n' % fname1)
# link to _CALENDARPRINT stylesheet
if not skip_print:
of.write(' <link rel="stylesheet" href="%s" type="text/css" media="print" />\n' % fname2)
of.write('\t<link rel="stylesheet" href="%s" type="text/css" media="print" />\n' % fname2)
# link to GRAMPS favicon
of.write(' <link rel="shortcut icon" href="%s" type="image/icon" />\n' % fname3)
of.write('\t<link rel="shortcut icon" href="%s" type="image/icon" />\n' % fname3)
# Add calendar specific embedded style if required
if self.mystyle: # no extra embedded styling necessary
of.write(self.mystyle)
of.write('</head>\n')
of.write('</head>\n\n')
def write_footer(self, of):
"""
@@ -786,8 +787,8 @@ class WebCalReport(Report):
msg = _('Generated by <a href="http://gramps-project.org" target="_blank">'
'GRAMPS</a> on %(date)s') % {'date' : value}
of.write(' <div id="footer">\n')
of.write(' <p id="createdate">%s</p>\n' % msg)
of.write('<div id="footer">\n')
of.write('\t<p id="createdate">%s</p>\n' % msg)
if 0 < self.copy < len(_CC):
subdirs = ['..'] * self.nr_up
@@ -798,11 +799,11 @@ class WebCalReport(Report):
self.use_copyright = True
else:
text = "&copy; %s %s" % (self.today.year, self.author)
of.write(' <p id="copyright">%s</p>\n' % text)
of.write(' <p id="quality"><a href="http://validator.w3.org/check?uri=referer">')
of.write('\t<p id="copyright">%s</p>\n' % text)
of.write('\t<p id="quality"><a href="http://validator.w3.org/check?uri=referer">')
of.write('<img src="http://www.w3.org/Icons/valid-xhtml10" ')
of.write('alt="Valid XHTML 1.0 Transitional" height="31" width="88" /></a></p>\n')
of.write(' </div>\n')
of.write('</div>\n')
of.write('</body>\n')
of.write('</html>\n')
@@ -950,40 +951,25 @@ class WebCalReport(Report):
# create calendar common info for each calendar
self.calendar_common(of, lng_month, str(year), _('One Day Within A Year'), my_date, year)
of.write(' <h1 id="OneDay" style="display:block;">%s</h1>\n' % my_date)
of.write('\t<h1 id="OneDay">%s</h1>\n' % my_date)
if self.has_arrow_gif:
of.write(' <ul id="arrow">\n')
of.write('\t<ul id="arrow">\n')
else:
of.write(' <ul>\n')
of.write('\t<ul>\n')
# WebCal
else:
of.write(' <ul>\n')
of.write('\t<ul>\n')
for line in day_list:
for date, text, event in line:
of.write('\t\t<li>%s</li>\n' % text)
# "WebCal" needs more spacing than "Year At A Glance"
if cal == 'wc':
of.write(' <li>')
else:
of.write(' <li>')
of.write('%s\n' % text)
of.write('\t</ul>\n')
if cal == 'wc':
of.write(' </li>\n')
else:
of.write(' </li>\n')
# WebCal needs 25 spaces
if cal == 'wc':
of.write(' </ul>\n')
# "Yeatr At A Glance"
# Only close the file for "Year At A Glance"
if cal == 'yg':
# year_glance needs 13 spaces
of.write(' </ul>\n')
self.write_footer(of)
self.close_file(of)
@@ -1031,8 +1017,8 @@ class WebCalReport(Report):
self.calendar_build(of, 'by', year, month)
# close table body
of.write(' </tbody>\n')
of.write(' </table>\n\n')
of.write('\t</tbody>\n')
of.write('</table>\n\n')
# increase progress bar
self.progress.step()
@@ -1090,11 +1076,11 @@ class WebCalReport(Report):
self.progress.set_pass(_('Creating Year At A Glance calendars'), (self.end_month - self.start_month))
# page description
of.write(' <p id="description">\n')
of.write(_(' This calendar is meant to give you access to all your data at a glance '
'compressed into one page. Clicking on a <b>red square</b> will take you to a '
of.write('<p id="description">\n')
of.write(_('This calendar is meant to give you access to all your data at a glance '
'compressed into one page. Clicking on a <strong>red square</strong> will take you to a '
'page that shows all the events for that date!\n'))
of.write(' </p>\n\n')
of.write('</p>\n\n')
for month in range(self.start_month, (self.end_month + 1)):
@@ -1103,25 +1089,25 @@ class WebCalReport(Report):
# Note. The week rows are filled up to make them all 6 weeks long.
nweeks = len(calendar.monthcalendar(self.year, month))
for i in range(nweeks+1, 7):
of.write(' <tr class="week%d">\n' % i)
of.write(' <td id="emptyDays" colspan="7">\n')
of.write(' </td>\n')
of.write(' </tr>\n')
of.write('\t\t<tr class="week%d">\n' % i)
of.write('\t\t\t<td id="emptyDays" colspan="7">\n')
of.write('\t\t\t</td>\n')
of.write('\t\t</tr>\n')
# close table body before writing note
of.write(' </tbody>\n')
of.write('\t</tbody>\n')
# create note section for "Year At A Glance"
note = self.month_notes[month-1].strip()
note = note or "&nbsp;"
of.write(' <tfoot>\n')
of.write(' <tr>\n')
of.write(' <td class="note" colspan="7">\n')
of.write(' %s\n' % note)
of.write(' </td>\n')
of.write(' </tr>\n')
of.write(' </tfoot>\n')
of.write(' </table>\n\n')
of.write('\t<tfoot>\n')
of.write('\t\t<tr>\n')
of.write('\t\t\t<td class="note" colspan="7">\n')
of.write('\t\t\t\t%s\n' % note)
of.write('\t\t\t</td>\n')
of.write('\t\t</tr>\n')
of.write('\t</tfoot>\n')
of.write('</table>\n\n')
# increase progress bar
self.progress.step()
@@ -1153,6 +1139,14 @@ class WebCalReport(Report):
# get data from database for birthdays/ anniversaries
self.collect_data()
if self.css == "Web_Mainz.css":
# Copy Mainz Style Images
self.imgs += ["Web_Mainz_Bkgd.png",
"Web_Mainz_Header.png",
"Web_Mainz_Mid.png",
"Web_Mainz_MidLight.png",
]
# Copy all files for the calendars being created
self.copy_calendar_files()
@@ -1259,17 +1253,17 @@ class WebCalReport(Report):
self.calendar_build(of, 'wc', year, month)
# close table body before note section
of.write(' </tbody>\n')
of.write('\t</tbody>\n')
# create note section for "WebCal"
note = self.month_notes[month-1].strip()
note = note or "&nbsp;"
of.write(' <tfoot>\n')
of.write(' <tr>\n')
of.write(' <td class="note" colspan="7">%s</td>\n' % note)
of.write(' </tr>\n')
of.write(' </tfoot>\n')
of.write(' </table>\n\n')
of.write('\t<tfoot>\n')
of.write('\t\t<tr>\n')
of.write('\t\t\t<td class="note" colspan="7">%s</td>\n' % note)
of.write('\t\t</tr>\n')
of.write('\t</tfoot>\n')
of.write('</table>\n\n')
# write footer section, and close file
self.write_footer(of)
@@ -1471,7 +1465,7 @@ class WebCalOptions(MenuReportOptions):
partyear = BooleanOption(_('Create Partial Year calendar'), False)
partyear.set_help(_('Create a partial year calendar. The start month will be'
'equal to the current month to the end of the year.'))
' equal to the current month to the end of the year.'))
menu.add_option(category_name, 'partyear', partyear)
self.__multiyear = BooleanOption(_('Create multiple year calendars'), False)