[Libreoffice-bugs] [Bug 81765] FILEOPEN: slow loading in minutes of .ods and .xlsx with >1000 of conditional formats, also dump

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81765

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

https://git.libreoffice.org/core/+/c757117afb398277a46e79ba22066c5bbf2c9f72%5E%21

tdf#81765 slow loading of .ods with >1000 of conditional formats, part 2

It will be available in 6.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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-commits] core.git: include/svl sc/inc sc/source svl/source

2019-04-20 Thread Noel Grandin (via logerrit)
 include/svl/itempool.hxx  |7 +++
 sc/inc/attarray.hxx   |   16 +++-
 sc/inc/column.hxx |7 ++-
 sc/inc/docpool.hxx|4 +-
 sc/inc/document.hxx   |2 +
 sc/inc/table.hxx  |8 +---
 sc/source/core/data/attarray.cxx  |   71 ++
 sc/source/core/data/column.cxx|   15 ++--
 sc/source/core/data/column4.cxx   |6 +--
 sc/source/core/data/docpool.cxx   |6 +--
 sc/source/core/data/document.cxx  |8 
 sc/source/core/data/table2.cxx|   19 ++
 sc/source/core/data/table3.cxx|6 +--
 sc/source/filter/rtf/eeimpars.cxx |   44 +++
 sc/source/ui/undo/undocell.cxx|6 +--
 svl/source/items/itempool.cxx |   20 +-
 16 files changed, 157 insertions(+), 88 deletions(-)

New commits:
commit c757117afb398277a46e79ba22066c5bbf2c9f72
Author: Noel Grandin 
AuthorDate: Sat Apr 20 13:03:33 2019 +0200
Commit: Noel Grandin 
CommitDate: Sun Apr 21 07:58:14 2019 +0200

tdf#81765 slow loading of .ods with >1000 of conditional formats, part 2

This takes the loading time from 15s to 14s.

Reduce unnecessary allocation/copying by passing down ownership of the
newly created ScPatternAttr to the item pool

Change-Id: Iec38bbff572d10ff8d86f5e65fbe9a96b6a5a706
Reviewed-on: https://gerrit.libreoffice.org/71010
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/include/svl/itempool.hxx b/include/svl/itempool.hxx
index f987cf15ae62..391e1b942544 100644
--- a/include/svl/itempool.hxx
+++ b/include/svl/itempool.hxx
@@ -146,7 +146,10 @@ public:
 virtual SfxItemPool*Clone() const;
 const OUString& GetName() const;
 
-virtual const SfxPoolItem&  Put( const SfxPoolItem&, sal_uInt16 nWhich 
= 0 );
+const SfxPoolItem&  Put( std::unique_ptr xItem, 
sal_uInt16 nWhich = 0 )
+{ return PutImpl( *xItem.release(), nWhich, /*bPassingOwnership*/true); }
+const SfxPoolItem&  Put( const SfxPoolItem& rItem, sal_uInt16 
nWhich = 0 )
+{ return PutImpl( rItem, nWhich, /*bPassingOwnership*/false); }
 voidRemove( const SfxPoolItem& );
 
 const SfxPoolItem&  GetDefaultItem( sal_uInt16 nWhich ) const;
@@ -195,6 +198,8 @@ public:
 
 voiddumpAsXml(xmlTextWriterPtr pWriter) const;
 
+protected:
+virtual const SfxPoolItem&  PutImpl( const SfxPoolItem&, sal_uInt16 
nWhich = 0, bool bPassingOwnership = false );
 private:
 const SfxItemPool&  operator=(const SfxItemPool &) = delete;
 
diff --git a/sc/inc/attarray.hxx b/sc/inc/attarray.hxx
index d2ca2d7c842f..b43befd45e84 100644
--- a/sc/inc/attarray.hxx
+++ b/sc/inc/attarray.hxx
@@ -137,9 +137,16 @@ public:
 voidApplyBlockFrame(const SvxBoxItem& rLineOuter, const 
SvxBoxInfoItem* pLineInner,
 SCROW nStartRow, SCROW nEndRow, bool bLeft, SCCOL 
nDistRight);
 
-voidSetPattern( SCROW nRow, const ScPatternAttr* pPattern, bool 
bPutToPool = false );
+voidSetPattern( SCROW nRow, const ScPatternAttr* pPattern, bool 
bPutToPool = false )
+{ SetPatternAreaImpl(nRow, nRow, pPattern, bPutToPool, nullptr, 
/*bPassingOwnership*/false); }
+const ScPatternAttr* SetPattern( SCROW nRow, 
std::unique_ptr pPattern, bool bPutToPool = false )
+{ return SetPatternAreaImpl(nRow, nRow, pPattern.release(), bPutToPool, 
nullptr, /*bPassingOwnership*/true); }
+voidSetPatternArea( SCROW nStartRow, SCROW nEndRow, 
std::unique_ptr pPattern,
+bool bPutToPool = false, ScEditDataArray* 
pDataArray = nullptr)
+{ SetPatternAreaImpl(nStartRow, nEndRow, pPattern.release(), bPutToPool, 
pDataArray, /*bPassingOwnership*/true); }
 voidSetPatternArea( SCROW nStartRow, SCROW nEndRow, const 
ScPatternAttr* pPattern,
-bool bPutToPool = false, ScEditDataArray* 
pDataArray = nullptr );
+bool bPutToPool = false, ScEditDataArray* 
pDataArray = nullptr)
+{ SetPatternAreaImpl(nStartRow, nEndRow, pPattern, bPutToPool, pDataArray, 
/*bPassingOwnership*/false); }
 voidApplyStyleArea( SCROW nStartRow, SCROW nEndRow, const 
ScStyleSheet& rStyle );
 voidApplyCacheArea( SCROW nStartRow, SCROW nEndRow, SfxItemPoolCache* 
pCache,
 ScEditDataArray* pDataArray = nullptr, bool* const 
pIsChanged = nullptr );
@@ -210,6 +217,11 @@ public:
 boolReserve( SCSIZE nReserve );
 SCSIZE  Count() const { return mvData.size(); }
 SCSIZE  Count( SCROW nRow1, SCROW nRow2 ) const;
+
+private:
+const ScPatternAttr* SetPatternAreaImpl( SCROW nStartRow, SCROW nEndRow, 
const ScPatternAttr* pPattern,
+bool bPutToPool = false, ScEditDataArray* 
pDataArray = nullptr,
+bool 

Re: bug 74702 - Issue with bool OutputDevice::IsNativeControlSupported(ControlType, ControlPart)

2019-04-20 Thread Jan-Marek Glogowski
Chiming in a little late.

Am 15.04.19 um 09:50 schrieb Kaganski Mike:
> On 15.04.2019 10:44, Adrien Ollier wrote:
>> OutputDevice::AcquireGraphics() is a pure virtual function, so we cannot 
>> know in the general case what it does.
>> And what is written is not really equivalent to what you wrote because 
>> if AcquireGraphics() is false, there is not a second check for 
>> mpGraphics. That's why it is an issue.
> 
> AcquireGraphics() is not just "any function". Despite someone could of 
> course implement it to play poker, its purpose is to acquire mpGraphics 
> and return if it succeeded. Failing that is programmer's error breaking 
> contract. There's no use to introduce that kind of checks here. Please 
> see existing implementations, like VirtualDevice::AcquireGraphics() in 
> vcl/source/gdi/virdev.cxx.
> 

This is not the nicest API - probably the bool function should be renamed, or
also return the SalGraphics* for consistency; but then naming is hard...

$ git grep AcquireGraphics include/ vcl/inc/
include/vcl/outdev.hxx:virtual bool AcquireGraphics() const = 0;
vcl/inc/salframe.hxx:virtual SalGraphics* AcquireGraphics() = 0;
vcl/inc/salprn.hxx:virtual SalGraphics* AcquireGraphics() = 0;
vcl/inc/salvd.hxx:virtual SalGraphics* AcquireGraphics() = 0;

I was interested in the fact that the bool variant is const, which is a lie.
Looking at the code it's not true and in fact ~ half of OutputDevice's member
variables are mutable. That's probably done to do some lazy init for other const
functions, quite probably all the const font based ones. Don't know if it buys a
lot of time for some usage, or should be factored out somehow... Anyway, I did:

$ git log -G AcquireGraphics include/vcl/outdev.hxx

commit 665bc42d7504c3896a485c8bab17b8eff7d119df
Author: Chris Sherlock 
Date:   Wed Apr 23 00:57:50 2014 +1000

Rename VCL's ImplInitGraphics to AcquireGraphics

Turns out, we don't try to initialize a graphics context, much less
*acquire* one. e.g. Window instances can have many frames (subwindows),
of which one some are really being used at any time so we try to
"steal" one of the graphics contexts from the frame to use ourself,
later on that frame will steal it from someone else, etc.

Change-Id: I66d5dbb7015301bc2d2be51627061c91e1f2ee5d

This has nothing to do with the const, but explains the clash - kind of.

Normally the bool variants will - at some point - call
  mpGraphics = ...->AcquireGraphics();

so much about the background stuff I was looking into.
Back to the original mail.

$ git grep "mpGraphics.*AcquireGraphics" vcl/
if ( mpGraphics || AcquireGraphics() )
if ( !mpGraphics && !AcquireGraphics() )
... 69 times

shows this idom is used some times in vcl. And IMHO it should be everywhere
reduced to:

if ( !AcquireGraphics() )
or
if ( AcquireGraphics() )

All the three bool variants start with:

$ git grep "bool.*::AcquireGraphics" vcl
vcl/source/gdi/print.cxx:bool Printer::AcquireGraphics() const
vcl/source/gdi/virdev.cxx:bool VirtualDevice::AcquireGraphics() const
vcl/source/window/window.cxx:bool Window::AcquireGraphics() const

bool *::AcquireGraphics() const
{
DBG_TESTSOLARMUTEX();

if ( mpGraphics )
return true;

The additional mutex check in debug builds is nice too.

For security I would rename the variants to Do / Impl and add an inline to the
OutputDevice header like so the "header" can't be stripped accidently:

inline bool OutputDevice::AcquireGraphics() const
{
DBG_TESTSOLARMUTEX();

if ( mpGraphics )
return true;

return DoAcqureGraphics();
}

That also prevents the function call, if that really matters here.

Anyone want to make this an easy hack?
Revert the function name to ImplInitGraphics?

Comments?

Jan-Marek
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice

[Libreoffice-bugs] [Bug 97825] SmartArt one-by-one Animation lost in PPTX import

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97825

--- Comment #5 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://downloadarchive.documentfoundation.org/libreoffice/old/

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 101677] Make text flow in tables from top to bottom first and left to right secondary

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101677

--- Comment #4 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://downloadarchive.documentfoundation.org/libreoffice/old/

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 105465] Make the "Automatic" color a real checkbox

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105465

