[Libreoffice-commits] help.git: source/media source/text

2020-06-19 Thread Alain Romedenne (via logerrit)
 source/media/helpimg/sbasic/ElseIf_fragment.svg   |   22 ++-
 source/media/helpimg/sbasic/If_statement.svg  |   24 ++--
 source/media/helpimg/sbasic/Select-Case_statement.svg |   29 ++--
 source/text/sbasic/shared/03090101.xhp|   68 +++
 source/text/sbasic/shared/03090102.xhp|   20 ++-
 source/text/sbasic/shared/03090103.xhp|   15 +-
 source/text/sbasic/shared/03090201.xhp|  107 --
 source/text/sbasic/shared/03090203.xhp|   50 +---
 8 files changed, 198 insertions(+), 137 deletions(-)

New commits:
commit 79b88ef30847c5f6aa72ed8a1695879eecb81113
Author: Alain Romedenne 
AuthorDate: Mon Jun 15 16:44:54 2020 +0200
Commit: Olivier Hallot 
CommitDate: Fri Jun 19 19:05:57 2020 +0200

tdf#131416 Basic statements syntax diagrams

- Do Until/Do While
- If ElseIf EndIf
- While

- minor fix to Select Case statement

Change-Id: Ie72759b2277c6d128ea7db4af68f76560f955f4e
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/96345
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/source/media/helpimg/sbasic/ElseIf_fragment.svg 
b/source/media/helpimg/sbasic/ElseIf_fragment.svg
index b423bc7fb..49759d441 100644
--- a/source/media/helpimg/sbasic/ElseIf_fragment.svg
+++ b/source/media/helpimg/sbasic/ElseIf_fragment.svg
@@ -1,4 +1,4 @@
-http://www.w3.org/2000/svg;>
+http://www.w3.org/2000/svg;>
 
 /*  */
 
 
-
-
-
-
-ElseIf
-condition
-Then
-statements
-
\ No newline at end of file
+
+
+
+
+
+ElseIf
+Else If
+expression
+Then
+statements
+
\ No newline at end of file
diff --git a/source/media/helpimg/sbasic/If_statement.svg 
b/source/media/helpimg/sbasic/If_statement.svg
index 2717455dc..cd37c12b5 100644
--- a/source/media/helpimg/sbasic/If_statement.svg
+++ b/source/media/helpimg/sbasic/If_statement.svg
@@ -1,4 +1,4 @@
-http://www.w3.org/2000/svg;>
+http://www.w3.org/2000/svg;>
 
 /*  */
 
-
-If
-condition
-Then
-statements
-
-
-Else 
options
-End If
\ No newline at end of file
+
+If
+condition
+Then
+statements
+
+
+Else 
options
+
+
+
+EndIf
+End If
\ No newline at end of file
diff --git a/source/media/helpimg/sbasic/Select-Case_statement.svg 
b/source/media/helpimg/sbasic/Select-Case_statement.svg
index 199819461..97c2b49a5 100644
--- a/source/media/helpimg/sbasic/Select-Case_statement.svg
+++ b/source/media/helpimg/sbasic/Select-Case_statement.svg
@@ -1,4 +1,4 @@
-http://www.w3.org/2000/svg;>
+http://www.w3.org/2000/svg;>
 
 /*  */
 
 
-
-Select Case
-
-
-Case
-
-Else
-
-expression
-,
-statements
-
-End Select
\ No newline at end of file
+
+Select Case
+expression
+
+
+Case
+
+Else
+
+value
+,
+statements
+
+End Select
\ No newline at end of file
diff --git a/source/text/sbasic/shared/03090101.xhp 
b/source/text/sbasic/shared/03090101.xhp
index 71832b815..bd9875630 100644
--- a/source/text/sbasic/shared/03090101.xhp
+++ b/source/text/sbasic/shared/03090101.xhp
@@ -27,48 +27,72 @@
 
 
 
-
 
 
   If statement
