[Libreoffice-commits] core.git: desktop/source extensions/source include/curlinit.hxx include/opensslinit.hxx include/systools lingucomponent/source linguistic/source svl/source ucb/source vcl/source

2023-11-10 Thread Mike Kaganski (via logerrit)
 desktop/source/app/updater.cxx|2 
 desktop/source/minidump/minidump.cxx  |2 
 extensions/source/update/check/download.cxx   |2 
 include/systools/curlinit.hxx |   24 

 lingucomponent/source/spellcheck/languagetool/languagetoolimp.cxx |   10 ---
 linguistic/source/translate.cxx   |2 
 svl/source/crypto/cryptosign.cxx  |2 
 ucb/source/ucp/cmis/cmis_content.cxx  |2 
 ucb/source/ucp/webdav-curl/CurlSession.cxx|   28 
--
 vcl/source/app/svmain.cxx |2 
 10 files changed, 34 insertions(+), 42 deletions(-)

New commits:
commit f5926c8cfbd5af1fb7214428b4b03453b826f9a5
Author: Mike Kaganski 
AuthorDate: Fri Nov 10 15:36:45 2023 +0300
Commit: Mike Kaganski 
CommitDate: Sat Nov 11 08:42:57 2023 +0100

Move user agent initialization to InitCurl_easy

Places that didn't initialize it previously, would benefit automatically

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

diff --git a/desktop/source/app/updater.cxx b/desktop/source/app/updater.cxx
index 7ff6234b4555..edac2cb38350 100644
--- a/desktop/source/app/updater.cxx
+++ b/desktop/source/app/updater.cxx
@@ -38,7 +38,7 @@
 #include 
 #include 
 
-#include 
+#include 
 #include 
 
 #include 
diff --git a/desktop/source/minidump/minidump.cxx 
b/desktop/source/minidump/minidump.cxx
index 7fbb0884987d..0a31fff6f285 100644
--- a/desktop/source/minidump/minidump.cxx
+++ b/desktop/source/minidump/minidump.cxx
@@ -17,7 +17,7 @@
 
 #include 
 
-#include 
+#include 
 
 #ifdef _WIN32
 #include 
diff --git a/extensions/source/update/check/download.cxx 
b/extensions/source/update/check/download.cxx
index 9b4823777289..ab5402c0ae42 100644
--- a/extensions/source/update/check/download.cxx
+++ b/extensions/source/update/check/download.cxx
@@ -23,7 +23,7 @@
 
 #include 
 
-#include 
+#include 
 
 #include 
 #include 
diff --git a/include/curlinit.hxx b/include/systools/curlinit.hxx
similarity index 56%
rename from include/curlinit.hxx
rename to include/systools/curlinit.hxx
index c80397caf466..7034534af66f 100644
--- a/include/curlinit.hxx
+++ b/include/systools/curlinit.hxx
@@ -19,6 +19,11 @@
 #include "opensslinit.hxx"
 #endif
 
+#include 
+#include 
+
+#include 
+
 static void InitCurl_easy(CURL* const pCURL)
 {
 CURLcode rc;
@@ -44,6 +49,25 @@ static void InitCurl_easy(CURL* const pCURL)
 rc = curl_easy_setopt(pCURL, CURLOPT_REDIR_PROTOCOLS_STR, "https");
 assert(rc == CURLE_OK);
 }
+
+curl_version_info_data const* const 
pVersion(curl_version_info(CURLVERSION_NOW));
+assert(pVersion);
+SAL_INFO("ucb.ucp.webdav.curl",
+ "curl version: " << pVersion->version << " " << pVersion->host
+  << " features: " << ::std::hex << 
pVersion->features << " ssl: "
+  << pVersion->ssl_version << " libz: " << 
pVersion->libz_version);
+// Make sure a User-Agent header is always included, as at least
+// en.wikipedia.org:80 forces back 403 "Scripts should use an informative
+// User-Agent string with contact information, or they may be IP-blocked
+// without notice" otherwise:
+OString const useragent(
+OString::Concat("LibreOffice " LIBO_VERSION_DOTTED " 
denylistedbackend/")
++ pVersion->version + " " + pVersion->ssl_version);
+// looks like an explicit "User-Agent" header in CURLOPT_HTTPHEADER
+// will override CURLOPT_USERAGENT, see Curl_http_useragent(), so no need
+// to check anything here
+rc = curl_easy_setopt(pCURL, CURLOPT_USERAGENT, useragent.getStr());
+assert(rc == CURLE_OK);
 }
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s 
cinkeys+=0=break: */
diff --git a/include/opensslinit.hxx b/include/systools/opensslinit.hxx
similarity index 100%
rename from include/opensslinit.hxx
rename to include/systools/opensslinit.hxx
diff --git a/lingucomponent/source/spellcheck/languagetool/languagetoolimp.cxx 
b/lingucomponent/source/spellcheck/languagetool/languagetoolimp.cxx
index 45b4f9df6bdc..599bb01c6194 100644
--- a/lingucomponent/source/spellcheck/languagetool/languagetoolimp.cxx
+++ b/lingucomponent/source/spellcheck/languagetool/languagetoolimp.cxx
@@ -42,7 +42,7 @@
 #include 
 #include 
 
-#include 
+#include 
 
 #include 
 #include 
@@ -135,14 +135,6 @@ std::string makeHttpRequest_impl(std::u16string_view aURL, 
HTTP_METHOD method,
 
 ::InitCurl_easy(curl.get());
 
-// Same useragent string as in CurlSession 
(ucp/webdav-curl/CurlSession.cxx)
-curl_version_info_data const* const 
pVersion(curl_version_info(CURLVERSION_NOW));
-  

[Libreoffice-bugs] [Bug 158173] Draw messes up the formatting of PDFs when trying to edit them

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158173

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||stephane.guillou@libreoffic
   ||e.org
 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
Thanks for the repot.
Please provide an example PDF file, preferably that focuses on one specific
issue, so it is more likely to get fixed.
Much appreciated!

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

[Libreoffice-bugs] [Bug 157948] Offset function using negative numbers for height or width works in Microsoft Excel, not in Calc

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157948

--- Comment #5 from Stéphane Guillou (stragu) 
 ---
The issue was brought up before on Ask.LO, where Eike already commented on
it[1].
He explained there that MS Excel allows negative values even though both the MS
documentation[2] and the OOXML specification[3] say it is not allowed.

Closing as "not our bug" (see even MS Office users reporting it[4]), but it
would be good to have it mentioned in our documentation.[5]

[1]:
https://ask.libreoffice.org/t/calc-offset-function-works-may-give-different-result-than-excel-equivalent/24859/5?u=stragu
[2]:
https://support.microsoft.com/en-us/office/offset-function-c8de19ae-dd79-4b9b-a14e-b4d906d11b66
[3]: ECMA-376-1:2016 section 18.17.7.245, see
https://ecma-international.org/publications-and-standards/standards/ecma-376/
[4]:
https://answers.microsoft.com/en-us/msoffice/forum/all/offset-bug-negative-height-argument/dc24aca4-b77c-e011-9b4b-68b599b31bf5
[5]: https://wiki.documentfoundation.org/Documentation/Calc_Functions/OFFSET

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

[Libreoffice-bugs] [Bug 108827] [META] Calc functions bugs and enhancements

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108827

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||157948


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=157948
[Bug 157948] Offset function using negative numbers for height or width works
in Microsoft Excel, not in Calc
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 157948] Offset function using negative numbers for height or width works in Microsoft Excel, not in Calc

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157948

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

URL||https://ask.libreoffice.org
   ||/t/calc-offset-function-wor
   ||ks-may-give-different-resul
   ||t-than-excel-equivalent/248
   ||59
 Blocks||108827
 CC||stephane.guillou@libreoffic
   ||e.org
 Status|UNCONFIRMED |RESOLVED
Summary|Offset function using   |Offset function using
   |negative numbers|negative numbers for height
   ||or width works in Microsoft
   ||Excel, not in Calc
 Resolution|--- |NOTOURBUG

--- Comment #4 from Stéphane Guillou (stragu) 
 ---
The issue was brought up before on Ask.LO, where Eike already commented on
it[1].
He explained there that MS Excel allows negative values even though both the MS
documentation[2] and the OOXML specification[1] say it is not allowed.

Closing as "not our bug" (see even MS Office users reporting it[4]), but it
would be good to have it mentioned in our documentation.[5]

[1]:
https://ask.libreoffice.org/t/calc-offset-function-works-may-give-different-result-than-excel-equivalent/24859/5?u=stragu
[2]:
https://support.microsoft.com/en-us/office/offset-function-c8de19ae-dd79-4b9b-a14e-b4d906d11b66
[3]: ECMA-376-1:2016 section 18.17.7.245, see
https://ecma-international.org/publications-and-standards/standards/ecma-376/
[4]:
https://answers.microsoft.com/en-us/msoffice/forum/all/offset-bug-negative-height-argument/dc24aca4-b77c-e011-9b4b-68b599b31bf5
[5]: https://wiki.documentfoundation.org/Documentation/Calc_Functions/OFFSET


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108827
[Bug 108827] [META] Calc functions bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 108827] [META] Calc functions bugs and enhancements

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108827
Bug 108827 depends on bug 157948, which changed state.

Bug 157948 Summary: Offset function using negative numbers for height or width 
works in Microsoft Excel, not in Calc
https://bugs.documentfoundation.org/show_bug.cgi?id=157948

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTOURBUG

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

[Libreoffice-bugs] [Bug 123648] [META] Custom shapes

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123648

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||157956


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=157956
[Bug 157956] Modernize the "Flowchart Alternate Process" shape to use circular
corner rounding in all sizes
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 157956] Modernize the "Flowchart Alternate Process" shape to use circular corner rounding in all sizes

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157956

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |ASSIGNED
   Assignee|libreoffice-b...@lists.free |dpskhu13...@gmail.com
   |desktop.org |
 Blocks||123648
 CC||stephane.guillou@libreoffic
   ||e.org

--- Comment #2 from Stéphane Guillou (stragu) 
 ---
Kushi, I've assigned this bug report to you.
Do you have more to submit on it? If not, you can mark it as "fixed".

I tested the example ODP in a recent trunk build and it matchs much better,
although you can still see a slight difference in overlap.
Maybe Regina can comment, but from what I see on gerrit, she is happy with the
result.

Thank you both!


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=123648
[Bug 123648] [META] Custom shapes
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158167] Calc: cannot move selected row (recent 24.2)

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158167

--- Comment #2 from BogdanB  ---
I tried to bibisect, but I don't kwow how to test it:
- click on row header 2 (for example)
- move cursor on the cell area of row 2
- drag & drop that row down --> the row data is moving down

I missed something?

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

[Libreoffice-bugs] [Bug 158174] New: EDITING: AutoCorrect locale options should have an exception for single smart quotes to be substituted back to apostrophes when in the middle of a word

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158174

Bug ID: 158174
   Summary: EDITING: AutoCorrect locale options should have an
exception for single smart quotes to be substituted
back to apostrophes when in the middle of a word
   Product: LibreOffice
   Version: 7.6.2.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: joaopauloag-freedesk...@yahoo.com.br

This is an enhancement request for AutoCorrect.

The AutoCorrect locale options should have an exception for converting back the
curved single quote mark back as an apostrophe mark when inside a composite
word, such as: d’água -> d'água.

The reason is that (at least in the English, French and Portuguese languages)
the apostrophe mark is used to indicate the omission of letters in compound
words (and other use cases, as the English genitive case, marking of plurals
etc.), such as these examples:

* Arraial d'Ajuda
* Caixa d'água
* Copo d'água
* Estrela d'alva
* Galinha d'Angola
* Pau d'arco
* Santa Bárbara d'Oeste
* Vozes d'África

* CD's
* Oakland A's
* VIP's

See https://en.wikipedia.org/wiki/Apostrophe,
https://en.wikipedia.org/wiki/Apostrophe#Non-English_use and
https://pt.wikipedia.org/wiki/Ap%C3%B3strofo for uses of apostrophe.

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

[Libreoffice-commits] core.git: compilerplugins/clang

2023-11-10 Thread Noel Grandin (via logerrit)
 compilerplugins/clang/fieldcast.cxx  |   39 +-
 compilerplugins/clang/fieldcast.results  |  423 +++
 compilerplugins/clang/test/fieldcast.cxx |   22 +
 3 files changed, 93 insertions(+), 391 deletions(-)

New commits:
commit 50add2043752c7b07beccef9a509bea6c09619f8
Author: Noel Grandin 
AuthorDate: Thu Nov 9 15:31:05 2023 +0200
Commit: Noel Grandin 
CommitDate: Sat Nov 11 07:22:56 2023 +0100

loplugin:fieldcast improvements

reduce false positives, and also check reinterpret_cast

Change-Id: Ia6f214393f28451d18c16b764a3c2b149d29ba8a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159302
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/compilerplugins/clang/fieldcast.cxx 
b/compilerplugins/clang/fieldcast.cxx
index 7f2b728e8e22..0807aef9b3c3 100644
--- a/compilerplugins/clang/fieldcast.cxx
+++ b/compilerplugins/clang/fieldcast.cxx
@@ -61,6 +61,7 @@ public:
 
 bool VisitCXXStaticCastExpr(const CXXStaticCastExpr*);
 bool VisitCXXDynamicCastExpr(const CXXDynamicCastExpr*);
+bool VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr*);
 
 private:
 MyFieldInfo niceName(const FieldDecl*);
@@ -151,25 +152,26 @@ bool FieldCast::VisitCXXStaticCastExpr(const 
CXXStaticCastExpr* expr)
 return true;
 }
 
