8888 more 'Editors' update broken wiki help links
This commit is contained in:
parent
a34b5a81d2
commit
2d4ec91a5c
@ -51,6 +51,16 @@ from gramps.gen.lib import NoteType
|
|||||||
from ..glade import Glade
|
from ..glade import Glade
|
||||||
from .displaytabs import CitationEmbedList, NoteTab
|
from .displaytabs import CitationEmbedList, NoteTab
|
||||||
from ..widgets import MonitoredDate, MonitoredEntry, PrivacyButton
|
from ..widgets import MonitoredDate, MonitoredEntry, PrivacyButton
|
||||||
|
from gramps.gen.const import URL_MANUAL_PAGE
|
||||||
|
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# Constants
|
||||||
|
#
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
|
WIKI_HELP_PAGE = _('%s_-_Entering_and_editing_data:_detailed_-_part_3') % URL_MANUAL_PAGE
|
||||||
|
WIKI_HELP_SEC = _('Address_Editor_dialog')
|
||||||
|
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
@ -122,9 +132,10 @@ class EditAddress(EditSecondary):
|
|||||||
self.obj, self.db.readonly)
|
self.obj, self.db.readonly)
|
||||||
|
|
||||||
def _connect_signals(self):
|
def _connect_signals(self):
|
||||||
self.define_help_button(self.top.get_object('help'))
|
|
||||||
self.define_cancel_button(self.top.get_object('cancel'))
|
self.define_cancel_button(self.top.get_object('cancel'))
|
||||||
self.define_ok_button(self.top.get_object('ok'),self.save)
|
self.define_ok_button(self.top.get_object('ok'),self.save)
|
||||||
|
self.define_help_button(self.top.get_object('help'),
|
||||||
|
WIKI_HELP_PAGE, WIKI_HELP_SEC)
|
||||||
|
|
||||||
def _create_tabbed_pages(self):
|
def _create_tabbed_pages(self):
|
||||||
"""
|
"""
|
||||||
|
@ -50,6 +50,16 @@ from gramps.gen.lib import NoteType
|
|||||||
from ..glade import Glade
|
from ..glade import Glade
|
||||||
from .displaytabs import CitationEmbedList, NoteTab
|
from .displaytabs import CitationEmbedList, NoteTab
|
||||||
from ..widgets import MonitoredEntry, PrivacyButton, MonitoredDataType
|
from ..widgets import MonitoredEntry, PrivacyButton, MonitoredDataType
|
||||||
|
from gramps.gen.const import URL_MANUAL_PAGE
|
||||||
|
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# Constants
|
||||||
|
#
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
|
WIKI_HELP_PAGE = _('%s_-_Entering_and_editing_data:_detailed_-_part_3') % URL_MANUAL_PAGE
|
||||||
|
WIKI_HELP_SEC = _('Attribute_Editor_dialog')
|
||||||
|
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
@ -87,8 +97,9 @@ class EditAttributeRoot(EditSecondary):
|
|||||||
|
|
||||||
def _connect_signals(self):
|
def _connect_signals(self):
|
||||||
self.define_cancel_button(self.top.get_object('cancel'))
|
self.define_cancel_button(self.top.get_object('cancel'))
|
||||||
self.define_help_button(self.top.get_object('help'))
|
|
||||||
self.define_ok_button(self.top.get_object('ok'),self.save)
|
self.define_ok_button(self.top.get_object('ok'),self.save)
|
||||||
|
self.define_help_button(self.top.get_object('help'),
|
||||||
|
WIKI_HELP_PAGE, WIKI_HELP_SEC)
|
||||||
|
|
||||||
def _setup_fields(self):
|
def _setup_fields(self):
|
||||||
self.value_field = MonitoredEntry(
|
self.value_field = MonitoredEntry(
|
||||||
|
@ -79,6 +79,16 @@ from gramps.gen.utils.db import (get_birth_or_fallback, get_death_or_fallback,
|
|||||||
get_marriage_or_fallback, preset_name, family_name)
|
get_marriage_or_fallback, preset_name, family_name)
|
||||||
from ..selectors import SelectorFactory
|
from ..selectors import SelectorFactory
|
||||||
from gramps.gen.utils.id import create_id
|
from gramps.gen.utils.id import create_id
|
||||||
|
from gramps.gen.const import URL_MANUAL_PAGE
|
||||||
|
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# Constants
|
||||||
|
#
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
|
WIKI_HELP_PAGE = _('%s_-_Entering_and_editing_data:_detailed_-_part_1') % URL_MANUAL_PAGE
|
||||||
|
WIKI_HELP_SEC = _('Family_Editor_dialog')
|
||||||
|
|
||||||
SelectPerson = SelectorFactory('Person')
|
SelectPerson = SelectorFactory('Person')
|
||||||
|
|
||||||
@ -618,7 +628,9 @@ class EditFamily(EditPrimary):
|
|||||||
def _connect_signals(self):
|
def _connect_signals(self):
|
||||||
self.define_ok_button(self.top.get_object('ok'), self.save)
|
self.define_ok_button(self.top.get_object('ok'), self.save)
|
||||||
self.define_cancel_button(self.top.get_object('cancel'))
|
self.define_cancel_button(self.top.get_object('cancel'))
|
||||||
self.define_help_button(self.top.get_object('button119'))
|
# TODO help button (rename glade button name)
|
||||||
|
self.define_help_button(self.top.get_object('button119'),
|
||||||
|
WIKI_HELP_PAGE, WIKI_HELP_SEC)
|
||||||
|
|
||||||
def _can_be_replaced(self):
|
def _can_be_replaced(self):
|
||||||
pass
|
pass
|
||||||
|
@ -55,6 +55,16 @@ from .displaytabs import CitationEmbedList,NoteTab
|
|||||||
from ..widgets import (PrivacyButton, MonitoredDate,
|
from ..widgets import (PrivacyButton, MonitoredDate,
|
||||||
MonitoredMenu, MonitoredStrMenu)
|
MonitoredMenu, MonitoredStrMenu)
|
||||||
from ..selectors import SelectorFactory
|
from ..selectors import SelectorFactory
|
||||||
|
from gramps.gen.const import URL_MANUAL_PAGE
|
||||||
|
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# Constants
|
||||||
|
#
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
|
WIKI_HELP_PAGE = _('%s_-_Entering_and_editing_data:_detailed_-_part_1') % URL_MANUAL_PAGE
|
||||||
|
WIKI_HELP_SEC = _('LDS_Ordinance_Editor')
|
||||||
|
|
||||||
_DATA_MAP = {
|
_DATA_MAP = {
|
||||||
LdsOrd.BAPTISM : [
|
LdsOrd.BAPTISM : [
|
||||||
@ -154,8 +164,9 @@ class EditLdsOrd(EditSecondary):
|
|||||||
def _connect_signals(self):
|
def _connect_signals(self):
|
||||||
self.parents_select.connect('clicked',self.select_parents_clicked)
|
self.parents_select.connect('clicked',self.select_parents_clicked)
|
||||||
self.define_cancel_button(self.top.get_object('cancel'))
|
self.define_cancel_button(self.top.get_object('cancel'))
|
||||||
self.define_help_button(self.top.get_object('help'))
|
|
||||||
self.define_ok_button(self.top.get_object('ok'),self.save)
|
self.define_ok_button(self.top.get_object('ok'),self.save)
|
||||||
|
self.define_help_button(self.top.get_object('help'),
|
||||||
|
WIKI_HELP_PAGE, WIKI_HELP_SEC)
|
||||||
|
|
||||||
def _get_types(self):
|
def _get_types(self):
|
||||||
return (LdsOrd.BAPTISM,
|
return (LdsOrd.BAPTISM,
|
||||||
|
@ -35,6 +35,16 @@ _ = glocale.translation.gettext
|
|||||||
from .editsecondary import EditSecondary
|
from .editsecondary import EditSecondary
|
||||||
from ..widgets import MonitoredEntry, PrivacyButton, MonitoredDataType
|
from ..widgets import MonitoredEntry, PrivacyButton, MonitoredDataType
|
||||||
from ..glade import Glade
|
from ..glade import Glade
|
||||||
|
from gramps.gen.const import URL_MANUAL_PAGE
|
||||||
|
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# Constants
|
||||||
|
#
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
|
WIKI_HELP_PAGE = _('%s_-_Entering_and_editing_data:_detailed_-_part_1') % URL_MANUAL_PAGE
|
||||||
|
WIKI_HELP_SEC = _('Internet_Address_Editor')
|
||||||
|
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
@ -63,7 +73,9 @@ class EditUrl(EditSecondary):
|
|||||||
self.jump.connect('clicked', self.jump_to)
|
self.jump.connect('clicked', self.jump_to)
|
||||||
self.define_cancel_button(self.top.get_object('button125'))
|
self.define_cancel_button(self.top.get_object('button125'))
|
||||||
self.define_ok_button(self.top.get_object('button124'), self.save)
|
self.define_ok_button(self.top.get_object('button124'), self.save)
|
||||||
self.define_help_button(self.top.get_object('button130'))
|
# TODO help button (rename glade button name)
|
||||||
|
self.define_help_button(self.top.get_object('button130'),
|
||||||
|
WIKI_HELP_PAGE, WIKI_HELP_SEC)
|
||||||
|
|
||||||
def jump_to(self, obj):
|
def jump_to(self, obj):
|
||||||
if self.obj.get_path():
|
if self.obj.get_path():
|
||||||
|
Loading…
Reference in New Issue
Block a user