Bug#3816: Fixed note issue in header_note and footer_note.

svn: r15068
This commit is contained in:
Rob G. Healey 2010-04-09 22:32:45 +00:00
parent c57394f6aa
commit 4053357d17
2 changed files with 5 additions and 4 deletions

View File

@ -317,7 +317,7 @@ div#footer img {
} }
div#footer p#createdate { div#footer p#createdate {
float:left; float:left;
width:60%; width: 60%;
text-align:left; text-align:left;
margin-left:10px; margin-left:10px;
} }

View File

@ -866,7 +866,7 @@ class BasePage(object):
footer += user_footer footer += user_footer
# attach note # attach note
user_footer += note.get_text() user_footer += note.get()
value = _dd.display(date.Today()) value = _dd.display(date.Today())
msg = _('Generated by <a href = "%(homepage)s">' msg = _('Generated by <a href = "%(homepage)s">'
@ -882,7 +882,8 @@ class BasePage(object):
center_person.handle, "ppl", self.up) center_person.handle, "ppl", self.up)
home_person_name = self.get_name(center_person) home_person_name = self.get_name(center_person)
msg += _(' Created for <a href = "%s">%s</a>') % ( # carriage return was added by Stephane Charette to force it down one line
msg += _('<br /> Created for <a href = "%s">%s</a>') % (
home_person_url, home_person_name) home_person_url, home_person_name)
# creation date # creation date
@ -980,7 +981,7 @@ class BasePage(object):
headerdiv += user_header headerdiv += user_header
# attach note # attach note
user_header += note.get_text() user_header += note.get()
# Begin Navigation Menu # Begin Navigation Menu
body += self.display_nav_links(title) body += self.display_nav_links(title)