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>
This commit is contained in:
dennisroczek
2018-04-02 15:11:58 +01:00
committed by Adolfo Jayme Barrientos
parent 91af9a53df
commit e39c75b05c
16 changed files with 29 additions and 29 deletions

View File

@@ -20,7 +20,7 @@
these classes and the OpenOffice.org API, see the OpenOffice.org
Developers Guide at:
http://api.libreoffice.org/
https://api.libreoffice.org/
*/
import com.sun.star.uno.UnoRuntime;
@@ -34,7 +34,7 @@ import com.sun.star.frame.XModel;
variable can be used to access the document for which this script
was invoked.
Methods available are:
Methods available are:
XSCRIPTCONTEXT.getDocument() returns XModel
XSCRIPTCONTEXT.getInvocationContext() returns XScriptInvocationContext or NULL
@@ -44,9 +44,9 @@ import com.sun.star.frame.XModel;
For more information on using this class see the scripting
developer guides at:
http://api.libreoffice.org/docs/DevelopersGuide/ScriptingFramework/ScriptingFramework.xhtml
https://api.libreoffice.org/docs/DevelopersGuide/ScriptingFramework/ScriptingFramework.xhtml
*/
// Hello World in BeanShell
import com.sun.star.text.XTextDocument;
import com.sun.star.text.XText;

View File

@@ -19,7 +19,7 @@
// Import standard OpenOffice.org API classes. For more information on
// these classes and the OpenOffice.org API, see the OpenOffice.org
// Developers Guide at:
// http://api.libreoffice.org/
// https://api.libreoffice.org/
importClass(Packages.com.sun.star.uno.UnoRuntime);
importClass(Packages.com.sun.star.text.XTextDocument);
@@ -42,7 +42,7 @@ importClass(Packages.com.sun.star.frame.XModel);
// For more information on using this class see the scripting
// developer guides at:
// http://api.libreoffice.org/docs/DevelopersGuide/ScriptingFramework/ScriptingFramework.xhtml
// https://api.libreoffice.org/docs/DevelopersGuide/ScriptingFramework/ScriptingFramework.xhtml
oDoc = UnoRuntime.queryInterface(XModel,XSCRIPTCONTEXT.getInvocationContext());