diff options
author | dennisroczek <dennisroczek@libreoffice.org> | 2018-04-02 15:11:58 +0100 |
---|---|---|
committer | Adolfo Jayme Barrientos <fitojb@ubuntu.com> | 2018-04-02 22:25:53 +0200 |
commit | e39c75b05c9ff865768e7f2694e5369cc35aa23b (patch) | |
tree | 5c1a1e759d22354c2964b86c78da564d866af639 /odk | |
parent | 91af9a53df79d256dc6a02c900fa570fe10d63ad (diff) |
use https links for api.libreoffice.org and opengrok
Change-Id: I74dd0142562cb8698f19b2715fa1d514f82bd749
Reviewed-on: https://gerrit.libreoffice.org/52262
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
Diffstat (limited to 'odk')
-rw-r--r-- | odk/CustomTarget_html.mk | 10 | ||||
-rw-r--r-- | odk/README | 2 | ||||
-rw-r--r-- | odk/examples/java/Inspector/UnoNode.java | 2 | ||||
-rw-r--r-- | odk/examples/java/Spreadsheet/CalcAddins.java | 2 |
4 files changed, 8 insertions, 8 deletions
diff --git a/odk/CustomTarget_html.mk b/odk/CustomTarget_html.mk index bcbf954a8fe2..ba3b55b7c271 100644 --- a/odk/CustomTarget_html.mk +++ b/odk/CustomTarget_html.mk @@ -20,11 +20,11 @@ $(eval $(call gb_CustomTarget_register_targets,odk/html,\ $(call gb_CustomTarget_get_workdir,odk/html)/%.html : $(SRCDIR)/odk/%.html $(call gb_Output_announce,$*.html,$(true),SED,1) sed -e 's|%PRODUCT_RELEASE%|$(PRODUCTVERSION)|g' \ - -e 's|%DOXYGEN_PREFIX0%|$(if $(DOXYGEN),.,http://api.libreoffice.org)|g' \ - -e 's|%DOXYGEN_PREFIX1%|$(if $(DOXYGEN),..,http://api.libreoffice.org)|g' \ - -e 's|%DOXYGEN_PREFIX2%|$(if $(DOXYGEN),../..,http://api.libreoffice.org)|g' \ - -e 's|%JAVADOC_PREFIX0%|$(if $(ENABLE_JAVA),.,http://api.libreoffice.org)|g' \ - -e 's|%JAVADOC_PREFIX1%|$(if $(ENABLE_JAVA),..,http://api.libreoffice.org)|g' \ + -e 's|%DOXYGEN_PREFIX0%|$(if $(DOXYGEN),.,https://api.libreoffice.org)|g' \ + -e 's|%DOXYGEN_PREFIX1%|$(if $(DOXYGEN),..,https://api.libreoffice.org)|g' \ + -e 's|%DOXYGEN_PREFIX2%|$(if $(DOXYGEN),../..,https://api.libreoffice.org)|g' \ + -e 's|%JAVADOC_PREFIX0%|$(if $(ENABLE_JAVA),.,https://api.libreoffice.org)|g' \ + -e 's|%JAVADOC_PREFIX1%|$(if $(ENABLE_JAVA),..,https://api.libreoffice.org)|g' \ < $< > $@ # vim: set noet sw=4 ts=4: diff --git a/odk/README b/odk/README index dad77b28f637..5a8dd16f7bdd 100644 --- a/odk/README +++ b/odk/README @@ -6,7 +6,7 @@ Part of the SDK; to build you need to add --enable-odk. Testing the examples: ===================== -* See <http://api.libreoffice.org/docs/install.html> how to set up the SDK. +* See <https://api.libreoffice.org/docs/install.html> how to set up the SDK. ** When asked about it during configuration, tell the SDK to do automatic deployment of the example extensions that get built. diff --git a/odk/examples/java/Inspector/UnoNode.java b/odk/examples/java/Inspector/UnoNode.java index 08c04cc308cb..0e72d1efdbd0 100644 --- a/odk/examples/java/Inspector/UnoNode.java +++ b/odk/examples/java/Inspector/UnoNode.java @@ -128,7 +128,7 @@ public class UnoNode{ String sAnchor = ""; // TODO find out how the Anchor may be set at the html file; //_sAnchor; boolean bExists = Introspector.getIntrospector().getXSimpleFileAccess().exists(sIDLUrl); if (sIDLUrl.equals("") || (!bExists)){ - sIDLUrl = "http://api.libreoffice.org/" + Inspector.sIDLDOCUMENTSUBFOLDER; + sIDLUrl = "https://api.libreoffice.org/" + Inspector.sIDLDOCUMENTSUBFOLDER; } if (!sIDLUrl.endsWith("/")){ sIDLUrl += "/"; diff --git a/odk/examples/java/Spreadsheet/CalcAddins.java b/odk/examples/java/Spreadsheet/CalcAddins.java index c158a39457f6..37785056e5c7 100644 --- a/odk/examples/java/Spreadsheet/CalcAddins.java +++ b/odk/examples/java/Spreadsheet/CalcAddins.java @@ -37,7 +37,7 @@ /** You can find more * information on the following web page: - * http://api.libreoffice.org/ + * https://api.libreoffice.org/ */ import com.sun.star.comp.loader.FactoryHelper; import com.sun.star.lang.XMultiServiceFactory; |