+  ElseIf; If statement
+  Else If;If statement
+  Else;If statement
+  Else;If statement
+  End If;If statement
+  EndIf;If statement
 
 
-
-If...Then...Else Statement
-Defines one or 
more statement blocks that you only want to execute if a given condition is 
True.
+If...Then...Else Statement
+Defines one or 
more statement blocks that you only want to execute if a given condition or 
expression is True.
 
 
-Syntax:
+
+If...EndIf statement
+ElseIf fragment
+Else fragment
+
+
+  If condition 
Then 
+  
statements
+  [{ElseIf|Else If} expression Then
+  
statements]
+  [Else 

+  
statements]
+  {EndIf|End If}
+
+  Instead of 
Else If you can write ElseIf, instead of End 
If you can write EndIf.
+  If statements can be shortened 
to one line when using single statement blocks.
 
-If 
condition=true Then Statement block [ElseIf condition=true Then] Statement 
block [Else] Statement block EndIf
+  If 
condition Then statement [Else statement]
 
-Instead of 
Else If you can write ElseIf, instead of End If you can write EndIf.
 
-Parameters:
-The 
If...Then statement executes program blocks depending on given 
conditions. When $[officename] Basic encounters an If statement, 
the condition is tested. If the condition is True, all subsequent statements up 
to the next Else or ElseIf statement are executed. If 
the condition is False, and an ElseIf statement follows, 
$[officename] Basic tests the next condition and executes the following 
statements if the condition is True. If False, the program continues either 
with the next ElseIf or Else statement. Statements 
following Else are executed only if none of the previously tested 
conditions were True. After all conditions are evaluated, and the corresponding 
statements 

[Libreoffice-commits] help.git: source/media source/text

2020-04-30 Thread LibreOfficiant (via logerrit)
 source/media/helpimg/sbasic/Dim_statement.svg   |   32 --
 source/media/helpimg/sbasic/ReDim_statement.svg |   54 
 source/media/helpimg/sbasic/Type_statement.svg  |   34 +++
 source/text/sbasic/shared/03090413.xhp  |2 
 source/text/sbasic/shared/03103700.xhp  |   26 +++
 5 files changed, 82 insertions(+), 66 deletions(-)

New commits:
commit 21fd17892ae4827f66d16a67a9c30c1854c5079d
Author: LibreOfficiant 
AuthorDate: Wed Apr 29 12:13:50 2020 +0200
Commit: Olivier Hallot 
CommitDate: Thu Apr 30 18:07:54 2020 +0200

tdf#131416 Basic syntax diagrams

- Add UNO objects in Dim, ReDim statements
- Include std fragments in Dim, Redim, Type statements
- "@" omission in Dim, ReDim Statements
- Replace bugged example in Let statement

Change-Id: I500e1dcaa605978981e3b96cb277664fe5916282
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/93131
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/source/media/helpimg/sbasic/Dim_statement.svg 
b/source/media/helpimg/sbasic/Dim_statement.svg
index f2d06e0b2..31ac71596 100644
--- a/source/media/helpimg/sbasic/Dim_statement.svg
+++ b/source/media/helpimg/sbasic/Dim_statement.svg
@@ -1,4 +1,4 @@
-http://www.w3.org/2000/svg;>
+http://www.w3.org/2000/svg;>
 
 /* Private
 Public
 Static
-
-
+
+
 variable
-
-
+
+
 
 
 array
-
+
 As
-type-name
-
-type-car
-
-[Libreoffice-commits] help.git: source/media source/text

 source/media/helpimg/sbasic/type-name_fragment.svg |   29 +++--
 source/text/sbasic/shared/03103600.xhp |   13 +
 2 files changed, 29 insertions(+), 13 deletions(-)

New commits:
commit 5f437431f487467f3bc329aa928abcf8e271b365
Author: LibreOfficiant 
AuthorDate: Tue Apr 21 13:27:13 2020 +0100
Commit: Olivier Hallot 
CommitDate: Thu Apr 23 17:29:01 2020 +0200

tdf#129366 Basic Byte datatype information

- TypeName function
- VarType function
- syntax diagram fragment update

Change-Id: I412e95c9eb8a3b84158b3888025081600030167e
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/92533
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/source/media/helpimg/sbasic/type-name_fragment.svg 
b/source/media/helpimg/sbasic/type-name_fragment.svg
index d469b104e..3e6926e53 100644
--- a/source/media/helpimg/sbasic/type-name_fragment.svg
+++ b/source/media/helpimg/sbasic/type-name_fragment.svg
@@ -1,4 +1,4 @@
-http://www.w3.org/2000/svg;>
+http://www.w3.org/2000/svg;>
 
 /*  */
 
