Re: About removing Beanshell/Javascript (Rhino) ?

2022-01-22 Thread Caolán McNamara
On Sat, 2022-01-22 at 12:27 +0100, Julien Nabet wrote:
> shouldn't we ... remove the 2 others or at least Beanshell ?

FWIW I agree, I don't think the beanshell or rhino integration has ever
really been particularly useful. For RedHat's RHEL we've built without
them (--disable-scripting-beanshell --disable-scripting-javascript)
since 2019 and the same will be true for Fedora from F36 onward.

The rhino jar is from 2007/2008 when it was bumped to the last rhino
1.5 release version (by me) in the only change to it since the initial
version of 2003 and it's a similar story for bsh. IMO it's only
demoware for the at-that-time-new scripting framework.

http://www.openoffice.org/framework/scripting/scriptingf1



[Libreoffice-commits] core.git: Branch 'distro/collabora/co-2021' - 2 commits - bin/pack-debug config_host.mk.in configure.ac instsetoo_native/CustomTarget_install.mk solenv/bin

2022-01-22 Thread Andras Timar (via logerrit)
 bin/pack-debug|   14 ++
 config_host.mk.in |1 +
 configure.ac  |   10 ++
 instsetoo_native/CustomTarget_install.mk  |1 +
 solenv/bin/modules/installer/download.pm  |2 +-
 solenv/bin/modules/installer/epmfile.pm   |4 ++--
 solenv/bin/modules/installer/globals.pm   |2 ++
 solenv/bin/modules/installer/helppack.pm  |2 +-
 solenv/bin/modules/installer/languagepack.pm  |2 +-
 solenv/bin/modules/installer/parameter.pm |2 ++
 solenv/bin/modules/installer/simplepackage.pm |2 +-
 solenv/bin/modules/installer/worker.pm|2 +-
 12 files changed, 33 insertions(+), 11 deletions(-)

New commits:
commit 5442eef243b13355d73785214f86214d8a73e6e4
Author: Andras Timar 
AuthorDate: Sat Jan 22 20:35:00 2022 +0100
Commit: Andras Timar 
CommitDate: Sat Jan 22 20:35:00 2022 +0100

[cp] use pigz (parallellized compression) instead of gzip, if we can

Change-Id: I3f97702a6febd3ac0cbbd16a0932d74ea6659bf3

diff --git a/bin/pack-debug b/bin/pack-debug
index ff8defe4cb78..9a6f384035e3 100755
--- a/bin/pack-debug
+++ b/bin/pack-debug
@@ -13,6 +13,12 @@
 export BUILD_PATH=$PWD
 export BUILD_LOG=$BUILD_PATH/pack-debug.log
 
