This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a commit to branch AOO42X
in repository https://gitbox.apache.org/repos/asf/openoffice.git


The following commit(s) were added to refs/heads/AOO42X by this push:
     new adcbcb58fa Remove 'oldref' entries (work in progress)
adcbcb58fa is described below

commit adcbcb58fa9cabf8eb2c49c0a67fd79a32bef5fb
Author: mseidel <msei...@apache.org>
AuthorDate: Sun Jan 5 19:25:13 2025 +0100

    Remove 'oldref' entries (work in progress)
    
    (cherry picked from commit a54e561d4e9d3dc6acbe9e53a3ccf6e0254fa4e2)
---
 .../source/text/sbasic/shared/03060100.xhp         | 45 ++++++++++-----------
 .../source/text/sbasic/shared/03060300.xhp         | 42 ++++++++++----------
 .../source/text/sbasic/shared/03103000.xhp         | 46 +++++++++++-----------
 .../source/text/shared/autopi/01020000.xhp         | 20 +++++-----
 .../source/text/shared/guide/formfields.xhp        | 14 +++----
 .../source/text/shared/optionen/01014000.xhp       | 24 +++++------
 .../source/text/swriter/guide/footer_nextpage.xhp  | 20 +++++-----
 .../text/swriter/guide/footer_pagenumber.xhp       | 12 +++---
 .../source/text/swriter/guide/tablemode.xhp        | 12 +++---
 9 files changed, 114 insertions(+), 121 deletions(-)

diff --git a/main/helpcontent2/source/text/sbasic/shared/03060100.xhp 
b/main/helpcontent2/source/text/sbasic/shared/03060100.xhp
index 3b8115e653..5f3f0e09a1 100644
--- a/main/helpcontent2/source/text/sbasic/shared/03060100.xhp
+++ b/main/helpcontent2/source/text/sbasic/shared/03060100.xhp
@@ -33,30 +33,27 @@
 <bookmark xml-lang="en-US" branch="index" id="bm_id3146117">
 <bookmark_value>AND operator (logical)</bookmark_value>
 </bookmark>
-<paragraph role="heading" id="hd_id3146117" xml-lang="en-US" level="1" 
l10n="U" oldref="1"><link href="text/sbasic/shared/03060100.xhp" name="AND 
Operator [Runtime]">AND Operator [Runtime]</link></paragraph>
-<paragraph role="paragraph" id="par_id3143268" xml-lang="en-US" l10n="U" 
oldref="2">Logically combines two expressions.</paragraph>
+<paragraph role="heading" id="hd_id3146117" xml-lang="en-US" level="1" 
l10n="U"><link href="text/sbasic/shared/03060100.xhp" name="AND Operator 
[Runtime]">AND Operator [Runtime]</link></paragraph>
+<paragraph role="paragraph" id="par_id3143268" xml-lang="en-US" 
l10n="U">Logically combines two expressions.</paragraph>
 </section>
-<paragraph role="heading" id="hd_id3147574" xml-lang="en-US" level="2" 
l10n="U" oldref="3">Syntax:</paragraph>
-<paragraph role="paragraph" id="par_id3156344" xml-lang="en-US" l10n="U" 
oldref="4">Result = Expression1 And Expression2</paragraph>
-<paragraph role="heading" id="hd_id3148946" xml-lang="en-US" level="2" 
l10n="U" oldref="5">Parameters:</paragraph>
-<paragraph role="paragraph" id="par_id3149457" xml-lang="en-US" l10n="U" 
oldref="6">
-<emph>Result:</emph> Any numeric variable that records the result of the 
combination.</paragraph>
-<paragraph role="paragraph" id="par_id3150541" xml-lang="en-US" l10n="U" 
oldref="7">
-<emph>Expression1, Expression2:</emph> Any expressions that you want to 
combine.</paragraph>
-<paragraph role="paragraph" id="par_id3156215" xml-lang="en-US" l10n="U" 
oldref="8">Boolean expressions combined with AND only return the value 
<emph>True</emph> if both expressions evaluate to <emph>True</emph>:</paragraph>
-<paragraph role="paragraph" id="par_id3150870" xml-lang="en-US" l10n="U" 
oldref="9">
-<emph>True</emph> AND <emph>True</emph> returns <emph>True</emph>; for all 
other combinations the result is <emph>False</emph>.</paragraph>
-<paragraph role="paragraph" id="par_id3153768" xml-lang="en-US" l10n="U" 
oldref="10">The AND operator also performs a bitwise comparison of identically 
positioned bits in two numeric expressions.</paragraph>
-<paragraph role="heading" id="hd_id3153727" xml-lang="en-US" level="2" 
l10n="U" oldref="11">Example:</paragraph>
-<paragraph role="paragraph" id="par_id3149481" xml-lang="en-US" l10n="U" 
oldref="12">Sub ExampleAnd</paragraph>
-<paragraph role="paragraph" id="par_id3152577" xml-lang="en-US" l10n="CHG" 
oldref="13">Dim A as Variant, B as Variant, C as Variant, D as 
Variant</paragraph>
-<paragraph role="paragraph" id="par_id3152598" xml-lang="en-US" l10n="U" 
oldref="14">Dim vVarOut as Variant</paragraph>
-<paragraph role="paragraph" id="par_id3153092" xml-lang="en-US" l10n="U" 
oldref="15">A = 10: B = 8: C = 6: D = Null</paragraph>
-<paragraph role="paragraph" id="par_id3146984" xml-lang="en-US" l10n="U" 
oldref="16">vVarOut = A &gt; B And B &gt; C REM returns -1</paragraph>
-<paragraph role="paragraph" id="par_id3154014" xml-lang="en-US" l10n="U" 
oldref="17">vVarOut = B &gt; A And B &gt; C REM returns 0</paragraph>
-<paragraph role="paragraph" id="par_id3149262" xml-lang="en-US" l10n="CHG" 
oldref="18">vVarOut = A &gt; B And B &gt; D REM returns 0</paragraph>
-<paragraph role="paragraph" id="par_id3145751" xml-lang="en-US" l10n="U" 
oldref="19">vVarOut = (B &gt; D And B &gt; A) REM returns 0</paragraph>
-<paragraph role="paragraph" id="par_id3147394" xml-lang="en-US" l10n="U" 
oldref="20">vVarOut = B And A REM returns 8 due to the bitwise AND combination 
of both arguments</paragraph>
-<paragraph role="paragraph" id="par_id3151073" xml-lang="en-US" l10n="U" 
oldref="21">End Sub</paragraph>
+<paragraph role="heading" id="hd_id3147574" xml-lang="en-US" level="2" 
l10n="U">Syntax:</paragraph>
+<paragraph role="paragraph" id="par_id3156344" xml-lang="en-US" 
l10n="U">Result = Expression1 And Expression2</paragraph>
+<paragraph role="heading" id="hd_id3148946" xml-lang="en-US" level="2" 
l10n="U">Parameters:</paragraph>
+<paragraph role="paragraph" id="par_id3149457" xml-lang="en-US" 
l10n="U"><emph>Result:</emph> Any numeric variable that records the result of 
the combination.</paragraph>
+<paragraph role="paragraph" id="par_id3150541" xml-lang="en-US" 
l10n="U"><emph>Expression1, Expression2:</emph> Any expressions that you want 
to combine.</paragraph>
+<paragraph role="paragraph" id="par_id3156215" xml-lang="en-US" 
l10n="U">Boolean expressions combined with AND only return the value 
<emph>True</emph> if both expressions evaluate to <emph>True</emph>:</paragraph>
+<paragraph role="paragraph" id="par_id3150870" xml-lang="en-US" 
l10n="U"><emph>True</emph> AND <emph>True</emph> returns <emph>True</emph>; for 
all other combinations the result is <emph>False</emph>.</paragraph>
+<paragraph role="paragraph" id="par_id3153768" xml-lang="en-US" l10n="U">The 
AND operator also performs a bitwise comparison of identically positioned bits 
in two numeric expressions.</paragraph>
+<paragraph role="heading" id="hd_id3153727" xml-lang="en-US" level="2" 
l10n="U">Example:</paragraph>
+<paragraph role="paragraph" id="par_id3149481" xml-lang="en-US" l10n="U">Sub 
ExampleAnd</paragraph>
+<paragraph role="paragraph" id="par_id3152577" xml-lang="en-US" l10n="CHG">Dim 
A as Variant, B as Variant, C as Variant, D as Variant</paragraph>
+<paragraph role="paragraph" id="par_id3152598" xml-lang="en-US" l10n="U">Dim 
vVarOut as Variant</paragraph>
+<paragraph role="paragraph" id="par_id3153092" xml-lang="en-US" l10n="U">A = 
10: B = 8: C = 6: D = Null</paragraph>
+<paragraph role="paragraph" id="par_id3146984" xml-lang="en-US" 
l10n="U">vVarOut = A &gt; B And B &gt; C REM returns -1</paragraph>
+<paragraph role="paragraph" id="par_id3154014" xml-lang="en-US" 
l10n="U">vVarOut = B &gt; A And B &gt; C REM returns 0</paragraph>
+<paragraph role="paragraph" id="par_id3149262" xml-lang="en-US" 
l10n="CHG">vVarOut = A &gt; B And B &gt; D REM returns 0</paragraph>
+<paragraph role="paragraph" id="par_id3145751" xml-lang="en-US" 
l10n="U">vVarOut = (B &gt; D And B &gt; A) REM returns 0</paragraph>
+<paragraph role="paragraph" id="par_id3147394" xml-lang="en-US" 
l10n="U">vVarOut = B And A REM returns 8 due to the bitwise AND combination of 
both arguments</paragraph>
+<paragraph role="paragraph" id="par_id3151073" xml-lang="en-US" l10n="U">End 
Sub</paragraph>
 </body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/sbasic/shared/03060300.xhp 
