summaryrefslogtreecommitdiffstats
path: root/odk
diff options
context:
space:
mode:
Diffstat (limited to 'odk')
-rw-r--r--odk/CustomTarget_html.mk10
-rw-r--r--odk/README2
-rw-r--r--odk/examples/java/Inspector/UnoNode.java2
-rw-r--r--odk/examples/java/Spreadsheet/CalcAddins.java2
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;