File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change 36
36
_ = glocale .translation .gettext
37
37
from gramps .gen .lib import NoteType
38
38
from gramps .gen .db import DbTxn
39
+ from gramps .gen .const import URL_MANUAL_SECT2
39
40
40
41
from .displaytabs import NoteTab , AddrEmbedList , WebEmbedList , SourceBackRefList
41
42
from ..widgets import MonitoredEntry , PrivacyButton , MonitoredDataType
42
43
from .editreference import RefTab , EditReference
43
44
from ..glade import Glade
44
45
46
+ # -------------------------------------------------------------------------
47
+ #
48
+ # Constants
49
+ #
50
+ # -------------------------------------------------------------------------
51
+
52
+ WIKI_HELP_PAGE = URL_MANUAL_SECT2
53
+ WIKI_HELP_SEC = "Repository_Reference_Editor"
54
+
45
55
46
56
# -------------------------------------------------------------------------
47
57
#
@@ -84,6 +94,9 @@ def _local_init(self):
84
94
def _connect_signals (self ):
85
95
self .define_ok_button (self .top .get_object ("ok" ), self .ok_clicked )
86
96
self .define_cancel_button (self .top .get_object ("cancel" ))
97
+ self .define_help_button (
98
+ self .top .get_object ("help" ), WIKI_HELP_PAGE , WIKI_HELP_SEC
99
+ )
87
100
88
101
def _connect_db_signals (self ):
89
102
"""
You can’t perform that action at this time.
0 commit comments