b/main/helpcontent2/source/text/sbasic/shared/03060300.xhp
index bbfcbc9fcf..d5a882147f 100644
--- a/main/helpcontent2/source/text/sbasic/shared/03060300.xhp
+++ b/main/helpcontent2/source/text/sbasic/shared/03060300.xhp
@@ -33,28 +33,26 @@
 <bookmark xml-lang="en-US" branch="index" id="bm_id3156024">
 <bookmark_value>Imp operator (logical)</bookmark_value>
 </bookmark>
-<paragraph role="heading" id="hd_id3156024" xml-lang="en-US" level="1" 
l10n="U" oldref="1"><link href="text/sbasic/shared/03060300.xhp" 
name="Imp-Operator [Runtime]">Imp Operator [Runtime]</link></paragraph>
-<paragraph role="paragraph" id="par_id3148947" xml-lang="en-US" l10n="U" 
oldref="2">Performs a logical implication on two expressions.</paragraph>
+<paragraph role="heading" id="hd_id3156024" xml-lang="en-US" level="1" 
l10n="U"><link href="text/sbasic/shared/03060300.xhp" name="Imp-Operator 
[Runtime]">Imp Operator [Runtime]</link></paragraph>
+<paragraph role="paragraph" id="par_id3148947" xml-lang="en-US" 
l10n="U">Performs a logical implication on two expressions.</paragraph>
 </section>
