Fixed the menu navigation for WebCal since changing it for NarrativeWeb.
svn: r18750
This commit is contained in:
parent
473e6906ac
commit
f23e2b41d3
@ -403,7 +403,7 @@ class WebCalReport(Report):
|
|||||||
|
|
||||||
# create additional meta tags
|
# create additional meta tags
|
||||||
meta = Html("meta", attr = _META1) + (
|
meta = Html("meta", attr = _META1) + (
|
||||||
Html("meta", attr = _META2, indent=False)
|
Html("meta", attr = _META2, indent = False)
|
||||||
)
|
)
|
||||||
|
|
||||||
# links for GRAMPS favicon and stylesheets
|
# links for GRAMPS favicon and stylesheets
|
||||||
@ -464,9 +464,8 @@ class WebCalReport(Report):
|
|||||||
num_years = nyears if 0 < nyears < 19 else 18
|
num_years = nyears if 0 < nyears < 19 else 18
|
||||||
|
|
||||||
# begin year division and begin unordered list
|
# begin year division and begin unordered list
|
||||||
with Html("div", id = "subnavigation") as section:
|
with Html("div", id = "subnavigation", role = "subnavigation") as submenu:
|
||||||
unordered = Html("ul")
|
unordered = Html("ul")
|
||||||
section += unordered
|
|
||||||
|
|
||||||
for cal_year in xrange(self.start_year, (self.start_year + num_years)):
|
for cal_year in xrange(self.start_year, (self.start_year + num_years)):
|
||||||
url = ''
|
url = ''
|
||||||
@ -482,14 +481,20 @@ class WebCalReport(Report):
|
|||||||
# Note. We use '/' here because it is a URL, not a OS dependent
|
# Note. We use '/' here because it is a URL, not a OS dependent
|
||||||
# pathname.
|
# pathname.
|
||||||
url = '/'.join(subdirs + [full_month_name]) + self.ext
|
url = '/'.join(subdirs + [full_month_name]) + self.ext
|
||||||
|
hyper = Html("a", str(cal_year), href = url, title = str(cal_year))
|
||||||
|
|
||||||
# Figure out if we need <li class="CurrentSection"> or just plain <li>
|
# Figure out if we need <li class="CurrentSection"> or just plain <li>
|
||||||
cs = str(cal_year) == currentsection and 'class="CurrentSection"' or ''
|
check_cs = str(cal_year) == currentsection and 'class = "CurrentSection"' or False
|
||||||
unordered += Html("li", attr = cs, inline = True) + (
|
if check_cs:
|
||||||
Html("a", str(cal_year), href = url, title = str(cal_year) ) )
|
unordered.extend(
|
||||||
|
Html("li", hyper, attr = check_cs, inline = True)
|
||||||
# return yearnav to its caller
|
)
|
||||||
return section
|
else:
|
||||||
|
unordered.extend(
|
||||||
|
Html("li", hyper, inline = True)
|
||||||
|
)
|
||||||
|
submenu += unordered
|
||||||
|
return submenu
|
||||||
|
|
||||||
def month_navigation(self, nr_up, year, currentsection, add_home):
|
def month_navigation(self, nr_up, year, currentsection, add_home):
|
||||||
"""
|
"""
|
||||||
@ -502,7 +507,6 @@ class WebCalReport(Report):
|
|||||||
use_home = if creating a link to home
|
use_home = if creating a link to home
|
||||||
-- a link to root directory of website
|
-- a link to root directory of website
|
||||||
"""
|
"""
|
||||||
|
|
||||||
navs = []
|
navs = []
|
||||||
|
|
||||||
# An optional link to a home page
|
# An optional link to a home page
|
||||||
@ -515,10 +519,8 @@ class WebCalReport(Report):
|
|||||||
navs.append(('fullyearlinked', _('Year Glance'), self.fullyear))
|
navs.append(('fullyearlinked', _('Year Glance'), self.fullyear))
|
||||||
|
|
||||||
# begin month subnavigation
|
# begin month subnavigation
|
||||||
with Html("div", id = "navigation") as calendarmenu:
|
with Html("div", class_ = "wrapper", id = "nav", role = "navigation") as navigation:
|
||||||
|
|
||||||
unordered = Html("ul")
|
unordered = Html("ul")
|
||||||
calendarmenu += unordered
|
|
||||||
|
|
||||||
navs = [(u, n) for u, n, c in navs if c]
|
navs = [(u, n) for u, n, c in navs if c]
|
||||||
for url_fname, nav_text in navs:
|
for url_fname, nav_text in navs:
|
||||||
@ -541,7 +543,7 @@ class WebCalReport(Report):
|
|||||||
url += self.ext
|
url += self.ext
|
||||||
|
|
||||||
# Figure out if we need <li class="CurrentSection"> or just plain <li>
|
# Figure out if we need <li class="CurrentSection"> or just plain <li>
|
||||||
cs = url_fname == currentsection and 'class="CurrentSection"' or ''
|
check_cs = url_fname == currentsection and 'class = "CurrentSection"' or False
|
||||||
|
|
||||||
if url == self.home_link:
|
if url == self.home_link:
|
||||||
myTitle = _("NarrativeWeb Home")
|
myTitle = _("NarrativeWeb Home")
|
||||||
@ -549,11 +551,18 @@ class WebCalReport(Report):
|
|||||||
myTitle = _('Full year at a Glance')
|
myTitle = _('Full year at a Glance')
|
||||||
else:
|
else:
|
||||||
myTitle = _(url_fname)
|
myTitle = _(url_fname)
|
||||||
|
hyper = Html("a", nav_text, href = url, name = url_fname, title = myTitle)
|
||||||
|
|
||||||
unordered += Html("li", attr = cs, inline = True) + (
|
if check_cs:
|
||||||
Html("a", nav_text, href = url, name = url_fname, title = myTitle) )
|
unordered.extend(
|
||||||
|
Html("li", hyper, attr = check_cs, inline = True)
|
||||||
return calendarmenu
|
)
|
||||||
|
else:
|
||||||
|
unordered.extend(
|
||||||
|
Html("li", hyper, inline = True)
|
||||||
|
)
|
||||||
|
navigation += unordered
|
||||||
|
return navigation
|
||||||
|
|
||||||
def calendar_build(self, cal, year, month):
|
def calendar_build(self, cal, year, month):
|
||||||
"""
|
"""
|
||||||
@ -626,7 +635,7 @@ class WebCalReport(Report):
|
|||||||
th_txt = '%s %04d' % (month_name, year)
|
th_txt = '%s %04d' % (month_name, year)
|
||||||
|
|
||||||
# begin calendar table and table head
|
# begin calendar table and table head
|
||||||
with Html("table", class_ ="calendar", id = month_name) as table:
|
with Html("table", class_ = "calendar", id = month_name) as table:
|
||||||
|
|
||||||
thead = Html("thead")
|
thead = Html("thead")
|
||||||
table += thead
|
table += thead
|
||||||
|
@ -81,14 +81,14 @@ div#nav .CurrentSection a:hover, div#nav .CurrentSection a:focus {
|
|||||||
color: #FFF;
|
color: #FFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Alphabet Navigation Menu
|
/* Alphabet Navigation and Year Menu
|
||||||
------------------------------------------------------ */
|
------------------------------------------------------ */
|
||||||
div#alphanav {
|
div#alphanav, div#subnavigation {
|
||||||
clear: both;
|
clear: both;
|
||||||
padding-top: 1px;
|
padding-top: 1px;
|
||||||
font: bold 1.2em/1.4 "sans, sans-serif";
|
font: bold 1.2em/1.4 "sans, sans-serif";
|
||||||
}
|
}
|
||||||
div#alphanav ul {
|
div#alphanav ul, div#subnavigation ul {
|
||||||
float: left;
|
float: left;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
@ -98,12 +98,12 @@ div#alphanav ul {
|
|||||||
border-top: 2px solid #13A926;
|
border-top: 2px solid #13A926;
|
||||||
border-bottom: 2px solid #13A926;
|
border-bottom: 2px solid #13A926;
|
||||||
}
|
}
|
||||||
div#alphanav li {
|
div#alphanav ul li, div#subnavigation ul li {
|
||||||
display: inline;
|
display: inline;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
div#alphanav a {
|
div#alphanav ul li a, div#subnavigation ul li a {
|
||||||
display: block;
|
display: block;
|
||||||
float: left;
|
float: left;
|
||||||
padding: 6px 12px;
|
padding: 6px 12px;
|
||||||
@ -112,7 +112,14 @@ div#alphanav a {
|
|||||||
color: #FFF;
|
color: #FFF;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
div#alphanav a:hover, div#alphanav a:focus {
|
div#alphanav ul li a:hover, div#alphanav ul li a:focus,
|
||||||
|
div#subnavigation ul li a:hover, div#subnavigation ul li a:focus {
|
||||||
background: #FFF;
|
background: #FFF;
|
||||||
color: #000;
|
color: #000;
|
||||||
}
|
}
|
||||||
|
div#subnavigation ul li.CurrentSection a {
|
||||||
|
border-left: solid 1px #13A926;
|
||||||
|
border-right: solid 1px #13A926;
|
||||||
|
background-color: #FFF;
|
||||||
|
color: #00029D;
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user