--- Comment #3 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://downloadarchive.documentfoundation.org/libreoffice/old/

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 44418] FORMATTING: Headline spacing after page break

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=44418

--- Comment #17 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://downloadarchive.documentfoundation.org/libreoffice/old/

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 107274] FILEOPEN: from bookmark, which has fill-in as content, this is removed

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107274

--- Comment #4 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://downloadarchive.documentfoundation.org/libreoffice/old/

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 113543] When exporting to tagged PDF, characters in certain fonts are lost or misrepresented in the underlying text.

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113543

--- Comment #4 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://downloadarchive.documentfoundation.org/libreoffice/old/

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

CppCheck Report Update

2019-04-20 Thread cppcheck.libreoff...@gmail.com

A new cppcheck report is available at : 
http://dev-builds.libreoffice.org/cppcheck_reports/master/


Note:
The script generating this report was run at :
2019-21-04 02:41:47 with user buildslave at host vm140 as 
/home/buildslave/source/dev-tools/cppcheck/cppcheck-report.sh -s 
/home/buildslave/source/libo-core -c /home/buildslave/source/cppcheck -w 
/home/buildslave/tmp/www

It can be found and improved here:

https://gerrit.libreoffice.org/plugins/gitiles/dev-tools/+/master/cppcheck/cppcheck-report.sh


___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice

[Libreoffice-bugs] [Bug 101854] RENDERING: Poorman's bold not bold on Japanese font on macOS (see comment #13)

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101854

--- Comment #14 from Commit Notification 
 ---
Tomaž Vajngerl committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/+/eb5606511fac2a8ee1af7cc03c12d6c5b16f7c96%5E%21

tdf#101854 Move to CommonSalLayout removed faux bold in macos

It will be available in 6.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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 101854] RENDERING: Poorman's bold not bold on Japanese font on macOS (see comment #13)

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101854

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.3.0

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-commits] core.git: vcl/inc vcl/quartz

2019-04-20 Thread Tomaž Vajngerl (via logerrit)
 vcl/inc/quartz/salgdi.h |6 --
 vcl/quartz/ctfonts.cxx  |5 ++---
 vcl/quartz/salgdi.cxx   |9 +
 3 files changed, 15 insertions(+), 5 deletions(-)

New commits:
commit eb5606511fac2a8ee1af7cc03c12d6c5b16f7c96
Author: Tomaž Vajngerl 
AuthorDate: Sat Apr 20 21:50:37 2019 +0900
Commit: Tomaž Vajngerl 
CommitDate: Sun Apr 21 01:00:48 2019 +0200

tdf#101854 Move to CommonSalLayout removed faux bold in macos

Previously faux bold was drawn with setting a dictionary key
kCTStrokeWidthAttributeName and a value of the stroke width. This
stopped working because we don't use attributedString for drawing
anymore but we always use CTFontDrawGlyphs and draw the glyphs,
which doesn't have a way to set this attributes.

It took me a while to find a workaround (thanks to Apple's great
documentation), where we switch text drawing to fill and stroke,
and after that we can modify the stroke by changing the line
width.

Change-Id: I594fcb9c796a9c04ea8234a9938ca2f719706199
Reviewed-on: https://gerrit.libreoffice.org/71012
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/vcl/inc/quartz/salgdi.h b/vcl/inc/quartz/salgdi.h
index adb5d30429ff..d04b290a8560 100644
--- a/vcl/inc/quartz/salgdi.h
+++ b/vcl/inc/quartz/salgdi.h
@@ -90,9 +90,11 @@ public:
 CFMutableDictionaryRef  GetStyleDict( void ) const { return mpStyleDict; }
 
 /// <1.0: font is squeezed, >1.0 font is stretched, else 1.0
-float   mfFontStretch;
+float mfFontStretch;
 /// text rotation in radian
-float   mfFontRotation;
+float mfFontRotation;
+/// faux bold - true, if font doesn't have proper bold variants
+float mbFauxBold;
 
 private:
 explicit CoreTextStyle(const PhysicalFontFace&, const FontSelectPattern&);
diff --git a/vcl/quartz/ctfonts.cxx b/vcl/quartz/ctfonts.cxx
index 5a0b5b62916d..06a25965653f 100644
--- a/vcl/quartz/ctfonts.cxx
+++ b/vcl/quartz/ctfonts.cxx
@@ -50,6 +50,7 @@ CoreTextStyle::CoreTextStyle(const PhysicalFontFace& rPFF, 
const FontSelectPatte
 : LogicalFontInstance(rPFF, rFSP)
 , mfFontStretch( 1.0 )
 , mfFontRotation( 0.0 )
+, mbFauxBold(false)
 , mpStyleDict( nullptr )
 {
 double fScaledFontHeight = rFSP.mfExactHeight;
@@ -81,9 +82,7 @@ CoreTextStyle::CoreTextStyle(const PhysicalFontFace& rPFF, 
const FontSelectPatte
  ((rPFF.GetWeight() < WEIGHT_SEMIBOLD) &&
   (rPFF.GetWeight() != WEIGHT_DONTKNOW)) )
 {
-int nStroke = -lrint((3.5F * rFSP.GetWeight()) / rPFF.GetWeight());
-CFNumberRef rStroke = CFNumberCreate(nullptr, kCFNumberSInt32Type, 
);
-CFDictionarySetValue(mpStyleDict, kCTStrokeWidthAttributeName, 
rStroke);
+mbFauxBold = true;
 }
 
 // fake italic
diff --git a/vcl/quartz/salgdi.cxx b/vcl/quartz/salgdi.cxx
index 18eda87c2de7..59e2522e58e1 100644
--- a/vcl/quartz/salgdi.cxx
+++ b/vcl/quartz/salgdi.cxx
@@ -460,6 +460,15 @@ void AquaSalGraphics::DrawTextLayout(const 
GenericSalLayout& rLayout)
 SAL_INFO("vcl.cg", "CGContextSetFillColor(" << mrContext << "," << 
maTextColor << ")");
 CGContextSetFillColor(mrContext, maTextColor.AsArray());
 
+if (rStyle.mbFauxBold)
+{
+
+float fSize = rFontSelect.mnHeight / 23.0f;
+CGContextSetStrokeColor(mrContext, maTextColor.AsArray());
+CGContextSetLineWidth(mrContext, fSize);
+CGContextSetTextDrawingMode(mrContext, kCGTextFillStroke);
+}
+
 auto aIt = aGlyphOrientation.cbegin();
 while (aIt != aGlyphOrientation.cend())
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 124865] careful, crash after insert rows, file trashed after recovery, with version libo-master64~2019-04-16_03.05.57_LibreOfficeDev_6.3.0.0.alpha0_Win_x64

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124865

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m.a.riosv  ---
I can't repro.
Version: 6.3.0.0.alpha0+ (x64)
Build ID: 3083fe569f96bf0289da1e9d0ef7da15ab22e2f6
CPU threads: 4; OS: Windows 10.0; UI render: default; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2019-04-16_03:05:57
Locale: es-ES (es_ES); UI-Language: en-US
Calc: CL

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Re: Properly notify gpgme about spawn executable location on Windows

2019-04-20 Thread Thorsten Behrens
Hi Mike,

Kaganski Mike wrote:
> However, I suppose that it's possible in theory that some user python 
> script could ultimately need initializing gpgme. In that case, the 
> problem would hit the user. Having a modal dialog waiting on a possibly 
> headless server is not a correct behavior :-)
> 
Hmm - so the uitests are rigging the office in a very specific way,
using subprocess.Popen to spawn a child soffice process from python
(which calls CreateProcess on Windows). Code for that is in
uitest/libreoffice/connection.py, Python3 help blurb is

 https://docs.python.org/3/library/subprocess.html#subprocess.Popen

It is a tad surprising that this would somehow 'think' it is still the
main python executable on Windows, perhaps there's a way to
parameterize the Popen call differently to rectify that?

> My questions are:
> 
> 1. First of all - do I understand it correctly that the problem is real 
> - so there are possible scenarios involving e.g. python (or another 
> process which executable is not in LO's instdir/program), that might 
> need gpgme?
>
See above - but even for uitests, the issue might become relevant, so
I see at least no harm in keeping that fix (unless Popen can be fixed
to not have Windows inherit too much parent process attributes).

> 2. To find the executable, I use UNO_PATH envvar. As far as I can tell, 
> even directly running soffice.bin without having UNO_PATH set in 
> environment, sets the variable correctly, so this works as expected. But 
> is there a better way?
>
The canonical way seems to be something like:

OUString aProgramURL("$BRAND_BASE_DIR/" LIBO_LIBEXEC_FOLDER 
"/");
rtl::Bootstrap::expandMacros(aProgramURL);

> 3. The patch needs to add a gpgmepp wrapper for gpgme_set_global_flag 
> function,
> [snip]
> If there's no way to do that, then I'll create a pr to
> https://github.com/KDE/gpgmepp.
>
Yes please, that's how we did that in the past, too.

Thanks a lot for chasing this,

-- Thorsten

signature.asc
Description: PGP signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice

[Libreoffice-bugs] [Bug 104822] suggestion to link to information on compatibility, in dialog with standard warning, when saving in non ODF-format

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104822

Cor Nouws  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 73827] custom names of images and tables not preserved when saving as .doc or docx

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=73827

