[Libreoffice-bugs] [Bug 143881] FORMULA: abs{x}^2 is formatted with unexpected operator precedence

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143881

--- Comment #9 from Mike Kaganski  ---
(In reply to dante19031999 from comment #8)

There's no thread-safety problem, if each *formula* (with its own ODF settings)
is managed by a single thread. The flag should be per-document (i.e., per
*formula* document) setting.

But your proposal about changing braces around auto-inserted text looks safer
and easier.

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

[Libreoffice-bugs] [Bug 143971] LibreOffice 7.2 introduced addition popup for read only file that shouldn't be showing

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143971

Mike Kaganski  changed:

   What|Removed |Added

 CC||matt...@gmail.com

--- Comment #2 from Mike Kaganski  ---
(In reply to Roman Kuznetsov from comment #1)
> it was your own commit

Please be precise in what you state ;) it was not "my" commit, but only what I
merged, as already stated at the Ask question:

> I myself helped that change by reviewing and approving it.

The author of the commit is Matt K.

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

[Libreoffice-bugs] [Bug 127146] Footnotes "After" space disappears while saving as DOC

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127146

--- Comment #6 from Justin L  ---
(In reply to Julien Nabet from comment #5)
> Perhaps we lose "Before" and "After" info because doc and docx format don't
> have these notions?

It should be possible to emulate this. I managed to add a bunch of junk using
Word's "Custom mark". It ends up just being a normal run of text using the
FootnoteReference character style.


  

  
  before



  

  
  


   Here is my footnote.


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

[Libreoffice-bugs] [Bug 142614] [META] PPTX Slideshow settings

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142614
Bug 142614 depends on bug 143624, which changed state.

Bug 143624 Summary: FILESAVE PPTX Slideshow setting “Manual forwarding” is not 
saved
https://bugs.documentfoundation.org/show_bug.cgi?id=143624

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

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

[Libreoffice-bugs] [Bug 144015] New: In Calc secondary X axis position is referring to primary Y axis

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144015

Bug ID: 144015
   Summary: In Calc secondary X axis position is referring to
primary Y axis
   Product: LibreOffice
   Version: 7.1.4.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: g...@gavron.com

Description:
In Calc secondary X axis position is referring to primary Y axis.
Expected: Should referring to Secondary Y axis value.  

Steps to Reproduce:
1.In chart create Secondary X and Y axis.
2.Select X Secondary axis
3.In "Positioning" select "Cross other axis at Value" 
4.Secondary X axis will be moved to Primary Y axis value , instead Secondary Y
axis value  

Actual Results:
Secondary X axis will be moved to Primary Y axis value 

Expected Results:
Secondary X axis should be moved to Secondary Y axis value


Reproducible: Always


User Profile Reset: No



Additional Info:
No more info

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

[Libreoffice-bugs] [Bug 41638] FILESAVE: Black character shadows will be shown grey by MS PPT Viewer

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=41638

--- Comment #11 from Rainer Bielefeld Retired  
---
Google Sliedes viewer shows .pdp AND .ppt AND .potx (from Version: 7.1.5.2
(x64)  Build: 85f04e9f809797b8199d13c421bd8a2b025d52b5) from kit without
shadow. This might indicate that it's a bit more complicated that simply
"filesafe LibO-bug".

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

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

2021-08-22 Thread Justin Luth (via logerrit)
 sw/qa/extras/ooxmlexport/data/tdf143692_outlineLevelTortureTest.docx |binary
 sw/qa/extras/ooxmlexport/ooxmlexport16.cxx   |   34 
++
 writerfilter/source/dmapper/DomainMapper.cxx |   10 +-
 writerfilter/source/dmapper/PropertyMap.hxx  |2 
 writerfilter/source/dmapper/StyleSheetTable.cxx  |   18 
-
 5 files changed, 55 insertions(+), 9 deletions(-)

New commits:
commit 2aca75ef2ac84360d13e9000ba3063a7a42b6f6f
Author: Justin Luth 
AuthorDate: Thu Aug 19 15:06:35 2021 +0200
Commit: Justin Luth 
CommitDate: Mon Aug 23 06:30:53 2021 +0200

tdf#143692 writerfilter: fix outlineLevel import x3

First, illegal values don't mean "use body level".
It means "inherit the value value from the style".
So just ignore illegal values.

Secondly, styles without any explicit setting (a -1)
where being incorrectly specified as "-1 + 1",
i.e. body level(0) - meaning that inheritance was always lost.

Thirdly, the body level value is necessary in order to cancel inheritance
from a style. So the style must be able to set a value of 9.

Change-Id: I2161085181527fb321dbcc00636513330dd8ca1a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120756
Tested-by: Jenkins
Reviewed-by: Justin Luth 

diff --git 
a/sw/qa/extras/ooxmlexport/data/tdf143692_outlineLevelTortureTest.docx 
b/sw/qa/extras/ooxmlexport/data/tdf143692_outlineLevelTortureTest.docx
new file mode 100644
index ..7072b47218d6
Binary files /dev/null and 
b/sw/qa/extras/ooxmlexport/data/tdf143692_outlineLevelTortureTest.docx differ
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport16.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport16.cxx
index d1f0603ec884..10cb7f1126ed 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport16.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport16.cxx
@@ -329,6 +329,40 @@ 
DECLARE_OOXMLEXPORT_TEST(testTdf141966_chapterNumberTortureTest, "tdf141966_chap
 CPPUNIT_ASSERT_EQUAL(OUString(""), getProperty(xPara, 
"ListLabelString"));
 }
 
+DECLARE_OOXMLEXPORT_TEST(testTdf143692_outlineLevelTortureTest, 
"tdf143692_outlineLevelTortureTest.docx")
+{
+uno::Reference xPara(getParagraph(1, "Head non Toc 
style"), uno::UNO_QUERY);
+// fixed missing inherit from Heading 1
+CPPUNIT_ASSERT_EQUAL(sal_Int16(1), getProperty(xPara, 
"OutlineLevel"));
+
+xPara.set(getParagraph(2, "noInheritHeading1"), uno::UNO_QUERY);
+// fixed body level not cancelling inherited level
+CPPUNIT_ASSERT_EQUAL(sal_Int16(0), getProperty(xPara, 
"OutlineLevel"));
+
+xPara.set(getParagraph(4, "illegal -3"), uno::UNO_QUERY);
+// illegal value is ignored, so inherit from Heading 1
+CPPUNIT_ASSERT_EQUAL(sal_Int16(1), getProperty(xPara, 
"OutlineLevel"));
+
+xPara.set(getParagraph(5, "Heading 1 with invalid direct -2"), 
uno::UNO_QUERY);
+// fixed illegal does not mean body level, it means inherit from style.
+CPPUNIT_ASSERT_EQUAL(sal_Int16(1), getProperty(xPara, 
"OutlineLevel"));
+
+xPara.set(getParagraph(7, "InheritCN3"), uno::UNO_QUERY);
+// fixed Chapter Numbering cancelling inheritance
+//CPPUNIT_ASSERT_EQUAL(sal_Int16(3), getProperty(xPara, 
"OutlineLevel"));
+
+xPara.set(getParagraph(8, "noInheritCN3"), uno::UNO_QUERY);
+CPPUNIT_ASSERT_EQUAL(sal_Int16(0), getProperty(xPara, 
"OutlineLevel"));
+
+xPara.set(getParagraph(9, "override6CN3"), uno::UNO_QUERY);
+// fixed body level not cancelling inherited level
+CPPUNIT_ASSERT_EQUAL(sal_Int16(6), getProperty(xPara, 
"OutlineLevel"));
+
+xPara.set(getParagraph(10, "illegal 25"), uno::UNO_QUERY);
+// fixed illegal value is ignored, so inherit from List Level (Chapter 
Numbering)
+//CPPUNIT_ASSERT_EQUAL(sal_Int16(3), getProperty(xPara, 
"OutlineLevel"));
+}
+
 DECLARE_OOXMLEXPORT_TEST(testTdf132752, "tdf132752.docx")
 {
 CPPUNIT_ASSERT_EQUAL(sal_Int32(1801), 
getProperty(getParagraph(1), "ParaLeftMargin"));
diff --git a/writerfilter/source/dmapper/DomainMapper.cxx 
b/writerfilter/source/dmapper/DomainMapper.cxx
index ac63dc699fd2..f5731e735cbe 100644
--- a/writerfilter/source/dmapper/DomainMapper.cxx
+++ b/writerfilter/source/dmapper/DomainMapper.cxx
@@ -1556,17 +1556,19 @@ void DomainMapper::sprmWithProps( Sprm& rSprm, const 
PropertyMapPtr& rContext )
 break;
 case NS_ooxml::LN_CT_PPrBase_outlineLvl:
 {
-sal_Int16 nLvl = static_cast< sal_Int16 >( nIntValue );
+if (nIntValue < WW_OUTLINE_MIN || nIntValue > WW_OUTLINE_MAX)
+break; // invalid value is ignored by MS Word
+
 if( IsStyleSheetImport() )
 {
-
 StyleSheetPropertyMap* pStyleSheetPropertyMap = dynamic_cast< 
StyleSheetPropertyMap* >( rContext.get() );
 if (pStyleSheetPropertyMap)
-pStyleSheetPropertyMap->SetOutlineLevel( nLvl );
+

[Libreoffice-bugs] [Bug 144014] I cannot create a New Style for internet links, without the system Internet Link overriding my style.

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144014

BogdanB  changed:

   What|Removed |Added

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

--- Comment #2 from BogdanB  ---
Try this: select the link with problem and pres Ctrl+M.

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

[Libreoffice-bugs] [Bug 144008] LO crashes when macro tries to start a form document in Base (kf5 only)

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144008

QA Administrators  changed:

   What|Removed |Added

   Keywords||bibisectRequest

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

[Libreoffice-bugs] [Bug 139859] Incorrect handling of blank cells

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139859

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

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 142952] Crash in: mergedlo.dll

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142952

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 139848] #VALUE! thrown repeatedly with the exact same text inserted manually and via copy and paste despite it originally working with the exact same cell input originally

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139848

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 139852] Crash if I close and try to re-open it

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139852

