Fixed download page table being oversized. Removed download page note from download page. Bug#3795 should be resolved.

svn: r15003
This commit is contained in:
Rob G. Healey
2010-04-03 01:27:16 +00:00
parent d3012d9753
commit 429494fb13
2 changed files with 73 additions and 74 deletions

View File

@@ -177,7 +177,7 @@ a:visited {
/* Header /* Header
----------------------------------------------------- */ ----------------------------------------------------- */
#header { #header {
width:965px; width: 100%;
margin:0 auto; margin:0 auto;
padding:5em 0 2px 0; padding:5em 0 2px 0;
background:url(../images/Web_Mainz_Header.png) repeat-x top left; background:url(../images/Web_Mainz_Header.png) repeat-x top left;
@@ -214,7 +214,7 @@ table tr.odd {
----------------------------------------------------- */ ----------------------------------------------------- */
#navigation, #subnavigation { #navigation, #subnavigation {
font-family:sans-serif; font-family:sans-serif;
width:965px; width: 100%;
margin:0 auto; margin:0 auto;
padding:0; padding:0;
background:url(../images/Web_Mainz_MidLight.png) #FFF2C6; background:url(../images/Web_Mainz_MidLight.png) #FFF2C6;
@@ -757,12 +757,12 @@ div#EventDetail table.eventlist tbody tr td.ColumnEvent {
/* Download /* Download
----------------------------------------------------- */ ----------------------------------------------------- */
#Download { #Download {
padding:1cm; padding: 0;
height:396px; width: 100%;
height: 350px;
} }
table.download { table.download {
border:solid 2px #000; border:solid 2px #000;
width:100%;
} }
table.download img { table.download img {
text-align: center; text-align: center;
@@ -1205,7 +1205,7 @@ table.weblinks tr td.ColumnDescription {
----------------------------------------------------- */ ----------------------------------------------------- */
#footer { #footer {
clear:both; clear:both;
width:965px; width: 100%;
height: 60px; height: 60px;
font-size:12px; font-size:12px;
line-height:130%; line-height:130%;

View File

@@ -3333,7 +3333,6 @@ class DownloadPage(BasePage):
# menu options for class # menu options for class
# download and description #1 # download and description #1
downloadnote = self.report.downloadnote
dlfname1 = self.report.dl_fname1 dlfname1 = self.report.dl_fname1
dldescr1 = self.report.dl_descr1 dldescr1 = self.report.dl_descr1
@@ -3356,12 +3355,13 @@ class DownloadPage(BasePage):
with Html("div", class_ = "content", id = "Download") as download: with Html("div", class_ = "content", id = "Download") as download:
body += download body += download
# download page note msg = _("This page is for the user/ creator of this Family Tree/ "
if downloadnote: "Narrative website to share a couple of files with you "
note = db.get_note_from_gramps_id(downloadnote) "regarding their family. If there are any files listed "
note_text = self.get_note_format(note) "below, clicking on them will allow you to download them.")
download += Html("p", note_text, id = "description") download += Html("p", msg, id = "description")
if dlfname1 or dlfname2:
# begin download table and table head # begin download table and table head
with Html("table", class_ = "infolist download") as table: with Html("table", class_ = "infolist download") as table:
download += table download += table
@@ -3372,15 +3372,14 @@ class DownloadPage(BasePage):
trow = Html("tr") trow = Html("tr")
thead += trow thead += trow
header_row = [ trow.extend(
Html("th", label, class_ = colclass, inline = True)
for (label, colclass) in [
(_("File Name"), "Filename"), (_("File Name"), "Filename"),
(DESCRHEAD, "Description"), (DESCRHEAD, "Description"),
(_("License"), "License"), (_("License"), "License"),
(_("Last Modified"), "Modified") ] (_("Last Modified"), "Modified") ]
)
trow.extend(
Html("th", label, class_ = colclass, inline = True)
for (label, colclass) in header_row)
# if dlfname1 is not None, show it??? # if dlfname1 is not None, show it???
if dlfname1: if dlfname1: