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:
Ilmari Lauhakangas 2022-04-12 18:32:29 +03:00
parent c7970e3204
commit e568c9dca8
16 changed files with 222 additions and 222 deletions

View file

@ -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.

View file

@ -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.

View file

@ -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???

View file

@ -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 [] = {

View file

@ -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>

View file

@ -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

View file

@ -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`

View file

@ -1642,8 +1642,8 @@ Private Function _OutputToCalc(poData As Object _
, ByVal psFilter As String _
, Optional ByVal plEncoding As Long _
) As Boolean
&apos; https://wiki.openoffice.org/wiki/Documentation/DevGuide/Spreadsheets/Database_Import
&apos; https://wiki.openoffice.org/wiki/Documentation/DevGuide/Spreadsheets/Filter_Options
&apos; https://wiki.documentfoundation.org/Documentation/DevGuide/Spreadsheet_Documents#Database_Import
&apos; 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

View file

@ -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
&apos;Supported: acFormatPDF, acFormatODT, acFormatDOC, acFormatHTML for forms
&apos; acFormatHTML, acFormatODS, acFormatXLS, acFormatXLSX, acFormatTXT for tables and queries

View file

@ -276,7 +276,7 @@ End Function
REM -----------------------------------------------------------------------------------------------------------------------
Private Function _ExtensionLocation() As String
&apos; Return the URL pointing to the location where OO installed the Access2Base extension
&apos; Adapted from http://wiki.services.openoffice.org/wiki/Documentation/DevGuide/Extensions/Location_of_Installed_Extensions
&apos; Adapted from https://wiki.documentfoundation.org/Documentation/DevGuide/Extensions#Location_of_Installed_Extensions
Dim oPip As Object, sLocation As String
Set oPip = GetDefaultContext.getByName(&quot;/singletons/com.sun.star.deployment.PackageInformationProvider&quot;)

View file

@ -138,7 +138,7 @@ Public Function ExecuteBasicScript(Optional ByVal Scope As Variant _
&apos;&apos;&apos; library =&gt; The library may be not loaded yet
&apos;&apos;&apos; module =&gt; Must not be a class module
&apos;&apos;&apos; method =&gt; Sub or Function
&apos;&apos;&apos; Read https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Scripting_Framework_URI_Specification
&apos;&apos;&apos; Read https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification
&apos;&apos;&apos; pvArgs: the arguments of the called script
&apos;&apos;&apos; Returns:
&apos;&apos;&apos; The value returned by the call to the script
@ -253,7 +253,7 @@ Public Function ExecutePythonScript(Optional ByVal Scope As Variant _
&apos;&apos;&apos; myScript =&gt; The directory containing the python module
&apos;&apos;&apos; module.py =&gt; The python module
&apos;&apos;&apos; method =&gt; The python function
&apos;&apos;&apos; Read https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Scripting_Framework_URI_Specification
&apos;&apos;&apos; Read https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification
&apos;&apos;&apos; pvArgs: the arguments of the called script
&apos;&apos;&apos; Date arguments are converted to iso format. However dates in arrays are not converted
&apos;&apos;&apos; Returns:
@ -990,7 +990,7 @@ Private Function _ExecuteScript(ByVal psScript As String _
) As Variant
&apos;&apos;&apos; Execute the script expressed in the scripting framework_URI notation
&apos;&apos;&apos; Args:
&apos;&apos;&apos; psScript: read https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Scripting_Framework_URI_Specification
&apos;&apos;&apos; psScript: read https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification
&apos;&apos;&apos; pvArg: the unique argument to pass to the called script.
&apos;&apos;&apos; It is often an event object that triggered the execution of the script.
&apos;&apos;&apos; Returns:
@ -1035,7 +1035,7 @@ Private Function _GetScript(ByVal psLanguage As String _
&apos;&apos;&apos; The SCRIPTISOXT constant is an alias for 2 cases, extension either
&apos;&apos;&apos; installed for one user only, or for all users
&apos;&apos;&apos; Managed here by trial and error
&apos;&apos;&apos; psScript: Read https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Scripting_Framework_URI_Specification
&apos;&apos;&apos; psScript: Read https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification
&apos;&apos;&apos; Returns:
&apos;&apos;&apos; A com.sun.star.script.provider.XScript object

View file

@ -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

View file

@ -1730,7 +1730,7 @@ Public Function ImportFromCSVFile(Optional ByVal FileName As Variant _
&apos;&apos;&apos; DestinationCell: the destination of the copied range of cells, as a string
&apos;&apos;&apos; If given as range, the destination will be reduced to its top-left cell
&apos;&apos;&apos; FilterOptions: The arguments of the CSV input filter.
&apos;&apos;&apos; Read https://wiki.openoffice.org/wiki/Documentation/DevGuide/Spreadsheets/Filter_Options#Filter_Options_for_the_CSV_Filter
&apos;&apos;&apos; Read https://wiki.documentfoundation.org/Documentation/DevGuide/Spreadsheet_Documents#Filter_Options_for_the_CSV_Filter
&apos;&apos;&apos; Default: input file encoding is UTF8
&apos;&apos;&apos; separator = comma, semi-colon or tabulation
&apos;&apos;&apos; string delimiter = double quote

View file

@ -1300,7 +1300,7 @@ Dim sFilter As String &apos; A single filter name
Dim iCount As Integer &apos; Filters counter
Dim vFilter As Variant &apos; A filter descriptor as an array of Name/Value pairs
Dim sType As String &apos; The filter type to be compared with the document service
Dim lFlags As Long &apos; Read https://wiki.openoffice.org/wiki/Documentation/DevGuide/OfficeDev/Properties_of_a_Filter
Dim lFlags As Long &apos; Read https://wiki.documentfoundation.org/Documentation/DevGuide/Office_Development#Properties_of_a_Filter
Dim bExport As Boolean &apos; Filter valid for export when True
Dim bImport As Boolean &apos; Filter valid for import when True
Dim bImportExport As Boolean &apos; Filter valid both for import and export when True

View file

@ -293,7 +293,7 @@ Public Function _GetEventScriptCode(poObject As Object _
&apos;&apos;&apos; psName: the name of the object to be identified from the parent object
&apos;&apos;&apos; Returns:
&apos;&apos;&apos; The script to trigger when psEvent occurs
&apos;&apos;&apos; See Scripting Framework URI Specification : https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Scripting_Framework_URI_Specification
&apos;&apos;&apos; See Scripting Framework URI Specification : https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification
Dim vEvents As Variant &apos; List of available events in the parent object
&apos; Array of com.sun.star.script.ScriptEventDescriptor
@ -490,7 +490,7 @@ Public Function _RegisterEventScript(poObject As Object _
&apos;&apos;&apos; psEvent: the &quot;On...&quot; name of the event
&apos;&apos;&apos; psListener: the listener name corresponding with the event
&apos;&apos;&apos; psScriptCode: The script to trigger when psEvent occurs
&apos;&apos;&apos; See Scripting Framework URI Specification : https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Scripting_Framework_URI_Specification
&apos;&apos;&apos; See Scripting Framework URI Specification : https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification
&apos;&apos;&apos; psName: the name of the object to associate with the event
&apos;&apos;&apos; Returns:
&apos;&apos;&apos; True when successful

View file

@ -173,7 +173,7 @@ Public Function AddCheckBox(Optional ByVal MenuItem As Variant _
&apos;&apos;&apos; Tooltip: The help text to be displayed as a tooltip
&apos;&apos;&apos; Command: A menu command like &quot;.uno:About&quot;. The validity of the command is not checked.
&apos;&apos;&apos; Script: a Basic or Python script (determined by its URI notation) to be run when the item is clicked
&apos;&apos;&apos; Read https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Scripting_Framework_URI_Specification
&apos;&apos;&apos; Read https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification
&apos;&apos;&apos; Next string argument will be passed to the called script : a comma-separated string of 4 components:
&apos;&apos;&apos; - the menu header
&apos;&apos;&apos; - the name of the clicked menu item
@ -254,7 +254,7 @@ Public Function AddItem(Optional ByVal MenuItem As Variant _
&apos;&apos;&apos; Tooltip: The help text to be displayed as a tooltip
&apos;&apos;&apos; Command: A menu command like &quot;.uno:About&quot;. The validity of the command is not checked.
&apos;&apos;&apos; Script: a Basic or Python script (determined by its URI notation) to be run when the item is clicked
&apos;&apos;&apos; Read https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Scripting_Framework_URI_Specification
&apos;&apos;&apos; Read https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification
&apos;&apos;&apos; Next string argument will be passed to the called script : a comma-separated string of 4 components:
&apos;&apos;&apos; - the menu header
&apos;&apos;&apos; - the name of the clicked menu item
@ -335,7 +335,7 @@ Public Function AddRadioButton(Optional ByVal MenuItem As Variant _
&apos;&apos;&apos; Tooltip: The help text to be displayed as a tooltip
&apos;&apos;&apos; Command: A menu command like &quot;.uno:About&quot;. The validity of the command is not checked.
&apos;&apos;&apos; Script: a Basic or Python script (determined by its URI notation) to be run when the item is clicked
&apos;&apos;&apos; Read https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Scripting_Framework_URI_Specification
&apos;&apos;&apos; Read https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification
&apos;&apos;&apos; Next string argument will be passed to the called script : a comma-separated string of 4 components:
&apos;&apos;&apos; - the menu header
&apos;&apos;&apos; - the name of the clicked menu item