-
-
-
-Double
-Single
-Long
-Integer
-Variant
-Object
-Currency
-Date
-String
\ No newline at end of file
+
+
+
+Boolean
+Byte
+Variant
+Currency
+Date
+String
+
+Long
+Integer
+Object
+Single
+Double
\ No newline at end of file
diff --git a/source/text/sbasic/shared/03103600.xhp 
b/source/text/sbasic/shared/03103600.xhp
index 600998c44..ff74db48e 100644
--- a/source/text/sbasic/shared/03103600.xhp
+++ b/source/text/sbasic/shared/03103600.xhp
@@ -78,6 +78,19 @@
 
   Boolean 
variable
 
+
+
+  Byte
+
+
+   
+
+
+  17
+
+
+  Byte 
variable
+
   
   
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: source/media source/text

 source/media/helpimg/sbasic/type-car_fragment.svg |   17 -
 source/text/sbasic/shared/fragments.xhp   |7 ---
 2 files changed, 12 insertions(+), 12 deletions(-)

New commits:
commit 44640598eda121aa83d4e89b874579d90f00e6fb
Author: LibreOfficiant 
AuthorDate: Wed Apr 22 16:40:44 2020 +0100
Commit: Olivier Hallot 
CommitDate: Thu Apr 23 17:17:48 2020 +0200

tdf#36737 Clarify routine arguments initialisation

in those contexts:
- native LibreOffice Basic
- w/ Option Compatible
- w/ Option VBASupport 1/0

- Added missing Byte, Boolean datatypes
- type declaration caracters fragment conciser layout

Change-Id: I53387018223466ef7452d87fb166d5d9e6de0594
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/92540
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/source/media/helpimg/sbasic/type-car_fragment.svg 
b/source/media/helpimg/sbasic/type-car_fragment.svg
index db648bbdd..8bc73c93e 100644
--- a/source/media/helpimg/sbasic/type-car_fragment.svg
+++ b/source/media/helpimg/sbasic/type-car_fragment.svg
@@ -1,4 +1,4 @@
-http://www.w3.org/2000/svg;>
+http://www.w3.org/2000/svg;>
 
 /*  */
 
-
-
-
-
-%
-!
-#
-$
\ No newline at end of file
+
+
+%
+
+!
+#
+$
\ No newline at end of file
diff --git a/source/text/sbasic/shared/fragments.xhp 
b/source/text/sbasic/shared/fragments.xhp
index 74974886e..a0ab0b575 100644
--- a/source/text/sbasic/shared/fragments.xhp
+++ b/source/text/sbasic/shared/fragments.xhp
@@ -32,9 +32,10 @@
 ByVal: The argument is passed by 
value. Its value can be modified by the called routine.
 type-car: Type declaration 
character.
 type-name: Primitive data type name. 
Library or module defined types can also be specified.
-= 
expression: Specify a default value for the argument, matching its 
declared type. Optional  is necessary for each argument 
specifying a default value.
+= 
expression: Specify a default value for the argument, matching its 
declared type. Optional  is necessary for each argument 
specifying a default value.
 ParamArray: Use 
ParamArray when the number of parameters is undetermined. A 
typical scenario is that of a Calc user-defined function. Using 
ParamArray should be limited to the last argument of a 
routine.
-UsingParamArray or 
= expression require Option 
Compatible to be placed before the executable program code in a module. 

+UsingParamArray or 
= expression require Option 
Compatible to be placed before the executable program code in a 
module.
+  When using Option 
VBASupport 1, Optional arguments with no default 
value (= expression) are initialized according to their data type, 
except if Variant.
 
 
 
@@ -53,7 +54,7 @@
   type-name fragment
 data types 
fragment
 
-  {Currency|Date|Double|Integer|Long|Object|Single|String|Variant}
+  {Boolean|Byte|Currency|Date|Double|Integer|Long|Object|Single|String|Variant}
 
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: source/media source/text

 source/media/helpimg/python/python_shell.png |binary
 source/text/sbasic/python/python_shell.xhp   |2 +-
 2 files changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 0e323bedb182d71c72ef08ec0f745bb60830a2c3
Author: LibreOfficiant 
AuthorDate: Wed Mar 27 15:27:59 2019 +0100
Commit: Olivier Hallot 
CommitDate: Tue Apr 2 15:02:34 2019 +0200