+if type -P pigz &>/dev/null; then
+GZIP=pigz
+else
+GZIP=gzip
+fi
+
 if [ $# -gt 0 ]
 then
  for i in "$@"
@@ -179,8 +185,8 @@ TARGET_RPM=$(ls *_download/*.tar.gz)
 TARGET_DEBUG=$(echo $TARGET_RPM | sed 's/.tar.gz$/-debug.tar.gz/')
 SOURCE_RPM=$(find *_rpm -type f | grep -v debug)
 SOURCE_DEBUG=$(find *_rpm -type f | grep -E '(debug|readme|README)')
-tar c $SOURCE_RPM | gzip >$TARGET_RPM
-tar c $SOURCE_DEBUG | gzip >$TARGET_DEBUG
+tar c $SOURCE_RPM | $GZIP >$TARGET_RPM
+tar c $SOURCE_DEBUG | $GZIP >$TARGET_DEBUG
 cd $BUILD_PATH
 rm -rf $topdir
 }
@@ -322,8 +328,8 @@ TARGET_DEB=$(ls *_download/*.tar.gz)
 TARGET_DEBUG=$(echo $TARGET_DEB | sed 's/.tar.gz$/-debug.tar.gz/')
 SOURCE_DEB=$(find *_deb -type f | grep -v debug)
 SOURCE_DEBUG=$(find *_deb -type f | grep -E '(debug|readme|README)')
-tar c $SOURCE_DEB | gzip >$TARGET_DEB
-tar c $SOURCE_DEBUG | gzip >$TARGET_DEBUG
+tar c $SOURCE_DEB | $GZIP >$TARGET_DEB
+tar c $SOURCE_DEBUG | $GZIP >$TARGET_DEBUG
 
 cd $BUILD_PATH
 rm -rf DEBS
commit 86c7688ec38ebf32a971d529c43779761b2dac78
Author: Thorsten Behrens 
AuthorDate: Sat Jan 15 16:24:33 2022 +0100
Commit: Andras Timar 
CommitDate: Sat Jan 22 20:24:56 2022 +0100

Make installer compression tool configurable

So we can use pigz or other parallelizable tools if available. Shaves
off noticeable build time when packaging install sets.

- figure out if pigz is available (fallback to gzip otherwise)
- pass compression tool down into make_installer
- and handle as one of many global options there

Change-Id: Ia9d1ea27a9f990874238b6f0be3e1fd30a662ec6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128469
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/config_host.mk.in b/config_host.mk.in
index f0bf804474f7..d938ae941f88 100644
--- a/config_host.mk.in
+++ b/config_host.mk.in
@@ -88,6 +88,7 @@ export COMPILER_PLUGINS_CXXFLAGS=@COMPILER_PLUGINS_CXXFLAGS@
 export COMPILER_PLUGINS_CXX_LINKFLAGS=@COMPILER_PLUGINS_CXX_LINKFLAGS@
 export COMPILER_PLUGINS_DEBUG=@COMPILER_PLUGINS_DEBUG@
 export COMPILER_PLUGINS_TOOLING_ARGS=@COMPILER_PLUGINS_TOOLING_ARGS@
+export COMPRESSIONTOOL=@COMPRESSIONTOOL@
 export COM_IS_CLANG=@COM_IS_CLANG@
 export CPPUNIT_CFLAGS=$(gb_SPACE)@CPPUNIT_CFLAGS@
 export CPPUNIT_LIBS=$(gb_SPACE)@CPPUNIT_LIBS@
diff --git a/configure.ac b/configure.ac
index 35e6c39ed3fd..8dc18407cac4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2814,6 +2814,16 @@ if test -z "$BASH"; then
 fi
 AC_SUBST(BASH)
 
+# prefer parallel comression tools, if available
+AC_PATH_PROG(COMPRESSIONTOOL, pigz)
+if test -z "$COMPRESSIONTOOL"; then
+AC_PATH_PROG(COMPRESSIONTOOL, gzip)
+if test -z "$COMPRESSIONTOOL"; then
+AC_MSG_ERROR([gzip not found in \$PATH])
+fi
+fi
+AC_SUBST(COMPRESSIONTOOL)
+
 AC_MSG_CHECKING([for GNU or BSD tar])
 for a in $GNUTAR gtar gnutar bsdtar tar /usr/sfw/bin/gtar; do
 $a --version 2> /dev/null | egrep "GNU|bsdtar"  2>&1 > /dev/null
diff --git a/instsetoo_native/CustomTarget_install.mk 
b/instsetoo_native/CustomTarget_install.mk
index a83be274ff4b..0974240be1fb 100644
--- a/instsetoo_native/CustomTarget_install.mk
+++ b/instsetoo_native/CustomTarget_install.mk
@@ -87,6 +87,7 @@ $(foreach pkgformat,$(5),\
-l $(subst $(WHITESPACE),$(COMMA),$(strip $(2))) \
-p $(PRODUCTNAME_no_spaces)$(3) \
-u $(instsetoo_OUT) \
+   -packer $(COMPRESSIONTOOL) \
-buildid $(if $(filter deb0 
rpm0,$(pkgformat)$(LIBO_VERSION_PATCH)),1,$(LIBO_VERSION_PATCH)) \
$(if $(filter WNT,$(OS)), \
-msitemplate $(dir $@)msi_templates \
diff --git a/solenv/bin/modules/installer/download.pm 

[Libreoffice-bugs] [Bug 112128] [META] Cell edit mode bugs and enhancements

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112128
Bug 112128 depends on bug 92605, which changed state.

Bug 92605 Summary: Format for editing Time does not match the format assigned 
to a cell.
https://bugs.documentfoundation.org/show_bug.cgi?id=92605

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 92605] Format for editing Time does not match the format assigned to a cell.

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92605

Buovjaga  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: chart2/inc chart2/IwyuFilter_chart2.yaml chart2/source offapi/com offapi/UnoApi_offapi.mk

2022-01-22 Thread Noel Grandin (via logerrit)
 chart2/IwyuFilter_chart2.yaml   |  
  4 
 chart2/inc/ChartModel.hxx   |  
  4 
 chart2/source/controller/chartapiwrapper/Chart2ModelContact.cxx |  
  1 
 chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx |  
  1 
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx |  
  2 
 chart2/source/controller/chartapiwrapper/WrappedGapwidthProperty.cxx|  
  1 
 chart2/source/controller/chartapiwrapper/WrappedSeriesOrDiagramProperty.hxx |  
  1 
 chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx|  
  1 
 chart2/source/controller/chartapiwrapper/WrappedStockProperties.cxx |  
 32 -
 chart2/source/controller/dialogs/ChartTypeDialogController.cxx  |  
  2 
 chart2/source/controller/dialogs/DataBrowser.cxx|  
  1 
 chart2/source/controller/dialogs/DialogModel.cxx|  
  3 
 chart2/source/controller/dialogs/DialogModel.hxx|  
  4 
 chart2/source/controller/dialogs/ObjectNameProvider.cxx |  
  1 
 chart2/source/controller/dialogs/dlg_ObjectProperties.cxx   |  
  1 
 chart2/source/controller/dialogs/tp_3D_SceneGeometry.cxx|  
  2 
 chart2/source/controller/dialogs/tp_RangeChooser.hxx|  
  1 
 chart2/source/controller/itemsetwrapper/DataPointItemConverter.cxx  |  
  1 
 chart2/source/controller/itemsetwrapper/TextLabelItemConverter.cxx  |  
  1 
 chart2/source/controller/main/ChartController_Insert.cxx|  
  1 
 chart2/source/controller/main/ChartController_Properties.cxx|  
  3 
 chart2/source/controller/main/ChartController_Window.cxx|  
  2 
 chart2/source/controller/main/ControllerCommandDispatch.cxx |  
  1 
 chart2/source/inc/ChartTypeDialogController.hxx |  
  4 
 chart2/source/inc/ChartTypeTemplate.hxx |  
 42 +
 chart2/source/inc/DiagramHelper.hxx |  
  4 
 chart2/source/model/main/ChartModel.cxx |  
 10 
 chart2/source/model/main/ChartModel_Persistence.cxx |  
  2 
 chart2/source/model/template/AreaChartTypeTemplate.cxx  |  
 10 
 chart2/source/model/template/AreaChartTypeTemplate.hxx  |  
  8 
 chart2/source/model/template/BarChartTypeTemplate.cxx   |  
 15 
 chart2/source/model/template/BarChartTypeTemplate.hxx   |  
 12 
 chart2/source/model/template/BubbleChartTypeTemplate.cxx|  
 11 
 chart2/source/model/template/BubbleChartTypeTemplate.hxx|  
 10 
 chart2/source/model/template/ChartTypeTemplate.cxx  |  
 22 -
 chart2/source/model/template/ColumnLineChartTypeTemplate.cxx|  
 11 
 chart2/source/model/template/ColumnLineChartTypeTemplate.hxx|  
 10 
 chart2/source/model/template/LineChartTypeTemplate.cxx  |  
 12 
 chart2/source/model/template/LineChartTypeTemplate.hxx  |  
  8 
 chart2/source/model/template/NetChartTypeTemplate.cxx   |  
 12 
 chart2/source/model/template/NetChartTypeTemplate.hxx   |  
 10 
 chart2/source/model/template/PieChartTypeTemplate.cxx   |  
 11 
 chart2/source/model/template/PieChartTypeTemplate.hxx   |  
 10 
 chart2/source/model/template/ScatterChartTypeTemplate.cxx   |  
 15 
 chart2/source/model/template/ScatterChartTypeTemplate.hxx   |  
 12 
 chart2/source/model/template/StockChartTypeTemplate.cxx |  
 14 
 chart2/source/model/template/StockChartTypeTemplate.hxx |  
 12 
 chart2/source/tools/ChartTypeHelper.cxx |  
  4 
 chart2/source/tools/DataSourceHelper.cxx|  
  1 
 chart2/source/tools/DiagramHelper.cxx   |  
  1 
 chart2/source/tools/ExplicitCategoriesProvider.cxx  |  
  1 
 chart2/source/tools/InternalDataProvider.cxx|  
  1 
 chart2/source/tools/RegressionCurveHelper.cxx   |  
  2 
 chart2/source/tools/ThreeDHelper.cxx|  
  1 
 chart2/source/view/charttypes/VSeriesPlotter.cxx|  
  1 
 chart2/source/view/diagram/VDiagram.cxx |  
  1 
 offapi/UnoApi_offapi.mk |  
  2 
 offapi/com/sun/star/chart2/ChartTypeTemplate.idl|  
 46 --
 

[Libreoffice-commits] core.git: Branch 'libreoffice-7-2' - sc/inc

2022-01-22 Thread Eike Rathke (via logerrit)
 sc/inc/kahan.hxx |  123 +++
 1 file changed, 80 insertions(+), 43 deletions(-)

New commits:
commit 7fd980a607eead2c6cf6557c07a9c25cb5b1a5d4
Author: Eike Rathke 
AuthorDate: Fri Jan 14 23:34:41 2022 +0100
Commit: Mike Kaganski 
CommitDate: Sat Jan 22 20:08:51 2022 +0100

tdf#146367 reintroduce approxAdd() similar handling with last summand

... to tie result to 0 eliminating opposite sign small equalish
fractions.

This does not "fix" all interim values of the bug's sample document,
which repeatedly adds single values in sequence using SUM() and should
use the + operator instead to benefit from approxAdd() for each, but
maintains the better accuracy of Kahan summation in the not near equal
zero cases. And the dreaded SUM(0.1;0.2;-0.3) also works again resulting
in 0 with all permutations.

Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128451
Reviewed-by: Eike Rathke 
Tested-by: Jenkins
(cherry picked from commit 730b8aba72356bb8ba0066a5517b1224a4f1e232)

 Conflicts:
sc/inc/kahan.hxx

Change-Id: I67188a6abbdb98212f070166ad02319c3d477e28
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128464
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/sc/inc/kahan.hxx b/sc/inc/kahan.hxx
index 49c7922b3c79..a85295d87914 100644
--- a/sc/inc/kahan.hxx
+++ b/sc/inc/kahan.hxx
@@ -9,13 +9,17 @@
 
 #pragma once
 
+#include 
 #include 
 
 /**
   * This class provides LO with Kahan summation algorithm
   * About this algorithm: 
https://en.wikipedia.org/wiki/Kahan_summation_algorithm
   * For general purpose software we assume first order error is enough.
-  * This class could be made constexpr if needed.
+  *
+  * Additionally queue and remember the last recent non-zero value and add it
+  * similar to approxAdd() when obtaining the final result to further eliminate
+  * accuracy errors. (e.g. for the dreaded 0.1 + 0.2 - 0.3 != 0.0)
   */
 
 class KahanSum
@@ -37,12 +41,22 @@ public:
   */
 void add(double x_i)
 {
-double t = m_fSum + x_i;
-if (std::abs(m_fSum) >= std::abs(x_i))
-m_fError += (m_fSum - t) + x_i;
+if (x_i == 0.0)
+return;
+
+if (!m_fMem)
+{
+m_fMem = x_i;
+return;
+}
+
+double t = m_fSum + m_fMem;
+if (std::abs(m_fSum) >= std::abs(m_fMem))
+m_fError += (m_fSum - t) + m_fMem;
 else
-m_fError += (x_i - t) + m_fSum;
+m_fError += (m_fMem - t) + m_fSum;
 m_fSum = t;
+m_fMem = x_i;
 }
 
 /**
@@ -53,6 +67,7 @@ public:
 {
 add(fSum.m_fSum);
 add(fSum.m_fError);
+add(fSum.m_fMem);
 }
 
 /**
@@ -63,6 +78,7 @@ public:
 {
 add(-fSum.m_fSum);
 add(-fSum.m_fError);
+add(-fSum.m_fMem);
 }
 
 public:
@@ -71,6 +87,7 @@ public:
 KahanSum fKahanSum;
 fKahanSum.m_fSum = -m_fSum;
 fKahanSum.m_fError = -m_fError;
+fKahanSum.m_fMem = -m_fMem;
 return fKahanSum;
 }
 
@@ -78,6 +95,7 @@ public:
 {
 m_fSum = fSum;
 m_fError = 0;
+m_fMem = 0;
 return *this;
 }
 
@@ -125,73 +143,92 @@ public:
   */
 constexpr void operator*=(double fTimes)
 {
-m_fSum *= fTimes;
-m_fError *= fTimes;
+if (m_fMem)
+{
+m_fSum = get() * fTimes;
+m_fMem = 0.0;
+}
+else
+{
+m_fSum = (m_fSum + m_fError) * fTimes;
+}
+m_fError = 0.0;
 }
 
 constexpr void operator/=(double fDivides)
 {
-m_fSum /= fDivides;
-m_fError /= fDivides;
+if (m_fMem)
+{
+m_fSum = get() / fDivides;
+m_fMem = 0.0;
+}
+else
+{
+m_fSum = (m_fSum + m_fError) / fDivides;
+}
+m_fError = 0.0;
 }
 
-inline KahanSum operator*(const KahanSum& fTimes) const
-{
-return *this * fTimes.m_fSum + *this * fTimes.m_fError;
-}
+inline KahanSum operator*(const KahanSum& fTimes) const { return get() * 
fTimes.get(); }
 
-constexpr KahanSum operator*(double fTimes) const
-{
-KahanSum fSum(*this);
-fSum *= fTimes;
-return fSum;
-}
+inline KahanSum operator*(double fTimes) const { return get() * fTimes; }
 
-inline KahanSum operator/(const KahanSum& fDivides) const { return *this / 
fDivides.get(); }
+inline KahanSum operator/(const KahanSum& fDivides) const { return get() / 
fDivides.get(); }
 
-constexpr KahanSum operator/(double fTimes) const
-{
-KahanSum fSum(*this);
-fSum /= fTimes;
-return fSum;
-}
+inline KahanSum operator/(double fDivides) const { return get() / 
fDivides; }
 
-constexpr bool operator<(const KahanSum& fSum) const { 

[Libreoffice-commits] core.git: Branch 'libreoffice-7-3' - sc/inc

2022-01-22 Thread Eike Rathke (via logerrit)
 sc/inc/kahan.hxx |  126 ++-
 1 file changed, 80 insertions(+), 46 deletions(-)

New commits:
commit a4fb21c5275028378f639150ed1bcc26e1c3836f
Author: Eike Rathke 
AuthorDate: Fri Jan 14 23:34:41 2022 +0100
Commit: Mike Kaganski 
CommitDate: Sat Jan 22 20:07:51 2022 +0100

tdf#146367 reintroduce approxAdd() similar handling with last summand

... to tie result to 0 eliminating opposite sign small equalish
fractions.

This does not "fix" all interim values of the bug's sample document,
which repeatedly adds single values in sequence using SUM() and should
use the + operator instead to benefit from approxAdd() for each, but
maintains the better accuracy of Kahan summation in the not near equal
zero cases. And the dreaded SUM(0.1;0.2;-0.3) also works again resulting
in 0 with all permutations.

Change-Id: I67188a6abbdb98212f070166ad02319c3d477e28
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128451
Reviewed-by: Eike Rathke 
Tested-by: Jenkins
(cherry picked from commit 730b8aba72356bb8ba0066a5517b1224a4f1e232)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128432
Reviewed-by: Mike Kaganski 

diff --git a/sc/inc/kahan.hxx b/sc/inc/kahan.hxx
index ded7bd78d70e..5418c8d23b35 100644
--- a/sc/inc/kahan.hxx
+++ b/sc/inc/kahan.hxx
@@ -9,6 +9,7 @@
 
 #pragma once
 
+#include 
 #include 
 
 #include "arraysumfunctorinternal.hxx"
@@ -17,7 +18,10 @@
   * This class provides LO with Kahan summation algorithm
   * About this algorithm: 
https://en.wikipedia.org/wiki/Kahan_summation_algorithm
   * For general purpose software we assume first order error is enough.
-  * This class could be made constexpr if needed.
+  *
+  * Additionally queue and remember the last recent non-zero value and add it
+  * similar to approxAdd() when obtaining the final result to further eliminate
+  * accuracy errors. (e.g. for the dreaded 0.1 + 0.2 - 0.3 != 0.0)
   */
 
 class KahanSum
@@ -51,12 +55,22 @@ public:
   */
 void add(double x_i)
 {
-double t = m_fSum + x_i;
-if (std::abs(m_fSum) >= std::abs(x_i))
-m_fError += (m_fSum - t) + x_i;
+if (x_i == 0.0)
+return;
+
+if (!m_fMem)
+{
+m_fMem = x_i;
+return;
+}
+
+double t = m_fSum + m_fMem;
+if (std::abs(m_fSum) >= std::abs(m_fMem))
+m_fError += (m_fSum - t) + m_fMem;
 else
-m_fError += (x_i - t) + m_fSum;
+m_fError += (m_fMem - t) + m_fSum;
 m_fSum = t;
+m_fMem = x_i;
 }
 
 /**
@@ -67,6 +81,7 @@ public:
 {
 add(fSum.m_fSum);
 add(fSum.m_fError);
+add(fSum.m_fMem);
 }
 
 /**
@@ -77,6 +92,7 @@ public:
 {
 add(-fSum.m_fSum);
 add(-fSum.m_fError);
+add(-fSum.m_fMem);
 }
 
 public:
@@ -85,6 +101,7 @@ public:
 KahanSum fKahanSum;
 fKahanSum.m_fSum = -m_fSum;
 fKahanSum.m_fError = -m_fError;
+fKahanSum.m_fMem = -m_fMem;
 return fKahanSum;
 }
 
@@ -92,6 +109,7 @@ public:
 {
 m_fSum = fSum;
 m_fError = 0;
+m_fMem = 0;
 return *this;
 }
 
@@ -139,76 +157,92 @@ public:
   */
 constexpr void operator*=(double fTimes)
 {
-m_fSum *= fTimes;
-m_fError *= fTimes;
+if (m_fMem)
+{
+m_fSum = get() * fTimes;
+m_fMem = 0.0;
+}
+else
+{
+m_fSum = (m_fSum + m_fError) * fTimes;
+}
+m_fError = 0.0;
 }
 
 constexpr void operator/=(double fDivides)
 {
-m_fSum /= fDivides;
-m_fError /= fDivides;
+if (m_fMem)
+{
+m_fSum = get() / fDivides;
+m_fMem = 0.0;
+}
+else
+{
+m_fSum = (m_fSum + m_fError) / fDivides;
+}
+m_fError = 0.0;
 }
 
-inline KahanSum operator*(const KahanSum& fTimes) const
-{
-return *this * fTimes.m_fSum + *this * fTimes.m_fError;
-}
+inline KahanSum operator*(const KahanSum& fTimes) const { return get() * 
fTimes.get(); }
 
-constexpr KahanSum operator*(double fTimes) const
-{
-KahanSum fSum(*this);
-fSum *= fTimes;
-return fSum;
-}
+inline KahanSum operator*(double fTimes) const { return get() * fTimes; }
 
-inline KahanSum operator/(const KahanSum& fDivides) const { return *this / 
fDivides.get(); }
+inline KahanSum operator/(const KahanSum& fDivides) const { return get() / 
fDivides.get(); }
 
-constexpr KahanSum operator/(double fTimes) const
-{
-KahanSum fSum(*this);
-fSum /= fTimes;
-return fSum;
-}
+inline KahanSum operator/(double fDivides) const { return get() / 
fDivides; }
 
-constexpr bool operator<(const KahanSum& fSum) const { return get() < 

[Libreoffice-commits] core.git: Branch 'libreoffice-7-3' - external/python3

2022-01-22 Thread Aron Budea (via logerrit)
 external/python3/UnpackedTarball_python3.mk  |1 
 external/python3/python-3.8-msvc-sdk.patch.1 |  173 +++
 2 files changed, 174 insertions(+)

New commits:
commit 82ece6d038927589cd15cc9163f11a7be689c487
Author: Aron Budea 
AuthorDate: Fri Dec 24 06:36:09 2021 +0100
Commit: Caolán McNamara 
CommitDate: Sat Jan 22 20:06:45 2022 +0100

python3: fix build on Win 10

With Windows 11 SDK (10.0.22000.0).

Error message is:
fatal error RC1116: RC terminating after preprocessor errors

https://bugs.python.org/issue45220

Applied fixing patches to 3.8.

Change-Id: I0860b05fd963ea81b493a4b9df7f39db86598dd0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127395
Tested-by: Mike Kaganski 
Reviewed-by: Mike Kaganski 
(cherry picked from commit fa9ab05d78bb398efa3c09148e9d6d717f6168d1)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128686
Tested-by: Jenkins
Tested-by: Aron Budea 
Reviewed-by: Aron Budea 
Reviewed-by: Caolán McNamara 

diff --git a/external/python3/UnpackedTarball_python3.mk 
b/external/python3/UnpackedTarball_python3.mk
index af514446fff2..31b6a166e6ae 100644
--- a/external/python3/UnpackedTarball_python3.mk
+++ b/external/python3/UnpackedTarball_python3.mk
@@ -21,6 +21,7 @@ $(eval $(call gb_UnpackedTarball_fix_end_of_line,python3,\
 $(eval $(call gb_UnpackedTarball_add_patches,python3,\
external/python3/i100492-freebsd.patch.1 \
external/python3/python-3.3.0-darwin.patch.1 \
+   external/python3/python-3.8-msvc-sdk.patch.1 \
external/python3/python-3.7.6-msvc-ssl.patch.1 \
external/python3/python-3.5.4-msvc-disable.patch.1 \
external/python3/ubsan.patch.0 \
diff --git a/external/python3/python-3.8-msvc-sdk.patch.1 
b/external/python3/python-3.8-msvc-sdk.patch.1
new file mode 100644
index ..fabdbb53ea63
--- /dev/null
+++ b/external/python3/python-3.8-msvc-sdk.patch.1
@@ -0,0 +1,173 @@
+diff --git a/PC/pylauncher.rc b/PC/pylauncher.rc
+index 92987af713..d21f9b6e9d 100644
+--- a/PC/pylauncher.rc
 b/PC/pylauncher.rc
+@@ -4,7 +4,6 @@
+ 
+ // Include the manifest file that indicates we support all
+ // current versions of Windows.
+-#include 
+ 1 RT_MANIFEST "python.manifest"
+ 
+ #if defined(PY_ICON)
+diff --git a/PC/pyshellext.rc b/PC/pyshellext.rc
+index e5924a42da..fc607e9784 100644
+--- a/PC/pyshellext.rc
 b/PC/pyshellext.rc
+@@ -4,7 +4,6 @@
+ 
+ // Include the manifest file that indicates we support all
+ // current versions of Windows.
+-#include 
+ 1 RT_MANIFEST "python.manifest"
+ 
+ /
+diff --git a/PC/python_exe.rc b/PC/python_exe.rc
+index ae0b029b80..5eba89962b 100644
+--- a/PC/python_exe.rc
 b/PC/python_exe.rc
+@@ -4,7 +4,6 @@
+ 
+ // Include the manifest file that indicates we support all
+ // current versions of Windows.
+-#include 
+ 1 RT_MANIFEST "python.manifest"
+ 
+ 1 ICON DISCARDABLE "icons\python.ico" 
+diff --git a/PC/python_nt.rc b/PC/python_nt.rc
+index fac6105d8a..33cee42cb7 100644
+--- a/PC/python_nt.rc
 b/PC/python_nt.rc
+@@ -4,7 +4,6 @@
+ 
+ // Include the manifest file that indicates we support all
+ // current versions of Windows.
+-#include 
+ 2 RT_MANIFEST "python.manifest"
+ 
+ // String Tables
+diff --git a/PC/pythonw_exe.rc b/PC/pythonw_exe.rc
+index 88bf3592e1..562652be18 100644
+--- a/PC/pythonw_exe.rc
 b/PC/pythonw_exe.rc
+@@ -4,7 +4,6 @@
+ 
+ // Include the manifest file that indicates we support all
+ // current versions of Windows.
+-#include 
+ 1 RT_MANIFEST "python.manifest"
+ 
+ 1 ICON DISCARDABLE "icons\pythonw.ico" 
+diff --git a/PC/sqlite3.rc b/PC/sqlite3.rc
+index 84bd87d9d5..d2c18f8add 100644
+--- a/PC/sqlite3.rc
 b/PC/sqlite3.rc
+@@ -4,7 +4,6 @@
+ 
+ // Include the manifest file that indicates we support all
+ // current versions of Windows.
+-#include 
+ 2 RT_MANIFEST "python.manifest"
+ 
+ /
+diff --git a/PC/pylauncher.rc b/PC/pylauncher.rc
+index d21f9b6e9d..ff7e71e0fd 100644
+--- a/PC/pylauncher.rc
 b/PC/pylauncher.rc
+@@ -2,6 +2,11 @@
+ 
+ #include "python_ver_rc.h"
+ 
++#ifndef RT_MANIFEST
++// bpo-45220: Cannot reliably #include RT_MANIFEST from
++// anywhere, so we hardcode it
++#define RT_MANIFEST 24
++#endif
+ // Include the manifest file that indicates we support all
+ // current versions of Windows.
+ 1 RT_MANIFEST "python.manifest"
+diff --git a/PC/pyshellext.rc b/PC/pyshellext.rc
+index fc607e9784..af797ce95d 100644
+--- a/PC/pyshellext.rc
 b/PC/pyshellext.rc
+@@ -2,6 +2,12 @@
+ 
+ #include "python_ver_rc.h"
+ 
++#ifndef RT_MANIFEST
++// bpo-45220: Cannot reliably #include RT_MANIFEST from
++// anywhere, so we hardcode it
++#define RT_MANIFEST 24
++#endif
++
+ // Include the manifest file that indicates we support all
+ // current versions of Windows.
+ 1 RT_MANIFEST 

[Libreoffice-commits] core.git: desktop/source reportdesign/source sc/source sd/source svx/source sw/source vcl/source

2022-01-22 Thread Mike Kaganski (via logerrit)
 desktop/source/lib/init.cxx |2 +-
 reportdesign/source/ui/misc/UITools.cxx |2 +-
 sc/source/core/data/column2.cxx |   23 +++
 sc/source/filter/excel/xechart.cxx  |2 +-
 sc/source/ui/view/gridwin4.cxx  |3 +--
 sd/source/filter/eppt/eppt.cxx  |5 ++---
 sd/source/ui/unoidl/unomodel.cxx|2 +-
 sd/source/ui/view/ViewShellBase.cxx |2 +-
 svx/source/table/tablecontroller.cxx|2 +-
 sw/source/core/access/accmap.cxx|   13 +++--
 sw/source/core/frmedt/fefly1.cxx|4 +---
 sw/source/core/layout/atrfrm.cxx|   10 +-
 sw/source/core/ole/ndole.cxx|4 +---
 sw/source/core/unocore/unoframe.cxx |4 ++--
 sw/source/filter/html/htmlflywriter.cxx |5 ++---
 sw/source/filter/ww8/ww8par3.cxx|3 +--
 vcl/source/window/printdlg.cxx  |   10 +-
 17 files changed, 40 insertions(+), 56 deletions(-)

New commits:
commit 75495067f6f4ba47bb7ff7fe2426f2199c175c78
Author: Mike Kaganski 
AuthorDate: Sat Jan 22 15:45:49 2022 +0300
Commit: Mike Kaganski 
CommitDate: Sat Jan 22 20:02:15 2022 +0100

Use o3tl::convert instead of OutputDevice::LogicToLogic

Change-Id: Ifb7be992c6e951692a741d10ed24ec8b3836982a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128782
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index 3370779df25d..6e41ede6c35f 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -4210,7 +4210,7 @@ static void doc_postUnoCommand(LibreOfficeKitDocument* 
pThis, const char* pComma
 || rPropValue.Name == "TransformRotationY")
 {
 rPropValue.Value >>= value;
-value = OutputDevice::LogicToLogic(value, 
MapUnit::MapTwip, MapUnit::Map100thMM);
+value = o3tl::convert(value, o3tl::Length::twip, 
o3tl::Length::mm100);
 rPropValue.Value <<= value;
 }
 }
diff --git a/reportdesign/source/ui/misc/UITools.cxx 
b/reportdesign/source/ui/misc/UITools.cxx
index 066d330df338..243474ac39de 100644
--- a/reportdesign/source/ui/misc/UITools.cxx
+++ b/reportdesign/source/ui/misc/UITools.cxx
@@ -393,7 +393,7 @@ namespace
 if ( SfxItemState::SET == _rItemSet.GetItemState( 
_nFontHeight,true,) )
 if ( auto pFontItem = dynamic_cast< const SvxFontHeightItem *>( 
pItem ) )
 {
-aNewFont.SetFontHeight(OutputDevice::LogicToLogic(Size(0, 
pFontItem->GetHeight()), MapMode(MapUnit::MapTwip), 
MapMode(MapUnit::MapPoint)).Height());
+aNewFont.SetFontHeight(o3tl::convert(pFontItem->GetHeight(), 
o3tl::Length::twip, o3tl::Length::pt));
 }
 if ( SfxItemState::SET == _rItemSet.GetItemState( 
_nPosture,true,) )
 if ( auto pFontItem = dynamic_cast< const SvxPostureItem *>( pItem 
) )
diff --git a/sc/source/core/data/column2.cxx b/sc/source/core/data/column2.cxx
index 037e34658c5d..905fc0c3373c 100644
--- a/sc/source/core/data/column2.cxx
+++ b/sc/source/core/data/column2.cxx
@@ -370,7 +370,6 @@ tools::Long ScColumn::GetNeededSize(
 vcl::Font aOldFont = pDev->GetFont();
 
 MapMode aHMMMode( MapUnit::Map100thMM, Point(), rZoomX, rZoomY );
-MapMode aTwipMode(MapUnit::MapTwip, Point(), rZoomX, rZoomY);
 
 // save in document ?
 std::unique_ptr pEngine = 
rDocument.CreateFieldEditEngine();
@@ -447,7 +446,7 @@ tools::Long ScColumn::GetNeededSize(
 if ( !bTextWysiwyg )
 {
 aPaper = bInPrintTwips ?
-OutputDevice::LogicToLogic(aPaper, aTwipMode, 
aHMMMode) :
+o3tl::convert(aPaper, o3tl::Length::twip, 
o3tl::Length::mm100) :
 pDev->PixelToLogic(aPaper, aHMMMode);
 }
 }
@@ -502,7 +501,7 @@ tools::Long ScColumn::GetNeededSize(
 aSize = Size( nWidth, nHeight );
 
 Size aTextSize = bInPrintTwips ?
-OutputDevice::LogicToLogic(aSize, aHMMMode, aTwipMode) :
+o3tl::toTwips(aSize, o3tl::Length::mm100) :
 pDev->LogicToPixel(aSize, aHMMMode);
 
 if ( bEdWidth )
@@ -526,18 +525,18 @@ tools::Long ScColumn::GetNeededSize(
 nValue = 0;
 else
 {
-Size aTextSize(pEngine->CalcTextWidth(), 0);
+sal_uInt32 aTextSize(pEngine->CalcTextWidth());
 nValue = bInPrintTwips ?
-OutputDevice::LogicToLogic(aTextSize, aHMMMode, 
aTwipMode).Width() :
-pDev->LogicToPixel(aTextSize, aHMMMode).Width();
+o3tl::toTwips(aTextSize, o3tl::Length::mm100) :
+pDev->LogicToPixel(Size(aTextSize, 0), 
aHMMMode).Width();
 

[Libreoffice-bugs] [Bug 61398] FILEOPEN: can't get rid of macro warning ('solution' by manualy editing the file's zip container in comment #11)

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61398

--- Comment #19 from raal  ---
*** Bug 146920 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146920] Alert about macros when opening a document

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146920

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #8 from raal  ---


*** This bug has been marked as a duplicate of bug 61398 ***

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 64991] RTL: open RTL doc is extremely slow

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=64991

--- Comment #21 from Fahad Al-Saidi  ---
Opening the file attached to this bug is very slow even after the commits by
Noel  comparing to ms office. 
I don't think the problem is fixed.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146217] Snap: Failed to load module "canberra-gtk-module"

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146217

Jean-Baptiste Faure  changed:

   What|Removed |Added

 CC||jbfa...@libreoffice.org

--- Comment #6 from Jean-Baptiste Faure  ---
Quote of the last line of https://www.libreoffice.org/download/snap/ :

> Note that bugs only appearing in the Snap version should be reported to 
> Ubuntu's Launchpad.

Best regards. JBF

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146923] New: Jiihhh

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146923

Bug ID: 146923
   Summary: Jiihhh
   Product: cppunit
   Version: unspecified
  Hardware: x86 (IA32)
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: indrayoga...@gmail.com
CC: markus.mohrh...@googlemail.com

Created attachment 177709
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177709=edit
Hioi

Hii

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146413] Crash if I open a spreadsheet saved previously with same program

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146413

Jean-Baptiste Faure  changed:

   What|Removed |Added

 CC||jbfa...@libreoffice.org

--- Comment #3 from Jean-Baptiste Faure  ---
No crash with Version: 7.3.1.0.0+ / LibreOffice Community
Build ID: e25f5b89b22f68a95a4eb1c5c3e920d0033a3608
CPU threads: 8; OS: Linux 5.13; UI render: default; VCL: gtk3
Locale: fr-FR (fr_FR.UTF-8); UI: fr-FR
Ubuntu_20.04_x86-64
Calc: threaded

Best regards. JBF

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146920] Alert about macros when opening a document

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146920

--- Comment #7 from dteja...@gmail.com ---
Yes, it's probably the same issue.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146416] save copy dialog / export to pdf dialog: file picker cuts parts of the filename

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146416

Jean-Baptiste Faure  changed:

   What|Removed |Added

 CC||jbfa...@libreoffice.org

--- Comment #5 from Jean-Baptiste Faure  ---
Do not use dot nor space in your filenames.

I suggest to close this bug report as NotOurBug.

Best regards. JBF

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146535] Mouse line goes missing when changing paragraph style

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146535

Jean-Baptiste Faure  changed:

   What|Removed |Added

 CC||jbfa...@libreoffice.org

--- Comment #2 from Jean-Baptiste Faure  ---
Not reproducible for me with LO 7.3.1.0.0+ built at home under Ubuntu 20.04
with Gnome.
KDE only ?

Best regards. JBF

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146535] Mouse line goes missing when changing paragraph style

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146535

Jean-Baptiste Faure  changed:

   What|Removed |Added

Summary|Mouse line goes missing |Mouse line goes missing
   |when changing paragraph |when changing paragraph
   |stile   |style

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146920] Alert about macros when opening a document

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146920

--- Comment #6 from raal  ---
Duplicate of bug 61398?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 136001] Python import fails: No module named 'com'

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136001

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #4 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated today, I don't reproduce this.
Python 3.8.12 (default, Jan 22 2022, 17:24:40) 
[Clang 13.0.1 ] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import uno
>>> from com.sun.star.text import ReferenceFieldSource
>>> 

Debian testing provides LO 7.3.0.2, I don't see any Python binary in a
"libreoffice" subdir in "/usr" so can't test it.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: sfx2/source

2022-01-22 Thread Julien Nabet (via logerrit)
 sfx2/source/devtools/DocumentModelTreeHandler.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 5e3ee8a1fff0ef0d77f274d1826a1e63e4a00040
Author: Julien Nabet 
AuthorDate: Sat Jan 22 17:29:49 2022 +0100
Commit: Julien Nabet 
CommitDate: Sat Jan 22 17:30:22 2022 +0100

Typo: documet->document

Change-Id: I0eda84ea313029311c81782abe7157b06de3a2cc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128786
Tested-by: Julien Nabet 
Reviewed-by: Julien Nabet 

diff --git a/sfx2/source/devtools/DocumentModelTreeHandler.cxx 
b/sfx2/source/devtools/DocumentModelTreeHandler.cxx
index 2165efbf9c38..7373cb1e603c 100644
--- a/sfx2/source/devtools/DocumentModelTreeHandler.cxx
+++ b/sfx2/source/devtools/DocumentModelTreeHandler.cxx
@@ -720,7 +720,7 @@ uno::Reference 
DocumentModelTreeHandler::getObjectByID(OUString
 
 void DocumentModelTreeHandler::clearAll()
 {
-// destroy all DocumetModelTreeEntries from the tree
+// destroy all DocumentModelTreeEntries from the tree
 mpDocumentModelTree->all_foreach([this](weld::TreeIter& rEntry) {
 OUString sID = mpDocumentModelTree->get_id(rEntry);
 auto* pEntry = 
reinterpret_cast(sID.toInt64());


[Libreoffice-bugs] [Bug 146497] Crash in: std::_Tree, std::allocator, 0> >::erase

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146497

--- Comment #3 from Colin  ---
(In reply to raal from comment #2)
> Hello,
> 
> Thank you for filing the bug. Please send us a sample document and steps to
> reproduce, as this makes it easier for us to verify the bug. 

I was able to reproduce the bug (I was testing/verifying the procedure) and it
indeed crashed - I suppressed the crash report

I then re-edited the file to revert so I could provide a copy and it didn't
crash either with the reverting edits or with another intentional crash
scenario.
I am now convinced that editing two unrelated autofilter arrays and then saving
is the cause of the crash and will experiment further.
What is interesting is that having exited Libre and simply typing this response
my cooling fan is maxing.
Task manager informs me that LO is still running but I have blank icons on the
task bar.
LO is using 28% CPU and very high power usage is indicated.
Probably all part and parcel of the crash which is inconsistent in its
presentation.
Would you like the file with my steps to reproduce to see if it crashes on
another machine or do you have any utilities that I can run to understand and
report why LO is still consuming all the resources but supposedly inactive
after that crash file recovery routine?
I just manually killed LO and now the fan has slowed down to normal speed.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 92605] Format for editing Time does not match the format assigned to a cell.

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92605

--- Comment #18 from Aprax  ---
Works for me now, thanks.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 92605] Format for editing Time does not match the format assigned to a cell.

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92605

--- Comment #17 from Aprax  ---
Version: 7.0.1.2 (x64)
Build ID: 7cbcfc562f6eb6708b5ff7d7397325de9e764452
CPU threads: 8; OS: Windows 10.0 Build 19041; UI render: Skia/Raster; VCL: win
Locale: en-CA (en_CA); UI: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: helpcontent2

2022-01-22 Thread Olivier Hallot (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 5c01241e072adc71cde1b42cafcb13ef6cfd426d
Author: Olivier Hallot 
AuthorDate: Sat Jan 22 13:15:37 2022 -0300
Commit: Gerrit Code Review 
CommitDate: Sat Jan 22 17:15:37 2022 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to 00a7b31dcc0335a65995cb3569479cee6a3a8998
  - LDAP abook is gone so gone is LDAP Help pages

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

diff --git a/helpcontent2 b/helpcontent2
index e3bcf0ef3955..00a7b31dcc03 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit e3bcf0ef395578e011a76943a15f3467ea128b35
+Subproject commit 00a7b31dcc0335a65995cb3569479cee6a3a8998


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

2022-01-22 Thread Olivier Hallot (via logerrit)
 source/text/sdatabase/1103.xhp |2 +-
 source/text/sdatabase/dabawiz01.xhp|1 -
 source/text/shared/autopi/01170200.xhp |   10 +++---
 3 files changed, 4 insertions(+), 9 deletions(-)

New commits:
commit 00a7b31dcc0335a65995cb3569479cee6a3a8998
Author: Olivier Hallot 
AuthorDate: Sat Jan 22 12:33:16 2022 -0300
Commit: Olivier Hallot 
CommitDate: Sat Jan 22 17:15:35 2022 +0100

LDAP abook is gone so gone is LDAP Help pages

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

diff --git a/source/text/sdatabase/1103.xhp 
b/source/text/sdatabase/1103.xhp
index ab8555a4c..9d8d45794 100644
--- a/source/text/sdatabase/1103.xhp
+++ b/source/text/sdatabase/1103.xhp
@@ -27,7 +27,7 @@
 
 
 
-ufi: removed remaining two index 
entriesmw added "(Base)" to all 4 entries  and transferred 2 
entries to shared/explorer/database/dabawiz02dbase.xhp
+ufi: removed remaining two index 
entriesmw added "(Base)" to all 4 entries  and transferred 2 
entries to sdatabase/dabawiz02dbase.xhp
 dBASEstill two Help IDs in this file. Else file 
can be removed
 Specify the settings for a dBASE database.
 
diff --git a/source/text/sdatabase/dabawiz01.xhp 
b/source/text/sdatabase/dabawiz01.xhp
index 5826a0d79..2da427274 100644
--- a/source/text/sdatabase/dabawiz01.xhp
+++ b/source/text/sdatabase/dabawiz01.xhp
@@ -60,7 +60,6 @@
 
 Set up text file 
connection
 Set up Microsoft Access or Microsoft 
Access 2007 connection
-Set up LDAP 
connection
 Set up ADO connection
 Set up JDBC 
connection
 Set up Oracle database 
connection
diff --git a/source/text/shared/autopi/01170200.xhp 
b/source/text/shared/autopi/01170200.xhp
index d5bd939a6..7a28c06cd 100644
--- a/source/text/shared/autopi/01170200.xhp
+++ b/source/text/shared/autopi/01170200.xhp
@@ -1,6 +1,4 @@
 
-
-
 
-
 
 
 
@@ -33,15 +30,14 @@
 
 
 
-Additional 
Settings
-Allows you to enter additional settings for LDAP address data and other 
external data sources.
+Additional Settings
+Allows you to enter additional settings for other external data 
sources.
 
 
   
 
 
-Settings
+Settings
 Calls a dialog in which you 
can enter additional settings.
-If you 
selected LDAP on the first page, you will see the LDAP 
page.UFI: deleted a para
 
 


[Libreoffice-bugs] [Bug 116412] Bundled python fails to import bz2 on Windows

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116412

Julien Nabet  changed:

   What|Removed |Added

 CC||d.ostrov...@gmx.de,
   ||glo...@fbihome.de,
   ||michael.st...@allotropia.de
   ||, serval2...@yahoo.fr

--- Comment #9 from Julien Nabet  ---
I could make "import bz2" work with these changes:
diff --git a/external/python3/ExternalPackage_python3.mk
b/external/python3/ExternalPackage_python3.mk
index faddf06fc36a..cadb3bf3e9f8 100644
--- a/external/python3/ExternalPackage_python3.mk
+++ b/external/python3/ExternalPackage_python3.mk
@@ -64,6 +64,7 @@ $(eval $(call
gb_ExternalPackage_add_files,python3,$(LIBO_BIN_FOLDER)/python-cor
LO_lib/_bisect.$(python3_EXTENSION_MODULE_SUFFIX).so \
LO_lib/_blake2.$(python3_EXTENSION_MODULE_SUFFIX).so \
LO_lib/cmath.$(python3_EXTENSION_MODULE_SUFFIX).so \
+   LO_lib/_bz2.$(python3_EXTENSION_MODULE_SUFFIX).so \
LO_lib/_codecs_cn.$(python3_EXTENSION_MODULE_SUFFIX).so \
LO_lib/_codecs_hk.$(python3_EXTENSION_MODULE_SUFFIX).so \
LO_lib/_codecs_iso2022.$(python3_EXTENSION_MODULE_SUFFIX).so \
diff --git a/external/python3/UnpackedTarball_python3.mk
b/external/python3/UnpackedTarball_python3.mk
index 31b6a166e6ae..68490e2e9fee 100644
--- a/external/python3/UnpackedTarball_python3.mk
+++ b/external/python3/UnpackedTarball_python3.mk
@@ -23,7 +23,6 @@ $(eval $(call gb_UnpackedTarball_add_patches,python3,\
external/python3/python-3.3.0-darwin.patch.1 \
external/python3/python-3.8-msvc-sdk.patch.1 \
external/python3/python-3.7.6-msvc-ssl.patch.1 \
-   external/python3/python-3.5.4-msvc-disable.patch.1 \
external/python3/ubsan.patch.0 \
external/python3/python-3.5.tweak.strip.soabi.patch \
external/python3/darwin.patch.0 \

This last part disables the patch which disables (double negation so I should
say "enables") a lot of libs from Python

I suppose putting minimum allows to provide lighter packages but if Python is
provided for macro scripting, I can understand the need of full Python, not
just core of it.
Also, if people have already installed Python, it's a pity we force to include
it again in LO.
=> In brief, I don't have strong opinion about just putting minimum libs in
Python embedded in LO.

Perhaps the start would be what was the goal to include Python at the first
time? macro scripting? LO QA tests in Python instead of Java? Other?
If people could provide pros and cons or perhaps should it be discussed in ESC?

Jan-Marek/Michael/David: any thoughts here?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146920] Alert about macros when opening a document

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146920

--- Comment #5 from dteja...@gmail.com ---
Created attachment 177708
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177708=edit
A copy of the file with no content

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146921] Duplicates menus in LibreOffice

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146921

--- Comment #4 from BogdanB  ---
I don't repro this in
Version: 7.3.1.0.0+ / LibreOffice Community
Build ID: de15e8d4f2f2e5d10cb5d9203e51f3a28347db8d
CPU threads: 16; OS: Linux 5.13; UI render: default; VCL: gtk3
Locale: ro-RO (ro_RO.UTF-8); UI: en-US
Calc: threaded

Or in
Version: 7.2.5.2 / LibreOffice Community
Build ID: 499f9727c189e6ef3471021d6132d4c694f357e5
CPU threads: 16; OS: Linux 5.13; UI render: default; VCL: gtk3
Locale: ro-RO (ro_RO.UTF-8); UI: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146921] Duplicates menus in LibreOffice

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146921

--- Comment #3 from BogdanB  ---
I am using AMD® Ryzen 7 5700u with radeon graphics × 16, Ubuntu 20.04.3 LTS,
64-bits, 3.36.8, X11. The system is updated and also LibreOffice 7.4 master is
up to date.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146920] Alert about macros when opening a document

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146920

--- Comment #4 from raal  ---
Please attach test file

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146921] Duplicates menus in LibreOffice

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146921

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g

--- Comment #2 from BogdanB  ---
Created attachment 177707
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177707=edit
screenshot

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146729] Why ".odt" format document opened with Libreoffice Draw

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146729

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1
 CC||r...@post.cz

--- Comment #1 from raal  ---
Hello,

Thank you for filing the bug. Please send us a sample document, as this makes
it easier for us to verify the bug. 
I have set the bug's status to 'NEEDINFO', so please do change it back to
'UNCONFIRMED' once you have attached a document.
(Please note that the attachment will be public, remove any sensitive
information before attaching it.)
How can I eliminate confidential data from a sample document?
https://wiki.documentfoundation.org/QA/FAQ#How_can_I_eliminate_confidential_data_from_a_sample_document.3F
Thank you

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 89620] Compress image should remember settings

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89620

--- Comment #6 from Jérôme  ---
(In reply to Yousuf Philips (jay) (retired) from comment #3)
> So it should remember jpeg
> compression, png quality
(In reply to Pierre-Alain Dorange from comment #4)
> This enhancement should also remember all setting of the "compress image"
> dialog : resolution, quality...

For the png lossless image format, I would prefer the "compression" parameter
instead of the "quality" parameter since the png quality is always the same.
For both png and jpeg, the "compression" term could be appropriate although the
jpeg quality decreases as the compression increases.
However, for a person who doesn't know the difference between the lossless and
lossy compression formats, maybe we could use a different parameter name :
- "quality" for jpeg
- "compression for the same quality" for png

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146591] The count of revisions might not be reliable

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146591

raal  changed:

   What|Removed |Added

Version|7.2.4.1 release |4.2.0.4 release
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
 CC||r...@post.cz

--- Comment #1 from raal  ---
I can confirm with Version: 7.4.0.0.alpha0+ / LibreOffice Community
Build ID: bd5492275d31f59b1d269205018d1487af52426f
CPU threads: 4; OS: Linux 5.11; UI render: default; VCL: gtk3
Locale: cs-CZ (cs_CZ.UTF-8); UI: en-US
Calc: threaded Jumbo


and Version 4.1.0.0.alpha0+ (Build ID: efca6f15609322f62a35619619a6d5fe5c9bd5a)

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 131063] Navigate document content when selection is made by single click in the Navigator

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131063

Jean-Baptiste Faure  changed:

   What|Removed |Added

 CC||jbfa...@libreoffice.org

--- Comment #21 from Jean-Baptiste Faure  ---
(In reply to Heiko Tietze from comment #12)
> Added this to the release notes (UI/General)

If I am not wrong, this option is not available in 7.3, only in current master
(7.4).

Best regards. JBF

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146920] Alert about macros when opening a document

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146920

--- Comment #3 from dteja...@gmail.com ---
Created attachment 177706
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177706=edit
Macros window

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146920] Alert about macros when opening a document

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146920

--- Comment #2 from dteja...@gmail.com ---
(In reply to raal from comment #1)
> Alert is not shown if the document has no macros. Can you test it with Safe
> mode? Menu Help > Restart in safe mode.

The alert also pops in safe mode.
Ok, I've created an empty document and the alert does not show, but in other
documents I use (created on ms word with a template) it seems there are no
macros.
I'll add a screenshot

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: download.lst external/curl

2022-01-22 Thread Caolán McNamara (via logerrit)
 download.lst  |4 ++--
 external/curl/UnpackedTarball_curl.mk |1 -
 external/curl/curl-7.26.0_win-proxy.patch |   12 ++--
 external/curl/curl-debug.patch.1  |   11 ---
 4 files changed, 8 insertions(+), 20 deletions(-)

New commits:
commit 40a84af1bdd7b3c414a8a78ca32b0951c03f9976
Author: Caolán McNamara 
AuthorDate: Sat Jan 22 14:16:07 2022 +
Commit: Caolán McNamara 
CommitDate: Sat Jan 22 16:45:52 2022 +0100

upgrade to curl-7.81.0

Change-Id: I0a34239bfb16bf19e25bf374c7f36c4cdf1776c1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128783
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 

diff --git a/download.lst b/download.lst
index 18987fca4dc9..68bd2292aa13 100644
--- a/download.lst
+++ b/download.lst
@@ -33,8 +33,8 @@ export CPPUNIT_SHA256SUM := 
89c5c6665337f56fd2db36bc3805a5619709d51fb136e5193707
 export CPPUNIT_TARBALL := cppunit-1.15.1.tar.gz
 export CT2N_SHA256SUM := 
71b238efd2734be9800af07566daea8d6685aeed28db5eb5fa0e6453f4d85de3
 export CT2N_TARBALL := 
1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt
-export CURL_SHA256SUM := 
0606f74b1182ab732a17c11613cbbaf7084f2e6cca432642d0e3ad7c224c3689
-export CURL_TARBALL := curl-7.79.1.tar.xz
+export CURL_SHA256SUM := 
ac8e1087711084548d788ef18b9b732c8de887457b81f616fc681d1044b32f98
+export CURL_TARBALL := curl-7.81.0.tar.gz
 export EBOOK_SHA256SUM := 
7e8d8ff34f27831aca3bc6f9cc532c2f90d2057c778963b884ff3d1e34dfe1f9
 export EBOOK_TARBALL := libe-book-0.1.3.tar.xz
 export EPOXY_SHA256SUM := 
d168a19a6edfdd9977fef1308ccf516079856a4275cf876de688fb7927e365e4
diff --git a/external/curl/UnpackedTarball_curl.mk 
b/external/curl/UnpackedTarball_curl.mk
index 3dada60eac8e..b89b000228c9 100644
--- a/external/curl/UnpackedTarball_curl.mk
+++ b/external/curl/UnpackedTarball_curl.mk
@@ -25,7 +25,6 @@ $(eval $(call gb_UnpackedTarball_add_patches,curl,\
external/curl/curl-msvc-disable-protocols.patch.1 \
external/curl/curl-7.26.0_win-proxy.patch \
external/curl/zlib.patch.0 \
-   external/curl/curl-debug.patch.1 \
external/curl/configurable-z-option.patch.0 \
 ))
 
diff --git a/external/curl/curl-7.26.0_win-proxy.patch 
b/external/curl/curl-7.26.0_win-proxy.patch
index 46cdcc739d80..1c5469a35479 100644
--- a/external/curl/curl-7.26.0_win-proxy.patch
+++ b/external/curl/curl-7.26.0_win-proxy.patch
@@ -31,7 +31,7 @@
 +{
 +  int bufSize;
 +  char *out = NULL;
-+  if(wStr != NULL) {
++  if(wStr) {
 +bufSize = WideCharToMultiByte(
 +  CP_ACP,  0, wStr, -1, NULL, 0, NULL, NULL);
 +out = (char *)malloc(bufSize * sizeof(char));
@@ -63,10 +63,10 @@
 +  ieNoProxy = wstrToCstr(ieProxyConfig->lpszProxyBypass);
 +
 +  /* Convert the ieNoProxy into a proper no_proxy value */
-+  if(NULL != ieNoProxy) {
++  if(ieNoProxy) {
 +no_proxy = strdup(ieNoProxy);
 +pos = strpbrk(no_proxy, "; ");
-+while(NULL != pos) {
++while(pos) {
 +  no_proxy[pos-no_proxy] = ',';
 +  pos = strpbrk(no_proxy, "; ");
 +}
@@ -77,9 +77,9 @@
 +char *tok;
 +char *saveptr;
 +
-+if(NULL != ieProxy) {
++if(ieProxy) {
 +  tok = strtok_s(ieProxy, ";", );
-+  if(strchr(tok, '=') == NULL) {
++  if(!strchr(tok, '=')) {
 +proxy = strdup(ieProxy);
 +  }
 +  else {
@@ -90,7 +90,7 @@
 +  }
 +  tok = strtok_s(NULL, ";", );
 +}
-+while(NULL != tok);
++while(tok);
 +  }
 +}
 +  }
diff --git a/external/curl/curl-debug.patch.1 b/external/curl/curl-debug.patch.1
deleted file mode 100644
index a000913ed335..
--- a/external/curl/curl-debug.patch.1
+++ /dev/null
@@ -1,11 +0,0 @@
 curl/lib/vtls/nss.c.orig   2021-10-01 17:34:59.302663021 +0200
-+++ curl/lib/vtls/nss.c2021-10-01 17:35:55.37010 +0200
-@@ -955,7 +955,7 @@
-   subject = CERT_NameToAscii(>subject);
-   issuer = CERT_NameToAscii(>issuer);
-   common_name = CERT_GetCommonName(>subject);
--  infof(data, "subject: %s\n", subject);
-+  infof(data, "subject: %s", subject);
- 
-   CERT_GetCertTimes(cert, , );
-   PR_ExplodeTime(notBefore, PR_GMTParameters, );


[Libreoffice-bugs] [Bug 89620] Compress image should remember settings

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89620

Jérôme  changed:

   What|Removed |Added

 CC||jerome.bo...@laposte.net

--- Comment #5 from Jérôme  ---
*** Bug 146903 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146903] the image compression form doesn't save the compression force setting

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146903

Jérôme  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #2 from Jérôme  ---
Before reporting, I couldn't find a previous report of this bug.

*** This bug has been marked as a duplicate of bug 89620 ***

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: configure.ac download.lst

2022-01-22 Thread Caolán McNamara (via logerrit)
 configure.ac |2 +-
 download.lst |4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 5190b933ef6d3c5faa23d8165b2109c4ea21df42
Author: Caolán McNamara 
AuthorDate: Sat Jan 22 13:07:23 2022 +
Commit: Caolán McNamara 
CommitDate: Sat Jan 22 16:45:26 2022 +0100

upgrade to Python-3.8.12

Change-Id: I0dd1a767c5c65e5789e690e13958ba4ad92a7e16
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128770
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 

diff --git a/configure.ac b/configure.ac
index d657aed4a01e..3c7a17d0df78 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9877,7 +9877,7 @@ if test \( "$cross_compiling" = yes -a -z 
"$PYTHON_FOR_BUILD" \) -o "$enable_pyt
 SYSTEM_PYTHON=
 PYTHON_VERSION_MAJOR=3
 PYTHON_VERSION_MINOR=8
-PYTHON_VERSION=${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}.10
+PYTHON_VERSION=${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}.12
 if ! grep -q -i python.*${PYTHON_VERSION} ${SRC_ROOT}/download.lst; then
 AC_MSG_ERROR([PYTHON_VERSION ${PYTHON_VERSION} but no matching file in 
download.lst])
 fi
diff --git a/download.lst b/download.lst
index 9e5175aa362a..18987fca4dc9 100644
--- a/download.lst
+++ b/download.lst
@@ -214,8 +214,8 @@ export POPPLER_DATA_SHA256SUM := 
2cec05cd1bb03af98a8b06a1e22f6e6e1a65b1e2f3816cb
 export POPPLER_DATA_TARBALL := poppler-data-0.4.11.tar.gz
 export POSTGRESQL_SHA256SUM := 
9b81067a55edbaabc418aacef457dd8477642827499560b00615a6ea6c13f6b3
 export POSTGRESQL_TARBALL := postgresql-13.5.tar.bz2
-export PYTHON_SHA256SUM := 
6af24a66093dd840bcccf371d4044a3027e655cf24591ce26e48022bc79219d9
-export PYTHON_TARBALL := Python-3.8.10.tar.xz
+export PYTHON_SHA256SUM := 
b1d3a76420375343b5e8a22fceb1ac65b77193e9ed27146524f0a9db058728ea
+export PYTHON_TARBALL := Python-3.8.12.tar.xz
 export QXP_SHA256SUM := 
e137b6b110120a52c98edd02ebdc4095ee08d0d5295a94316a981750095a945c
 export QXP_TARBALL := libqxp-0.0.2.tar.xz
 export RAPTOR_SHA256SUM := 
ada7f0ba54787b33485d090d3d2680533520cd4426d2f7fb4782dd4a6a1480ed


[Libreoffice-commits] core.git: sd/CppunitTest_sd_export_tests-ooxml3.mk

2022-01-22 Thread Stephan Bergmann (via logerrit)
 sd/CppunitTest_sd_export_tests-ooxml3.mk |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit de3898aecb11307789644a1814e9cbb1ee4cc29b
Author: Stephan Bergmann 
AuthorDate: Sat Jan 22 10:56:15 2022 +0100
Commit: Stephan Bergmann 
CommitDate: Sat Jan 22 16:45:09 2022 +0100

Add missing test dependency

> [_RUN_] SdOOXMLExportTest3::testTdf140912_PicturePlaceholder
[...]
> warn:vcl:680849:680849:vcl/source/bitmap/BitmapEx.cxx:98: 
BitmapEx::BitmapEx(): could not load image sd/res/image.png via icon theme 
colibre
> warn:svx:680849:680849:svx/source/unodraw/unoshape.cxx:1779: 
DBG_UNHANDLED_EXCEPTION in setPropertyValues exception: 
com.sun.star.beans.UnknownPropertyException message: FromWordArt 
svx/source/unodraw/unoshape.cxx:1600
> warn:svx.uno:680849:680849:svx/source/unodraw/unoshape.cxx:1599: Unknown 
Property: URL
> warn:svx:680849:680849:svx/source/unodraw/unoshape.cxx:1779: 
DBG_UNHANDLED_EXCEPTION in setPropertyValues exception: 
com.sun.star.beans.UnknownPropertyException message: URL 
svx/source/unodraw/unoshape.cxx:1600
> 
sd/qa/unit/export-tests-ooxml3.cxx:1863:SdOOXMLExportTest3::testTdf140912_PicturePlaceholder
> equality assertion failed
> - Expected: -8490
> - Actual  : 0

Change-Id: I7710bf04ff5106d52fe51b515f2ed59097e88e07
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128753
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/sd/CppunitTest_sd_export_tests-ooxml3.mk 
b/sd/CppunitTest_sd_export_tests-ooxml3.mk
index 88b15f953261..4e79f4ccd9cc 100644
--- a/sd/CppunitTest_sd_export_tests-ooxml3.mk
+++ b/sd/CppunitTest_sd_export_tests-ooxml3.mk
@@ -11,4 +11,7 @@
 
 $(eval $(call sd_export_test,-ooxml3))
 
+$(call gb_CppunitTest_get_target,sd_export_tests-ooxml3): \
+$(call gb_Package_get_target,postprocess_images)
+
 # vim: set noet sw=4 ts=4:


[Libreoffice-bugs] [Bug 146903] the image compression form doesn't save the compression force setting

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146903

Jérôme  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=89
   ||620

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 89620] Compress image should remember settings

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89620

Jérôme  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=14
   ||6903

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146865] changing grid color loses complementing feature.

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146865

raal  changed:

   What|Removed |Added

 CC||r...@post.cz
 Resolution|--- |WONTFIX
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from raal  ---
According the bug 104631 - grid should not be visible in pictures, closing this
bug as wontfix

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146836] ACCESS2BASE Library does not work with Libreoffice 7.3 rc2

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146836

Andreas Heinisch  changed:

   What|Removed |Added

   Keywords||bibisectRequest

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146836] ACCESS2BASE Library does not work with Libreoffice 7.3 rc2

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146836

Julien Nabet  changed:

   What|Removed |Added

 CC||andreas.heini...@yahoo.de

--- Comment #7 from Julien Nabet  ---
Thank you Jean-Pierre for your feedback.

Andreas: thought you might be interested in this one since it must be in basic
part then.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146895] Error when inserting pdf files with frame into Writer

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146895

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #2 from raal  ---
Please attach test file. Thank you.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 64991] RTL: open RTL doc is extremely slow

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=64991

Jean-Baptiste Faure  changed:

   What|Removed |Added

 CC||jbfa...@libreoffice.org
 Resolution|DUPLICATE   |FIXED

--- Comment #20 from Jean-Baptiste Faure  ---
If that bug has commits that fixes the problem, then it can't be a duplicate of
a still open bug.

So change as Resolved Fixed.

Best regards. JBF

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146497] Crash in: std::_Tree, std::allocator, 0> >::erase

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146497

