Added my changes in trunk/NarrativeWeb to gramps32. Allowing the user to choose from either vertical/horizontal menus in either Web_Basic-Blue or Web_Visually stylesheets.
svn: r15205
This commit is contained in:
@ -2,6 +2,7 @@
|
|||||||
# Gramps - a GTK+/GNOME based genealogy program
|
# Gramps - a GTK+/GNOME based genealogy program
|
||||||
#
|
#
|
||||||
# Copyright (C) 2001-2006 Donald N. Allingham
|
# Copyright (C) 2001-2006 Donald N. Allingham
|
||||||
|
# Copyright (C) 2010 Rob G. Healey <robhealey1@gmail.com>
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# This program is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
@ -62,6 +63,7 @@ book_categories = {
|
|||||||
CSS_FILES = [
|
CSS_FILES = [
|
||||||
# First is used as default selection.
|
# First is used as default selection.
|
||||||
[_("Basic-Ash"), 'Web_Basic-Ash.css'],
|
[_("Basic-Ash"), 'Web_Basic-Ash.css'],
|
||||||
|
[_("Basic-Blue"), 'Web_Basic-Blue.css'],
|
||||||
[_("Basic-Cypress"), 'Web_Basic-Cypress.css'],
|
[_("Basic-Cypress"), 'Web_Basic-Cypress.css'],
|
||||||
[_("Basic-Lilac"), 'Web_Basic-Lilac.css'],
|
[_("Basic-Lilac"), 'Web_Basic-Lilac.css'],
|
||||||
[_("Basic-Peach"), 'Web_Basic-Peach.css'],
|
[_("Basic-Peach"), 'Web_Basic-Peach.css'],
|
||||||
|
@ -986,6 +986,8 @@ class BasePage(object):
|
|||||||
meta = (Html("meta", attr = _META1) +
|
meta = (Html("meta", attr = _META1) +
|
||||||
Html("meta", attr = _META2, indent = False)
|
Html("meta", attr = _META2, indent = False)
|
||||||
)
|
)
|
||||||
|
# add meta tags to the head section
|
||||||
|
head += meta
|
||||||
|
|
||||||
# Link to media reference regions behaviour stylesheet
|
# Link to media reference regions behaviour stylesheet
|
||||||
fname = "/".join(["styles", "behaviour.css"])
|
fname = "/".join(["styles", "behaviour.css"])
|
||||||
@ -1010,8 +1012,14 @@ class BasePage(object):
|
|||||||
Html("link", href = url3, type = "text/css", media = 'print', rel = "stylesheet", indent = False)
|
Html("link", href = url3, type = "text/css", media = 'print', rel = "stylesheet", indent = False)
|
||||||
)
|
)
|
||||||
|
|
||||||
# add additional meta and link tags
|
# Link to Navigation Menus stylesheet
|
||||||
head += meta
|
if self.report.css in ["Web_Basic-Blue.css", "Web_Visually.css"]:
|
||||||
|
fname = "/".join(["styles", "Web_Navigation-Menus.css"])
|
||||||
|
url = self.report.build_url_fname(fname, None, self.up)
|
||||||
|
links.extend(
|
||||||
|
Html("link", href = url, type = "text/css", media = "screen", rel = "stylesheet", indent = False)
|
||||||
|
)
|
||||||
|
# add link tags to head section
|
||||||
head += links
|
head += links
|
||||||
|
|
||||||
# alpha event pages do not need these things
|
# alpha event pages do not need these things
|
||||||
@ -5069,6 +5077,7 @@ class NavWebReport(Report):
|
|||||||
self.target_path = self.options['target']
|
self.target_path = self.options['target']
|
||||||
self.ext = self.options['ext']
|
self.ext = self.options['ext']
|
||||||
self.css = self.options['css']
|
self.css = self.options['css']
|
||||||
|
self.navigation = self.options["navigation"]
|
||||||
|
|
||||||
self.title = self.options['title']
|
self.title = self.options['title']
|
||||||
self.inc_gallery = self.options['gallery']
|
self.inc_gallery = self.options['gallery']
|
||||||
@ -5284,6 +5293,14 @@ class NavWebReport(Report):
|
|||||||
fname = os.path.join(const.DATA_DIR, "Web_Print-Default.css")
|
fname = os.path.join(const.DATA_DIR, "Web_Print-Default.css")
|
||||||
self.copy_file(fname, _NARRATIVEPRINT, "styles")
|
self.copy_file(fname, _NARRATIVEPRINT, "styles")
|
||||||
|
|
||||||
|
# copy Navigation Menu Layout if Blue or Visually is being used
|
||||||
|
if self.css == "Web_Basic-Blue.css" or "Web_Visually.css":
|
||||||
|
if self.navigation == "Horizontal":
|
||||||
|
fname = os.path.join(const.DATA_DIR, "Web_Navigation-Horizontal.css")
|
||||||
|
else:
|
||||||
|
fname = os.path.join(const.DATA_DIR, "Web_Navigation-Vertical.css")
|
||||||
|
self.copy_file(fname, "Web_Navigation-Menus.css", "styles")
|
||||||
|
|
||||||
imgs = []
|
imgs = []
|
||||||
|
|
||||||
# Mainz stylesheet graphics
|
# Mainz stylesheet graphics
|
||||||
@ -5793,11 +5810,24 @@ class NavWebOptions(MenuReportOptions):
|
|||||||
cright.set_help( _("The copyright to be used for the web files"))
|
cright.set_help( _("The copyright to be used for the web files"))
|
||||||
menu.add_option(category_name, "cright", cright)
|
menu.add_option(category_name, "cright", cright)
|
||||||
|
|
||||||
css = EnumeratedListOption(_('StyleSheet'), CSS_FILES[0][1])
|
self.__css = EnumeratedListOption(_('StyleSheet'), CSS_FILES[0][1])
|
||||||
for style in CSS_FILES:
|
for style in CSS_FILES:
|
||||||
css.add_item(style[1], style[0])
|
self.__css.add_item(style[1], style[0])
|
||||||
css.set_help( _('The stylesheet to be used for the web pages'))
|
self.__css.set_help( _('The stylesheet to be used for the web pages'))
|
||||||
menu.add_option(category_name, "css", css)
|
menu.add_option(category_name, "css", self.__css)
|
||||||
|
self.__css.connect("value-changed", self.__stylesheet_changed)
|
||||||
|
|
||||||
|
_NAVIGATION_OPTS = [
|
||||||
|
[_("Horizontal -- No Change"), "Horizontal"],
|
||||||
|
[_("Vertical"), "Vertical"]
|
||||||
|
]
|
||||||
|
self.__navigation = EnumeratedListOption(_("Navigation Layout"), _NAVIGATION_OPTS[0][1])
|
||||||
|
for layout in _NAVIGATION_OPTS:
|
||||||
|
self.__navigation.add_item(layout[1], layout[0])
|
||||||
|
self.__navigation.set_help(_("Choose which layout for the Navigation Menus."))
|
||||||
|
menu.add_option(category_name, "navigation", self.__navigation)
|
||||||
|
|
||||||
|
self.__stylesheet_changed()
|
||||||
|
|
||||||
self.__graph = BooleanOption(_("Include ancestor graph"), True)
|
self.__graph = BooleanOption(_("Include ancestor graph"), True)
|
||||||
self.__graph.set_help(_('Whether to include an ancestor graph '
|
self.__graph.set_help(_('Whether to include an ancestor graph '
|
||||||
@ -6044,6 +6074,17 @@ class NavWebOptions(MenuReportOptions):
|
|||||||
# The rest don't
|
# The rest don't
|
||||||
self.__pid.set_available(False)
|
self.__pid.set_available(False)
|
||||||
|
|
||||||
|
def __stylesheet_changed(self):
|
||||||
|
"""
|
||||||
|
Handles the changing nature of the stylesheet
|
||||||
|
"""
|
||||||
|
|
||||||
|
css_opts = self.__css.get_value()
|
||||||
|
if css_opts in ["Web_Basic-Blue.css", "Web_Visually.css"]:
|
||||||
|
self.__navigation.set_available(True)
|
||||||
|
else:
|
||||||
|
self.__navigation.set_available(False)
|
||||||
|
|
||||||
def __graph_changed(self):
|
def __graph_changed(self):
|
||||||
"""
|
"""
|
||||||
Handle enabling or disabling the ancestor graph
|
Handle enabling or disabling the ancestor graph
|
||||||
|
Reference in New Issue
Block a user