Missed () in some constfunc.win().

svn: r14434
This commit is contained in:
Peter Landgren 2010-02-22 08:17:36 +00:00
parent 4a68664f47
commit ba5f5ea7eb

View File

@ -1268,7 +1268,7 @@ class BasePage(object):
# TODO. Check if build_url_fname can be used.
newpath = "/".join(['..']*3 + [newpath])
if ( constfunc.win ):
if constfunc.win():
newpath = newpath.replace('\\',"/")
# begin hyperlink
@ -1346,7 +1346,7 @@ class BasePage(object):
real_path, newpath = self.report.prepare_copy_media(photo)
# TODO. Check if build_url_fname can be used.
newpath = "/".join(['..']*3 + [newpath])
if ( constfunc.win ):
if constfunc.win():
newpath = newpath.replace('\\',"/")
# begin hyperlink
@ -3628,7 +3628,7 @@ class IndividualPage(BasePage):
if mime_type:
(photoUrl, thumbnailUrl) = self.report.prepare_copy_media(photo)
thumbnailUrl = "/".join(['..']*3 + [thumbnailUrl])
if ( constfunc.win ):
if constfunc.win():
thumbnailUrl = thumbnailUrl.replace('\\',"/")
url = self.report.build_url_fname_html(person.handle, "ppl", True)
boxbg += self.person_link(url, person, name_style = True,
@ -5441,7 +5441,7 @@ class NavWebReport(Report):
if up:
subdirs = ['..']*3 + subdirs
nname = "/".join(subdirs + [fname])
if ( constfunc.win ):
if constfunc.win():
nname = nname.replace('\\',"/")
return nname