[Libreoffice-bugs] [Bug 145361] Cannot convert to XHTML document containing list with line break

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145361

Noel Grandin  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

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

[Libreoffice-commits] core.git: Branch 'libreoffice-7-2' - i18npool/source

2021-10-29 Thread Luboš Luňák (via logerrit)
 i18npool/source/breakiterator/xdictionary.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 1924289f1a1f0b41abdef6bab7215b89dc407d84
Author: Luboš Luňák 
AuthorDate: Fri Oct 29 14:20:57 2021 +0200
Commit: Noel Grandin 
CommitDate: Sat Oct 30 07:47:58 2021 +0200

fix comparison when searching cache

This made the cache always fail and re-cache, making CJK text layout
slower over time. A mistake from ef513fd4b049b214a03fbe6e that
converted !strcmp() to != instead of ==.

Change-Id: Ib70579cd36d7b1df062e4d067e03f5c65e34b142
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124432
Reviewed-by: Noel Grandin 
Reviewed-by: Luboš Luňák 
Tested-by: Luboš Luňák 
(cherry picked from commit 5b38b5744af1e896892df708c16b83e1b551d2c7)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124205
Tested-by: Jenkins

diff --git a/i18npool/source/breakiterator/xdictionary.cxx 
b/i18npool/source/breakiterator/xdictionary.cxx
index 25dc8bb0ee9b..298a1c0665c9 100644
--- a/i18npool/source/breakiterator/xdictionary.cxx
+++ b/i18npool/source/breakiterator/xdictionary.cxx
@@ -152,7 +152,7 @@ void xdictionary::initDictionaryData(const char *pLang)
 osl::MutexGuard aGuard( osl::Mutex::getGlobalMutex() );
 for(const datacache & i : aLoadedCache)
 {
-if( i.maLang != pLang )
+if( i.maLang == pLang )
 {
 data = i.maData;
 return;


[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - i18npool/source

2021-10-29 Thread Luboš Luňák (via logerrit)
 i18npool/source/breakiterator/xdictionary.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit a94b58277c7aeaa83ce14347cd0b8f7137969d03
Author: Luboš Luňák 
AuthorDate: Fri Oct 29 14:20:57 2021 +0200
Commit: Noel Grandin 
CommitDate: Sat Oct 30 07:48:04 2021 +0200

fix comparison when searching cache

This made the cache always fail and re-cache, making CJK text layout
slower over time. A mistake from ef513fd4b049b214a03fbe6e that
converted !strcmp() to != instead of ==.

Change-Id: Ib70579cd36d7b1df062e4d067e03f5c65e34b142
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124432
Reviewed-by: Noel Grandin 
Reviewed-by: Luboš Luňák 
Tested-by: Luboš Luňák 
(cherry picked from commit 5b38b5744af1e896892df708c16b83e1b551d2c7)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124206
Tested-by: Jenkins

diff --git a/i18npool/source/breakiterator/xdictionary.cxx 
b/i18npool/source/breakiterator/xdictionary.cxx
index 947a23c5073b..6b57433370c7 100644
--- a/i18npool/source/breakiterator/xdictionary.cxx
+++ b/i18npool/source/breakiterator/xdictionary.cxx
@@ -152,7 +152,7 @@ void xdictionary::initDictionaryData(const char *pLang)
 osl::MutexGuard aGuard( osl::Mutex::getGlobalMutex() );
 for(const datacache & i : aLoadedCache)
 {
-if( i.maLang != pLang )
+if( i.maLang == pLang )
 {
 data = i.maData;
 return;


[Libreoffice-bugs] [Bug 145361] Cannot convert to XHTML document containing list with line break

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145361

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

https://git.libreoffice.org/core/commit/6c747ccf6cbfe0dc5d591f8ce68a1ca6c63cde53

tdf#145361 fix XSLT for older libxslt

It will be available in 7.3.0.

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

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

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

[Libreoffice-bugs] [Bug 145361] Cannot convert to XHTML document containing list with line break

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145361

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.3.0

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

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

2021-10-29 Thread Noel Grandin (via logerrit)
 filter/source/xslt/odf2xhtml/export/common/body.xsl |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 6c747ccf6cbfe0dc5d591f8ce68a1ca6c63cde53
Author: Noel Grandin 
AuthorDate: Fri Oct 29 14:31:19 2021 +0200
Commit: Noel Grandin 
CommitDate: Sat Oct 30 07:45:21 2021 +0200

tdf#145361 fix XSLT for older libxslt

regression from
commit 3eb870f0843a00042ca7dd89837fbe0cc6f918c2
Author: Noel 
Date:   Fri Feb 26 12:45:19 2021 +0200
fix xhtml list export in other locales
where I used 'replace' which is not available on older libxslt, so
switch to 'translate' which works just as well here, and is available

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

diff --git a/filter/source/xslt/odf2xhtml/export/common/body.xsl 
b/filter/source/xslt/odf2xhtml/export/common/body.xsl
index 9b10e56187bf..bcad3abd9ab3 100644
--- a/filter/source/xslt/odf2xhtml/export/common/body.xsl
+++ b/filter/source/xslt/odf2xhtml/export/common/body.xsl
@@ -106,7 +106,7 @@
 
 
 
-margin-left:cm
+margin-left:cm
 
 
 


[Libreoffice-bugs] [Bug 145124] EDITING Moving down a numbered paragraph with change tracking and rejecting all gets duplicated

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145124

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 145159] Text unreadable in Calc's dark theme in page style header text editor

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145159

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 145154] LibreOffice Impress 7.2.2.2 x64 - Rotacionar/Girar vídeo em apresentação

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145154

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 145153] Unresponsive expand/collapse group button on Calc (the ‘+’ button)

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145153

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 145151] Apply numbering in a selected table cell leaks to another table cell (when selecting "backwards")

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145151

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 145128] Setting the "PerformFileCheckExt" setting via the Windows Registry does not work correctly: Final is not applied

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145128

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 141395] save

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141395

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 141395] save

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141395

--- Comment #3 from QA Administrators  ---
Dear gui.ol.martins,

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 141218] Area Axial Shade non recognized 8first time)

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141218

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 141218] Area Axial Shade non recognized 8first time)

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141218

--- Comment #3 from QA Administrators  ---
Dear paolo.azzolin,

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 140802] When viewing an entry in a simple text cell a funny code appears at the end of the entry e.g. _x005F_x000D_

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140802

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 140802] When viewing an entry in a simple text cell a funny code appears at the end of the entry e.g. _x005F_x000D_

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140802

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

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 136616] Insertion of improper spaces in texts of Ajuda para entrada de dados in Validação

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136616

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 136616] Insertion of improper spaces in texts of Ajuda para entrada de dados in Validação

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136616

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

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 136557] CALC: icons disappeared/corrupted after suspend PC on mouse over

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136557

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 136557] CALC: icons disappeared/corrupted after suspend PC on mouse over

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136557

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

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 141717] Fonts with lots of ligatures display incorrectly at big sizes

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141717

--- Comment #2 from QA Administrators  ---
Dear Katie &,

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 92144] Calc styles cannot have percentage sizes for fonts

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92144

--- Comment #11 from QA Administrators  ---
Dear mahfiaz,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 91993] CPU at 100% when frames need to be moved.

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91993

--- Comment #8 from QA Administrators  ---
Dear Jon,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 90993] EDITING: Objects anchored to frame disappear when frame anchor is changed.

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90993

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 90009] UI: button size inconsistent, the buttons are not the same height in the Chart Wizard and in the options dialog

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90009

--- Comment #12 from QA Administrators  ---
Dear clemty,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 60777] FORMATTING sum of different currencies should not be one of these currencies

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60777

--- Comment #8 from QA Administrators  ---
Dear Lionel Elie Mamane,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 56545] Cannot directly position text cursor onto a blank line in text box

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=56545

--- Comment #11 from QA Administrators  ---
Dear Marcel Samek,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 43219] FILEOPEN: Captions numbers from MSWord .doc not shown (Shown if resaved as DOCX in MSO)

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43219

--- Comment #13 from QA Administrators  ---
Dear Viktor Mileikovskyi,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 128446] iOS: Thin Bullet Points Distorted

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128446

--- Comment #5 from QA Administrators  ---
Dear Andreas Gruhler,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 121021] Mouse cursor changes the appearance to the hand cursor without pressing Ctrl in Draw

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121021

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 120957] Entering negative value to Font Size variable in Edit Styles window, breaks font size values

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120957

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 107840] Above paragraph spacing not affecting first text line in textbox

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107840

--- Comment #15 from QA Administrators  ---
Dear Yousuf Philips (jay) (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://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 145091] FILESAVE DOCX Table change tracking deleted row DOCX export wrong

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145091

Dieter  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|
 CC||dgp-m...@gmx.de

--- Comment #3 from Dieter  ---
I can't confirm it with

Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 273a25c796fca9afa0dfadac57dc3f336831221c
CPU threads: 4; OS: Windows 10.0 Build 19043; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: de-DE
Calc: CL

Is it correct, that source file is already a docx-file?

BTW: I also don't understand, why it blocks meta-bug "Track-Changes-Lists"

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

[Libreoffice-bugs] [Bug 145393] New: Calc becomes unresponsive after a search, turning off "show this dialog" and doing a second search

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145393

Bug ID: 145393
   Summary: Calc becomes unresponsive after a search, turning off
"show this dialog" and doing a second search
   Product: LibreOffice
   Version: 7.3.0.0 alpha0+ Master
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: fr...@fontein.co.nz

Description:
Spreadsheet with lotto results. 'Find' a number e.g. 28. All cells with 28 are
shown as well as a 'Search results' dialog. Untick 'Show this Dialog' and close
the dialog. Back into the 'Find' box, enter a different number and click 'Find
All'. Calc now hangs and needs to be closed (Force Quit). It is repeatable.

Version: 6.4.7.2
Build ID: 1:6.4.7-0ubuntu0.20.04.1
CPU threads: 4; OS: Linux 5.4; UI render: default; VCL: gtk3; 
Locale: en-NZ (en_NZ.UTF-8); UI-Language: en-US
Calc: threaded 

Steps to Reproduce:
1. search for cell content
2. untick dialog for show this dialog
3. search again

Actual Results:
hanging

Expected Results:
Unresponsive


Reproducible: Always


User Profile Reset: Yes



Additional Info:
display new highlighted cells for search results
also happens in safe mode
OpenGL:
OpenGL vendor string: Intel
OpenGL renderer string: Mesa Intel(R) HD Graphics 630 (KBL GT2)
OpenGL core profile version string: 4.6 (Core Profile) Mesa 21.0.3
OpenGL core profile shading language version string: 4.60
OpenGL core profile context flags: (none)
OpenGL core profile profile mask: core profile
OpenGL core profile extensions:
OpenGL version string: 4.6 (Compatibility Profile) Mesa 21.0.3
OpenGL shading language version string: 4.60
OpenGL context flags: (none)
OpenGL profile mask: compatibility profile
OpenGL extensions:
OpenGL ES profile version string: OpenGL ES 3.2 Mesa 21.0.3
OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.20
OpenGL ES profile extensions:

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

[Libreoffice-bugs] [Bug 145047] Unchecking "Apply user data" => LO doesn't know if the template has been changed

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145047

Dieter  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||dgp-m...@gmx.de
 Whiteboard| QA:needsComment|
 Status|UNCONFIRMED |NEEDINFO

--- Comment #2 from Dieter  ---
I can't confirm with

Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 273a25c796fca9afa0dfadac57dc3f336831221c
CPU threads: 4; OS: Windows 10.0 Build 19043; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: de-DE
Calc: CL

Could you please try to reproduce it with the latest version of LibreOffice
from https://www.libreoffice.org/download/libreoffice-fresh/ ? To be certain
the reported issue is not related to corruption in the user profile, could you
also please reset your Libreoffice profile
(https://wiki.documentfoundation.org/UserProfile) and re-test?

=> NEEDINFO

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

[Libreoffice-bugs] [Bug 145062] Crash when inserting hidden field over input field

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145062

--- Comment #3 from Dieter  ---
Tested with

Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 273a25c796fca9afa0dfadac57dc3f336831221c
CPU threads: 4; OS: Windows 10.0 Build 19043; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-GB
Calc: CL

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

[Libreoffice-bugs] [Bug 145062] Crash when inserting hidden field over input field

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145062

Dieter  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de
 Whiteboard| QA:needsComment|

--- Comment #2 from Dieter  ---
(In reply to Gabor Kelemen (allotropia) from comment #0)
> 7. Position the cursor before the second field so that the little
> highlight square is on the second field (if the first is highlighted, this
> works)

I can' reproduce, because all options in Insert -> Fields are greyed out
(Expected). It's also not possible to open Filed Dialog with Strg+2.

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

[Libreoffice-bugs] [Bug 145392] New: UI: Scroll wheel in Calc scrolls one line instead of one page in Windows 10

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145392

Bug ID: 145392
   Summary: UI: Scroll wheel in Calc scrolls one line instead of
one page in Windows 10
   Product: LibreOffice
   Version: 7.2.2.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gilward.ku...@gmail.com

Description:
Scroll wheel in Calc scrolls one line instead of one page in Windows 10.

Steps to Reproduce:
1. in Windows 10 mouse settings: choose to scroll one page when you turn the
mouse wheel
2. turn the mouse wheel in a Calc table


Actual Results:
It scrolls one line.

Expected Results:
It should scroll one page.


Reproducible: Always


User Profile Reset: Yes



Additional Info:
There is also another bug:
When you set it to scroll 100 lines, it scrolls fewer lines (the number depends
on the number of visible lines).

Version: 7.2.2.2 (x64) / LibreOffice Community
Build ID: 02b2acce88a210515b4a5bb2e46cbfb63fe97d56
CPU threads: 4; OS: Windows 10.0 Build 19043; UI render: Skia/Raster; VCL: win
Locale: de-AT (de_AT); UI: de-DE
Calc: CL

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

[Libreoffice-bugs] [Bug 145391] Segfault importing Basic macros

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145391

Jim Avera  changed:

   What|Removed |Added

   Keywords||regression

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

[Libreoffice-bugs] [Bug 145391] Segfault importing Basic macros

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145391

Jim Avera  changed:

   What|Removed |Added

Version|7.3.0.0 alpha0+ Master  |6.4.7.2 release

--- Comment #4 from Jim Avera  ---
REGRESSION some time between 4.5.7.2 (which works) and 6.4.0.0.0+ (which
faults)

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

[Libreoffice-bugs] [Bug 145391] Segfault importing Basic macros

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145391

--- Comment #3 from Jim Avera  ---
Created attachment 176015
  --> https://bugs.documentfoundation.org/attachment.cgi?id=176015=edit
AndrewPersonalLibs.odt

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

[Libreoffice-bugs] [Bug 145391] Segfault importing Basic macros

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145391

--- Comment #2 from Jim Avera  ---
Created attachment 176014
  --> https://bugs.documentfoundation.org/attachment.cgi?id=176014=edit
backtrace (local build from git, with symbols)

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

[Libreoffice-bugs] [Bug 145391] Segfault importing Basic macros

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145391

--- Comment #1 from Jim Avera  ---
Created attachment 176013
  --> https://bugs.documentfoundation.org/attachment.cgi?id=176013=edit
backtrace (pre-built executable, no symbols)

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

[Libreoffice-bugs] [Bug 145391] New: Segfault importing Basic macros

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145391

Bug ID: 145391
   Summary: Segfault importing Basic macros
   Product: LibreOffice
   Version: 7.3.0.0 alpha0+ Master
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jim.av...@gmail.com

Description:
In master.  A SIGSEGV abort occurs when importing macros from another document.
 The abort occurs after selecting the document but before anything is
displayed.

The Segfault is in strcmp, called from libgtk3 stuff... ugh.

I'll attach two backtraces, one from the pre-built master build (no symbols),
the other from my locally-built-from-git with symbols:

Here are the juicy bits:

Thread 1 "soffice.bin" received signal SIGSEGV, Segmentation fault.
__strcmp_avx2 () at ../sysdeps/x86_64/multiarch/strcmp-avx2.S:101
101 ../sysdeps/x86_64/multiarch/strcmp-avx2.S: No such file or directory.
#0  __strcmp_avx2 () at ../sysdeps/x86_64/multiarch/strcmp-avx2.S:101
#1  0x7fffe4362369 in (anonymous namespace)::foreach_find(GtkTreeModel*,
GtkTreePath*, GtkTreeIter*, gpointer) (model=0x58e9f9e0,
path=0x58f7b080, iter=0x7fff9cd0, data=0x7fff9d40) at
/home/jima/src/libreoffice/vcl/unx/gtk3/gtkinst.cxx:12691
#2  0x7fffe3d6005a in  () at /lib/x86_64-linux-gnu/libgtk-3.so.0
#3  0x7fffe3d6148a in gtk_tree_model_foreach () at
/lib/x86_64-linux-gnu/libgtk-3.so.0
#4  0x7fffe4369154 in (anonymous
namespace)::GtkInstanceTreeView::find_text(rtl::OUString const&) const
(this=0x5921ba10, rText=...) at
/home/jima/src/libreoffice/vcl/unx/gtk3/gtkinst.cxx:14128
#5  0x7fffd3c7ca25 in basctl::LibPage::InsertLib() (this=0x58b92960) at
/home/jima/src/libreoffice/basctl/source/basicide/moduldl2.cxx:645
#6  0x7fffd3c79465 in basctl::LibPage::ButtonHdl(weld::Button&)
(this=0x58b92960, rButton=...) at
/home/jima/src/libreoffice/basctl/source/basicide/moduldl2.cxx:446
#7  0x7fffd3c790bd in basctl::LibPage::LinkStubButtonHdl(void*,
weld::Button&) (instance=0x58b92960, data=...) at
/home/jima/src/libreoffice/basctl/source/basicide/moduldl2.cxx:422
#8  0x7fffe43b4627 in Link::Call(weld::Button&) const
(this=0x58bdcdf0, data=...) at
/home/jima/src/libreoffice/include/tools/link.hxx:111
#9  0x7fffe43aa6df in weld::Button::signal_clicked() (this=0x58bdcde8)
at /home/jima/src/libreoffice/include/vcl/weld.hxx:1406
#10 0x7fffe4354d66 in (anonymous
namespace)::GtkInstanceButton::signalClicked(GtkButton*, gpointer)
(widget=0x58bdcb30) at
/home/jima/src/libreoffice/vcl/unx/gtk3/gtkinst.cxx:9197


Steps to Reproduce:
1. wget https://www.pitonyak.org/oo.php (or use copy attached to this bug)
2. /path/to/soffice --backtrace --calc

3. Tools->Macros->Organize Macros->Basic
   Select "My Macros" with mouse
   Click "Organizer..."
   Click "Libraries" tab at top
   Click "Import..."
   Select the file AndrewPersonalLibs.odt downloaded above

Actual Results:
SIGSEGV in soffice.bin (see backtrace)


Expected Results:
Not that


Reproducible: Always


User Profile Reset: No



Additional Info:
.

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

[Libreoffice-ux-advise] [Bug 144978] Decimal point - Should not be dependent of language

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144978

--- Comment #12 from S.Zosgornik  ---
(In reply to Mike Kaganski from comment #11)

> Are you talking about the same thing? (I doubt that - or I misunderstand
> someone.)

I merely speak about the input method as the OP reported. Of course the
provided option covers 95+ percent of cases
but take the case an UK citizen wants to write an offering for the European
main land or vise versa. Neither the system defaults
nor LO's locale settings would provide the comma to him.

And as I said, the provided option is non-intuitive while another drop down
menu with

- System Default
- Comma
- Dot

would be self-explaining and optically stay in style with the other elements of
the Language tap.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 144978] Decimal point - Should not be dependent of language

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144978

--- Comment #12 from S.Zosgornik  ---
(In reply to Mike Kaganski from comment #11)

> Are you talking about the same thing? (I doubt that - or I misunderstand
> someone.)

I merely speak about the input method as the OP reported. Of course the
provided option covers 95+ percent of cases
but take the case an UK citizen wants to write an offering for the European
main land or vise versa. Neither the system defaults
nor LO's locale settings would provide the comma to him.

And as I said, the provided option is non-intuitive while another drop down
menu with

- System Default
- Comma
- Dot

would be self-explaining and optically stay in style with the other elements of
the Language tap.

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

[Libreoffice-bugs] [Bug 140321] Fontwork: Change in surface has no effect

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140321

--- Comment #5 from Regina Henschel  ---
ODF 1.3 has an exact definition for "draw:extrusion-metal":
"   •false: the specular color for the shading of an extruded shape is white. 
•true: the specular color for the shading of an extruded shape is gray (red
green and blue values of 200) instead of white and 15% is added to the
specularity." 

https://docs.oasis-open.org/office/OpenDocument/v1.3/os/part3-schema/OpenDocument-v1.3-os-part3-schema.html#attribute-draw_extrusion-metal

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

[Libreoffice-bugs] [Bug 145326] Break link doesn't work with DDE links

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145326

--- Comment #2 from Björn Michaelsen  ---
https://gerrit.libreoffice.org/c/core/+/124455

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

[Libreoffice-bugs] [Bug 145390] Calc - Planilha não está ordenando por data(Date) corretamente

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145390

Jacó da Silva  changed:

   What|Removed |Added

Version|7.2.1.1 rc  |7.2.0.4 release

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

[Libreoffice-bugs] [Bug 145390] Calc - Planilha não está ordenando por data(Date) corretamente

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145390

Jacó da Silva  changed:

   What|Removed |Added

Summary|Calc - Planilha não está|Calc - Planilha não está
   |ordenando por data  |ordenando por data(Date)
   |corretamente|corretamente

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

[Libreoffice-bugs] [Bug 145390] Calc - Planilha não está ordenando por data corretamente

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145390

Jacó da Silva  changed:

   What|Removed |Added

 CC||informatica@bellunoveiculos
   ||.com.br

--- Comment #1 from Jacó da Silva  ---
Created attachment 176012
  --> https://bugs.documentfoundation.org/attachment.cgi?id=176012=edit
Ordenação por data não funciona

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

[Libreoffice-bugs] [Bug 145390] New: Calc - Planilha não está ordenando por data corretamente

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145390

Bug ID: 145390
   Summary: Calc - Planilha não está ordenando por data
corretamente
   Product: LibreOffice
   Version: 7.2.1.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: informat...@bellunoveiculos.com.br

Description:
Algumas planilhas exportadas de ERP não estão obedecendo o comando de ordenação
por data, tentei várias formatações e não funciona de jeito nenhum no libre
office, as datas ficam fora de ordem, quando abre a mesma planilha com o Excel
da Microsoft é possível por em ordem de data de forma correta.

Steps to Reproduce:
1. Planilhas exportadas de ERP
2.
3.

Actual Results:
Planilha não obedece o comando de ordenação por data

Expected Results:
Datas fiquem ordenadas corretamente


Reproducible: Sometimes


User Profile Reset: No



Additional Info:
Obs: Preciso anexar o arquivo.

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

[Libreoffice-commits] core.git: 2 commits - editeng/source embeddedobj/source

2021-10-29 Thread Mike Kaganski (via logerrit)
 editeng/source/accessibility/AccessibleEditableTextPara.cxx |4 
 editeng/source/items/frmitems.cxx   |   34 +--
 editeng/source/items/paraitem.cxx   |   18 -
 editeng/source/items/textitem.cxx   |3 
 editeng/source/misc/hangulhanja.cxx |5 
 embeddedobj/source/commonembedding/embedobj.cxx |4 
 embeddedobj/source/commonembedding/miscobj.cxx  |   46 +---
 embeddedobj/source/commonembedding/persistence.cxx  |  125 
 embeddedobj/source/general/docholder.cxx|   48 +---
 embeddedobj/source/general/dummyobject.cxx  |5 
 embeddedobj/source/general/intercept.cxx|   37 +--
 embeddedobj/source/inc/intercept.hxx|2 
 embeddedobj/source/msole/graphconvert.cxx   |   15 -
 embeddedobj/source/msole/olecomponent.cxx   |   39 ++-
 embeddedobj/source/msole/oleembed.cxx   |   38 +--
 embeddedobj/source/msole/olepersist.cxx |   43 +---
 embeddedobj/source/msole/ownview.cxx|   37 +--
 embeddedobj/source/msole/xdialogcreator.cxx |   13 -
 18 files changed, 238 insertions(+), 278 deletions(-)

New commits:
commit e3d1fb97fcdff75424d4a116f29e8550f94f8a42
Author: Mike Kaganski 
AuthorDate: Fri Oct 29 09:34:44 2021 +0300
Commit: Mike Kaganski 
CommitDate: Sat Oct 30 00:30:58 2021 +0200

Prepare for removal of non-const operator[] from Sequence in embeddedobj

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

diff --git a/embeddedobj/source/commonembedding/embedobj.cxx 
b/embeddedobj/source/commonembedding/embedobj.cxx
index 0b1154394651..223f25e6302c 100644
--- a/embeddedobj/source/commonembedding/embedobj.cxx
+++ b/embeddedobj/source/commonembedding/embedobj.cxx
@@ -193,8 +193,8 @@ void OCommonEmbeddedObject::SwitchStateTo_Impl( sal_Int32 
nNextState )
 else
 {
 // objects without persistence will be initialized 
internally
-uno::Sequence < uno::Any > aArgs(1);
-aArgs[0] <<= uno::Reference < embed::XEmbeddedObject >( 
this );
+uno::Sequence < uno::Any > aArgs{ uno::Any(
+uno::Reference < embed::XEmbeddedObject >( this )) };
 uno::Reference< util::XCloseable > xDocument(
 
m_xContext->getServiceManager()->createInstanceWithArgumentsAndContext( 
GetDocumentServiceName(), aArgs, m_xContext),
 uno::UNO_QUERY );
diff --git a/embeddedobj/source/commonembedding/miscobj.cxx 
b/embeddedobj/source/commonembedding/miscobj.cxx
index 1e107e36c491..9c24185ed184 100644
--- a/embeddedobj/source/commonembedding/miscobj.cxx
+++ b/embeddedobj/source/commonembedding/miscobj.cxx
@@ -42,6 +42,8 @@
 
 #include "persistence.hxx"
 
+#include 
+
 using namespace ::com::sun::star;
 
 
@@ -123,13 +125,12 @@ void OCommonEmbeddedObject::CommonInit_Impl( const 
uno::Sequence< beans::NamedVa
 throw uno::RuntimeException(); // something goes really wrong
 
 // accepted states
-m_aAcceptedStates.realloc( NUM_SUPPORTED_STATES );
-
-m_aAcceptedStates[0] = embed::EmbedStates::LOADED;
-m_aAcceptedStates[1] = embed::EmbedStates::RUNNING;
-m_aAcceptedStates[2] = embed::EmbedStates::INPLACE_ACTIVE;
-m_aAcceptedStates[3] = embed::EmbedStates::UI_ACTIVE;
-m_aAcceptedStates[4] = embed::EmbedStates::ACTIVE;
+m_aAcceptedStates = { /* [0] */ embed::EmbedStates::LOADED,
+  /* [1] */ embed::EmbedStates::RUNNING,
+  /* [2] */ embed::EmbedStates::INPLACE_ACTIVE,
+  /* [3] */ embed::EmbedStates::UI_ACTIVE,
+  /* [4] */ embed::EmbedStates::ACTIVE };
+assert(m_aAcceptedStates.getLength() == NUM_SUPPORTED_STATES);
 
 
 // intermediate states
@@ -141,31 +142,23 @@ void OCommonEmbeddedObject::CommonInit_Impl( const 
uno::Sequence< beans::NamedVa
 // state to the target state is forbidden, only if direct switch is 
possible
 // the state can be reached.
 
-m_pIntermediateStatesSeqs[0][2].realloc( 1 );
-m_pIntermediateStatesSeqs[0][2][0] = embed::EmbedStates::RUNNING;
+m_pIntermediateStatesSeqs[0][2] = { embed::EmbedStates::RUNNING };
 
-m_pIntermediateStatesSeqs[0][3].realloc( 2 );
-m_pIntermediateStatesSeqs[0][3][0] = embed::EmbedStates::RUNNING;
-m_pIntermediateStatesSeqs[0][3][1] = embed::EmbedStates::INPLACE_ACTIVE;
+m_pIntermediateStatesSeqs[0][3] = { embed::EmbedStates::RUNNING,
+embed::EmbedStates::INPLACE_ACTIVE };
 
-m_pIntermediateStatesSeqs[0][4].realloc( 1 );

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

2021-10-29 Thread Mike Kaganski (via logerrit)
 embedserv/source/embed/docholder.cxx  |   24 +++-
 embedserv/source/embed/ed_ipersiststr.cxx |   33 ++
 embedserv/source/embed/intercept.cxx  |   44 --
 embedserv/source/inc/intercept.hxx|2 -
 4 files changed, 46 insertions(+), 57 deletions(-)

New commits:
commit 52f6aa4bf1047f98ab9884799baa104bca9d2a47
Author: Mike Kaganski 
AuthorDate: Fri Oct 29 09:35:32 2021 +0300
Commit: Mike Kaganski 
CommitDate: Sat Oct 30 00:30:25 2021 +0200

Prepare for removal of non-const operator[] from Sequence in embedserv

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

diff --git a/embedserv/source/embed/docholder.cxx 
b/embedserv/source/embed/docholder.cxx
index cfa7cb87e88c..e79c26a2a0d5 100644
--- a/embedserv/source/embed/docholder.cxx
+++ b/embedserv/source/embed/docholder.cxx
@@ -60,6 +60,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -111,22 +112,22 @@ void DocumentHolder::LoadDocInFrame( bool bPluginMode )
 uno::Reference< task::XInteractionHandler2 > xHandler(
 
task::InteractionHandler::createWithParent(comphelper::getComponentContext(m_xFactory),
 nullptr) );
 
-sal_Int32 nLen = 3;
+sal_Int32 nLen = bPluginMode ? 6 : 5;
 uno::Sequence aSeq( nLen );
-
-aSeq[0] = beans::PropertyValue(
+auto pSeq = aSeq.getArray();
+pSeq[0] = beans::PropertyValue(
 "Model",
 -1,
 uno::Any(uno::Reference(m_xDocument, 
uno::UNO_QUERY)),
 beans::PropertyState_DIRECT_VALUE);
 
-aSeq[1] = beans::PropertyValue(
+pSeq[1] = beans::PropertyValue(
 "ReadOnly",
 -1,
 uno::Any(false),
 beans::PropertyState_DIRECT_VALUE);
 
-aSeq[2] = beans::PropertyValue(
+pSeq[2] = beans::PropertyValue(
 "NoAutoSave",
 -1,
 uno::Any(true),
@@ -134,22 +135,20 @@ void DocumentHolder::LoadDocInFrame( bool bPluginMode )
 
 if ( bPluginMode )
 {
-aSeq.realloc( ++nLen );
-aSeq[nLen-1] = beans::PropertyValue(
+pSeq[3] = beans::PropertyValue(
 "PluginMode",
 -1,
 uno::Any(sal_Int16(3)),
 beans::PropertyState_DIRECT_VALUE);
 }
 
-aSeq.realloc( nLen+=2 );
-aSeq[nLen-2] = beans::PropertyValue(
+pSeq[nLen-2] = beans::PropertyValue(
 "InteractionHandler",
 -1,
 uno::Any(xHandler),
 beans::PropertyState_DIRECT_VALUE);
 
-aSeq[nLen-1] = beans::PropertyValue(
+pSeq[nLen-1] = beans::PropertyValue(
 "MacroExecutionMode",
 -1,
 uno::Any(m_nMacroExecMode),
@@ -701,9 +700,8 @@ void DocumentHolder::SetDocument( const uno::Reference< 
frame::XModel >& xDoc, b
 if ( m_xDocument.is() && !m_bLink )
 {
 // set the document mode to embedded
-uno::Sequence< beans::PropertyValue > aSeq(1);
-aSeq[0].Name = "SetEmbedded";
-aSeq[0].Value <<= true;
+uno::Sequence< beans::PropertyValue > aSeq{ 
comphelper::makePropertyValue("SetEmbedded",
+   
   true) };
 m_xDocument->attachResource(OUString(),aSeq);
 }
 }
diff --git a/embedserv/source/embed/ed_ipersiststr.cxx 
b/embedserv/source/embed/ed_ipersiststr.cxx
index c23141636de0..698bbe13f586 100644
--- a/embedserv/source/embed/ed_ipersiststr.cxx
+++ b/embedserv/source/embed/ed_ipersiststr.cxx
@@ -195,22 +195,21 @@ EmbedDocument_Impl::~EmbedDocument_Impl()
 
 uno::Sequence< beans::PropertyValue > 
EmbedDocument_Impl::fillArgsForLoading_Impl( uno::Reference< io::XInputStream > 
const & xStream, DWORD /*nStreamMode*/, LPCOLESTR pFilePath )
 {
-uno::Sequence< beans::PropertyValue > aArgs( 3 );
-
-sal_Int32 nInd = 0; // must not be bigger than the preset size
-aArgs[nInd].Name = "FilterName";
-aArgs[nInd++].Value <<= getFilterNameFromGUID_Impl( _guid );
+uno::Sequence< beans::PropertyValue > aArgs( xStream.is() ? 3 : 2 );
+auto pArgs = aArgs.getArray();
+pArgs[0].Name = "FilterName";
+pArgs[0].Value <<= getFilterNameFromGUID_Impl( _guid );
 
 if ( xStream.is() )
 {
-aArgs[nInd].Name = "InputStream";
-aArgs[nInd++].Value <<= xStream;
-aArgs[nInd].Name = "URL";
-aArgs[nInd++].Value <<= OUString( "private:stream" );
+pArgs[1].Name = "InputStream";
+pArgs[1].Value <<= xStream;
+pArgs[2].Name = "URL";
+pArgs[2].Value <<= OUString( "private:stream" );
 }
 else
 {
-aArgs[nInd].Name = "URL";
+pArgs[1].Name = "URL";
 
 OUString sDocUrl;
 if ( pFilePath 

[Libreoffice-commits] core.git: sc/qa

2021-10-29 Thread Xisco Fauli (via logerrit)
 sc/qa/uitest/calc_tests7/save_readonly_with_password.py |   91 
 1 file changed, 91 insertions(+)

New commits:
commit 1e562859d597e2523159d93d04e205017da092f4
Author: Xisco Fauli 
AuthorDate: Fri Oct 29 17:36:40 2021 +0200
Commit: Xisco Fauli 
CommitDate: Sat Oct 30 00:07:13 2021 +0200

sc: uitest: test "save to ODS/XLSX as read-only with password protection"

Similar to the UItest added in 1b53c1dfc76f08ca7df40a0673aa50eca700d072
< tdf#144374 DOCX: export the password for editing > for the DOCX format

Change-Id: I4e9349044355107bbf015fc821e330dfb8005922
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124443
Tested-by: Jenkins
Reviewed-by: Xisco Fauli 

diff --git a/sc/qa/uitest/calc_tests7/save_readonly_with_password.py 
b/sc/qa/uitest/calc_tests7/save_readonly_with_password.py
new file mode 100644
index ..c930b3ece9cd
--- /dev/null
+++ b/sc/qa/uitest/calc_tests7/save_readonly_with_password.py
@@ -0,0 +1,91 @@
+# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+from uitest.framework import UITestCase
+from libreoffice.uno.propertyvalue import mkPropertyValues
+from org.libreoffice.unotest import systemPathToFileUrl
+from uitest.uihelper.common import select_by_text
+from tempfile import TemporaryDirectory
+import os.path
+
+class save_readonly_with_password(UITestCase):
+
+   def test_save_to_xlsx(self):
+
+with TemporaryDirectory() as tempdir:
+xFilePath = os.path.join(tempdir, 
"readonly_with_password_tmp.xlsx")
+
+with self.ui_test.create_doc_in_start_center("calc"):
+# Save the document
+with self.ui_test.execute_dialog_through_command(".uno:Save", 
close_button="") as xSaveDialog:
+xFileName = xSaveDialog.getChild("file_name")
+xFileName.executeAction("TYPE", 
mkPropertyValues({"KEYCODE":"CTRL+A"}))
+xFileName.executeAction("TYPE", 
mkPropertyValues({"KEYCODE":"BACKSPACE"}))
+xFileName.executeAction("TYPE", mkPropertyValues({"TEXT": 
xFilePath}))
+xFileTypeCombo = xSaveDialog.getChild("file_type")
+select_by_text(xFileTypeCombo, "Excel 2007–365 (.xlsx)")
+xPasswordCheckButton = xSaveDialog.getChild("password")
+xPasswordCheckButton.executeAction("CLICK", tuple())
+xOpen = xSaveDialog.getChild("open")
+
+with self.ui_test.execute_dialog_through_action(xOpen, 
"CLICK") as xPasswordDialog:
+xReadonly = xPasswordDialog.getChild("readonly")
+xReadonly.executeAction("CLICK", tuple())
+xNewPassword = 
xPasswordDialog.getChild("newpassroEntry")
+xNewPassword.executeAction("TYPE", 
mkPropertyValues({"TEXT": "password"}))
+xConfirmPassword = 
xPasswordDialog.getChild("confirmropassEntry")
+xConfirmPassword.executeAction("TYPE", 
mkPropertyValues({"TEXT": "password"}))
+
+# XLSX confirmation dialog is displayed
+xWarnDialog = self.xUITest.getTopFocusWindow()
+xSave = xWarnDialog.getChild("save")
+self.ui_test.close_dialog_through_button(xSave)
+
+with self.ui_test.load_file(systemPathToFileUrl(xFilePath)) as 
document:
+
+self.assertTrue(document.isReadonly())
+
+with 
self.ui_test.execute_dialog_through_command(".uno:EditDoc") as xDialog:
+xPassword = xDialog.getChild("newpassEntry")
+xPassword.executeAction("TYPE", mkPropertyValues({"TEXT": 
"password"}))
+
+self.assertFalse(document.isReadonly())
+
+   def test_save_to_ods(self):
+
+with TemporaryDirectory() as tempdir:
+xFilePath = os.path.join(tempdir, "readonly_with_password_tmp.ods")
+
+with self.ui_test.create_doc_in_start_center("calc"):
+# Save the document
+with self.ui_test.execute_dialog_through_command(".uno:Save", 
close_button="") as xSaveDialog:
+xFileName = xSaveDialog.getChild("file_name")
+xFileName.executeAction("TYPE", 
mkPropertyValues({"KEYCODE":"CTRL+A"}))
+xFileName.executeAction("TYPE", 
mkPropertyValues({"KEYCODE":"BACKSPACE"}))
+xFileName.executeAction("TYPE", mkPropertyValues({"TEXT": 
xFilePath}))
+xPasswordCheckButton = xSaveDialog.getChild("password")
+xPasswordCheckButton.executeAction("CLICK", tuple())
+xOpen = xSaveDialog.getChild("open")
+
+

[Libreoffice-commits] core.git: sd/qa

2021-10-29 Thread Xisco Fauli (via logerrit)
 sd/qa/uitest/impress_tests/save_readonly_with_password.py |   54 ++
 1 file changed, 54 insertions(+)

New commits:
commit 1d09e7da3047579b394897aec4b48d8af444b05b
Author: Xisco Fauli 
AuthorDate: Fri Oct 29 18:02:21 2021 +0200
Commit: Xisco Fauli 
CommitDate: Sat Oct 30 00:06:16 2021 +0200

sd: uitest: test "save to ODP as read-only with password protection"

Similar to the UItest added in 1b53c1dfc76f08ca7df40a0673aa50eca700d072
< tdf#144374 DOCX: export the password for editing > for the DOCX format

Change-Id: I4e6914d5224ba051d68ffebaffcadaa16c8f349b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124445
Tested-by: Jenkins
Reviewed-by: Xisco Fauli 

diff --git a/sd/qa/uitest/impress_tests/save_readonly_with_password.py 
b/sd/qa/uitest/impress_tests/save_readonly_with_password.py
new file mode 100644
index ..3f789035d0a8
--- /dev/null
+++ b/sd/qa/uitest/impress_tests/save_readonly_with_password.py
@@ -0,0 +1,54 @@
+# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+from uitest.framework import UITestCase
+from libreoffice.uno.propertyvalue import mkPropertyValues
+from org.libreoffice.unotest import systemPathToFileUrl
+from uitest.uihelper.common import select_by_text
+from tempfile import TemporaryDirectory
+import os.path
+
+class save_readonly_with_password(UITestCase):
+
+   def test_save_to_odp(self):
+
+with TemporaryDirectory() as tempdir:
+xFilePath = os.path.join(tempdir, "readonly_with_password_tmp.odp")
+
+with self.ui_test.create_doc_in_start_center("impress"):
+xTemplateDlg = self.xUITest.getTopFocusWindow()
+xCancelBtn = xTemplateDlg.getChild("close")
+self.ui_test.close_dialog_through_button(xCancelBtn)
+
+# Save the document
+with self.ui_test.execute_dialog_through_command(".uno:Save", 
close_button="") as xSaveDialog:
+xFileName = xSaveDialog.getChild("file_name")
+xFileName.executeAction("TYPE", 
mkPropertyValues({"KEYCODE":"CTRL+A"}))
+xFileName.executeAction("TYPE", 
mkPropertyValues({"KEYCODE":"BACKSPACE"}))
+xFileName.executeAction("TYPE", mkPropertyValues({"TEXT": 
xFilePath}))
+xPasswordCheckButton = xSaveDialog.getChild("password")
+xPasswordCheckButton.executeAction("CLICK", tuple())
+xOpen = xSaveDialog.getChild("open")
+
+with self.ui_test.execute_dialog_through_action(xOpen, 
"CLICK") as xPasswordDialog:
+xReadonly = xPasswordDialog.getChild("readonly")
+xReadonly.executeAction("CLICK", tuple())
+xNewPassword = 
xPasswordDialog.getChild("newpassroEntry")
+xNewPassword.executeAction("TYPE", 
mkPropertyValues({"TEXT": "password"}))
+xConfirmPassword = 
xPasswordDialog.getChild("confirmropassEntry")
+xConfirmPassword.executeAction("TYPE", 
mkPropertyValues({"TEXT": "password"}))
+
+with self.ui_test.load_file(systemPathToFileUrl(xFilePath)) as 
document:
+
+self.assertTrue(document.isReadonly())
+
+with 
self.ui_test.execute_dialog_through_command(".uno:EditDoc") as xDialog:
+xPassword = xDialog.getChild("newpassEntry")
+xPassword.executeAction("TYPE", mkPropertyValues({"TEXT": 
"password"}))
+
+self.assertFalse(document.isReadonly())
+
+# vim: set shiftwidth=4 softtabstop=4 expandtab:


[Libreoffice-commits] core.git: Branch 'distro/collabora/co-2021' - i18npool/source

2021-10-29 Thread Luboš Luňák (via logerrit)
 i18npool/source/breakiterator/xdictionary.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d1a0bb1257f868c1424e503a872af8dd4cb4c7b0
Author: Luboš Luňák 
AuthorDate: Fri Oct 29 14:20:57 2021 +0200
Commit: Luboš Luňák 
CommitDate: Fri Oct 29 23:53:40 2021 +0200

fix comparison when searching cache

This made the cache always fail and re-cache, making CJK text layout
slower over time. A mistake from ef513fd4b049b214a03fbe6e that
converted !strcmp() to != instead of ==.

Change-Id: Ib70579cd36d7b1df062e4d067e03f5c65e34b142
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124203
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Luboš Luňák 

diff --git a/i18npool/source/breakiterator/xdictionary.cxx 
b/i18npool/source/breakiterator/xdictionary.cxx
index 947a23c5073b..6b57433370c7 100644
--- a/i18npool/source/breakiterator/xdictionary.cxx
+++ b/i18npool/source/breakiterator/xdictionary.cxx
@@ -152,7 +152,7 @@ void xdictionary::initDictionaryData(const char *pLang)
 osl::MutexGuard aGuard( osl::Mutex::getGlobalMutex() );
 for(const datacache & i : aLoadedCache)
 {
-if( i.maLang != pLang )
+if( i.maLang == pLang )
 {
 data = i.maData;
 return;


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

2021-10-29 Thread Luboš Luňák (via logerrit)
 i18npool/source/breakiterator/xdictionary.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 5b38b5744af1e896892df708c16b83e1b551d2c7
Author: Luboš Luňák 
AuthorDate: Fri Oct 29 14:20:57 2021 +0200
Commit: Luboš Luňák 
CommitDate: Fri Oct 29 23:53:19 2021 +0200

fix comparison when searching cache

This made the cache always fail and re-cache, making CJK text layout
slower over time. A mistake from ef513fd4b049b214a03fbe6e that
converted !strcmp() to != instead of ==.

Change-Id: Ib70579cd36d7b1df062e4d067e03f5c65e34b142
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124432
Reviewed-by: Noel Grandin 
Reviewed-by: Luboš Luňák 
Tested-by: Luboš Luňák 

diff --git a/i18npool/source/breakiterator/xdictionary.cxx 
b/i18npool/source/breakiterator/xdictionary.cxx
index 9134fbc4be13..dd1f83f8baa7 100644
--- a/i18npool/source/breakiterator/xdictionary.cxx
+++ b/i18npool/source/breakiterator/xdictionary.cxx
@@ -151,7 +151,7 @@ void xdictionary::initDictionaryData(const char *pLang)
 osl::MutexGuard aGuard( osl::Mutex::getGlobalMutex() );
 for(const datacache & i : aLoadedCache)
 {
-if( i.maLang != pLang )
+if( i.maLang == pLang )
 {
 data = i.maData;
 return;


Simple Mode (Expanded)

2021-10-29 Thread o lu
> ‐‐‐ Original Message ‐‐‐
> On Tuesday, October 26th, 2021 at 6:36 PM, o lu  
> wrote:
>
>> I wanted to start this here instead of opening a bug.
>>
>> The menus and toolbars in Writer are overwhelming and complex.
>>
>> I think there should be a simple mode, akin to something like Apple Pages (I 
>> only work in Writer at this point).
>>
>> Any thoughts or questions?

On second thought, copying the Pages UI is nto a good idea. I was looking at 
some of the screenshots on the web, and it seems too simple, or not really 
conducive to editing. I am still for the idea that it might provide a good 
starting point (Like only 10 icons visible initially, with sidebars for just 
about everything).

Please take this as constructive criticism: This would be (partially) doable by 
users if one had the ability to customize the toolbars (and the ribbon in 
particular), as I see alot of sidebars already.

What do you guys think?

[Libreoffice-bugs] [Bug 145387] Capitalization missing for a few commands

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145387

--- Comment #1 from phv  ---
"Lowercase" should stay "lowercase" as "Uppercase" command is written
"UPPERCASE", and "Toggle Case" is written "tOGGLE cAse". Although I don't
really like it when the writing is supposed to illustrate a function.

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

[Libreoffice-bugs] [Bug 145388] Libre Calc - insert Row above does not carry function completely

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145388

--- Comment #1 from BrianB  ---
Created attachment 176011
  --> https://bugs.documentfoundation.org/attachment.cgi?id=176011=edit
TestCase145388

Correction, the new row cell whose formula that i drug down from E5 worked
fine, it's the former E6 which is now E7 that did not update correctly when i
inserted the new row.

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

[Libreoffice-bugs] [Bug 145389] New: Offline help does not work when mozilla firefox installed from a snap is the default browser on linux

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145389

Bug ID: 145389
   Summary: Offline help does not work when mozilla firefox
installed from a snap is the default browser on linux
   Product: LibreOffice
   Version: 7.2.1.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ro...@beardandsandals.co.uk

Description:
On Ubuntu Linux when the default browser is Mozilla Firefox installed via a
snap (i.e. firefox is /snap/bin/firefox). In LibreOffice writer when the F1 key
is pressed and offline help has been setup. The Firefox browser is launched and
immediately displays a file not found error, even though the file shown in the
url bar is present in the filesystem (e.g
file:///tmp/lu314464cuujkj.tmp/NewHelp0.html).

Work round is to remove the firefox snap, and install from the package
repository.

Steps to Reproduce:
1. Launch writer
2. Press the F1 key

Actual Results:
Browser display a File Not Found (404) page.

Expected Results:
Help page is displayed in the browser.


Reproducible: Always


User Profile Reset: No



Additional Info:
Either cater for Firefox running from a snap, or document somewhere that this
will not work.

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

[Libreoffice-bugs] [Bug 145388] New: Libre Calc - insert Row above does not carry function completely

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145388

Bug ID: 145388
   Summary: Libre Calc - insert Row above does not carry function
completely
   Product: LibreOffice
   Version: 7.2.0.4 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lynnwoo...@gmail.com

Description:
I have several columns with numbers, the fourth column Sums the 3 to the left
and the 4th column cell above. =SUM(B6:D6)+E5
I needed another row so I inserted above, but it did not include the formula in
the 4th row. I drug the 4th row cell from the above row down to the new row 4th
cell. It copied the formula relative EXCEPT that the extra (+E5 in this case)
remained static (did not change with the rest of the formula). I believe it
should have a $E$5 in order to remain static else it should be relative, though
i could be missing something. I will attach the file, there is nothing
sensitive. Row 6 is the one i inserted (by right clicking 7 'insert row above')

Steps to Reproduce:
1.Create relative formula in several rows (sum cell:cell +othercell)
2.slect a middle row and rt click Insert row above
3.drag above row cell down to copy formula

Actual Results:
the cell:cell portion of the formula copies relative, the additional +othercell
does not. 

Expected Results:
All cell references in the formula should be relative as it has no static
markers (i'm prob using all the wrong lingo)


Reproducible: Always


User Profile Reset: No


OpenGL enabled: Yes

Additional Info:
I'm not seeing how to submit the file as an example here. Let me know if you
want it.

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

[Libreoffice-bugs] [Bug 145387] New: Capitalization missing for a few commands

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145387

Bug ID: 145387
   Summary: Capitalization missing for a few commands
   Product: LibreOffice
   Version: 7.2.2.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: trivial
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: libreoffice@phv.email

A quick look in the customization tool confirms that a few commands have been
added with a missing capitalization title. I haven't found any guide about the
writing style used in the LibreOffice suite; I therefore applied some kind of
consistency. I also want to make it clear that there is no good or bad style
guide, but it's important for the team in charge of the design or the UI to
define rules (which preposition should be capitalized, how to capitalize when a
noun or an adjectif is hyphenated, etc.). I look forward to your feedback,
thank you!

Apply document classification
➔
Apply Document Classification

Cross-reference
➔
Cross-Reference

Delete index
➔
Delete Index

Edit index
➔
Edit Index

Half-width
➔
Half-Width

Full-width
➔
Full-Width

Go to next faulty table
➔
Go to Next Faulty Table

Go to next table formula
➔
Go to Next Table Formula

Go to previous table formula
➔
Go to Previous Table Formula

Insert Narrow No-break Space
➔
Insert Narrow No-Break Space

Insert non-breaking hyphen
➔
Insert Non-Breaking Hyphen

Insert non-breaking space
➔
Insert Non-Breaking Space

Insert soft hyphen
➔
Insert Soft Hyphen

Insert single-column frame manually
➔
Insert Single-Column Frame Manually

Jump To Specific Page
➔
Jump to Specific Page

Left-To-Right
➔
Left-to-Right

Left-to-right Mark
➔
Left-to-Right Mark

Right-To-Left
➔
Right-to-left

Right-to-left Mark
➔
Right-to-Left Mark

Text direction from left to right
➔
Text Direction from Left to Right

Text direction from top to bottom
➔
Text Direction from Top to Bottom

Anchor To Frame
➔
Anchor to Frame

Anchor To Page
➔
Anchor to Page

Anchor To Paragraph
➔
Anchor to Paragraph

Demote One Level With Subpoint
➔
Demote One Level with Subpoint

Promote One Level With Subpoint
➔
Promote One Level with Subpoint

lowercase
➔
Lowercase

Small capitals
➔
Small Capitals

No-width Optional Break
➔
No-Width Optional Break

Refresh document layout
➔
Refresh Document Layout

Show outline-folding buttons
➔
Show Outline-Folding Buttons

Show resolved comments
➔
Show Resolved Comments

Show tracked selection in margin
➔
Show Tracked Selection in Margin

Text from file
➔
Text from File

Use header/footer menu
➔
Use Header/Footer Menu

Data source as Table
➔
Data Source as Table

Area Style / Filling
➔
Area Style/Filing

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

[Libreoffice-commits] core.git: Branch 'feature/wasm' - 52 commits - accessibility/Library_acc.mk accessibility/source avmedia/Library_avmedia.mk avmedia/Module_avmedia.mk avmedia/source basctl/Librar

2021-10-29 Thread Jan-Marek Glogowski (via logerrit)
Rebased ref, commits from common ancestor:
commit a4f54cfbe5877fad9c12e8c77f2f951e7719fdc9
Author: Jan-Marek Glogowski 
AuthorDate: Fri Oct 29 22:24:12 2021 +0200
Commit: Jan-Marek Glogowski 
CommitDate: Fri Oct 29 22:24:17 2021 +0200

Qt5 don't create a window handle for non-xcb

Fix the non-hidden main fallback window and the native menu bar
overlay window for WASM.

Change-Id: I6b6edfa26466814cb0500116098eafcbe41bba26

diff --git a/include/vcl/sysdata.hxx b/include/vcl/sysdata.hxx
index 57d9c2220ecf..00cd5142c2e3 100644
--- a/include/vcl/sysdata.hxx
+++ b/include/vcl/sysdata.hxx
@@ -62,7 +62,7 @@ struct VCL_DLLPUBLIC SystemEnvData
 #elif defined( IOS )
 // Nothing
 #elif defined( UNX )
-enum class Platform { Wayland, Xcb };
+enum class Platform { Wayland, Xcb, WASM };
 
 void*   pDisplay;   // the relevant display connection
 SalFrame*   pSalFrame;  // contains a salframe, if object has 
one
diff --git a/vcl/qt5/QtFrame.cxx b/vcl/qt5/QtFrame.cxx
index d6db37d21579..364b7afd2f04 100644
--- a/vcl/qt5/QtFrame.cxx
+++ b/vcl/qt5/QtFrame.cxx
@@ -181,13 +181,21 @@ QtFrame::QtFrame(QtFrame* pParent, SalFrameStyleFlags 
nStyle, bool bUseCairo)
 pChildWindow->setTransientParent(pParentWindow);
 }
 
+if (QGuiApplication::platformName() == "wayland")
+m_aSystemData.platform = SystemEnvData::Platform::Wayland;
+else if (QGuiApplication::platformName() == "xcb")
+m_aSystemData.platform = SystemEnvData::Platform::Xcb;
+else if (QGuiApplication::platformName() == "wasm")
+m_aSystemData.platform = SystemEnvData::Platform::WASM;
+else
+std::abort();
+
 // Calling 'QWidget::winId()' implicitly enables native windows to be used
 // rather than "alien widgets" that are unknown to the windowing system,
 // s. https://doc.qt.io/qt-5/qwidget.html#native-widgets-vs-alien-widgets
 // Avoid this on Wayland due to problems with missing 'mouseMoveEvent's,
 // s. tdf#122293/QTBUG-75766
-const bool bWayland = QGuiApplication::platformName() == "wayland";
-if (!bWayland)
+if (m_aSystemData.platform == SystemEnvData::Platform::Xcb)
 m_aSystemData.SetWindowHandle(m_pQWidget->winId());
 else
 {
@@ -204,10 +212,6 @@ QtFrame::QtFrame(QtFrame* pParent, SalFrameStyleFlags 
nStyle, bool bUseCairo)
 m_aSystemData.pWidget = m_pQWidget;
 //m_aSystemData.nScreen = m_nXScreen.getXScreen();
 m_aSystemData.toolkit = SystemEnvData::Toolkit::Qt;
-if (!bWayland)
-m_aSystemData.platform = SystemEnvData::Platform::Xcb;
-else
-m_aSystemData.platform = SystemEnvData::Platform::Wayland;
 
 SetIcon(SV_ICON_ID_OFFICE);
 
@@ -224,7 +228,7 @@ void QtFrame::fixICCCMwindowGroup()
 return;
 g_bNeedsWmHintsWindowGroup = false;
 
-if (QGuiApplication::platformName() != "xcb")
+if (m_aSystemData.platform != SystemEnvData::Platform::Xcb)
 return;
 if (QVersionNumber::fromString(qVersion()) >= QVersionNumber(5, 12))
 return;
@@ -1256,7 +1260,7 @@ void QtFrame::SetScreenNumber(unsigned int nScreen)
 void QtFrame::SetApplicationID(const OUString& rWMClass)
 {
 #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) && QT5_USING_X11
-if (QGuiApplication::platformName() != "xcb" || !m_pTopLevel)
+if (m_aSystemData.platform != SystemEnvData::Platform::Xcb || !m_pTopLevel)
 return;
 
 OString aResClass = OUStringToOString(rWMClass, RTL_TEXTENCODING_ASCII_US);
commit d113809547b9eee936e13d2b9d3a7ed5ce624ffe
Author: Jan-Marek Glogowski 
AuthorDate: Fri Oct 29 21:04:21 2021 +0200
Commit: Jan-Marek Glogowski 
CommitDate: Fri Oct 29 21:04:21 2021 +0200

LibreOfficeWASM32 defaults are now in configure.ac

Change-Id: I6d578abba0368efe12c85f8bc72b49484a76dbb7

diff --git a/distro-configs/LibreOfficeWASM32.conf 
b/distro-configs/LibreOfficeWASM32.conf
index 962b76a55302..b4a3f1dc6ae7 100644
--- a/distro-configs/LibreOfficeWASM32.conf
+++ b/distro-configs/LibreOfficeWASM32.conf
@@ -1,5 +1 @@
 --host=wasm32-local-emscripten
---enable-services-rdb-from-build
---enable-wasm-strip
---disable-gtk3
---enable-qt5
commit b61246582322d843edf34aa02d14292810a82fb5
Author: Jan-Marek Glogowski 
AuthorDate: Fri Oct 29 20:32:43 2021 +0200
Commit: Jan-Marek Glogowski 
CommitDate: Fri Oct 29 20:42:00 2021 +0200

Minimize bridge code

This way it doesn't fail the optimized build.

Change-Id: I7d1b1e56da359835373ce093bb18df8219a09aac

diff --git a/bridges/source/cpp_uno/gcc3_wasm/cpp2uno.cxx 
b/bridges/source/cpp_uno/gcc3_wasm/cpp2uno.cxx
index 90e1d372da03..fd7fa817588a 100644
--- a/bridges/source/cpp_uno/gcc3_wasm/cpp2uno.cxx
+++ b/bridges/source/cpp_uno/gcc3_wasm/cpp2uno.cxx
@@ -5,536 +5,43 @@
  * This Source Code Form is subject to the terms of the Mozilla Public
  * License, v. 2.0. If a copy of the MPL was not distributed with this
  * file, You can obtain one at 

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

2021-10-29 Thread Michael Meeks (via logerrit)
 sw/source/uibase/shells/langhelper.cxx |5 +++--
 sw/source/uibase/shells/textsh1.cxx|5 +++--
 2 files changed, 6 insertions(+), 4 deletions(-)

New commits:
commit a613204272151bc533ace9c2794dc812e06aba27
Author: Michael Meeks 
AuthorDate: Fri Oct 29 19:39:21 2021 +0100
Commit: Aron Budea 
CommitDate: Fri Oct 29 22:45:23 2021 +0200

tdf#145386 Avoid LANGUAGE_PROCESS_OR_USER_DEFAULT messing up the status bar.

Importing a simple .doc gives this language code in various bits
of logic, unexpectedly - which then results in very odd
FeatureStateEvents containing state like this:

  uno::Sequence of length 4 = {"{en-US};en-US", "1", "", "Doc.doc"}

where really they should be:

  uno::Sequence of length 4 = {"English (USA);en-US", "1", "", "Doc.doc"}

and worse - that looks like JSON.

Change-Id: I8d9e4171bee6bbe9d1c9dcfb7a5fa8fc92ea1a2c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124448
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Aron Budea 

diff --git a/sw/source/uibase/shells/langhelper.cxx 
b/sw/source/uibase/shells/langhelper.cxx
index 32a6cb1a5793..27326c973fb0 100644
--- a/sw/source/uibase/shells/langhelper.cxx
+++ b/sw/source/uibase/shells/langhelper.cxx
@@ -39,6 +39,7 @@
 #include 
 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -75,14 +76,14 @@ namespace SwLangHelper
 
 vcl::Window* pWin = rEditView.GetWindow();
 if(pWin)
-nLang = pWin->GetInputLanguage();
+nLang = MsLangId::getRealLanguage( pWin->GetInputLanguage() );
 if (nLang != LANGUAGE_DONTKNOW && nLang != LANGUAGE_SYSTEM)
 aKeyboardLang = SvtLanguageTable::GetLanguageString( nLang );
 
 // get the language that is in use
 OUString aCurrentLang("*");
 SfxItemSet aSet(pOLV->GetAttribs());
-nLang = SwLangHelper::GetCurrentLanguage( aSet,nScriptType );
+nLang = MsLangId::getRealLanguage( SwLangHelper::GetCurrentLanguage( 
aSet,nScriptType ) );
 if (nLang != LANGUAGE_DONTKNOW)
 aCurrentLang = SvtLanguageTable::GetLanguageString( nLang );
 
diff --git a/sw/source/uibase/shells/textsh1.cxx 
b/sw/source/uibase/shells/textsh1.cxx
index 630d54a2efc6..e7747e36db76 100644
--- a/sw/source/uibase/shells/textsh1.cxx
+++ b/sw/source/uibase/shells/textsh1.cxx
@@ -26,6 +26,7 @@
 #include 
 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -1623,13 +1624,13 @@ void SwTextShell::GetState( SfxItemSet  )
 // get keyboard language
 OUString aKeyboardLang;
 SwEditWin& rEditWin = GetView().GetEditWin();
-LanguageType nLang = rEditWin.GetInputLanguage();
+LanguageType nLang = MsLangId::getRealLanguage( 
rEditWin.GetInputLanguage() );
 if (nLang != LANGUAGE_DONTKNOW && nLang != LANGUAGE_SYSTEM)
 aKeyboardLang = SvtLanguageTable::GetLanguageString( nLang 
);
 
 // get the language that is in use
 OUString aCurrentLang = "*";
-nLang = SwLangHelper::GetCurrentLanguage( rSh );
+nLang = MsLangId::getRealLanguage( 
SwLangHelper::GetCurrentLanguage( rSh ) );
 if (nLang != LANGUAGE_DONTKNOW)
 {
 aCurrentLang = SvtLanguageTable::GetLanguageString( nLang 
);


[Libreoffice-commits] core.git: helpcontent2

2021-10-29 Thread Rafael Lima (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e357cfdc8cda9878ebbc61645e8557a474871d47
Author: Rafael Lima 
AuthorDate: Fri Oct 29 22:41:48 2021 +0200
Commit: Gerrit Code Review 
CommitDate: Fri Oct 29 22:41:48 2021 +0200

Update git submodules

* Update helpcontent2 from branch 'master'
  to 3445df8b3761cc8dafd0f5a275696ad54dc9bbec
  - Create help page for SF_Chart service

Change-Id: Ie244e4416d2b523dfe460701297f6ecfc81f964d
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/124195
Tested-by: Jenkins
Reviewed-by: Rafael Lima 

diff --git a/helpcontent2 b/helpcontent2
index 7f8b84bbf7fd..3445df8b3761 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 7f8b84bbf7fda91426d01bab26b5fa0d148624a1
+Subproject commit 3445df8b3761cc8dafd0f5a275696ad54dc9bbec


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

2021-10-29 Thread Rafael Lima (via logerrit)
 AllLangHelp_sbasic.mk|1 
 source/auxiliary/sbasic.tree |1 
 source/text/sbasic/shared/03/lib_ScriptForge.xhp |8 
 source/text/sbasic/shared/03/sf_chart.xhp|  501 +++
 4 files changed, 509 insertions(+), 2 deletions(-)

New commits:
commit 3445df8b3761cc8dafd0f5a275696ad54dc9bbec
Author: Rafael Lima 
AuthorDate: Wed Oct 27 15:28:42 2021 +0200
Commit: Rafael Lima 
CommitDate: Fri Oct 29 22:41:46 2021 +0200

Create help page for SF_Chart service

Change-Id: Ie244e4416d2b523dfe460701297f6ecfc81f964d
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/124195
Tested-by: Jenkins
Reviewed-by: Rafael Lima 

diff --git a/AllLangHelp_sbasic.mk b/AllLangHelp_sbasic.mk
index d1acdf5a4..f154d1de6 100644
--- a/AllLangHelp_sbasic.mk
+++ b/AllLangHelp_sbasic.mk
@@ -84,6 +84,7 @@ $(eval $(call gb_AllLangHelp_add_helpfiles,sbasic,\
 helpcontent2/source/text/sbasic/shared/03/sf_base \
 helpcontent2/source/text/sbasic/shared/03/sf_basic \
 helpcontent2/source/text/sbasic/shared/03/sf_calc \
+helpcontent2/source/text/sbasic/shared/03/sf_chart \
 helpcontent2/source/text/sbasic/shared/03/sf_database \
 helpcontent2/source/text/sbasic/shared/03/sf_dialog \
 helpcontent2/source/text/sbasic/shared/03/sf_dialogcontrol \
diff --git a/source/auxiliary/sbasic.tree b/source/auxiliary/sbasic.tree
index cdd7c7ae6..562abdbda 100644
--- a/source/auxiliary/sbasic.tree
+++ b/source/auxiliary/sbasic.tree
@@ -342,6 +342,7 @@
 Base service
 Basic service
 Calc service
+Chart service
 Database service
 Dialog service
 DialogControl 
service
diff --git a/source/text/sbasic/shared/03/lib_ScriptForge.xhp 
b/source/text/sbasic/shared/03/lib_ScriptForge.xhp
index 466532b1d..17cbac0d8 100644
--- a/source/text/sbasic/shared/03/lib_ScriptForge.xhp
+++ b/source/text/sbasic/shared/03/lib_ScriptForge.xhp
@@ -78,13 +78,14 @@

  
Base
-   Calc
+   Calc
+   Chart
  


  
Database
-   Document
+   Document
  

 
@@ -138,6 +139,9 @@
 
   
 
+
+  
+
 
   
 
diff --git a/source/text/sbasic/shared/03/sf_chart.xhp 
b/source/text/sbasic/shared/03/sf_chart.xhp
new file mode 100644
index 0..62136eeeb
--- /dev/null
+++ b/source/text/sbasic/shared/03/sf_chart.xhp
@@ -0,0 +1,501 @@
+
+
+
+
+  
+ScriptForge.Chart service
+/text/sbasic/shared/03/sf_chart.xhp
+  
+  
+
+  
+
+  Chart service
+
+  
+  
+ScriptForge.Chart 
service
+The 
Chart service provides a set of properties and methods to 
handle charts in Calc documents. With this service it is possible 
to:
+
+  
+Access chart 
objects in Calc documents and manipulate their properties.
+  
+  
+Create and 
insert new charts into a Calc document.
+  
+  
+Export charts as 
image files.
+  
+
+  
+
+  Chart names
+  Charts may have two 
different names:
+  
+
+An internal 
name given by %PRODUCTNAME as soon as the chart object is created 
(usually "Object 1", "Object 2" and so on).
+
+
+A 
user-defined name, which can be defined by right-clicking the 
chart and choosing Name in the context menu.
+
+  
+  The Chart service 
primarily uses the user-defined name to access a chart object. If it does not 
exist, than the internal name is used.
+
+  Service invocation
+  The 
Chart service is instantiated from a Calc 
service instance either using the Charts or 
CreateChart methods.
+  
+  The example below 
creates a Chart service instance from an existing chart in 
the current Calc document:
+  
+GlobalScope.BasicLibraries.LoadLibrary("ScriptForge")
+Dim 
oDoc as Object, oChart as Object
+Set 
oDoc = CreateScriptService("Calc")
+Set 
oChart = oDoc.Charts("Sheet1", "Object 1")
+  
+  The following example 
instantiate the Chart service by creating a new chart object 
based on the data contained in the range "Sheet1.A1:C10".
+  
+Dim 
oDoc as Object, oChart as Object
+Set 
oDoc = CreateScriptService("Calc")
+Set 
oChart = oDoc.CreateChart("My Chart", "Sheet1", "Sheet1.A1:C10")
+  
+  Read the CreateChart method description to learn more 
about its arguments.
+
+  
+  The examples above 
can be written in Python as follows:
+  
+from 
scriptforge import CreateScriptService
+doc = 
CreateScriptService("Calc")
+chart 
= doc.Charts("Sheet1", "Object 1")
+  
+  
+doc = 
CreateScriptService("Calc")
+chart 
= doc.CreateChart("My Chart", "Sheet1", "Sheet1.A1:C10")
+  
+
+  
+Chart service;ChartType
+Chart service;Deep
+Chart service;Dim3D
+Chart service;Exploded
+Chart 

[Libreoffice-bugs] [Bug 145386] bogus lang-tag in status bar language selector

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145386

Michael Meeks  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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

[Libreoffice-bugs] [Bug 145386] New: bogus lang-tag in status bar language selector

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145386

Bug ID: 145386
   Summary: bogus lang-tag in status bar language selector
   Product: LibreOffice
   Version: 7.2.2.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: michael.me...@collabora.com

Created attachment 176010
  --> https://bugs.documentfoundation.org/attachment.cgi?id=176010=edit
a document

Loading this simple document - I get a language in the status bar of: English
(United Kingdom){en-GB} which is unexpected and looks odd.

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

[Libreoffice-bugs] [Bug 145376] Separate pages too hard to see in page panel

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145376

BogdanB  changed:

   What|Removed |Added

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

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

I know this is a windows only bug, but I wanted to show steve how LO is looking
on my linux. Master version. 7.3

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

[Libreoffice-bugs] [Bug 145381] Hyperlinks losing final Bracket (Writer, Impress, etc)

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145381

Michael Warner  changed:

   What|Removed |Added

Summary|Hyperlinks loosing final|Hyperlinks losing final
   |Bracket (Writer, Impress,   |Bracket (Writer, Impress,
   |etc)|etc)

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

[Libreoffice-bugs] [Bug 107733] [META] Hyperlink bugs and enhancements

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107733

BogdanB  changed:

   What|Removed |Added

 Depends on||141104


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=141104
[Bug 141104] Strings ending with closing parenthesis ")" are wrongly converted
to URL
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 141104] Strings ending with closing parenthesis ")" are wrongly converted to URL

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141104

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 145381] Hyperlinks loosing final Bracket (Writer, Impress, etc)

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145381

Michael Warner  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #4 from Michael Warner  ---
*** Bug 141104 has been marked as a duplicate of this bug. ***

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

[Libreoffice-bugs] [Bug 141104] Strings ending with closing parenthesis ")" are wrongly converted to URL

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141104

Michael Warner  changed:

   What|Removed |Added

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

--- Comment #3 from Michael Warner  ---


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

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

[Libreoffice-bugs] [Bug 145385] Organizer tab in Paragraph style wrongly displays the before text indent

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145385

BogdanB  changed:

   What|Removed |Added

 Ever confirmed|0   |1
Version|7.2.2.2 release |5.4.7.2 release
 Status|UNCONFIRMED |NEW

--- Comment #3 from BogdanB  ---
Also in
Version: 5.4.7.2
Build ID: c838ef25c16710f8838b1faec480ebba495259d0
CPU threads: 4; OS: Linux 5.11; UI render: default; VCL: gtk2; 
Locale: ro-RO (ro_RO.UTF-8); Calc: group

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

[Libreoffice-bugs] [Bug 145381] Hyperlinks loosing final Bracket (Writer, Impress, etc)

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145381

--- Comment #3 from Michael Warner  ---
This is a duplicate of bug 141104.

Also consider the discussion in bug 113526. 

Putting a whole URL in parens or as part of a subexpression (like this:
https://www.example.com) is a common use case and the trailing paren shouldn't
be part of the link then, but IMHO if there is an opening paren inside the URL
then the matching closing one should be added.

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

[Libreoffice-bugs] [Bug 145385] Organizer tab in Paragraph style wrongly displays the before text indent

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145385

BogdanB  changed:

   What|Removed |Added

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

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

I think just the info that this shown there is wrong, the Style Inspector from
Sidebar is showing in mm:
 -499 Para Fisrt Line Indent
 +900 Para Left Margin
 +  0 Para Right Margin 

See the image.

But I confirm the info is wrong.

Version: 7.2.2.2 / LibreOffice Community
Build ID: 02b2acce88a210515b4a5bb2e46cbfb63fe97d56
CPU threads: 4; OS: Linux 5.11; UI render: default; VCL: gtk3
Locale: ro-RO (ro_RO.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-commits] core.git: Branch 'feature/wasm' - 468 commits - accessibility/Library_acc.mk accessibility/source android/Bootstrap apple_remote/source avmedia/Library_avmedia.mk avmedia/Module_

2021-10-29 Thread Jan-Marek Glogowski (via logerrit)
Rebased ref, commits from common ancestor:
commit 92b65fc9579720de53dc5b82688d10a93fd54a27
Author: Jan-Marek Glogowski 
AuthorDate: Fri Oct 29 20:32:43 2021 +0200
Commit: Jan-Marek Glogowski 
CommitDate: Fri Oct 29 20:33:20 2021 +0200

Minimize bridge code

This way it doesn't fail the optimized build.

Change-Id: I7d1b1e56da359835373ce093bb18df8219a09aac

diff --git a/bridges/source/cpp_uno/gcc3_wasm/cpp2uno.cxx 
b/bridges/source/cpp_uno/gcc3_wasm/cpp2uno.cxx
index 90e1d372da03..fd7fa817588a 100644
--- a/bridges/source/cpp_uno/gcc3_wasm/cpp2uno.cxx
+++ b/bridges/source/cpp_uno/gcc3_wasm/cpp2uno.cxx
@@ -5,536 +5,43 @@
  * This Source Code Form is subject to the terms of the Mozilla Public
  * License, v. 2.0. If a copy of the MPL was not distributed with this
  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- *   Licensed to the Apache Software Foundation (ASF) under one or more
- *   contributor license agreements. See the NOTICE file distributed
- *   with this work for additional information regarding copyright
- *   ownership. The ASF licenses this file to you under the Apache
- *   License, Version 2.0 (the "License"); you may not use this file
- *   except in compliance with the License. You may obtain a copy of
- *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
-#include 
-#include 
-#include 
-#include 
-#include "bridge.hxx"
-#include "cppinterfaceproxy.hxx"
-#include "types.hxx"
-#include "vtablefactory.hxx"
-#include "share.hxx"
-
-
-
-extern "C" int codeSnippets[];
-const int nFunIndexes = 8;
-const int nVtableOffsets = 4;
-
 
+#include 
+#include 
 
 using namespace ::com::sun::star::uno;
 
-namespace
-{
-static typelib_TypeClass cpp2uno_call(
-bridges::cpp_uno::shared::CppInterfaceProxy* pThis,
-const typelib_TypeDescription * pMemberTypeDescr,
-typelib_TypeDescriptionReference * pReturnTypeRef,
-sal_Int32 nParams,
-typelib_MethodParameter * pParams,
-void ** pCallStack,
-sal_Int64 * pRegisterReturn /* space for register return */ )
-{
-// pCallStack: x8, lr, d0..d7, x0..x7, rest of params originally on 
stack
-char *pTopStack = (char *)pCallStack;
-char *pFloatRegs = pTopStack + 2;
-char *pGPRegs =  pTopStack + (2+8)*8;
-char *pStackedArgs = pTopStack + (2+8+8)*8;
-
-int nGPR = 0;
-int nFPR = 0;
-
-// return
-typelib_TypeDescription * pReturnTypeDescr = 0;
-if (pReturnTypeRef)
-TYPELIB_DANGER_GET( , pReturnTypeRef );
-
-void * pUnoReturn = 0;
-// complex return ptr: if != 0 && != pUnoReturn, reconversion need
-void * pCppReturn = 0;
-
-if (pReturnTypeDescr)
-{
-if (!arm::return_in_x8(pReturnTypeRef))
-pUnoReturn = pRegisterReturn; // direct way for simple types
-else // complex return via x8
-{
-pCppReturn = pCallStack[0];
-
-pUnoReturn = (bridges::cpp_uno::shared::relatesToInterfaceType(
-pReturnTypeDescr )
-? alloca( pReturnTypeDescr->nSize )
-: pCppReturn); // direct way
-}
-}
-
-// Skip 'this'
-pGPRegs += 8;
-nGPR++;
-
-// Parameters
-void ** pUnoArgs = (void **)alloca( sizeof(void *) * nParams );
-void ** pCppArgs = (void **)alloca( sizeof(void *) * nParams );
-
-// Indices of values this have to be converted (interface conversion
-// cpp<=>uno)
-int * pTempIndices = (int *)alloca( sizeof(int) * nParams);
-
-// Type descriptions for reconversions
-typelib_TypeDescription ** ppTempParamTypeDescr = 
(typelib_TypeDescription **)alloca( sizeof(typelib_TypeDescription *) * 
nParams);
-
-int nTempIndices = 0;
-
-for ( int nPos = 0; nPos < nParams; ++nPos )
-{
-const typelib_MethodParameter & rParam = pParams[nPos];
-typelib_TypeDescription * pParamTypeDescr = 0;
-TYPELIB_DANGER_GET( , rParam.pTypeRef );
-
-if (!rParam.bOut &&
-bridges::cpp_uno::shared::isSimpleType( pParamTypeDescr ))
-{
-if (nFPR < 8 && (pParamTypeDescr->eTypeClass == 
typelib_TypeClass_FLOAT ||
- pParamTypeDescr->eTypeClass == 
typelib_TypeClass_DOUBLE))
-{
-pCppArgs[nPos] = pUnoArgs[nPos] = pFloatRegs;
-pFloatRegs += 8;
-nFPR++;
-}
-else if (pParamTypeDescr->eTypeClass == 
typelib_TypeClass_FLOAT)
-{
-if ((pStackedArgs - pTopStack) % 4)
-pStackedArgs += 4 - ((pStackedArgs - pTopStack) % 4);
-pCppArgs[nPos] 

[Libreoffice-bugs] [Bug 105605] [META] Digital signatures bugs and enhancements

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105605
Bug 105605 depends on bug 105856, which changed state.

Bug 105856 Summary: XAdES signature created via LibreOffice is not compliant 
(SignedProperties reference is missing Type attribute).
https://bugs.documentfoundation.org/show_bug.cgi?id=105856

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 105856] XAdES signature created via LibreOffice is not compliant (SignedProperties reference is missing Type attribute).

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105856

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 CC||kelem...@ubuntu.com
 Resolution|--- |DUPLICATE
 Status|NEW |RESOLVED

--- Comment #11 from Gabor Kelemen (allotropia)  ---
(In reply to Gabor Kelemen (allotropia) from comment #10)
> Created attachment 176003 [details]
> Example file signed with 6.2
> 
> Looks like the missing Type="http://uri.etsi.org/01903#SignedProperties
> attribute is added at least since 6.2 - but it was not added in 6.1

Since:

https://git.libreoffice.org/core/+/ea3a5036d23081b6e8eb38a399ff8ef5acd8adc7

author  Miklos Vajna   Mon Aug 27 09:15:16 2018 +0200
committer   Miklos Vajna   Mon Aug 27 19:15:55
2018 +0200

tdf#119309 xmlsecurity xades: missing XML attribute on idSignedProperties ref

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

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

[Libreoffice-bugs] [Bug 145258] Comments cut-off in writer

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145258

--- Comment #11 from Andy  ---
Created attachment 176007
  --> https://bugs.documentfoundation.org/attachment.cgi?id=176007=edit
The screen capture of the diplay of the previous ODT file on my PC, with red
arrows added to show where the problem is

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

[Libreoffice-bugs] [Bug 145258] Comments cut-off in writer

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145258

--- Comment #10 from Andy  ---
Created attachment 176006
  --> https://bugs.documentfoundation.org/attachment.cgi?id=176006=edit
An ODT files displaying the problem, as requested

The attachment next to this one is the screen capture of the open document, so
as to allow to check if it is rendered differently on other PCs

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

[Libreoffice-bugs] [Bug 138347] Link to call Basic script with vnd.sun.star.script: not working in Writer. Same thing working in Calc (also with HYPERLINK()).

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138347

Michael Warner  changed:

   What|Removed |Added

 Blocks||107733


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 107733] [META] Hyperlink bugs and enhancements

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107733

Michael Warner  changed:

   What|Removed |Added

 Depends on||138347


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=138347
[Bug 138347] Link to call Basic script with vnd.sun.star.script: not working in
Writer. Same thing working in Calc (also with HYPERLINK()).
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 141104] Strings ending with closing parenthesis ")" are wrongly converted to URL

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141104

Michael Warner  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 113526] Equal sign at end of hyperlink not included as part of hyperlink

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113526

Michael Warner  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 145365] Calc UI scrolls sheet tabs after renaming a tab

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145365

Michael Warner  changed:

   What|Removed |Added

   Severity|normal  |minor

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

[Libreoffice-commits] core.git: Changes to 'refs/tags/libreoffice-7.3.0.0.alpha1'

2021-10-29 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-7.3.0.0.alpha1' created by Christian Lohmaier 
 at 2021-10-29 17:06 +

Tag libreoffice-7.3.0.0.alpha1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAmF8KiYACgkQ9DSh76/u
rqNHjg//b5s7BP+DI6bR66wV8H1dUs9Yd4Pwb3NROWvlKWABsOzTJOLcGUdU4RPg
qq15iSbyf7iNuJLS3uPkgfPHz3Hb9e0HuQyB6DoCjeDrWlmTzuquWuP+I6fLxrIM
sGCewGBAlZ63FmzAHuhr8R3QJqiHQPi/8ZzNeKzp1GoWmvGnwaIN012Av1hjPTH6
navsrmGVEqNb5AlhaxE4t3QFr4nCPuoX8/JFSu9KnN9nflILWJWenSrOyCpgnwUx
iHs+dKhOJZmUj04kZT/WyPsPf+KIva+zm5407oMV6S9F2If+v64UMresTyr7Al5Y
0KxBXiijAzO4iU+V66JxypgTvOWRbTBNyhZdEoqg2gPOIfEMRqxkLXgr+QnKgu70
ahuDZH20XkKUqN0aGJxx1oaSLjhecIEjfmJu10IYQ3tabZmimwPIbGDz7JcAuwxy
BoXvg/vY3cjIKl9q34RNDyfKjLq2gOkxCwhio92bkEDX6WKqLTfOf6hBIb7MJ4mx
JYF8YC8FjuludgYBNzOZbzyjTXC8u33S8/rDMtZWaumECuE7L0U/ErK52wIvpzZ3
TJNppJ0XL+JVDXikUWIPbpsCCH5bAUqlAoA2ArW8ow6pzSBBBbzg5E1vmVi3mrzz
4yTUot6nrK6dHRA95TC8Gavpm2T1G6eGpSOZj2VSHaNmxYuyRc4=
=m7Ni
-END PGP SIGNATURE-

Changes since libreoffice-7-2-branch-point-4763:
---
 0 files changed
---


[Libreoffice-commits] translations.git: Changes to 'refs/tags/libreoffice-7.3.0.0.alpha1'

2021-10-29 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-7.3.0.0.alpha1' created by Christian Lohmaier 
 at 2021-10-29 17:06 +

Tag libreoffice-7.3.0.0.alpha1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAmF8KiYACgkQ9DSh76/u
rqNS5Q/7Bd0b46yI6uWIA08sUOD8irCwcdG5pOCClSwuDRybfZmaY75Sk6Pk0Jjr
RZYmu+x4PMP/r7IBEJMQ0HHqLuFWCZVp1SJkwtjGxjyvXXNGrs5l55QCeErkItlU
ypH6BJjOfjNAgkwnOtyAaDDERz0wZGNBkpQVYZ/RjJ1ylWDp/GYEZV1NagWaMnxp
09bLqU6s8i94e72KQ+MlVgbfUAUNehrybv82mlQ6/OQ+OXuoZ2zMI6XB0Nf4PcHi
fEzAUZ9HF2jkIk4khIOOYEoulZieW+0qdWCYjUzaFZwwp3U5bxsL8QF8hKn/YUXo
j4rNyggs315iteAnPSCkp96m+qGv0xvrVNkxDD05Zk1xWbftKpKkIMz/On2sRCY7
nNtTia5khDBiY4bMWYz1pf44AGUtVMF+N90FNFbocu198rlYfxfpdpQdi6taujy0
Cim3WF/kpaUYNcRtDExi/NDRff6JLO/xwRZEZtFU1Hxyu8s27apJ52MD0aUK7J6q
RuDmuxmUNCaxuMLRRmF1pcN36r3fO5H3OvbMwYJTXqh3bW6hqr+8ZoczxKVguROv
m9LoU3IEwZt7TK6qIHQwDcYmY+oQoagyBQb6epcvLGq+PHOLB+hOKw4M9jvSs6MI
ClC1TSArRk+048BLUkFljHZktGv9WXWWHriPbDft0Q4WYI/k4T4=
=P7xq
-END PGP SIGNATURE-

Changes since libreoffice-7-2-branch-point-16:
---
 0 files changed
---


[Libreoffice-commits] help.git: Changes to 'refs/tags/libreoffice-7.3.0.0.alpha1'

2021-10-29 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-7.3.0.0.alpha1' created by Christian Lohmaier 
 at 2021-10-29 17:06 +

Tag libreoffice-7.3.0.0.alpha1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAmF8KiYACgkQ9DSh76/u
rqOoYhAAoNWAb5eizveNM/Ag6enOB6S6t/VBOm/xrsqZLC7nx77HoswEdQV5HqiZ
8xY9/uYeYQfa1JKkyI9ML+A2sp9Yk+07sl5S7PQkU6O9r3Cq8GqKVu/SpW/s+XO+
J6wNJMPiu0gZF/m2uRHYFxL9/lH173VbmjxOM7pgmUHFFKQna0c9wLEOKYnAsQyV
S0pCBZ4Ve68jkwK1EuldcHUTQW5atCZfT14CxEpMhAXR45Y1TMQIG2oPE/bD0/LX
W6wRYFf7JoYPHJhpy5fPZwObOn1u+GDkUmz94ACYYvEWXEYJTWXn1KrhMZFtUeKb
5gmd2/YgvHEmxieKQN0nn8U5EVYNFopZKRjwQhpY3h/lDdaRVpiS7PNwXlaVdLET
0tbus5/8sFc4XsQ+fQbVO+5vcETI7r1t06C3NaAEBYDaPiy/CNiZuOTzHrEK6/wF
RTyPhKSRJpmDmZSnVaTwig3qcknBFC/kYN2zwGqcPZ+Hfk103w2uWipAkqorHSYw
Ru/r4q0Km+eRXHUAL6yhmYtsdm70t6Sp/b7EVOH0k36USphrbznk+aH2jIynsmXJ
8yFsqo78n+8R599Fo4NGGtGhRsPXK+d753YICgU8xpxPF7hm709nEOAxDpMiH/4g
1InGw52ZCeHhWNYVY98of1phz7x/b4oq65wFjNhIeTqE0lAbd+c=
=Wu5n
-END PGP SIGNATURE-

Changes since libreoffice-7-2-branch-point-342:
---
 0 files changed
---


[Libreoffice-commits] dictionaries.git: Changes to 'refs/tags/libreoffice-7.3.0.0.alpha1'

2021-10-29 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-7.3.0.0.alpha1' created by Christian Lohmaier 
 at 2021-10-29 17:06 +

Tag libreoffice-7.3.0.0.alpha1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAmF8KiIACgkQ9DSh76/u
rqPSKQ/7BpjhMBETq3HUCX9WfG5uRQrasV4FZct5T+78SzuafjfCRUTYahxhx/XT
0g5pq7zVNWiXCPqrMPGlG31yRVPiRfhxLF+U+A3o5dIwVbE9YG+tKgCpDVMFLpp/
3unFq8sDHM5ZwER+NGPVpQ48ltlxXJB234JdcC4nIcFcpjSCPFsAArU7jy29BnbQ
7inlLzNH7jY8XEGketRQmFSVYJO1g5ONyiZZyx4ykNxnPo1lNg0n7E6TQzWXnxHs
9ObfTg0/P87NTPXicPe21uVGpMb5XPm0DxSaGDytQKuoqIhbzOOJBzvJuGeAljE/
wxjQC7bURXu//FdVgyPU2wixUJojPEhV9BiIRNR+nOmQK8PKmHc4jW7qoy/haxBM
M85RAvXPema90QCukQojbJviLntYGOfcXIgXAr46cnBstse1QCRSgPItihfGwm86
9uORMRBymcNswXTDZAz9f5jvMlcLFdummoAf0yxoC8VcIibClnqK7ZeUkB1GQJw1
xUeNEK5htLrUdZmyOOUlQnLM6puWwyU/XI16uWgBV88he0smyi03VloZEAoFXxgg
AFaEOqYlZzaz15wS0KsRVXwalRbX5lDoW0ZC/5kuV6u9p9AbVGAjzPNSPzRuAkyO
i0NwFPx6X6qM6ls9i6Jm7atCXkXanS+3jk1y5hpbCW1CLATWFJo=
=nP24
-END PGP SIGNATURE-

Changes since libreoffice-7-2-branch-point-30:
---
 0 files changed
---


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

2021-10-29 Thread Christian Lohmaier (via logerrit)
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d23e106b55794160aa4c45e93b125bd84da1b726
Author: Christian Lohmaier 
AuthorDate: Fri Oct 29 19:07:50 2021 +0200
Commit: Christian Lohmaier 
CommitDate: Fri Oct 29 19:07:50 2021 +0200

bump product version to 7.3.0.0.alpha1+

Change-Id: I0e62ad9397ae3a9558f609afb37f44e56b0a4e9e

diff --git a/configure.ac b/configure.ac
index f0cca1285c76..8b35199de6da 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ dnl in order to create a configure script.
 # several non-alphanumeric characters, those are split off and used only for 
the
 # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no 
idea.
 
-AC_INIT([LibreOffice],[7.3.0.0.alpha0+],[],[],[http://documentfoundation.org/])
+AC_INIT([LibreOffice],[7.3.0.0.alpha1+],[],[],[http://documentfoundation.org/])
 
 dnl libnumbertext needs autoconf 2.68, but that can pick up autoconf268 just 
fine if it is installed
 dnl whereas aclocal (as run by autogen.sh) insists on using autoconf and fails 
hard


[Libreoffice-bugs] [Bug 144625] Regression: a macro stopped working with upgrade of LO.

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144625

--- Comment #10 from Robert Großkopf  ---
Seem you try to connect to a MySQL or MariaDB database. This is what the error
describes.

I have opened the attached file with LO 7.2.2.2, 7.1.5.2, 7.0.5.2 and also
6.4.7.2 - nothing special happens there. Will always get an empty page under
OpenSUSE 15.2 64bit rpm Linux.

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

[Libreoffice-bugs] [Bug 145258] Comments cut-off in writer

2021-10-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145258

--- Comment #9 from Buovjaga  ---
Please, can someone who is able to reproduce this do a bibisect as this seems
like a regression: https://wiki.documentfoundation.org/QA/Bibisect

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

[Libreoffice-commits] core.git: translations

2021-10-29 Thread Christian Lohmaier (via logerrit)
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 47de08e518ba88b01ec7aaad5450778332048a72
Author: Christian Lohmaier 
AuthorDate: Fri Oct 29 18:31:09 2021 +0200
Commit: Gerrit Code Review 
CommitDate: Fri Oct 29 18:31:09 2021 +0200

Update git submodules

* Update translations from branch 'master'
  to 327c876f4c35127cff03b26303acd4831252ce66
  - update translations for 7.3.0 alpha1

and force-fix errors using pocheck

Change-Id: I9968e128a11cee0afa01bb87dc619ee180d2209f

diff --git a/translations b/translations
index 569442292afe..327c876f4c35 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit 569442292afe8da0847d542276cdddea3d1728a1
+Subproject commit 327c876f4c35127cff03b26303acd4831252ce66


[Libreoffice-commits] translations.git: source/ab source/af source/am source/an source/ar source/as source/ast source/az source/be source/bg source/bn source/bn-IN source/bo source/br source/brx sourc

2021-10-29 Thread Christian Lohmaier (via logerrit)
 source/ab/svx/messages.po 
|  318 +-
 source/af/extensions/messages.po  
|   28 
 source/af/svx/messages.po 
|  320 +-
 source/af/sw/messages.po  
|   28 
 source/am/helpcontent2/source/text/sbasic/shared.po   
|  182 -
 source/am/helpcontent2/source/text/scalc/01.po
|   44 
 source/am/helpcontent2/source/text/shared/guide.po
| 1511 +
 source/am/svx/messages.po 
|  318 +-
 source/an/svx/messages.po 
|  320 +-
 source/ar/helpcontent2/source/text/sbasic/shared.po   
|  182 -
 source/ar/helpcontent2/source/text/scalc/01.po
|   42 
 source/ar/helpcontent2/source/text/shared/guide.po
| 1523 +
 source/ar/sfx2/classification.po  
|   36 
 source/ar/svx/messages.po 
|  318 +-
 source/as/svx/messages.po 
|  318 +-
 source/ast/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po 
|6 
 source/ast/helpcontent2/source/text/sbasic/shared.po  
|  182 -
 source/ast/helpcontent2/source/text/sbasic/shared/03.po   
|8 
 source/ast/helpcontent2/source/text/scalc/01.po   
|   44 
 source/ast/helpcontent2/source/text/shared/guide.po   
| 1517 +
 source/ast/sc/messages.po 
|9 
 source/ast/sd/messages.po 
|7 
 source/ast/svx/messages.po
|  320 +-
 source/ast/sw/messages.po 
|   28 
 source/ast/vcl/messages.po
|6 
 source/az/svx/messages.po 
|  318 +-
 source/be/svx/messages.po 
|  318 +-
 source/bg/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po  
|   10 
 source/bg/dbaccess/messages.po
|8 
 source/bg/helpcontent2/source/text/sbasic/shared.po   
|  182 -
 source/bg/helpcontent2/source/text/scalc/01.po
|   44 
 source/bg/helpcontent2/source/text/shared/guide.po
| 1515 +
 source/bg/helpcontent2/source/text/swriter/00.po  
|6 
 source/bg/sd/messages.po  
|   12 
 source/bg/svtools/messages.po 
|6 
 source/bg/svx/messages.po 
|  318 +-
 source/bn-IN/helpcontent2/source/text/sbasic/shared.po
|  182 -
 source/bn-IN/helpcontent2/source/text/scalc/01.po 
|   44 
 source/bn-IN/helpcontent2/source/text/shared/guide.po 
| 1517 +
 source/bn-IN/svx/messages.po  
|  318 +-
 source/bn/helpcontent2/source/text/sbasic/shared.po   
|  182 -
 source/bn/helpcontent2/source/text/scalc/01.po
|   44 
 source/bn/helpcontent2/source/text/shared/guide.po
| 1517 +
 source/bn/svx/messages.po 
|  318 +-
 source/bo/helpcontent2/source/text/sbasic/shared.po   
|  182 -
 source/bo/helpcontent2/source/text/scalc/01.po
|   44 
 source/bo/helpcontent2/source/text/shared/guide.po
| 1517 +
 source/bo/svx/messages.po 
|  318 +-
 source/br/svx/messages.po 
|  318 +-
 source/brx/svx/messages.po
|  318 +-
 source/bs/helpcontent2/source/text/sbasic/shared.po   
|  182 -
 source/bs/helpcontent2/source/text/scalc/01.po
|   42 
 source/bs/helpcontent2/source/text/shared/guide.po
| 1523 +
 source/bs/svx/messages.po 
|  318 +-
 source/ca-valencia/helpcontent2/source/text/sbasic/shared.po  
|  182 -
 

  1   2   3   4   >