From e39c75b05c9ff865768e7f2694e5369cc35aa23b Mon Sep 17 00:00:00 2001 From: dennisroczek Date: Mon, 2 Apr 2018 15:11:58 +0100 Subject: use https links for api.libreoffice.org and opengrok Change-Id: I74dd0142562cb8698f19b2715fa1d514f82bd749 Reviewed-on: https://gerrit.libreoffice.org/52262 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos --- odk/CustomTarget_html.mk | 10 +++++----- odk/README | 2 +- odk/examples/java/Inspector/UnoNode.java | 2 +- odk/examples/java/Spreadsheet/CalcAddins.java | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) (limited to 'odk') 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 how to set up the SDK. +* See 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; -- cgit