-<paragraph role="heading" id="hd_id3148664" xml-lang="en-US" level="2" 
l10n="U" oldref="3">Syntax:</paragraph>
-<paragraph role="paragraph" id="par_id3149656" xml-lang="en-US" l10n="U" 
oldref="4">Result = Expression1 Imp Expression2</paragraph>
-<paragraph role="heading" id="hd_id3151212" xml-lang="en-US" level="2" 
l10n="U" oldref="5">Parameters:</paragraph>
-<paragraph role="paragraph" id="par_id3154910" xml-lang="en-US" l10n="U" 
oldref="6">
-<emph>Result:</emph> Any numeric variable that contains the result of the 
implication.</paragraph>
-<paragraph role="paragraph" id="par_id3156281" xml-lang="en-US" l10n="U" 
oldref="7">
-<emph>Expression1, Expression2:</emph> Any expressions that you want to 
evaluate with the Imp operator.</paragraph>
-<paragraph role="paragraph" id="par_id3150440" xml-lang="en-US" l10n="U" 
oldref="8">If you use the Imp operator in Boolean expressions, False is only 
returned if the first expression evaluates to True and the second expression to 
False.</paragraph>
-<paragraph role="paragraph" id="par_id3163710" xml-lang="en-US" l10n="U" 
oldref="9">If you use the Imp operator in bit expressions, a bit is deleted 
from the result if the corresponding bit is set in the first expression and the 
corresponding bit is deleted in the second expression.</paragraph>
-<paragraph role="heading" id="hd_id3147318" xml-lang="en-US" level="2" 
l10n="U" oldref="10">Example:</paragraph>
-<paragraph role="paragraph" id="par_id3155854" xml-lang="en-US" l10n="U" 
oldref="11">Sub ExampleImp</paragraph>
-<paragraph role="paragraph" id="par_id3145272" xml-lang="en-US" l10n="CHG" 
oldref="12">Dim A as Variant, B as Variant, C as Variant, D as 
Variant</paragraph>
-<paragraph role="paragraph" id="par_id3159156" xml-lang="en-US" l10n="U" 
oldref="13">Dim vOut as Variant</paragraph>
-<paragraph role="paragraph" id="par_id3151116" xml-lang="en-US" l10n="U" 
oldref="14">A = 10: B = 8: C = 6: D = Null</paragraph>
-<paragraph role="paragraph" id="par_id3145750" xml-lang="en-US" l10n="U" 
oldref="15">vOut = A &gt; B Imp B &gt; C REM returns -1</paragraph>
-<paragraph role="paragraph" id="par_id3156441" xml-lang="en-US" l10n="CHG" 
oldref="16">vOut = B &gt; A Imp B &gt; C REM returns -1</paragraph>
-<paragraph role="paragraph" id="par_id3152596" xml-lang="en-US" l10n="CHG" 
oldref="17">vOut = A &gt; B Imp B &gt; D REM returns 0</paragraph>
-<paragraph role="paragraph" id="par_id3154942" xml-lang="en-US" l10n="CHG" 
oldref="18">vOut = (B &gt; D Imp B &gt; A) REM returns -1</paragraph>
-<paragraph role="paragraph" id="par_id3154492" xml-lang="en-US" l10n="CHG" 
oldref="19">vOut = B Imp A REM returns -1</paragraph>
-<paragraph role="paragraph" id="par_id3147394" xml-lang="en-US" l10n="U" 
oldref="20">End Sub</paragraph>
+<paragraph role="heading" id="hd_id3148664" xml-lang="en-US" level="2" 
l10n="U">Syntax:</paragraph>
+<paragraph role="paragraph" id="par_id3149656" xml-lang="en-US" 
l10n="U">Result = Expression1 Imp Expression2</paragraph>
+<paragraph role="heading" id="hd_id3151212" xml-lang="en-US" level="2" 
l10n="U">Parameters:</paragraph>
+<paragraph role="paragraph" id="par_id3154910" xml-lang="en-US" 
l10n="U"><emph>Result:</emph> Any numeric variable that contains the result of 
the implication.</paragraph>
+<paragraph role="paragraph" id="par_id3156281" xml-lang="en-US" 
l10n="U"><emph>Expression1, Expression2:</emph> Any expressions that you want 
to evaluate with the Imp operator.</paragraph>
+<paragraph role="paragraph" id="par_id3150440" xml-lang="en-US" l10n="U">If 
you use the Imp operator in Boolean expressions, False is only returned if the 
first expression evaluates to True and the second expression to 
False.</paragraph>
+<paragraph role="paragraph" id="par_id3163710" xml-lang="en-US" l10n="U">If 
you use the Imp operator in bit expressions, a bit is deleted from the result 
if the corresponding bit is set in the first expression and the corresponding 
bit is deleted in the second expression.</paragraph>
+<paragraph role="heading" id="hd_id3147318" xml-lang="en-US" level="2" 
l10n="U">Example:</paragraph>
+<paragraph role="paragraph" id="par_id3155854" xml-lang="en-US" l10n="U">Sub 
ExampleImp</paragraph>
+<paragraph role="paragraph" id="par_id3145272" xml-lang="en-US" l10n="CHG">Dim 
A as Variant, B as Variant, C as Variant, D as Variant</paragraph>
+<paragraph role="paragraph" id="par_id3159156" xml-lang="en-US" l10n="U">Dim 
vOut as Variant</paragraph>
+<paragraph role="paragraph" id="par_id3151116" xml-lang="en-US" l10n="U">A = 
10: B = 8: C = 6: D = Null</paragraph>
+<paragraph role="paragraph" id="par_id3145750" xml-lang="en-US" l10n="U">vOut 
= A &gt; B Imp B &gt; C REM returns -1</paragraph>
+<paragraph role="paragraph" id="par_id3156441" xml-lang="en-US" 
l10n="CHG">vOut = B &gt; A Imp B &gt; C REM returns -1</paragraph>
+<paragraph role="paragraph" id="par_id3152596" xml-lang="en-US" 
l10n="CHG">vOut = A &gt; B Imp B &gt; D REM returns 0</paragraph>
+<paragraph role="paragraph" id="par_id3154942" xml-lang="en-US" 
l10n="CHG">vOut = (B &gt; D Imp B &gt; A) REM returns -1</paragraph>
+<paragraph role="paragraph" id="par_id3154492" xml-lang="en-US" 
l10n="CHG">vOut = B Imp A REM returns -1</paragraph>
+<paragraph role="paragraph" id="par_id3147394" xml-lang="en-US" l10n="U">End 
Sub</paragraph>
 </body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/sbasic/shared/03103000.xhp 
b/main/helpcontent2/source/text/sbasic/shared/03103000.xhp
index c13801d29b..490e7a0660 100644
--- a/main/helpcontent2/source/text/sbasic/shared/03103000.xhp
+++ b/main/helpcontent2/source/text/sbasic/shared/03103000.xhp
@@ -33,33 +33,31 @@
 <bookmark xml-lang="en-US" branch="index" id="bm_id3148538">
 <bookmark_value>UBound function</bookmark_value>
 </bookmark>
-<paragraph role="heading" id="hd_id3148538" xml-lang="en-US" level="1" 
l10n="U" oldref="1"><link href="text/sbasic/shared/03103000.xhp" name="UBound 
Function [Runtime]">UBound Function [Runtime]</link></paragraph>
-<paragraph role="paragraph" id="par_id3147573" xml-lang="en-US" l10n="U" 
oldref="2">Returns the upper boundary of an array.</paragraph>
+<paragraph role="heading" id="hd_id3148538" xml-lang="en-US" level="1" 
l10n="U"><link href="text/sbasic/shared/03103000.xhp" name="UBound Function 
[Runtime]">UBound Function [Runtime]</link></paragraph>
+<paragraph role="paragraph" id="par_id3147573" xml-lang="en-US" 
l10n="U">Returns the upper boundary of an array.</paragraph>
 </section>
-<paragraph role="heading" id="hd_id3150984" xml-lang="en-US" level="2" 
l10n="U" oldref="3">Syntax:</paragraph>
-<paragraph role="paragraph" id="par_id3149415" xml-lang="en-US" l10n="U" 
oldref="4">UBound (ArrayName [, Dimension])</paragraph>
-<paragraph role="heading" id="hd_id3153897" xml-lang="en-US" level="2" 
l10n="U" oldref="5">Return value:</paragraph>
-<paragraph role="paragraph" id="par_id3149670" xml-lang="en-US" l10n="U" 
oldref="6">Integer</paragraph>
-<paragraph role="heading" id="hd_id3154347" xml-lang="en-US" level="2" 
l10n="U" oldref="7">Parameters:</paragraph>
-<paragraph role="paragraph" id="par_id3153381" xml-lang="en-US" l10n="U" 
oldref="8">
-<emph>ArrayName:</emph> Name of the array for which you want to determine the 
upper (<emph>Ubound</emph>) or the lower (<emph>LBound</emph>) 
boundary.</paragraph>
-<paragraph role="paragraph" id="par_id3148797" xml-lang="en-US" l10n="U" 
oldref="9">
-<emph>[Dimension]:</emph> Integer that specifies which dimension to return the 
upper(<emph>Ubound</emph>) or lower (<emph>LBound</emph>) boundary for. If no 
value is specified, the boundary of the first dimension is returned.</paragraph>
+<paragraph role="heading" id="hd_id3150984" xml-lang="en-US" level="2" 
l10n="U">Syntax:</paragraph>
+<paragraph role="paragraph" id="par_id3149415" xml-lang="en-US" 
l10n="U">UBound (ArrayName [, Dimension])</paragraph>
+<paragraph role="heading" id="hd_id3153897" xml-lang="en-US" level="2" 
l10n="U">Return value:</paragraph>
+<paragraph role="paragraph" id="par_id3149670" xml-lang="en-US" 
l10n="U">Integer</paragraph>
+<paragraph role="heading" id="hd_id3154347" xml-lang="en-US" level="2" 
l10n="U">Parameters:</paragraph>
+<paragraph role="paragraph" id="par_id3153381" xml-lang="en-US" 
l10n="U"><emph>ArrayName:</emph> Name of the array for which you want to 
determine the upper (<emph>Ubound</emph>) or the lower (<emph>LBound</emph>) 
boundary.</paragraph>
+<paragraph role="paragraph" id="par_id3148797" xml-lang="en-US" 
l10n="U"><emph>[Dimension]:</emph> Integer that specifies which dimension to 
return the upper(<emph>Ubound</emph>) or lower (<emph>LBound</emph>) boundary 
for. If no value is specified, the boundary of the first dimension is 
returned.</paragraph>
 <embed href="text/sbasic/shared/00000003.xhp#errorcode"/>
 <embed href="text/sbasic/shared/00000003.xhp#err5"/>
 <embed href="text/sbasic/shared/00000003.xhp#err9"/>