raal  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||r...@post.cz
 Status|UNCONFIRMED |NEEDINFO

--- Comment #2 from raal  ---
Hello,

Thank you for filing the bug. Please send us a sample document and steps to
reproduce, as this makes it easier for us to verify the bug. 
I have set the bug's status to 'NEEDINFO', so please do change it back to
'UNCONFIRMED' once you have attached a document.
(Please note that the attachment will be public, remove any sensitive
information before attaching it.)
How can I eliminate confidential data from a sample document?
https://wiki.documentfoundation.org/QA/FAQ#How_can_I_eliminate_confidential_data_from_a_sample_document.3F
Thank you

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146921] Duplicates menus in LibreOffice

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146921

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #1 from raal  ---
Please attach screenshot.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146922] New: Groupedbar Compact UI : share a few creation templates with the standard menu

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146922

Bug ID: 146922
   Summary: Groupedbar Compact UI : share a few creation templates
with the standard menu
   Product: LibreOffice
   Version: 7.2.5.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jerome.bo...@laposte.net

A few group menus contains sub menus which have to provide the same entries
than the standard menu.

For example, the comment #10 of the bug #142990 proposes to add a sub menu
entry to the "insert" group that is identical to the "field" sub menu of the
standard "insert" menu ?

In order to decrease the discrepancies between the 2 sub menus, could we
possibly use the same template in order to create the 2 sub-menus ?

Other sub menus may benefit from this feature.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146920] Alert about macros when opening a document

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146920

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #1 from raal  ---
Alert is not shown if the document has no macros. Can you test it with Safe
mode? Menu Help > Restart in safe mode.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 142990] Groupedbar Compact UI : "insert" group is missing calculated fields

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142990

--- Comment #10 from Jérôme  ---
Could we have a sub menu entry that is identical to the "field" sub menu of the
standard "insert" menu ?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146836] ACCESS2BASE Library does not work with Libreoffice 7.3 rc2

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146836

--- Comment #6 from Jean-Pierre Ledure  ---
I confirm that when the 3rd form ("F1xEMPRESA") is opened, and when the "Salir"
button is pressed:

- in 7.3 an empty message box appears, what should not happen
Version: 7.3.0.2 / LibreOffice Community
Build ID: f1c9017ac60ecca268da7b1cf147b10e244b9b21
CPU threads: 6; OS: Linux 5.4; UI render: default; VCL: kf5 (cairo+xcb)
Locale: en-US (en_US.UTF-8); UI: en-US
Calc: threaded

- in 7.2 the form is closed normally
Version: 7.2.4.1 / LibreOffice Community
Build ID: 27d75539669ac387bb498e35313b970b7fe9c4f9
CPU threads: 6; OS: Linux 5.4; UI render: default; VCL: kf5 (cairo+xcb)
Locale: fr-BE (en_US.UTF-8); UI: en-US
Calc: threaded

The behaviour observed in 7.3 seems related to a weird behaviour of the Basic
interpreter.

Steps to reproduce:
1. Open the provided FINCAxFIREBIRD_ejemplo.odb file.
2. Edit Macro sub CERRAR() in module F1xEMPRESA in the odb file. Put a
breakpoint on line 4:
  MCLOSE(acForm,"F1xEMPRESA")
3. Open form F1xEMPRESA from the usual Base welcome screen, and press the
button "Salir" in the form. Nothing happens because in the background the
execution is suspended on the breakpoint.
4. Go to the Basic IDE. The execution is suspended on line 4.
5. Press F8 to debug step by step. The execution umps to line 104 of the DoCmd
module of the Access2Base library.
6. Watch in the watch window the 3 arguments of the mClose() function:
  pvObjectType (2)
  pvObjectName ("F1xEMPRESA")
  pvSave ("")
7. Execute 3x Shift+F8 up to but not including line 108.
8. Press F8 to execute line 108
  mClose = False
 => Suddenly and unexpectedly all 3 arguments became ""
??
   Of course, with puzzling arguments, the execution of the Basic code becomes
erratic.

In 7.2 the same scenario does not alter the value of the 3 arguments of the
mClose() function.


Until other evidence I do not consider that the root cause of the bug is to be
found in the Access2Base code.

Of course, I stay open for further discussion.

Anyway I confirm the bug as a confirmed regression.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146921] New: Duplicates menus in LibreOffice

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146921

Bug ID: 146921
   Summary: Duplicates menus in LibreOffice
   Product: LibreOffice
   Version: 7.4.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: buzea.bog...@libreoffice.org

Description:
AS you can see in the screenshot 3 items in the menu are duplicated.

Steps to Reproduce:
1.Open LibreOffice 7.4 Master
2. Some menu items are duplicated like in the screenshot


Actual Results:
Duplicated menus

Expected Results:
Each menu appears once


Reproducible: Always


User Profile Reset: Yes



Additional Info:
Version: 7.4.0.0.alpha0+ / LibreOffice Community
Build ID: bd5492275d31f59b1d269205018d1487af52426f
CPU threads: 16; OS: Linux 5.13; UI render: default; VCL: gtk3
Locale: ro-RO (ro_RO.UTF-8); UI: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145908] Faulty display

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145908

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||r...@post.cz
 Ever confirmed|0   |1

--- Comment #1 from raal  ---
Screenshot is not accessible, please attach it to the bug.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: chart2/source solenv/clang-format

2022-01-22 Thread Noel Grandin (via logerrit)
 chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx|1 
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx|5 
 chart2/source/controller/chartapiwrapper/MinMaxLineWrapper.cxx |   51 
+++
 chart2/source/controller/chartapiwrapper/UpDownBarWrapper.cxx  |   21 
+--
 chart2/source/controller/chartapiwrapper/WrappedGapwidthProperty.cxx   |   51 
+++
 chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx   |   21 
+--
 chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx   |3 
 chart2/source/controller/dialogs/DataBrowserModel.cxx  |   12 -
 chart2/source/controller/dialogs/DialogModel.cxx   |   13 +
 chart2/source/controller/dialogs/ObjectNameProvider.cxx|3 
 chart2/source/controller/dialogs/dlg_ObjectProperties.cxx  |3 
 chart2/source/controller/dialogs/tp_3D_SceneGeometry.cxx   |1 
 chart2/source/controller/itemsetwrapper/AxisItemConverter.cxx  |1 
 chart2/source/controller/itemsetwrapper/DataPointItemConverter.cxx |3 
 chart2/source/controller/itemsetwrapper/SeriesOptionsItemConverter.cxx |   39 
++---
 chart2/source/controller/itemsetwrapper/TextLabelItemConverter.cxx |3 
 chart2/source/controller/main/ChartController_Properties.cxx   |3 
 chart2/source/controller/main/ChartController_Window.cxx   |   19 
