summaryrefslogtreecommitdiffstats
path: root/comm/suite/base/content/helpEditorOverlay.xul
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
commit6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch)
treea68f146d7fa01f0134297619fbe7e33db084e0aa /comm/suite/base/content/helpEditorOverlay.xul
parentInitial commit. (diff)
downloadthunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz
thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'comm/suite/base/content/helpEditorOverlay.xul')
-rw-r--r--comm/suite/base/content/helpEditorOverlay.xul54
1 files changed, 54 insertions, 0 deletions
diff --git a/comm/suite/base/content/helpEditorOverlay.xul b/comm/suite/base/content/helpEditorOverlay.xul
new file mode 100644
index 0000000000..355ea6c59c
--- /dev/null
+++ b/comm/suite/base/content/helpEditorOverlay.xul
@@ -0,0 +1,54 @@
+<?xml version="1.0"?>
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<overlay id="helpEditorOverlay"
+ xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
+
+ <script src="chrome://help/content/contextHelp.js"/>
+ <script>
+ <![CDATA[
+ setHelpFileURI('chrome://communicator/locale/help/suitehelp.rdf');
+
+ function doPublishDialogHelpButton()
+ {
+ var selTab = document.getElementById('TabBox').selectedTab;
+
+ if (selTab.id == "PublishTab")
+ openHelp('comp-doc-publish-publishtab');
+ else
+ openHelp('comp-doc-publish-settingstab');
+ }
+ ]]>
+ </script>
+
+ <dialog id="advancedEditDlg"
+ buttons="accept,cancel,help"
+ ondialoghelp="openHelp('advanced_property_editor');"/>
+
+ <dialog id="imageDlg"
+ buttons="accept,cancel,help"
+ ondialoghelp="openHelp('image_properties');"/>
+
+ <dialog id="linkDlg"
+ buttons="accept,cancel,help"
+ ondialoghelp="openHelp('link_properties');"/>
+
+ <dialog id="publishDlg"
+ buttons="accept,cancel,help"
+ ondialoghelp="doPublishDialogHelpButton();"/>
+
+ <dialog id="publishProgressDlg"
+ buttons="cancel,help"
+ ondialoghelp="openHelp('comp-doc-publish-troubleshooting');"/>
+
+ <dialog id="publishSettingsDlg"
+ buttons="accept,cancel,help"
+ ondialoghelp="openHelp('comp-doc-publish-site-settings');"/>
+
+ <dialog id="tableDlg"
+ buttons="accept,extra1,cancel,help"
+ ondialoghelp="openHelp('table_properties');"/>
+
+</overlay>