summaryrefslogtreecommitdiff
path: root/wizards
AgeCommit message (Collapse)Author
22 hoursScriptForge (UI) review progress bar terminationJean-Pierre Ledure
Idem https://gerrit.libreoffice.org/c/core/+/184662 for the progress bar. Change-Id: Ife48d115d3e8acb81fe167a27542783f4ca25d25 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/184665 Reviewed-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jenkins
24 hoursScriptForge Don't watch close button of stored dialogsJean-Pierre Ledure
Dialogs can either be stored in a library or created from scratch. When run in non-modal mode, the closing of a stored dialog with the Close top-right cross is done by LO correctly. When the dialog is created from scratch, a coded XTopWindowListener should do the job. So far, the listener was activated for all dialogs. Additionally the Console is a stored dialog. When closed and relaunched, the processing will now handle the window Close and the built-in Close buttons identically, at least apparently. Change-Id: I29e0881989816fbf7e3e8bd12f59517bde4b3047 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/184662 Reviewed-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jenkins
2025-03-30ScriptForge (SF_Exception) Return codesJean-Pierre Ledure
So far, an exception raised in a user script and detected by ScriptForge gave next behaviour: - an error message was displayed to the user (1) - the same error message was recorded in the console (2) - the execution of the script was stopped (3) The actual commit introduces 4 new properties in the SF_Exception service. Next two boolean properties may optionally change above behaviour: exception.ReportScriptErrors (default = True) exception.StopWhenError (default = True) They may change resp. behaviours (1) and (3). Note that behaviour (2) is preserved anyway. Their values are set until they are set again or until the LO session expires. When StopWhenError is set to False, next two properties allow to test the success of the last call to the ScriptForge API and to define an appropriate action, including the continuation of the process: exception.ReturnCode exception.ReturnCodeDescription Example: exc = CreateScriptService("Exception") fs = CreateScriptService("FileSystem") exc.ReportScriptErrors = False exc.StopWhenError = False fs.OpenTextFile("/aaa/bbb") if exc.ReturnCode = "UNKNOWNFILEERROR": ... The test on the return code must precede any next call to any ScriptForge API entry. The list of the available return codes is listed in the SF_Exception.xba source code. These changes are applicable both for Basic and Python user scripts. The user documentation should be reviewed. Change-Id: I6d274e54ee37702f244e729ea5c9d1751b69abec Reviewed-on: https://gerrit.libreoffice.org/c/core/+/183486 Reviewed-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jenkins
2025-03-25ScriptForge prettyprint in APSO 1.4.4Jean-Pierre Ledure
The latest version of APSO (1.4.4) introduces a new positional argument in the def console(): in apso_utile.py, named 'prettyprint'. The def is used in SF_Exception.PythonShell() The absence of the argument caused an exception/regression. The actual patch makes above method compatible with latest and previous versions of APSO. No impact on user scripts. No impact on user documentation. Change-Id: I0a90112d441bba550b330925742e5021665ecee6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/183265 Reviewed-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jenkins
2025-03-20ScriptForge (Platform) new UntitledPrefix propertyJean-Pierre Ledure
Returns the prefix used to name new documents (in English = "Untitled "). Improves the portability of scripts by making them more language-agnostic. Available for Basic and Python scripts. The user documentation should be updated. Change-Id: Ie3c06e25fdc30fc1c3c775ef6ebbcee1d9cd77cd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/183134 Reviewed-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jenkins
2025-03-13ScriptForge (Dialog) new ImportControl() methodJean-Pierre Ledure
The ImportControl() method copies a control stored in a dialog to the actual dialog. Like in: dlg1 = CreateScriptService("Dialog", ...) dlg2 = CreateScriptService("NewDialog", ...) dlg2.ImportControl(dlg1, "thiscontrol", ...) The additional arguments contribute to optionally: - renaming the new control - storing the new control in a specific page - repositioning the control (offsetx and offsety args) - including the OnEventxxx properties One goal is to help defining individual smaller dialogs in the IDE and inserting them in a larger one, keeping them in separate pages. The function works for Basic and Python user scripts. The user documentation will have to be updated. Change-Id: I6155f58d2e8706b73fc5f72c070bb8230cdd17ee Reviewed-on: https://gerrit.libreoffice.org/c/core/+/182865 Reviewed-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jenkins
2025-03-10ScriptForge (Dialogs) add the TabPageContainer controlJean-Pierre Ledure
TabPageContainer-type controls are not supported by the Basic IDE, while they are visually attractive. The current commit proposes the insertion of such a control by code dialog.CreateTabPageContainer(..., tabheaders, ...) where tabheaders is simply an array of strings. The originality of the approach is here to make the link with dialog pages very easy: OnTabSelected: define the script to trigger when a tab is selected Value: get or set the actual tab Additionally, the TabPageContainer control is associated with the SetPageManager() method. Example on https://gitlab.com/LibreOfficiant/scriptforge/-/snippets/4823173 The function is available for Basic and Python user scripts. The documentation will need to be updated accordingly. Change-Id: I7a1644344cad5f3739055f7e1eec69310ffa019c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/182697 Reviewed-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jenkins
2025-03-09Fix typoAndrea Gelmini
Change-Id: I0a3e5331c41f67529ea97aa5bf8fb02fa9ec4978 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/182691 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins
2025-03-01ScriptForge (dialogs, documents, widgets) Secure listenersJean-Pierre Ledure
Listeners programmed in Basic are created with CreateUnoListener(prefix, listener) The prefix argument determines the series of routines run when an event is triggered. So far, for SF internal listeners, the prefix was chosen to minimize the risk of naming collisions with routines present in user scripts. In fact the prefix argument may be provided as Library.Module.Prefix which eliminates the risk of ambiguity or homonymy. With the actual change forcing the full qualification of prefixes, the risk is reduced from epsilon to zero. No impact on the user documentation. Change-Id: I95ef4beec80c89a074c8bec809f416479e64d8cf Reviewed-on: https://gerrit.libreoffice.org/c/core/+/182384 Reviewed-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jenkins
2025-02-26ScriptForge (SF_Calc) formatting, case-sensitive argumentsJean-Pierre Ledure
Next methods: AlignRange() => TMBLCR BorderRange() => LTRBUDHV DecorateFont() => BUSI receive a string argument describing what they have to do. Those arguments become case-sensitive: only upper-case characters are considered. Now: calc.DecorateFont(range, decoration := "BI") may be written as: calc.DecorateFont(range, _ decoration := "Bold+Italic") which improves the readability of user's scripts. The functionality is available both in Basic and Python scripts. To be considered in the 25.8 documentation. Change-Id: If241f7aef2e8cbfa5b7dd240e26489790a8cca13 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/182232 Reviewed-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jenkins
2025-02-19Fix typoAndrea Gelmini
Change-Id: I4a956e71e54051da58ef75e936106ba21bf501d8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/181894 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins
2025-02-19Fix typoAndrea Gelmini
Change-Id: Ia88014fd1eb18d3fb828a748aa890479a7a3272a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/181893 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2025-02-19cid#1643100 DLS: Dead local storeCaolán McNamara
since: commit a2888a8f5a2fd5a01a709ce445fe479059c16d59 CommitDate: Tue Feb 18 16:06:22 2025 +0100 tdf#161144 Fix ambiguous sorting in Query Wizard Change-Id: I965675a0b8c36dd65c6a637471a61eb32dd1a908 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/181868 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
2025-02-19ScriptForge (SF_Calc) formatting methodsJean-Pierre Ledure
So far only the SetCellStyle() method provided means to modify cell formats. The actual patch introduces next methods to apply simple and common formats. For other options use the XCellRange UNO interface. - calc.AlignRange(targetrange,alignment,...) - calc.BorderRange(targetrange,borders,...) - calc.ColorizeRange(targetrange,foreground,background,...) - calc.DecorateFont(targetrange,fontname,fontsize, decoration,...) - calc.FormatRange(targetrange,numberformat,locale,...) Extra arguments ("...") are: FilterFormula: a Calc formula to select cells FilterScope; CELL, ROW or COLUMN to allow a kind of static conditional formats. All methods are applicable to Basic and Python user scripts. This change will require an update of the user documentation. Change-Id: Ic824aebd763f2b55364c2c0bea17430f32512742 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/181854 Tested-by: Jenkins Reviewed-by: Jean-Pierre Ledure <jp@ledure.be>
2025-02-18tdf#161144 Fix ambiguous sorting in Query WizardAlexandre Sena Coelho
Fix ambiguous sorting in Query Wizard by including table names in ORDER BY clause Change-Id: Ie178c366f501156f72ff0bd441a75be98dc15220 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/179564 Tested-by: Jenkins Reviewed-by: Hossein <hossein@libreoffice.org>
2025-02-12ScriptForge (SF_Services) fix tdf#165147 do not require JREJean-Pierre Ledure
When a user script invokes CreateScriptService() for a not yet used library, ScriptForge loads the library and searches for the list of services provided by that library. The list can be found in a specific method that the library must contain, RegisterScriptServices() in whatever module. The exploration was done so far through a ScriptProvider UNO service. This service includes all programming languages, including Java, even without Java being used. This caused an inconvenient error message when Java is disabled in the advanced options. This service is now replaced by a com.sun.star.comp.scripting.ScriptProviderForBasic service. This gives a direct access to a lower branch of the scripts tree and skips the Java issue. All the changes are done in the ScriptForge.SF_Services._FindModuleFrom Method() function. No change required in the user documentation. Change-Id: I4a6820e5d1a379bf5b61c6077db8a9a382c1757d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/181445 Tested-by: Jenkins Reviewed-by: Jean-Pierre Ledure <jp@ledure.be>
2025-02-04ScriptForge (SFDocuments) new MenuHeaders propertyJean-Pierre Ledure
The %enuHeaders property returns, as an array/tuple of strings the list of the menus present in the menubar. This is a helper for the CreateMenu() method: - check if the menu exists already to avoid duplicates - ease the choice of the Before argument The property is applicable to next classes: - Document, and its subclasses Base, Calc, Writer, FormDocument - Datasheet The property is made available to Basic and Python user scripts. This new property will require an update of the user documentation/help Change-Id: Ia14daf6c58973e06d576b350e416eb178f70feb3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/181065 Reviewed-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jenkins
2025-01-30ScriptForge (SFWidgets) fix popup menu bugsJean-Pierre Ledure
1) when in Python the event argument of CreateScriptService('popupmenu', event) is set to None, an error was raised although not justified. 2) when popupmenu.Execute(False) is run and the user clicks outside the popup menu, the doc says a zero-length string should be returned. It retuned 0. No impact on user documentation. Change-Id: I4e1a1372800a728b994813b021f928fcf2b2603c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/180960 Reviewed-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jenkins
2025-01-21ScriptForge (ContextMenu) new RemoveAllItems() methodJean-Pierre Ledure
The contextmenu service handles the context menus stored in a document. So far, it provided only the AddItem() method to add new items at the bottom of the menu. The new method allows to forget the preconfigured menu and to replace it completely. Example: associate next Sub with the on-right-click event of sheet 'Sheet1' => The custom menu appears when right-clicking in column C, otherwise normal behaviour Sub OnRightClick1(Optional XRange) ' Xrange is a com.sun.star.table.XCellRange Dim calc, menu, bColumn Set calc = CreateScriptService("Calc", ThisComponent) Set menu = calc.ContextMenus("cell") menu.RemoveAllItems() bColumn = ( Len(calc.Intersect("Sheet1.$C:$C", _ XRange.AbsoluteName)) > 0 ) If bColumn Then menu.AddItem("A", Script := "vnd.sun.star.script:...&location=document") ... End If menu.Activate(bColumn) End Sub The function is available both for Basic and Python user scripts. The user documentation will have to be reviewed. Change-Id: I84ee8724bf99c37397a19d729133cc4686a63980 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/180520 Reviewed-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jenkins
2025-01-19ScriptForge (SF_Calc new Intersect() methodJean-Pierre Ledure
The calc.Intersect(range1, range2) method computes the common area as a string which is a sub-range of both input ranges. It returns an empty string when the sub-range is empty. Potential use case: customizing a popup or context menu depending on the presence of the selected cell in a given area. In addition, the A1Style() method returns the sheetname in the output string only when it is an explicit argument. Changes are applicable both for Basic and Python scripts. They require an update of the user documentation. Change-Id: I920fc8bee6dace9ceed263a0570b4c0197bc8cb8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/180479 Reviewed-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jenkins
2025-01-17ScriptForge es.po Typos and enhancementsJean-Pierre Ledure
In addition the VALIDATEREGEX message is obsolete and removed from next language files modified: wizards/source/scriptforge/po/es.po modified: wizards/source/scriptforge/po/fr.po modified: wizards/source/scriptforge/po/pt.po Change-Id: I67c2e5604e548870bf1bdceb9641d4802530e437 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/180413 Reviewed-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jenkins
2025-01-16More improvements in fr.po (wizards/scriptforge)Julien Nabet
Replace: -"supporté" with "pris en charge" -"tableau" with "matrice" when it's about an array Change-Id: I7c91bece58da90beb8c9787c1310fcd235698402 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/180306 Reviewed-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jenkins
2025-01-15ScriptForge add spanish translationJean-Pierre Ledure
modified: wizards/Package_scriptforge.mk new file: wizards/source/scriptforge/po/es.po Change-Id: Ia4d51b9dfaa75bf2f50bb5a11f7f8d465b106489 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/180285 Tested-by: Jenkins Reviewed-by: Jean-Pierre Ledure <jp@ledure.be>
2025-01-14Typos and improvements in fr.po (wizards/scriptforge)Julien Nabet
Change-Id: Ibc073d4167e9aa755a52ddcea412039925f4c0df Reviewed-on: https://gerrit.libreoffice.org/c/core/+/180187 Tested-by: Julien Nabet <serval2412@yahoo.fr> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2025-01-13ScriptForge add french translation of system messagesJean-Pierre Ledure
modified: wizards/Package_scriptforge.mk new file: wizards/source/scriptforge/po/fr.po Change-Id: I4cb0c93c2c8b335d8319835a383255e02b9b04ea Reviewed-on: https://gerrit.libreoffice.org/c/core/+/180143 Reviewed-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jenkins
2025-01-12ScriptForge (SF_Calc new XRectangle propertyJean-Pierre Ledure
The XReetangle(rangename) property returns a com.sun.star.awt.Rectangle structure describing the coordinates (in pixels) on the screen where the given range is located. This opens the door to effective interactivity in calc sheets with the use of popup menus. Example: r = calc.XRectangle("B2") menu = CreateScriptService("PopupMenu", , _ X := r.X + r.Width/2, Y := r.Y + r.Height/2) initializes a popup menu centered on the given cell. The property exists in Basic and Python. The SF_Calc help page should be updated according to the actual patch. Change-Id: I2a97c5c7b5bf84d36a2aab5e4b822e30c9d53d8e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/180140 Reviewed-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jenkins
2025-01-11ScriptForge (SF_Array) fix the list of methodsJean-Pierre Ledure
The Methods() method returns the list of methods present in each class. It is unused so far (vs. Properties() is used in the code) => a wrong list has no consequences. It is however reserved for future use. The list was incomplete in Array class. Change-Id: I3e0522d6669d2732c68e52e4021ffb5c8a3fb108 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/180127 Tested-by: Jenkins Reviewed-by: Jean-Pierre Ledure <jp@ledure.be>
2025-01-11ScriptForge - Upgrade to version 25.8Jean-Pierre Ledure
Hard-coded version numbers are modified from 25.2 to 25.8. Many changes in po files due to the alphabetical sequence of keys after the introduction of the new "case-sensitive" keys feature. Before this the dict.Keys() method delivered the keys as an array in the order of creation. No effect on actual user scripts. Change-Id: Iee0c48eca22d17ad892278398c9125912b8b2b3c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/180120 Reviewed-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jenkins
2024-12-05Fix typoAndrea Gelmini
Change-Id: I0b9be4ea10c3837007158771fde46ad70e5c52a8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/177785 Reviewed-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jenkins
2024-12-04ScriptForge (SF_Session) enhance ExecuteCalcFunctionJean-Pierre Ledure
The ExecuteCalcFunction() method is a wrapper of the com.sun.star.sheet.FunctionAccess::callFunction() method. This method accepts a broad variety of arguments - scalars: numeric and strings only - data arrays (= arrays os arrays) - 2D arrays (1D arrays give errors) - com.sun.star.table.XCellRange objects depending on the called function and its execution or not as an "array function". The actual commit makes that the arguments passed to session.ExecuteCalcFunction() are checked as formally correct: scalars are filtered as numeric or strings, dates and booleans are converted, arrays are reshaped to 2D where necessary. The actual change facilitates, as an example, the use of complex array functions like XLOOKUP, a powerful search engine on large data sets. The implemented functionalities are valid in Basic and Python. The help documentation might be completed with additional examples. Change-Id: I6bba1e21828ef09c5c6f0463cbcfa1f5df695073 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/177744 Tested-by: Jenkins Reviewed-by: Jean-Pierre Ledure <jp@ledure.be>
2024-12-03Fix typoAndrea Gelmini
Change-Id: I7066a328fa54c062d1a12582d4f270e70f466c32 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/177702 Reviewed-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jenkins
2024-12-02ScriptForge - Methods about data arraysJean-Pierre Ledure
A data array is a 1D array of 1D subarrays. All arrays are presumed zero-based. Usages: - the content of a range of Calc cells returned by the UNO XCellRange.getDataArray() or XCellRange.getFormulaArray() methods - the output of SF_Session.ExecuteCalcFunction() - a tuple of (sub)tuples returned by a Python script 3 methods are added to the Array service: 1) ConvertFromDataArray(DataArray, [IsRange], [FillValue]) Convert a data array to a scalar, a vector or a 2D array. On request, the individual items are reduced to strings or doubles only. 2) ConvertToDataArray(Data, [IsRange], [Rows], [Columns) Create a data array from a scalar, a 1D array or a 2D array. The returned data array is zero-based and compatible with the XCellRange.DataArray property when IsRange = True. 3) ConvertToRange(Data, [Direction]) Create a valid cells range content from a scalar, a 1D array, a 2D array or a data array. The individual items are always reduced to strings or doubles. Including booleans or dates. The returned scalar or array is a valid argument of the SF_Session.ExecuteCalcFunction() method. They replace the internal _ConvertFromDataArray() and _ConvertToDataArray() that were present in the Calc service, called by SetValue(), SetFormula() etc. methods. This change is Basic only and has no effect in Python. The documentation about the Array service should be completed with these new 3 methods. Change-Id: Idc5b6417648e4574b0f9c7c6e2438ff7dfce1829 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/177620 Reviewed-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jenkins
2024-10-23tdf#144702 Base Fields in Report Label Display ClippedNoel Grandin
This is probably not an ideal fix, I'm not sure where exactly the positioning is off, but this does the job for now. regression from commit 95ccc26ba71259be29fde8ba6b6f52ffbe5bd3c7 Author: Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> Date: Fri May 22 18:07:45 2015 +0900 Change-Id: I2f02e68418b7adf2cba8dfa4e4e51d4416a91389 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/175417 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2024-10-18scriptforge.pyi - Fix typoJean-Pierre Ledure
Change-Id: I993e30d3d228c639a69007a846b46f420f9297b3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/175097 Tested-by: Jenkins Reviewed-by: Jean-Pierre Ledure <jp@ledure.be>
2024-10-16ScriptForge session.ExecuteCalcFunction error handlingJean-Pierre Ledure
1) Error handling in the ExecuteCalcFunction() function must be conditioned by the global error handling. True; display a user-friendly message False: abort on the erroneous line So far, an ambiguous error message was displayed in both cases. 2) Above ambiguous error message was corrupted by the detour to SF_Array.Prepend() method in exc.RaiseFatal() and exc.RaiseAbort(). A simple workaround fixes the ambiguity about the name of the faulty routine. Change-Id: Iab38b48e6291e1960fc288696a7ebd18ffe8ebae Reviewed-on: https://gerrit.libreoffice.org/c/core/+/175020 Reviewed-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jenkins
2024-10-15Fix typoAndrea Gelmini
Change-Id: I2d58d52d5f331ae9b3f3c4d3dc91d86c075c2a39 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/174968 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2024-10-15scriptforge.py Color args in exception.PythonShell()Jean-Pierre Ledure
The exception.PythonShell() method opens the APSO console. It receives 2 additional arguments background foreground which specify the back- and foreground colors of the window to open as a Python console. Typical use of the method: exc.PythonShell({**globals(), **locals()}, \ background = 0x0, foregound = 0xFFFFFF) opens the shell with all existing variables loaded and with white characters on a black background. The default values are those set in APSO: background = 0xFDF6E3 foreground = 0x657B83 No impact on existing scripts. The current change requires to be completed with the addition of the 2 arguments in the adequate help page. Additonal minor changes - typo in scriptforge.pyi - 'outsideprocess' replaced by 'remoteprocess' Change-Id: I9b1be123f049aa39bd0d814b6dd63fcc4f4ea310 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/174897 Tested-by: Jenkins Reviewed-by: Jean-Pierre Ledure <jp@ledure.be>
2024-10-14scriptforge.py - clarify pipe modeJean-Pierre Ledure
Introduction of a ScriptForge.outsideprocess property: when True the actual mode is via socket or via pipe. The property is for internal use only. Once set it cannot be changed anymore. Previous statements similar to if ScriptForge.port > 0: which returned True when socket mode are replaced by a broader if ScriptForge.outsideprocess: No effect on user scripts. Change-Id: Ice0efd8c2ab9925511fc8c6889cab714fd208ba1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/174874 Tested-by: Jenkins Reviewed-by: Jean-Pierre Ledure <jp@ledure.be>
2024-10-07ScriptForge Fix tdf#163219 With blocksJean-Pierre Ledure
Reference: https://bugs.documentfoundation.org/show_bug.cgi?id=163219#c7 Everywhere the With block variable is defined or redefined inside the With block, the Basic code has been reviewed. Found in SFDatabases/SF_Database.xba/SetTransactionMode() SFDocuments/SF_Document.xba/Styles() ScriptForge/SF_Dictionary.xba/ImportFromPropertyValues() ScriptForge/SF_UI.xba/SetStatusBar() ScriptForge/SF_UI.xba/ShowProgressBar() Most changes consist in isolating the With block variable before the With block itself. No functional change. This solution is a workaround for the bug. IT DOES NOT SOLVE THE ROOT CAUSE. Change-Id: I48af29d3d9c8b1e36ef5a85c8cfe28f9639ae483 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/174560 Reviewed-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jenkins
2024-10-02scriptforge.pyi - TypoJean-Pierre Ledure
Change-Id: Ieff7ec790c457b1f4f67544d3f300fc68723d5aa Reviewed-on: https://gerrit.libreoffice.org/c/core/+/174393 Reviewed-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jenkins
2024-09-28cid#1607041 PA: Public AttributeCaolán McNamara
Change-Id: I8ec74e943232f98c861e035c0da11e8d75f8fa29 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/174106 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
2024-09-27cid#1607206 PA: Public AttributeCaolán McNamara
Change-Id: Ic76b397921c97314005cd0e05646fc45b303ded8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/173974 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
2024-09-26cid#1607041 PA: Public AttributeCaolán McNamara
Change-Id: Iedea5a5e42fa311441a77ee4e18a1b3cbfdf0c44 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/173973 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
2024-09-26cid#1607381 PA: Public AttributeCaolán McNamara
Change-Id: I44377535cabfd0c34a7f2b0815d779b17fbf8f53 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/173972 Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com> Tested-by: Jenkins
2024-09-26cid#1608290 PA: Public AttributeCaolán McNamara
Change-Id: I710d0d90122f4b2a82084a32a98a3877b3fae5bf Reviewed-on: https://gerrit.libreoffice.org/c/core/+/173971 Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com> Tested-by: Caolán McNamara <caolan.mcnamara@collabora.com>
2024-09-25cid#1607206 PA: Public AttributeCaolán McNamara
Change-Id: If140f3256a7e1afaae723147cb4870fa01b4e52e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/173946 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
2024-09-25cid#1608290 PA: Public AttributeCaolán McNamara
Change-Id: I46bd84741d3958cb807df4f3080426fc2afdd6fe Reviewed-on: https://gerrit.libreoffice.org/c/core/+/173945 Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com> Tested-by: Jenkins
2024-09-25cid#1608090 PA: Public AttributeCaolán McNamara
Change-Id: I9bf9de822851bbf4f28614ae686e79a9c7438aac Reviewed-on: https://gerrit.libreoffice.org/c/core/+/173944 Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com> Tested-by: Caolán McNamara <caolan.mcnamara@collabora.com>
2024-09-25remove call to getCatalogSeparator where return is ignoredCaolán McNamara
since: commit 43cc8ad33e815522e2b23ac87a4a9c4526cd85c9 CommitDate: Mon Jan 5 08:23:29 2015 +0200 java: remove dead code Change-Id: Ib2b3e7a45ef1c9f1a7edf06ed6d474375bfe1c5b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/173943 Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com> Tested-by: Jenkins
2024-09-25cid#1606775 PA: Public AttributeCaolán McNamara
Change-Id: Ie5034470b02310f329c041224ebf035769374e50 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/173942 Tested-by: Caolán McNamara <caolan.mcnamara@collabora.com> Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>