Current help page does not provide focus on UNO

...introspection that Python console is offering.

Change-Id: Ic35833d7658d3ae9d465c1f3f7cc7a2ea1ecfa1a
Reviewed-on: https://gerrit.libreoffice.org/69831
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/source/media/helpimg/python/python_shell.png 
b/source/media/helpimg/python/python_shell.png
index afb1738a0..bde75058b 100644
Binary files a/source/media/helpimg/python/python_shell.png and 
b/source/media/helpimg/python/python_shell.png differ
diff --git a/source/text/sbasic/python/python_shell.xhp 
b/source/text/sbasic/python/python_shell.xhp
index 5ccd780f7..0b724b88d 100644
--- a/source/text/sbasic/python/python_shell.xhp
+++ b/source/text/sbasic/python/python_shell.xhp
@@ -22,7 +22,7 @@
 
 Running Python Interactive Console
 
-The Python interactive console, 
also known as Python interpreter or Python shell, provides programmers with a 
quick way to execute commands and try out and test code without creating a 
file. %PRODUCTNAME Python modules documentation can be obtained from the 
terminal.
+The Python interactive console, 
also known as Python interpreter or Python shell, provides programmers with a 
quick way to execute commands and try out and test code without creating a 
file. UNO objects introspection as well as %PRODUCTNAME Python modules 
documentation can be obtained from the terminal.
 Using a Basic 
macro:
 
 Sub 
interpreter_console
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] help.git: source/media source/text

 0 files changed

New commits:
commit 01a40cf7346582ca284194bb9e27989a5cf4f565
Author: Andrea Gelmini 
AuthorDate: Sat Jan 12 00:30:50 2019 +0100
Commit: Adolfo Jayme Barrientos 
CommitDate: Sat Jan 12 12:04:44 2019 +0100

Removed executable permission on data files

Change-Id: I6d1770081388a82f22c0884d1194197ee0df4e43
Reviewed-on: https://gerrit.libreoffice.org/66201
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/source/media/helpimg/starmath/fo21601.svg 
b/source/media/helpimg/starmath/fo21601.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fo21602.svg 
b/source/media/helpimg/starmath/fo21602.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fo21603.svg 
b/source/media/helpimg/starmath/fo21603.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fo21604.svg 
b/source/media/helpimg/starmath/fo21604.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fo21605.svg 
b/source/media/helpimg/starmath/fo21605.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fo21606.svg 
b/source/media/helpimg/starmath/fo21606.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fo21607.svg 
b/source/media/helpimg/starmath/fo21607.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fo21609.svg 
b/source/media/helpimg/starmath/fo21609.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fo21610.svg 
b/source/media/helpimg/starmath/fo21610.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fo21611.svg 
b/source/media/helpimg/starmath/fo21611.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fo21613.svg 
b/source/media/helpimg/starmath/fo21613.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fo21614.svg 
b/source/media/helpimg/starmath/fo21614.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fo21615.svg 
b/source/media/helpimg/starmath/fo21615.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fu21501.svg 
b/source/media/helpimg/starmath/fu21501.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fu21502.svg 
b/source/media/helpimg/starmath/fu21502.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fu21503.svg 
b/source/media/helpimg/starmath/fu21503.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fu21504.svg 
b/source/media/helpimg/starmath/fu21504.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fu21505.svg 
b/source/media/helpimg/starmath/fu21505.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fu21506.svg 
b/source/media/helpimg/starmath/fu21506.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fu21507.svg 
b/source/media/helpimg/starmath/fu21507.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fu21508.svg 
b/source/media/helpimg/starmath/fu21508.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fu21509.svg 
b/source/media/helpimg/starmath/fu21509.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fu21510.svg 
b/source/media/helpimg/starmath/fu21510.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fu21511.svg 
b/source/media/helpimg/starmath/fu21511.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fu21512.svg 
b/source/media/helpimg/starmath/fu21512.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fu21513.svg 
b/source/media/helpimg/starmath/fu21513.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fu21514.svg 
b/source/media/helpimg/starmath/fu21514.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fu21515.svg 
b/source/media/helpimg/starmath/fu21515.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fu21516.svg 
b/source/media/helpimg/starmath/fu21516.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fu21517.svg 
b/source/media/helpimg/starmath/fu21517.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fu21518.svg 
b/source/media/helpimg/starmath/fu21518.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fu21519.svg 
b/source/media/helpimg/starmath/fu21519.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fu21520.svg 
b/source/media/helpimg/starmath/fu21520.svg
old mode 100755
new mode 100644
diff --git a/source/media/helpimg/starmath/fu21521.svg 
b/source/media/helpimg/starmath/fu21521.svg
old mode 100755
new mode 100644
diff --git 

[Libreoffice-commits] help.git: source/media source/text

 source/media/files/scalc/am/functions_ifs.ods  |binary
 source/media/files/scalc/ar/functions_ifs.ods  |binary
 source/media/files/scalc/ast/functions_ifs.ods |binary
 source/media/files/scalc/bg/functions_ifs.ods  |binary
 source/media/files/scalc/bn-IN/functions_ifs.ods   |binary
 source/media/files/scalc/bn/functions_ifs.ods  |binary
 source/media/files/scalc/bo/functions_ifs.ods  |binary
 source/media/files/scalc/bs/functions_ifs.ods  |binary
 source/media/files/scalc/ca-valencia/functions_ifs.ods |binary
 source/media/files/scalc/ca/functions_ifs.ods  |binary
 source/media/files/scalc/cs/functions_ifs.ods  |binary
 source/media/files/scalc/da/functions_ifs.ods  |binary
 source/media/files/scalc/de/functions_ifs.ods  |binary
 source/media/files/scalc/dz/functions_ifs.ods  |binary
 source/media/files/scalc/el/functions_ifs.ods  |binary
 source/media/files/scalc/en-GB/functions_ifs.ods   |binary
 source/media/files/scalc/en-US/functions_ifs.ods   |binary
 source/media/files/scalc/en-ZA/functions_ifs.ods   |binary
 source/media/files/scalc/eo/functions_ifs.ods  |binary
 source/media/files/scalc/es/functions_ifs.ods  |binary
 source/media/files/scalc/et/functions_ifs.ods  |binary
 source/media/files/scalc/eu/functions_ifs.ods  |binary
 source/media/files/scalc/fi/functions_ifs.ods  |binary
 source/media/files/scalc/fr/functions_ifs.ods  |binary
 source/media/files/scalc/functions_ifs.ods |binary
 source/media/files/scalc/gl/functions_ifs.ods  |binary
 source/media/files/scalc/gu/functions_ifs.ods  |binary
 source/media/files/scalc/he/functions_ifs.ods  |binary
 source/media/files/scalc/hi/functions_ifs.ods  |binary
 source/media/files/scalc/hr/functions_ifs.ods  |binary
 source/media/files/scalc/hu/functions_ifs.ods  |binary
 source/media/files/scalc/id/functions_ifs.ods  |binary
 source/media/files/scalc/is/functions_ifs.ods  |binary
 source/media/files/scalc/it/functions_ifs.ods  |binary
 source/media/files/scalc/ja/functions_ifs.ods  |binary
 source/media/files/scalc/ka/functions_ifs.ods  |binary
 source/media/files/scalc/km/functions_ifs.ods  |binary
 source/media/files/scalc/ko/functions_ifs.ods  |binary
 source/media/files/scalc/lo/functions_ifs.ods  |binary
 source/media/files/scalc/lt/functions_ifs.ods  |binary
 source/media/files/scalc/lv/functions_ifs.ods  |binary
 source/media/files/scalc/mk/functions_ifs.ods  |binary
 source/media/files/scalc/nb/functions_ifs.ods  |binary
 source/media/files/scalc/ne/functions_ifs.ods  |binary
 source/media/files/scalc/nl/functions_ifs.ods  |binary
 source/media/files/scalc/nn/functions_ifs.ods  |binary
 source/media/files/scalc/om/functions_ifs.ods  |binary
 source/media/files/scalc/pl/functions_ifs.ods  |binary
 source/media/files/scalc/pt-BR/functions_ifs.ods   |binary
 source/media/files/scalc/pt/functions_ifs.ods  |binary
 source/media/files/scalc/qtz/functions_ifs.ods |binary
 source/media/files/scalc/ro/functions_ifs.ods  |binary
 source/media/files/scalc/ru/functions_ifs.ods  |binary
 source/media/files/scalc/si/functions_ifs.ods  |binary
 source/media/files/scalc/sid/functions_ifs.ods |binary
 source/media/files/scalc/sk/functions_ifs.ods  |binary
 source/media/files/scalc/sl/functions_ifs.ods  |binary
 source/media/files/scalc/sq/functions_ifs.ods  |binary
 source/media/files/scalc/sv/functions_ifs.ods  |binary
 source/media/files/scalc/ta/functions_ifs.ods  |binary
 source/media/files/scalc/tg/functions_ifs.ods  |binary
 source/media/files/scalc/tr/functions_ifs.ods  |binary
 source/media/files/scalc/ug/functions_ifs.ods  |binary
 source/media/files/scalc/uk/functions_ifs.ods  |binary
 source/media/files/scalc/vi/functions_ifs.ods  |binary
 source/media/files/scalc/zh-CN/functions_ifs.ods   |binary
 source/media/files/scalc/zh-TW/functions_ifs.ods   |binary
 source/text/scalc/01/04060106.xhp  |4 +--
 source/text/scalc/01/04060181.xhp  |8 +++
 source/text/scalc/01/04060184.xhp  |   16 +++
 source/text/scalc/01/func_averageif.xhp|   13 +++-
 source/text/scalc/01/func_averageifs.xhp   |   17 ++--
 source/text/scalc/01/func_countifs.xhp |   14 -
 source/text/scalc/01/func_maxifs.xhp   |   17 ++--
 source/text/scalc/01/func_minifs.xhp   |   18 +++--
 source/text/scalc/01/func_sumifs.xhp   |   14 +++--
 76 files changed, 97 

