a79a6e0200
tdf#146609 Rename line width to thickness in Help
...
The ones that were easy to find. Probably missed something.
Change-Id: I6dbb72b42c07fc8859be733dc6419dfb7a5d0d65
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/157642
Tested-by: Jenkins
Tested-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org >
Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org >
2023-10-06 15:39:39 +02:00
1c3257e391
tdf#155193 Fill indexer= when omitted in Help files
...
Change-Id: I10f3c9e1e698619dcace7c4314f2bd37adf698de
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/155363
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org >
2023-08-05 11:42:52 +02:00
37c3a04916
tdf#156580: CreateUnoService is spelled differently in help
...
Change-Id: I98728e1215a716f9e35080e819956d0801922284
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/155234
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org >
2023-08-02 17:22:53 +02:00
77cb682cd1
convert plain paragraphs with role="heading" → h<level>
...
i.e. without child elements and also drop the language that was changed
to implied in the dtd previously/defaults to en-US unless specified.
This change doesn't affect translations, only the content of the
paragraph/headings is extracted.
done with:
perl -CSD -pi -e 'BEGIN {$base = qr/role="heading"|level="(?<level>\d+)"|(?<id>id="[^"]+")/;} s#<paragraph(((\s+($base)){3})|(\s+($base|xml-lang="en-US")){4})>(?<body>[^<]+)</paragraph>#<h$+{level} $+{id}>$+{body}</h$+{level}>#g'
(all permutations re order of attributes, and xml-lang="en-US" being
optional / implied)
Change-Id: I365a2bb983a3969af9390753fce7b7f3597c7b8b
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148795
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org >
2023-03-16 15:18:10 +00:00
1445fa8fda
Fix duplicate IDs in non-localized content
...
Change-Id: I759b05a2ba10671700c9222f54e61edf39f5baff
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/144538
Tested-by: Jenkins
Tested-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org >
Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org >
2022-12-19 16:22:00 +00:00
7e42394ecb
tdf#152323 drop name attribute from <link> elements
...
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 >
2022-12-07 17:39:02 +00:00
d5ef41a2b8
String updates…
...
... to remove some hardcoded product names and to bring the help
in line with recent UI changes
Kudos to Celia and Olivier
Change-Id: If83039fce0612e04d59c5a5bebba6993c1e5a044
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/136445
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com >
2022-06-26 02:10:56 +02:00
e1da23a649
Related: tdf#146971 rename %PRODUCTNAME Macros to Application Macros
...
Change-Id: I83393ec16732482deade1694c6a1a8e2b92f3944
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/128916
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com >
2022-01-25 13:23:56 +01:00
7f942a62c3
Create a guide on Calc macros on reading and writing cell values
...
This patch also creates a new entry in the Calc tree menu to store all pages about Calc macros. Currently there are only two, but in future patches new pages will be added.
Change-Id: Iac55c87d1159f4163ba3150e83160b4156d0d0f6
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/122936
Tested-by: Jenkins
Reviewed-by: Rafael Lima <rafael.palma.lima@gmail.com >
2021-10-07 21:28:32 +02:00
c8c6952d80
Minor fixes in help files (sbasic)
...
Change-Id: Ifb4a91bfeb1ca8f7e67e9affa30b1e29028b4731
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/122071
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org >
2021-09-16 12:06:37 +02:00
f62fb28bc3
Fix typo
...
Change-Id: I59548caf3c307d7ff95354f9d7f664112af23b21
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/121736
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr >
2021-09-06 21:50:27 +02:00
9b8c44b49d
Create guide about Calc macros to format cell borders
...
This patch is a follow-up to a previous revert:
https://gerrit.libreoffice.org/c/help/+/121554
This patch uses the correct path for the new file "calc_borders.xhp".
Change-Id: I4eb72db1ef8f5d964905be46dcb645dbd4e28e67
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/121556
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org >
2021-09-03 17:50:08 +02:00
00bc6ac405
Mute L10n in some Basic code lines
...
Change-Id: Idbaf2b44d4c7a6220aea66d75c00f36053a22f31
Reviewed-on: https://gerrit.libreoffice.org/82193
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org >
2019-11-07 12:37:29 +01:00
7670e91fc5
Misc. typo fixing and removal of pointless tags
...
Change-Id: I7ecffd0417b7e88b76f44e64911c3d8a2f935104
2019-11-07 04:34:43 -06:00
aa272bf2b9
Fix links for basic_2_python page
...
Change-Id: I7ffd91ea10b22a5215a77be9639dd8d9c27c9ed0
Reviewed-on: https://gerrit.libreoffice.org/81509
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org >
2019-10-25 18:03:40 +02:00
8af9c4cb20
Wrong links & extra bookmarks
...
Change-Id: I454e5ee23a17e48931dee2d51ad1639fb73ecba9
Reviewed-on: https://gerrit.libreoffice.org/81487
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org >
2019-10-25 12:32:46 +02:00
32ed2dcd31
Documenting how to call Python routines from Basic macros
...
Change-Id: I904cafe91ad7c5e72d09209c68db401003dda556
Reviewed-on: https://gerrit.libreoffice.org/81412
Tested-by: Jenkins
Reviewed-by: Jean-Pierre Ledure <jp@ledure.be >
Tested-by: Jean-Pierre Ledure <jp@ledure.be >
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org >
2019-10-24 17:23:33 +02:00
6880ed4b73
Python dialog handler new topic
...
'Dialog Handler' new topic
bunch of x-ref between pages
make & toc
OH:
- fixed broken file path
- fixed broken links
Change-Id: I37e94fea48c394310298ff6f4b13f22c71c523c4
Reviewed-on: https://gerrit.libreoffice.org/76191
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org >
2019-07-26 13:30:28 +02:00
414be5f0b5
Some examples of Basic macros
...
Change-Id: I20f0693dfb1e965f50be875565d505021bcb9d4a
Reviewed-on: https://gerrit.libreoffice.org/73861
Tested-by: Jenkins
Tested-by: Olivier Hallot <olivier.hallot@libreoffice.org >
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org >
2019-06-24 18:40:05 +02:00
8b1f590997
WIP: refactor some Python/Basic pages
...
Change-Id: I3590e7a6e0cf62d9f9e33e8081be50ab4d0ae769
Reviewed-on: https://gerrit.libreoffice.org/73175
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org >
2019-05-30 13:21:00 +02:00
a8a0ba510b
- Pages mutual x-Refs
...
- Relate Tools help page to Basic Dialog page
- Basic page title change
- extra bookmark(s)
- Basic code change
- loadLibrary code change
- loadDialog with full path (as best practice)
Change-Id: Ia9a449b1dc8cb3a5acc7a921feeedebe7ce9cefb
Reviewed-on: https://gerrit.libreoffice.org/72946
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org >
2019-05-27 02:17:31 +02:00
4ff9ffa9f7
New Python page + updates to existing pages to support embedded references
...
Change-Id: Ie7bd884db45e3ca59dee1ffa79b2ea14ced3d160
Reviewed-on: https://gerrit.libreoffice.org/70420
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org >
2019-04-10 16:32:54 +02:00
84a86433f6
tdf#115254 Some branch bookmarks are'nt working 32
...
Module basctl
Change-Id: I0206a66346e76e71f6fc14cd92257b2415968741
Reviewed-on: https://gerrit.libreoffice.org/61235
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org >
2018-10-02 11:49:08 +02:00
8763bde02f
Review some outdated text in the Access2Base help page
...
Change-Id: I61c4b9f4b66750eab2e5724add50865719b13576
Reviewed-on: https://gerrit.libreoffice.org/53382
Tested-by: Jenkins <ci@libreoffice.org >
Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com >
2018-04-24 15:25:36 +02:00
f7ed5d8cb7
Improve wording and formatting of help text
...
Change-Id: Ic06c6eebc08729b3131db1c213a661c2306d69a9
Reviewed-on: https://gerrit.libreoffice.org/53287
Tested-by: Jenkins <ci@libreoffice.org >
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org >
2018-04-23 13:28:05 +02:00
2c5257ffbf
tdf#94438 disambiguate bookmark branches (iii)
...
Change-Id: I4953a00750c9f7a5aa65aff01232a66e0ad360fc
Reviewed-on: https://gerrit.libreoffice.org/52799
Tested-by: Jenkins <ci@libreoffice.org >
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org >
Tested-by: Olivier Hallot <olivier.hallot@libreoffice.org >
2018-04-12 22:02:42 +02:00
bb320c4e73
Expand some useless “MS” abbreviations to “Microsoft”
...
Abbreviations should be used only when we lack space
(e.g., in UI), but there’s plenty of it here
Change-Id: Ib0ac97b2003ca96e4bc286a1a1436bda0f81bd8a
2017-06-26 14:31:39 -05:00
1d2c1291f7
Basic: add localize=false for some bascode lines
...
Change-Id: I78884c0421ef8ad935ca7214b9116fda29d2797f
update: remove duplicate empty line at end of files
Reviewed-on: https://gerrit.libreoffice.org/33766
Reviewed-by: Olivier Hallot <olivier.hallot@edx.srv.br >
Tested-by: Olivier Hallot <olivier.hallot@edx.srv.br >
2017-05-16 22:36:34 +02:00
eb9ec1c794
remove obsolete oldref attribute (removes one context line in pot)
...
also remove obsolete l10n attribute (doesn't affect translations/pot)
Change-Id: I809866ea7b16cb1cacad9efacb6fdeebae38ea9f
2017-05-09 16:37:41 +02:00
bb4361c2e7
link is no valid child of emph
...
Change-Id: I24009c8eb766d2e99ff96b8ba803e0d92ee73387
2016-01-25 15:45:46 +01:00
c20dde3497
The 'lastedited' element is useless, we have git.
2015-11-12 09:34:06 +01:00
5e109b09ca
fix some ahelp ids of hid . where the current context is empty or wrong
...
related fdo#88970
Change-Id: Ib5aa5f5b608252216817b0e6f38c944e37786df5
2015-02-02 13:39:49 +00:00
d7a29031ad
fix help xml syntax in access2base.xhp
...
Change-Id: Id1cc4ed9a9be1db0c4ffda0196439ae39c5643bf
2014-02-20 12:50:35 +01:00
d331784b77
update help ids for manage languages dialog
...
Change-Id: I7975c7ee7ccce9e6563cb0181441deeae08ee109
2014-02-11 11:30:46 +00:00
c975424cf1
update help ids for default language dialog .ui conversion
...
Change-Id: I56cc822b5c0175dcc8c93cd5a01f8c6d00d96ba7
2014-01-03 21:23:58 +00:00
db8f7521f1
Access2Base - Help file
...
Summary description + reference to official doc site
1 entry in index
1 entry in Macros & Programming - Guides
Change-Id: I26587292b4daff035779fc197522af7dc600279a
Reviewed-on: https://gerrit.libreoffice.org/6522
Tested-by: Lionel Elie Mamane <lionel@mamane.lu >
Reviewed-by: Lionel Elie Mamane <lionel@mamane.lu >
2013-11-05 01:24:24 -06:00
81f8e6cfb8
gbuildize helpcontent2
...
dmake is dead, long live gbuild!
Change-Id: I636ea4ed7ee08a748b96973ae076a5e47928d4ca
2013-02-26 15:29:47 +01:00
df4d4db740
re-base on ALv2 code. Includes:
...
Patch contributed by Oliver Rainer-Wittmann
i#118572 - remove ui string and help content regarding
usage of Java Mail in Writer's Mail Merge as Java
Mail is not used.
http://svn.apache.org/viewvc?view=revision&revision=1197035
Patches contributed by Herbert Duerr
updated help text for regexp word boundaries
http://svn.apache.org/viewvc?view=revision&revision=1228026
improved help text for word boundary regexp expression \b
http://svn.apache.org/viewvc?view=revision&revision=1234738
Patches contributed by Jurgen Schmidt
remove onlineregistration with dependencies
http://svn.apache.org/viewvc?view=revision&revision=1240245
Patch contributed by Regina Henschel
Extended tips for corner and cap style
http://svn.apache.org/viewvc?view=revision&revision=1242287
* re-enable on-line update help, remove obsolete on-line purchasing.
2012-12-13 13:02:02 +00:00
61173c1b58
move help structure one directory up
...
Change-Id: Ie970e39fbb6795a92d9fdd13510409d7dcd071bc
2012-10-16 11:07:30 -05:00