-<paragraph role="heading" id="hd_id3153192" xml-lang="en-US" level="2" 
l10n="U" oldref="10">Example:</paragraph>
-<paragraph role="paragraph" id="par_id3147229" xml-lang="en-US" l10n="U" 
oldref="11">Sub ExampleUboundLbound</paragraph>
-<paragraph role="paragraph" id="par_id3150440" xml-lang="en-US" l10n="U" 
oldref="12">Dim sVar(10 to 20) As String</paragraph>
-<paragraph role="paragraph" id="par_id3145785" xml-lang="en-US" l10n="U" 
oldref="13">print LBound(sVar())</paragraph>
-<paragraph role="paragraph" id="par_id3153092" xml-lang="en-US" l10n="U" 
oldref="14">print UBound(sVar())</paragraph>
-<paragraph role="paragraph" id="par_id3153727" xml-lang="en-US" l10n="U" 
oldref="15">end Sub</paragraph>
-<paragraph role="paragraph" id="par_id3145271" xml-lang="en-US" l10n="U" 
oldref="16">Sub ExampleUboundLbound2</paragraph>
-<paragraph role="paragraph" id="par_id3153952" xml-lang="en-US" l10n="U" 
oldref="17">Dim sVar(10 to 20,5 To 70) As String</paragraph>
-<paragraph role="paragraph" id="par_id3152596" xml-lang="en-US" l10n="U" 
oldref="18">Print LBound(sVar()) REM Returns 10</paragraph>
-<paragraph role="paragraph" id="par_id3153138" xml-lang="en-US" l10n="U" 
oldref="19">Print UBound(sVar()) REM Returns 20</paragraph>
-<paragraph role="paragraph" id="par_id3149665" xml-lang="en-US" l10n="U" 
oldref="20">Print LBound(sVar(),2) REM Returns 5</paragraph>
-<paragraph role="paragraph" id="par_id3147214" xml-lang="en-US" l10n="U" 
oldref="21">Print UBound(sVar(),2) REM Returns 70</paragraph>
-<paragraph role="paragraph" id="par_id3155855" xml-lang="en-US" l10n="U" 
oldref="22">end Sub</paragraph>
+<paragraph role="heading" id="hd_id3153192" xml-lang="en-US" level="2" 
l10n="U">Example:</paragraph>
+<paragraph role="paragraph" id="par_id3147229" xml-lang="en-US" l10n="U">Sub 
ExampleUboundLbound</paragraph>
+<paragraph role="paragraph" id="par_id3150440" xml-lang="en-US" l10n="U">Dim 
sVar(10 to 20) As String</paragraph>
+<paragraph role="paragraph" id="par_id3145785" xml-lang="en-US" l10n="U">print 
LBound(sVar())</paragraph>
+<paragraph role="paragraph" id="par_id3153092" xml-lang="en-US" l10n="U">print 
UBound(sVar())</paragraph>
+<paragraph role="paragraph" id="par_id3153727" xml-lang="en-US" l10n="U">end 
Sub</paragraph>
+<paragraph role="paragraph" id="par_id3145271" xml-lang="en-US" l10n="U">Sub 
ExampleUboundLbound2</paragraph>
+<paragraph role="paragraph" id="par_id3153952" xml-lang="en-US" l10n="U">Dim 
sVar(10 to 20,5 To 70) As String</paragraph>
+<paragraph role="paragraph" id="par_id3152596" xml-lang="en-US" l10n="U">Print 
LBound(sVar()) REM Returns 10</paragraph>
+<paragraph role="paragraph" id="par_id3153138" xml-lang="en-US" l10n="U">Print 
UBound(sVar()) REM Returns 20</paragraph>
+<paragraph role="paragraph" id="par_id3149665" xml-lang="en-US" l10n="U">Print 
LBound(sVar(),2) REM Returns 5</paragraph>
+<paragraph role="paragraph" id="par_id3147214" xml-lang="en-US" l10n="U">Print 
UBound(sVar(),2) REM Returns 70</paragraph>
+<paragraph role="paragraph" id="par_id3155855" xml-lang="en-US" l10n="U">end 
Sub</paragraph>
 </body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/shared/autopi/01020000.xhp 
b/main/helpcontent2/source/text/shared/autopi/01020000.xhp
index 519504d737..6827e3c095 100644
--- a/main/helpcontent2/source/text/shared/autopi/01020000.xhp
+++ b/main/helpcontent2/source/text/shared/autopi/01020000.xhp
@@ -36,28 +36,28 @@
 </bookmark>
 <bookmark xml-lang="en-US" branch="hid/.uno:AutoPilotFax" id="bm_id3143281" 
localize="false"/>
 <bookmark xml-lang="en-US" 
branch="hid/service:com.sun.star.wizards.fax.CallWizard?start" id="bm_id559709" 
localize="false"/>
-<paragraph role="heading" id="hd_id3150445" xml-lang="en-US" level="1" 
l10n="U" oldref="1">Fax Wizard</paragraph>
-<paragraph role="paragraph" id="par_id3153394" xml-lang="en-US" l10n="CHG" 
oldref="2"><variable id="fax"><ahelp hid=".uno:AutoPilotFax">Opens the wizard 
for faxes.</ahelp> The wizard can help you create document templates for fax 
documents. You can then print the fax documents to a printer or to a fax 
machine, if fax driver software is available.
+<paragraph role="heading" id="hd_id3150445" xml-lang="en-US" level="1" 
l10n="U">Fax Wizard</paragraph>
+<paragraph role="paragraph" id="par_id3153394" xml-lang="en-US" 
l10n="CHG"><variable id="fax"><ahelp hid=".uno:AutoPilotFax">Opens the wizard 
for faxes.</ahelp> The wizard can help you create document templates for fax 
documents. You can then print the fax documents to a printer or to a fax 
machine, if fax driver software is available.
 </variable></paragraph>
 <section id="howtoget">
 <embed href="text/shared/00/00000401.xhp#autopilotfax"/>
 </section>