[Libreoffice-commits] help.git: source/media source/text

 source/media/screenshots/modules/swriter/ui/exportepub/en-US/EPubDialog.png 
|binary
 source/media/screenshots/modules/swriter/ui/exportepub/pt-BR/EPubDialog.png 
|binary
 source/text/shared/00/0002.xhp  |  
  7 
 source/text/shared/00/0401.xhp  |  
 25 ++-
 source/text/shared/01/ref_epub_export.xhp   |  
 77 ++
 5 files changed, 81 insertions(+), 28 deletions(-)

New commits:
commit 3b48a6feb0728a07fba8213ee39f39bb835812f3
Author: Olivier Hallot 
Date:   Sun Apr 29 16:55:24 2018 -0300

Improve EPUB help page

After some remarks from translators.
Added localized dialog too.
Added Adolfo suggestions.

Change-Id: Ie7311bb6f612284baa69a26c929cda99fda4e0a9
Reviewed-on: https://gerrit.libreoffice.org/53630
Tested-by: Jenkins 
Reviewed-by: Olivier Hallot 

diff --git 
a/source/media/screenshots/modules/swriter/ui/exportepub/en-US/EPubDialog.png 
b/source/media/screenshots/modules/swriter/ui/exportepub/en-US/EPubDialog.png
new file mode 100644
index 0..ae4814ae8
Binary files /dev/null and 
b/source/media/screenshots/modules/swriter/ui/exportepub/en-US/EPubDialog.png 
differ
diff --git 
a/source/media/screenshots/modules/swriter/ui/exportepub/pt-BR/EPubDialog.png 
b/source/media/screenshots/modules/swriter/ui/exportepub/pt-BR/EPubDialog.png
new file mode 100644
index 0..0007dcdca
Binary files /dev/null and 
b/source/media/screenshots/modules/swriter/ui/exportepub/pt-BR/EPubDialog.png 
differ
diff --git a/source/text/shared/00/0002.xhp 
b/source/text/shared/00/0002.xhp
index 8ed48330f..b417867dc 100644
--- a/source/text/shared/00/0002.xhp
+++ b/source/text/shared/00/0002.xhp
@@ -48,6 +48,13 @@
 The 
Content Management Interoperability Services (CMIS) standard defines a domain 
model and Web Services and Restful AtomPub bindings that will enable greater 
interoperability of Enterprise Content Management (ECM) systems. CMIS uses Web 
services and Web 2.0 interfaces to enable rich information to be shared across 
Internet protocols in vendor-neutral formats, among document systems, 
publishers and repositories, within one enterprise and between 
companies.
 
 
+
+EPUB
+EPUB is standard for electronic book 
files with the extension .epub that can be downloaded and read on 
devices like smartphones, tablets, computers, or 
e-readers.
+EPUB is a technical standard published now by the https://www.w3.org/publishing/; name="IDPF">Publishing group of 
W3C. EPUB is a popular format because it is open and is based on 
HTML.
+An 
EPUB publication is delivered as a single file and is an unencrypted zipped 
archive containing a website. It includes HTML files, images, CSS style sheets, 
and other assets such as metadata, multimedia and interactivity.
+
+
 
 
 WebDAV
