diff options
author | heiko tietze <tietze.heiko@gmail.com> | 2018-10-17 11:39:25 +0200 |
---|---|---|
committer | Heiko Tietze <tietze.heiko@gmail.com> | 2018-10-18 20:16:23 +0200 |
commit | b2fdf08169fea536bc05e49bf63d70d6fdbfe31b (patch) | |
tree | c7ae22bb44f5f1b8effb70b531f666c063de6715 /officecfg | |
parent | c3eb1c85f95168f8e84b8f655c839eff23c7e98a (diff) |
tdf#113415 - Customizable links in Help menu
SendFeedbackURL, QA_URL, DocumentationURL, GetInvolvedURL,
DonationURL added to global variables under Menus
Change-Id: Ie95ef2795d4079edd204edb1fcd86fde4376cedf
Reviewed-on: https://gerrit.libreoffice.org/61874
Tested-by: Jenkins
Reviewed-by: Heiko Tietze <tietze.heiko@gmail.com>
Diffstat (limited to 'officecfg')
-rw-r--r-- | officecfg/registry/data/org/openoffice/Office/Common.xcu | 15 | ||||
-rw-r--r-- | officecfg/registry/schema/org/openoffice/Office/Common.xcs | 25 |
2 files changed, 40 insertions, 0 deletions
diff --git a/officecfg/registry/data/org/openoffice/Office/Common.xcu b/officecfg/registry/data/org/openoffice/Office/Common.xcu index 5575bbd3d350..9ef049838ffb 100644 --- a/officecfg/registry/data/org/openoffice/Office/Common.xcu +++ b/officecfg/registry/data/org/openoffice/Office/Common.xcu @@ -379,6 +379,21 @@ </prop> </node> </node> + <prop oor:name="SendFeedbackURL" oor:type="xs:string"> + <value>https://hub.libreoffice.org/send-feedback/</value> + </prop> + <prop oor:name="QA_URL" oor:type="xs:string"> + <value>https://hub.libreoffice.org/forum/</value> + </prop> + <prop oor:name="DocumentationURL" oor:type="xs:string"> + <value>https://hub.libreoffice.org/documentation/</value> + </prop> + <prop oor:name="GetInvolvedURL" oor:type="xs:string"> + <value>https://hub.libreoffice.org/joinus/</value> + </prop> + <prop oor:name="DonationURL" oor:type="xs:string"> + <value>https://hub.libreoffice.org/donation/</value> + </prop> </node> <node oor:name="Forms"> <node oor:name="ControlLayout"> diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs b/officecfg/registry/schema/org/openoffice/Office/Common.xcs index 4525662ec5ae..4ef848e68b0c 100644 --- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs +++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs @@ -2049,6 +2049,31 @@ <desc>Contains all help bookmarks.</desc> </info> </set> + <prop oor:name="SendFeedbackURL" oor:type="xs:string" oor:nillable="false"> + <info> + <desc>Specifies the URL used with the UNO command SendFeedback (SID_SEND_FEEDBACK).</desc> + </info> + </prop> + <prop oor:name="QA_URL" oor:type="xs:string" oor:nillable="false"> + <info> + <desc>Specifies the URL used with the UNO command QuestionAnswers (SID_Q_AND_A).</desc> + </info> + </prop> + <prop oor:name="DocumentationURL" oor:type="xs:string" oor:nillable="false"> + <info> + <desc>Specifies the URL used with the UNO command Documentation (SID_DOCUMENTATION).</desc> + </info> + </prop> + <prop oor:name="GetInvolvedURL" oor:type="xs:string" oor:nillable="false"> + <info> + <desc>Specifies the URL used with the UNO command GetInvolved (SID_GETINVOLVED).</desc> + </info> + </prop> + <prop oor:name="DonationURL" oor:type="xs:string" oor:nillable="false"> + <info> + <desc>Specifies the URL used with the UNO command Donation (SID_DONATION).</desc> + </info> + </prop> </group> <group oor:name="History"> <!-- OldLocation: soffice.ini --> |