-<paragraph role="paragraph" id="par_id3154824" xml-lang="en-US" l10n="CHG" 
oldref="3">$[officename] comes with a template for fax documents, which you can 
modify with the wizard to suit your own needs. The wizard leads you 
step-by-step in creating a document template, and offers numerous layout and 
design options. The document preview gives you an impression of how the 
finished fax will appear.</paragraph>
-<paragraph role="paragraph" id="par_id3147088" xml-lang="en-US" l10n="U" 
oldref="4">Within the dialog you can modify your entries and options at any 
time. You can also skip an entire page or even all the wizard pages, in which 
case the current (or default) settings will remain in effect.</paragraph>
+<paragraph role="paragraph" id="par_id3154824" xml-lang="en-US" 
l10n="CHG">$[officename] comes with a template for fax documents, which you can 
modify with the wizard to suit your own needs. The wizard leads you 
step-by-step in creating a document template, and offers numerous layout and 
design options. The document preview gives you an impression of how the 
finished fax will appear.</paragraph>
+<paragraph role="paragraph" id="par_id3147088" xml-lang="en-US" 
l10n="U">Within the dialog you can modify your entries and options at any time. 
You can also skip an entire page or even all the wizard pages, in which case 
the current (or default) settings will remain in effect.</paragraph>
 <embed href="text/shared/autopi/01020100.xhp#seite1"/>
 <embed href="text/shared/autopi/01020200.xhp#seite2"/>
 <embed href="text/shared/autopi/01020300.xhp#seite3"/>
 <embed href="text/shared/autopi/01020400.xhp#seite4"/>
 <embed href="text/shared/autopi/01020500.xhp#seite5"/>
 <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_FAXWIZARD_BACK" 
id="bm_id2001709" localize="false"/>
-<paragraph role="heading" id="hd_id3156156" xml-lang="en-US" level="2" 
l10n="U" oldref="5">Back</paragraph>
-<paragraph role="paragraph" id="par_id3155628" xml-lang="en-US" l10n="U" 
oldref="6"><ahelp hid=".">Click the <emph>Back</emph> button to view the 
settings chosen on the previous page. The current settings will not be modified 
or deleted if you click this button. <emph>Back</emph> will be active from the 
second page onwards.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3156156" xml-lang="en-US" level="2" 
l10n="U">Back</paragraph>
+<paragraph role="paragraph" id="par_id3155628" xml-lang="en-US" 
l10n="U"><ahelp hid=".">Click the <emph>Back</emph> button to view the settings 
chosen on the previous page. The current settings will not be modified or 
deleted if you click this button. <emph>Back</emph> will be active from the 
second page onwards.</ahelp></paragraph>
 <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_FAXWIZARD_NEXT" 
id="bm_id9227271" localize="false"/>
-<paragraph role="heading" id="hd_id3147335" xml-lang="en-US" level="2" 
l10n="U" oldref="7">Next</paragraph>
-<paragraph role="paragraph" id="par_id3156117" xml-lang="en-US" l10n="U" 
oldref="8"><ahelp hid=".">The wizard saves the current settings and goes to the 
next page. The <emph>Next</emph> button will become inactive once you have 
reached the last page.</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3147335" xml-lang="en-US" level="2" 
l10n="U">Next</paragraph>
+<paragraph role="paragraph" id="par_id3156117" xml-lang="en-US" 
l10n="U"><ahelp hid=".">The wizard saves the current settings and goes to the 
next page. The <emph>Next</emph> button will become inactive once you have 
reached the last page.</ahelp></paragraph>
 <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_FAXWIZARD_CREATE" 
id="bm_id2856532" localize="false"/>
-<paragraph role="heading" id="hd_id3152350" xml-lang="en-US" level="2" 
l10n="CHG" oldref="9">Finish</paragraph>
-<paragraph role="paragraph" id="par_id3146948" xml-lang="en-US" l10n="U" 
oldref="10"><ahelp hid=".">According to your selections, the wizard creates a 
document template and saves it. A new document based on the template appears in 
the work area, with the filename "Untitled X".</ahelp></paragraph>
+<paragraph role="heading" id="hd_id3152350" xml-lang="en-US" level="2" 
l10n="CHG">Finish</paragraph>
+<paragraph role="paragraph" id="par_id3146948" xml-lang="en-US" 
l10n="U"><ahelp hid=".">According to your selections, the wizard creates a 
document template and saves it. A new document based on the template appears in 
the work area, with the filename "Untitled X".</ahelp></paragraph>
 <embed href="text/shared/00/00000001.xhp#abbrechen"/>
 <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_FAXWIZARD" 
id="bm_id4632404" localize="false"/><comment>Dialog ID must be below any 
&lt;avis&gt; tag</comment>
 </body>
diff --git a/main/helpcontent2/source/text/shared/guide/formfields.xhp 
b/main/helpcontent2/source/text/shared/guide/formfields.xhp
index 708081fd44..efcb3a73d7 100644
--- a/main/helpcontent2/source/text/shared/guide/formfields.xhp
+++ b/main/helpcontent2/source/text/shared/guide/formfields.xhp
@@ -38,20 +38,20 @@
 <bookmark_value>press buttons, see push buttons</bookmark_value>
 <bookmark_value>push buttons;adding to documents</bookmark_value>
 </bookmark><comment>MW changed "adding;" to "inserting;"</comment>
-<paragraph xml-lang="en-US" id="hd_id3149798" role="heading" level="1" 
l10n="U" oldref="5"><variable id="formfields"><link 
href="text/shared/guide/formfields.xhp" name="Inserting and Editing 
Buttons">Adding a Command Button to a Document</link>
+<paragraph xml-lang="en-US" id="hd_id3149798" role="heading" level="1" 
l10n="U"><variable id="formfields"><link 
href="text/shared/guide/formfields.xhp" name="Inserting and Editing 
Buttons">Adding a Command Button to a Document</link>
 </variable></paragraph>
 <paragraph xml-lang="en-US" id="par_idN10731" role="paragraph" l10n="CHG">You 
can use the Form Controls toolbar to add checkboxes, buttons, tables showing 
data records, and other controls to a document.</paragraph>
 <paragraph xml-lang="en-US" id="par_idN1077F" role="heading" level="2" 
l10n="NEW">To Add a Button to a Document</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3154751" role="listitem" l10n="CHG" 
oldref="6">Choose <item type="menuitem">View - Toolbars - Form 
Controls</item>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154751" role="listitem" 
l10n="CHG">Choose <item type="menuitem">View - Toolbars - Form 
Controls</item>.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3145345" role="listitem" l10n="CHG" 
oldref="7">On the Form Controls toolbar, click the <emph>Push Button</emph> 
icon.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3145345" role="listitem" l10n="CHG">On 
the Form Controls toolbar, click the <emph>Push Button</emph> icon.</paragraph>
 <paragraph xml-lang="en-US" id="par_idN107A4" role="listitem" l10n="NEW">The 
mouse pointer changes to a cross-hair.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3159233" role="listitem" l10n="U" 
oldref="8">In the document, drag to draw the button.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3159233" role="listitem" l10n="U">In the 
document, drag to draw the button.</paragraph>
 </listitem>
 <listitem>
 <paragraph xml-lang="en-US" id="par_idN107B2" role="listitem" 
l10n="NEW">Right-click the button and choose <emph>Control</emph>.</paragraph>
@@ -60,16 +60,16 @@
 <paragraph xml-lang="en-US" id="par_idN107CD" role="listitem" 