diff --git a/source/text/shared/00/0401.xhp 
b/source/text/shared/00/0401.xhp
index 00d2a5a0d..0b2109bcf 100644
--- a/source/text/shared/00/0401.xhp
+++ b/source/text/shared/00/0401.xhp
@@ -327,11 +327,28 @@
 
 
 
-Choose File - Export
-
+Choose File - Export
+
+
+   Choose File - Export as EPUB.
+   
+   
+   
+   
+   
+   Export 
as EPUB
+   
+   
+   
+   
+   Export Directly as EPUB
+   
+   
+   
+
+
 
-Choose 
File - Export as PDF
-
+Choose 
File - Export as PDF
 
 
 
diff --git a/source/text/shared/01/ref_epub_export.xhp 
b/source/text/shared/01/ref_epub_export.xhp
index 1fe5d64ea..57155bebb 100644
--- a/source/text/shared/01/ref_epub_export.xhp
+++ b/source/text/shared/01/ref_epub_export.xhp
@@ -34,60 +34,89 @@
   exporting;to EPUB
 
 
+
+
 Export as 
EPUB
-Saves the 
current file to EPUB. An EPUB is a reflowable file that can be viewed or 
printed on any platform, provided that supporting software is 
installed.
+Export the 
current file to EPUB.
+
 
 
-
+
+
+
 
-General
 
+EPUB dialog 
box
 
+General
+
+
 Version
 Sets the 
version of the resulting EPUB file.
-
 
-Split 
method
-Determines if 
a next EPUB section will start on page breaks or on paragraphs according to 
outline numbering.
 
+Split 
method
+Select the 
type of start of the the next EPUB section.
+
+
+Heading: Starts the next section on headings, 
according to the document outline numbering.
+
+
+Page break: Starts the new section on a page 
break.
+
+
 
+
 Layout 
method
 Determines if 
a reflowable or a fixed layout EPUB will be generated.
-
+
+
+Reflowable: The content flows, or reflows, to fit 
the screen and to fit the needs of the user.
+
+
+Fixed: Gives greater control over presentation 
when a reflowable EPUB is not suitable for the content.
+
+
 

[Libreoffice-commits] help.git: source/media source/text

 source/media/screenshots/modules/scalc/ui/xmlsourcedialog/XMLSourceDialog.png 
|binary
 source/text/scalc/01/xml_source.xhp   
|  122 ++
 2 files changed, 75 insertions(+), 47 deletions(-)

New commits:
commit bd71cddd5c343dc894e78bb9809acb94ca1db337
Author: Olivier Hallot 
Date:   Tue Mar 20 10:42:46 2018 -0300

tdf#80367 Help page for Calc XML Source

With contribution of Kohei, from
https://wiki.documentfoundation.org/Development/Calc/XMLSource

Change-Id: I363f864069cf42c0893ceb1402f26c9c1dc186a5
Reviewed-on: https://gerrit.libreoffice.org/51645
Reviewed-by: Olivier Hallot 
Tested-by: Olivier Hallot 

