-
Notifications
You must be signed in to change notification settings - Fork 431
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add help_url to Reports, QuickViews, Graphical Reports, Web Reports, built-in tools and debug tools. Commit on behalf of Emyoulation.
- Loading branch information
1 parent
a02aab4
commit 4bc85b9
Showing
7 changed files
with
82 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,7 @@ | |
_ = glocale.translation.gettext | ||
|
||
MODULE_VERSION = "6.0" | ||
QUICKVIEWS_HELP = "Gramps_5.2_Wiki_Manual_-_Reports#Quick_Views" | ||
|
||
# ------------------------------------------------------------------------ | ||
# | ||
|
@@ -44,6 +45,7 @@ | |
authors_email=["[email protected]"], | ||
category=CATEGORY_QR_DATE, | ||
runfunc="run", | ||
help_url=QUICKVIEWS_HELP, | ||
) | ||
|
||
# ------------------------------------------------------------------------ | ||
|
@@ -65,6 +67,7 @@ | |
authors_email=["[email protected]"], | ||
category=CATEGORY_QR_MISC, | ||
runfunc="run", | ||
help_url=QUICKVIEWS_HELP, | ||
) | ||
|
||
# ------------------------------------------------------------------------ | ||
|
@@ -86,6 +89,7 @@ | |
authors_email=["[email protected]"], | ||
category=CATEGORY_QR_PERSON, | ||
runfunc="run", | ||
help_url=QUICKVIEWS_HELP, | ||
) | ||
|
||
|
||
|
@@ -102,6 +106,7 @@ | |
authors_email=["[email protected]"], | ||
category=CATEGORY_QR_FAMILY, | ||
runfunc="run_fam", | ||
help_url=QUICKVIEWS_HELP, | ||
) | ||
|
||
# ------------------------------------------------------------------------ | ||
|
@@ -123,6 +128,7 @@ | |
authors_email=["[email protected]"], | ||
category=CATEGORY_QR_PERSON, | ||
runfunc="run", | ||
help_url=QUICKVIEWS_HELP, | ||
) | ||
|
||
# ------------------------------------------------------------------------ | ||
|
@@ -144,6 +150,7 @@ | |
authors_email=["[email protected]"], | ||
category=CATEGORY_QR_MISC, | ||
runfunc="run", | ||
help_url=QUICKVIEWS_HELP, | ||
) | ||
|
||
# ------------------------------------------------------------------------ | ||
|
@@ -165,6 +172,7 @@ | |
authors_email=["[email protected]"], | ||
category=CATEGORY_QR_PERSON, | ||
runfunc="run_father", | ||
help_url=QUICKVIEWS_HELP, | ||
) | ||
|
||
register( | ||
|
@@ -180,6 +188,7 @@ | |
authors_email=["[email protected]"], | ||
category=CATEGORY_QR_PERSON, | ||
runfunc="run_mother", | ||
help_url=QUICKVIEWS_HELP, | ||
) | ||
|
||
# ------------------------------------------------------------------------ | ||
|
@@ -201,6 +210,7 @@ | |
authors_email=["[email protected]"], | ||
category=CATEGORY_QR_EVENT, | ||
runfunc="run", | ||
help_url=QUICKVIEWS_HELP, | ||
) | ||
|
||
# ------------------------------------------------------------------------ | ||
|
@@ -235,6 +245,7 @@ | |
authors_email=["[email protected]"], | ||
category=category, | ||
runfunc="run_%s" % item, | ||
help_url=QUICKVIEWS_HELP, | ||
) | ||
|
||
register( | ||
|
@@ -250,6 +261,7 @@ | |
authors_email=["[email protected]"], | ||
category=CATEGORY_QR_NOTE, | ||
runfunc="run", | ||
help_url=QUICKVIEWS_HELP, | ||
) | ||
|
||
# ------------------------------------------------------------------------ | ||
|
@@ -274,6 +286,7 @@ | |
authors_email=["[email protected]"], | ||
category=CATEGORY_QR_REPOSITORY, | ||
runfunc="run", | ||
help_url=QUICKVIEWS_HELP, | ||
) | ||
|
||
# ------------------------------------------------------------------------ | ||
|
@@ -295,6 +308,7 @@ | |
authors_email=["[email protected]"], | ||
category=CATEGORY_QR_PERSON, | ||
runfunc="run", | ||
help_url=QUICKVIEWS_HELP, | ||
) | ||
|
||
register( | ||
|
@@ -310,6 +324,7 @@ | |
authors_email=["[email protected]"], | ||
category=CATEGORY_QR_PERSON, | ||
runfunc="run_given", | ||
help_url=QUICKVIEWS_HELP, | ||
) | ||
|
||
register( | ||
|
@@ -325,6 +340,7 @@ | |
authors_email=["[email protected]"], | ||
category=CATEGORY_QR_MISC, | ||
runfunc="run_given", | ||
help_url=QUICKVIEWS_HELP, | ||
) | ||
|
||
# ------------------------------------------------------------------------ | ||
|
@@ -345,4 +361,5 @@ | |
authors_email=["[email protected]"], | ||
category=CATEGORY_QR_PERSON, | ||
runfunc="run", | ||
help_url=QUICKVIEWS_HELP, | ||
) |
Oops, something went wrong.