Cor Nouws  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 104520] [META] DOCX (OOXML) bug tracker

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104520
Bug 104520 depends on bug 73827, which changed state.

Bug 73827 Summary: custom names of images and tables not preserved when saving 
as .doc or docx
https://bugs.documentfoundation.org/show_bug.cgi?id=73827

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |NOTABUG

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 73827] custom names of images and tables not preserved when saving as .doc or docx

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=73827

Cor Nouws  changed:

   What|Removed |Added

 Resolution|--- |NOTABUG
 Status|NEW |RESOLVED

--- Comment #11 from Cor Nouws  ---
(In reply to Cor Nouws from comment #2)
> (In reply to Cor Nouws from comment #0)
> 
> > (When opening in Word the custom names do not exist too, so it's a problem
> > at Save)
> 
> 
> hmm, isn't the problem that Microsoft doesn't support this ?
> Then it would be NotOurBug ...

Did some checks, both in Word and in searching the WWW. And asfaics, indeed it
is a limitation of Word..
Set to Not Our Bug, but I also link to bug 104822

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124859] Worksheets other than the first not being saved for .CSV file

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124859

--- Comment #3 from Mike ellwood  ---
Thank you very much. I did some research also, and (belatedly) realised that
what I was doing was stupid.

However, LibreOffice should perhaps try a little harder to inform the user that
he's doing something stupid.
I remember getting a warning about not using and ODF, but hadn't realised the
implications.

But thanks for your quick response, and it's good to know why it didn't work,
and how to avoid the problem in future.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 115291] List incompatible features when saving to alien formats in detail (see c5)

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115291

--- Comment #19 from Cor Nouws  ---
(In reply to Roeland from comment #13)
> I submitted a similar request some time ago, see bug 104822


IMO it's most logic to keep this bug 115291 in it's original sense, and link
to 104822 as a META-issue.

> I also started working on such a list on the wiki (work i progress due to
> time constraints):
> https://wiki.documentfoundation.org/User:Kerwyn/informationoncompatibility

Still lots to do :)
You may want to ask on users@ or QA@ lists?

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124840] UI: text for confirming updating external links ("Enable Content") is strange

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124840

--- Comment #3 from Cor Nouws  ---
Hi Roman,

Change "Enable Content" in "Allow updating"

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-commits] core.git: Branch 'libreoffice-6-1' - external/libxslt

2019-04-20 Thread Michael Stahl (via logerrit)
 external/libxslt/UnpackedTarball_libxslt.mk   |1 
 external/libxslt/e03553605b45c88f0b4b2980adfbbb8f6fca2fd6.patch.1 |  120 
++
 2 files changed, 121 insertions(+)

New commits:
commit 32948e7778b959ef1037d9be707a6bfc7db4160d
Author: Michael Stahl 
AuthorDate: Wed Apr 17 14:50:10 2019 +0200
Commit: Thorsten Behrens 
CommitDate: Sat Apr 20 23:06:58 2019 +0200

libxslt: add patch for CVE-2019-11068

Change-Id: I3fe30de8140dce3d81cdfae7d41e0bd465b1d5f4
Reviewed-on: https://gerrit.libreoffice.org/70879
Tested-by: Jenkins
Reviewed-by: Michael Stahl 
(cherry picked from commit 2d85b75b1220484aebd6e583d6d7aee71280e38e)
Reviewed-on: https://gerrit.libreoffice.org/70894
Reviewed-by: Thorsten Behrens 

diff --git a/external/libxslt/UnpackedTarball_libxslt.mk 
b/external/libxslt/UnpackedTarball_libxslt.mk
index eae318ef74b9..beb591b8b2a8 100644
--- a/external/libxslt/UnpackedTarball_libxslt.mk
+++ b/external/libxslt/UnpackedTarball_libxslt.mk
@@ -19,6 +19,7 @@ $(eval $(call gb_UnpackedTarball_add_patches,libxslt,\
external/libxslt/libxslt-msvc.patch.2 \
external/libxslt/libxslt-1.1.26-memdump.patch \
external/libxslt/rpath.patch.0 \
+   external/libxslt/e03553605b45c88f0b4b2980adfbbb8f6fca2fd6.patch.1 \
 ))
 
 # vim: set noet sw=4 ts=4:
diff --git a/external/libxslt/e03553605b45c88f0b4b2980adfbbb8f6fca2fd6.patch.1 
b/external/libxslt/e03553605b45c88f0b4b2980adfbbb8f6fca2fd6.patch.1
new file mode 100644
index ..260f35d1a35e
--- /dev/null
+++ b/external/libxslt/e03553605b45c88f0b4b2980adfbbb8f6fca2fd6.patch.1
@@ -0,0 +1,120 @@
+From e03553605b45c88f0b4b2980adfbbb8f6fca2fd6 Mon Sep 17 00:00:00 2001
+From: Nick Wellnhofer 
+Date: Sun, 24 Mar 2019 09:51:39 +0100
+Subject: [PATCH] Fix security framework bypass
+
+xsltCheckRead and xsltCheckWrite return -1 in case of error but callers
+don't check for this condition and allow access. With a specially
+crafted URL, xsltCheckRead could be tricked into returning an error
+because of a supposedly invalid URL that would still be loaded
+succesfully later on.
+
+Fixes #12.
+
+Thanks to Felix Wilhelm for the report.
+---
+ libxslt/documents.c | 18 ++
+ libxslt/imports.c   |  9 +
+ libxslt/transform.c |  9 +
+ libxslt/xslt.c  |  9 +
+ 4 files changed, 25 insertions(+), 20 deletions(-)
+
+diff --git a/libxslt/documents.c b/libxslt/documents.c
+index 3f3a7312..4aad11bb 100644
+--- a/libxslt/documents.c
 b/libxslt/documents.c
+@@ -296,10 +296,11 @@ xsltLoadDocument(xsltTransformContextPtr ctxt, const 
xmlChar *URI) {
+   int res;
+ 
+   res = xsltCheckRead(ctxt->sec, ctxt, URI);
+-  if (res == 0) {
+-  xsltTransformError(ctxt, NULL, NULL,
+-   "xsltLoadDocument: read rights for %s denied\n",
+-   URI);
++  if (res <= 0) {
++if (res == 0)
++xsltTransformError(ctxt, NULL, NULL,
++ "xsltLoadDocument: read rights for %s denied\n",
++ URI);
+   return(NULL);
+   }
+ }
+@@ -372,10 +373,11 @@ xsltLoadStyleDocument(xsltStylesheetPtr style, const 
xmlChar *URI) {
+   int res;
+ 
+   res = xsltCheckRead(sec, NULL, URI);
+-  if (res == 0) {
+-  xsltTransformError(NULL, NULL, NULL,
+-   "xsltLoadStyleDocument: read rights for %s denied\n",
+-   URI);
++  if (res <= 0) {
++if (res == 0)
++xsltTransformError(NULL, NULL, NULL,
++ "xsltLoadStyleDocument: read rights for %s denied\n",
++ URI);
+   return(NULL);
+   }
+ }
+diff --git a/libxslt/imports.c b/libxslt/imports.c
+index 874870cc..3783b247 100644
+--- a/libxslt/imports.c
 b/libxslt/imports.c
+@@ -130,10 +130,11 @@ xsltParseStylesheetImport(xsltStylesheetPtr style, 
xmlNodePtr cur) {
+   int secres;
+ 
+   secres = xsltCheckRead(sec, NULL, URI);
+-  if (secres == 0) {
+-  xsltTransformError(NULL, NULL, NULL,
+-   "xsl:import: read rights for %s denied\n",
+-   URI);
++  if (secres <= 0) {
++if (secres == 0)
++xsltTransformError(NULL, NULL, NULL,
++ "xsl:import: read rights for %s denied\n",
++ URI);
+   goto error;
+   }
+ }
+diff --git a/libxslt/transform.c b/libxslt/transform.c
+index 13793914..0636dbd0 100644
+--- a/libxslt/transform.c
 b/libxslt/transform.c
+@@ -3493,10 +3493,11 @@ xsltDocumentElem(xsltTransformContextPtr ctxt, 
xmlNodePtr node,
+  */
+ if (ctxt->sec != NULL) {
+   ret = xsltCheckWrite(ctxt->sec, ctxt, filename);
+-  if (ret == 0) {
+-  xsltTransformError(ctxt, NULL, inst,
+-   "xsltDocumentElem: write rights for %s denied\n",
+-   

[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - 2 commits - external/libxslt sw/qa sw/source

2019-04-20 Thread Michael Stahl (via logerrit)
 external/libxslt/UnpackedTarball_libxslt.mk   |1 
 external/libxslt/e03553605b45c88f0b4b2980adfbbb8f6fca2fd6.patch.1 |  120 
++
 sw/qa/extras/uiwriter/uiwriter2.cxx   |   53 
 sw/source/core/doc/DocumentRedlineManager.cxx |   20 -
 4 files changed, 182 insertions(+), 12 deletions(-)

New commits:
commit 34795a716a16e13d028ac3e255160f8cf98f1ea3
Author: Michael Stahl 
AuthorDate: Wed Apr 17 14:50:10 2019 +0200
Commit: Thorsten Behrens 
CommitDate: Sat Apr 20 23:06:43 2019 +0200

libxslt: add patch for CVE-2019-11068

Change-Id: I3fe30de8140dce3d81cdfae7d41e0bd465b1d5f4
Reviewed-on: https://gerrit.libreoffice.org/70879
Tested-by: Jenkins
Reviewed-by: Michael Stahl 
(cherry picked from commit 2d85b75b1220484aebd6e583d6d7aee71280e38e)
Reviewed-on: https://gerrit.libreoffice.org/70893
Reviewed-by: Thorsten Behrens 

diff --git a/external/libxslt/UnpackedTarball_libxslt.mk 
b/external/libxslt/UnpackedTarball_libxslt.mk
index eae318ef74b9..beb591b8b2a8 100644
--- a/external/libxslt/UnpackedTarball_libxslt.mk
+++ b/external/libxslt/UnpackedTarball_libxslt.mk
@@ -19,6 +19,7 @@ $(eval $(call gb_UnpackedTarball_add_patches,libxslt,\
external/libxslt/libxslt-msvc.patch.2 \
external/libxslt/libxslt-1.1.26-memdump.patch \
external/libxslt/rpath.patch.0 \
+   external/libxslt/e03553605b45c88f0b4b2980adfbbb8f6fca2fd6.patch.1 \
 ))
 
 # vim: set noet sw=4 ts=4:
diff --git a/external/libxslt/e03553605b45c88f0b4b2980adfbbb8f6fca2fd6.patch.1 
b/external/libxslt/e03553605b45c88f0b4b2980adfbbb8f6fca2fd6.patch.1
new file mode 100644
index ..260f35d1a35e
--- /dev/null
+++ b/external/libxslt/e03553605b45c88f0b4b2980adfbbb8f6fca2fd6.patch.1
@@ -0,0 +1,120 @@
+From e03553605b45c88f0b4b2980adfbbb8f6fca2fd6 Mon Sep 17 00:00:00 2001
+From: Nick Wellnhofer 
+Date: Sun, 24 Mar 2019 09:51:39 +0100
+Subject: [PATCH] Fix security framework bypass
+
+xsltCheckRead and xsltCheckWrite return -1 in case of error but callers
+don't check for this condition and allow access. With a specially
+crafted URL, xsltCheckRead could be tricked into returning an error
+because of a supposedly invalid URL that would still be loaded
+succesfully later on.
+
+Fixes #12.
+
+Thanks to Felix Wilhelm for the report.
+---
+ libxslt/documents.c | 18 ++
+ libxslt/imports.c   |  9 +
+ libxslt/transform.c |  9 +
+ libxslt/xslt.c  |  9 +
+ 4 files changed, 25 insertions(+), 20 deletions(-)
+
+diff --git a/libxslt/documents.c b/libxslt/documents.c
+index 3f3a7312..4aad11bb 100644
+--- a/libxslt/documents.c
 b/libxslt/documents.c
+@@ -296,10 +296,11 @@ xsltLoadDocument(xsltTransformContextPtr ctxt, const 
xmlChar *URI) {
+   int res;
+ 
+   res = xsltCheckRead(ctxt->sec, ctxt, URI);
+-  if (res == 0) {
+-  xsltTransformError(ctxt, NULL, NULL,
+-   "xsltLoadDocument: read rights for %s denied\n",
+-   URI);
++  if (res <= 0) {
++if (res == 0)
++xsltTransformError(ctxt, NULL, NULL,
++ "xsltLoadDocument: read rights for %s denied\n",
++ URI);
+   return(NULL);
+   }
+ }
+@@ -372,10 +373,11 @@ xsltLoadStyleDocument(xsltStylesheetPtr style, const 
xmlChar *URI) {
+   int res;
+ 
+   res = xsltCheckRead(sec, NULL, URI);
+-  if (res == 0) {
+-  xsltTransformError(NULL, NULL, NULL,
+-   "xsltLoadStyleDocument: read rights for %s denied\n",
+-   URI);
++  if (res <= 0) {
++if (res == 0)
++xsltTransformError(NULL, NULL, NULL,
++ "xsltLoadStyleDocument: read rights for %s denied\n",
++ URI);
+   return(NULL);
+   }
+ }
+diff --git a/libxslt/imports.c b/libxslt/imports.c
+index 874870cc..3783b247 100644
+--- a/libxslt/imports.c
 b/libxslt/imports.c
+@@ -130,10 +130,11 @@ xsltParseStylesheetImport(xsltStylesheetPtr style, 
xmlNodePtr cur) {
+   int secres;
+ 
+   secres = xsltCheckRead(sec, NULL, URI);
+-  if (secres == 0) {
+-  xsltTransformError(NULL, NULL, NULL,
+-   "xsl:import: read rights for %s denied\n",
+-   URI);
++  if (secres <= 0) {
++if (secres == 0)
++xsltTransformError(NULL, NULL, NULL,
++ "xsl:import: read rights for %s denied\n",
++ URI);
+   goto error;
+   }
+ }
+diff --git a/libxslt/transform.c b/libxslt/transform.c
+index 13793914..0636dbd0 100644
+--- a/libxslt/transform.c
 b/libxslt/transform.c
+@@ -3493,10 +3493,11 @@ xsltDocumentElem(xsltTransformContextPtr ctxt, 
xmlNodePtr node,
+  */
+ if (ctxt->sec != NULL) {
+   ret = xsltCheckWrite(ctxt->sec, ctxt, filename);

[Libreoffice-bugs] [Bug 33614] Impress [FILEOPEN] did not import double lines from a Powerpoint .ppt correctly.

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=33614

eisa01  changed:

   What|Removed |Added

   Priority|high|medium
Version|3.3.0 release   |Inherited From OOo

--- Comment #19 from eisa01  ---
Still present

Seems to be a medium issue according to the bug prioritizing flowchart

Present in 3.3, so inherited

Version: 6.3.0.0.alpha0+
Build ID: ea9c13be02ba731074fa4207944ff7df40a0fb5c
CPU threads: 2; OS: Mac OS X 10.13.6; UI render: default; VCL: osx; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2019-04-10_20:43:17
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124863] Calc comments - comments are displayed only once when mousing over their cell.

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124863

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

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124863] Calc comments - comments are displayed only once when mousing over their cell.

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124863

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

   What|Removed |Added

 Blocks||103182
   Keywords||bibisectRequest


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103182
[Bug 103182] [META] GTK3-specific bugs
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 103182] [META] GTK3-specific bugs

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103182

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

   What|Removed |Added

 Depends on||124863


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=124863
[Bug 124863] Calc comments - comments are displayed only once when mousing over
their cell.
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-commits] online.git: loleaflet/src

2019-04-20 Thread Libreoffice Gerrit user
 loleaflet/src/control/Control.LokDialog.js |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9ada3e35a138e871ac261082b30b6a47357a2b5d
Author: Tor Lillqvist 
AuthorDate: Sat Apr 20 23:25:01 2019 +0300
Commit: Tor Lillqvist 
CommitDate: Sat Apr 20 23:25:01 2019 +0300

Typo fix

Change-Id: I6e4692a19d1e03c16c40eada5c4eca99b229601a

diff --git a/loleaflet/src/control/Control.LokDialog.js 
b/loleaflet/src/control/Control.LokDialog.js
index 3282b9d2e..a58fd6008 100644
--- a/loleaflet/src/control/Control.LokDialog.js
+++ b/loleaflet/src/control/Control.LokDialog.js
@@ -661,7 +661,7 @@ L.Control.LokDialog = L.Control.extend({
// tdf#124235: At least in the iOS app, multiplying with
// L.getDpiScaleFactor() below causes the child of a 
combo box to be
// displaced from the fixed part. I see the same 
problem also when using
-   // Safari on a Retuna Mac against normal online. But as 
I don't know whether
+   // Safari on a Retina Mac against normal online. But as 
I don't know whether
// it happens also for other browsers on other 
platforms on hidpi displays,
// I will fix this for the iOS app only for now.
if (!window.ThisIsTheiOSApp) {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 124863] Calc comments - comments are displayed only once when mousing over their cell.

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124863

--- Comment #3 from ro...@uk2.net ---
Here is the About -> Help info as requested.

Version: 6.2.3.2
Build ID: aecc05fe267cc68dde00352a451aa867b3b546ac
CPU threads: 8; OS: Linux 4.15; UI render: default; VCL: gtk3; 
Locale: en-GB (en_GB.UTF-8); UI-Language: en-GB
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124857] Fehlerhafte Speicherung

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124857

Telesto  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de,
   ||tele...@surfxs.nl

--- Comment #1 from Telesto  ---
@eng.kim1...@gmail.com 
Danke fur die Fehler meldung. Die beschreibing is leider noch nicht genau
genug. 
Leider ist mein Deutsch ein bisschen eingerostet um Anweisungen zu geben 

Ich Fuge Dieter mal hinzu. Ich hoffe das er dir weiter helfen kann..

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124794] Installation fails on Windows Server 2008 R2

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124794

--- Comment #3 from Mike Kaganski  ---
(In reply to Eugene Kin from comment #0)
> Why it stopping WU service?

because of the fix to bug 123832.

Could you please try stopping WU service, and start installation with the
service stopped? That log could help understand the issue. Thanks.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 113117] [META] Windows installer/uninstaller bugs and enhancements

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113117

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

   What|Removed |Added

 Depends on||124791


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=124791
[Bug 124791] LO installer is missing UI language codes
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124791] LO installer is missing UI language codes

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124791

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

   What|Removed |Added

 Blocks||113117


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113117
[Bug 113117] [META] Windows installer/uninstaller bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 113117] [META] Windows installer/uninstaller bugs and enhancements

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113117

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

   What|Removed |Added

 Depends on||124794


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=124794
[Bug 124794] Installation fails on Windows Server 2008 R2
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124794] Installation fails on Windows Server 2008 R2

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124794

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

   What|Removed |Added

 CC||mikekagan...@hotmail.com
 Blocks||113117


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113117
[Bug 113117] [META] Windows installer/uninstaller bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124808] Change Karasa Jaga Large Icon Size from 22px*22px to Be 24px*24px To Follow Other Icon Theme

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124808

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Roman Kuznetsov <79045_79...@mail.ru> ---
Rizal, do will you do it?

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 45904] move java based api tests to c++

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45904

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

https://git.libreoffice.org/core/+/2b307927f028eeefcec41a8bc8daae392521f9df%5E%21

tdf#45904 Move XCellRange Java test to C++

It will be available in 6.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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-commits] core.git: qadevOOo/objdsc sc/CppunitTest_sc_tablecolumnobj.mk sc/Module_sc.mk sc/qa

2019-04-20 Thread Jens Carl (via logerrit)
 qadevOOo/objdsc/sc/com.sun.star.comp.office.ScTableColumnObj.csv |3 
 sc/CppunitTest_sc_tablecolumnobj.mk  |   43 
 sc/Module_sc.mk  |1 
 sc/qa/extras/sctablecolumnobj.cxx|   90 
++
 4 files changed, 134 insertions(+), 3 deletions(-)

New commits:
commit 2b307927f028eeefcec41a8bc8daae392521f9df
Author: Jens Carl 
AuthorDate: Fri Apr 19 07:47:12 2019 +
Commit: Jens Carl 
CommitDate: Sat Apr 20 21:41:19 2019 +0200

tdf#45904 Move XCellRange Java test to C++

mOve XCellRange Java test to C++ for ScTableColumnObj.

Change-Id: I165e5752fb679be6790c305a99f35da644e17d56
Reviewed-on: https://gerrit.libreoffice.org/70968
Tested-by: Jenkins
Reviewed-by: Jens Carl 

diff --git a/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScTableColumnObj.csv 
b/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScTableColumnObj.csv
index 72c9345a266b..a20406eb6b9a 100644
--- a/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScTableColumnObj.csv
+++ b/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScTableColumnObj.csv
@@ -1,6 +1,3 @@
-"ScTableColumnObj";"com::sun::star::table::XCellRange";"getCellByPosition()"
-"ScTableColumnObj";"com::sun::star::table::XCellRange";"getCellRangeByPosition()"
-"ScTableColumnObj";"com::sun::star::table::XCellRange";"getCellRangeByName()"
 "ScTableColumnObj";"com::sun::star::container::XNamed";"getName()"
 "ScTableColumnObj";"com::sun::star::container::XNamed";"setName()"
 "ScTableColumnObj";"com::sun::star::beans::XPropertySet";"getPropertySetInfo()"
diff --git a/sc/CppunitTest_sc_tablecolumnobj.mk 
b/sc/CppunitTest_sc_tablecolumnobj.mk
new file mode 100644
index ..6f18e8070285
--- /dev/null
+++ b/sc/CppunitTest_sc_tablecolumnobj.mk
@@ -0,0 +1,43 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+#*
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+#*
+
+$(eval $(call gb_CppunitTest_CppunitTest,sc_tablecolumnobj))
+
+$(eval $(call gb_CppunitTest_use_external,sc_tablecolumnobj,boost_headers))
+
+$(eval $(call gb_CppunitTest_add_exception_objects,sc_tablecolumnobj, \
+   sc/qa/extras/sctablecolumnobj \
+))
+
+$(eval $(call gb_CppunitTest_use_libraries,sc_tablecolumnobj, \
+   cppu \
+   sal \
+   subsequenttest \
+   test \
+   unotest \
+))
+
+$(eval $(call gb_CppunitTest_set_include,sc_tablecolumnobj,\
+   $$(INCLUDE) \
+))
+
+$(eval $(call gb_CppunitTest_use_sdk_api,sc_tablecolumnobj))
+
+$(eval $(call gb_CppunitTest_use_ure,sc_tablecolumnobj))
+$(eval $(call gb_CppunitTest_use_vcl,sc_tablecolumnobj))
+
+$(eval $(call gb_CppunitTest_use_components,sc_tablecolumnobj,\
+   $(sc_unoapi_common_components) \
+))
+
+$(eval $(call gb_CppunitTest_use_configuration,sc_tablecolumnobj))
+
+# vim: set noet sw=4 ts=4:
diff --git a/sc/Module_sc.mk b/sc/Module_sc.mk
index 8a7484a824dd..633fa010982e 100644
--- a/sc/Module_sc.mk
+++ b/sc/Module_sc.mk
@@ -194,6 +194,7 @@ $(eval $(call gb_Module_add_subsequentcheck_targets,sc,\
CppunitTest_sc_stylefamilyobj \
CppunitTest_sc_subtotaldescriptorbase \
CppunitTest_sc_subtotalfieldobj \
+   CppunitTest_sc_tablecolumnobj \
CppunitTest_sc_tablecolumnsobj \
CppunitTest_sc_tableconditionalentryobj \
CppunitTest_sc_tableconditionalformat \
diff --git a/sc/qa/extras/sctablecolumnobj.cxx 
b/sc/qa/extras/sctablecolumnobj.cxx
new file mode 100644
index ..9a8b8c79e556
--- /dev/null
+++ b/sc/qa/extras/sctablecolumnobj.cxx
@@ -0,0 +1,90 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; 
fill-column: 100 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#include 
+#include 
+
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+
+#include 
+
+using namespace css;
+
+namespace sc_apitest
+{
+class ScTableColumnObj : public CalcUnoApiTest, public apitest::XCellRange
+{
+public:
+ScTableColumnObj();
+
+virtual uno::Reference init() override;
+virtual void setUp() override;
+virtual void tearDown() override;
+
+CPPUNIT_TEST_SUITE(ScTableColumnObj);
+
+// XCellRange
+CPPUNIT_TEST(testGetCellByPosition);
+CPPUNIT_TEST(testGetCellRangeByName);
+CPPUNIT_TEST(testGetCellRangeByPosition);
+
+CPPUNIT_TEST_SUITE_END();
+
+private:
+

Re: Implementing accessibility non-regression check tool

2019-04-20 Thread Caolán McNamara
On Sat, 2019-04-20 at 10:33 +0200, Samuel Thibault wrote:
> ...as discussed before we could as well
> just put the suppression rules in
> solenv/sanitizers/ui/modules/scalc.false
> to tell that there is nothing to fix here

Seeing as I've being putting the suppressions in foo.supr its just a
matter of moving them from there to foo.false so sounds trivial enough
to go that route

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice

[Libreoffice-bugs] [Bug 124813] Pivot table changes structure when saved as XLS and refreshed in Excel

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124813

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

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

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

Version: 6.3.0.0.alpha0+ (x64)
Build ID: 2e3b0c5d42d60d46cd9f8b8eda9424b095c63418
CPU threads: 4; OS: Windows 10.0; UI render: GL; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2019-04-14_00:37:08
Locale: ru-RU (ru_RU); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 112416] [META] XLSX pivot table bugs

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112416
Bug 112416 depends on bug 124810, which changed state.

Bug 124810 Summary: Formatting in pivot table saved as XLSX degrades after 
refreshing table in Excel
https://bugs.documentfoundation.org/show_bug.cgi?id=124810

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124866] New: Cross-reference links in page headers are not correctly exported to PDF

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124866

Bug ID: 124866
   Summary: Cross-reference links in page headers are not
correctly exported to PDF
   Product: LibreOffice
   Version: 6.2.2.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: claudix.ker...@gmail.com

Description:
I want to set some clickable cross references in the page headers of my
document, so in everypage I have these links available to click. In the context
of a Libreoffice document, this feature works without any problem. However, if
I export the document to PDF, the links are lost (they are only clickable in
the page where I defined them). I tried two approaches: using insert/set cross
references and using bookmarks/internal links. None of this options work.

Steps to Reproduce:
1. Create a document with multiple pages and set some references.
2. Go to the first page and edit the header: insert some cross references to
the references set in step 1. The header should repeat in every page.
3. Export to PDF
4. Links to references are not clickable in all pages.

Actual Results:
The exported PDF does not keep the links to the references.

Expected Results:
The exported PDF should preserve the links to the references in all pages
headers.


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 6.2.2.2 (x64)
Build ID: 2b840030fec2aae0fd2658d8d4f9548af4e3518d
CPU threads: 4; OS: Windows 6.1; UI render: default; VCL: win; 
Locale: es-ES (es_ES); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124863] Calc comments - comments are displayed only once when mousing over their cell.

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124863

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

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

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

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101216

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

   What|Removed |Added

 Depends on||124863


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=124863
[Bug 124863] Calc comments - comments are displayed only once when mousing over
their cell.
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124863] Calc comments - comments are displayed only once when mousing over their cell.

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124863

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

   What|Removed |Added

 Blocks||101216
 CC||79045_79...@mail.ru
   Keywords||regression

--- Comment #2 from Roman Kuznetsov <79045_79...@mail.ru> ---
please add info from dialog Help->About LibreOffice


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=101216
[Bug 101216] [META] Calc comment bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 98805] FILESAVE: Save As crashes when specific file is present in working directory

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98805

--- Comment #18 from eisa01  ---
I managed to repro this after all, but I had to download the file via Firefox
as Safari seems to have issues with bugzilla - e.g., .doc files saved as .dot
and filename referring UTF8 and so on

Version: 6.3.0.0.alpha0+
Build ID: ea9c13be02ba731074fa4207944ff7df40a0fb5c
CPU threads: 2; OS: Mac OS X 10.13.6; UI render: default; VCL: osx; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2019-04-10_20:43:17
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 98805] FILESAVE: Save As crashes when specific file is present in working directory

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98805

--- Comment #17 from Buovjaga  ---
(In reply to Buovjaga from comment #16)
> (In reply to eisa01 from comment #15)
> > I can't seem to repro this any more, however I haven't tried the exact same
> > build as I did back then...
> 
> mslbork: as eisa01 is unable to repro, could you please test with a recent
> release, preferably 6.2.3?

Eh, accidentally commented in "silent mode" so asking again.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124806] LibreOffice shows changes (markups) when document is set to not show markups in Microsoft Word

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124806

eisa01  changed:

   What|Removed |Added

 Resolution|--- |NOTOURBUG
 Status|UNCONFIRMED |RESOLVED
 CC||eis...@gmail.com

--- Comment #1 from eisa01  ---
Word doesn't seem to save the visibility of the track changes.
If I set the document to "No markup", write some more, save, close, and reopen,
Word shows it with "All markup"

So this would at least not be our bug

Tested with Word 16.24

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 105706] Update service does not show updates when detailed OS versions are sent.

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105706

Buovjaga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #9 from Buovjaga  ---
(In reply to Georg Schölly from comment #8)
> The server script has not been changed so the bug still exists (check.php).
> 
> If someone could point me to the source code of
> http://update.libreoffice.org/check.php I could try to fix it.

Looks like it's here:
https://cgit.freedesktop.org/libreoffice/website/tree/check.php?h=update
Summary with repo address:
https://cgit.freedesktop.org/libreoffice/website/?h=update
Weird that it is not found in the gerrit project list.

So I guess if you have a patch suggestion, you can just attach it to this
report and cloph can review it.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124717] Auto correct isn’t correcting either while typing or using the apply settings

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124717

eisa01  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #3 from eisa01  ---
Hi Greg,
Have you tested this on a Mac or Linux? Or is it an issue on both?

The bug report says macOS, but you mention Manjari which is a Linux
distribution.

Newly created replacements seem to work for me

Version: 6.3.0.0.alpha0+
Build ID: ea9c13be02ba731074fa4207944ff7df40a0fb5c
CPU threads: 2; OS: Mac OS X 10.13.6; UI render: default; VCL: osx; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2019-04-10_20:43:17
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124859] Worksheets other than the first not being saved for .CSV file

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124859

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||vstuart.fo...@utsa.edu
 Resolution|--- |DUPLICATE

--- Comment #2 from V Stuart Foote  ---
.CSV is not a native format, it is not even a viable spreadsheet (as no
formulas are encoded, just values). 

Data held in a .CSV (of any separator) will be filter imported to LibreOffice's
Spreadsheet UI--Calc.

Save is then to XML as ODF spreadsheet (.ODS). Any other format will use an
Export filter. User is warned, and this facet is well documented.

Advisory to users--do not work directly in formats that require filter import
and filter export. Mind your data keeping it in support ODF formats, and then
export the portion you need.

Otherwise this is a duplicate.

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 92984] FILESAVE: Modifying and saving existing CSV does not warn about only saving active sheet

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92984

V Stuart Foote  changed:

   What|Removed |Added

 CC||m...@fastmail.co.uk

--- Comment #6 from V Stuart Foote  ---
*** Bug 124859 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 118394] MacOS: No text cursor in the second writer document, after going to edit-mode in a read-only doc file

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118394

eisa01  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #5 from eisa01  ---
I can repro.

Workaround is to click in the second file, and then the undo works

You have to lock the downloaded example file in Finder, as that is not stored
with the file

Version: 6.3.0.0.alpha0+
Build ID: ea9c13be02ba731074fa4207944ff7df40a0fb5c
CPU threads: 2; OS: Mac OS X 10.13.6; UI render: default; VCL: osx; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2019-04-10_20:43:17
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124865] New: careful, crash after insert rows, file trashed after recovery, with version libo-master64~2019-04-16_03.05.57_LibreOfficeDev_6.3.0.0.alpha0_Win_x64

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124865

Bug ID: 124865
   Summary: careful, crash after insert rows, file trashed after
recovery, with version
libo-master64~2019-04-16_03.05.57_LibreOfficeDev_6.3.0
.0.alpha0_Win_x64
   Product: LibreOffice
   Version: 6.3.0.0.alpha0+ Master
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: newbie...@gmx.de

Description:
just a warning, can't contribute to debugging, 

don't use for productive data, 

careful, crash after insert rows, file trashed after recovery, with version
libo-master64~2019-04-16_03.05.57_LibreOfficeDev_6.3.0.0.alpha0_Win_x64

crashes reproducible on 5 tries, inserting about 10 lines in a not too complex
file, data scrabbled when opening recovered file with old version, 

sorry, no time for investigation, can't provide file (private data), version
deinstalled, 

inserting one line in a less complex file looked working better, 

Steps to Reproduce:
file with about 2,5 k lines, columns from A to CZ, 

7 columns 'stacking up', all other calculation inside lines, 'subtotals' in top
region, 

inserted ~10 lines, crash, or inserted 10 lines, filled with copies of other
row, crash, 

Actual Results:
crash, data trashed, 

Expected Results:
no crash, intact data, 


Reproducible: Always


User Profile Reset: No



Additional Info:
see headline, former setting was 'unthreaded', new install of older version
shows same, didn't check with affected version,

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121113] LibreOffice won’t run on macOS when CFR font is installed

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121113

eisa01  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #3 from eisa01  ---
Works fine for me too, installing the four Hanazono Mincho fonts

(aside, is the .sfont working? It's 909 bytes and FontBook reports a serious
error with it)

Can you test again on the latest release?

Version: 6.3.0.0.alpha0+
Build ID: ea9c13be02ba731074fa4207944ff7df40a0fb5c
CPU threads: 2; OS: Mac OS X 10.13.6; UI render: default; VCL: osx; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2019-04-10_20:43:17
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124414] Image is partly displayed when printing (to PDF) two pages per sheet (Linux-only)

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124414

--- Comment #15 from raal  ---
(In reply to Buovjaga from comment #14)
> 
> Are you sure you selected "pages per sheet: 2"? I still repro.
> 
my fault, sorry. Reproduced.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 98805] FILESAVE: Save As crashes when specific file is present in working directory

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98805

--- Comment #15 from eisa01  ---
I can't seem to repro this any more, however I haven't tried the exact same
build as I did back then...

Version: 6.3.0.0.alpha0+
Build ID: ea9c13be02ba731074fa4207944ff7df40a0fb5c
CPU threads: 2; OS: Mac OS X 10.13.6; UI render: default; VCL: osx; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2019-04-10_20:43:17
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

Version: 6.0.0.3
Build ID: 64a0f66915f38c6217de274f0aa8e15618924765
CPU threads: 2; OS: Mac OS X 10.13.6; UI render: default; 
Locale: en-US (en_US.UTF-8); Calc: group

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 74513] Underlined Words in Calc When Pasted as GDI Metafile into Writer Do Not Appear

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=74513

--- Comment #30 from eisa01  ---
This is still present

Version: 6.3.0.0.alpha0+
Build ID: ea9c13be02ba731074fa4207944ff7df40a0fb5c
CPU threads: 2; OS: Mac OS X 10.13.6; UI render: default; VCL: osx; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2019-04-10_20:43:17
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 108911] Cannot toggle cursor focus between formula and worksheet

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108911

--- Comment #8 from eisa01  ---
This is still present

Version: 6.3.0.0.alpha0+
Build ID: ea9c13be02ba731074fa4207944ff7df40a0fb5c
CPU threads: 2; OS: Mac OS X 10.13.6; UI render: default; VCL: osx; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2019-04-10_20:43:17
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 122487] Wrong Naming of Drawing Objects

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122487

Aron Budea  changed:

   What|Removed |Added

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

--- Comment #5 from Aron Budea  ---
(In reply to Harald Koester from comment #0)
> The automatic naming of drawing objects has been introduced in version
> 5.1.0. So I assume that this bug also occurs the first time in version 5.1.0
> in this way.
Introduced by this commit, might be helpful to know:
https://cgit.freedesktop.org/libreoffice/core/commit/?id=3647626309ef89bf90d8b6a6539d41d8deb6b482
author  Caolán McNamara 2015-09-17 13:55:28
+0100
committer   Caolán McNamara 2015-09-17 14:12:08
+0100

Give drawing objects unique names by default

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 75726] importing MSO2003 xls w/ merged cells corrupts conditional formatting

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75726

--- Comment #7 from eisa01  ---
This is still present

Version: 6.3.0.0.alpha0+
Build ID: ea9c13be02ba731074fa4207944ff7df40a0fb5c
CPU threads: 2; OS: Mac OS X 10.13.6; UI render: default; VCL: osx; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2019-04-10_20:43:17
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124862] Writer context menu: many options missing

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124862

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTABUG

--- Comment #1 from V Stuart Foote  ---
By design. Context menus were made user customizable at the 5.2 release for bug
93837

Use Tools -> Customize from the module in use, e.g. Writer, and select the
Context menu to adjust from the Target droplist.

Prior to the 5.2 releases, the context menu was hard coded--after that the
context menus were "weeded" to remove less common entries.

Users are expected to RTM.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 67929] Graphics lists not saved

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67929

--- Comment #7 from eisa01  ---
Still present

Version: 6.3.0.0.alpha0+
Build ID: ea9c13be02ba731074fa4207944ff7df40a0fb5c
CPU threads: 2; OS: Mac OS X 10.13.6; UI render: default; VCL: osx; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2019-04-10_20:43:17
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-commits] core.git: Branch 'aoo/trunk' - 2 commits - avmedia/source default_images/avmedia

2019-04-20 Thread Matthias Seidel (via logerrit)
 avmedia/source/framework/mediacontrol.src |   38 ++
 default_images/avmedia/res/avlh02053.png  |binary
 default_images/avmedia/res/avlh02054.png  |binary
 3 files changed, 18 insertions(+), 20 deletions(-)

New commits:
commit 00c49664c07ebdf242a957f6f83446c6bb0d08a4
Author: Matthias Seidel 
AuthorDate: Sat Apr 20 16:30:51 2019 +
Commit: Matthias Seidel 
CommitDate: Sat Apr 20 16:30:51 2019 +

Cleaned up resource file for media controls, removed entries for maskcolor

diff --git a/avmedia/source/framework/mediacontrol.src 
b/avmedia/source/framework/mediacontrol.src
index 91f166da8ed8..4074be8d2a3b 100644
--- a/avmedia/source/framework/mediacontrol.src
+++ b/avmedia/source/framework/mediacontrol.src
@@ -25,7 +25,7 @@
 
 String AVMEDIA_STR_OPEN
 {
-Text[en-US] = "Open";
+Text [en-US] = "Open" ;
 };
 
 // 
--
@@ -39,85 +39,84 @@ String AVMEDIA_STR_INSERT
 
 String AVMEDIA_STR_PLAY
 {
-Text[en-US] = "Play";
+Text [en-US] = "Play" ;
 };
 
 // 
--
 
 String AVMEDIA_STR_PAUSE
 {
-Text[en-US] = "Pause";
+Text [en-US] = "Pause" ;
 };
 
 // 
--
 
 String AVMEDIA_STR_STOP
 {
-Text[en-US] = "Stop";
+Text [en-US] = "Stop" ;
 };
 
 // 
--
 
 String AVMEDIA_STR_ENDLESS
 {
-Text[en-US] = "Repeat";
+Text [en-US] = "Repeat" ;
 };
 
 // 
--
 
 String AVMEDIA_STR_MUTE
 {
-Text[en-US] = "Mute";
+Text [en-US] = "Mute" ;
 };
 
 // 
--
 
 String AVMEDIA_STR_ZOOM
 {
-Text[en-US] = "View";
+Text [en-US] = "View" ;
 };
 
 // 
--
 
 String AVMEDIA_STR_ZOOM_50
 {
-Text[en-US] = "50 %";
+Text [en-US] = "50 %" ;
 };
 
 // 
--
 
 String AVMEDIA_STR_ZOOM_100
 {
-Text[en-US] = "100 %";
+Text [en-US] = "100 %" ;
 };
 
 // 
--
 
 String AVMEDIA_STR_ZOOM_200
 {
-Text[en-US] = "200 %";
+Text [en-US] = "200 %" ;
 };
 
 // 
--
 
 String AVMEDIA_STR_ZOOM_FIT
 {
-Text[en-US] = "Scaled";
+Text [en-US] = "Scaled" ;
 };
 
 // 
--
 
 String AVMEDIA_STR_MEDIAPLAYER
 {
-Text[en-US] = "Media Player";
+Text [en-US] = "Media Player" ;
 };
 
 // 
--
 
 ImageList AVMEDIA_IMGLST
 {
-Prefix = "av";
-MaskColor = Color{ Red = 0xff00; Green = 0x; Blue = 0xff00; };
+Prefix = "av" ;
 IdList =
 {
 AVMEDIA_IMG_OPEN;
@@ -135,8 +134,7 @@ ImageList AVMEDIA_IMGLST
 
 ImageList AVMEDIA_IMGLST_L
 {
-Prefix = "avl";
-MaskColor = Color{ Red = 0xff00; Green = 0x; Blue = 0xff00; };
+Prefix = "avl" ;
 IdList =
 {
 AVMEDIA_IMG_OPEN;
@@ -154,8 +152,7 @@ ImageList AVMEDIA_IMGLST_L
 
 ImageList AVMEDIA_IMGLST_HC
 {
-Prefix = "avh";
-MaskColor = Color{ Red = 0xff00; Green = 0x; Blue = 0xff00; };
+Prefix = "avh" ;
 IdList =
 {
 AVMEDIA_IMG_OPEN;
@@ -173,8 +170,7 @@ ImageList AVMEDIA_IMGLST_HC
 
 ImageList AVMEDIA_IMGLST_L_HC
 {
-Prefix = "avlh";
-MaskColor = Color{ Red = 0xff00; Green = 0x; Blue = 0xff00; };
+Prefix = "avlh" ;
 IdList =
 {
 AVMEDIA_IMG_OPEN;
@@ -187,3 +183,5 @@ ImageList AVMEDIA_IMGLST_L_HC
 };
 IdCount = 7;
 };
+
+// ** EOF
commit 99ff40a4a156daf370ec931a83097a8d03143053
Author: Matthias Seidel 
AuthorDate: Sat Apr 20 16:08:44 2019 +
Commit: Matthias Seidel 
CommitDate: Sat Apr 20 16:08:44 2019 +

Converted remaining AV graphics from indexed color to RGB

diff --git a/default_images/avmedia/res/avlh02053.png 
b/default_images/avmedia/res/avlh02053.png
index da66f475f95b..6070bed34859 100644
Binary files a/default_images/avmedia/res/avlh02053.png and 
b/default_images/avmedia/res/avlh02053.png differ
diff --git a/default_images/avmedia/res/avlh02054.png 
b/default_images/avmedia/res/avlh02054.png
index 79d29616c754..7f0ea17f0382 100644
Binary files a/default_images/avmedia/res/avlh02054.png and 
b/default_images/avmedia/res/avlh02054.png differ
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org

[Libreoffice-bugs] [Bug 99746] [META] PDF import filter in Draw

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99746
Bug 99746 depends on bug 104329, which changed state.

Bug 104329 Summary: New ipdf filter does not prompt for password for Secured 
PDF and returns "Image filter not found"
https://bugs.documentfoundation.org/show_bug.cgi?id=104329

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 104329] New ipdf filter does not prompt for password for Secured PDF and returns "Image filter not found"

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104329

eisa01  changed:

   What|Removed |Added

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

--- Comment #3 from eisa01  ---
Works for me now

Version: 6.3.0.0.alpha0+
Build ID: ea9c13be02ba731074fa4207944ff7df40a0fb5c
CPU threads: 2; OS: Mac OS X 10.13.6; UI render: default; VCL: osx; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2019-04-10_20:43:17
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 81765] FILEOPEN: slow loading in minutes of .ods and .xlsx with >1000 of conditional formats, also dump

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81765

--- Comment #17 from Telesto  ---
(In reply to Noel Grandin from comment #16)
> I've got a couple of small tweaks still coming for this, but with the time
> now under 15s for me, I consider this closed

Nice, many thanks Noel!

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 61606] LibreOffice should import and export custom XML parts in Office Open XML documents

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61606

--- Comment #7 from eisa01  ---
Still present

Version: 6.3.0.0.alpha0+
Build ID: ea9c13be02ba731074fa4207944ff7df40a0fb5c
CPU threads: 2; OS: Mac OS X 10.13.6; UI render: default; VCL: osx; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2019-04-10_20:43:17
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 73827] custom names of images and tables not preserved when saving as .doc or docx

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=73827

--- Comment #10 from eisa01  ---
Still present

Version: 6.3.0.0.alpha0+
Build ID: ea9c13be02ba731074fa4207944ff7df40a0fb5c
CPU threads: 2; OS: Mac OS X 10.13.6; UI render: default; VCL: osx; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2019-04-10_20:43:17
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 77915] FILEOPEN [vsdx] shape color not imported

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77915

--- Comment #8 from eisa01  ---
Still present

The figures are now rendered with soft grey outlines only (almost impossible to
see, could be another bug as connectors are the same way)

Version: 6.3.0.0.alpha0+
Build ID: ea9c13be02ba731074fa4207944ff7df40a0fb5c
CPU threads: 2; OS: Mac OS X 10.13.6; UI render: default; VCL: osx; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2019-04-10_20:43:17
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 101958] "Find" toolbar field won't accept pasted text from the clipboard other than unformatted text after keyboard switch

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101958

--- Comment #10 from eisa01  ---
Still present, however on step 9 it now pastes into the selected cell instead

Version: 6.3.0.0.alpha0+
Build ID: ea9c13be02ba731074fa4207944ff7df40a0fb5c
CPU threads: 2; OS: Mac OS X 10.13.6; UI render: default; VCL: osx; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2019-04-10_20:43:17
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 91007] FILEOPEN: XLS - Cell borders not present

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91007

eisa01  changed:

   What|Removed |Added

   Hardware|Other   |All

--- Comment #6 from eisa01  ---
Still present

Version: 6.3.0.0.alpha0+
Build ID: ea9c13be02ba731074fa4207944ff7df40a0fb5c
CPU threads: 2; OS: Mac OS X 10.13.6; UI render: default; VCL: osx; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2019-04-10_20:43:17
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 107366] Bug in selection menu for active cell range functions

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107366

--- Comment #13 from eisa01  ---
This is still present

Version: 6.3.0.0.alpha0+
Build ID: ea9c13be02ba731074fa4207944ff7df40a0fb5c
CPU threads: 2; OS: Mac OS X 10.13.6; UI render: default; VCL: osx; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2019-04-10_20:43:17
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 90657] Numbered lists in Word 6.0 wrongly imported

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90657

eisa01  changed:

   What|Removed |Added

Version|4.4.2.2 release |Inherited From OOo
   Hardware|Other   |All

--- Comment #10 from eisa01  ---
This is still present

3.3 was also broken, so inherited

Version: 6.3.0.0.alpha0+
Build ID: ea9c13be02ba731074fa4207944ff7df40a0fb5c
CPU threads: 2; OS: Mac OS X 10.13.6; UI render: default; VCL: osx; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2019-04-10_20:43:17
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 99877] [CHART] XLTX wrongly imported chart

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99877

--- Comment #9 from eisa01  ---
This is still present

Version: 6.3.0.0.alpha0+
Build ID: ea9c13be02ba731074fa4207944ff7df40a0fb5c
CPU threads: 2; OS: Mac OS X 10.13.6; UI render: default; VCL: osx; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2019-04-10_20:43:17
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 53358] FILEOPEN Certain non-keyword formula literals in curly braces (e.g., "{*}") in imported DOCX document result in errors in LO

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=53358

--- Comment #11 from eisa01  ---
This is still present.

In 3.3 the equations don't show, so no regression or inheritance

Version: 6.3.0.0.alpha0+
Build ID: ea9c13be02ba731074fa4207944ff7df40a0fb5c
CPU threads: 2; OS: Mac OS X 10.13.6; UI render: default; VCL: osx; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2019-04-10_20:43:17
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124864] New: LibreOffice hangs when trying to create a new Writer or Impress document

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124864

Bug ID: 124864
   Summary: LibreOffice hangs when trying to create a new Writer
or Impress document
   Product: LibreOffice
   Version: 6.2.2.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: remygauth...@yahoo.com

Created attachment 150899
  --> https://bugs.documentfoundation.org/attachment.cgi?id=150899=edit
Please refer to the bug descripion

This problem started with 6.2.2 and is also present in 6.2.3. It is not present
in 6.2.1.

When the user attempts to create a new Writer or Impress document using "Create
document" or File -> New from an open document menu, LO hangs. Looking at the
soffice.bin process via top, soffice.bin consumes almost 100% of a CPU and the
memory assigned to the process increases. The only way to exit is to kill the
soffice.bin process. This occurs with an existing profile, a new profile
(deletion of the existing one), or in safe mode.

To reproduce:

1) Install LO 6.2.2 or 6.2.3. I have installed the following, using the "dnf
install *" command while in the RPMS folder of the packages, in this order:

LibreOffice_6.2.3_Linux_x86-64_rpm.tar.gz
LibreOffice_6.2.3_Linux_x86-64_rpm_langpack_fr.tar.gz
LibreOffice_6.2.3_Linux_x86-64_rpm_helppack_fr.tar.gz
LibreOffice_6.2.3_Linux_x86-64_rpm_helppack_en-US.tar.gz

The installation was also re-done after deleting the whole installation. These
packages were downloaded from the LO site.

2) Launch LO.
3) In the interface, press the Create Writer Document or the Create Impress
Presentation
4) LO hangs

This can also be done using:

1) Launch LO
2) In the interface, press the Create Calc Spreadsheet
3) In Calc, File -> New -> Text Document

Or using:

1) Launch LO
2) In the interface, press the Templates button, or
2a) In the interface, press the little triangle next to open the list of
templates and select any entry

The attachment contains:

- The About information of the LO installation
- The OS information of the computer (uname)
- Various captures over a 5 minute period of the output of the top command
after  performing one of the steps above
- Output of the gdb "bt" command after attaching to a "hung" LO process

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 97083] FILEOPEN: Support of fld text field from Powerpoint as used by think-cell

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97083

eisa01  changed:

   What|Removed |Added

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

--- Comment #22 from eisa01  ---
This is still present

I don't see any relation to bug 59323 so removing that

Version: 6.3.0.0.alpha0+
Build ID: ea9c13be02ba731074fa4207944ff7df40a0fb5c
CPU threads: 2; OS: Mac OS X 10.13.6; UI render: default; VCL: osx; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2019-04-10_20:43:17
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 59323] Impress conversion to PPTX doesn't save (header and footer) fields so Repair in MSO - steps in Comment 7

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=59323

eisa01  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124860] Formatting: Formula result has different alignment than regular values

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124860

--- Comment #6 from bugzil...@cb-computerservice.at ---
Ah, ok, I got it now...

So, the problem is, that "alignment" (Options -> Writer -> Table ->
Number-Recognition -> Alignment) is checked by default in 6.2 series, where it
was unchecked in previous versions.

So, why is it checked by default now? And can we revert this change to restore
"compatibility" to existing documents?

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 77548] FILEOPEN: Calc adds leading zeros to customised header/footer text in XLS

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77548

eisa01  changed:

   What|Removed |Added

Version|unspecified |Inherited From OOo

--- Comment #8 from eisa01  ---
This is still present

Also present in 3.3

Version: 6.3.0.0.alpha0+
Build ID: ea9c13be02ba731074fa4207944ff7df40a0fb5c
CPU threads: 2; OS: Mac OS X 10.13.6; UI render: default; VCL: osx; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2019-04-10_20:43:17
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 72734] FILEOPEN xml : cannot import when xml contains CDATA

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=72734

--- Comment #7 from eisa01  ---
This is still present

Version: 6.3.0.0.alpha0+
Build ID: ea9c13be02ba731074fa4207944ff7df40a0fb5c
CPU threads: 2; OS: Mac OS X 10.13.6; UI render: default; VCL: osx; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2019-04-10_20:43:17
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 91263] [META] Microsoft Office Excel 2013 Template Tracker

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91263
Bug 91263 depends on bug 91274, which changed state.

Bug 91274 Summary: MSO2013 Template - D Business Verification - Cell 
Background Not Imported After XLSX Saved
https://bugs.documentfoundation.org/show_bug.cgi?id=91274

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 91274] MSO2013 Template - D Business Verification - Cell Background Not Imported After XLSX Saved

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91274

eisa01  changed:

   What|Removed |Added

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

--- Comment #7 from eisa01  ---
This is fixed

There are some new interoperability bugs on this, e.g., the text of H2:J2 is
now blue instead of white, plus some other visual bugs in case anyone wants to
file that

Version: 6.3.0.0.alpha0+
Build ID: ea9c13be02ba731074fa4207944ff7df40a0fb5c
CPU threads: 2; OS: Mac OS X 10.13.6; UI render: default; VCL: osx; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2019-04-10_20:43:17
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124856] remove "kurdish northern (turkey)" from the region, currency and local settings

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124856

V Stuart Foote  changed:

   What|Removed |Added

 CC||er...@redhat.com,
   ||vstuart.fo...@utsa.edu
 Resolution|--- |INVALID
 Status|UNCONFIRMED |RESOLVED
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=63
   ||460

--- Comment #1 from V Stuart Foote  ---
Nor does LibreOffice state that there is!  => NAB

The LibreOffice language strings are apolitical, they do not imply official
state status--only the language locale. The project follows international
Unicode standards presented in IANA, CLDR, BCP-47, and ISO 639-3

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 101368] Print selected area does not wrap text

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101368

--- Comment #9 from eisa01  ---
This is still present

Version: 6.3.0.0.alpha0+
Build ID: ea9c13be02ba731074fa4207944ff7df40a0fb5c
CPU threads: 2; OS: Mac OS X 10.13.6; UI render: default; VCL: osx; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2019-04-10_20:43:17
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 120695] FILEOPEN unixODBC connection to sqlite database not working

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120695

--- Comment #19 from verlata  ---
Problem fixed!

After trying to reinstall sqlite odbc driver, I looked into edit -> database ->
Advanced settings -> Special Settings: un-flagged "Respect the result set type
from the database driver" et voilà: records are back visible!!!

Maybe the version upgrade changed this setting without me to notice?

I don't understand the purpose of this setting, so I cannot say wether this is
a clean solution: any explanation will be greatly appreciated.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 93485] Middle-of-curved-connector anchor moves away from the curve if edited

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93485

--- Comment #11 from eisa01  ---
No, it was just more broken on 3.3 :)

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 87351] [META] Conditional formatting bugs and enhancements

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87351
Bug 87351 depends on bug 81765, which changed state.

Bug 81765 Summary: FILEOPEN: slow loading in minutes of .ods and .xlsx with 
>1000 of conditional formats, also dump
https://bugs.documentfoundation.org/show_bug.cgi?id=81765

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 81765] FILEOPEN: slow loading in minutes of .ods and .xlsx with >1000 of conditional formats, also dump

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81765

Noel Grandin  changed:

   What|Removed |Added

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

--- Comment #16 from Noel Grandin  ---
I've got a couple of small tweaks still coming for this, but with the time now
under 15s for me, I consider this closed

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 93485] Middle-of-curved-connector anchor moves away from the curve if edited

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93485

Buovjaga  changed:

   What|Removed |Added

 CC||eis...@gmail.com

--- Comment #10 from Buovjaga  ---
(In reply to eisa01 from comment #9)
> Still present
> 
> On 3.3 it doesn't even try to move, so not setting as inherited

Do you mean this is a regression?

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124275] Switching from None to Continuous on a shape that touches a margin pushes out that margin upon export to GIF/PNG/etc.

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124275

Buovjaga  changed:

   What|Removed |Added

Version|6.2.2.2 release |4.3.0.4 release
 Ever confirmed|0   |1
   Keywords||notBibisectable, regression
 OS|Windows (All)   |All
 Status|UNCONFIRMED |NEW
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=11
   ||7160
 Blocks||109323

--- Comment #8 from Buovjaga  ---
Nope, like I mentioned in bug 117160, I cannot repro with the same older
versions on Linux as I can on Windows! Even version 5.0 is fine on Linux, with
both the steps in bug 117160 and the file in this report.

We would need even older bibisect repos for Windows.

Let's keep this open for now as we are not 100% certain it is a duplicate of
your older report.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=109323
[Bug 109323] [META] Graphic export bugs and enhancements (jpg, png, eps, tiff,
gif ...)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 117160] Solid color background on Impress and Draw leaves top and left 1px white/blank when exporting to PNG

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117160

Buovjaga  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 109323] [META] Graphic export bugs and enhancements (jpg, png, eps, tiff, gif ...)

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109323

Buovjaga  changed:

   What|Removed |Added

 Depends on||124275


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=124275
[Bug 124275] Switching from None to Continuous on a shape that touches a margin
pushes out that margin upon export to GIF/PNG/etc.
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 93485] Middle-of-curved-connector anchor moves away from the curve if edited

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93485

--- Comment #9 from eisa01  ---
Still present

On 3.3 it doesn't even try to move, so not setting as inherited

Version: 6.3.0.0.alpha0+
Build ID: ea9c13be02ba731074fa4207944ff7df40a0fb5c
CPU threads: 2; OS: Mac OS X 10.13.6; UI render: default; VCL: osx; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2019-04-10_20:43:17
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 109323] [META] Graphic export bugs and enhancements (jpg, png, eps, tiff, gif ...)

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109323
Bug 109323 depends on bug 84877, which changed state.

Bug 84877 Summary: In JPEG export, fields coerced to valid values so quickly 
that it interferes with entry
https://bugs.documentfoundation.org/show_bug.cgi?id=84877

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 84877] In JPEG export, fields coerced to valid values so quickly that it interferes with entry

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84877

eisa01  changed:

   What|Removed |Added

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

--- Comment #11 from eisa01  ---
This works for me now

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 84877] In JPEG export, fields coerced to valid values so quickly that it interferes with entry

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84877

--- Comment #12 from eisa01  ---
(In reply to eisa01 from comment #11)
> This works for me now

Version: 6.3.0.0.alpha0+
Build ID: ea9c13be02ba731074fa4207944ff7df40a0fb5c
CPU threads: 2; OS: Mac OS X 10.13.6; UI render: default; VCL: osx; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2019-04-10_20:43:17
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 42000] WRITER: Character font cap height is not displayed on capital letters

2019-04-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42000

--- Comment #20 from eisa01  ---
This is still present

Report: Press shift+q to write Й using Russian keyboard
Note: the tilde is cropped, but as soon as you press enter for a new line, the
rendering becomes correct

Version: 6.3.0.0.alpha0+
Build ID: ea9c13be02ba731074fa4207944ff7df40a0fb5c
CPU threads: 2; OS: Mac OS X 10.13.6; UI render: default; VCL: osx; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2019-04-10_20:43:17
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

  1   2   3   >