diff --git 
a/source/media/screenshots/modules/scalc/ui/xmlsourcedialog/XMLSourceDialog.png 
b/source/media/screenshots/modules/scalc/ui/xmlsourcedialog/XMLSourceDialog.png
new file mode 100644
index 0..4ac9d3668
Binary files /dev/null and 
b/source/media/screenshots/modules/scalc/ui/xmlsourcedialog/XMLSourceDialog.png 
differ
diff --git a/source/text/scalc/01/xml_source.xhp 
b/source/text/scalc/01/xml_source.xhp
index 665dc92cf..762a8564d 100644
--- a/source/text/scalc/01/xml_source.xhp
+++ b/source/text/scalc/01/xml_source.xhp
@@ -1,52 +1,80 @@
 
 
-
-
-
-  
-Live Data Stream
-/text/scalc/01/xml_source.xhp
-  
-
-
-
-
-
-
-
-
-  XML Source;load XML data in spreadsheets
-
-
-
-XML 
Source
-Live data stream for 
spreadsheets
-
-
-
-Menu Data – XML 
Source...
-
-
-
-
-XML 
Source
-
+
+
+
+
+XML Data
+/text/scalc/01/xml_source.xhp
+
+
+
+
+
+
+
+XML Source;load XML data in 
spreadsheets
+
+XML 
Source
+Import XML data in a 
spreadsheet.
+
+The XML Source feature allows to import data from arbitrarily 
structured XML content into cells in an existing spreadsheet document. It 
allows XML content to be imported either partially or in full, depending on the 
structure of the XML content and the map definitions that the user defines. The 
user can specify multiple non-overlapping sub-structures to be mapped to 
different cell positions within the same document. The user can import either 
element contents, attribute values or both.
+
+
+Menu Data – XML 
Source...
+
+XML Source Dialog
+XML Source 
Dialog
+
+The dialog consists of four parts.
+
+Source file
+This lets you specify the path to the XML file that you wish 
to import into your document.
+
+Map to Document
+This pane shows the structure of the source XML content as a 
tree. This is initially empty, and gets populated when you specify the source 
file.
+
+Each element in the tree can be one of three types:
+
+
+attribute, represented by the symbol @
+
+
+single non-recurring element, represented by the symbol 
/, and
+
+
+recurring element, represented by the symbol 
//.
+
+
+
+A 
non-recurring element is an element that can only occur once under the same 
parent. It is mapped to a single cell in the document.
+
+A 
recurring element is an element that can appear multiple times under the same 
parent. It serves as an enclosing parent of a single record entry of multiple 
record entries. These entries are imported into a range those height equals the 
number of entries plus one additional header row.
+
+Mapped cell
+This field specifies the position of a cell in the document 
that an element or an attribute is linked to.  If it's a non-recurring element 
or an attribute, it simply points to the cell where the value of the linked 
element/attribute will get imported.  If it's a recurring element, it points to 
the top-left cell of the range where the whole record entries plus header will 
get imported.
+
+Import
+Pressing the Import button starts the import process based on 
the link definitions that the user has provided. Once the import finishes, the 
dialog will close.
+
+https://wiki.documentfoundation.org/Development/Calc/XMLSource; 
target="_blank" name="Wiki page on XML Source">Wiki page on XML 
Source
+
 
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: source/media source/text

 source/media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png |binary
 source/text/shared/optionen/01010501.xhp  |   13 
--
 2 files changed, 11 insertions(+), 2 deletions(-)

New commits:
commit 0e7fce65904349f4d016592a68979f26e62c5bdd
Author: Olivier Hallot 
Date:   Tue May 30 17:09:45 2017 -0300

Add screenshot to Pick-a-Color help page

fix grammar
Dialog -> window

Change-Id: Ie258bff777a51772f32e72ea0616f03e1351a833
Reviewed-on: https://gerrit.libreoffice.org/38236
Reviewed-by: Gabor Kelemen 
Tested-by: Gabor Kelemen 

diff --git a/source/media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png 
b/source/media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png
new file mode 100644
index 0..70b478b62
Binary files /dev/null and 
b/source/media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png differ
diff --git a/source/text/shared/optionen/01010501.xhp 
b/source/text/shared/optionen/01010501.xhp
index 32e2d4921..f30a7ef86 100644
--- a/source/text/shared/optionen/01010501.xhp
+++ b/source/text/shared/optionen/01010501.xhp
@@ -39,12 +39,21 @@
 
   
 
-Pick a 
Color Window
+The 
Pick a Color Window
+
+
+
+Pick a Color window
+Pick a Color 
window
+
+
+
 The Pick a 
Color Dialog window consist of four main areas.
 
 
 
-The radio 
buttons select the color component of the color. This color component can be 
expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) 
color models. The CMYK color model is not selectable are provided only to ease 
the input of color values using CMYK notation.
+The radio 
buttons select the color component of the color. This color component can be 
expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) 
color models. The CMYK color model is not selectable and is provided only to 
ease the input of color values using CMYK notation.
+
 
 
 The spin 
buttons are for entering the numerical value of the color component.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits