+ Also add Help page for LanguageTool options
+ Note: DeepL service not available in Southern Hemisphere, therefore
I've not tested it.
Change-Id: I8a4bb01462e40113b40210b10024c59db0da293c
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/145366
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
It's the last column with data in any row, not the last cell with
data in the current row.
Change-Id: Ib5e719ed6b50c2c5f2b48a8d4cad8bd9f52a3cac
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/145355
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Jenkins
- Added content control user guide
- Merged control properties pages
- New menu commands
- Entry in Contents tree
Change-Id: If4b550317c1d4cae3a06d8363058a7f3214621a9
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/144992
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
Row and Column arguments are not only optional but can also be
omitted / given as empty argument.
Reword the multiple ranges explanation.
Remove a decade old source comment.
Change-Id: Ie34e4731b88d4b3adc4a6d0cc98c9e4a02b3c669
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/144846
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Jenkins
In commit bd899b607eed60487a75905a398b751cf5332352 I accidedntally ended up reverting a few fixes that had already been done to sf_datasheet.xhp.
This patch reapplies these fixes.
Change-Id: Ie2c7f65f4363aa788afa2315514ce8a348dc68c8
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/144364
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
targeting File/Open help page - on 'Help' button click - for the time being although this is far
from a perfect solution, and while @@widget@@ bookmark does not operate properly.
Change-Id: Id35bb8a6b707cb8376bac7c036aa47ba31aa8f58
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/144356
Tested-by: Jenkins
Reviewed-by: Alain Romedenne <alain.romedenne@libreoffice.org>
This patch creates the help page for the new ScriptForge service named Datasheet. It also updates associated methods that were added to the Base and Database services.
Change-Id: I6611653b77e1ee41f6afacccb2094f19d7178434
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/144183
Tested-by: Jenkins
Tested-by: Jean-Pierre Ledure <jp@ledure.be>
Reviewed-by: Jean-Pierre Ledure <jp@ledure.be>
This patch adds the new CreateUnoStruct method and fixes a few minor issues in the file.
Change-Id: I1369e801d4e86f3413ccd7e13dcae8255e4ff5b8
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/144122
Tested-by: Jenkins
Tested-by: Jean-Pierre Ledure <jp@ledure.be>
Reviewed-by: Jean-Pierre Ledure <jp@ledure.be>
This patch updates the ScriptForge's Calc service to document the FilterFormula and FilterScope arguments that were added to the following methods:
- ClearAll
- ClearFormats
- ClearValues
- SetCellStyle
Change-Id: Ice17a37ca49576f07be7f57800b11050054d90b3
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/144057
Tested-by: Jenkins
Reviewed-by: Jean-Pierre Ledure <jp@ledure.be>
This patch does the following changes:
1) Explain how to handle exceptions in dialog and control event handlers (both in Python and Basic)
2) Document the new SetPageManager method
3) Plus a few minor fixes in the text
Change-Id: I4f7b3bfae025b45214b90dd036ecdbf4977d47e9
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/144018
Tested-by: Jenkins
Reviewed-by: Jean-Pierre Ledure <jp@ledure.be>
Select Text was wrongly linking to Edit mode page. The hyperlink is now removed. Also is impossible to be in Edit mode and active Edit mode, so it can't be activate or deactivate edit mode.
Change-Id: I1d759b3962692c2dcec181267045d15f934325ec
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/143728
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
Replacement done with
find . -name \*.xhp -print0 |xargs -0 -P 0 perl -CS -pi -e \
's#(<link[^>]*?) +name *="[^"]*" *( [^>]+|) *>#$1$2>#g'
(note some inconsistencies with space between name and = and also having
empty value, and some more complicated expression to also clear up
double space before/after the attribute)
translation files will be prepped with:
find */helpcontent2 -name \*.po -print0 |xargs -0 -P 0 perl -CS -pi -e \
$'s#(<link[^>]*?) +name=(?:\\\\"[^"]*\\\\"|\'[^\']*\') *( [^>]+|) *(/?>)#$1$2$3#g unless /^#/'
(note that not all languages use the " as quote character for the
attributes, but that also single quotes appera in the po file. Hence
the use of the shell $'string' syntax to be able to quote ' as \'
It also requires to quote the backslash, so that it needs to be escaped
once for the shell, then another time for perl. Also don't work on
obsolete strings (those are prefixed with #~ in the po files)
Also note that <link..></link> gets turned into <link ../> during
translation extraction (along with removal of the space between the
attribute name and the value), so the pattern needs to be slightly
different here)
Change-Id: I95e53a08e6b0095cd894109ea0de154cc4859d8f
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/143713
Tested-by: Jenkins
Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>