+bool FieldCast::VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr* expr)
+{
+checkCast(expr);
+return true;
+}
+
 void FieldCast::checkCast(const CXXNamedCastExpr* expr)
 {
 if (ignoreLocation(expr))
 return;
 if 
(isInUnoIncludeFile(compiler.getSourceManager().getSpellingLoc(expr->getBeginLoc(
 return;
-const QualType exprType = expr->getTypeAsWritten();
-if (!exprType->getPointeeCXXRecordDecl())
+auto castToType = expr->getTypeAsWritten()->getPointeeCXXRecordDecl();
+if (!castToType)
 return;
 const Expr* subExpr = compat::getSubExprAsWritten(expr);
+const FieldDecl* fieldDecl = nullptr;
 if (const MemberExpr* memberExpr = 
dyn_cast_or_null(subExpr->IgnoreImplicit()))
 {
-const FieldDecl* fieldDecl = 
dyn_cast_or_null(memberExpr->getMemberDecl());
-if (!fieldDecl)
-return;
-if (isInUnoIncludeFile(
-
compiler.getSourceManager().getSpellingLoc(fieldDecl->getBeginLoc(
-return;
-castMap.emplace(fieldDecl, exprType->getPointeeCXXRecordDecl());
+fieldDecl = dyn_cast_or_null(memberExpr->getMemberDecl());
 }
 else if (const CXXMemberCallExpr* memberCallExpr
  = dyn_cast_or_null(subExpr->IgnoreImplicit()))
@@ -181,14 +183,19 @@ void FieldCast::checkCast(const CXXNamedCastExpr* expr)
 memberCallExpr->getImplicitObjectArgument()->IgnoreImplicit());
 if (!memberExpr)
 return;
-const FieldDecl* fieldDecl = 
dyn_cast_or_null(memberExpr->getMemberDecl());
-if (!fieldDecl)
-return;
-if (isInUnoIncludeFile(
-
compiler.getSourceManager().getSpellingLoc(fieldDecl->getBeginLoc(
-return;
-castMap.emplace(fieldDecl, exprType->getPointeeCXXRecordDecl());
+fieldDecl = dyn_cast_or_null(memberExpr->getMemberDecl());
 }
+if (!fieldDecl)
+return;
+if 
(isInUnoIncludeFile(compiler.getSourceManager().getSpellingLoc(fieldDecl->getBeginLoc(
+return;
+
+// ignore casting to a less specific type
+auto castFromType = subExpr->getType()->getPointeeCXXRecordDecl();
+if (castFromType && castFromType->isDerivedFrom(castToType))
+return;
+
+castMap.emplace(fieldDecl, castToType);
 }
 
 loplugin::Plugin::Registration X("fieldcast", false);
diff --git a/compilerplugins/clang/fieldcast.results 
b/compilerplugins/clang/fieldcast.results
index a1ef6accb82b..e65cc5123250 100644
--- a/compilerplugins/clang/fieldcast.results
+++ b/compilerplugins/clang/fieldcast.results
@@ -13,114 +13,57 @@ basctl/source/inc/basidesh.hxx:97
 basic/source/inc/errobject.hxx:27
 SbxErrObject m_xErr css::uno::Reference
 ErrObject
-basic/source/inc/runtime.hxx:68
-SbiForStack refEnd SbxVariableRef
-BasicCollection
 basic/source/inc/runtime.hxx:220
 SbiRuntime pMod SbModule *
 SbClassModuleObject
+bridges/source/cpp_uno/gcc3_linux_x86-64/rtti.cxx:70
+(anonymous namespace)::GeneratedPad pad_ std::unique_ptr
+std::type_info
 bridges/source/jni_uno/jni_info.h:96
 jni_uno::JNI_compound_type_info m_base const JNI_type_info *
 jni_uno::JNI_compound_type_info
 bxml/parser.h:258
 _xmlParserCtxt _private void *
 DOM::CDocumentBuilder
+bxml/tree.h:390
+_xmlNs next struct _xmlNs *
+_xmlNode
 bxml/xpath.h:338
 _xmlXPathContext funcLookupData void *
 CLibxml2XFormsExtension
-chart2/inc/ChartModel.hxx:133
-chart::ChartModel mxChartView rtl::Reference
-cppu::OWeakObject
-chart2/inc/ChartModel.hxx:176
-chart::ChartModel m_xXMLNamespaceMap rtl::Reference< 

[Libreoffice-bugs] [Bug 158160] Libre Writer does not remember default language for documents

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158160

--- Comment #3 from Andras Horvath  ---
Hi, as I have said in the report, I had installed a new Ubuntu 20 operating
system and then installed Writer from snap. So I had tested it on a clean and
fresh install. So no, I hadn't changed any template or any other things. Just
opened a new page and made the setting that is not remembered. Thx, Andras

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

[Libreoffice-bugs] [Bug 158159] Crash on Deepl Translate

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158159

QA Administrators  changed:

   What|Removed |Added

   Keywords||bibisectRequest

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

[Libreoffice-bugs] [Bug 157944] Support of common video formats like MP4 / H264 for Impress - ENHANCEMENT - FUNCTIONALITY REQUEST

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157944

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 158129] Bluescreen on Windows 11 when LibreOffice is running (with or without open document)

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158129

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 158129] Bluescreen on Windows 11 when LibreOffice is running (with or without open document)

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158129

--- Comment #9 from QA Administrators  ---
[Automated Action] NeedInfo-To-Unconfirmed

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

[Libreoffice-bugs] [Bug 147076] AutoFilter does not show special characters

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147076

--- Comment #16 from QA Administrators  ---
[Automated Action] NeedInfo-To-Unconfirmed

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

[Libreoffice-bugs] [Bug 155203] Formatting: LibreOffice Writer can't access the superscript OpenType feature on certain fonts

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155203

--- Comment #3 from QA Administrators  ---
[Automated Action] NeedInfo-To-Unconfirmed

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

[Libreoffice-bugs] [Bug 154783] PDF: importing to Writer

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154783

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

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

[Libreoffice-bugs] [Bug 154783] PDF: importing to Writer

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154783

--- Comment #3 from QA Administrators  ---
Dear Geoff Rushworth,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 154779] Libreoffice draw - text isn't centered in a text box

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154779

--- Comment #3 from QA Administrators  ---
Dear Szasz-Fabian Jozsef,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 154541] Playing music files Then left to right scroll the mouse in POSITION option , Music files is not Running.

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154541

--- Comment #5 from QA Administrators  ---
Dear Purushothaman S,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 154779] Libreoffice draw - text isn't centered in a text box

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154779

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

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

[Libreoffice-bugs] [Bug 154541] Playing music files Then left to right scroll the mouse in POSITION option , Music files is not Running.

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154541

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

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

[Libreoffice-bugs] [Bug 154480] EDITING: Crashes when deleting column in defined range

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154480

QA Administrators  changed:

   What|Removed |Added

 Resolution|--- |INSUFFICIENTDATA
 Status|NEEDINFO|RESOLVED

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

[Libreoffice-bugs] [Bug 154480] EDITING: Crashes when deleting column in defined range

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154480

--- Comment #5 from QA Administrators  ---
Dear Carl Hallinan,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 154392] New Automatic Line Adjust row height, takes a lot of time.

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154392

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

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

[Libreoffice-bugs] [Bug 154388] Unable to pin open documents

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154388

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

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

[Libreoffice-bugs] [Bug 154392] New Automatic Line Adjust row height, takes a lot of time.

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154392

--- Comment #5 from QA Administrators  ---
Dear William,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 154388] Unable to pin open documents

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154388

--- Comment #3 from QA Administrators  ---
Dear Jos,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 146134] Difficulty creating mail labels

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146134

--- Comment #2 from QA Administrators  ---
Dear JohnG,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 92740] "Document Has Been Change By Others" dialog's 'Save Anyway' and 'Cancel' buttons do the same thing

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92740

--- Comment #7 from QA Administrators  ---
Dear Brock McNuggets,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 146701] Button size issue in Shapes sidebar in high DPI environments.

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146701

--- Comment #3 from QA Administrators  ---
Dear TOKAI KOTARO,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 87013] LO performance when network drive is mounted over slow link

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87013

--- Comment #33 from QA Administrators  ---
Dear Florian Bruckner,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 81640] Very slow and lagging if open file stored on network

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81640

--- Comment #22 from QA Administrators  ---
Dear Sumec,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 55480] Bug when unchecking "Relative" size while "Keep ratio" is checked

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55480

--- Comment #13 from QA Administrators  ---
Dear Alexander Karatarakis,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 132897] FILEOPEN DOCX: Missing rounded borders in frame

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132897

--- Comment #9 from QA Administrators  ---
Dear Alvaro Segura,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 121268] UI: Cell borders go far beyond the calc cell

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121268

--- Comment #7 from QA Administrators  ---
Dear Telesto,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 120480] Headers and Footers Can be Changed in Read-only Spreadsheets

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120480

--- Comment #6 from QA Administrators  ---
Dear Harald Koester,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 108310] FILEOPEN: particular docbook .xml is truncated.

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108310

--- Comment #8 from QA Administrators  ---
Dear Terrence Enger,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 147076] AutoFilter does not show special characters

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147076

--- Comment #15 from Ian Eales  ---
The problem with the other fonts is do not display as well in the workbook.

 This pasted from the email sent and shows "Liberation Mono;Courier New;DejaVu
Sans Mono" as the fonts in the font box

Inserting from Insert Characters and needing scroll through all the available
fonts and characters to find something usable is a non-starter.

Searching Help I did not find how to insert U+ codes

I was able to copy and paste an emoji from TBird.
It shows in the Pick list
Functional, but inelegant.

Only some are pasteable

Only a single character can be pasted 'in cell'. Sequential characters can be
pasted in the formula bar


Once all the above hoops are jumped, Standard filter works a treat

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

[Libreoffice-bugs] [Bug 158160] Libre Writer does not remember default language for documents

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158160

m.a.riosv  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #2 from m.a.riosv  ---
Please don't put as new your own report, someone else must do it after confirm.

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

[Libreoffice-bugs] [Bug 158160] Libre Writer does not remember default language for documents

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158160

m.a.riosv  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||miguelangelrv@libreoffice.o
   ||rg
 Ever confirmed|0   |1

--- Comment #1 from m.a.riosv  ---
Maybe you have modified your default template?

https://help.libreoffice.org/latest/en-US/text/shared/guide/standard_template.html?DbPAR=SHARED#bm_id3154285

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

[Libreoffice-bugs] [Bug 158163] Crash when I modify a box, not systematically and apparently randomly

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158163

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg
 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from m.a.riosv  ---
Please test in safe mode, Menu/Help/Restart in Safe Mode

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

[Libreoffice-bugs] [Bug 158172] Calc 7.5.7.1 Cells Freezes constantly

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158172

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m.a.riosv  ---
Please test in safe mode, Menu/Help/Restart in Safe Mode

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

[Libreoffice-bugs] [Bug 158124] Holding down delete key doesn't work and causes crash

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158124

steve  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 129062] [META] Skia library bugs

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129062
Bug 129062 depends on bug 149527, which changed state.

Bug 149527 Summary: Calc crashes when scroll up and down quickly within a 
document, or hold Page Down (Skia/Vulkan)
https://bugs.documentfoundation.org/show_bug.cgi?id=149527

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 133092] [META] Crash bugs

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133092
Bug 133092 depends on bug 149527, which changed state.

Bug 149527 Summary: Calc crashes when scroll up and down quickly within a 
document, or hold Page Down (Skia/Vulkan)
https://bugs.documentfoundation.org/show_bug.cgi?id=149527

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 108075] [META] Scrolling and Page up/down issues

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108075
Bug 108075 depends on bug 149527, which changed state.

Bug 149527 Summary: Calc crashes when scroll up and down quickly within a 
document, or hold Page Down (Skia/Vulkan)
https://bugs.documentfoundation.org/show_bug.cgi?id=149527

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 149527] Calc crashes when scroll up and down quickly within a document, or hold Page Down (Skia/Vulkan)

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149527

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

--- Comment #48 from Stéphane Guillou (stragu) 
 ---
Well, that's great news, let's mark as "works for me" then.
Still, if someone can bibisect the fix, it would be much appreciated.

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

[Libreoffice-bugs] [Bug 124774] Option to turn off autocomplete text in quick find

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124774

--- Comment #13 from Daniil Larionov  ---
This is one of the most counterproductive "features" in LO. I was so
dumbfounded to see this discussion linger for 4+ years that I registered on
this website *just* to subscribe to this bug.

> Not a big deal to delete *office.
> Web browsers do this as well - just hit your Delete key after typing "libre" 
> and then it will work.

As of 7.5.4.1, I can't even *see* that my text was autocompleted, because the
right edge of the search bar is at the end of the *pasted* text.
Screenshot: https://imgur.com/ypqUUyr
I pasted "Detection and classification of rail track flaws", yet on the
screenshot the search field actually contains "Detection and classification of
rail track flaws using inertial and magnetometric sensors". The only way to
know  that is to scroll the field to the right, with either the mouse or arrow
keys.

By the time I figured out why Calc can't find the *exact* string I pasted
despite me staring at it, I thought I was losing my mind and almost broke my
keyboard tapping Ctrl+C/Ctrl+V over and over again.
(Also, note the tiny size of the search field right next to the massive wasted
space to the right).

So, as of now, you are basically suggesting me to always tap Delete after 
pasting anything into the search field.

> The autocompletion is omnipresent and not restricted to the find bar. Most 
> users expect it and wont switch it off.
> Most users expect it
> Most

This is a pretty serious claim; do you have statistical data to back it?

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

[Libreoffice-commits] core.git: Branch 'libreoffice-7-6' - sw/qa writerfilter/source

2023-11-10 Thread Michael Stahl (via logerrit)
 sw/qa/extras/rtfexport/data/tdf153178.rtf  |7 +++
 sw/qa/extras/rtfexport/rtfexport7.cxx  |   10 ++
 writerfilter/source/rtftok/rtfdispatchflag.cxx |   20 
 writerfilter/source/rtftok/rtfdocumentimpl.cxx |6 +++---
 4 files changed, 40 insertions(+), 3 deletions(-)

New commits:
commit f24ad883b15a8112d7dfeb4de14afaf67da30a47
Author: Michael Stahl 
AuthorDate: Thu Nov 9 19:54:19 2023 +0100
Commit: Xisco Fauli 
CommitDate: Sat Nov 11 00:05:30 2023 +0100

tdf#153178 writerfilter: do not create text frame spuriously

There are different RTF keywords that end up in RTFFrame, and some of
them cause Word to create a frame, while others don't.

Getting this right requires implementing support for all the missing
wrapping keywords, as most of them create a frame in Word but
\wrapdefault does not.

Change-Id: I1e55d15180564f3d66a5ee7d98274ae18f032872
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159228
Tested-by: Jenkins
Reviewed-by: Michael Stahl 
(cherry picked from commit 4e2f2489c4c7436f8b3a21a530bc625cbef4e365)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159231
Reviewed-by: Xisco Fauli 

diff --git a/sw/qa/extras/rtfexport/data/tdf153178.rtf 
b/sw/qa/extras/rtfexport/data/tdf153178.rtf
new file mode 100644
index ..e1d74f4010ea
--- /dev/null
+++ b/sw/qa/extras/rtfexport/data/tdf153178.rtf
@@ -0,0 +1,7 @@
+{\rtf1
+\tqr\tlul\tx2025\dxfrtext142\dfrmtxtx142\dfrmtxty142\wrapdefault\faauto\adjustright\rin0\lin57\itap0
 \rtlch\fcs1 \afs26\alang1025 \ltrch\fcs0 
\fs26\lang1031\langfe3079\cgrid\langnp1031\langfenp3079
+
+\par
+\pard
+\par
+}
diff --git a/sw/qa/extras/rtfexport/rtfexport7.cxx 
b/sw/qa/extras/rtfexport/rtfexport7.cxx
index ad9249bedeb8..4d1550af4fdd 100644
--- a/sw/qa/extras/rtfexport/rtfexport7.cxx
+++ b/sw/qa/extras/rtfexport/rtfexport7.cxx
@@ -22,6 +22,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 
@@ -659,6 +660,15 @@ DECLARE_RTFEXPORT_TEST(testWatermark, "watermark.rtf")
 CPPUNIT_ASSERT_EQUAL(float(66), nFontSize);
 }
 
