Missed () in some constfunc.win().
svn: r14434
This commit is contained in:
parent
4a68664f47
commit
ba5f5ea7eb
@ -1268,7 +1268,7 @@ class BasePage(object):
|
|||||||
|
|
||||||
# TODO. Check if build_url_fname can be used.
|
# TODO. Check if build_url_fname can be used.
|
||||||
newpath = "/".join(['..']*3 + [newpath])
|
newpath = "/".join(['..']*3 + [newpath])
|
||||||
if ( constfunc.win ):
|
if constfunc.win():
|
||||||
newpath = newpath.replace('\\',"/")
|
newpath = newpath.replace('\\',"/")
|
||||||
|
|
||||||
# begin hyperlink
|
# begin hyperlink
|
||||||
@ -1346,7 +1346,7 @@ class BasePage(object):
|
|||||||
real_path, newpath = self.report.prepare_copy_media(photo)
|
real_path, newpath = self.report.prepare_copy_media(photo)
|
||||||
# TODO. Check if build_url_fname can be used.
|
# TODO. Check if build_url_fname can be used.
|
||||||
newpath = "/".join(['..']*3 + [newpath])
|
newpath = "/".join(['..']*3 + [newpath])
|
||||||
if ( constfunc.win ):
|
if constfunc.win():
|
||||||
newpath = newpath.replace('\\',"/")
|
newpath = newpath.replace('\\',"/")
|
||||||
|
|
||||||
# begin hyperlink
|
# begin hyperlink
|
||||||
@ -3628,7 +3628,7 @@ class IndividualPage(BasePage):
|
|||||||
if mime_type:
|
if mime_type:
|
||||||
(photoUrl, thumbnailUrl) = self.report.prepare_copy_media(photo)
|
(photoUrl, thumbnailUrl) = self.report.prepare_copy_media(photo)
|
||||||
thumbnailUrl = "/".join(['..']*3 + [thumbnailUrl])
|
thumbnailUrl = "/".join(['..']*3 + [thumbnailUrl])
|
||||||
if ( constfunc.win ):
|
if constfunc.win():
|
||||||
thumbnailUrl = thumbnailUrl.replace('\\',"/")
|
thumbnailUrl = thumbnailUrl.replace('\\',"/")
|
||||||
url = self.report.build_url_fname_html(person.handle, "ppl", True)
|
url = self.report.build_url_fname_html(person.handle, "ppl", True)
|
||||||
boxbg += self.person_link(url, person, name_style = True,
|
boxbg += self.person_link(url, person, name_style = True,
|
||||||
@ -5441,7 +5441,7 @@ class NavWebReport(Report):
|
|||||||
if up:
|
if up:
|
||||||
subdirs = ['..']*3 + subdirs
|
subdirs = ['..']*3 + subdirs
|
||||||
nname = "/".join(subdirs + [fname])
|
nname = "/".join(subdirs + [fname])
|
||||||
if ( constfunc.win ):
|
if constfunc.win():
|
||||||
nname = nname.replace('\\',"/")
|
nname = nname.replace('\\',"/")
|
||||||
return nname
|
return nname
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user