l10n="NEW">Specify the properties of the button.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3154923" role="listitem" l10n="CHG" 
oldref="11">To change the button label, click the <emph>General</emph> tab, and 
edit the text in the <emph>Label</emph> box.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154923" role="listitem" l10n="CHG">To 
change the button label, click the <emph>General</emph> tab, and edit the text 
in the <emph>Label</emph> box.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3147303" role="listitem" l10n="U" 
oldref="12">To attach a macro to the button, click the <emph>Events</emph> tab, 
and click the <emph>...</emph> button beside the button action that you want to 
run the macro. In the <emph>Assign Macro</emph> dialog, locate the macro that 
you want to use, and then click <emph>OK</emph>.<comment>UFI: see 
#i34509#</comment></paragraph>
+<paragraph xml-lang="en-US" id="par_id3147303" role="listitem" l10n="U">To 
attach a macro to the button, click the <emph>Events</emph> tab, and click the 
<emph>...</emph> button beside the button action that you want to run the 
macro. In the <emph>Assign Macro</emph> dialog, locate the macro that you want 
to use, and then click <emph>OK</emph>.<comment>UFI: see 
#i34509#</comment></paragraph>
 </listitem>
 <listitem>
 <paragraph xml-lang="en-US" id="par_idN10814" role="listitem" l10n="NEW">Close 
the <emph>Properties</emph> dialog.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3147350" role="listitem" l10n="CHG" 
oldref="76">(Optional) Specify the properties of the form that the button 
belongs to.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147350" role="listitem" 
l10n="CHG">(Optional) Specify the properties of the form that the button 
belongs to.</paragraph>
 </listitem>
 <listitem>
 <paragraph xml-lang="en-US" id="par_idN10828" role="listitem" 
l10n="NEW">Right-click the button and choose <emph>Form</emph>.</paragraph>
diff --git a/main/helpcontent2/source/text/shared/optionen/01014000.xhp 
b/main/helpcontent2/source/text/shared/optionen/01014000.xhp
index 6a3208683c..788bf3a9da 100644
--- a/main/helpcontent2/source/text/shared/optionen/01014000.xhp
+++ b/main/helpcontent2/source/text/shared/optionen/01014000.xhp
@@ -38,23 +38,23 @@
 <bookmark_value>remote configurations</bookmark_value>
 <bookmark_value>Configuration Manager</bookmark_value>
 </bookmark>
-<paragraph role="heading" id="hd_id3153681" xml-lang="en-US" level="1" 
l10n="U" oldref="1"><link href="text/shared/optionen/01014000.xhp" 
name="Network Identity">Network Identity</link></paragraph>
-<paragraph role="paragraph" id="par_id3153562" xml-lang="en-US" l10n="U" 
oldref="2"><ahelp hid=".">Sets the options for a remote configuration access to 
your personal $[officename] settings stored on an LDAP server.</ahelp> To see 
this tab page and to use this feature, remote configuration must be active: You 
need an account on an LDAP server that is running and configured to store 
$[officename] user settings.</paragraph>
+<paragraph role="heading" id="hd_id3153681" xml-lang="en-US" level="1" 
l10n="U"><link href="text/shared/optionen/01014000.xhp" name="Network 
Identity">Network Identity</link></paragraph>
+<paragraph role="paragraph" id="par_id3153562" xml-lang="en-US" 
l10n="U"><ahelp hid=".">Sets the options for a remote configuration access to 
your personal $[officename] settings stored on an LDAP server.</ahelp> To see 
this tab page and to use this feature, remote configuration must be active: You 
need an account on an LDAP server that is running and configured to store 
$[officename] user settings.</paragraph>
 </section>
-<paragraph role="paragraph" id="par_id3149797" xml-lang="en-US" l10n="U" 
oldref="7">Using remote configuration, you can start a copy of $[officename] on 
any computer in the network with your own user data and personal 
configuration.</paragraph><comment>link to how-to ldap config, single signon 
how-to, etc</comment>
+<paragraph role="paragraph" id="par_id3149797" xml-lang="en-US" l10n="U">Using 
remote configuration, you can start a copy of $[officename] on any computer in 
the network with your own user data and personal 
configuration.</paragraph><comment>link to how-to ldap config, single signon 
how-to, etc</comment>
 <!-- removed HID SVX_LISTBOX_RID_SVXPAGE_SSO_LB_MECHANISM -->
-<paragraph role="heading" id="hd_id3155388" xml-lang="en-US" level="2" 
l10n="U" oldref="3">Authentication Method</paragraph>
-<paragraph role="paragraph" id="par_id3147335" xml-lang="en-US" l10n="U" 
oldref="8"><ahelp hid="SVX_LISTBOX_RID_SVXPAGE_SSO_LB_MECHANISM">Choose your 
security mechanism for access to the LDAP server.</ahelp> Choices are Simple or 
Kerberos.</paragraph>
+<paragraph role="heading" id="hd_id3155388" xml-lang="en-US" level="2" 
l10n="U">Authentication Method</paragraph>
+<paragraph role="paragraph" id="par_id3147335" xml-lang="en-US" 
l10n="U"><ahelp hid="SVX_LISTBOX_RID_SVXPAGE_SSO_LB_MECHANISM">Choose your 
security mechanism for access to the LDAP server.</ahelp> Choices are Simple or 
Kerberos.</paragraph>
 <!-- removed HID SVX_EDIT_RID_SVXPAGE_SSO_ED_USERNAME -->
-<paragraph role="heading" id="hd_id3153881" xml-lang="en-US" level="2" 
l10n="U" oldref="4">User name</paragraph>
-<paragraph role="paragraph" id="par_id3148943" xml-lang="en-US" l10n="U" 
oldref="9"><ahelp hid="SVX_EDIT_RID_SVXPAGE_SSO_ED_USERNAME">Using "simple" 
authentication method, you enter your user name on the LDAP server 
here.</ahelp> Using "Kerberos", you just see your user name, but cannot edit 
it.</paragraph>
+<paragraph role="heading" id="hd_id3153881" xml-lang="en-US" level="2" 
l10n="U">User name</paragraph>
+<paragraph role="paragraph" id="par_id3148943" xml-lang="en-US" 
l10n="U"><ahelp hid="SVX_EDIT_RID_SVXPAGE_SSO_ED_USERNAME">Using "simple" 
authentication method, you enter your user name on the LDAP server 
here.</ahelp> Using "Kerberos", you just see your user name, but cannot edit 
it.</paragraph>
 <!-- removed HID SVX_EDIT_RID_SVXPAGE_SSO_ED_PASSWORD -->
-<paragraph role="heading" id="hd_id3153061" xml-lang="en-US" level="2" 
l10n="U" oldref="5">Password</paragraph>
-<paragraph role="paragraph" id="par_id3156343" xml-lang="en-US" l10n="U" 
oldref="10"><ahelp hid="SVX_EDIT_RID_SVXPAGE_SSO_ED_PASSWORD">Using "simple" 
authentication method, enter your password for access to the LDAP server 
here.</ahelp> Using "Kerberos", this box is not active.</paragraph>
+<paragraph role="heading" id="hd_id3153061" xml-lang="en-US" level="2" 
l10n="U">Password</paragraph>
+<paragraph role="paragraph" id="par_id3156343" xml-lang="en-US" 
l10n="U"><ahelp hid="SVX_EDIT_RID_SVXPAGE_SSO_ED_PASSWORD">Using "simple" 
authentication method, enter your password for access to the LDAP server 
here.</ahelp> Using "Kerberos", this box is not active.</paragraph>
 <!-- removed HID SVX_CHECKBOX_RID_SVXPAGE_SSO_CB_PASSWORD -->