+DECLARE_RTFEXPORT_TEST(testTdf153178, "tdf153178.rtf")
+{
+// the problem was that a frame was created
+uno::Reference xTextFramesSupplier(mxComponent, 
uno::UNO_QUERY);
+uno::Reference 
xIndexAccess(xTextFramesSupplier->getTextFrames(),
+ uno::UNO_QUERY);
+CPPUNIT_ASSERT_EQUAL(sal_Int32(0), xIndexAccess->getCount());
+}
+
 DECLARE_RTFEXPORT_TEST(testTdf109790, "tdf109790.rtf")
 {
 uno::Reference xTable(getParagraphOrTable(2), 
uno::UNO_QUERY);
diff --git a/writerfilter/source/rtftok/rtfdispatchflag.cxx 
b/writerfilter/source/rtftok/rtfdispatchflag.cxx
index de7b91e26fae..699698aa8df8 100644
--- a/writerfilter/source/rtftok/rtfdispatchflag.cxx
+++ b/writerfilter/source/rtftok/rtfdispatchflag.cxx
@@ -1242,6 +1242,26 @@ RTFError RTFDocumentImpl::dispatchFlag(RTFKeyword 
nKeyword)
 m_aStates.top().getFrame().setSprm(NS_ooxml::LN_CT_FramePr_wrap,

NS_ooxml::LN_Value_doc_ST_Wrap_notBeside);
 break;
+case RTFKeyword::OVERLAY:
+m_aStates.top().getFrame().setSprm(NS_ooxml::LN_CT_FramePr_wrap,
+   
NS_ooxml::LN_Value_doc_ST_Wrap_none);
+break;
+case RTFKeyword::WRAPAROUND:
+m_aStates.top().getFrame().setSprm(NS_ooxml::LN_CT_FramePr_wrap,
+   
NS_ooxml::LN_Value_doc_ST_Wrap_around);
+break;
+case RTFKeyword::WRAPTHROUGH:
+m_aStates.top().getFrame().setSprm(NS_ooxml::LN_CT_FramePr_wrap,
+   
NS_ooxml::LN_Value_doc_ST_Wrap_through);
+break;
+case RTFKeyword::WRAPTIGHT:
+m_aStates.top().getFrame().setSprm(NS_ooxml::LN_CT_FramePr_wrap,
+   
NS_ooxml::LN_Value_doc_ST_Wrap_tight);
+break;
+case RTFKeyword::WRAPDEFAULT:
+m_aStates.top().getFrame().setSprm(NS_ooxml::LN_CT_FramePr_wrap,
+   
NS_ooxml::LN_Value_doc_ST_Wrap_auto);
+break;
 case RTFKeyword::MNOR:
 m_bMathNor = true;
 break;
diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.cxx 
b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
index 568ad4a8f31f..11e251b0828a 100644
--- a/writerfilter/source/rtftok/rtfdocumentimpl.cxx
+++ b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
@@ -3995,9 +3995,9 @@ RTFSprms RTFFrame::getSprms()
 
 bool RTFFrame::hasProperties() const
 {
-return m_nX != 0 || m_nY != 0 || m_nW != 0 || m_nH != 0 || m_nHoriPadding 
!= 0
-   || m_nVertPadding != 0 || m_nHoriAlign != 0 || m_nHoriAnchor != 0 
|| m_nVertAlign != 0
-   || m_nVertAnchor != 0;
+// tdf#153178 

[Libreoffice-commits] core.git: Branch 'libreoffice-7-6' - android/source

2023-11-10 Thread Michael Weghorn (via logerrit)
 android/source/build.gradle |1 -
 1 file changed, 1 deletion(-)

New commits:
commit 1a39ca85650b5a0c9a3d3ec0b5539d14a60c6fcc
Author: Michael Weghorn 
AuthorDate: Tue Nov 7 17:27:49 2023 +0100
Commit: Xisco Fauli 
CommitDate: Sat Nov 11 00:01:53 2023 +0100

android: Don't add "-editing" suffix to version/vendor

Don't append "-editing" to the version string, which
would then end up to be something like
"24.2.0.0.alpha0+/7763190f7ec2/The Document Foundation-editing"
when the build was configured with
`--with-vendor="The Document Foundation"` and would result
in the "About" dialog/widget saying
"This release was supplied by The Document Foundation-editing."
(s. `AboutDialogFragment#onCreateDialog`).

While it's useful to have the different build flavors
(with or without the experimental editing support), I see no need
to have the build config reflected in the version string.
(Whether experimental editing support was enabled during the
build can easily be seen by checking whether the "Experimental
Mode" option is available in the settings.)

Change-Id: I48ddb3a842b9db4fc1f435683ed9d8e8e85898ed
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159079
Tested-by: Jenkins
Reviewed-by: Michael Weghorn 
(cherry picked from commit b51a57e5ef15c9b09b8cda0a950231d234ae931b)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159036
Reviewed-by: Xisco Fauli 

diff --git a/android/source/build.gradle b/android/source/build.gradle
index d4776c88de90..e931124577b1 100644
--- a/android/source/build.gradle
+++ b/android/source/build.gradle
@@ -82,7 +82,6 @@ android {
 strippedUIEditing {
 dimension "default"
 buildConfigField 'boolean', 'ALLOW_EDITING', 'true'
-versionNameSuffix "-editing"
 }
 fullUI.dimension "default"
 }


[Libreoffice-bugs] [Bug 149527] Calc crashes when scroll up and down quickly within a document, or hold Page Down (Skia/Vulkan)

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149527

--- Comment #47 from bert.vanderv...@hotmail.com ---
Hello,

To answer your questino: 
Can you please provide the full version information copied from Help > About
LibreOffice? Just to make sure that you are indeed using Skia.

This is the information:
Version: 7.6.2.1 (X86_64)
Build: 56fa7ee...
Operating system: Windows 10.0 Build 19045
User interface: UI-render: Skia/Vulkan; VCL: win nl-NL (nl_NL); GI: nl-NL
Other: Calc: CL threaded 

I hope this information will help you to finalize the issue.

Regards Bert

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

[Libreoffice-bugs] [Bug 114928] Language Valencian

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114928

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||stephane.guillou@libreoffic
   ||e.org

--- Comment #4 from Stéphane Guillou (stragu) 
 ---
Please see bug 149021 comment 3 for some relevant references.

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

[Libreoffice-bugs] [Bug 114928] Language Valencian

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114928

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||kkcorreo...@gmail.com

--- Comment #3 from Stéphane Guillou (stragu) 
 ---
*** Bug 149021 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 149021] "Catalán (Valencia)" language should be named "Valencià" o "Valenciano"

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149021

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||stephane.guillou@libreoffic
   ||e.org
Summary|Incorrección en el apartado |"Catalán (Valencia)"
   |de idiomas. |language should be named
   ||"Valencià" o "Valenciano"
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #4 from Stéphane Guillou (stragu) 
 ---
This was already discussed in bug 114928, so marking as a duplicate although I
appreciated the references provided by Eike.
Please discuss there if there is more to add.

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

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

[Libreoffice-bugs] [Bug 158171] Crash when double-clicking DeepL translation dialog OK button

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158171

--- Comment #2 from Stéphane Guillou (stragu) 
 ---
(In reply to Julien Nabet from comment #1)
> => ok since I don't know DeepL servers, I let the boxes (API URL and
> Authentication key) empty
> [...]
> => The option is grayed, I can't select it.
It should become active if you put random characters in the fields

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

[Libreoffice-bugs] [Bug 101379] UI - (on high resolution screens) text cursor is too thin and so nearly invisible

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101379

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 146397] Writer: the text cursor is barely visible

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146397

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||stephane.guillou@libreoffic
   ||e.org
 Status|UNCONFIRMED |NEEDINFO
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||1379

--- Comment #7 from Stéphane Guillou (stragu) 
 ---
Paolo, which screen resolution do you have? Might be the same as bug 101379.

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

[Libreoffice-bugs] [Bug 147552] Changing the axis number, and then bar color results calc 7.4 to exit.

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147552

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||stephane.guillou@libreoffic
   ||e.org
 Ever confirmed|0   |1

--- Comment #11 from Stéphane Guillou (stragu) 
 ---
(In reply to elias estatistics from comment #9)
> for 30 days: https://ufile.io/25i4u9c2
video is gone now.

I can't reproduce either with experimental features on and:

Version: 7.4.7.2 / LibreOffice Community
Build ID: 723314e595e8007d3cf785c16538505a1c878ca5
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

elias, please try version 7.6 (as 7.4 and 7.5 shouldn't see further releases).

You don't get the crash reporter dialog after the crash?

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

[Libreoffice-bugs] [Bug 158109] FILESAVE: Exporting to PDF

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158109

--- Comment #4 from m.a.riosv  ---
What do you mean for Screen Print?

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

[Libreoffice-bugs] [Bug 147076] AutoFilter does not show special characters

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147076

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||stephane.guillou@libreoffic
   ||e.org
 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #14 from Stéphane Guillou (stragu) 
 ---
Wingdings is a notoriously bad font choice as it does not map to Unicode.
I'd recommend using another font that includes smileys / emojis, and then 
AutofFlter lists should display the characters (even if it's a slightly
different font).

I reproduced the different black characters in 7.4.7.2, 7.5.8.2, 7.6.3.1 and a
recent trunk build, as in comment 7.
But that's just the characters you get when changing the font from Windings to
whatever font the UI uses.

Could using a different font and the following widely-supported characters be a
good enough workaround for you?

U+1F642 
U+1F610 
U+1F641 

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

[Libreoffice-bugs] [Bug 147365] Don't Print but export to PDF - Picture settings should allow to set not to print but show in PDF

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147365

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||stephane.guillou@libreoffic
   ||e.org
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO
 OS|Linux (All) |All
 Whiteboard| QA:needsComment|

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
Thanks for the suggestion.
Do you need this for only a specific picture in the document, or for all the
pictures?
If it's for all the pictures, you can exclude them from printing in the Print
dialog: File > Print > LibreOffice Writer tab > Contents > Images and other
graphic objects.

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

[Libreoffice-bugs] [Bug 158173] New: Draw messes up the formatting of PDFs when trying to edit them

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158173

Bug ID: 158173
   Summary: Draw messes up the formatting of PDFs when trying to
edit them
   Product: LibreOffice
   Version: 7.6.2.1 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: iamino...@gmail.com

Description:
Multiple formatting issues arise, specifically with how much space certain text
takes up. For example, text will be spread out to go outside the page. Or if
the text is inside a table, it would spread out to outside of the table lines. 

Steps to Reproduce:
1. Open a PDF in Draw (note it does not happen with all PDFs and I cannot find
a pattern of which ones it happens with, please email me if you want a
screenshot of the issue). 


Actual Results:
Text leaves the borders of the table and/or the page. 

Expected Results:
PDF looks identical in Draw as it does in PDF readers like Adobe Acrobat 


Reproducible: Sometimes


User Profile Reset: No

Additional Info:
[Information automatically included from LibreOffice]
Locale: en-US
Module: DrawingDocument
[Information guessed from browser]
OS: Linux (All)
OS is 64bit: yes

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

[Libreoffice-bugs] [Bug 108364] [META] Table/Row/Column/Cell management function bugs and enhancements

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108364

BogdanB  changed:

   What|Removed |Added

 Depends on||156248


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=156248
[Bug 156248] Option key does not move cells, and source are not emptied
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 156248] Option key does not move cells, and source are not emptied

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156248

BogdanB  changed:

   What|Removed |Added

 Blocks||108364
 CC||buzea.bog...@libreoffice.or
   ||g
Summary|Option key does not move|Option key does not move
   |cells, and source are not   |cells, and source are not
   |emptied.|emptied


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108364
[Bug 108364] [META] Table/Row/Column/Cell management function bugs and
enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 103164] [META] Footnote and Endnote bugs and enhancements

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103164

BogdanB  changed:

   What|Removed |Added

 Depends on||158085


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=158085
[Bug 158085] Incorrect footnote number (needs pt-br hyphenation data to
reproduce)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158085] Incorrect footnote number (needs pt-br hyphenation data to reproduce)

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158085

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103164
[Bug 103164] [META] Footnote and Endnote bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 157659] Cut / Copy / Paste / Delete of Rows in Calc 7.5+ is slow

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157659

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108364
[Bug 108364] [META] Table/Row/Column/Cell management function bugs and
enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 108364] [META] Table/Row/Column/Cell management function bugs and enhancements

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108364

BogdanB  changed:

   What|Removed |Added

 Depends on||157659


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=157659
[Bug 157659] Cut / Copy / Paste / Delete of Rows in Calc 7.5+ is slow
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 108364] [META] Table/Row/Column/Cell management function bugs and enhancements

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108364

BogdanB  changed:

   What|Removed |Added

 Depends on||158167


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=158167
[Bug 158167] Calc: cannot move selected row (recent 24.2)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158167] Calc: cannot move selected row (recent 24.2)

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158167

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108364
[Bug 108364] [META] Table/Row/Column/Cell management function bugs and
enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158044] RTF import paragraph style attribute handling wrong

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158044

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

https://git.libreoffice.org/core/commit/fce18155052821756466ea043c638f4ed72f41d6

tdf#158044 handling of paragraph attributes in RTF import

It will be available in 24.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

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

[Libreoffice-bugs] [Bug 158044] RTF import paragraph style attribute handling wrong

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158044

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:24.2.0

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

[Libreoffice-bugs] [Bug 101216] [META] Calc comment bugs and enhancements

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101216

BogdanB  changed:

   What|Removed |Added

 Depends on||158110


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=158110
[Bug 158110] Copy/paste of more than one comment in calc does not work
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158110] Copy/paste of more than one comment in calc does not work

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158110

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=101216
[Bug 101216] [META] Calc comment bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: sw/qa writerfilter/source

2023-11-10 Thread Oliver Specht (via logerrit)
 sw/qa/extras/rtfimport/data/tdf158044.rtf  |   20 +
 sw/qa/extras/rtfimport/rtfimport.cxx   |   47 +
 writerfilter/source/dmapper/DomainMapper.cxx   |   89 +
 writerfilter/source/rtftok/rtfdocumentimpl.cxx |1 
 writerfilter/source/rtftok/rtfsprm.cxx |9 +-
 5 files changed, 163 insertions(+), 3 deletions(-)

New commits:
commit fce18155052821756466ea043c638f4ed72f41d6
Author: Oliver Specht 
AuthorDate: Thu Nov 2 16:34:50 2023 +0100
Commit: Thorsten Behrens 
CommitDate: Fri Nov 10 22:29:40 2023 +0100

tdf#158044 handling of paragraph attributes in RTF import

style attributes need to be repeated at the paragraph
if not repeated then defaults have to be applied

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

diff --git a/sw/qa/extras/rtfimport/data/tdf158044.rtf 
b/sw/qa/extras/rtfimport/data/tdf158044.rtf
new file mode 100755
index ..65e687f25d39
--- /dev/null
+++ b/sw/qa/extras/rtfimport/data/tdf158044.rtf
@@ -0,0 +1,20 @@
+{\rtf1\ansi
+{\colortbl;\red0\green0\blue0;\red0\green0\blue255;
+\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128;\red128\green0\blue0;
+\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;\red0\green0\blue0;\red0\green0\blue0;}
+
+{\stylesheet
+{\fs24\sa3200 Normal;}
+{\s97\tx1701\tx2835 StyleTabstops;}
+{\s98\cbpat6  StyleRed;}
+{\s99\qc SyleCentered;}
+}
+
+
+{\s97 Paragraph without tabstops\par}
+{\s98 Pargraph without color \par}
+{\s99 Paragraph without center\par}
+{\s97\tx1701\tx2835 Paragraph with tabstops\par}
+{\s98\cbpat6  Pargraph with color \par}
+{\s99\qc Paragraph with center\par}
+}
diff --git a/sw/qa/extras/rtfimport/rtfimport.cxx 
b/sw/qa/extras/rtfimport/rtfimport.cxx
index 78409762e827..b1b00cf2b1b4 100644
--- a/sw/qa/extras/rtfimport/rtfimport.cxx
+++ b/sw/qa/extras/rtfimport/rtfimport.cxx
@@ -1712,6 +1712,53 @@ CPPUNIT_TEST_FIXTURE(Test, testParaStyleBottomMargin)
  getProperty(xPara, 
"ParaLineSpacing").Height);
 }
 
+CPPUNIT_TEST_FIXTURE(Test, test158044Tdf)
+{
+createSwDoc("tdf158044.rtf");
+
+uno::Reference xTextDocument(mxComponent, 
uno::UNO_QUERY);
+uno::Reference 
xParaEnumAccess(xTextDocument->getText(),
+  
uno::UNO_QUERY);
+uno::Reference xParaEnum = 
xParaEnumAccess->createEnumeration();
+int paraIndex = 0;
+while (xParaEnum->hasMoreElements())
+{
+uno::Reference 
xPropertySet(xParaEnum->nextElement(), uno::UNO_QUERY);
+sal_Int16 adjust = getProperty(xPropertySet, "ParaAdjust");
+Color fillColor = getProperty(xPropertySet, "FillColor");
+drawing::FillStyle fillStyle = 
getProperty(xPropertySet, "FillStyle");
+uno::Sequence tabStops
+= getProperty>(xPropertySet, 
"ParaTabStops");
+switch (paraIndex)
+{
+case 0:
+CPPUNIT_ASSERT_EQUAL(sal_Int32(0), tabStops.getLength());
+break;
+case 1:
+CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_NONE, fillStyle);
+CPPUNIT_ASSERT(0xff == fillColor);
+break;
+case 2:
+CPPUNIT_ASSERT_EQUAL(sal_Int16(0), adjust);
+break;
+case 3:
+CPPUNIT_ASSERT_EQUAL(sal_Int32(2), tabStops.getLength());
+break;
+case 4:
+CPPUNIT_ASSERT(tabStops.getLength() < 2);
+CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_SOLID, fillStyle);
+CPPUNIT_ASSERT(0xff == fillColor);
+break;
+case 5:
+CPPUNIT_ASSERT(tabStops.getLength() < 2);
+CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_NONE, fillStyle);
+break;
+default:
+break;
+}
+++paraIndex;
+}
+}
 // tests should only be added to rtfIMPORT *if* they fail round-tripping in 
rtfEXPORT
 
 CPPUNIT_PLUGIN_IMPLEMENT();
