Fixed all errors that were causing crashes. Thank you for taking the time to point them out to me.

svn: r18805
This commit is contained in:
Rob G. Healey 2012-02-01 07:11:46 +00:00
parent f9bd7e7ec6
commit 8391e45a9b

View File

@ -790,7 +790,7 @@ class BasePage(object):
source = self.dbase_.get_source_from_handle(source_handle) source = self.dbase_.get_source_from_handle(source_handle)
if source: if source:
hyper = self.source_link(source, up = self.up) hyper = self.source_link(source, uplink = self.up)
text += ' [<a href = %s>%s</a>]' % (hyper, id_) text += ' [<a href = %s>%s</a>]' % (hyper, id_)
return text return text
@ -1137,7 +1137,7 @@ class BasePage(object):
place_hyper = None place_hyper = None
if place: if place:
place_name = ReportUtils.place_name(self.dbase_, place_handle) place_name = ReportUtils.place_name(self.dbase_, place_handle)
place_hyper = self.place_link(place_handle, place_name, up = up) place_hyper = self.place_link(place_handle, place_name, uplink = up)
# wrap it all up and return to its callers # wrap it all up and return to its callers
# position 0 = translatable label, position 1 = column class # position 0 = translatable label, position 1 = column class
@ -1190,7 +1190,7 @@ class BasePage(object):
place = self.dbase_.get_place_from_handle(place_handle) place = self.dbase_.get_place_from_handle(place_handle)
if place: if place:
place_hyper = self.place_link(place_handle, place.get_title(), place_hyper = self.place_link(place_handle, place.get_title(),
place.get_gramps_id(), True) place.get_gramps_id(), uplink = True)
# begin ordinance rows # begin ordinance rows
trow = Html("tr") trow = Html("tr")
@ -1253,7 +1253,7 @@ class BasePage(object):
@param: up - rather to add back directories or not? @param: up - rather to add back directories or not?
""" """
url = self.report.build_url_fname_html(source.get_handle(), "src", up) url = self.report.build_url_fname_html(source.get_handle(), "src", uplink)
gid = source.get_gramps_id() gid = source.get_gramps_id()
title = html_escape(source.get_title()) title = html_escape(source.get_title())
@ -2306,7 +2306,7 @@ class BasePage(object):
# Add this source and its references to the page # Add this source and its references to the page
source = self.dbase_.get_source_from_handle(shandle) source = self.dbase_.get_source_from_handle(shandle)
if source is not None: if source is not None:
list = Html("li", self.source_link(source, cindex, up = True)) list = Html("li", self.source_link(source, cindex, uplink = True))
else: else:
list = Html("li", "None") list = Html("li", "None")
@ -2549,7 +2549,7 @@ class BasePage(object):
def place_link(self, handle, name, gid = None, uplink = False): def place_link(self, handle, name, gid = None, uplink = False):
url = self.report.build_url_fname_html(handle, "plc", up) url = self.report.build_url_fname_html(handle, "plc", uplink)
hyper = Html("a", html_escape(name), href = url, title = html_escape(name)) hyper = Html("a", html_escape(name), href = url, title = html_escape(name))
if not self.noid and gid: if not self.noid and gid:
@ -3434,7 +3434,7 @@ class PlaceListPage(BasePage):
else: else:
tcell += "&nbsp;" tcell += "&nbsp;"
trow += Html("td", self.place_link(place.get_handle(), place_title, place.get_gramps_id() ), trow += Html("td", self.place_link(place.get_handle(), place_title, place.get_gramps_id()),
class_ = "ColumnName") class_ = "ColumnName")
trow.extend( trow.extend(
@ -4810,7 +4810,7 @@ class SourcePage(BasePage):
hyper = self.repository_link(repository_handle, "", uplink = self.up) hyper = self.repository_link(repository_handle, "", uplink = self.up)
list3 = Html("li") + ( list3 = Html("li") + (
Html("a", repo_title, href = hyper, title = rpo_title, inline = True) Html("a", repo_title, href = hyper, title = repo_title, inline = True)
) )
unordered3 += list3 unordered3 += list3
@ -5690,9 +5690,9 @@ class IndividualPage(BasePage):
trow.extend( trow.extend(
Html("td", data, class_ =colclass, inline =True) Html("td", data, class_ =colclass, inline =True)
for data, colclass in [ for data, colclass in [
(date, "ColumnDate"), (date, "ColumnDate"),
(self.place_link(handle, placetitle, up =True), "ColumnPlace"), (self.place_link(handle, placetitle, uplink = True), "ColumnPlace"),
(str(etype), "ColumnType") (str(etype), "ColumnType")
] ]
) )
@ -6661,7 +6661,7 @@ class RepositoryPage(BasePage):
source_nbr += 1 source_nbr += 1
if source_handle in source_list: if source_handle in source_list:
source_name = self.source_link(source, up =True) source_name = self.source_link(source, uplink = True)
else: else:
source_name = source.get_title() source_name = source.get_title()