From 940b4d1848e8c70ab7642901a68594e8016caffc Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 27 Apr 2024 18:51:28 +0200 Subject: Adding upstream version 1:7.0.4. Signed-off-by: Daniel Baumann --- .../Extensions/DialogWithHelp/Addons.xcu | 68 ++++++++++++ .../DialogWithHelp/DialogWithHelp/Dialog1.xdl | 27 +++++ .../DialogWithHelp/DialogWithHelp/Module1.xba | 33 ++++++ .../DialogWithHelp/DialogWithHelp/dialog.xlb | 5 + .../DialogWithHelp/DialogWithHelp/script.xlb | 5 + .../DialogWithHelp/META-INF/manifest.xml | 23 ++++ .../Extensions/DialogWithHelp/Makefile | 117 +++++++++++++++++++++ .../Extensions/DialogWithHelp/description.xml | 25 +++++ .../help/de/com.foocorp.foo-ext/page1.xhp | 90 ++++++++++++++++ .../help/de/com.foocorp.foo-ext/page2.xhp | 44 ++++++++ .../com.foocorp.foo-ext/subfolder/anotherpage.xhp | 117 +++++++++++++++++++++ .../help/en/com.foocorp.foo-ext/page1.xhp | 90 ++++++++++++++++ .../help/en/com.foocorp.foo-ext/page2.xhp | 43 ++++++++ .../com.foocorp.foo-ext/subfolder/anotherpage.xhp | 117 +++++++++++++++++++++ 14 files changed, 804 insertions(+) create mode 100644 odk/examples/DevelopersGuide/Extensions/DialogWithHelp/Addons.xcu create mode 100644 odk/examples/DevelopersGuide/Extensions/DialogWithHelp/DialogWithHelp/Dialog1.xdl create mode 100644 odk/examples/DevelopersGuide/Extensions/DialogWithHelp/DialogWithHelp/Module1.xba create mode 100644 odk/examples/DevelopersGuide/Extensions/DialogWithHelp/DialogWithHelp/dialog.xlb create mode 100644 odk/examples/DevelopersGuide/Extensions/DialogWithHelp/DialogWithHelp/script.xlb create mode 100644 odk/examples/DevelopersGuide/Extensions/DialogWithHelp/META-INF/manifest.xml create mode 100644 odk/examples/DevelopersGuide/Extensions/DialogWithHelp/Makefile create mode 100644 odk/examples/DevelopersGuide/Extensions/DialogWithHelp/description.xml create mode 100644 odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/de/com.foocorp.foo-ext/page1.xhp create mode 100644 odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/de/com.foocorp.foo-ext/page2.xhp create mode 100644 odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/de/com.foocorp.foo-ext/subfolder/anotherpage.xhp create mode 100644 odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/en/com.foocorp.foo-ext/page1.xhp create mode 100644 odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/en/com.foocorp.foo-ext/page2.xhp create mode 100644 odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/en/com.foocorp.foo-ext/subfolder/anotherpage.xhp (limited to 'odk/examples/DevelopersGuide/Extensions/DialogWithHelp') diff --git a/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/Addons.xcu b/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/Addons.xcu new file mode 100644 index 000000000..2cae63627 --- /dev/null +++ b/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/Addons.xcu @@ -0,0 +1,68 @@ + + + + + + + + + Foo E~xtension + + + + + vnd.sun.star.script:DialogWithHelp.Module1.main?language=Basic&location=application + + + + + + _self + + + + Start Foo Dialog... + + + + + + + + + + + + vnd.sun.star.script:DialogWithHelp.Module1.main?language=Basic&location=application + + + Foo Toolbar Item + Foo Toolbar Eintrag + + + _self + + + com.sun.star.text.TextDocument + + + + + + diff --git a/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/DialogWithHelp/Dialog1.xdl b/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/DialogWithHelp/Dialog1.xdl new file mode 100644 index 000000000..90fc473ad --- /dev/null +++ b/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/DialogWithHelp/Dialog1.xdl @@ -0,0 +1,27 @@ + + + + + + + + + + + diff --git a/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/DialogWithHelp/Module1.xba b/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/DialogWithHelp/Module1.xba new file mode 100644 index 000000000..976a0e59f --- /dev/null +++ b/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/DialogWithHelp/Module1.xba @@ -0,0 +1,33 @@ + + + +REM ***** BASIC ***** + +Sub Main + DialogLibraries.loadLibrary( "DialogWithHelp" ) + oDlg = CreateUnoDialog( DialogLibraries.DialogWithHelp.Dialog1 ) + oDlg.execute() +End Sub + +Sub HandleDoIt + msgbox "I did it!" +End Sub + + + \ No newline at end of file diff --git a/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/DialogWithHelp/dialog.xlb b/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/DialogWithHelp/dialog.xlb new file mode 100644 index 000000000..bd7d00efd --- /dev/null +++ b/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/DialogWithHelp/dialog.xlb @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/DialogWithHelp/script.xlb b/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/DialogWithHelp/script.xlb new file mode 100644 index 000000000..423177601 --- /dev/null +++ b/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/DialogWithHelp/script.xlb @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/META-INF/manifest.xml b/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/META-INF/manifest.xml new file mode 100644 index 000000000..bdf108308 --- /dev/null +++ b/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/META-INF/manifest.xml @@ -0,0 +1,23 @@ + + + + + + + diff --git a/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/Makefile b/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/Makefile new file mode 100644 index 000000000..171dd5393 --- /dev/null +++ b/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/Makefile @@ -0,0 +1,117 @@ +#************************************************************************* +# +# The Contents of this file are made available subject to the terms of +# the BSD license. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# 3. Neither the name of Sun Microsystems, Inc. nor the names of its +# contributors may be used to endorse or promote products derived +# from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS +# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR +# TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE +# USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# +#************************************************************************** + +# Builds the DialogWithHelp example of the Developers Guide. + +PRJ=../../../.. +SETTINGS=$(PRJ)/settings + +include $(SETTINGS)/settings.mk +include $(SETTINGS)/std.mk + +# Define non-platform/compiler specific settings +SAMPLE_NAME=ExtDialogWithHelp +SAMPLE_GEN_OUT=$(OUT_MISC)/$(SAMPLE_NAME) + +COMP_NAME=DialogWithHelp +COMP_GEN_OUT=$(SAMPLE_GEN_OUT)/$(COMP_NAME) +COMP_PACKAGE = $(OUT_BIN)/$(COMP_NAME).$(UNOOXT_EXT) +COMP_PACKAGE_URL = $(subst \\,\,"$(COMP_PACKAGE_DIR)$(PS)$(COMP_NAME).$(UNOOXT_EXT)") +COMP_UNOPKG_MANIFEST = $(COMP_GEN_OUT)/META-INF/manifest.xml +COMP_REGISTERFLAG=$(COMP_GEN_OUT)$(PS)devguide_basic_$(COMP_NAME)_register_component.flag + +COMP_LIBRARY_FILES=\ + DialogWithHelp/dialog.xlb\ + DialogWithHelp/script.xlb\ + DialogWithHelp/Module1.xba\ + DialogWithHelp/Dialog1.xdl + +COMP_MISC_FILES=\ + META-INF/manifest.xml\ + Addons.xcu\ + description.xml + +COMP_HELP_FILES=\ + help/de/com.foocorp.foo-ext/page1.xhp\ + help/de/com.foocorp.foo-ext/page2.xhp\ + help/de/com.foocorp.foo-ext/subfolder/anotherpage.xhp\ + help/en/com.foocorp.foo-ext/page1.xhp\ + help/en/com.foocorp.foo-ext/page2.xhp\ + help/en/com.foocorp.foo-ext/subfolder/anotherpage.xhp\ + +# Targets +.PHONY: ALL +ALL : $(SAMPLE_NAME) + +include $(SETTINGS)/stdtarget.mk + +# rule for component package file +$(COMP_PACKAGE) : $(COMP_LIBRARY_FILES) $(COMP_MISC_FILES) $(COMP_HELP_FILES) + -$(DEL) $(subst \\,\,$(subst /,$(PS),$@)) + -$(MKDIR) $(subst /,$(PS),$(@D)) + $(SDK_ZIP) $@ $(COMP_LIBRARY_FILES) + $(SDK_ZIP) $@ $(COMP_MISC_FILES) + $(SDK_ZIP) $@ $(COMP_HELP_FILES) + +$(COMP_REGISTERFLAG) : $(COMP_PACKAGE) +ifeq "$(SDK_AUTO_DEPLOYMENT)" "YES" + -$(DEL) $(subst \\,\,$(subst /,$(PS),$@)) + -$(MKDIR) $(subst /,$(PS),$(@D)) + $(DEPLOYTOOL) $(COMP_PACKAGE_URL) + @echo flagged > $(subst /,$(PS),$@) +else + @echo -------------------------------------------------------------------------------- + @echo If you want to install your component automatically, please set the environment + @echo variable SDK_AUTO_DEPLOYMENT = YES. But note that auto deployment is only + @echo possible if no office instance is running. + @echo -------------------------------------------------------------------------------- +endif + +$(SAMPLE_NAME) : $(COMP_REGISTERFLAG) + @echo -------------------------------------------------------------------------------- + @echo The "$(QM)DialogWithHelp$(QM)" library was installed in your office installation + @echo if SDK_AUTO_DEPLOYMENT = YES. You can use it in the BASIC IDE as a normal + @echo Basic library. You also will find a new top level menu "$(QM)Foo Extension$(QM)" + @echo with one menu entry "$(QM)Start Foo Dialog$(QM)" to start it directly. If a + @echo document is active there is also a "$(QM)Foo Toolbar Item$(QM)" doing the same. + @echo All help index entries provided by the help content start with Foo. + @echo -------------------------------------------------------------------------------- + +$(COMP_NAME).odt.load : $(COMP_REGISTERFLAG) + "$(OFFICE_PROGRAM_PATH)$(PS)soffice" $(basename $@) + +.PHONY: clean +clean : + -$(DELRECURSIVE) $(subst /,$(PS),$(COMP_GEN_OUT)) + -$(DEL) $(subst \\,\,$(subst /,$(PS),$(COMP_PACKAGE_URL))) diff --git a/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/description.xml b/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/description.xml new file mode 100644 index 000000000..f5540bb2b --- /dev/null +++ b/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/description.xml @@ -0,0 +1,25 @@ + + + + + + + + + diff --git a/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/de/com.foocorp.foo-ext/page1.xhp b/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/de/com.foocorp.foo-ext/page1.xhp new file mode 100644 index 000000000..d5ec9d530 --- /dev/null +++ b/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/de/com.foocorp.foo-ext/page1.xhp @@ -0,0 +1,90 @@ + + + + + +DE Extension foo page1 DE +/com.foocorp.foo-ext/page1.xhp + + + + +Foo Einzel-Eintrag für page1 +Foo Alle Seiten;page1 + + +Foo Einzel-Eintrag page1, nur swriter/sdraw + +DE Extension foo page1 DE +Dies ist "page1" der Extension foo Hilfe. +Kommentar am Ende des Paragraphen +Einige Links... +Einige Links... + +Dies ist ein Link zu "page2" der Extension foo Hilfe. + +Dies ist ein Link zu einer Sektion innerhalb einer Hilfe-Datei (unten in dieser Datei, kann aber auch in einer anderen Datei sein). + +Dies ist ein Link zu einer Hilfe-Seite in der installierten Hilfe. +Etwas Füll-Text +Ich mag Füll-Text. Ich mag Füll-Text. Ich mag Füll-Text. +Ich mag Füll-Text. Ich mag Füll-Text. Ich mag Füll-Text. +Ich mag Füll-Text. Ich mag Füll-Text. Ich mag Füll-Text. +Ich mag Füll-Text. Ich mag Füll-Text. Ich mag Füll-Text. +Ich mag Füll-Text. Ich mag Füll-Text. Ich mag Füll-Text. +Ich mag Füll-Text. Ich mag Füll-Text. Ich mag Füll-Text. +
+Section "target" + +This is a section within the file page1.xhp. The section has the name "target". + +
+Noch mehr Füll-Text +Dieser Text füllt die Seite um die Section "target" oben anzeigen zu können. +Dieser Text füllt die Seite um die Section "target" oben anzeigen zu können. +Dieser Text füllt die Seite um die Section "target" oben anzeigen zu können. +Dieser Text füllt die Seite um die Section "target" oben anzeigen zu können. +Dieser Text füllt die Seite um die Section "target" oben anzeigen zu können. +Dieser Text füllt die Seite um die Section "target" oben anzeigen zu können. +Dieser Text füllt die Seite um die Section "target" oben anzeigen zu können. +Dieser Text füllt die Seite um die Section "target" oben anzeigen zu können. +Dieser Text füllt die Seite um die Section "target" oben anzeigen zu können. +Dieser Text füllt die Seite um die Section "target" oben anzeigen zu können. +Dieser Text füllt die Seite um die Section "target" oben anzeigen zu können. +Dieser Text füllt die Seite um die Section "target" oben anzeigen zu können. +Dieser Text füllt die Seite um die Section "target" oben anzeigen zu können. +Dieser Text füllt die Seite um die Section "target" oben anzeigen zu können. +Dieser Text füllt die Seite um die Section "target" oben anzeigen zu können. +Dieser Text füllt die Seite um die Section "target" oben anzeigen zu können. +Dieser Text füllt die Seite um die Section "target" oben anzeigen zu können. +Dieser Text füllt die Seite um die Section "target" oben anzeigen zu können. +Dieser Text füllt die Seite um die Section "target" oben anzeigen zu können. +Dieser Text füllt die Seite um die Section "target" oben anzeigen zu können. +Dieser Text füllt die Seite um die Section "target" oben anzeigen zu können. +Dieser Text füllt die Seite um die Section "target" oben anzeigen zu können. +Dieser Text füllt die Seite um die Section "target" oben anzeigen zu können. +Dieser Text füllt die Seite um die Section "target" oben anzeigen zu können. +Dieser Text füllt die Seite um die Section "target" oben anzeigen zu können. +
+ +Diese Section zeigt einen Link der durch Einfügen der "linkvar" Variable aus subfolder/anotherpage.xhp erzeugt wurde. + +
+ +
diff --git a/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/de/com.foocorp.foo-ext/page2.xhp b/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/de/com.foocorp.foo-ext/page2.xhp new file mode 100644 index 000000000..9cafd0aaa --- /dev/null +++ b/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/de/com.foocorp.foo-ext/page2.xhp @@ -0,0 +1,44 @@ + + + + + +DE Extension foo page2 DE +/com.foocorp.foo-ext/page2.xhp + + + + +Foo Alle Seiten;page2 + +DE Extension foo page2 DE +Dies ist "page2" der Extension foo Hilfe. +Einige Links... + +Dies ist ein Link zu einer Sektion in "page1". + +Dies ist ein Link zu einer Hilfe-Seite in der installierten Hilfe. +
+ +Diese Section zeigt einen Link der durch Einfügen der "linkvar" Variable aus subfolder/anotherpage.xhp erzeugt wurde. + + +
+ +
diff --git a/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/de/com.foocorp.foo-ext/subfolder/anotherpage.xhp b/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/de/com.foocorp.foo-ext/subfolder/anotherpage.xhp new file mode 100644 index 000000000..1a8c29f4d --- /dev/null +++ b/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/de/com.foocorp.foo-ext/subfolder/anotherpage.xhp @@ -0,0 +1,117 @@ + + + + + +DE Extension foo subfolder/anotherpage DE +/com.foocorp.foo-ext/subfolder/anotherpage.xhp + + + + +Foo Alle Seiten;subfolder/anotherpage + +DE Extension foo subfolder/anotherpage DE +Dies ist subfolder/anotherpage der Extension foo Hilfe. +Comment at end of paragraph + + +Hier klicken, um den eindrucksvollen Foo Dialog zu öffnen + +Hilfe für den Foo Dialog +Der Foo Dialog ist ein sehr wichtiger Dialog, der... + + + +Dieser Knopf bringt es! +Hilfe für den "Do It !" Knopf +Der "Do It !" Knopf tut es! +Etwas fülltext +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Dieser Text füllt die Seite. +Variable, die einen Link definiert + + +Link zu page2, definert als variable in subfolder/anotherpage.xhp + + + + diff --git a/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/en/com.foocorp.foo-ext/page1.xhp b/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/en/com.foocorp.foo-ext/page1.xhp new file mode 100644 index 000000000..5cbaf7cce --- /dev/null +++ b/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/en/com.foocorp.foo-ext/page1.xhp @@ -0,0 +1,90 @@ + + + + + +Extension foo page1 +/com.foocorp.foo-ext/page1.xhp + + + + +Foo Single level entry page1 +Foo All Pages;page1 + + +Foo Single level entry page1, swriter/sdraw only + +Extension foo page1 +This is "page1" of extension foo help. +Comment at end of paragraph +Some links... +Some links... + +This is a link to "page2" of extension foo help. + +This is a link to a section within a help file (down in this file, but can be in another file as well). + +This is a link to a help page in the installed help. +Some fill text +I like fill text. I like fill text. I like fill text. +I like fill text. I like fill text. I like fill text. +I like fill text. I like fill text. I like fill text. +I like fill text. I like fill text. I like fill text. +I like fill text. I like fill text. I like fill text. +I like fill text. I like fill text. I like fill text. +
+Section "target" + +This is a section within the file page1.xhp. The section has the name "target". + +
+Some more fill text +This text fills the page allowing to show section "target" at the top. +This text fills the page allowing to show section "target" at the top. +This text fills the page allowing to show section "target" at the top. +This text fills the page allowing to show section "target" at the top. +This text fills the page allowing to show section "target" at the top. +This text fills the page allowing to show section "target" at the top. +This text fills the page allowing to show section "target" at the top. +This text fills the page allowing to show section "target" at the top. +This text fills the page allowing to show section "target" at the top. +This text fills the page allowing to show section "target" at the top. +This text fills the page allowing to show section "target" at the top. +This text fills the page allowing to show section "target" at the top. +This text fills the page allowing to show section "target" at the top. +This text fills the page allowing to show section "target" at the top. +This text fills the page allowing to show section "target" at the top. +This text fills the page allowing to show section "target" at the top. +This text fills the page allowing to show section "target" at the top. +This text fills the page allowing to show section "target" at the top. +This text fills the page allowing to show section "target" at the top. +This text fills the page allowing to show section "target" at the top. +This text fills the page allowing to show section "target" at the top. +This text fills the page allowing to show section "target" at the top. +This text fills the page allowing to show section "target" at the top. +This text fills the page allowing to show section "target" at the top. +This text fills the page allowing to show section "target" at the top. +
+ +This section shows a link created by embedding the "linkvar" variable defined in subfolder/anotherpage.xhp. + +
+ +
diff --git a/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/en/com.foocorp.foo-ext/page2.xhp b/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/en/com.foocorp.foo-ext/page2.xhp new file mode 100644 index 000000000..66b3156de --- /dev/null +++ b/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/en/com.foocorp.foo-ext/page2.xhp @@ -0,0 +1,43 @@ + + + + + +Extension foo page2 +/com.foocorp.foo-ext/page2.xhp + + + + +Foo All Pages;page2 + +Extension foo page2 +This is "page2" of extension foo help. +Some links... + +This is a link to a section within page1. + +This is a link to a file of the already installed help. +
+ +This section shows a link created by embedding the "linkvar" variable defined in subfolder/anotherpage.xhp. + +
+ +
diff --git a/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/en/com.foocorp.foo-ext/subfolder/anotherpage.xhp b/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/en/com.foocorp.foo-ext/subfolder/anotherpage.xhp new file mode 100644 index 000000000..30a31a720 --- /dev/null +++ b/odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/en/com.foocorp.foo-ext/subfolder/anotherpage.xhp @@ -0,0 +1,117 @@ + + + + + +Extension foo subfolder/anotherpage +/com.foocorp.foo-ext/subfolder/anotherpage.xhp + + + + +Foo All Pages;subfolder/anotherpage + +Extension foo subfolder/anotherpage +This is subfolder/anotherpage of extension foo help. +Comment at end of paragraph + + +Click here to open the impressing Foo Dialog + +Help for the Foo Dialog +The Foo Dialog is a very important dialog that... + + + +This button really does it!! +Help for the "Do It !" button +The "Do It !" button does it! +Some fill text +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +This text fills the page. +Variable defining a link + + +Link to page2 defined as variable in subfolder/anotherpage.xhp + + + + -- cgit v1.2.3