Update remaining DevGuide wiki links.
My Kate editor decided to do some whitespace cleanup, but maybe it's fine as the main changes are not targeting functional bits anyway. Change-Id: I5292e77e43055f94a6256a7f72d49fd59287d194 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132928 Tested-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
This commit is contained in:
parent
c7970e3204
commit
e568c9dca8
16 changed files with 222 additions and 222 deletions
|
@ -19,7 +19,7 @@ You can develop for LibreOffice in one of two ways, one
|
|||
recommended and one much less so. First the somewhat less recommended
|
||||
way: it is possible to use the SDK to develop an extension,
|
||||
for which you can read the API docs [here](https://api.libreoffice.org/)
|
||||
and [here](https://wiki.openoffice.org/wiki/Documentation/DevGuide).
|
||||
and [here](https://wiki.documentfoundation.org/Documentation/DevGuide).
|
||||
This re-uses the (extremely generic) UNO APIs that are also used by
|
||||
macro scripting in StarBasic.
|
||||
|
||||
|
|
|
@ -452,7 +452,7 @@ T OResultSet::retrieveValue(const sal_Int32 nColumnIndex, const ISC_SHORT nType)
|
|||
template <>
|
||||
ORowSetValue OResultSet::retrieveValue(const sal_Int32 nColumnIndex, const ISC_SHORT /*nType*/)
|
||||
{
|
||||
// See http://wiki.openoffice.org/wiki/Documentation/DevGuide/Database/Using_the_getXXX_Methods
|
||||
// See https://wiki.documentfoundation.org/Documentation/DevGuide/Database_Access#Using_the_getXXX_Methods
|
||||
// (bottom of page) for a chart of possible conversions, we should allow all
|
||||
// of these -- Blob/Clob will probably need some specialist handling especially
|
||||
// w.r.t. to generating Strings for them.
|
||||
|
|
|
@ -210,10 +210,10 @@ sal_Int32 DatabaseMetaData::getDriverMinorVersion( )
|
|||
sal_Bool DatabaseMetaData::usesLocalFiles( )
|
||||
{
|
||||
// LEM TODO:
|
||||
// http://wiki.openoffice.org/wiki/Documentation/DevGuide/Database/XDatabaseMetaData_Interface
|
||||
// https://wiki.documentfoundation.org/Documentation/DevGuide/Database_Access#XDatabaseMetaData_Interface
|
||||
// says "Returns true when the catalog name of the
|
||||
// database should not appear in the DatasourceBrowser
|
||||
// of OpenOffice.org API, otherwise false is returned."
|
||||
// of LibreOffice API, otherwise false is returned."
|
||||
// So, hmmm, think about it.
|
||||
return false;
|
||||
}
|
||||
|
@ -310,8 +310,8 @@ OUString DatabaseMetaData::getSQLKeywords( )
|
|||
}
|
||||
OUString DatabaseMetaData::getNumericFunctions( )
|
||||
{
|
||||
// See http://www.postgresql.org/docs/9.1/static/functions-math.html
|
||||
// LEM TODO: Err... http://wiki.openoffice.org/wiki/Documentation/DevGuide/Database/Support_Scalar_Functions
|
||||
// See https://www.postgresql.org/docs/9.1/static/functions-math.html
|
||||
// LEM TODO: Err... https://wiki.documentfoundation.org/Documentation/DevGuide/Database_Access#Support_Scalar_Functions
|
||||
// says this should be "Open Group CLI" names, not PostgreSQL names.
|
||||
// Currently this is just a list of supported functions in PostgreSQL, with PostgreSQL names.
|
||||
// And it is my job to map from Open Group CLI names/syntax to PostgreSQL names/syntax. Where? By parsing the SQL???
|
||||
|
|
|
@ -107,7 +107,7 @@ u"\n"
|
|||
" <context>\n"
|
||||
"\n"
|
||||
"To learn more about the Extension Manager and extensions, see:\n"
|
||||
"http://wiki.openoffice.org/wiki/Documentation/DevGuide/Extensions/Extensions\n\n";
|
||||
"https://wiki.documentfoundation.org/Documentation/DevGuide/Extensions\n\n";
|
||||
|
||||
|
||||
const OptionInfo s_option_infos [] = {
|
||||
|
|
|
@ -4,5 +4,5 @@ This is how StarBasic handles events.
|
|||
|
||||
## See Also
|
||||
|
||||
- <https://wiki.openoffice.org/wiki/Documentation/DevGuide/Forms/Programmatic_Assignment_of_Scripts_to_Events>
|
||||
- <https://wiki.openoffice.org/wiki/Documentation/DevGuide/Forms/Scripting_and_Events>
|
||||
- <https://wiki.documentfoundation.org/Documentation/DevGuide/Forms#Programmatic_Assignment_of_Scripts_to_Events>
|
||||
- <https://wiki.documentfoundation.org/Documentation/DevGuide/Forms#Scripting_and_Events>
|
||||
|
|
|
@ -59,8 +59,8 @@ static sal_Int64 existMarkOffset = 0;
|
|||
All dictionary searching and loading is performed in the xdictionary class.
|
||||
The only thing you need to do is to derive your class from BreakIterator_CJK
|
||||
and create an instance of the xdictionary with the language name and
|
||||
pass it to the parent class." (from http://wiki.openoffice.org/wiki/
|
||||
/Documentation/DevGuide/OfficeDev/Implementing_a_New_Locale - 27/01/2011)
|
||||
pass it to the parent class." (from https://wiki.documentfoundation.org/
|
||||
Documentation/DevGuide/Office_Development#Implementing_a_New_Locale - 27/01/2011)
|
||||
*/
|
||||
|
||||
// C-standard guarantees that static variables are automatically initialized to 0
|
||||
|
|
|
@ -19,7 +19,7 @@ well as TLS 1.2 or later.
|
|||
Our WebDAV `com.sun.star.ucb.ContentProvider` service implementation
|
||||
registers the `vnd.sun.star.webdav` and `http` URI schemes (and their
|
||||
encrypted TLS variants). See here for the specification:
|
||||
https://wiki.openoffice.org/wiki/Documentation/DevGuide/AppendixC/The_WebDAV_Content_Provider
|
||||
https://wiki.documentfoundation.org/Documentation/DevGuide/Universal_Content_Providers#The_WebDAV_Content_Provider
|
||||
|
||||
Historically, webdav had two ucps, one based on `neon`, the second one
|
||||
based on `serf`. Both are superseded by the current `libcurl`
|
||||
|
|
|
@ -1642,8 +1642,8 @@ Private Function _OutputToCalc(poData As Object _
|
|||
, ByVal psFilter As String _
|
||||
, Optional ByVal plEncoding As Long _
|
||||
) As Boolean
|
||||
' https://wiki.openoffice.org/wiki/Documentation/DevGuide/Spreadsheets/Database_Import
|
||||
' https://wiki.openoffice.org/wiki/Documentation/DevGuide/Spreadsheets/Filter_Options
|
||||
' https://wiki.documentfoundation.org/Documentation/DevGuide/Spreadsheet_Documents#Database_Import
|
||||
' https://wiki.documentfoundation.org/Documentation/DevGuide/Spreadsheet_Documents#Filter_Options
|
||||
|
||||
Dim oCalcDoc As Object, oSheet As Object, vWin As Variant
|
||||
Dim vImportDesc() As Variant, iSource As Integer
|
||||
|
|
|
@ -1311,7 +1311,7 @@ Public Function OutputTo(ByVal pvObjectType As Variant _
|
|||
, ByVal Optional pvQuality As Variant _
|
||||
) As Boolean
|
||||
REM https://wiki.openoffice.org/wiki/Framework/Article/Filter/FilterList_OOo_3_0
|
||||
REM https://wiki.openoffice.org/wiki/Documentation/DevGuide/Spreadsheets/Filter_Options
|
||||
REM https://wiki.documentfoundation.org/Documentation/DevGuide/Spreadsheet_Documents#Filter_Options
|
||||
REM https://msdn.microsoft.com/en-us/library/ms709353%28v=vs.85%29.aspx
|
||||
'Supported: acFormatPDF, acFormatODT, acFormatDOC, acFormatHTML for forms
|
||||
' acFormatHTML, acFormatODS, acFormatXLS, acFormatXLSX, acFormatTXT for tables and queries
|
||||
|
|
|
@ -276,7 +276,7 @@ End Function
|
|||
REM -----------------------------------------------------------------------------------------------------------------------
|
||||
Private Function _ExtensionLocation() As String
|
||||
' Return the URL pointing to the location where OO installed the Access2Base extension
|
||||
' Adapted from http://wiki.services.openoffice.org/wiki/Documentation/DevGuide/Extensions/Location_of_Installed_Extensions
|
||||
' Adapted from https://wiki.documentfoundation.org/Documentation/DevGuide/Extensions#Location_of_Installed_Extensions
|
||||
|
||||
Dim oPip As Object, sLocation As String
|
||||
Set oPip = GetDefaultContext.getByName("/singletons/com.sun.star.deployment.PackageInformationProvider")
|
||||
|
|
|
@ -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:
|
||||
|
@ -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
|
||||
|
||||
|
|
|
@ -212,7 +212,7 @@ class ScriptForge(object, metaclass = _Singleton):
|
|||
fullscript = script
|
||||
paramarray = True
|
||||
# Build the URI specification described in
|
||||
# https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Scripting_Framework_URI_Specification
|
||||
# https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification
|
||||
elif len(script) > 0:
|
||||
# Check ParamArray arguments
|
||||
paramarray = False
|
||||
|
|
|
@ -1730,7 +1730,7 @@ Public Function ImportFromCSVFile(Optional ByVal FileName As Variant _
|
|||
''' DestinationCell: the destination of the copied range of cells, as a string
|
||||
''' If given as range, the destination will be reduced to its top-left cell
|
||||
''' FilterOptions: The arguments of the CSV input filter.
|
||||
''' Read https://wiki.openoffice.org/wiki/Documentation/DevGuide/Spreadsheets/Filter_Options#Filter_Options_for_the_CSV_Filter
|
||||
''' Read https://wiki.documentfoundation.org/Documentation/DevGuide/Spreadsheet_Documents#Filter_Options_for_the_CSV_Filter
|
||||
''' Default: input file encoding is UTF8
|
||||
''' separator = comma, semi-colon or tabulation
|
||||
''' string delimiter = double quote
|
||||
|
|
|
@ -1300,7 +1300,7 @@ Dim sFilter As String ' A single filter name
|
|||
Dim iCount As Integer ' Filters counter
|
||||
Dim vFilter As Variant ' A filter descriptor as an array of Name/Value pairs
|
||||
Dim sType As String ' The filter type to be compared with the document service
|
||||
Dim lFlags As Long ' Read https://wiki.openoffice.org/wiki/Documentation/DevGuide/OfficeDev/Properties_of_a_Filter
|
||||
Dim lFlags As Long ' Read https://wiki.documentfoundation.org/Documentation/DevGuide/Office_Development#Properties_of_a_Filter
|
||||
Dim bExport As Boolean ' Filter valid for export when True
|
||||
Dim bImport As Boolean ' Filter valid for import when True
|
||||
Dim bImportExport As Boolean ' Filter valid both for import and export when True
|
||||
|
|
|
@ -293,7 +293,7 @@ Public Function _GetEventScriptCode(poObject As Object _
|
|||
''' psName: the name of the object to be identified from the parent object
|
||||
''' Returns:
|
||||
''' The script to trigger when psEvent occurs
|
||||
''' See Scripting Framework URI Specification : https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Scripting_Framework_URI_Specification
|
||||
''' See Scripting Framework URI Specification : https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification
|
||||
|
||||
Dim vEvents As Variant ' List of available events in the parent object
|
||||
' Array of com.sun.star.script.ScriptEventDescriptor
|
||||
|
@ -490,7 +490,7 @@ Public Function _RegisterEventScript(poObject As Object _
|
|||
''' psEvent: the "On..." name of the event
|
||||
''' psListener: the listener name corresponding with the event
|
||||
''' psScriptCode: The script to trigger when psEvent occurs
|
||||
''' See Scripting Framework URI Specification : https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Scripting_Framework_URI_Specification
|
||||
''' See Scripting Framework URI Specification : https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification
|
||||
''' psName: the name of the object to associate with the event
|
||||
''' Returns:
|
||||
''' True when successful
|
||||
|
|
|
@ -173,7 +173,7 @@ Public Function AddCheckBox(Optional ByVal MenuItem As Variant _
|
|||
''' Tooltip: The help text to be displayed as a tooltip
|
||||
''' Command: A menu command like ".uno:About". The validity of the command is not checked.
|
||||
''' Script: a Basic or Python script (determined by its URI notation) to be run when the item is clicked
|
||||
''' 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
|
||||
''' Next string argument will be passed to the called script : a comma-separated string of 4 components:
|
||||
''' - the menu header
|
||||
''' - the name of the clicked menu item
|
||||
|
@ -254,7 +254,7 @@ Public Function AddItem(Optional ByVal MenuItem As Variant _
|
|||
''' Tooltip: The help text to be displayed as a tooltip
|
||||
''' Command: A menu command like ".uno:About". The validity of the command is not checked.
|
||||
''' Script: a Basic or Python script (determined by its URI notation) to be run when the item is clicked
|
||||
''' 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
|
||||
''' Next string argument will be passed to the called script : a comma-separated string of 4 components:
|
||||
''' - the menu header
|
||||
''' - the name of the clicked menu item
|
||||
|
@ -335,7 +335,7 @@ Public Function AddRadioButton(Optional ByVal MenuItem As Variant _
|
|||
''' Tooltip: The help text to be displayed as a tooltip
|
||||
''' Command: A menu command like ".uno:About". The validity of the command is not checked.
|
||||
''' Script: a Basic or Python script (determined by its URI notation) to be run when the item is clicked
|
||||
''' 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
|
||||
''' Next string argument will be passed to the called script : a comma-separated string of 4 components:
|
||||
''' - the menu header
|
||||
''' - the name of the clicked menu item
|
||||
|
|
Loading…
Reference in a new issue