-<paragraph role="heading" id="hd_id3146795" xml-lang="en-US" level="2" 
l10n="U" oldref="6">Save password</paragraph>
-<paragraph role="paragraph" id="par_id3150358" xml-lang="en-US" l10n="U" 
oldref="11"><ahelp hid="SVX_CHECKBOX_RID_SVXPAGE_SSO_CB_PASSWORD">Using 
"simple" authentication method, check this box to make your password 
persistent.</ahelp> If the password is persistent and the same user starts 
$[officename] later on, the user name and password will not be requested again. 
Using "Kerberos", this box is not active.</paragraph>
-<paragraph role="paragraph" id="par_id3154939" xml-lang="en-US" l10n="U" 
oldref="12">The password will be stored encrypted in a file called .ssop in 
your <switchinline select="sys"><caseinline select="UNIX">home directory 
+<paragraph role="heading" id="hd_id3146795" xml-lang="en-US" level="2" 
l10n="U">Save password</paragraph>
+<paragraph role="paragraph" id="par_id3150358" xml-lang="en-US" 
l10n="U"><ahelp hid="SVX_CHECKBOX_RID_SVXPAGE_SSO_CB_PASSWORD">Using "simple" 
authentication method, check this box to make your password persistent.</ahelp> 
If the password is persistent and the same user starts $[officename] later on, 
the user name and password will not be requested again. Using "Kerberos", this 
box is not active.</paragraph>
+<paragraph role="paragraph" id="par_id3154939" xml-lang="en-US" l10n="U">The 
password will be stored encrypted in a file called .ssop in your <switchinline 
select="sys"><caseinline select="UNIX">home directory 
 </caseinline><defaultinline>"My Documents" 
folder</defaultinline></switchinline>.</paragraph>
 </body>
 </helpdocument>
diff --git a/main/helpcontent2/source/text/swriter/guide/footer_nextpage.xhp 
b/main/helpcontent2/source/text/swriter/guide/footer_nextpage.xhp
index 4587404410..1798731286 100644
--- a/main/helpcontent2/source/text/swriter/guide/footer_nextpage.xhp
+++ b/main/helpcontent2/source/text/swriter/guide/footer_nextpage.xhp
@@ -35,29 +35,29 @@
 <bookmark_value>continuation pages</bookmark_value>
 <bookmark_value>page numbers; continuation pages</bookmark_value>
 </bookmark>
-<paragraph xml-lang="en-US" id="hd_id3145819" role="heading" level="1" 
l10n="U" oldref="1"><variable id="footer_nextpage"><link 
href="text/swriter/guide/footer_nextpage.xhp" name="Inserting Page Numbers of 
Continuation Pages">Inserting Page Numbers of Continuation Pages</link>
+<paragraph xml-lang="en-US" id="hd_id3145819" role="heading" level="1" 
l10n="U"><variable id="footer_nextpage"><link 
href="text/swriter/guide/footer_nextpage.xhp" name="Inserting Page Numbers of 
Continuation Pages">Inserting Page Numbers of Continuation Pages</link>
 </variable></paragraph>
-<paragraph xml-lang="en-US" id="par_id3154242" role="paragraph" l10n="U" 
oldref="12">You can easily insert the page number of the next page in a footer 
by using a field.</paragraph>
-<paragraph xml-lang="en-US" id="par_id3154256" role="paragraph" l10n="U" 
oldref="4">The page number is only displayed if the following page 
exists.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154242" role="paragraph" l10n="U">You 
can easily insert the page number of the next page in a footer by using a 
field.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3154256" role="paragraph" l10n="U">The 
page number is only displayed if the following page exists.</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3155886" role="listitem" l10n="U" 
oldref="5">Choose <emph>Insert - Footer</emph> and select the page style that 
you want to add the footer to.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155886" role="listitem" l10n="U">Choose 
<emph>Insert - Footer</emph> and select the page style that you want to add the 
footer to.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3147109" role="listitem" l10n="U" 
oldref="6">Place the cursor in the footer and choose <emph>Insert - Fields - 
Other</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147109" role="listitem" l10n="U">Place 
the cursor in the footer and choose <emph>Insert - Fields - 
Other</emph>.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3147134" role="listitem" l10n="U" 
oldref="7">In the <emph>Fields</emph> dialog, click the <emph>Document</emph> 
tab.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3147134" role="listitem" l10n="U">In the 
<emph>Fields</emph> dialog, click the <emph>Document</emph> tab.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3150955" role="listitem" l10n="U" 
oldref="8">Click 'Page' in the <emph>Type</emph> list and 'Next page' in the 
<emph>Select</emph> list.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150955" role="listitem" l10n="U">Click 
'Page' in the <emph>Type</emph> list and 'Next page' in the <emph>Select</emph> 
list.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3150517" role="listitem" l10n="U" 
oldref="9">Click a numbering style in the <item type="menuitem">Format</item> 
list.</paragraph>
-<paragraph xml-lang="en-US" id="par_id3150537" role="listitem" l10n="U" 
oldref="10">If you select 'Text' in the <emph>Format</emph> list, only the text 
that you enter in the <emph>Value</emph> box is displayed in the 
field.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150517" role="listitem" l10n="U">Click 
a numbering style in the <item type="menuitem">Format</item> list.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150537" role="listitem" l10n="U">If you 
select 'Text' in the <emph>Format</emph> list, only the text that you enter in 
the <emph>Value</emph> box is displayed in the field.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3150727" role="listitem" l10n="U" 
oldref="11">Click <emph>Insert</emph> to insert the field with the page 
number.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150727" role="listitem" l10n="U">Click 
<emph>Insert</emph> to insert the field with the page number.</paragraph>
 </listitem>
 </list>
 <embed href="text/shared/00/00000004.xhp#related"/>
diff --git a/main/helpcontent2/source/text/swriter/guide/footer_pagenumber.xhp 
b/main/helpcontent2/source/text/swriter/guide/footer_pagenumber.xhp
index 00386a3e2d..c3a0c42b1e 100644
--- a/main/helpcontent2/source/text/swriter/guide/footer_pagenumber.xhp
+++ b/main/helpcontent2/source/text/swriter/guide/footer_pagenumber.xhp
@@ -35,26 +35,26 @@
 <bookmark_value>page numbers; footers</bookmark_value>
 <bookmark_value>numbering;pages</bookmark_value>
 </bookmark>
-<paragraph xml-lang="en-US" id="hd_id3155624" role="heading" level="1" 
l10n="U" oldref="1"><variable id="footer_pagenumber"><link 
href="text/swriter/guide/footer_pagenumber.xhp" name="Inserting Page Numbers in 
Footers">Inserting Page Numbers in Footers</link>
+<paragraph xml-lang="en-US" id="hd_id3155624" role="heading" level="1" 
l10n="U"><variable id="footer_pagenumber"><link 
href="text/swriter/guide/footer_pagenumber.xhp" name="Inserting Page Numbers in 
Footers">Inserting Page Numbers in Footers</link>
 </variable></paragraph>
 <paragraph xml-lang="en-US" id="par_id8230842" role="paragraph" l10n="NEW">You 
