summaryrefslogtreecommitdiff
path: root/wizards/source/scriptforge/SF_Session.xba
diff options
context:
space:
mode:
Diffstat (limited to 'wizards/source/scriptforge/SF_Session.xba')
-rw-r--r--wizards/source/scriptforge/SF_Session.xba16
1 files changed, 8 insertions, 8 deletions
diff --git a/wizards/source/scriptforge/SF_Session.xba b/wizards/source/scriptforge/SF_Session.xba
index dc15fe72c04a..d65512823406 100644
--- a/wizards/source/scriptforge/SF_Session.xba
+++ b/wizards/source/scriptforge/SF_Session.xba
@@ -13,7 +13,7 @@ Option Explicit
''' ==========
''' Singleton class implementing the "ScriptForge.Session" service
''' Implemented as a usual Basic module
-'''
+'''
''' Gathers diverse general-purpose properties and methods about :
''' - installation/execution environment
''' - UNO introspection utilities
@@ -138,7 +138,7 @@ Public Function ExecuteBasicScript(Optional ByVal Scope As Variant _
''' library => The library may be not loaded yet
''' module => Must not be a class module
''' method => Sub or Function
-''' Read https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Scripting_Framework_URI_Specification
+''' Read https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification
''' pvArgs: the arguments of the called script
''' Returns:
''' The value returned by the call to the script
@@ -253,7 +253,7 @@ Public Function ExecutePythonScript(Optional ByVal Scope As Variant _
''' myScript => The directory containing the python module
''' module.py => The python module
''' method => The python function
-''' Read https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Scripting_Framework_URI_Specification
+''' Read https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification
''' pvArgs: the arguments of the called script
''' Date arguments are converted to iso format. However dates in arrays are not converted
''' Returns:
@@ -323,7 +323,7 @@ Public Function GetPDFExportOptions() As Variant
''' Return the actual values of the PDF export options
''' The PDF options are described on https://wiki.openoffice.org/wiki/API/Tutorials/PDF_export
''' PDF options are set at each use of the Export as ... PDF command by the user and kept
-''' permanently until their reset by script or by a new export
+''' permanently until their reset by script or by a new export
''' Args:
''' Returns:
''' A ScriptForge dictionary instance listing the 40+ properties and their value
@@ -703,7 +703,7 @@ Try:
' Send using the mail service
oMail.sendSimpleMailMessage(oMessage, lFlag)
-
+
Finally:
SF_Utils._ExitFunction(cstThisSub)
Exit Sub
@@ -767,7 +767,7 @@ Try:
Set oDict = PDFOptions
oOptions.setPropertyValues(oDict.Keys, oDict.Items)
oOptions.commitChanges()
-
+
bSetPDF = True
Finally:
@@ -990,7 +990,7 @@ Private Function _ExecuteScript(ByVal psScript As String _
) As Variant
''' Execute the script expressed in the scripting framework_URI notation
''' Args:
-''' psScript: read https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Scripting_Framework_URI_Specification
+''' psScript: read https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification
''' pvArg: the unique argument to pass to the called script.
''' It is often an event object that triggered the execution of the script.
''' Returns:
@@ -1035,7 +1035,7 @@ Private Function _GetScript(ByVal psLanguage As String _
''' The SCRIPTISOXT constant is an alias for 2 cases, extension either
''' installed for one user only, or for all users
''' Managed here by trial and error
-''' psScript: Read https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Scripting_Framework_URI_Specification
+''' psScript: Read https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification
''' Returns:
''' A com.sun.star.script.provider.XScript object