diff options
author | Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> | 2022-12-06 14:05:20 +0200 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2022-12-07 17:39:02 +0000 |
commit | 7e42394ecbf921ee53160b495aa12c1cba158604 (patch) | |
tree | 9f0b4dcbbf31112c0260a6a6831cbddf86d82c6d /source/text/swriter/main0205.xhp | |
parent | 490d42493e8dbec31ad58978df5084b080a36fcb (diff) |
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>
Diffstat (limited to 'source/text/swriter/main0205.xhp')
-rw-r--r-- | source/text/swriter/main0205.xhp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source/text/swriter/main0205.xhp b/source/text/swriter/main0205.xhp index 97db0006ad..45783dee46 100644 --- a/source/text/swriter/main0205.xhp +++ b/source/text/swriter/main0205.xhp @@ -29,7 +29,7 @@ <body> <section id="drawing_object_properties_bar"> <bookmark xml-lang="en-US" branch="hid/HID_DRAW_TOOLBOX" id="bm_id3147568" localize="false"/> -<paragraph role="heading" id="hd_id3154275" xml-lang="en-US" level="1"><link href="text/swriter/main0205.xhp" name="Drawing Object Properties Bar">Drawing Object Properties Bar</link></paragraph> +<paragraph role="heading" id="hd_id3154275" xml-lang="en-US" level="1"><link href="text/swriter/main0205.xhp">Drawing Object Properties Bar</link></paragraph> <paragraph role="paragraph" id="par_id3147578" xml-lang="en-US"><ahelp hid="HID_DRAW_TOOLBOX">You can see the <emph>Drawing Object Properties</emph> bar in Writer and Calc. Select the menu View - Toolbars - Drawing Object Properties. The controls are enabled when a drawing object is selected. You see some different icons by default, whether the current document is a text document or a spreadsheet.</ahelp></paragraph> </section> @@ -37,18 +37,18 @@ <embed href="text/shared/00/00040502.xhp#syline"/> <embed href="text/shared/02/05020000.xhp#arrow_style"/> <embed href="text/shared/02/05020000.xhp#syarrow_style"/> -<paragraph role="heading" id="hd_id3147784" xml-lang="en-US" level="2"><link href="text/shared/01/05200100.xhp" name="Line Style">Line Style</link></paragraph> +<paragraph role="heading" id="hd_id3147784" xml-lang="en-US" level="2"><link href="text/shared/01/05200100.xhp">Line Style</link></paragraph> <embed href="text/shared/01/05200100.xhp#stiltext"/> <embed href="text/shared/00/00000004.xhp#syline_style"/> -<paragraph role="heading" id="hd_id3147818" xml-lang="en-US" level="2"><link href="text/shared/01/05200100.xhp" name="Line Width">Line Width</link></paragraph> +<paragraph role="heading" id="hd_id3147818" xml-lang="en-US" level="2"><link href="text/shared/01/05200100.xhp">Line Width</link></paragraph> <embed href="text/shared/01/05200100.xhp#breitetext"/> <embed href="text/shared/00/00000004.xhp#syline_width"/> -<paragraph role="heading" id="hd_id3147229" xml-lang="en-US" level="2"><link href="text/shared/01/05200100.xhp" name="Line Color">Line Color</link></paragraph> +<paragraph role="heading" id="hd_id3147229" xml-lang="en-US" level="2"><link href="text/shared/01/05200100.xhp">Line Color</link></paragraph> <embed href="text/shared/01/05200100.xhp#farbetext"/> <embed href="text/shared/00/00000004.xhp#syline_color"/> <embed href="text/shared/01/05210000.xhp#area"/> <embed href="text/shared/00/00040502.xhp#syarea"/> -<paragraph role="heading" id="hd_id3147280" xml-lang="en-US" level="2"><link href="text/shared/01/05210100.xhp" name="Area Style/Filling">Area Style/Filling</link></paragraph> +<paragraph role="heading" id="hd_id3147280" xml-lang="en-US" level="2"><link href="text/shared/01/05210100.xhp">Area Style/Filling</link></paragraph> <embed href="text/shared/01/05210100.xhp#sytext"/> <embed href="text/shared/00/00000004.xhp#syarea_style"/> <embed href="text/shared/02/05090000.xhp#rotate"/> |