--- Comment #3 from QA Administrators  ---
Dear Arminius Ungeist,

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 139859] Incorrect handling of blank cells

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139859

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 139852] Crash if I close and try to re-open it

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139852

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 139831] Libreoffice Calc keeps crashing when macros are executed.

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139831

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 139831] Libreoffice Calc keeps crashing when macros are executed.

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139831

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

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 139848] #VALUE! thrown repeatedly with the exact same text inserted manually and via copy and paste despite it originally working with the exact same cell input originally

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139848

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

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 139776] FILEOPEN - item added when opening an Excel 2003 spreadsheet

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139776

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 139776] FILEOPEN - item added when opening an Excel 2003 spreadsheet

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139776

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

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 138886] LibreOffice 7.0 crashes when I attempt to open it after installing it. This is before i can choose a component such as Calc or Base

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138886

--- Comment #4 from QA Administrators  ---
Dear rbaksa,

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 139257] Crash of LibreOffice deletes non saved work

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139257

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

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 138376] The attached spread sheet frequently crashes after saving during closing.

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138376

--- Comment #7 from QA Administrators  ---
Dear Nick Hildebrand,

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 132196] Rewrite of mailmerge.py

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132196

--- Comment #10 from QA Administrators  ---
Dear prrvchr,

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 47997] FILESAVE PPT Indent of paragraph is wrong

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=47997

--- Comment #9 from QA Administrators  ---
Dear sasha.libreoffice,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 47730] Editing pdf in Draw corrupts text justification

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=47730

--- Comment #15 from QA Administrators  ---
Dear books,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 44731] PDF import problems with gradients and patterns

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=44731

--- Comment #37 from QA Administrators  ---
Dear mathog,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 44729] PDF import problems with opacity from Inkscape PDF export

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=44729

--- Comment #18 from QA Administrators  ---
Dear mathog,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 43806] Line style of imported PDF

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43806

--- Comment #37 from QA Administrators  ---
Dear mathog,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 41638] FILESAVE: Black character shadows will be shown grey by MS PPT Viewer

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=41638

--- Comment #10 from QA Administrators  ---
Dear Rainer Bielefeld Retired,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 113936] Importing a PDF is slower compared to 5.4

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113936

--- Comment #9 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://kiwiirc.com/nextclient/irc.freenode.net/#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 144014] I cannot create a New Style for internet links, without the system Internet Link overriding my style.

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144014

--- Comment #1 from nirodh...@gmail.com ---
Created attachment 174485
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174485=edit
Internet Link Style Override

Just a jpg of my bug description.  Notice how the Styles pane shows Earthy
Hyperlink in Brown, but the document does not.

Thanks.

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

[Libreoffice-bugs] [Bug 144014] New: I cannot create a New Style for internet links, without the system Internet Link overriding my style.

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144014

Bug ID: 144014
   Summary: I cannot create a New Style for internet links,
without the system Internet Link overriding my style.
   Product: LibreOffice
   Version: 6.2 all versions
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: nirodh...@gmail.com

Description:
Normally Internet Link uses a Navy Blue font.  If I create new style that uses
say a brown font, it won't work.  The Internet Link font color will
predominate.  I can change Internet Link font to brown, but then it changes
every other hyperlink in my document to brown.  Bottom line?  I can't create a
new hyperlink style.

Steps to Reproduce:
1.Write a sentence in Writer as follows: Here are 2 hyperlinks: Hyperlink1 and
Hyperlink2.
2.Format Hyperlink1 with Standard Internet Link (Blue Color, Times New Roman
12.
3.Create New Hyperlink Style.  Name it EarthyLink. (Brown Color, Tahoma, 15. 
Format Hyperlink2 with EarthyLink.
4. Notice that the Font and font size change, but the color does not.

Actual Results:
The new style shows up in my Style window as brown, but it does not work. 
Color remains the same color defined by Standard Internet Link (Blue).

Expected Results:
It should have used EarthyLink as defined with BROWN color.


Reproducible: Always


User Profile Reset: Yes



Additional Info:
The software should give me the ability to style hyperlinks the way I choose,
with the color I choose and not have the Standard Internet Link style override
my self-created style.

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

[Libreoffice-bugs] [Bug 112765] [META] RTF (text) table bugs and enhancements

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112765
Bug 112765 depends on bug 108974, which changed state.

Bug 108974 Summary: [RTF] Table not properly displayed
https://bugs.documentfoundation.org/show_bug.cgi?id=108974

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 97895] [META] FILEOPEN RTF layout problem with table, footers, extra pages

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97895
Bug 97895 depends on bug 108974, which changed state.

Bug 108974 Summary: [RTF] Table not properly displayed
https://bugs.documentfoundation.org/show_bug.cgi?id=108974

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 108974] [RTF] Table not properly displayed

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108974

Aron Budea  changed:

   What|Removed |Added

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

--- Comment #5 from Aron Budea  ---
This was actually fixed in LO 6.1.0.3, at least the Technologie table not
having borders, changing status to WFM.

Mike, if you're still seeing some kind of issue there, please open a separate
bug report on that.

The diagram at the end has been missing the lines since the following commit in
7.0:
https://cgit.freedesktop.org/libreoffice/core/commit/?id=dd117712bd5692f7bf3870ba91572a0bab54ab86
author  Armin Le Grand   2020-03-05 19:24:30
+0100
committer   Armin Le Grand   2020-03-06 10:10:55
+0100

tdf#124848 partial refactor hairline logic

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

[Libreoffice-bugs] [Bug 144013] When "Same content on first page" is unchecked, and there is a table on the page which spreads across two pages, the first page header content also goes to the second p

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144013

Kevin Suo  changed:

   What|Removed |Added

Version|unspecified |7.2.0.3 rc
 OS|All |Linux (All)

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

[Libreoffice-bugs] [Bug 144013] New: When "Same content on first page" is unchecked, and there is a table on the page which spreads across two pages, the first page header content also goes to the sec

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144013

Bug ID: 144013
   Summary: When "Same content on first page" is unchecked, and
there is a table on the page which spreads across two
pages, the first page header content also goes to the
second page
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: suokunl...@126.com

Created attachment 174484
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174484=edit
test odt file

Steps to Reproduce:

1. Open the attached odt file.
Observe that it has "same content on the first page" unchecked in page
properties, so that the header logo is only shown on the first page but not on
the 2nd page.
Also observe that there is a table which spread across the first and the 2nd
page.

2. Save as docx, then open the saved docx file with Writer or MS Word.
--> Bug: the header logo appears on both the 1st and the 2nd page. It should
appear only on the first page.

3. Try to delete some table rows in the odt file so that the table fit only on
the 1st page, then save as docx and reopen with Writer or MS Word.
--> OK, as expected.

Version: 7.3.0.0.alpha0+ / LibreOffice Community
Build ID: cb2827f5f65324f309fa0e3c30d0b19ad237410e
CPU threads: 8; OS: Linux 5.13; UI render: default; VCL: gtk3
Locale: zh-CN (zh_CN.UTF-8); UI: zh-CN
Build Platform: Fedora34@X64, Branch:master, bibisect-linux-64-7.3-CN
Calc: threaded

also on 7.2 branch.

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

[Libreoffice-bugs] [Bug 108974] [RTF] Table not properly displayed

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108974

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu

--- Comment #4 from Aron Budea  ---
Created attachment 174483
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174483=edit
PDF exported from Word

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

[Libreoffice-bugs] [Bug 144012] Password protected .odt file show mostly empty

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144012

Satoru Kengaku  changed:

   What|Removed |Added

Summary|Password set .odt file show |Password protected .odt
   |mostly empty|file show mostly empty

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

[Libreoffice-bugs] [Bug 144012] New: Password set .odt file show mostly empty

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144012

Bug ID: 144012
   Summary: Password set .odt file show mostly empty
   Product: LibreOffice
   Version: 7.2.0.4 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: satoru.keng...@gmail.com

Description:
Open my password protected .odt file with 7.2.0.4, it shows the header and some
lines only, contents are mostly empty.
Tried to change character color, but it was not the cause.

Steps to Reproduce:
1.Open a password protected .odt file
2.
3.

Actual Results:
The header is shown. Some under lines are shown, but the rest is empty.



Expected Results:
My contents should be shown.


Reproducible: Always


User Profile Reset: No


OpenGL enabled: Yes

Additional Info:
It's OK with 7.1.5.2 (x64)
So I uninstalled 7.2.0.4 and reinstalled 7.1.5.2.

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

[Libreoffice-bugs] [Bug 143881] FORMULA: abs{x}^2 is formatted with unexpected operator precedence

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143881

--- Comment #8 from dante19031...@gmail.com ---
> 2. Introduce a compatibility flag, that would signal that abs priority is
> changed.

That's no so easy. The token list is hardcoded into the code.
It's set up on program initialization, even before the SMMOD even exists.

It could be accessed from a static function, using a bad hack ( const cast +
search for TABS, not 100% sure it won't break ). In that case we would add that
flag to SmModel::_getPropertyValues and SmModel::_setPropertyValues . It would
be initialized as "new mode". And add a trigger on the importer that would set
it up to "old mode".

It would need a second flag to check if the first one has the default value or
actually was set by the document.

However, there are some things that I'm not confident about.
How will this react while using multiple thread (multiple formulas at same
time).
If it has to be thread safe, then I'm not confident it can be done.

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

[Libreoffice-bugs] [Bug 131531] FILESAVE DOCX: Header height of first page is not reserved

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131531

Kevin Suo  changed:

   What|Removed |Added

 CC||l...@deller.id.au

--- Comment #7 from Kevin Suo  ---
Luke would you please take a look as you have worked on bug 19080?

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

[Libreoffice-bugs] [Bug 144011] New: LibreOffice Writer crashed when right clicking "word not dictionary" and selecting "Ignore All"

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144011

Bug ID: 144011
   Summary: LibreOffice Writer crashed when right clicking "word
not dictionary" and selecting "Ignore All"
   Product: LibreOffice
   Version: 7.1.5.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: resti...@gmail.com

Description:
After crash file was recovered correctly by LibreOffice. Word not in dictionary
was still not in dictionary (squiggly underline).
https://crashreport.libreoffice.org/stats/crash_details/b9973f1f-090e-4868-a8c0-be26248e071a
 

Steps to Reproduce:
1.right click word not in dictionary (squiggly underline)
2.select "Ignore all"
3.LibreOffice crashes

Actual Results:
LibreOffice crashes but successfully recovers file.
Crash report created.
https://crashreport.libreoffice.org/stats/crash_details/b9973f1f-090e-4868-a8c0-be26248e071a

Expected Results:
Word ignored and squiggly underline disappears.


Reproducible: Always


User Profile Reset: No



Additional Info:
Tried 3 times. Crashed 3 times.
Did not try resetting my UserProfile. Will try and update bug report.
I have no idea what OpenGL is.

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

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

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

--- Comment #11 from Aron Budea  ---
Created attachment 174482
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174482=edit
DOC from description

(In reply to Fahad Al-Saidi from comment #10)
> today I had a chance to test the fix. It took 5 minutes to open the file in
> my new machine (16 threads).
Yeah, unfortunately that fix, done for bug 104254 had to be reverted before
7.2.0 release. But anyway, I checked from the state when that fix was still in,
and apparently it didn't affect this document.

Thanks for pointing to the doc again, I'm attaching it this time.

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

[Libreoffice-bugs] [Bug 101280] [META] Layout loops

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101280
Bug 101280 depends on bug 76219, which changed state.

Bug 76219 Summary: HANG i#84870: WW8: large objects in Russian text / DOC with 
complex header / ...  may cause loop (see comment 7 and 8)
https://bugs.documentfoundation.org/show_bug.cgi?id=76219

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|DUPLICATE   |---

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

[Libreoffice-bugs] [Bug 104848] [META] DOC (binary) file opening issues

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104848
Bug 104848 depends on bug 76219, which changed state.

Bug 76219 Summary: HANG i#84870: WW8: large objects in Russian text / DOC with 
complex header / ...  may cause loop (see comment 7 and 8)
https://bugs.documentfoundation.org/show_bug.cgi?id=76219

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|DUPLICATE   |---

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

[Libreoffice-bugs] [Bug 87740] [META] Anchor and text wrapping bugs and enhancements

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87740
Bug 87740 depends on bug 76219, which changed state.

Bug 76219 Summary: HANG i#84870: WW8: large objects in Russian text / DOC with 
complex header / ...  may cause loop (see comment 7 and 8)
https://bugs.documentfoundation.org/show_bug.cgi?id=76219

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|DUPLICATE   |---

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

[Libreoffice-bugs] [Bug 76219] HANG i#84870: WW8: large objects in Russian text / DOC with complex header / ... may cause loop (see comment 7 and 8)

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76219

Aron Budea  changed:

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|DUPLICATE   |---

--- Comment #30 from Aron Budea  ---
Since that commit has been reverted, let's set this back to NEW. We can't know
if another fix there will fix this for sure.

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

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

2021-08-22 Thread Tomaž Vajngerl (via logerrit)
 sw/qa/extras/indexing/IndexingExportTest.cxx |  167 ++-
 sw/source/filter/indexing/IndexingExport.cxx |   28 ++--
 2 files changed, 109 insertions(+), 86 deletions(-)

New commits:
commit 50f0e8c7880122a05585a2233f6f35d0dfee0385
Author: Tomaž Vajngerl 
AuthorDate: Sun Aug 22 11:43:10 2021 +0900
Commit: Tomaž Vajngerl 
CommitDate: Mon Aug 23 02:51:23 2021 +0200

indexing: make indexing XML flat and use simple element names

This changes the indexing XML to be flat-er and change the element
names to just be either "paragraph" or an "object", where an
"object" then has an attribute what type exactly it is.

This makes converting the XML to an indexing engine accepted
format easier.

Change-Id: Ia8941cc9616a862c1bc980efea5ba2548217644e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120836
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/sw/qa/extras/indexing/IndexingExportTest.cxx 
b/sw/qa/extras/indexing/IndexingExportTest.cxx
index 346ff783d2c4..9d40d887f30d 100644
--- a/sw/qa/extras/indexing/IndexingExportTest.cxx
+++ b/sw/qa/extras/indexing/IndexingExportTest.cxx
@@ -107,10 +107,12 @@ void IndexingExportTest::testIndexingExport_Images()
 CPPUNIT_ASSERT(pXmlDoc);
 
 assertXPath(pXmlDoc, "/indexing");
-assertXPath(pXmlDoc, "/indexing/graphic[1]", "alt", "Image_NonCaption - 
Alternative text");
-assertXPath(pXmlDoc, "/indexing/graphic[1]", "name", "Image_NonCaption");
-assertXPath(pXmlDoc, "/indexing/graphic[2]", "alt", "Image_InCaption - 
Alternative text");
-assertXPath(pXmlDoc, "/indexing/graphic[2]", "name", "Image_InCaption");
+assertXPath(pXmlDoc, "/indexing/object[1]", "alt", "Image_NonCaption - 
Alternative text");
+assertXPath(pXmlDoc, "/indexing/object[1]", "name", "Image_NonCaption");
+assertXPath(pXmlDoc, "/indexing/object[1]", "type", "graphic");
+assertXPath(pXmlDoc, "/indexing/object[2]", "alt", "Image_InCaption - 
Alternative text");
+assertXPath(pXmlDoc, "/indexing/object[2]", "name", "Image_InCaption");
+assertXPath(pXmlDoc, "/indexing/object[2]", "type", "graphic");
 }
 
 void IndexingExportTest::testIndexingExport_OLE()
@@ -127,8 +129,9 @@ void IndexingExportTest::testIndexingExport_OLE()
 CPPUNIT_ASSERT(pXmlDoc);
 
 assertXPath(pXmlDoc, "/indexing");
-assertXPath(pXmlDoc, "/indexing/ole[1]", "name", "Object - Chart");
-assertXPath(pXmlDoc, "/indexing/ole[1]", "alt", "Alt Text");
+assertXPath(pXmlDoc, "/indexing/object[1]", "name", "Object - Chart");
+assertXPath(pXmlDoc, "/indexing/object[1]", "alt", "Alt Text");
+assertXPath(pXmlDoc, "/indexing/object[1]", "type", "ole");
 }
 
 void IndexingExportTest::testIndexingExport_Shapes()
@@ -145,18 +148,22 @@ void IndexingExportTest::testIndexingExport_Shapes()
 CPPUNIT_ASSERT(pXmlDoc);
 
 assertXPath(pXmlDoc, "/indexing");
-
-assertXPath(pXmlDoc, "/indexing/shape[1]", "name", "Circle");
-assertXPathContent(pXmlDoc, "/indexing/shape[1]/paragraph[1]", "This is a 
circle");
-assertXPathContent(pXmlDoc, "/indexing/shape[1]/paragraph[2]", "This is a 
second paragraph");
-
-assertXPath(pXmlDoc, "/indexing/shape[2]", "name", "Diamond");
-assertXPathContent(pXmlDoc, "/indexing/shape[2]/paragraph[1]", "This is a 
diamond");
-
-assertXPath(pXmlDoc, "/indexing/shape[3]", "name", "Text Frame 1");
-assertXPathContent(pXmlDoc, "/indexing/shape[3]/paragraph[1]", "This is a 
TextBox - Para1");
-assertXPathContent(pXmlDoc, "/indexing/shape[3]/paragraph[2]", "Para2");
-assertXPathContent(pXmlDoc, "/indexing/shape[3]/paragraph[3]", "Para3");
+assertXPathContent(pXmlDoc, "/indexing/paragraph[1]", "Drawing : Just a 
Diamond");
+
+assertXPath(pXmlDoc, "/indexing/object[1]", "name", "Circle");
+assertXPath(pXmlDoc, "/indexing/object[1]", "type", "shape");
+assertXPathContent(pXmlDoc, "/indexing/paragraph[2]", "This is a circle");
+assertXPathContent(pXmlDoc, "/indexing/paragraph[3]", "This is a second 
paragraph");
+
+assertXPath(pXmlDoc, "/indexing/object[2]", "name", "Diamond");
+assertXPath(pXmlDoc, "/indexing/object[2]", "type", "shape");
+assertXPathContent(pXmlDoc, "/indexing/paragraph[4]", "This is a diamond");
+
+assertXPath(pXmlDoc, "/indexing/object[3]", "name", "Text Frame 1");
+assertXPath(pXmlDoc, "/indexing/object[3]", "type", "shape");
+assertXPathContent(pXmlDoc, "/indexing/paragraph[5]", "This is a TextBox - 
Para1");
+assertXPathContent(pXmlDoc, "/indexing/paragraph[6]", "Para2");
+assertXPathContent(pXmlDoc, "/indexing/paragraph[7]", "Para3");
 }
 
 void IndexingExportTest::testIndexingExport_Tables()
@@ -174,51 +181,56 @@ void IndexingExportTest::testIndexingExport_Tables()
 
 assertXPath(pXmlDoc, "/indexing");
 
-assertXPath(pXmlDoc, "/indexing/table[1]", "name", "Table1");
-assertXPathContent(pXmlDoc, "/indexing/table[1]/paragraph[1]", "A");
-

[Libreoffice-commits] core.git: helpcontent2

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

New commits:
commit 0224d859b8a497779611cc15943c017ec42f9b90
Author: Olivier Hallot 
AuthorDate: Mon Aug 23 01:59:05 2021 +0200
Commit: Gerrit Code Review 
CommitDate: Mon Aug 23 01:59:05 2021 +0200

Update git submodules

* Update helpcontent2 from branch 'master'
  to b7fa972bc76c0954479bfd7f1b77c511372c4626
  - Update topic on Draw scale factor

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

diff --git a/helpcontent2 b/helpcontent2
index 374e66c1c035..b7fa972bc76c 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 374e66c1c0353e0042a70ae67d663ccb084fb39a
+Subproject commit b7fa972bc76c0954479bfd7f1b77c511372c4626


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

2021-08-22 Thread Olivier Hallot (via logerrit)
 source/text/shared/optionen/01070500.xhp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b7fa972bc76c0954479bfd7f1b77c511372c4626
Author: Olivier Hallot 
AuthorDate: Fri Aug 20 14:43:18 2021 +0200
Commit: Olivier Hallot 
CommitDate: Mon Aug 23 01:59:05 2021 +0200

Update topic on Draw scale factor

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

diff --git a/source/text/shared/optionen/01070500.xhp 
b/source/text/shared/optionen/01070500.xhp
index 91bdfb17b..808bfdcf7 100644
--- a/source/text/shared/optionen/01070500.xhp
+++ b/source/text/shared/optionen/01070500.xhp
@@ -103,7 +103,7 @@
 Scale (only in drawings)
 
 Drawing scale
-Determines the drawing 
scale on the rulers.
+Determines the drawing 
scale on the status bar. Right-click on the scale factor in the status 
bar to open a list of possible values.
 Compatibility (document specific settings)
 The settings 
in this area are valid for the current document only.
 


[Libreoffice-bugs] [Bug 142580] FILEOPEN XLSX Conditional text format colors not considered by color filter

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142580

Ming Hua  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 142579] FILEOPEN XLSX Conditional format background colors not considered by color filter

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142579

Ming Hua  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 142076] [META] Color filtering in Autofilter bugs and enhancements

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142076

Ming Hua  changed:

   What|Removed |Added

 Depends on||144010


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=144010
[Bug 144010] Filter by Background / Text Colour does not work for cells
formatted by condition
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 144010] Filter by Background / Text Colour does not work for cells formatted by condition

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144010

Ming Hua  changed:

   What|Removed |Added

   Severity|normal  |enhancement
 OS|Linux (All) |All
 CC||ming.v@qq.com
 Blocks||142076
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=14
   ||2579,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=14
   ||2580

--- Comment #1 from Ming Hua  ---
Thanks for reporting.

The issue with supporting colors from conditional formatting has been raised in
bug 142579 and bug 142580.  But since those are about XLSX compatibility
specifically, I'm not marking any duplicates yet, and let the developers or
senior QA people decide.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=142076
[Bug 142076] [META] Color filtering in Autofilter bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 143103] Support Color Filter in "Standard Filter" dialog

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143103

Regina Henschel  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 142522] Filter By Color: allow multiple selection

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142522

Regina Henschel  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=14
   ||3103

--- Comment #11 from Regina Henschel  ---
I think this is connected to the request to allow color filter in
Standard-Filter (bug 143103) because the latter has already the option in the
UI to define several conditions. If color in Standard-Filter is implemented,
then it might be not necessary to allow multi-selection in the UI of
Autofilter.

LibreOffice is not a clone of Excel. The fact, that Excel does not have a
feature is no reason, that LibreOffice does not get it too. For me this is a
valid enhancement request.

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

[Libreoffice-bugs] [Bug 143980] Add numpy to LibreOffice\program\python

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143980

Ming Hua  changed:

   What|Removed |Added

 CC||ming.v@qq.com

--- Comment #5 from Ming Hua  ---
While I would welcome addition of Numpy to LibreOffice's bundled Python, I
don't see it happening without a dramatic change of the current practice of
python module packaging.

We don't even ship the full core library of Python.  To use the Windows
installer as an example (I assume TDF's RPM and DEB packages are similar), I
think we build python without Tcl/Tk and the accompanying tkinter graphic UI
module, and we strip a lot of modules LO doesn't use when bundling python into
the installer.

As a result, the whole program\python-core-3.8.10\lib directory (with .pyc
cache files generated) for installed 7.2.0 on my system is 28 MB with 1,225
files.  As a comparison, the official python.org installation's python38\Lib
directory here (excluding subdirectory site-packages\) is 115 MB with 7,183
files, also with .pyc files generated.

And Numpy alone on my system is 56 MB.  It also links to BLAS/LAPACK and maybe
many other C/C++ libraries, so building it correctly is going to be tricky,
too.  And by adding it we are more and more like shipping a custom python
distribution, instead of an office suite bundling python.

Without discouraging anyone who want to work on this, I personally feel the
developers' efforts would be better put into making installing external modules
from PyPI and building virtual environments easier with LO's bundled python. 
Then we can avoid frustrated users like in bug 143867.  Maybe starting with
adding "ensurepip" module into our bundle, and writing a good tutorial about
setting up PIP and installing packages from PyPI with LO-bundled python?

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

[Libreoffice-bugs] [Bug 142965] There is no way to select cells without color text or color filling in Autofilter

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142965

Regina Henschel  changed:

   What|Removed |Added

   Keywords||implementationError

--- Comment #10 from Regina Henschel  ---
The attribute fo:background-color in file source can have the value
"transparent" in addition to rgb- color values. Transparent is missing in the
list of color values in the Autofilter.

LibreOffice writes attribute style:use-window-fontcolor="true" in case
"Automatic" was chosen in the UI. Which means, that the font color is White if
the background is too dark. The item "Automatic" is missing in the list of
color values in the Autofilter. This situation is not yet included in the
proposal for ODF.

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

[Libreoffice-commits] core.git: Branch 'distro/lhm/libreoffice-6-4+backports' - sw/qa

2021-08-22 Thread Samuel Mehrbrodt (via logerrit)
 sw/qa/extras/odfexport/data/shapes-hyperlink.odt |binary
 sw/qa/extras/odfexport/odfexport.cxx |   19 +++
 2 files changed, 19 insertions(+)

New commits:
commit 37647c830b4f269c475e7d63ec051c0fc7deb28b
Author: Samuel Mehrbrodt 
AuthorDate: Thu Aug 19 07:48:43 2021 +0200
Commit: Thorsten Behrens 
CommitDate: Mon Aug 23 00:51:59 2021 +0200

tdf#143736 Add test

Change-Id: I132a31f7bb06f31cabfa92b647a9e4dbdb7b4b6a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120692
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt 
(cherry picked from commit 69f4abe1248f9919f242920b463c4d5f4965211f)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120698
Tested-by: Thorsten Behrens 
Reviewed-by: Thorsten Behrens 

diff --git a/sw/qa/extras/odfexport/data/shapes-hyperlink.odt 
b/sw/qa/extras/odfexport/data/shapes-hyperlink.odt
new file mode 100644
index ..f8f4e155654f
Binary files /dev/null and b/sw/qa/extras/odfexport/data/shapes-hyperlink.odt 
differ
diff --git a/sw/qa/extras/odfexport/odfexport.cxx 
b/sw/qa/extras/odfexport/odfexport.cxx
index 9939a2cd2830..dbff5a0327fc 100644
--- a/sw/qa/extras/odfexport/odfexport.cxx
+++ b/sw/qa/extras/odfexport/odfexport.cxx
@@ -2388,5 +2388,24 @@ DECLARE_ODFEXPORT_TEST(tdf135942, 
"nestedTableInFooter.odt")
 }
 }
 
+DECLARE_ODFEXPORT_TEST(testShapesHyperlink, "shapes-hyperlink.odt")
+{
+uno::Reference const xPropSet1(getShape(1), 
uno::UNO_QUERY);
+CPPUNIT_ASSERT_EQUAL(OUString("http://libreoffice.org/;), 
getProperty(xPropSet1, "Hyperlink"));
+
+uno::Reference const xPropSet2(getShape(2), 
uno::UNO_QUERY);
+CPPUNIT_ASSERT_EQUAL(OUString("http://libreoffice2.org/;), 
getProperty(xPropSet2, "Hyperlink"));
+
+uno::Reference const xPropSet3(getShape(3), 
uno::UNO_QUERY);
+CPPUNIT_ASSERT_EQUAL(OUString("http://libreoffice3.org/;), 
getProperty(xPropSet3, "Hyperlink"));
+
+uno::Reference const xPropSet4(getShape(4), 
uno::UNO_QUERY);
+CPPUNIT_ASSERT_EQUAL(OUString("http://libreoffice4.org/;), 
getProperty(xPropSet4, "Hyperlink"));
+
+uno::Reference const xPropSet5(getShape(5), 
uno::UNO_QUERY);
+CPPUNIT_ASSERT_EQUAL(OUString("http://libreoffice5.org/;), 
getProperty(xPropSet5, "Hyperlink"));
+}
+
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */


[Libreoffice-commits] core.git: Branch 'distro/lhm/libreoffice-6-4+backports' - xmloff/source

2021-08-22 Thread Samuel Mehrbrodt (via logerrit)
 xmloff/source/text/XMLTextFrameContext.cxx |   13 +
 1 file changed, 13 insertions(+)

New commits:
commit ff045b937c9f8a4786bb3e82cdcffa6588aa3a8f
Author: Samuel Mehrbrodt 
AuthorDate: Wed Aug 18 16:48:43 2021 +0200
Commit: Thorsten Behrens 
CommitDate: Mon Aug 23 00:51:29 2021 +0200

tdf#143736 Fix loading hyperlink from textbox

Change-Id: I56f5aec153d9544a6c345e0cbb5857cf5d0074b3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120673
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt 
(cherry picked from commit da006fbe2d4c5891933390d72f6e6026b28d39fc)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120697
Tested-by: Thorsten Behrens 
Reviewed-by: Thorsten Behrens 

diff --git a/xmloff/source/text/XMLTextFrameContext.cxx 
b/xmloff/source/text/XMLTextFrameContext.cxx
index 7f0ce41a1d74..f5f3cfac29cd 100644
--- a/xmloff/source/text/XMLTextFrameContext.cxx
+++ b/xmloff/source/text/XMLTextFrameContext.cxx
@@ -1401,6 +1401,7 @@ void XMLTextFrameContext::EndElement()
 (pMultiContext.is()) ? pMultiContext.get() : m_xImplContext.get();
 XMLTextFrameContext_Impl *pImpl = 
const_cast(dynamic_cast< const 
XMLTextFrameContext_Impl*>( pContext ));
 assert(!pMultiContext.is() || pImpl);
+
 if( pImpl )
 {
 pImpl->CreateIfNotThere();
@@ -1431,6 +1432,18 @@ void XMLTextFrameContext::EndElement()
 
GetImport().GetTextImport()->StoreLastImportedFrameName(pImpl->GetOrigName());
 
 }
+else
+{
+// When we are dealing with a textbox, pImpl will be null;
+// we need to set the hyperlink to the shape instead
+Reference xShape = GetShape();
+if (xShape.is() && m_pHyperlink)
+{
+Reference xProps(xShape, UNO_QUERY);
+if (xProps.is())
+xProps->setPropertyValue("Hyperlink", 
Any(m_pHyperlink->GetHRef()));
+}
+}
 }
 
 SvXMLImportContextRef XMLTextFrameContext::CreateChildContext(


[Libreoffice-bugs] [Bug 144010] New: Filter by Background / Text Colour does not work for cells formatted by condition

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144010

Bug ID: 144010
   Summary: Filter by Background / Text Colour does not work for
cells formatted by condition
   Product: LibreOffice
   Version: 7.2.0.4 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bug2...@johnmurrell.org.uk

Description:
The latest update of LibreOffice calc introduced the ability to filter by
Background or text colour which works if you manually change the cell colours.

If the Background or text colour are changed by conditional formatting this
does not show in the filter selection so you cannot filter by it.



Steps to Reproduce:
1.Create a list of numbers with some duplicates
2.used the conditional format - condition to format the duplicate values as
'errors' which have white text on a red background. 
3.Apply an auto filter to the list.
4:Neither the red background or white text appear in the Text Colour or
Background colour in the filter selection.

Actual Results:
Background & text colour not shown in filter selection

Expected Results:
Background & Text colour should appear in filter selector allowing cells
formatted by conditional formatting to be filtered.


Reproducible: Always


User Profile Reset: No


OpenGL enabled: Yes

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

https://gerrit.libreoffice.org/gitweb?p=core.git;a=log;h=9a9c6381e3f7a62afc1329bd359cc48accb6435b

(the rest will not copy)

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

[Libreoffice-bugs] [Bug 143899] FILEOPEN DOCX Shapes overlap margin in CompatibilityMode15

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143899

Ezinne  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
 CC||nnamani.ezi...@collabora.co
   ||m

--- Comment #4 from Ezinne  ---
Reproducible in:

Version: 7.3.0.0.alpha0+ / LibreOffice Community
Build ID: 7c1bad415ae48635dc67041c413bb7b76a530c22
CPU threads: 8; OS: Linux 5.8; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2021-07-05_06:55:03
Calc: threaded

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

[Libreoffice-bugs] [Bug 144008] LO crashes when macro tries to start a form document in Base (kf5 only)

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144008

Julien Nabet  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||m.wegh...@posteo.de
   Keywords||haveBacktrace
 Status|UNCONFIRMED |NEW

--- Comment #2 from Julien Nabet  ---
Michael: since it's specific to kf5, thought you might be interested in this
one.

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

[Libreoffice-bugs] [Bug 144008] LO crashes when macro tries to start a form document in Base (kf5 only)

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144008

Julien Nabet  changed:

   What|Removed |Added

Summary|LO crashes when macro tries |LO crashes when macro tries
   |to start a form document in |to start a form document in
   |Base|Base (kf5 only)

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

[Libreoffice-bugs] [Bug 144008] LO crashes when macro tries to start a form document in Base

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144008

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #1 from Julien Nabet  ---
Created attachment 174481
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174481=edit
bt with debug symbols

On pc Debian x86-64 with master sources updated today, I could reproduce this
but only with kf5 rendering, not with gtk3 or gen rendering.

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

[Libreoffice-bugs] [Bug 143980] Add numpy to LibreOffice\program\python

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143980

--- Comment #4 from e...@helpidea.net ---
Thanks,
I use Range.DataArray in Basic, so I have Variant Array of Arrays, and this is
one parameter to deliver to Python def, that take this as tuple of tuples.
Will be Python to transform this in numpy array, and then work with.
At end, must return a tuple of tuples for copy this to a Calc Range.

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

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

2021-08-22 Thread Eike Rathke (via logerrit)
 include/xmloff/xmlnumfe.hxx  |3 ++-
 include/xmloff/xmlnumfi.hxx  |2 ++
 xmloff/source/style/xmlnumfe.cxx |   16 +---
 xmloff/source/style/xmlnumfi.cxx |   20 
 4 files changed, 37 insertions(+), 4 deletions(-)

New commits:
commit c6f15d228489ccfd0628ca80b45a5c2faaacc7d3
Author: Eike Rathke 
AuthorDate: Sun Aug 22 22:13:23 2021 +0200
Commit: Eike Rathke 
CommitDate: Sun Aug 22 23:12:57 2021 +0200

Resolves: tdf#143979 Write and read empty text element in number formats

... as they may be significant as separators between keywords of
same letters.

Also strip trailing empty text as meaningless, except if the only
element.

>General;General<
earlier both General were written as


  
  


for which now  is not.

Change-Id: I4809b1c784667994303b49d8e4ab0e857367e2cb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120856
Reviewed-by: Eike Rathke 
Tested-by: Jenkins

diff --git a/include/xmloff/xmlnumfe.hxx b/include/xmloff/xmlnumfe.hxx
index 98584ac93873..28bfe8d1a2ad 100644
--- a/include/xmloff/xmlnumfe.hxx
+++ b/include/xmloff/xmlnumfe.hxx
@@ -50,7 +50,8 @@ private:
 SvXMLExport&rExport;
 OUStringsPrefix;
 SvNumberFormatter*  pFormatter;
-OUStringBuffer   sTextContent;
+OUStringBuffer  sTextContent;
+boolbHasText;
 std::unique_ptr  pUsedList;
 std::unique_ptr  pCharClass;
 std::unique_ptr  pLocaleData;
diff --git a/include/xmloff/xmlnumfi.hxx b/include/xmloff/xmlnumfi.hxx
index 0f6384f3b785..8026b4e1846b 100644
--- a/include/xmloff/xmlnumfi.hxx
+++ b/include/xmloff/xmlnumfi.hxx
@@ -145,6 +145,7 @@ private:
 boolbAutoDec;   // set in AddNumber
 boolbAutoInt;   // set in AddNumber
 boolbHasExtraText;
+boolbHasTrailingEmptyText;
 OUStringBuffer aFormatCode{64};
 OUStringBuffer aConditions{32};
 boolbHasLongDoW;
@@ -189,6 +190,7 @@ public:
 
 bool HasLongDoW() const { return bHasLongDoW; }
 void SetHasLongDoW(bool bSet)   { bHasLongDoW = bSet; }
+void SetHasTrailingEmptyText(bool bSet) { bHasTrailingEmptyText = 
bSet; }
 
 void UpdateCalendar( const OUString& rNewCalendar );
 ImplicitCalendar GetImplicitCalendarState() const { return 
eImplicitCalendar; }
diff --git a/xmloff/source/style/xmlnumfe.cxx b/xmloff/source/style/xmlnumfe.cxx
index 2695a84fa38b..caba160252f3 100644
--- a/xmloff/source/style/xmlnumfe.cxx
+++ b/xmloff/source/style/xmlnumfe.cxx
@@ -210,7 +210,8 @@ SvXMLNumFmtExport::SvXMLNumFmtExport(
 const uno::Reference< util::XNumberFormatsSupplier >& rSupp ) :
 rExport( rExp ),
 sPrefix( OUString("N") ),
-pFormatter( nullptr )
+pFormatter( nullptr ),
+bHasText( false )
 {
 //  supplier must be SvNumberFormatsSupplierObj
 SvNumberFormatsSupplierObj* pObj =
@@ -242,7 +243,8 @@ SvXMLNumFmtExport::SvXMLNumFmtExport(
const OUString& rPrefix ) :
 rExport( rExp ),
 sPrefix( rPrefix ),
-pFormatter( nullptr )
+pFormatter( nullptr ),
+bHasText( false )
 {
 //  supplier must be SvNumberFormatsSupplierObj
 SvNumberFormatsSupplierObj* pObj =
@@ -320,16 +322,21 @@ void SvXMLNumFmtExport::AddToTextElement_Impl( 
std::u16string_view rString )
 //  to avoid several text elements following each other
 
 sTextContent.append( rString );
+// Also empty string leads to a number:text element as it may separate
+// keywords of the same letter (e.g. MM""MMM) that otherwise would be
+// concatenated when reading back in.
+bHasText = true;
 }
 
 void SvXMLNumFmtExport::FinishTextElement_Impl(bool bUseExtensionNS)
 {
-if ( !sTextContent.isEmpty() )
+if ( bHasText )
 {
 sal_uInt16 nNS = bUseExtensionNS ? XML_NAMESPACE_LO_EXT : 
XML_NAMESPACE_NUMBER;
 SvXMLElementExport aElem( rExport, nNS, XML_TEXT,
   true, false );
 rExport.Characters( sTextContent.makeStringAndClear() );
+bHasText = false;
 }
 }
 
@@ -1415,6 +1422,8 @@ void SvXMLNumFmtExport::ExportPart_Impl( const 
SvNumberformat& rFormat, sal_uInt
 {
 case 0:
 bEnd = true;// end of format reached
+if (bHasText && sTextContent.isEmpty())
+bHasText = false;   // don't write trailing empty 
text
 break;
 case NF_SYMBOLTYPE_STRING:
 case NF_SYMBOLTYPE_DATESEP:
@@ -1463,6 +1472,7 @@ void SvXMLNumFmtExport::ExportPart_Impl( const 
SvNumberformat& rFormat, sal_uInt
 break;
 case NF_KEY_GENERAL :
 

[Libreoffice-bugs] [Bug 143980] Add numpy to LibreOffice\program\python

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143980

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #3 from Roman Kuznetsov <79045_79...@mail.ru> ---
Set to NEW by Comment 2

Thanks Andreas

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

[Libreoffice-bugs] [Bug 144005] crash when moving a media shape in debug build

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144005

Julien Nabet  changed:

   What|Removed |Added

 CC||michael.st...@allotropia.de
   ||, t...@libreoffice.org,
   ||vasily.melenc...@cib.de

--- Comment #3 from Julien Nabet  ---
Assert instructions added with:
https://cgit.freedesktop.org/libreoffice/core/log/?qt=range=d39651a69d789522b2faffd01879db25354b9a22
"author Vasily Melenchuk   2020-08-27 15:13:08
+0300
committer   Thorsten Behrens   2020-09-15
11:04:25 +0200
commit  d39651a69d789522b2faffd01879db25354b9a22 (patch)
treee3852c43ba713ed8d6d8305aeaa8cd6b35dfa148
parent  315919306c7b6e95db6a280c4aa8d2203970e292 (diff)
sw: additional asserts/warns to diagnose empty style names
Since undo/redo is using format name instead of old approach
with pointers (which can point to invalid/removed style) it
is a problem when we trying to use any style without name:
it will be not resolved and undo/redo will work
incorrectly: it can apply invalid attributes or apply style
to another random objects."

Vasily/Thorsten/Michael: thought you might be interested in this one.

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

[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.4' - sc/source

2021-08-22 Thread Szymon Kłos (via logerrit)
 sc/source/ui/view/gridwin4.cxx |   57 +++--
 1 file changed, 50 insertions(+), 7 deletions(-)

New commits:
commit 4d431574c906f7786f1c855eaf4c9781eb4187c4
Author: Szymon Kłos 
AuthorDate: Tue Aug 17 16:56:22 2021 +0200
Commit: Andras Timar 
CommitDate: Sun Aug 22 22:52:18 2021 +0200

calc: get rects faster for simple selection

In LOK when we select the full row using keyboard shortcut
Ctrl + Shift + right arrow we need to receive complete selection
so we will avoid requesting it by chunks, slowly moving the
view to the right.

So - don't clip the selection rects to the visible area.

It is needed only for simple selections so to avoid performance
issues - use simpler algorithm without loops checking every cell size.

Change-Id: I6ab975b6c155f3dde3014a52752ffdc79a93844f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120611
Reviewed-by: Henry Castro 
Tested-by: Jenkins CollaboraOffice 

diff --git a/sc/source/ui/view/gridwin4.cxx b/sc/source/ui/view/gridwin4.cxx
index c3cfe1f60a54..ea76db2a2723 100644
--- a/sc/source/ui/view/gridwin4.cxx
+++ b/sc/source/ui/view/gridwin4.cxx
@@ -2073,14 +2073,60 @@ void ScGridWindow::GetRectsAnyFor(const ScMarkData 
,
   ::std::vector< tools::Rectangle >& rRects,
   bool bInPrintTwips) const
 {
-ScMarkData aMultiMark( rMarkData );
-aMultiMark.SetMarking( false );
-aMultiMark.MarkToMulti();
 ScDocument* pDoc = pViewData->GetDocument();
 SCTAB nTab = pViewData->GetTabNo();
-
+double nPPTX = pViewData->GetPPTX();
+double nPPTY = pViewData->GetPPTY();
 bool bLayoutRTL = pDoc->IsLayoutRTL( nTab );
 long nLayoutSign = bLayoutRTL ? -1 : 1;
+
+ScMarkData aMultiMark( rMarkData );
+aMultiMark.SetMarking( false );
+
+if (!aMultiMark.IsMultiMarked())
+{
+// simple range case - simplify calculation
+ScRange aSimpleRange;
+aMultiMark.GetMarkArea( aSimpleRange );
+
+aMultiMark.MarkToMulti();
+if ( !aMultiMark.IsMultiMarked() )
+return;
+
+SCCOL nX1 = aSimpleRange.aStart.Col();
+SCROW nY1 = aSimpleRange.aStart.Row();
+SCCOL nX2 = aSimpleRange.aEnd.Col();
+SCROW nY2 = aSimpleRange.aEnd.Row();
+
+PutInOrder( nX1, nX2 );
+PutInOrder( nY1, nY2 );
+
+Point aScrStartPos = bInPrintTwips ? pViewData->GetPrintTwipsPos(nX1, 
nY1) :
+pViewData->GetScrPos(nX1, nY1, eWhich);
+
+long nStartX = aScrStartPos.X();
+long nStartY = aScrStartPos.Y();
+
+Point aScrEndPos = bInPrintTwips ? pViewData->GetPrintTwipsPos(nX2, 
nY2) :
+pViewData->GetScrPos(nX2, nY2, eWhich);
+
+long nWidthTwips = pDoc->GetColWidth(nX2, nTab);
+const long nWidth = bInPrintTwips ?
+nWidthTwips : ScViewData::ToPixel(nWidthTwips, nPPTX);
+long nEndX = aScrEndPos.X() + (nWidth - 1) * nLayoutSign;
+
+sal_uInt16 nHeightTwips = pDoc->GetRowHeight( nY2, nTab );
+const long nHeight = bInPrintTwips ?
+nHeightTwips : ScViewData::ToPixel(nHeightTwips, nPPTY);
+long nEndY = aScrEndPos.Y() + nHeight - 1;
+
+ScInvertMerger aInvert(  );
+aInvert.AddRect( tools::Rectangle( nStartX, nStartY, nEndX, nEndY ) );
+
+return;
+}
+
+aMultiMark.MarkToMulti();
 if ( !aMultiMark.IsMultiMarked() )
 return;
 ScRange aMultiRange;
@@ -2141,9 +2187,6 @@ void ScGridWindow::GetRectsAnyFor(const ScMarkData 
,
 nY2 = nMaxTiledRow;
 }
 
-double nPPTX = pViewData->GetPPTX();
-double nPPTY = pViewData->GetPPTY();
-
 ScInvertMerger aInvert(  );
 
 Point aScrPos = bInPrintTwips ? pViewData->GetPrintTwipsPos(nX1, nY1) :


[Libreoffice-bugs] [Bug 144005] crash when moving a media shape in debug build

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144005

Julien Nabet  changed:

   What|Removed |Added

 OS|Windows (All)   |All
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
   Keywords||haveBacktrace

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

[Libreoffice-bugs] [Bug 144005] crash when moving a media shape in debug build

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144005

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #2 from Julien Nabet  ---
Created attachment 174480
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174480=edit
bt with debug symbols

On pc Debian x86-64 with master sources updated today, I could reproduce this
and had an assertion.

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

[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.4' - download.lst external/curl RepositoryExternal.mk

2021-08-22 Thread Michael Stahl (via logerrit)
Rebased ref, commits from common ancestor:
commit 879559aa8d97674776ed0a0cb39aede55853dacd
Author: Michael Stahl 
AuthorDate: Wed Jul 21 11:57:51 2021 +0200
Commit: Andras Timar 
CommitDate: Sun Aug 22 22:36:11 2021 +0200

curl: upgrade to release 7.78.0

* Fixes CVE-2020-8284 CVE-2021-22924
* Also fixes these which don't look relevant to LO:
  CVE-2020-8231
  CVE-2020-8285 CVE-2020-8286
  CVE-2021-22876 CVE-2021-22890
  CVE-2021-22897 CVE-2021-22898 CVE-2021-22901
  CVE-2021-22922 CVE-2021-22923 CVE-2021-22925 CVE-2021-22926
* disable some new protocols and dependencies
* remove curl-ios.patch.1 as the code no longer exists upstream

Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119313
Tested-by: Jenkins
Reviewed-by: Michael Stahl 
(cherry picked from commit 946f457c885bd10ff1a7281c351f3981f035f5a7)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119262
Reviewed-by: Thorsten Behrens 

Change-Id: I12d5f87f4d503a5f9859226a05cfe2a07e46d993

diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk
index a937feead3cb..96f0106f0293 100644
--- a/RepositoryExternal.mk
+++ b/RepositoryExternal.mk
@@ -2745,7 +2745,7 @@ $(call gb_LinkTarget_set_include,$(1),\
 
 ifeq ($(COM),MSC)
 $(call gb_LinkTarget_add_libs,$(1),\
-   $(call gb_UnpackedTarball_get_dir,curl)/builds/libcurl-vc12-$(if 
$(filter X86_64,$(CPUNAME)),x64,x86)-$(if 
$(MSVC_USE_DEBUG_RUNTIME),debug,release)-dll-ipv6-sspi-winssl/lib/libcurl$(if 
$(MSVC_USE_DEBUG_RUNTIME),_debug).lib \
+   $(call gb_UnpackedTarball_get_dir,curl)/builds/libcurl-vc12-$(if 
$(filter X86_64,$(CPUNAME)),x64,x86)-$(if 
$(MSVC_USE_DEBUG_RUNTIME),debug,release)-dll-ipv6-sspi-schannel/lib/libcurl$(if 
$(MSVC_USE_DEBUG_RUNTIME),_debug).lib \
 )
 else
 $(call gb_LinkTarget_add_libs,$(1),\
diff --git a/download.lst b/download.lst
index ffef9c196af1..d701e8bd2d8f 100644
--- a/download.lst
+++ b/download.lst
@@ -29,8 +29,8 @@ export CPPUNIT_SHA256SUM := 
3d569869d27b48860210c758c4f313082103a5e58219a7669b52
 export CPPUNIT_TARBALL := cppunit-1.14.0.tar.gz
 export CT2N_SHA256SUM := 
71b238efd2734be9800af07566daea8d6685aeed28db5eb5fa0e6453f4d85de3
 export CT2N_TARBALL := 
1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt
-export CURL_SHA256SUM := 
cdf18794393d8bead915312708a9e5d819c6e9919de14b20d5c8e7987abd9772
-export CURL_TARBALL := curl-7.71.0.tar.xz
+export CURL_SHA256SUM := 
be42766d5664a739c3974ee3dfbbcbe978a4ccb1fe628bb1d9b59ac79e445fb5
+export CURL_TARBALL := curl-7.78.0.tar.xz
 export EBOOK_SHA256SUM := 
7e8d8ff34f27831aca3bc6f9cc532c2f90d2057c778963b884ff3d1e34dfe1f9
 export EBOOK_TARBALL := libe-book-0.1.3.tar.xz
 export EPOXY_SHA256SUM := 
002958c5528321edd53440235d3c44e71b5b1e09b9177e8daf677450b6c4433d
diff --git a/external/curl/ExternalPackage_curl.mk 
b/external/curl/ExternalPackage_curl.mk
index 8da569e3e0cf..1fb360c85ca9 100644
--- a/external/curl/ExternalPackage_curl.mk
+++ b/external/curl/ExternalPackage_curl.mk
@@ -14,13 +14,13 @@ $(eval $(call 
gb_ExternalPackage_use_external_project,curl,curl))
 ifneq ($(DISABLE_DYNLOADING),TRUE)
 
 ifeq ($(COM),MSC)
-$(eval $(call gb_ExternalPackage_add_file,curl,$(LIBO_LIB_FOLDER)/libcurl$(if 
$(MSVC_USE_DEBUG_RUNTIME),_debug).dll,builds/libcurl-vc12-$(if $(filter 
X86_64,$(CPUNAME)),x64,x86)-$(if 
$(MSVC_USE_DEBUG_RUNTIME),debug,release)-dll-ipv6-sspi-winssl/bin/libcurl$(if 
$(MSVC_USE_DEBUG_RUNTIME),_debug).dll))
+$(eval $(call gb_ExternalPackage_add_file,curl,$(LIBO_LIB_FOLDER)/libcurl$(if 
$(MSVC_USE_DEBUG_RUNTIME),_debug).dll,builds/libcurl-vc12-$(if $(filter 
X86_64,$(CPUNAME)),x64,x86)-$(if 
$(MSVC_USE_DEBUG_RUNTIME),debug,release)-dll-ipv6-sspi-schannel/bin/libcurl$(if 
$(MSVC_USE_DEBUG_RUNTIME),_debug).dll))
 else ifeq ($(OS),MACOSX)
 $(eval $(call 
gb_ExternalPackage_add_file,curl,$(LIBO_LIB_FOLDER)/libcurl.4.dylib,lib/.libs/libcurl.4.dylib))
 else ifeq ($(OS),AIX)
 $(eval $(call 
gb_ExternalPackage_add_file,curl,$(LIBO_LIB_FOLDER)/libcurl.so,lib/.libs/libcurl.so.4))
 else
-$(eval $(call 
gb_ExternalPackage_add_file,curl,$(LIBO_LIB_FOLDER)/libcurl.so.4,lib/.libs/libcurl.so.4.6.0))
+$(eval $(call 
gb_ExternalPackage_add_file,curl,$(LIBO_LIB_FOLDER)/libcurl.so.4,lib/.libs/libcurl.so.4.7.0))
 endif
 
 endif # $(DISABLE_DYNLOADING)
diff --git a/external/curl/ExternalProject_curl.mk 
b/external/curl/ExternalProject_curl.mk
index 5cbedac82d1a..06cc96c2e8de 100644
--- a/external/curl/ExternalProject_curl.mk
+++ b/external/curl/ExternalProject_curl.mk
@@ -35,13 +35,13 @@ ifeq ($(SYSTEM_NSS),)
 curl_CPPFLAGS += -I$(call gb_UnpackedTarball_get_dir,nss)/dist/public/nss
 endif
 
-# use --with-darwinssl on macOS >10.5 and iOS to get a native UI for SSL certs 
for CMIS usage
+# use --with-secure-transport on macOS >10.5 and iOS to get a native UI for 
SSL certs for CMIS usage
 # use --with-nss only on platforms other than macOS and iOS
 $(call gb_ExternalProject_get_state_target,curl,build):
$(call 

[Libreoffice-bugs] [Bug 143971] LibreOffice 7.2 introduced addition popup for read only file that shouldn't be showing

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143971

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 143971] LibreOffice 7.2 introduced addition popup for read only file that shouldn't be showing

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143971

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

   Keywords||bibisected, bisected
 CC||79045_79...@mail.ru
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #1 from Roman Kuznetsov <79045_79...@mail.ru> ---
I confirm the problem in 7.3

Ok Mike, if you think it's a bug, then I bisected it and it was your own commit

95eb088802562b75f8b299908160145c7e88d763

https://gerrit.libreoffice.org/c/core/+/111654

https://git.libreoffice.org/core/commit/95eb088802562b75f8b299908160145c7e88d763

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

[Libreoffice-bugs] [Bug 143750] Missing or extra parentheses and/or quotation marks function no longer works in version 7.2.0.2.

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143750

--- Comment #3 from Eek! A Bug. Kill it!  ---
Interesting oddity concerning the missing/unpaired parentheses issue. With only
one unpaired parentheses in a line of text (see ordered number list item 1) and
2) below), the grammatical checking works. However, when an unpaired
parentheses is combined with one or more paired parentheses (see ordered number
list item 3)), it does NOT work.

Example:

1) to draw a rectangle, first make a square shape, then press the shift key and
drag a side of the square to make a rectangle

2) double click a selection to be able to use it repeatedly without having to
re-select it each time

3) to make copies of an object, select it, R-click, Copy, Paste (will paste
over top of original, so then move to new location)

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

[Libreoffice-bugs] [Bug 144004] Having problems printing a LibreOffice Calc document in Landscape.

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144004

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---
Have you set up 'Landscape' in the page style, Menu/Format/Page/Page?

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

[Libreoffice-bugs] [Bug 143980] Add numpy to LibreOffice\program\python

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143980

--- Comment #2 from Andreas Heinisch  ---
Imho numpy is a very popular library for python, but I don't know if it
requires something special in order to work with the uno arrays. We could add
the library and make some experiments.

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

[Libreoffice-bugs] [Bug 143977] In “View” menus and "Tabbed" toolbars, be consistent about “hide / show”

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143977

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 OS|Linux (All) |All
Version|unspecified |7.1.5.2 release
  Component|Writer  |UI
 CC||79045_79...@mail.ru,
   ||heiko.tietze@documentfounda
   ||tion.org

--- Comment #1 from Roman Kuznetsov <79045_79...@mail.ru> ---
I think it was made advisedly

Heiko, do you remember something related?

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

[Libreoffice-bugs] [Bug 143990] Multilevel outline numbers not showing

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143990

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

   Keywords||bibisected, bisected,
   ||regression
 Status|UNCONFIRMED |NEW
 CC||79045_79...@mail.ru,
   ||t...@libreoffice.org,
   ||vasily.melenc...@cib.de
 Ever confirmed|0   |1

--- Comment #3 from Roman Kuznetsov <79045_79...@mail.ru> ---
confirm in

Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 4677345e3695bac158bb04048b4d5c608ed764b4
CPU threads: 4; OS: Windows 6.1 Service Pack 1 Build 7601; UI render:
Skia/Raster; VCL: win
Locale: ru-RU (ru_RU); UI: en-US
Calc: CL

but not in 7.1 => regression

I bibisected it and got a sha for a bad commit:

sha is 9987b518fca1476bd0ce8c86bcf6ac7c81f7b580

https://gerrit.libreoffice.org/c/core/+/118040

https://git.libreoffice.org/core/commit/9987b518fca1476bd0ce8c86bcf6ac7c81f7b580

Added to CC: Thorsten Behrens and Vasily Melenchuk

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

[Libreoffice-bugs] [Bug 127593] [META] Python Macro bugs

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127593

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||143980


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=143980
[Bug 143980] Add numpy to LibreOffice\program\python
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 143980] Add numpy to LibreOffice\program\python

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143980

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 CC||79045_79...@mail.ru,
   ||andreas.heini...@yahoo.de,
   ||libreoffici...@sfr.fr
 Blocks||127593

--- Comment #1 from Roman Kuznetsov <79045_79...@mail.ru> ---
Andreas, Alain, what do you think?


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 88278] [META] SVG import image filter (all modules)

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88278

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||143991


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=143991
[Bug 143991] The imported text in the SVG image is partially invisible.
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 143991] The imported text in the SVG image is partially invisible.

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143991

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
 Blocks||88278
 CC||79045_79...@mail.ru

--- Comment #1 from Roman Kuznetsov <79045_79...@mail.ru> ---
Confirm in

Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 4677345e3695bac158bb04048b4d5c608ed764b4
CPU threads: 4; OS: Windows 6.1 Service Pack 1 Build 7601; UI render: default;
VCL: win
Locale: ru-RU (ru_RU); UI: en-US
Calc: CL

ps: I think Inkscape can export images to PNG too


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=88278
[Bug 88278] [META] SVG import image filter (all modules)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 104185] Better Autoinput for functions (or different default than ENTER)

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104185

--- Comment #9 from Joshua Coppersmith  ---
Some alternatives:

1) Change auto entry to use tab, the default in almost every other system out
there from Eclipse clear down to MS Hotmail. Obviously, my choice and Mieszko's
but another idea is...

2) Don't kick in auto entry after backspace...per other suggestions already
given.

3) Don't kick in auto entry until at least two (even three) letters have been
typed. That would at least avoid the mess for simple column reference
situations in the vast majority of cases.

4) Put "Tab to ignore" in bold at the end of the auto entry popup text tip
while not changing the behavior at all.

I think this is more than a preference question. If you, for example, have 
=($A:$A) in column C then go to change that to 
=($B:$B) you get into a morass of =($B:$B()), etc., when doing the obvious and
pressing Enter.

Here is the thing: Anyone wanting auto entry will be able to see clearly if
that function has popped up, and will probably have to keep typing awhile
before the drill down matches what they want, anyway. Meanwhile, the person
expecting enter to do as it says and enter the edited value into the cell is
left trapped, having to re-edit, and having to click into the end of the line
or having to figure out to use tab to do what enter says right on the key,
"Enter".

The popup tip for the auto entry feature could have a bold "then Tab" at the
end of it if switched to tab. MS Hotmail does something like this. Or...if the
behavior isn't changed, what about putting "Tab to ingore" at the end of the
tip?

In any case, most intense users of LibreOffice Calc probably have the basic
familiarity with tab for autocomplete, not enter. Tab for autocomplete is very
mainstream.

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

[Libreoffice-bugs] [Bug 144005] crash when moving a media shape in debug build

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144005

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

Summary|crash when moving a media   |crash when moving a media
   |shape   |shape in debug build
 CC||79045_79...@mail.ru

--- Comment #1 from Roman Kuznetsov <79045_79...@mail.ru> ---
No crash in daily build

Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 4677345e3695bac158bb04048b4d5c608ed764b4
CPU threads: 4; OS: Windows 6.1 Service Pack 1 Build 7601; UI render: default;
VCL: win
Locale: ru-RU (ru_RU); UI: en-US
Calc: CL

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

[Libreoffice-bugs] [Bug 144006] Shortcut for Formula object insertion

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144006

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 Status|UNCONFIRMED |RESOLVED

--- Comment #2 from Roman Kuznetsov <79045_79...@mail.ru> ---
There is the same shortcut in 7.2

But there is no predefined shortcut for it in 7.1. But I see the Formula item
in Command list in the Customize dialog anyway. Just move the mouse cursor on
Formula item and look at tooltip. You should see the same UNO as on my attach.

Close as WFM

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

[Libreoffice-bugs] [Bug 144006] Shortcut for Formula object insertion

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144006

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 CC||79045_79...@mail.ru

--- Comment #1 from Roman Kuznetsov <79045_79...@mail.ru> ---
Created attachment 174479
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174479=edit
Screenshot with InsertObjectStarMath in Customize dialog

in 7.3 I see Ctrl+Alt+= shortcut inserts a Math object into Writer document and
I see the UNO in Customize dialog

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

[Libreoffice-commits] core.git: configure.ac distro-configs/LibreOfficeOssFuzz.conf Makefile.in

2021-08-22 Thread Caolán McNamara (via logerrit)
 Makefile.in|2 +-
 configure.ac   |9 -
 distro-configs/LibreOfficeOssFuzz.conf |9 -
 3 files changed, 9 insertions(+), 11 deletions(-)

New commits:
commit 4250958a492b300a52a83e68dd599f9c36c5086e
Author: Caolán McNamara 
AuthorDate: Fri Aug 20 14:31:36 2021 +0100
Commit: Caolán McNamara 
CommitDate: Sun Aug 22 21:53:12 2021 +0200

ofz: prep for allowing oss-fuzz msan

dependencies need to be built with the msan flags so undo the
--with-system .a usage now that trying to squeeze into the 12 hour build
window isn't critical because the afl 6-8 hour build+check is disabled

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

diff --git a/Makefile.in b/Makefile.in
index 30607af43c89..e7f614698515 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -492,7 +492,7 @@ $(foreach ide,\
 eclipsecdt,\
 $(eval $(call gb_Top_GbuildToIdeIntegration,$(ide
 
-fuzzers: StaticLibrary_dtoa Library_sal Library_salhelper Library_reg 
Library_store Library_unoidl codemaker Library_cppu Library_i18nlangtag 
Library_cppuhelper Library_comphelper StaticLibrary_ulingu 
StaticLibrary_findsofficepath Library_tl Library_basegfx Library_canvastools 
Library_cppcanvas Library_dbtools Library_deploymentmisc Library_editeng 
Library_i18nutil Library_localebe1 Library_sax Library_sofficeapp 
Library_ucbhelper Rdb_services udkapi offapi Library_icg Library_reflection 
Library_invocadapt Library_bootstrap Library_introspection Library_stocservices 
Library_xmlreader Library_gcc3_uno instsetoo_native StaticLibrary_boost_locale 
StaticLibrary_fuzzerstubs StaticLibrary_fuzzer_core StaticLibrary_fuzzer_calc 
StaticLibrary_fuzzer_draw StaticLibrary_fuzzer_writer StaticLibrary_fuzzer_math 
Library_forui Library_binaryurp Library_io Library_invocation 
Library_namingservice Library_proxyfac Library_uuresolver Module_ure 
Library_wpftwriter Library_sb Executable_pptfuzzer Execu
 table_cgmfuzzer Executable_ww2fuzzer Executable_ww6fuzzer Executable_ww8fuzzer 
Executable_qpwfuzzer Executable_slkfuzzer Executable_fodtfuzzer 
Executable_fodsfuzzer Executable_fodpfuzzer Executable_xlsfuzzer 
Executable_scrtffuzzer Executable_wksfuzzer Executable_diffuzzer 
Executable_docxfuzzer Executable_xlsxfuzzer Executable_pptxfuzzer 
Executable_htmlfuzzer Executable_rtffuzzer Executable_mmlfuzzer 
Executable_mtpfuzzer Executable_olefuzzer Executable_lwpfuzzer 
Executable_hwpfuzzer Executable_wmffuzzer Executable_dxffuzzer 
Executable_sftfuzzer Executable_svmfuzzer Executable_tiffuzzer 
Executable_epsfuzzer Executable_jpgfuzzer Executable_metfuzzer 
Executable_bmpfuzzer Executable_giffuzzer Executable_pngfuzzer 
Executable_602fuzzer Executable_tgafuzzer Executable_pcxfuzzer 
Executable_psdfuzzer Executable_ppmfuzzer Executable_pcdfuzzer 
Executable_rasfuzzer Executable_pctfuzzer Executable_xpmfuzzer 
Executable_xbmfuzzer
+fuzzers: StaticLibrary_dtoa StaticLibrary_zlib Library_sal Library_salhelper 
Library_reg Library_store Library_unoidl codemaker Library_cppu 
Library_i18nlangtag Library_cppuhelper Library_comphelper StaticLibrary_ulingu 
StaticLibrary_findsofficepath Library_tl Library_basegfx Library_canvastools 
Library_cppcanvas Library_dbtools Library_deploymentmisc Library_editeng 
Library_i18nutil Library_localebe1 Library_sax Library_sofficeapp 
Library_ucbhelper Rdb_services udkapi offapi Library_icg Library_reflection 
Library_invocadapt Library_bootstrap Library_introspection Library_stocservices 
Library_xmlreader Library_gcc3_uno instsetoo_native StaticLibrary_boost_locale 
StaticLibrary_fuzzerstubs StaticLibrary_fuzzer_core StaticLibrary_fuzzer_calc 
StaticLibrary_fuzzer_draw StaticLibrary_fuzzer_writer StaticLibrary_fuzzer_math 
Library_forui Library_binaryurp Library_io Library_invocation 
Library_namingservice Library_proxyfac Library_uuresolver Module_ure 
Library_wpftwriter Library_sb Executa
 ble_pptfuzzer Executable_cgmfuzzer Executable_ww2fuzzer Executable_ww6fuzzer 
Executable_ww8fuzzer Executable_qpwfuzzer Executable_slkfuzzer 
Executable_fodtfuzzer Executable_fodsfuzzer Executable_fodpfuzzer 
Executable_xlsfuzzer Executable_scrtffuzzer Executable_wksfuzzer 
Executable_diffuzzer Executable_docxfuzzer Executable_xlsxfuzzer 
Executable_pptxfuzzer Executable_htmlfuzzer Executable_rtffuzzer 
Executable_mmlfuzzer Executable_mtpfuzzer Executable_olefuzzer 
Executable_lwpfuzzer Executable_hwpfuzzer Executable_wmffuzzer 
Executable_dxffuzzer Executable_sftfuzzer Executable_svmfuzzer 
Executable_tiffuzzer Executable_epsfuzzer Executable_jpgfuzzer 
Executable_metfuzzer Executable_bmpfuzzer Executable_giffuzzer 
Executable_pngfuzzer Executable_602fuzzer Executable_tgafuzzer 
Executable_pcxfuzzer Executable_psdfuzzer Executable_ppmfuzzer 
Executable_pcdfuzzer Executable_rasfuzzer Executable_pctfuzzer 

[Libreoffice-bugs] [Bug 143090] Add custom path to paths options gives open dialog instead of select folder (Windows-only)

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143090

Caolán McNamara  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
   Keywords|bibisectRequest |
 Resolution|--- |DUPLICATE

--- Comment #3 from Caolán McNamara  ---
fix https://gerrit.libreoffice.org/c/core/+/120853 makes this work too

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

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

[Libreoffice-bugs] [Bug 143090] Add custom path to paths options gives open dialog instead of select folder (Windows-only)

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143090

Regina Henschel  changed:

   What|Removed |Added

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

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

Re: freetype2 2.11.0-1.1 Update Breaks on OpenSUSE Tumbleweed

2021-08-22 Thread Luke Benes
This also breaks the built on Gentoo and has been reported there too(see 
below). Should we patch our tarball or just update it? 

Luboš,
You've been the most active maintainer. Any thoughts? 

-Luke

From: bugzilla_nore...@suse.com 
Sent: Sunday, August 22, 2021 2:06 PM
Subject: [Bug 1189444] freetype2 2.11.0-1.1 Update Breaks LibreOffice Build

Comment#2  on bug 
1189444 from Markéta Machová

I am aware of this. See https://bugs.gentoo.org/803467 for more info, newer
skia needs to be bundled with LO (you can find some patches there). But...
well, I can take skia tarball, patch it and just hardcode it there (without the
download link), but I find it a bit dirty.


[Libreoffice-bugs] [Bug 144009] LibreOffice 7.2, Impress, Edit Styles and Formating, Notes, Filesave Doesn't not save

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144009

--- Comment #1 from Mike Reardon  ---
Created attachment 174478
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174478=edit
This is the original file in question prior to changes

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

[Libreoffice-bugs] [Bug 144009] New: LibreOffice 7.2, Impress, Edit Styles and Formating, Notes, Filesave Doesn't not save

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144009

Bug ID: 144009
   Summary: LibreOffice 7.2, Impress, Edit Styles and Formating,
Notes, Filesave Doesn't not save
   Product: LibreOffice
   Version: 7.2.0.4 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mike.pc.rear...@gmail.com

Description:
Hi

I installed 7.2 version on Linux lite os on laptop with 4gb RAM and 128 GB SSD

Received a MS PPT file.  Began modifications.  Upon adding notes, changed font,
font size and default font from Arial 20pt to Liberation Sans 16pt.  And
changed indent to zero.  Saved.  Re-open the next day, style remains default
from original MS PPT.  Changed in Notes Master.  Managed styles.  Updated. 
Saved

But nothing sticks when I reopen the file.

Workaround is to remake the changes prior to presentation.  What a pain..

Steps to Reproduce:
1.In one slide, change note style and formatting.  Save.  Close.  Open and File
save is not saved for note.
2.In impress, go to format style, notes, make changes, save.  Close.  Open and
file is not saved for style
3 In impress, to to master notes, make changes, save.  Close.  Open and
filesave is not saved

for font (from Arial to Liberation Sans); font size (20 to 16) and indent down
to zeo.
3.

Actual Results:
It works when in the file.  Upon reopening it is not saved.

Expected Results:
That upon reopening changes to style and formating remain.


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
This is a completely new install

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

[Libreoffice-bugs] [Bug 143993] FilePicker unexpectedly opens instead of FolderPicker

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143993

Caolán McNamara  changed:

   What|Removed |Added

 Status|UNCONFIRMED |ASSIGNED
   Assignee|libreoffice-b...@lists.free |caol...@redhat.com
   |desktop.org |
 Ever confirmed|0   |1

--- Comment #3 from Caolán McNamara  ---
looks like the vista file/folder picker impl will default back to "file open"
if initialization is explicitly called on the folder service

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

[Libreoffice-bugs] [Bug 113083] [META] New RTF import filter regressions in LO 3.5+

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113083

Aron Budea  changed:

   What|Removed |Added

 Depends on||104390


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104390
[Bug 104390] FILEOPEN RTF Courier New erroneously replaced with fallback font,
when file does not contain \pard\plain
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 81234] [META] RTF filter issues

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81234

Aron Budea  changed:

   What|Removed |Added

 Depends on|104390  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104390
[Bug 104390] FILEOPEN RTF Courier New erroneously replaced with fallback font,
when file does not contain \pard\plain
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 104390] FILEOPEN RTF Courier New erroneously replaced with fallback font, when file does not contain \pard\plain

2021-08-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104390

Aron Budea  changed:

   What|Removed |Added

   Keywords||preBibisect, regression
 Blocks|81234   |113083
Version|5.2.3.3 release |3.5.0 release

--- Comment #15 from Aron Budea  ---
This was fine in LO 3.4.0, and got buggy in 3.5.0, thus it is probably a
regression related to the new RTF import code. Already buggy in oldest of
bibisect-43all -> preBibisect.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=81234
[Bug 81234] [META] RTF filter issues
https://bugs.documentfoundation.org/show_bug.cgi?id=113083
[Bug 113083] [META] New RTF import filter regressions in LO 3.5+
-- 
You are receiving this mail because:
You are the assignee for the bug.

  1   2   >