diff --git a/writerfilter/source/dmapper/DomainMapper.cxx 
b/writerfilter/source/dmapper/DomainMapper.cxx
index f015b79520bf..a2399e44bf37 100644
--- a/writerfilter/source/dmapper/DomainMapper.cxx
+++ b/writerfilter/source/dmapper/DomainMapper.cxx
@@ -34,6 +34,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -3845,6 +3846,35 @@ void DomainMapper::lcl_endCharacterGroup()
 m_pImpl->PopProperties(CONTEXT_CHARACTER);
 }
 
+//copied from rtfsprm
+/// Is it problematic to deduplicate this SPRM?
+static bool isSPRMDeduplicateDenylist(PropertyIds nId, PropertyMapPtr pContext)
+{
+switch 

[Libreoffice-bugs] [Bug 112810] [META] Arabic & Farsi language-specific RTL issues

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112810

BogdanB  changed:

   What|Removed |Added

 Depends on||158064


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=158064
[Bug 158064] Day position into cells
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158064] Day position into cells

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158064

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112810
[Bug 112810] [META] Arabic & Farsi language-specific RTL issues
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 149092] [META] Bugs and enhancements related to ICU

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149092

BogdanB  changed:

   What|Removed |Added

 Depends on||158108


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=158108
[Bug 158108] Build failure with ICU 74
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158108] Build failure with ICU 74

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158108

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=149092
[Bug 149092] [META] Bugs and enhancements related to ICU
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 124891] [META] Basic IDE bugs and enhancements

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124891

BogdanB  changed:

   What|Removed |Added

 Depends on||158092


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=158092
[Bug 158092] BASIC, Format: Format (…, "Currency") cuts decimal places
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 158092] BASIC, Format: Format (…, "Currency") cuts decimal places

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158092

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=124891
[Bug 124891] [META] Basic IDE bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 144088] SpreadSheetML (Excel 2003 XML) mixed up styles

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144088

--- Comment #5 from Kohei Yoshida  ---
The build from the current master branch (slated to become 24.2) has the latest
version of orcus 0.19.2 and does a much better job of importing the styles from
the documents attached to this bug.

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

[Libreoffice-bugs] [Bug 158116] RTF import: IF field consumes text from header

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158116

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113423
[Bug 113423] [META] RTF (text) header and footer-related issues
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 113423] [META] RTF (text) header and footer-related issues

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113423

BogdanB  changed:

   What|Removed |Added

 Depends on||158116


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=158116
[Bug 158116] RTF import: IF field consumes text from header
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154098] Add a third option to the ruler

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154098

--- Comment #10 from nicholasj...@mailfence.com ---
This debilitating problem, whereby - in short - adjusting indentation is no fun
at all - seem to be present, unchanged, in _Impress_ too (not just Writer), at
least when one edits slide notes.

Given that Impress does strange things to the formatting of notes in files
imported from PowerPoint - strange things that include adjusting the
indentation seemingly randomly - the 'no fun at all' becomes 'really not fun in
any way whatsoever'.

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

[Libreoffice-commits] core.git: include/linguistic linguistic/source

2023-11-10 Thread Mike Kaganski (via logerrit)
 include/linguistic/translate.hxx |   11 +++
 linguistic/source/translate.cxx  |   11 +++
 2 files changed, 22 insertions(+)

New commits:
commit e021d5dee19f1e06c59aa2aa6d064d2b5f7e313b
Author: Mike Kaganski 
AuthorDate: Fri Nov 10 16:16:49 2023 +0100
Commit: Mike Kaganski 
CommitDate: Fri Nov 10 21:40:15 2023 +0100

Add missing license headers

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

diff --git a/include/linguistic/translate.hxx b/include/linguistic/translate.hxx
index 985930c74d83..0d5643f056c1 100644
--- a/include/linguistic/translate.hxx
+++ b/include/linguistic/translate.hxx
@@ -1,3 +1,12 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; 
fill-column: 100 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #pragma once
 #include 
 #include 
@@ -7,3 +16,5 @@ namespace linguistic
 LNG_DLLPUBLIC OString Translate(const OString& rTargetLang, const OString& 
rAPIUrl,
 const OString& rAuthKey, const OString& rData);
 } // namespace
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s 
cinkeys+=0=break: */
diff --git a/linguistic/source/translate.cxx b/linguistic/source/translate.cxx
index fdd95fca2988..719cfb0374c9 100644
--- a/linguistic/source/translate.cxx
+++ b/linguistic/source/translate.cxx
@@ -1,3 +1,12 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; 
fill-column: 100 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #include 
 #include 
 #include 
@@ -72,3 +81,5 @@ OString Translate(const OString& rTargetLang, const OString& 
rAPIUrl, const OStr
 return OString(text);
 }
 }
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s 
cinkeys+=0=break: */


[Libreoffice-commits] core.git: 2 commits - RepositoryExternal.mk Repository.mk

2023-11-10 Thread Mike Kaganski (via logerrit)
 Repository.mk |2 +-
 RepositoryExternal.mk |6 --
 2 files changed, 5 insertions(+), 3 deletions(-)

New commits:
commit fac623a8b844ffd42bd6318dba91e9253268198d
Author: Mike Kaganski 
AuthorDate: Fri Nov 10 21:10:11 2023 +0300
Commit: Mike Kaganski 
CommitDate: Fri Nov 10 21:38:08 2023 +0100

Fix packaging with --enable-mpl-subset

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

diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk
index 46b1c1bb70ed..9659ec7c163f 100644
--- a/RepositoryExternal.mk
+++ b/RepositoryExternal.mk
@@ -3057,9 +3057,10 @@ endef
 else # !SYSTEM_POSTGRESQL
 
 ifeq ($(OS),WNT)
+$(if $(MPL_SUBSET),,\
 $(eval $(call gb_Helper_register_packages_for_install,postgresqlsdbc,\
postgresql \
-))
+)))
 endif # WNT
 
 define gb_LinkTarget__use_postgresql
commit cf53900ae8f25529a001602d56fd2f08b6bdde3a
Author: Mike Kaganski 
AuthorDate: Fri Nov 10 21:09:11 2023 +0300
Commit: Mike Kaganski 
CommitDate: Fri Nov 10 21:38:00 2023 +0100

Fix packaging with --disable-curl

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

diff --git a/Repository.mk b/Repository.mk
index 72a88d3e8429..b9cf9c2ddb9c 100644
--- a/Repository.mk
+++ b/Repository.mk
@@ -376,7 +376,7 @@ endif
 
 $(eval $(call gb_Helper_register_libraries_for_install,OOOLIBS,ooo, \
 avmedia \
-   LanguageTool \
+   $(if $(ENABLE_CURL),LanguageTool) \
 $(call gb_Helper_optional,AVMEDIA, \
$(if $(filter MACOSX,$(OS)),\
avmediaMacAVF \
diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk
index 0eddf400a77c..46b1c1bb70ed 100644
--- a/RepositoryExternal.mk
+++ b/RepositoryExternal.mk
@@ -2737,9 +2737,10 @@ endef
 
 else # !SYSTEM_CURL
 
+$(if $(ENABLE_CURL),\
 $(eval $(call gb_Helper_register_packages_for_install,ooo,\
curl \
-))
+)))
 
 define gb_LinkTarget__use_curl
 $(call gb_LinkTarget_use_package,$(1),curl)


[Libreoffice-commits] core.git: solenv/bin

2023-11-10 Thread Mike Kaganski (via logerrit)
 solenv/bin/modules/installer/scriptitems.pm |   12 +---
 1 file changed, 5 insertions(+), 7 deletions(-)

New commits:
commit 500def307635fc4359c542df60a963da23225b54
Author: Mike Kaganski 
AuthorDate: Fri Nov 10 18:05:41 2023 +0100
Commit: Mike Kaganski 
CommitDate: Fri Nov 10 21:37:32 2023 +0100

Improve error logging in remove_Files_Without_Sourcedirectory

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

diff --git a/solenv/bin/modules/installer/scriptitems.pm 
b/solenv/bin/modules/installer/scriptitems.pm
index 0c374054895d..54f3618d1078 100644
--- a/solenv/bin/modules/installer/scriptitems.pm
+++ b/solenv/bin/modules/installer/scriptitems.pm
@@ -1132,8 +1132,7 @@ sub remove_Files_Without_Sourcedirectory
 my $infoline;
 
 my $error_occurred = 0;
-my @missingfiles = ();
-push(@missingfiles, "ERROR: The following files could not be found: \n");
+my $missingfiles = "The following files could not be found:\n";
 
 my @newfilesarray = ();
 
@@ -1152,7 +1151,7 @@ sub remove_Files_Without_Sourcedirectory
 $infoline = "ERROR: Removing file $filename from file list.\n";
 push( @installer::globals::logfileinfo, $infoline);
 
-push(@missingfiles, "ERROR: File not found: $filename\n");
+$missingfiles = "$missingfiles  $filename\n";
 $error_occurred = 1;
 
 next;   # removing this file from list, if sourcepath is empty
@@ -1164,7 +1163,7 @@ sub remove_Files_Without_Sourcedirectory
 $infoline = "ERROR: Removing file $filename from file 
list.\n";
 push( @installer::globals::logfileinfo, $infoline);
 
-push(@missingfiles, "ERROR: File not found: $filename\n");
+$missingfiles = "$missingfiles  $filename\n";
 $error_occurred = 1;
 
 next;   # removing this file from list, if sourcepath is 
empty
@@ -1186,7 +1185,7 @@ sub remove_Files_Without_Sourcedirectory
 $infoline = "ERROR: Removing file $filename from file 
list.\n";
 push( @installer::globals::logfileinfo, $infoline);
 
-push(@missingfiles, "ERROR: File not found: $filename\n");
+$missingfiles = "$missingfiles  $filename\n";
 $error_occurred = 1;
 
 next;   # removing this file from list, if sourcepath is 
empty
@@ -1211,8 +1210,7 @@ sub remove_Files_Without_Sourcedirectory
 
 if ( $error_occurred )
 {
-for ( my $i = 0; $i <= $#missingfiles; $i++ ) { print 
"$missingfiles[$i]"; }
-installer::exiter::exit_program("ERROR: Missing files", 
"remove_Files_Without_Sourcedirectory");
+installer::exiter::exit_program($missingfiles, 
"remove_Files_Without_Sourcedirectory");
 }
 
 return \@newfilesarray;


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

2023-11-10 Thread Mike Kaganski (via logerrit)
 configure.ac |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 9aa2eee9d88df6f68befd4758bc5af847d07c805
Author: Mike Kaganski 
AuthorDate: Fri Nov 10 18:17:18 2023 +0100
Commit: Mike Kaganski 
CommitDate: Fri Nov 10 21:37:10 2023 +0100

Fix the fix

Commit 87f0da8023081398d72372367db11d4a97d91833 put the check
into a wrong position

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

diff --git a/configure.ac b/configure.ac
index 7ec877ed5a78..545c3de33303 100644
--- a/configure.ac
+++ b/configure.ac
@@ -13581,9 +13581,6 @@ UPDATE_CONFIG=
 if test "$enable_online_update" = ""; then
 AC_MSG_RESULT([no])
 else
-if test "$enable_curl" != "yes"; then
-AC_MSG_ERROR([--disable-online-update must be used when --disable-curl 
is used])
-fi
 if test "$enable_online_update" = "mar"; then
 AC_MSG_RESULT([yes - MAR-based online update])
 ENABLE_ONLINE_UPDATE_MAR="TRUE"
@@ -13593,6 +13590,9 @@ else
 UPDATE_CONFIG="$with_update_config"
 AC_DEFINE(HAVE_FEATURE_UPDATE_MAR)
 elif test "$enable_online_update" = "yes"; then
+if test "$enable_curl" != "yes"; then
+AC_MSG_ERROR([--disable-online-update must be used when 
--disable-curl is used])
+fi
 AC_MSG_RESULT([yes])
 ENABLE_ONLINE_UPDATE="TRUE"
 else


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

2023-11-10 Thread Caolán McNamara (via logerrit)
 sfx2/source/doc/objstor.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 630ea24fa493be653686689b63692c104f2b0ae5
Author: Caolán McNamara 
AuthorDate: Fri Nov 10 19:14:18 2023 +
Commit: Caolán McNamara 
CommitDate: Fri Nov 10 21:35:48 2023 +0100

ofz#64065 Abrt on config

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

diff --git a/sfx2/source/doc/objstor.cxx b/sfx2/source/doc/objstor.cxx
index 920e4476ab62..b39b5d14ee38 100644
--- a/sfx2/source/doc/objstor.cxx
+++ b/sfx2/source/doc/objstor.cxx
@@ -3770,7 +3770,7 @@ void SfxObjectShell::SetMacroCallsSeenWhileLoading()
 
 bool SfxObjectShell::GetMacroCallsSeenWhileLoading() const
 {
-if 
(officecfg::Office::Common::Security::Scripting::CheckDocumentEvents::get())
+if (utl::ConfigManager::IsFuzzing() || 
officecfg::Office::Common::Security::Scripting::CheckDocumentEvents::get())
 return pImpl->m_bMacroCallsSeenWhileLoading;
 return false;
 }


[Libreoffice-bugs] [Bug 158122] odd fonts in pivot table

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158122

Jérôme  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

--- Comment #2 from Jérôme  ---
I haven't a sample file. Below is the version.

Version: 7.3.7.2.M5 (x64) / LibreOffice Community
Build ID: cf0a4747cef76399d7acd30c4dcda7a78e7973c2
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: fr-FR (fr_FR); UI: fr-FR
Calc: threaded

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

[Libreoffice-bugs] [Bug 158167] Calc: cannot move selected row (recent 24.2)

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158167

Julien Nabet  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||serval2...@yahoo.fr
   Keywords||bibisectRequest
 Status|UNCONFIRMED |NEW

--- Comment #1 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated today, I could reproduce this.

I didn't notice anything specific on console.

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

[Libreoffice-bugs] [Bug 158171] Crash when double-clicking DeepL translation dialog OK button

2023-11-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158171

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #1 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated today, I don't reproduce this.

1. Turn on the DeepL translation feature (no need for a valid API URL or key to
reproduce!):
https://help.libreoffice.org/7.6/en-US/text/shared/optionen/translatetools.html
=> ok since I don't know DeepL servers, I let the boxes (API URL and
Authentication key) empty

2. Select a word
=> ok

3. Tools > Translate...
=> The option is grayed, I can't select it.

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

[Libreoffice-commits] core.git: Changes to 'refs/tags/cp-23.05.5-4'

2023-11-10 Thread Caolán McNamara (via logerrit)
Tag 'cp-23.05.5-4' created by Andras Timar  at 
2023-11-10 19:33 +

cp-23.05.5-4

Changes since cp-23.05.5-3-15:
---
 0 files changed
---


[Libreoffice-commits] translations.git: Changes to 'refs/tags/cp-23.05.5-4'

2023-11-10 Thread Andras Timar (via logerrit)
Tag 'cp-23.05.5-4' created by Andras Timar  at 
2023-11-10 19:33 +

cp-23.05.5-4

Changes since cp-23.05.5-3:
Andras Timar (1):
  updated German translations for Calc (cond. form. dlg etc.)

---
 source/de/sc/messages.po |  174 +--
 1 file changed, 169 insertions(+), 5 deletions(-)
---


[Libreoffice-commits] help.git: Changes to 'refs/tags/cp-23.05.5-4'

2023-11-10 Thread Andras Timar (via logerrit)
Tag 'cp-23.05.5-4' created by Andras Timar  at 
2023-11-10 19:33 +

cp-23.05.5-4

Changes since cp-23.05.4-2-9:
---
 0 files changed
---


[Libreoffice-commits] dictionaries.git: Changes to 'refs/tags/cp-23.05.5-4'

2023-11-10 Thread Andras Timar (via logerrit)
Tag 'cp-23.05.5-4' created by Andras Timar  at 
2023-11-10 19:33 +

cp-23.05.5-4

Changes since co-23.05-branch-point:
Andras Timar (1):
  On Linux dictionaries are packaged separately

---
 Module_dictionaries.mk |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---


  1   2   3   >