can easily insert a page number field in the footer of your document. You can 
also add a page count to the footer, for example, in the form "Page 9 of 
12"</paragraph>
 <paragraph xml-lang="en-US" id="hd_id7867366" role="heading" level="2" 
l10n="NEW">To Insert a Page Number</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3150508" role="listitem" l10n="U" 
oldref="2">Choose <emph>Insert - Footer</emph> and select the page style that 
you want to add the footer to.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150508" role="listitem" l10n="U">Choose 
<emph>Insert - Footer</emph> and select the page style that you want to add the 
footer to.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3150534" role="listitem" l10n="U" 
oldref="3">Choose <emph>Insert - Fields - Page Number</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3150534" role="listitem" l10n="U">Choose 
<emph>Insert - Fields - Page Number</emph>.</paragraph>
 </listitem>
 </list>
-<paragraph xml-lang="en-US" id="par_id3153155" role="paragraph" l10n="U" 
oldref="4">If you want, you can align the page number field as you would 
text.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3153155" role="paragraph" l10n="U">If 
you want, you can align the page number field as you would text.</paragraph>
 <paragraph xml-lang="en-US" id="hd_id2988677" role="heading" level="2" 
l10n="NEW">To Additionally Add a Page Count</paragraph>
 <list type="ordered">
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3155532" role="listitem" l10n="U" 
oldref="6">Click in front of the page number field, type <item 
type="literal">Page</item> and enter a space; click after the field, enter a 
space and then type <item type="literal">of</item> and enter another 
space.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155532" role="listitem" l10n="U">Click 
in front of the page number field, type <item type="literal">Page</item> and 
enter a space; click after the field, enter a space and then type <item 
type="literal">of</item> and enter another space.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3155554" role="listitem" l10n="U" 
oldref="7">Choose <emph>Insert - Fields - Page Count</emph>.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3155554" role="listitem" l10n="U">Choose 
<emph>Insert - Fields - Page Count</emph>.</paragraph>
 </listitem>
 </list>
 <embed href="text/shared/00/00000004.xhp#related"/>
diff --git a/main/helpcontent2/source/text/swriter/guide/tablemode.xhp 
b/main/helpcontent2/source/text/swriter/guide/tablemode.xhp
index 669f248215..634676008c 100644
--- a/main/helpcontent2/source/text/swriter/guide/tablemode.xhp
+++ b/main/helpcontent2/source/text/swriter/guide/tablemode.xhp
@@ -38,19 +38,19 @@
 <bookmark_value>keyboard;modifying the behavior of 
rows/columns</bookmark_value>
 <bookmark_value>behavior of rows/columns</bookmark_value>
 </bookmark>
-<paragraph xml-lang="en-US" id="hd_id3155856" role="heading" level="1" 
l10n="CHG" oldref="7"><variable id="tablemode"><link 
href="text/swriter/guide/tablemode.xhp" name="Modifying the Behavior of Rows 
and Columns for Table">Modifying Rows and Columns by 
Keyboard</link></variable></paragraph>
-<paragraph xml-lang="en-US" id="par_id3149835" role="paragraph" l10n="U" 
oldref="12">When you insert or delete cells, rows or columns in a table, the 
<item type="menuitem">Behavior of rows/columns</item> options determine how the 
neighboring elements are affected. For example, you can only insert new rows 
and columns into a table with fixed row and column dimensions if space 
permits.</paragraph>
+<paragraph xml-lang="en-US" id="hd_id3155856" role="heading" level="1" 
l10n="CHG"><variable id="tablemode"><link 
href="text/swriter/guide/tablemode.xhp" name="Modifying the Behavior of Rows 
and Columns for Table">Modifying Rows and Columns by 
Keyboard</link></variable></paragraph>
+<paragraph xml-lang="en-US" id="par_id3149835" role="paragraph" l10n="U">When 
you insert or delete cells, rows or columns in a table, the <item 
type="menuitem">Behavior of rows/columns</item> options determine how the 
neighboring elements are affected. For example, you can only insert new rows 
and columns into a table with fixed row and column dimensions if space 
permits.</paragraph>
 <paragraph xml-lang="en-US" id="par_id7344279" role="note" l10n="NEW">Note 
that these properties are valid only for changes to the column width that are 
made using the keyboard. Using the mouse, you are free to make any column width 
changes.<comment>UFI: fixes bugtraq 4971582</comment></paragraph>
-<paragraph xml-lang="en-US" id="par_id3156110" role="paragraph" l10n="U" 
oldref="8">To set the <item type="menuitem">Behavior of rows/columns</item> 
options for tables in text documents, choose <item 
type="menuitem"><switchinline select="sys"><caseinline 
select="MAC">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - 
Options</defaultinline></switchinline> - %PRODUCTNAME Writer - Table</item>, or 
use the <item type="menuitem">Fixed</item>, <item 
type="menuitem">Fixed/Proportion [...]
+<paragraph xml-lang="en-US" id="par_id3156110" role="paragraph" l10n="U">To 
set the <item type="menuitem">Behavior of rows/columns</item> options for 
tables in text documents, choose <item type="menuitem"><switchinline 
select="sys"><caseinline select="MAC">%PRODUCTNAME - 
Preferences</caseinline><defaultinline>Tools - 
Options</defaultinline></switchinline> - %PRODUCTNAME Writer - Table</item>, or 
use the <item type="menuitem">Fixed</item>, <item 
type="menuitem">Fixed/Proportional</item>,  [...]
 <list type="unordered">
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3149638" role="listitem" l10n="U" 
oldref="9"><emph>Fixed</emph> - changes only affect the adjacent cell, and not 
the entire table. For example, when you widen a cell, the adjacent cell becomes 
narrower, but the width of the table remains constant.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149638" role="listitem" 
l10n="U"><emph>Fixed</emph> - changes only affect the adjacent cell, and not 
the entire table. For example, when you widen a cell, the adjacent cell becomes 
narrower, but the width of the table remains constant.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3149613" role="listitem" l10n="U" 
oldref="10"><emph>Fixed, proportional</emph> - changes affect the entire table, 
and wide cells shrink more than narrow cells. For example, when you widen a 
cell, the adjacent cells become proportionally narrower, but the width of the 
table remains constant.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149613" role="listitem" 
l10n="U"><emph>Fixed, proportional</emph> - changes affect the entire table, 
and wide cells shrink more than narrow cells. For example, when you widen a 
cell, the adjacent cells become proportionally narrower, but the width of the 
table remains constant.</paragraph>
 </listitem>
 <listitem>
-<paragraph xml-lang="en-US" id="par_id3149864" role="listitem" l10n="U" 
oldref="11"><emph>Variable</emph> - changes affect the table size. For example, 
when you widen a cell, the width of the table increases.</paragraph>
+<paragraph xml-lang="en-US" id="par_id3149864" role="listitem" 
l10n="U"><emph>Variable</emph> - changes affect the table size. For example, 
when you widen a cell, the width of the table increases.</paragraph>
 </listitem>
 </list>
 <embed href="text/shared/00/00000004.xhp#related"/>

Reply via email to