+-
 chart2/source/controller/main/ControllerCommandDispatch.cxx|3 
 chart2/source/controller/main/DragMethod_RotateDiagram.cxx |1 
 chart2/source/controller/main/ObjectHierarchy.cxx  |3 
 chart2/source/inc/AxisHelper.hxx   |5 
 chart2/source/inc/BaseCoordinateSystem.hxx |5 
 chart2/source/inc/ChartModelHelper.hxx |4 
 chart2/source/inc/ChartType.hxx|   11 +
 chart2/source/inc/ChartTypeHelper.hxx  |3 
 chart2/source/inc/ChartTypeTemplate.hxx|   17 
+-
 chart2/source/inc/DiagramHelper.hxx|8 -
 chart2/source/model/main/BaseCoordinateSystem.cxx  |   37 
+++--
 chart2/source/model/template/AreaChartType.cxx |5 
 chart2/source/model/template/AreaChartType.hxx |4 
 chart2/source/model/template/BarChartType.cxx  |5 
 chart2/source/model/template/BarChartType.hxx  |4 
 chart2/source/model/template/BubbleChartType.cxx   |5 
 chart2/source/model/template/BubbleChartType.hxx   |4 
 chart2/source/model/template/CandleStickChartType.cxx  |5 
 chart2/source/model/template/CandleStickChartType.hxx  |4 
 chart2/source/model/template/ChartType.cxx |2 
 chart2/source/model/template/ChartTypeTemplate.cxx |   66 
+++---
 chart2/source/model/template/ColumnChartType.cxx   |5 
 chart2/source/model/template/ColumnChartType.hxx   |4 
 chart2/source/model/template/ColumnLineChartTypeTemplate.cxx   |2 
 chart2/source/model/template/ColumnLineChartTypeTemplate.hxx   |4 
 chart2/source/model/template/FilledNetChartType.cxx|5 
 chart2/source/model/template/FilledNetChartType.hxx|2 
 chart2/source/model/template/LineChartType.cxx |5 
 chart2/source/model/template/LineChartType.hxx |4 
 chart2/source/model/template/LineChartTypeTemplate.cxx |   12 -
 chart2/source/model/template/NetChartType.cxx  |5 
 chart2/source/model/template/NetChartType.hxx  |4 
 chart2/source/model/template/NetChartTypeTemplate.cxx  |5 
 chart2/source/model/template/PieChartType.cxx  |5 
 chart2/source/model/template/PieChartType.hxx  |4 
 chart2/source/model/template/PieChartTypeTemplate.cxx  |7 -
 chart2/source/model/template/PieChartTypeTemplate.hxx  |4 
 chart2/source/model/template/ScatterChartType.cxx  |5 
 chart2/source/model/template/ScatterChartType.hxx  |4 
 chart2/source/model/template/ScatterChartTypeTemplate.cxx  |6 
 chart2/source/model/template/StockChartTypeTemplate.cxx|2 
 chart2/source/model/template/StockChartTypeTemplate.hxx|4 
 chart2/source/tools/AxisHelper.cxx |   20 
+--
 chart2/source/tools/ChartModelHelper.cxx   

[Libreoffice-commits] core.git: connectivity/source

2022-01-22 Thread Julien Nabet (via logerrit)
 connectivity/source/drivers/mysqlc/mysqlc_keys.cxx |   15 ++-
 1 file changed, 2 insertions(+), 13 deletions(-)

New commits:
commit fe9f6ac055ec95d06d9e28ee4d9871cc366ac540
Author: Julien Nabet 
AuthorDate: Sat Jan 22 10:45:19 2022 +0100
Commit: Julien Nabet 
CommitDate: Sat Jan 22 16:07:23 2022 +0100

Mysql/MariaDB: Clean mysqlc_keys + remove using

Change-Id: Idd7d0ce4ffd18fec95102c41372c83fb7df11168
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128757
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/connectivity/source/drivers/mysqlc/mysqlc_keys.cxx 
b/connectivity/source/drivers/mysqlc/mysqlc_keys.cxx
index d5d97f892fc7..7706844f238c 100644
--- a/connectivity/source/drivers/mysqlc/mysqlc_keys.cxx
+++ b/connectivity/source/drivers/mysqlc/mysqlc_keys.cxx
@@ -10,19 +10,8 @@
 #include "mysqlc_keys.hxx"
 #include "mysqlc_table.hxx"
 
-#include 
-
-using namespace ::connectivity;
-using namespace ::connectivity::mysqlc;
-
-using namespace ::osl;
-
-using namespace ::com::sun::star;
-using namespace ::com::sun::star::beans;
-using namespace ::com::sun::star::sdbc;
-using namespace ::com::sun::star::uno;
-
-Keys::Keys(Table* pTable, Mutex& rMutex, const ::std::vector& rNames)
+connectivity::mysqlc::Keys::Keys(Table* pTable, osl::Mutex& rMutex,
+ const ::std::vector& rNames)
 : OKeysHelper(pTable, rMutex, rNames)
 {
 }


[Libreoffice-bugs] [Bug 31480] Find/replace non-printing characters easily

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=31480

--- Comment #30 from olivia emma  ---
How Important Do doctor Make In Canada? is the question people are veritably
curious about. 
Piecemeal from having the honor to serve the indigent, medical professions also
come with healthy pay.
Before entering any career, anyone would be interested in knowing the financial
price it would give.
https://www.aceqbank.com/how-much-do-doctors-make-in-canada/

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: basic/source

2022-01-22 Thread Julien Nabet (via logerrit)
 basic/source/inc/rtlproto.hxx   |1 +
 basic/source/runtime/props.cxx  |2 +-
 basic/source/runtime/stdobj.cxx |1 +
 3 files changed, 3 insertions(+), 1 deletion(-)

New commits:
commit c1205c1cf6e08d94e6e2e2753679d99bc1842ca0
Author: Julien Nabet 
AuthorDate: Sat Jan 22 14:31:00 2022 +0100
Commit: Julien Nabet 
CommitDate: Sat Jan 22 15:56:25 2022 +0100

Related tdf#146909: add missing IDIGNORE in Basic

Change-Id: Idbbceb2f5375d47c942bab70ce81f7be79b17478
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128780
Reviewed-by: Mike Kaganski 
Tested-by: Jenkins

diff --git a/basic/source/inc/rtlproto.hxx b/basic/source/inc/rtlproto.hxx
index 06f0bd8b0c30..cf342f337256 100644
--- a/basic/source/inc/rtlproto.hxx
+++ b/basic/source/inc/rtlproto.hxx
@@ -72,6 +72,7 @@ extern void SbRtl_IDOK(StarBASIC * pBasic, SbxArray & rPar, 
bool bWrite);
 extern void SbRtl_IDCANCEL(StarBASIC * pBasic, SbxArray & rPar, bool bWrite);
 extern void SbRtl_IDABORT(StarBASIC * pBasic, SbxArray & rPar, bool bWrite);
 extern void SbRtl_IDRETRY(StarBASIC * pBasic, SbxArray & rPar, bool bWrite);
+extern void SbRtl_IDIGNORE(StarBASIC * pBasic, SbxArray & rPar, bool bWrite);
 extern void SbRtl_IDYES(StarBASIC * pBasic, SbxArray & rPar, bool bWrite);
 extern void SbRtl_IDNO(StarBASIC * pBasic, SbxArray & rPar, bool bWrite);
 
diff --git a/basic/source/runtime/props.cxx b/basic/source/runtime/props.cxx
index aa0a9e1c9d85..82478bf6d3cf 100644
--- a/basic/source/runtime/props.cxx
+++ b/basic/source/runtime/props.cxx
@@ -103,10 +103,10 @@ void SbRtl_MB_APPLMODAL(StarBASIC*, SbxArray& rPar, bool) 
{ rPar.Get(0)->PutInte
 void SbRtl_MB_SYSTEMMODAL(StarBASIC*, SbxArray& rPar, bool) { 
rPar.Get(0)->PutInteger(4096); }
 
 void SbRtl_IDOK(StarBASIC*, SbxArray& rPar, bool) { 
rPar.Get(0)->PutInteger(1); }
-
 void SbRtl_IDCANCEL(StarBASIC*, SbxArray& rPar, bool) { 
rPar.Get(0)->PutInteger(2); }
 void SbRtl_IDABORT(StarBASIC*, SbxArray& rPar, bool) { 
rPar.Get(0)->PutInteger(3); }
 void SbRtl_IDRETRY(StarBASIC*, SbxArray& rPar, bool) { 
rPar.Get(0)->PutInteger(4); }
+void SbRtl_IDIGNORE(StarBASIC*, SbxArray& rPar, bool) { 
rPar.Get(0)->PutInteger(5); }
 void SbRtl_IDYES(StarBASIC*, SbxArray& rPar, bool) { 
rPar.Get(0)->PutInteger(6); }
 void SbRtl_IDNO(StarBASIC*, SbxArray& rPar, bool) { 
rPar.Get(0)->PutInteger(7); }
 
diff --git a/basic/source/runtime/stdobj.cxx b/basic/source/runtime/stdobj.cxx
index 0bb572bbcd33..4adda6efafec 100644
--- a/basic/source/runtime/stdobj.cxx
+++ b/basic/source/runtime/stdobj.cxx
@@ -451,6 +451,7 @@ constexpr Method aMethods[] = {
 
 { u"IDABORT",   SbxINTEGER,  CPROP_,   
SbRtl_IDABORT  },
 { u"IDCANCEL",  SbxINTEGER,  CPROP_,   
SbRtl_IDCANCEL },
+{ u"IDIGNORE",  SbxINTEGER,  CPROP_,   
SbRtl_IDIGNORE },
 { u"IDNO",  SbxINTEGER,  CPROP_,   
SbRtl_IDNO },
 { u"IDOK",  SbxINTEGER,  CPROP_,   
SbRtl_IDOK },
 { u"IDRETRY",   SbxINTEGER,  CPROP_,   
SbRtl_IDRETRY  },


[Libreoffice-bugs] [Bug 146778] Function wizard for DATAD.SE in pt-PT translates arguments incorrectly

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146778

--- Comment #6 from Commit Notification 
 ---
Rafael Lima committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/help/commit/e3bcf0ef395578e011a76943a15f3467ea128b35

tdf#146778 Clarify the use of the "Interval" argument

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146778] Function wizard for DATAD.SE in pt-PT translates arguments incorrectly

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146778

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.4.0

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: helpcontent2

2022-01-22 Thread Rafael Lima (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 5522e0770fc71f75d27e6179ec58db542daf6183
Author: Rafael Lima 
AuthorDate: Sat Jan 22 15:44:00 2022 +0100
Commit: Gerrit Code Review 
CommitDate: Sat Jan 22 15:44:00 2022 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to e3bcf0ef395578e011a76943a15f3467ea128b35
  - tdf#146778 Clarify the use of the "Interval" argument

+ minor refactoring.

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

diff --git a/helpcontent2 b/helpcontent2
index 7577c4518f25..e3bcf0ef3955 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 7577c4518f2592b2da440638cc1945c0f54f0319
+Subproject commit e3bcf0ef395578e011a76943a15f3467ea128b35


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

2022-01-22 Thread Rafael Lima (via logerrit)
 source/text/scalc/01/func_datedif.xhp |   10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

New commits:
commit e3bcf0ef395578e011a76943a15f3467ea128b35
Author: Rafael Lima 
AuthorDate: Fri Jan 21 15:40:12 2022 +0100
Commit: Olivier Hallot 
CommitDate: Sat Jan 22 15:43:58 2022 +0100

tdf#146778 Clarify the use of the "Interval" argument

+ minor refactoring.

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

diff --git a/source/text/scalc/01/func_datedif.xhp 
b/source/text/scalc/01/func_datedif.xhp
index d6a1cb465..c8dae66be 100644
--- a/source/text/scalc/01/func_datedif.xhp
+++ b/source/text/scalc/01/func_datedif.xhp
@@ -17,19 +17,21 @@
 
 DATEDIF function
 
-DATEDIF
-
+
+DATEDIF
 This function returns the number of whole days, months 
or years between Start date and End date.
 
 
 
-DATEDIF(Start date; 
End date; Interval)
+
+  DATEDIF(Start date; End date; Interval)
+
 
 Start date is the date from when the calculation is carried 
out.
 
 End date is the date until the calculation is carried out. End 
date must be later, than Start date.
 
-Interval is a string, accepted values are "d", "m", "y", "ym", 
"md" or "yd".
+Interval is a string that determines how the difference will be 
calculated. Possible values are "d", "m", "y", "ym", "md" or "yd" regardless of 
the current language settings.
 
 
 


[Libreoffice-bugs] [Bug 132643] [LOCALHELP] Translate section id to English mnemonics

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132643

--- Comment #705 from Commit Notification 
 ---
Johnny_M committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/help/commit/7577c4518f2592b2da440638cc1945c0f54f0319

tdf#132643 Translate German section IDs

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 132643] [LOCALHELP] Translate section id to English mnemonics

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132643

--- Comment #704 from Commit Notification 
 ---
Johnny_M committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/help/commit/f3c5d27c93253aa497b11880e6205a14b3f9211f

tdf#132643 Translate German section IDs

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: helpcontent2

2022-01-22 Thread Johnny_M (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c03ae5acdd7a719e03314dd8c94d3117bda77ac4
Author: Johnny_M 
AuthorDate: Sat Jan 22 15:42:30 2022 +0100
Commit: Gerrit Code Review 
CommitDate: Sat Jan 22 15:42:30 2022 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to 7577c4518f2592b2da440638cc1945c0f54f0319
  - tdf#132643 Translate German section IDs

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

diff --git a/helpcontent2 b/helpcontent2
index f3c5d27c9325..7577c4518f25 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit f3c5d27c93253aa497b11880e6205a14b3f9211f
+Subproject commit 7577c4518f2592b2da440638cc1945c0f54f0319


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

2022-01-22 Thread Johnny_M (via logerrit)
 source/text/swriter/01/0510.xhp |2 +-
 source/text/swriter/01/05100300.xhp |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 7577c4518f2592b2da440638cc1945c0f54f0319
Author: Johnny_M 
AuthorDate: Sat Jan 22 14:24:40 2022 +0100
Commit: Olivier Hallot 
CommitDate: Sat Jan 22 15:42:29 2022 +0100

tdf#132643 Translate German section IDs

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

diff --git a/source/text/swriter/01/0510.xhp 
b/source/text/swriter/01/0510.xhp
index 17a154ed4..429259e12 100644
--- a/source/text/swriter/01/0510.xhp
+++ b/source/text/swriter/01/0510.xhp
@@ -39,7 +39,7 @@
 
 
 
-
+
 
 
 
diff --git a/source/text/swriter/01/05100300.xhp 
b/source/text/swriter/01/05100300.xhp
index 964b2eeb1..16ad0563c 100644
--- a/source/text/swriter/01/05100300.xhp
+++ b/source/text/swriter/01/05100300.xhp
@@ -25,7 +25,7 @@
   


-  
+  
 
 Protect
  


[Libreoffice-commits] core.git: helpcontent2

2022-01-22 Thread Johnny_M (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2870fc5631b0503f99634111dc027df212e7334a
Author: Johnny_M 
AuthorDate: Sat Jan 22 15:42:03 2022 +0100
Commit: Gerrit Code Review 
CommitDate: Sat Jan 22 15:42:03 2022 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to f3c5d27c93253aa497b11880e6205a14b3f9211f
  - tdf#132643 Translate German section IDs

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

diff --git a/helpcontent2 b/helpcontent2
index b5c99664f867..f3c5d27c9325 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit b5c99664f8678fbd7445dad722019bfd6f17b870
+Subproject commit f3c5d27c93253aa497b11880e6205a14b3f9211f


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

2022-01-22 Thread Johnny_M (via logerrit)
 source/text/shared/01/0503.xhp  |2 +-
 source/text/swriter/00/0405.xhp |2 +-
 source/text/swriter/01/05030400.xhp |4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit f3c5d27c93253aa497b11880e6205a14b3f9211f
Author: Johnny_M 
AuthorDate: Sat Jan 22 14:22:11 2022 +0100
Commit: Olivier Hallot 
CommitDate: Sat Jan 22 15:42:01 2022 +0100

tdf#132643 Translate German section IDs

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

diff --git a/source/text/shared/01/0503.xhp 
b/source/text/shared/01/0503.xhp
index 4aa631496..81156dc74 100644
--- a/source/text/shared/01/0503.xhp
+++ b/source/text/shared/01/0503.xhp
@@ -44,7 +44,7 @@
 
 
 
-
+
 
 
 
diff --git a/source/text/swriter/00/0405.xhp 
b/source/text/swriter/00/0405.xhp
index 0abd91598..461573cbb 100644
--- a/source/text/swriter/00/0405.xhp
+++ b/source/text/swriter/00/0405.xhp
@@ -26,7 +26,7 @@


   Format Menu
-  
+  
  Choose Format - Paragraph - Drop Caps 
tab.
  Choose View - Styles - open context menu 
Modify/New - Drop Caps tab.
   
diff --git a/source/text/swriter/01/05030400.xhp 
b/source/text/swriter/01/05030400.xhp
index d5dbc3cdf..ab7106324 100644
--- a/source/text/swriter/01/05030400.xhp
+++ b/source/text/swriter/01/05030400.xhp
@@ -30,7 +30,7 @@
 
 
 
-
+
 first letters as large capital 
letters
 capital letters;starting paragraphs
 drop caps insertion
@@ -41,7 +41,7 @@
 Formats the first letter of a 
paragraph with a large capital letter, that can span several lines. The 
paragraph must span at least as many lines as you specify in the Lines 
box.
 
 
-  
+  
 
 Settings
 


[Libreoffice-bugs] [Bug 132643] [LOCALHELP] Translate section id to English mnemonics

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132643

--- Comment #703 from Commit Notification 
 ---
Johnny_M committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/help/commit/b5c99664f8678fbd7445dad722019bfd6f17b870

tdf#132643 Translate German section IDs

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: helpcontent2

2022-01-22 Thread Johnny_M (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 73f114a925c3ae7b431250bf22df9e7ed9416c2c
Author: Johnny_M 
AuthorDate: Sat Jan 22 15:41:13 2022 +0100
Commit: Gerrit Code Review 
CommitDate: Sat Jan 22 15:41:13 2022 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to b5c99664f8678fbd7445dad722019bfd6f17b870
  - tdf#132643 Translate German section IDs

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

diff --git a/helpcontent2 b/helpcontent2
index 53dd06a1d068..b5c99664f867 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 53dd06a1d068c9da4a5bb6c273dc70a8fa2ba174
+Subproject commit b5c99664f8678fbd7445dad722019bfd6f17b870


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

2022-01-22 Thread Johnny_M (via logerrit)
 source/text/swriter/01/0409.xhp |2 +-
 source/text/swriter/01/04090004.xhp |4 ++--
 source/text/swriter/01/04090007.xhp |2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit b5c99664f8678fbd7445dad722019bfd6f17b870
Author: Johnny_M 
AuthorDate: Sat Jan 22 14:13:31 2022 +0100
Commit: Olivier Hallot 
CommitDate: Sat Jan 22 15:41:10 2022 +0100

tdf#132643 Translate German section IDs

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

diff --git a/source/text/swriter/01/0409.xhp 
b/source/text/swriter/01/0409.xhp
index ecd4bd699..e60d61990 100644
--- a/source/text/swriter/01/0409.xhp
+++ b/source/text/swriter/01/0409.xhp
@@ -36,7 +36,7 @@
 
 
 
-
+
 
 
 
diff --git a/source/text/swriter/01/04090004.xhp 
b/source/text/swriter/01/04090004.xhp
index b99000f3b..e3af7f363 100644
--- a/source/text/swriter/01/04090004.xhp
+++ b/source/text/swriter/01/04090004.xhp
@@ -25,7 +25,7 @@
 
 
 
-
+
 
 
 DocInformation
@@ -34,7 +34,7 @@
 
 
 
-When you export and import an HTML 
document containing DocInformation fields, special $[officename] formats are used.
+When you export and import an HTML 
document containing DocInformation fields, special $[officename] formats are used.
 
 Lists the available field 
types. To add a field to your document, click a field type, click a field in 
the Select list, and then click Insert.
 
diff --git a/source/text/swriter/01/04090007.xhp 
b/source/text/swriter/01/04090007.xhp
index 278512da6..829009a6b 100644
--- a/source/text/swriter/01/04090007.xhp
+++ b/source/text/swriter/01/04090007.xhp
@@ -90,7 +90,7 @@
 
 
 
-
+
 DocInformation Fields
 For 
DocInformation fields, the TYPE parameter equals DOCINFO. The SUBTYPE parameter 
displays the specific field type, for example, for the "Created" DocInformation 
field, SUBTYPE=CREATE. For date and time DocInformation fields, the FORMAT 
parameter equals DATE or TIME, and the SDNUM parameter indicates the number 
format that is used. The SDFIXED parameter indicates if the content of the 
DocInformation field is fixed or not.
 The contents 
of a fixed date or time field are equal to the SDVAL parameter, otherwise the 
contents are equal to the text found between the SDFIELD HTML tags.


[Libreoffice-commits] core.git: helpcontent2

2022-01-22 Thread Johnny_M (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 806a960a5656a6994578a3dc27bb09e9e8e0857f
Author: Johnny_M 
AuthorDate: Sat Jan 22 15:40:32 2022 +0100
Commit: Gerrit Code Review 
CommitDate: Sat Jan 22 15:40:32 2022 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to 53dd06a1d068c9da4a5bb6c273dc70a8fa2ba174
  - tdf#132643 Translate German section IDs

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

diff --git a/helpcontent2 b/helpcontent2
index a6a0e4762167..53dd06a1d068 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit a6a0e47621671f8d099b8b857e20b1093f5b95fa
+Subproject commit 53dd06a1d068c9da4a5bb6c273dc70a8fa2ba174


[Libreoffice-bugs] [Bug 132643] [LOCALHELP] Translate section id to English mnemonics

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132643

--- Comment #702 from Commit Notification 
 ---
Johnny_M committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/help/commit/53dd06a1d068c9da4a5bb6c273dc70a8fa2ba174

tdf#132643 Translate German section IDs

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 132643] [LOCALHELP] Translate section id to English mnemonics

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132643

--- Comment #701 from Commit Notification 
 ---
Johnny_M committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/help/commit/a6a0e47621671f8d099b8b857e20b1093f5b95fa

tdf#132643 Translate German section IDs

-- 
You are receiving this mail because:
You are the assignee for the bug.

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

2022-01-22 Thread Johnny_M (via logerrit)
 source/text/swriter/01/04090001.xhp |2 +-
 source/text/swriter/01/04090007.xhp |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 53dd06a1d068c9da4a5bb6c273dc70a8fa2ba174
Author: Johnny_M 
AuthorDate: Sat Jan 22 14:08:32 2022 +0100
Commit: Olivier Hallot 
CommitDate: Sat Jan 22 15:40:31 2022 +0100

tdf#132643 Translate German section IDs

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

diff --git a/source/text/swriter/01/04090001.xhp 
b/source/text/swriter/01/04090001.xhp
index 4fc1a0ce7..f6ff3328e 100644
--- a/source/text/swriter/01/04090001.xhp
+++ b/source/text/swriter/01/04090001.xhp
@@ -163,7 +163,7 @@
 
 
 Inserts the field as static 
content, that is, the field cannot be updated.
-For the HTML export and import of 
date and time fields, special $[officename] formats are 
used.
+For the HTML export and import of 
date and time fields, special $[officename] formats are 
used.
 
 
 
diff --git a/source/text/swriter/01/04090007.xhp 
b/source/text/swriter/01/04090007.xhp
index 9fa6dd33b..278512da6 100644
--- a/source/text/swriter/01/04090007.xhp
+++ b/source/text/swriter/01/04090007.xhp
@@ -41,7 +41,7 @@
 Special 
Tags
 When you save 
a document that contains fields as an HTML document, $[officename] 
automatically converts date, time, and DocInformation fields to special HTML 
tags. The field contents are inserted between the opening and closing HTML tags 
of the converted fields. These special HTML tags do not correspond to standard 
HTML tags.
 $[officename] 
Writer fields are identified by the SDFIELD tag in an HTML document. 
The field type, the format, and the name of the special field are included in 
the opening HTML tag. The format of a field tag that is recognized by an HTML 
filter depends on the field type.
-
+
 Date 
and Time Fields
 For "Date" and 
"Time" fields, the TYPE parameter equals DATETIME. The format of the date or 
the time is specified by the SDNUM parameter, for example, DD:MM:YY for dates, 
or HH:MM:SS for time.
 For fixed date 
and time fields, the date or the time is specified by the SDVAL 
parameter.


[Libreoffice-commits] core.git: helpcontent2

2022-01-22 Thread Johnny_M (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f080d12c31f9c4eddf8cbc870b8bd5c35f3ac122
Author: Johnny_M 
AuthorDate: Sat Jan 22 15:39:42 2022 +0100
Commit: Gerrit Code Review 
CommitDate: Sat Jan 22 15:39:42 2022 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to a6a0e47621671f8d099b8b857e20b1093f5b95fa
  - tdf#132643 Translate German section IDs

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

diff --git a/helpcontent2 b/helpcontent2
index 0f6c933bfc9f..a6a0e4762167 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 0f6c933bfc9ffe1a6d92816e9e9acf7736b5cdbe
+Subproject commit a6a0e47621671f8d099b8b857e20b1093f5b95fa


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

2022-01-22 Thread Johnny_M (via logerrit)
 source/text/swriter/01/0608.xhp |2 +-
 source/text/swriter/01/06080100.xhp |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit a6a0e47621671f8d099b8b857e20b1093f5b95fa
Author: Johnny_M 
AuthorDate: Sat Jan 22 14:03:37 2022 +0100
Commit: Olivier Hallot 
CommitDate: Sat Jan 22 15:39:40 2022 +0100

tdf#132643 Translate German section IDs

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

diff --git a/source/text/swriter/01/0608.xhp 
b/source/text/swriter/01/0608.xhp
index 75e8fc704..ecd2f5020 100644
--- a/source/text/swriter/01/0608.xhp
+++ b/source/text/swriter/01/0608.xhp
@@ -34,7 +34,7 @@
 
 
 
-
+
 
 
 
diff --git a/source/text/swriter/01/06080100.xhp 
b/source/text/swriter/01/06080100.xhp
index 7bace5bc8..697611098 100644
--- a/source/text/swriter/01/06080100.xhp
+++ b/source/text/swriter/01/06080100.xhp
@@ -27,7 +27,7 @@
 
 
 
-
+
 
 
 Footnote 
Settings


[Libreoffice-bugs] [Bug 132643] [LOCALHELP] Translate section id to English mnemonics

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132643

--- Comment #700 from Commit Notification 
 ---
Johnny_M committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/help/commit/0f6c933bfc9ffe1a6d92816e9e9acf7736b5cdbe

tdf#132643 Translate German section IDs

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: helpcontent2

2022-01-22 Thread Johnny_M (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit a85ffacc9a53e6c31677bad0f6647b67a8a86b17
Author: Johnny_M 
AuthorDate: Sat Jan 22 15:39:12 2022 +0100
Commit: Gerrit Code Review 
CommitDate: Sat Jan 22 15:39:12 2022 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to 0f6c933bfc9ffe1a6d92816e9e9acf7736b5cdbe
  - tdf#132643 Translate German section IDs

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

diff --git a/helpcontent2 b/helpcontent2
index 665ac4656a0c..0f6c933bfc9f 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 665ac4656a0cc0fcbd90353d82589d962e899b7b
+Subproject commit 0f6c933bfc9ffe1a6d92816e9e9acf7736b5cdbe


[Libreoffice-bugs] [Bug 132643] [LOCALHELP] Translate section id to English mnemonics

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132643

--- Comment #699 from Commit Notification 
 ---
Johnny_M committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/help/commit/665ac4656a0cc0fcbd90353d82589d962e899b7b

tdf#132643 Translate German section IDs

-- 
You are receiving this mail because:
You are the assignee for the bug.

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

2022-01-22 Thread Johnny_M (via logerrit)
 source/text/swriter/01/0515.xhp |2 +-
 source/text/swriter/01/05150300.xhp |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 0f6c933bfc9ffe1a6d92816e9e9acf7736b5cdbe
Author: Johnny_M 
AuthorDate: Sat Jan 22 14:00:44 2022 +0100
Commit: Olivier Hallot 
CommitDate: Sat Jan 22 15:39:09 2022 +0100

tdf#132643 Translate German section IDs

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

diff --git a/source/text/swriter/01/0515.xhp 
b/source/text/swriter/01/0515.xhp
index 54f9fdb8f..aed08b4d6 100644
--- a/source/text/swriter/01/0515.xhp
+++ b/source/text/swriter/01/0515.xhp
@@ -36,7 +36,7 @@
   
   
   
-  
+  
   AutoCorrect Options
   Opens the AutoCorrect dialog.
   To open 
the AutoFormat for Tables dialog, click in a table cell, and then 
choose Table - AutoFormat Styles.
diff --git a/source/text/swriter/01/05150300.xhp 
b/source/text/swriter/01/05150300.xhp
index 799cc0f22..7fc74ac1a 100644
--- a/source/text/swriter/01/05150300.xhp
+++ b/source/text/swriter/01/05150300.xhp
@@ -28,7 +28,7 @@
 
 
 
-
+
 
 Apply and 
Edit Changes
 Automatically formats the file according to 
the options that you set under Tools - AutoCorrect - AutoCorrect 
Options. In a dialog, you are asked to accept or reject the 
changes.


[Libreoffice-commits] core.git: helpcontent2

2022-01-22 Thread Johnny_M (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit a9442de049c6ed7eba6884b1a1fbfebb277cc4e0
Author: Johnny_M 
AuthorDate: Sat Jan 22 15:38:25 2022 +0100
Commit: Gerrit Code Review 
CommitDate: Sat Jan 22 15:38:25 2022 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to 665ac4656a0cc0fcbd90353d82589d962e899b7b
  - tdf#132643 Translate German section IDs

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

diff --git a/helpcontent2 b/helpcontent2
index cc28eb455d34..665ac4656a0c 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit cc28eb455d344762519687068a245eea30c30035
+Subproject commit 665ac4656a0cc0fcbd90353d82589d962e899b7b


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

2022-01-22 Thread Johnny_M (via logerrit)
 source/text/swriter/01/0509.xhp |2 +-
 source/text/swriter/01/05090200.xhp |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 665ac4656a0cc0fcbd90353d82589d962e899b7b
Author: Johnny_M 
AuthorDate: Sat Jan 22 13:57:13 2022 +0100
Commit: Olivier Hallot 
CommitDate: Sat Jan 22 15:38:20 2022 +0100

tdf#132643 Translate German section IDs

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

diff --git a/source/text/swriter/01/0509.xhp 
b/source/text/swriter/01/0509.xhp
index 181bf5c62..39d793e93 100644
--- a/source/text/swriter/01/0509.xhp
+++ b/source/text/swriter/01/0509.xhp
@@ -33,7 +33,7 @@
 
 
 
-
+
 
 
 
diff --git a/source/text/swriter/01/05090200.xhp 
b/source/text/swriter/01/05090200.xhp
index 2a3cf909c..431d16f30 100644
--- a/source/text/swriter/01/05090200.xhp
+++ b/source/text/swriter/01/05090200.xhp
@@ -30,7 +30,7 @@
 
 
 
-
+
 
 
 Columns


[Libreoffice-bugs] [Bug 132643] [LOCALHELP] Translate section id to English mnemonics

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132643

--- Comment #698 from Commit Notification 
 ---
Johnny_M committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/help/commit/cc28eb455d344762519687068a245eea30c30035

tdf#132643 Translate German section IDs

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: helpcontent2

2022-01-22 Thread Johnny_M (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f77bf2e8063b8efcc28b408d02bac9eca0148685
Author: Johnny_M 
AuthorDate: Sat Jan 22 15:37:49 2022 +0100
Commit: Gerrit Code Review 
CommitDate: Sat Jan 22 15:37:49 2022 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to cc28eb455d344762519687068a245eea30c30035
  - tdf#132643 Translate German section IDs

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

diff --git a/helpcontent2 b/helpcontent2
index 8d3ab37c18dd..cc28eb455d34 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 8d3ab37c18ddd781cd1e1c82cd49d5e5b6299800
+Subproject commit cc28eb455d344762519687068a245eea30c30035


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

2022-01-22 Thread Johnny_M (via logerrit)
 source/text/swriter/01/04120221.xhp |2 +-
 source/text/swriter/01/04120222.xhp |2 +-
 source/text/swriter/01/04120223.xhp |2 +-
 source/text/swriter/01/04120224.xhp |2 +-
 source/text/swriter/01/04120225.xhp |2 +-
 source/text/swriter/01/04120226.xhp |2 +-
 source/text/swriter/01/04120227.xhp |2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)

New commits:
commit cc28eb455d344762519687068a245eea30c30035
Author: Johnny_M 
AuthorDate: Sat Jan 22 13:53:21 2022 +0100
Commit: Olivier Hallot 
CommitDate: Sat Jan 22 15:37:47 2022 +0100

tdf#132643 Translate German section IDs

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

diff --git a/source/text/swriter/01/04120221.xhp 
b/source/text/swriter/01/04120221.xhp
index 33b3d940e..6404ec33f 100644
--- a/source/text/swriter/01/04120221.xhp
+++ b/source/text/swriter/01/04120221.xhp
@@ -98,7 +98,7 @@
 All
 Applies the current settings to all 
levels without closing the dialog.
 
-
+
 
 
 Character Style
diff --git a/source/text/swriter/01/04120222.xhp 
b/source/text/swriter/01/04120222.xhp
index fb730e49c..c5af1cbc6 100644
--- a/source/text/swriter/01/04120222.xhp
+++ b/source/text/swriter/01/04120222.xhp
@@ -51,7 +51,7 @@
 
 
 
-
+
 
 Character Style for main entries
 Specify the formatting style 
for the main entries in the alphabetical index. To convert an index entry into 
a main entry, click in front of the index field in the document and then choose 
Edit - Index Entry.
diff --git a/source/text/swriter/01/04120223.xhp 
b/source/text/swriter/01/04120223.xhp
index 7e4cf9c0a..6ae8959f6 100644
--- a/source/text/swriter/01/04120223.xhp
+++ b/source/text/swriter/01/04120223.xhp
@@ -42,7 +42,7 @@
 
 
 
-
+
 
 
 
diff --git a/source/text/swriter/01/04120224.xhp 
b/source/text/swriter/01/04120224.xhp
index ba6126358..f96d1b8ff 100644
--- a/source/text/swriter/01/04120224.xhp
+++ b/source/text/swriter/01/04120224.xhp
@@ -42,7 +42,7 @@
 
 
 
-
+
 
 
 
diff --git a/source/text/swriter/01/04120225.xhp 
b/source/text/swriter/01/04120225.xhp
index 8c5d3e5e0..fb1e24102 100644
--- a/source/text/swriter/01/04120225.xhp
+++ b/source/text/swriter/01/04120225.xhp
@@ -42,7 +42,7 @@
 
 
 
-
+
 
 
 
diff --git a/source/text/swriter/01/04120226.xhp 
b/source/text/swriter/01/04120226.xhp
index c5db36e1a..0e632780e 100644
--- a/source/text/swriter/01/04120226.xhp
+++ b/source/text/swriter/01/04120226.xhp
@@ -42,7 +42,7 @@
 
 
 
-
+
 
 
 
diff --git a/source/text/swriter/01/04120227.xhp 
b/source/text/swriter/01/04120227.xhp
index 7ad4c319a..1019e73bd 100644
--- a/source/text/swriter/01/04120227.xhp
+++ b/source/text/swriter/01/04120227.xhp
@@ -45,7 +45,7 @@
 Adds the reference code for the 
selected bibliography entry to the Structure line. Select an entry in the list, 
click in an empty box, and then click this button.
 Remove
 Removes the selected reference 
code from the Structure line.
-
+
 Sort 
by
 Specify the 
sorting options for the bibliography entries.
 Document position


[Libreoffice-bugs] [Bug 132643] [LOCALHELP] Translate section id to English mnemonics

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132643

--- Comment #697 from Commit Notification 
 ---
Johnny_M committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/help/commit/8d3ab37c18ddd781cd1e1c82cd49d5e5b6299800

tdf#132643 Translate German section IDs

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: helpcontent2

2022-01-22 Thread Johnny_M (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e35c81098ce4695050c62d40595e7882f2ed4ee6
Author: Johnny_M 
AuthorDate: Sat Jan 22 15:35:24 2022 +0100
Commit: Gerrit Code Review 
CommitDate: Sat Jan 22 15:35:24 2022 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to 8d3ab37c18ddd781cd1e1c82cd49d5e5b6299800
  - tdf#132643 Translate German section IDs

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

diff --git a/helpcontent2 b/helpcontent2
index 65dca462c0c5..8d3ab37c18dd 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 65dca462c0c5e1b1ee5689346cdc02a4e9c33d4a
+Subproject commit 8d3ab37c18ddd781cd1e1c82cd49d5e5b6299800


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

2022-01-22 Thread Johnny_M (via logerrit)
 source/text/swriter/01/04120221.xhp |2 +-
 source/text/swriter/01/04120222.xhp |2 +-
 source/text/swriter/01/04120223.xhp |2 +-
 source/text/swriter/01/04120224.xhp |2 +-
 source/text/swriter/01/04120225.xhp |2 +-
 source/text/swriter/01/04120226.xhp |2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 8d3ab37c18ddd781cd1e1c82cd49d5e5b6299800
Author: Johnny_M 
AuthorDate: Sat Jan 22 13:42:56 2022 +0100
Commit: Olivier Hallot 
CommitDate: Sat Jan 22 15:35:21 2022 +0100

tdf#132643 Translate German section IDs

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

diff --git a/source/text/swriter/01/04120221.xhp 
b/source/text/swriter/01/04120221.xhp
index 056dcecf1..33b3d940e 100644
--- a/source/text/swriter/01/04120221.xhp
+++ b/source/text/swriter/01/04120221.xhp
@@ -69,7 +69,7 @@
 Inserts the chapter number. 
To assign chapter numbering to a heading style, choose Tools - Chapter 
Numbering.
 
 
-
+
 
 
 Entry 
text (E)
diff --git a/source/text/swriter/01/04120222.xhp 
b/source/text/swriter/01/04120222.xhp
index f7c83c3c7..fb730e49c 100644
--- a/source/text/swriter/01/04120222.xhp
+++ b/source/text/swriter/01/04120222.xhp
@@ -38,7 +38,7 @@
 
 Level "S" 
refers to the single letter headings that divide the index entries 
alphabetically. To enable these headings, select the Alphabetical 
delimiter check box in the Format area.
 
-
+
 
 
 Chapter Info
diff --git a/source/text/swriter/01/04120223.xhp 
b/source/text/swriter/01/04120223.xhp
index 550eec2f6..7e4cf9c0a 100644
--- a/source/text/swriter/01/04120223.xhp
+++ b/source/text/swriter/01/04120223.xhp
@@ -38,7 +38,7 @@
 
 Illustration 
Indexes only have one index level.
 
-
+
 
 
 
diff --git a/source/text/swriter/01/04120224.xhp 
b/source/text/swriter/01/04120224.xhp
index 246c5f5a9..ba6126358 100644
--- a/source/text/swriter/01/04120224.xhp
+++ b/source/text/swriter/01/04120224.xhp
@@ -38,7 +38,7 @@
 
 An Index of 
Tables only has one index level.
 
-
+
 
 
 
diff --git a/source/text/swriter/01/04120225.xhp 
b/source/text/swriter/01/04120225.xhp
index 8fc8c446c..8c5d3e5e0 100644
--- a/source/text/swriter/01/04120225.xhp
+++ b/source/text/swriter/01/04120225.xhp
@@ -38,7 +38,7 @@
 
 User-defined 
indexes do not support sub-keys.
 
-
+
 
 
 
diff --git a/source/text/swriter/01/04120226.xhp 
b/source/text/swriter/01/04120226.xhp
index 3c2f548b9..c5db36e1a 100644
--- a/source/text/swriter/01/04120226.xhp
+++ b/source/text/swriter/01/04120226.xhp
@@ -38,7 +38,7 @@
 
 A Table of 
Objects only has one index level.
 
-
+
 
 
 


[Libreoffice-bugs] [Bug 132643] [LOCALHELP] Translate section id to English mnemonics

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132643

--- Comment #696 from Commit Notification 
 ---
Johnny_M committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/help/commit/65dca462c0c5e1b1ee5689346cdc02a4e9c33d4a

tdf#132643 Translate German section IDs

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 132643] [LOCALHELP] Translate section id to English mnemonics

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132643

--- Comment #695 from Commit Notification 
 ---
Johnny_M committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/help/commit/2b3f8364f47a474b76e3edaed180c294d0d56c46

tdf#132643 Translate German section IDs

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: helpcontent2

2022-01-22 Thread Johnny_M (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 7341d1ea0f73d05058e9c2b8e8de29755df73ca3
Author: Johnny_M 
AuthorDate: Sat Jan 22 15:34:17 2022 +0100
Commit: Gerrit Code Review 
CommitDate: Sat Jan 22 15:34:17 2022 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to 65dca462c0c5e1b1ee5689346cdc02a4e9c33d4a
  - tdf#132643 Translate German section IDs

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

diff --git a/helpcontent2 b/helpcontent2
index 2b3f8364f47a..65dca462c0c5 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 2b3f8364f47a474b76e3edaed180c294d0d56c46
+Subproject commit 65dca462c0c5e1b1ee5689346cdc02a4e9c33d4a


[Libreoffice-bugs] [Bug 132643] [LOCALHELP] Translate section id to English mnemonics

2022-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132643

--- Comment #694 from Commit Notification 
 ---
Johnny_M committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/help/commit/88c1720669758e0ef5796e1b5d3cdfe673a88dfd

tdf#132643 Translate German section IDs

-- 
You are receiving this mail because:
You are the assignee for the bug.

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

2022-01-22 Thread Johnny_M (via logerrit)
 source/text/swriter/01/0621.xhp |2 +-
 source/text/swriter/01/0699.xhp |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 65dca462c0c5e1b1ee5689346cdc02a4e9c33d4a
Author: Johnny_M 
AuthorDate: Sat Jan 22 12:16:45 2022 +0100
Commit: Olivier Hallot 
CommitDate: Sat Jan 22 15:34:15 2022 +0100

tdf#132643 Translate German section IDs

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

diff --git a/source/text/swriter/01/0621.xhp 
b/source/text/swriter/01/0621.xhp
index 6c805f6cd..be96318fc 100644
--- a/source/text/swriter/01/0621.xhp
+++ b/source/text/swriter/01/0621.xhp
@@ -32,7 +32,7 @@
 
   
   
-  
+  
 
 Links
   Updates the links in the current 
document.
diff --git a/source/text/swriter/01/0699.xhp 
b/source/text/swriter/01/0699.xhp
index 974b03385..148868b45 100644
--- a/source/text/swriter/01/0699.xhp
+++ b/source/text/swriter/01/0699.xhp
@@ -39,7 +39,7 @@
 
   
   
-  
+  
   
   
   


[Libreoffice-commits] core.git: helpcontent2

2022-01-22 Thread Johnny_M (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f6b70ed26450ea7d9dcaf2cd18a7a1b4db01
Author: Johnny_M 
AuthorDate: Sat Jan 22 15:33:50 2022 +0100
Commit: Gerrit Code Review 
CommitDate: Sat Jan 22 15:33:50 2022 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to 2b3f8364f47a474b76e3edaed180c294d0d56c46
  - tdf#132643 Translate German section IDs

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

diff --git a/helpcontent2 b/helpcontent2
index 88c172066975..2b3f8364f47a 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 88c1720669758e0ef5796e1b5d3cdfe673a88dfd
+Subproject commit 2b3f8364f47a474b76e3edaed180c294d0d56c46


<    1   2   3   >