[Libreoffice-bugs] [Bug 117900] After signing a signature line, graphic does not reflect " signed" state

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117900

raal  changed:

   What|Removed |Added

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

--- Comment #1 from raal  ---
Setting to new.

-- 
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 117901] Signature line can't be signed with OOXML docs

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117901

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||r...@post.cz
 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 117903] Allow signature lines in Calc

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117903

raal  changed:

   What|Removed |Added

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

--- Comment #1 from raal  ---

https://support.office.com/en-us/article/add-or-remove-a-digital-signature-in-office-files-70d26dc9-be10-46f1-8efa-719c8b3f1a2d#__toc311526851

-- 
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 117904] Signed signature lines must not be copied

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117904

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||r...@post.cz
 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 114751] Preferred font order for Japanese locale

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114751

--- Comment #8 from Yousuf Philips (jay) (retired)  ---
(In reply to Xisco Faulí from comment #7)
> Hi Takeshi Abe,
> Is this bug fixed? if so, could you please close it as RESOLVED FIXED ?
> Otherwise, Could you please explain what's missing?
> Thanks

His change only modified fonts in UI_SANS (font used for the UI), but the font
order in CJK_TEXT, CJK_HEADING, CJK_PRESENTATION, CJK_SPREADSHEET, UI_FIXED,
FIXED, LATIN_PRESENTATION, LATIN_SPREADSHEET, and LATIN_FIXED also need to be
modified.

What Takeshi mentioned in his commit message, "This addresses only part of the
issue; another incoming change will take care of the rest."

-- 
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: extensions/source

2018-05-30 Thread Tor Lillqvist
 extensions/source/ole/unoobjw.cxx |6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit 98630a6edf91183dbd8f1bdb02616889251927de
Author: Tor Lillqvist 
Date:   Thu Mar 22 20:01:41 2018 +0200

Remove leftover hardcoded check for SwVbaApplication

Instead, be generic, check whether the objects implements
ooo::vba::XConnectable. That's what we do in the
IID_IConnectionPointContainer case, too.

Change-Id: Ib499aa011775f79a2accaef64e19738bdb7ed143
Reviewed-on: https://gerrit.libreoffice.org/55109
Tested-by: Jenkins 
Reviewed-by: Tor Lillqvist 

diff --git a/extensions/source/ole/unoobjw.cxx 
b/extensions/source/ole/unoobjw.cxx
index b7aa0fa48cd3..4acd25081315 100644
--- a/extensions/source/ole/unoobjw.cxx
+++ b/extensions/source/ole/unoobjw.cxx
@@ -207,9 +207,11 @@ STDMETHODIMP InterfaceOleWrapper::QueryInterface(REFIID 
riid, LPVOID FAR * ppv)
 *ppv = static_cast(this);
 SAL_INFO("extensions.olebridge", "  " << *ppv);
 }
-else if (IsEqualIID(riid, IID_IProvideClassInfo) &&
- m_sImplementationName == "SwVbaApplication")
+else if (IsEqualIID(riid, IID_IProvideClassInfo))
 {
+Reference xConnectable(m_xOrigin, UNO_QUERY);
+if (!xConnectable.is())
+return E_NOINTERFACE;
 AddRef();
 *ppv = static_cast(this);
 SAL_INFO("extensions.olebridge", "  " << *ppv);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: oovbaapi/ooo oovbaapi/UnoApi_oovbaapi.mk

2018-05-30 Thread Tor Lillqvist
 oovbaapi/UnoApi_oovbaapi.mk|1 
 oovbaapi/ooo/vba/word/XApplicationOutgoing.idl |2 -
 oovbaapi/ooo/vba/word/XDocumentOutgoing.idl|   35 +
 3 files changed, 37 insertions(+), 1 deletion(-)

New commits:
commit 20e6e0c507119a190adb3454da9eca44d470df1a
Author: Tor Lillqvist 
Date:   Thu Mar 22 16:48:19 2018 +0200

Add ooo.vba.word.XDocumentOutgoing

Change-Id: I0243ee3e492d8445ebcc059293dcc4cb3c5c889b
Reviewed-on: https://gerrit.libreoffice.org/55105
Tested-by: Jenkins 
Reviewed-by: Tor Lillqvist 

diff --git a/oovbaapi/UnoApi_oovbaapi.mk b/oovbaapi/UnoApi_oovbaapi.mk
index 39c558257153..009405a80ca7 100644
--- a/oovbaapi/UnoApi_oovbaapi.mk
+++ b/oovbaapi/UnoApi_oovbaapi.mk
@@ -1049,6 +1049,7 @@ $(eval $(call 
gb_UnoApi_add_idlfiles,oovbaapi,ooo/vba/word,\
XDialog \
XDialogs \
XDocument \
+   XDocumentOutgoing \
XDocuments \
XField \
XFields \
diff --git a/oovbaapi/ooo/vba/word/XApplicationOutgoing.idl 
b/oovbaapi/ooo/vba/word/XApplicationOutgoing.idl
index 11ac1da2a540..e38dba8479e8 100644
--- a/oovbaapi/ooo/vba/word/XApplicationOutgoing.idl
+++ b/oovbaapi/ooo/vba/word/XApplicationOutgoing.idl
@@ -18,7 +18,7 @@ module ooo {  module vba {  module word {
 // is identical to that offered to StarBasic code written in a VBA-like 
fashion.
 
 // This interface exists for technical reasons only, we don't actually have 
any UNO object that
-// would implemenrt (inherit from) this. We just advertise the type of this 
interface from Writer to
+// would implement (inherit from) this. We just advertise the type of this 
interface from Writer to
 // the Automation-UNO bridge code (in extensions/source/ole) so that it can 
tell the Automation
 // client what the Automation server expects and construct a corresponding COM 
interface that can
 // receive the callbacks. Or something like that.
diff --git a/oovbaapi/ooo/vba/word/XDocumentOutgoing.idl 
b/oovbaapi/ooo/vba/word/XDocumentOutgoing.idl
new file mode 100644
index ..3d2e0c70cd2e
--- /dev/null
+++ b/oovbaapi/ooo/vba/word/XDocumentOutgoing.idl
@@ -0,0 +1,35 @@
+/* -*- 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/.
+ */
+
+#ifndef __ooo_vba_word_XDocumentOutgoing_idl__
+#define __ooo_vba_word_XDocumentOutgoing_idl__
+
+module ooo {  module vba {  module word {
+
+// Despite being here in ooo::vba, this has nothing to do with "VBA" (Visual 
Basic for
+// Applications), or the VBA compatibility in StarBasic. This is related to 
using LibreOffice from
+// (OLE) Automation clients. It is here anyway because much of the API 
available to such clients
+// is identical to that offered to StarBasic code written in a VBA-like 
fashion.
+
+// This interface exists for technical reasons only, we don't actually have 
any UNO object that
+// would implement (inherit from) this. We just advertise the type of this 
interface from Writer to
+// the Automation-UNO bridge code (in extensions/source/ole) so that it can 
tell the Automation
+// client what the Automation server expects and construct a corresponding COM 
interface that can
+// receive the callbacks. Or something like that.
+
+interface XDocumentOutgoing : XInterfaceWithIID
+{
+void Close();
+};
+
+}; }; };
+
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117923] FILEOPEN Numbering in a specific DOC is huge

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117923

Aron Budea  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected

--- Comment #2 from Aron Budea  ---
Bibisected to the following range:
https://cgit.freedesktop.org/libreoffice/core/log/?qt=range=934e051b16349a1ab6d2bdd9f03e60aaafcb2ec8..75df7739309ccc5342084e668d9d869620cb3233

I wonder if this commit could be the culprit (wild guess):
https://cgit.freedesktop.org/libreoffice/core/commit/?id=9eb05aa6883ea41fb1d1dad2f7f1870e8e63ce32
author  Miklos Vajna   2012-08-08 18:07:03 +0200
committer   Miklos Vajna   2012-08-08 18:12:06 +0200

"n#774681 SwFltControlStack::NewAttr don't extend font name / size attributes"

It's also possible that the behavior was correct by accident.

-- 
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 117896] FILESAVE, EDITING Performance of Calc become very slow after copy sheet

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117896

--- Comment #6 from Nelson  ---
Still thinking about what @m.a.riosv said earlier on the formula calculation. 
Looking at the formula, where the parameter in it is already locked to a
particular sheet, does it still need to be recalculated when copying sheet ?

-- 
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 117924] Pivot Tables Sort Only on First Row or Column, and only after created

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117924

--- Comment #1 from Jim Davis  ---
Created attachment 142431
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142431=edit
A pivot table in a spreadsheet (typical, I presume)

-- 
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 117924] New: Pivot Tables Sort Only on First Row or Column, and only after created

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117924

Bug ID: 117924
   Summary: Pivot Tables Sort Only on First Row or Column, and
only after created
   Product: LibreOffice
   Version: 6.0.4.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jd...@jd4x4.net

Description:
1. Pivot tables only sort on first row or column after created.
2. Setting sort criteria in Layout dialog (before table creation) appears
inoperative.

Steps to Reproduce:
1.Create a pivot table with more than 1 row and more than 1 column
2.assign sort orders in Layout mode or generate pivot table and ..
3.Try to sort by any row or column other than the first

Actual Results:  
Only able to sort the first row and/or column

Expected Results:
Data columns & rows should sort by multiple rows and/or columns or at a
minimum, sort by other rows and/or columns than only the first. 


Reproducible: Always


User Profile Reset: No



Additional Info:


User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36

-- 
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 88761] Table of checkbox control in Autocorrect Options dialog not exposed to AT

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88761

--- Comment #15 from am_dxer  ---
Still present in 6.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 69697] Background color messed with numbered paragraphs

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=69697

--- Comment #11 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 52527] : Background Colour for Fields is Used Incorrectly for Dotted Lines Tables of Contents

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=52527

--- Comment #9 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 62361] FILEOPEN without optimum row height calculation

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=62361

--- Comment #12 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 92658] AutoCorrect does not replace end quote with smart quote when it is preceded by a field

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92658

--- 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 68065] EDITING: Clicking into half-visible comment selects text, because it shifts the view

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=68065

--- 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 96490] Accessible object: children-changed events not emitted when paragraphs are created, destroyed , or exposed

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96490

--- Comment #6 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 105518] F6 lands on infobar when it isnt visible

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105518

--- Comment #9 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 104346] FILEOPEN DOCX: No continuous line at the left side

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104346

--- 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 73446] EDITING: empty comment is deleted when you move cursor back to document ( can be recreated by undo)

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=73446

--- Comment #11 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 96756] JAHRE (german) - YEARS (engl.): Err:502 with date 01.01.0001, works with 02.01.0001

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96756

--- 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 46928] EDITING Insert Field Filename inserts Path+Filename instead of Filename

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46928

--- Comment #10 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 88761] Table of checkbox control in Autocorrect Options dialog not exposed to AT

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88761

--- Comment #14 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 96492] Broken accessibility tree when objects are accessed via flows-to/ flows-from relation

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96492

--- Comment #6 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 30873] Field variables break with additional formats

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=30873

--- Comment #23 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 52525] Background Colour for Fields is Used Incorrectly for Bullets, Numbering Digits and Chapter Numbers

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=52525

--- Comment #11 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 75208] FORMATTING: Lots of formatting problems in complex .docx document

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75208

--- 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 31408] A order of right and left format of the footer breaks.

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=31408

--- Comment #8 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 50031] The field for equation AutoText is named just "Text"

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=50031

--- Comment #10 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-ux-advise] [Bug 30873] Field variables break with additional formats

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=30873

--- Comment #23 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 on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 97969] Hidden rows are not ignored during column sort

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97969

--- 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 76385] loop opening particular .docx (comment 5)

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76385

--- Comment #9 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 108238] Table alignment issue when open DOCX file in LO

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108238

--- 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 62421] Comments added to frames or image caption are placed unconditional at the top

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=62421

--- Comment #7 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 105171] Anomaly in Date fields in dialogues

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105171

--- 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 36999] DOCX import: For hidden ActiveX control, the replacement wmf is always shown

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=36999

--- 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 85230] FORMATTING: various (text-) elements around frame not in the right place (.docx file)

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85230

--- 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 117896] FILESAVE, EDITING Performance of Calc become very slow after copy sheet

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117896

--- Comment #5 from nelson.suw...@anj-group.com ---
The same operations/calculations were also tested on Ms Office 2016, on the
same machine, and no such issue was found.
So, it's still a bug for me.

-- 
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' - cui/source

2018-05-30 Thread Samuel Mehrbrodt
 cui/source/dialogs/SignSignatureLineDialog.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d96e30a157230d9ad60cddab47dc9b727849f7de
Author: Samuel Mehrbrodt 
Date:   Wed May 30 12:10:39 2018 +0200

Fix condition

Change-Id: I977eae208bd12886d25679d4c75308d51245766a
Reviewed-on: https://gerrit.libreoffice.org/55057
Reviewed-by: Samuel Mehrbrodt 
Tested-by: Samuel Mehrbrodt 
(cherry picked from commit 29f0c9d344bfe2e09727fd9b9aa88e8c7bf361e2)
Reviewed-on: https://gerrit.libreoffice.org/55067
Reviewed-by: Thorsten Behrens 
Tested-by: Thorsten Behrens 

diff --git a/cui/source/dialogs/SignSignatureLineDialog.cxx 
b/cui/source/dialogs/SignSignatureLineDialog.cxx
index 0c6059e75649..0753ecf30298 100644
--- a/cui/source/dialogs/SignSignatureLineDialog.cxx
+++ b/cui/source/dialogs/SignSignatureLineDialog.cxx
@@ -164,7 +164,7 @@ SignSignatureLineDialog::getSignedGraphic(bool bValid)
 OUString aIssuerLine = CuiResId(RID_SVXSTR_SIGNATURELINE_SIGNED_BY)
.replaceFirst("%1", 
m_xSelectedCertifate->getIssuerName());
 aSvgImage = aSvgImage.replaceAll("[SIGNED_BY]", 
getCDataString(aIssuerLine));
-if (!bValid)
+if (bValid)
 aSvgImage = aSvgImage.replaceAll("[INVALID_SIGNATURE]", "");
 
 OUString aDate;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-6-1' - xmloff/source

2018-05-30 Thread Samuel Mehrbrodt
 xmloff/source/draw/SignatureLineContext.cxx |   65 
 1 file changed, 65 insertions(+)

New commits:
commit f250fe68c6448ccaefd6665cd6ca3bdd85a6c5bb
Author: Samuel Mehrbrodt 
Date:   Mon May 28 10:16:54 2018 +0200

Load ODF signature line signed images

Change-Id: I7684d4747c4977103fcc3dca62f5d1c28a0836bf
Reviewed-on: https://gerrit.libreoffice.org/55056
Tested-by: Jenkins 
Reviewed-by: Samuel Mehrbrodt 
(cherry picked from commit 4315aea624635af540cdc5a497f5a9b607f52f2b)
Reviewed-on: https://gerrit.libreoffice.org/55066
Reviewed-by: Thorsten Behrens 

diff --git a/xmloff/source/draw/SignatureLineContext.cxx 
b/xmloff/source/draw/SignatureLineContext.cxx
index 5e8bdb32f578..3adc70dd779c 100644
--- a/xmloff/source/draw/SignatureLineContext.cxx
+++ b/xmloff/source/draw/SignatureLineContext.cxx
@@ -10,14 +10,27 @@
 #include "SignatureLineContext.hxx"
 
 #include 
+#include 
+#include 
+#include 
+#include 
+#include 
 #include 
 
+#include 
+#include 
 #include 
+#include 
 
 using namespace css;
 using namespace css::xml::sax;
 using namespace css::uno;
 using namespace css::drawing;
+using namespace css::embed;
+using namespace css::frame;
+using namespace css::io;
+using namespace css::graphic;
+using namespace css::security;
 using namespace xmloff::token;
 
 SignatureLineContext::SignatureLineContext(SvXMLImport& rImport, sal_uInt16 
nPrfx,
@@ -45,6 +58,58 @@ SignatureLineContext::SignatureLineContext(SvXMLImport& 
rImport, sal_uInt16 nPrf
 = xAttrList->getValueByName("loext:can-add-comment") == 
GetXMLToken(XML_TRUE);
 xPropSet->setPropertyValue("SignatureLineShowSignDate", 
Any(bShowSignDate));
 xPropSet->setPropertyValue("SignatureLineCanAddComment", 
Any(bCanAddComment));
+
+Reference xGraphic;
+try
+{
+// Get the document signatures
+Reference xSignatures(
+security::DocumentDigitalSignatures::createWithVersion(
+comphelper::getProcessComponentContext(), "1.2"));
+
+css::uno::Reference xStorable(GetImport().GetModel(), 
UNO_QUERY_THROW);
+Reference xStorage = 
comphelper::OStorageHelper::GetStorageOfFormatFromURL(
+ZIP_STORAGE_FORMAT_STRING, xStorable->getLocation(), 
ElementModes::READ);
+
+if (!xStorage.is())
+{
+SAL_WARN("xmloff", "No xStorage!");
+return;
+}
+
+Sequence xSignatureInfo
+= xSignatures->verifyDocumentContentSignatures(xStorage, 
Reference());
+
+for (int i = 0; i < xSignatureInfo.getLength(); i++)
+{
+// Try to find matching signature line image - if none exists that 
is fine,
+// then the signature line is not digitally signed.
+if (xSignatureInfo[i].SignatureLineId == 
xAttrList->getValueByName("loext:id"))
+{
+if (xSignatureInfo[i].SignatureIsValid)
+{
+// Signature is valid, use the 'valid' image
+
SAL_WARN_IF(!xSignatureInfo[i].ValidSignatureLineImage.is(), "xmloff",
+"No ValidSignatureLineImage!");
+xGraphic = xSignatureInfo[i].ValidSignatureLineImage;
+}
+else
+{
+// Signature is invalid, use the 'invalid' image
+
SAL_WARN_IF(!xSignatureInfo[i].InvalidSignatureLineImage.is(), "xmloff",
+"No InvalidSignatureLineImage!");
+xGraphic = xSignatureInfo[i].InvalidSignatureLineImage;
+}
+xPropSet->setPropertyValue("Graphic", Any(xGraphic));
+break;
+}
+}
+}
+catch (css::uno::Exception&)
+{
+// DocumentDigitalSignatures service not available.
+// We render the "unsigned" shape instead.
+}
 }
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s 
cinkeys+=0=break: */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117923] FILEOPEN Numbering in a specific DOC is huge

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117923

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

-- 
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 117923] New: FILEOPEN Numbering in a specific DOC is huge

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117923

Bug ID: 117923
   Summary: FILEOPEN Numbering in a specific DOC is huge
   Product: LibreOffice
   Version: 4.0.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: bibisectRequest, filter:doc, regression
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ba...@caesar.elte.hu
Blocks: 104527, 113071

Created attachment 142429
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142429=edit
Sample DOC

Open the attached DOC, created in Word.

The numbering before the second entry is of very large size, while in Word it
isn't.

Observed using LO 6.1 alpha1 & 4.0.0.3 / Windows 7.
Size is fine in 3.5.0.3.
=> regression


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104527
[Bug 104527] [META] DOC (binary) format bug tracker
https://bugs.documentfoundation.org/show_bug.cgi?id=113071
[Bug 113071] [META] Line numbering/numbers 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 113071] [META] Line numbering/numbers bugs and enhancements

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113071

Aron Budea  changed:

   What|Removed |Added

 Depends on||117923


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117923
[Bug 117923] FILEOPEN Numbering in a specific DOC is huge
-- 
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 104527] [META] DOC (binary) format bug tracker

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104527

Aron Budea  changed:

   What|Removed |Added

 Depends on||117923


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117923
[Bug 117923] FILEOPEN Numbering in a specific DOC is huge
-- 
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 112616] FILEOPEN DOC: Line numbering for a section applies incorrectly to the entire document

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112616

Aron Budea  changed:

   What|Removed |Added

 Blocks||104527, 107738


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104527
[Bug 104527] [META] DOC (binary) format bug tracker
https://bugs.documentfoundation.org/show_bug.cgi?id=107738
[Bug 107738] [META] Section 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 104527] [META] DOC (binary) format bug tracker

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104527

Aron Budea  changed:

   What|Removed |Added

 Depends on||112616


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112616
[Bug 112616] FILEOPEN DOC: Line numbering for a section applies incorrectly to
the entire document
-- 
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 107738] [META] Section bugs and enhancements

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107738

Aron Budea  changed:

   What|Removed |Added

 Depends on||112616


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112616
[Bug 112616] FILEOPEN DOC: Line numbering for a section applies incorrectly to
the entire document
-- 
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 117293] Cannot select, move, or delete object link buttons after saving

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117293

Andy Goth  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
Version|6.0.3.2 release |6.0.4.2 release
 Ever confirmed|1   |0

--- Comment #2 from Andy Goth  ---
Reset profile and re-tested, identical results to what I previously described. 
This time I tested on a Slackware64-current system (updated earlier today).

Version: 6.0.4.2
Build ID: 9b0d9b32d5dcda91d2f1a96dc04c645c450872bf
CPU threads: 4; OS: Linux 4.14; UI render: default; VCL: gtk2; 
Locale: en-US (C); 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 117875] LibreOffice icon not displayed

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117875

Joao Farias  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||jgfaria...@gmail.com
Version|unspecified |6.0.4.2 release
 Ever confirmed|0   |1
   Severity|normal  |minor

--- Comment #1 from Joao Farias  ---
Thank you for reporting the bug.

Could you provide more details about your system and LO build?
Copying and pasting the content of LibreOffice > About LibreOffice would helps
track down the issue.

I have set the bug's status to 'NEEDINFO' and the version to '6.0.4.2 release'.
Please change it back to 'UNCONFIRMED' once the requested information is
provided.

-- 
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 106340] Buttons overlap other buttons when assigning Format options in Find & Replace dialog

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106340

--- Comment #6 from David C. Rankin  ---
Created attachment 142428
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142428=edit
Find-Replace Buttons Overlap when "Attributes" selected (like tabstop)

Buttons overlap in dialog - Gtk+3 Strikes 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 117290] Very slow download of libreoffice from Vietnam to Thailand

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117290

JoaoFarias  changed:

   What|Removed |Added

 CC||jgfaria...@gmail.com

--- Comment #3 from JoaoFarias  ---
Thank you for getting in touch with us!

Although Bugzilla sometimes feels like the center of the
Universe, there are a few topics that need to be
reported elsewhere. Since the problem is related to infrastructure, the right
place to report it is the Document Foundation's Redmine [1].

If you find that is not the best place to report, please look at the BugReport
wiki page [2].

[1] - https://wiki.documentfoundation.org/Website/Redmine
[2] -
https://wiki.documentfoundation.org/QA/BugReport#Not_all_bugs_go_to_Bugzilla

-- 
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 117922] New: libreoffice fails when launched with no_new_privs, due to AppArmor

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117922

Bug ID: 117922
   Summary: libreoffice fails when launched with no_new_privs, due
to AppArmor
   Product: LibreOffice
   Version: 6.0.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rob...@ocallahan.org

Description:
If you exec libreoffice with no_new_privs (e.g. by running it under rr,
https://rr-project.org/), the launch fails. It tries to exec
/usr/lib/libreoffice/program/javaldx, but the exec returns EPERM because
AppArmor has libreoffice in the libreoffice-oopslash profile, while
/usr/lib/libreoffice/program/javaldx is unconfined, and transitioning to
unconfined is not allowed with no_new_privs *even though the
libreoffice-oopslash profile is only in complain mode*. (See profile_onexec in
security/apparmor/domain.c... not clear whether enforcing this in complain mode
is an AppArmor bug or not.)

Maybe this could be fixed by putting /usr/lib/libreoffice/program/javaldx in
the same confinement profile as libreoffice-oopslash?

Steps to Reproduce:
$ setpriv --no-new-privs libreoffice


Actual Results:  
Warning: failed to launch javaldx - java may not function correctly
ERROR 4 forking process

Expected Results:
Libreoffice launches.


Reproducible: Always


User Profile Reset: No



Additional Info:


User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:62.0) Gecko/20100101
Firefox/62.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 117896] FILESAVE, EDITING Performance of Calc become very slow after copy sheet

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117896

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #4 from m.a.riosv  ---
There are 57000 VLOOKUP and another 28500 SUMIFS in the file, the new sheet
duplicate the VLOOKUPs and they need to be calculated, I think the source of
the slowness.
Inserting a Pivot table with MASTER GW can obtain their resume by days easily.
I don't agree it is a 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 117882] Deleting a row or adding a column decreases the height of the lines in spreadsheet.

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117882

Jacques Guilleron  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #6 from Jacques Guilleron  ---
Thank you for this information completion.
However, I still see no width modification. They are the same before and after
the row deletting: 8.77 cm.
Obviously, I see the red arrow apearing after the deletting. I thought to a
side effect, but when I use undo(Ctrl+z) and redo(Ctrl+y), those red arrows
desappear.
Is this the problem you see here and do you correct it this way?

-- 
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: sw/source

2018-05-30 Thread Tor Lillqvist
 sw/source/ui/vba/vbaapplication.hxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit 9112d1835b4f974878e24342979bbf54968e4b70
Author: Tor Lillqvist 
Date:   Thu Mar 22 18:01:41 2018 +0200

Bin leftover misleading comment

Change-Id: I594258303469a1f5b9490b824fdc304a5a780784

diff --git a/sw/source/ui/vba/vbaapplication.hxx 
b/sw/source/ui/vba/vbaapplication.hxx
index 73e16c5f71d1..8b8b85f86c8c 100644
--- a/sw/source/ui/vba/vbaapplication.hxx
+++ b/sw/source/ui/vba/vbaapplication.hxx
@@ -37,7 +37,6 @@ typedef cppu::ImplInheritanceHelper< VbaApplicationBase, 
ooo::vba::word::XApplic
 
 class SwVbaApplication : public SwVbaApplication_BASE
 {
-// FIXME: We allow just one sink at a time
 std::vector> mvSinks;
 
 public:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

2018-05-30 Thread Olivier Hallot
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 97d3aecd09c4ba61ae3bfdae188be872b143f5d4
Author: Olivier Hallot 
Date:   Wed May 30 19:40:37 2018 -0300

Updated core
Project: help  fc875c6ab3763e36008fd872b3670d953f18ba9d

Fix default cases in switches

Change-Id: I40f6c8e5a6fd0a0ff1d3e6205de449f14598212b
Reviewed-on: https://gerrit.libreoffice.org/55107
Tested-by: Jenkins 
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index a0b4db5f17e5..fc875c6ab376 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit a0b4db5f17e58f656d527b807e09ed02b04c2827
+Subproject commit fc875c6ab3763e36008fd872b3670d953f18ba9d
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: help3xsl/online_transform.xsl

2018-05-30 Thread Olivier Hallot
 help3xsl/online_transform.xsl |   42 +++---
 1 file changed, 19 insertions(+), 23 deletions(-)

New commits:
commit fc875c6ab3763e36008fd872b3670d953f18ba9d
Author: Olivier Hallot 
Date:   Wed May 30 19:40:37 2018 -0300

Fix default cases in switches

Change-Id: I40f6c8e5a6fd0a0ff1d3e6205de449f14598212b
Reviewed-on: https://gerrit.libreoffice.org/55107
Tested-by: Jenkins 
Reviewed-by: Olivier Hallot 

diff --git a/help3xsl/online_transform.xsl b/help3xsl/online_transform.xsl
index 54dd71c0c..d73413a3d 100644
--- a/help3xsl/online_transform.xsl
+++ b/help3xsl/online_transform.xsl
@@ -989,32 +989,28 @@
 
 
 
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
 
 
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
 
-
+
 
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

2018-05-30 Thread Olivier Hallot
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4d2966b50afd28644634016d7ab69e93ce4b68bc
Author: Olivier Hallot 
Date:   Wed May 30 18:30:50 2018 -0300

Updated core
Project: help  a0b4db5f17e58f656d527b807e09ed02b04c2827

tdf#58134 Some Options settings cannot be reset

Add warnings in help pages when some options cannot be reset.

This patch does not close the bug, which in some cases is a
bug in the dialog controller.

Change-Id: Ie6d0019a9c6611c2ad8784f593ceefa5748bf56b
Reviewed-on: https://gerrit.libreoffice.org/55103
Tested-by: Jenkins 
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index 7fe562928543..a0b4db5f17e5 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 7fe562928543fb6ef1bfc0e4662b6c10397c13a4
+Subproject commit a0b4db5f17e58f656d527b807e09ed02b04c2827
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-05-30 Thread Olivier Hallot
 source/text/shared/00/0001.xhp   |   15 +--
 source/text/shared/optionen/0100.xhp |   11 +++
 source/text/shared/optionen/01010200.xhp |2 ++
 source/text/shared/optionen/01010400.xhp |2 ++
 source/text/shared/optionen/01010700.xhp |7 ---
 source/text/shared/optionen/0102.xhp |1 +
 source/text/shared/optionen/01020100.xhp |2 ++
 source/text/shared/optionen/01030300.xhp |   18 --
 source/text/shared/optionen/01030500.xhp |1 +
 source/text/shared/optionen/01110100.xhp |1 +
 source/text/shared/optionen/0114.xhp |2 ++
 source/text/shared/optionen/java.xhp |   12 +++-
 12 files changed, 54 insertions(+), 20 deletions(-)

New commits:
commit a0b4db5f17e58f656d527b807e09ed02b04c2827
Author: Olivier Hallot 
Date:   Wed May 30 18:30:50 2018 -0300

tdf#58134 Some Options settings cannot be reset

Add warnings in help pages when some options cannot be reset.

This patch does not close the bug, which in some cases is a
bug in the dialog controller.

Change-Id: Ie6d0019a9c6611c2ad8784f593ceefa5748bf56b
Reviewed-on: https://gerrit.libreoffice.org/55103
Tested-by: Jenkins 
Reviewed-by: Olivier Hallot 

diff --git a/source/text/shared/00/0001.xhp 
b/source/text/shared/00/0001.xhp
index 8e9696e4c..227348d3b 100644
--- a/source/text/shared/00/0001.xhp
+++ b/source/text/shared/00/0001.xhp
@@ -211,8 +211,8 @@
   
   
 
-Backin Tools - Options
- Resets modified 
values back to the $[officename] default values.
+Resetin Tools - Options
+Resets changes made to the current tab to 
those applicable when this dialog was opened.
   
   
 
@@ -260,5 +260,16 @@
 
   Press Shift+F1 and point to a control 
to learn more about that control.
 
+
+Options dialog buttons
+OK
+Save the changes in the page and close the Options 
dialog.
+Cancel
+Close the Options dialog and discard all changes 
done.
+
+
+Some options can't be reset once edited. Either edit back the 
changes manually or press Cancel and reopen the Options 
dialog.
+
+

 
diff --git a/source/text/shared/optionen/0100.xhp 
b/source/text/shared/optionen/0100.xhp
index 51f5cdcf5..1481da439 100644
--- a/source/text/shared/optionen/0100.xhp
+++ b/source/text/shared/optionen/0100.xhp
@@ -1,6 +1,6 @@
 
 
-   
+
 
- 
-   
+
+
 
   
  Options
@@ -43,7 +43,10 @@
   
  
  Note for macOS users: The Help mentions the menu path Tools - 
Options at numerous places. Replace this path with %PRODUCTNAME - Preferences 
on your macOS main menu. Both menu entries open the Options dialog 
box.
-  
+ 
+ 
+  Help
+  Opens the help contents for the Options page 
displayed.
   %PRODUCTNAME
   
   Load/Save
diff --git a/source/text/shared/optionen/01010200.xhp 
b/source/text/shared/optionen/01010200.xhp
index 451ca98bb..0cc76bd24 100644
--- a/source/text/shared/optionen/01010200.xhp
+++ b/source/text/shared/optionen/01010200.xhp
@@ -41,6 +41,7 @@
   
  
   
+  
   Load
 
 Load 
user-specific settings with the document
@@ -156,5 +157,6 @@
 
 Always 
save as
   Specifies how documents of the type selected on 
the left will always be saved as this file type. You may select another file 
type for the current document in the Save as 
dialog.
+  

 
diff --git a/source/text/shared/optionen/01010400.xhp 
b/source/text/shared/optionen/01010400.xhp
index 522ba85d8..4f6694b23 100644
--- a/source/text/shared/optionen/01010400.xhp
+++ b/source/text/shared/optionen/01010400.xhp
@@ -45,6 +45,7 @@
 
 
 
+
 
 Available Language Modules
 Contains the installed language 
modules.
@@ -136,5 +137,6 @@
 Hyphenate special regions
 Specifies that 
hyphenation will also be carried out in footnotes, headers and 
footers.
 
+
 
 
diff --git a/source/text/shared/optionen/01010700.xhp 
b/source/text/shared/optionen/01010700.xhp
index 6ebfe438e..5ed7a42c0 100644
--- a/source/text/shared/optionen/01010700.xhp
+++ b/source/text/shared/optionen/01010700.xhp
@@ -1,7 +1,7 @@
 
 
 
-   
+
 
- 
-   
+
+
 
 
 Fonts
@@ -42,6 +42,7 @@
 
 
 Font replacement 
also affects the display of fonts on the $[officename] user 
interface.
+
 
 Apply 
replacement table
 Enables the font replacement settings that 
you define.
diff --git a/source/text/shared/optionen/0102.xhp 
b/source/text/shared/optionen/0102.xhp
index 706c3a600..cb66bbf8b 100644
--- a/source/text/shared/optionen/0102.xhp
+++ b/source/text/shared/optionen/0102.xhp
@@ -43,5 +43,6 @@
   
   
   
+  
  
 
diff --git a/source/text/shared/optionen/01020100.xhp 
b/source/text/shared/optionen/01020100.xhp
index 5f92db51b..61f5d5264 100644
--- a/source/text/shared/optionen/01020100.xhp
+++ b/source/text/shared/optionen/01020100.xhp
@@ -39,6 +39,7 @@
 
   
 
+
 Settings
 Defines the 
settings for the proxy server.
 

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

2018-05-30 Thread Tor Lillqvist
 extensions/source/ole/servprov.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 3f3b7b38df42695c934d6382659db1b79b236c28
Author: Tor Lillqvist 
Date:   Thu Mar 22 10:43:31 2018 +0200

We want just one SwVbaGlobals and SwVbaApplication for all Automation 
clients

I think. Anyway, if it turns out we do want one per client, easy to
revert this. (And it isn't very common to have several Automation
clients connected at the same time anyway, surely.)

There will still additionally be one SwVbaGlobals (and
SwVbaApplication) per open document with a StarBasic interpreter,
though. I think.

Change-Id: I5f7dbfd65b5decb152c1192298bc85dcf6027d64
Reviewed-on: https://gerrit.libreoffice.org/55094
Reviewed-by: Tor Lillqvist 
Tested-by: Tor Lillqvist 

diff --git a/extensions/source/ole/servprov.cxx 
b/extensions/source/ole/servprov.cxx
index f316e86a9f5c..843e6c128af0 100644
--- a/extensions/source/ole/servprov.cxx
+++ b/extensions/source/ole/servprov.cxx
@@ -476,8 +476,8 @@ OleServer::OleServer( const 
Reference& smgr):
 
 (void) provideInstance( [&]
 {
-const Reference xWordGlobals = 
m_smgr->createInstance("ooo.vba.word.Globals");
-xWordGlobals->acquire();
+// We want just one SwVbaGlobals for all 
Automation clients
+static const Reference 
xWordGlobals = m_smgr->createInstance("ooo.vba.word.Globals");
 const Reference 
xHelperInterface(xWordGlobals, UNO_QUERY);
 Any aApplication = 
xHelperInterface->Application();
 Reference xApplication;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117921] Fileopen DOCX: Support both Vertical Directions in Text Box

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117921

Luke  changed:

   What|Removed |Added

Summary|Fileopen DOCX: Vertical |Fileopen DOCX: Support both
   |Text in Tables incorrectly  |Vertical Directions in Text
   |positioned  |Box

-- 
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 117921] Fileopen DOCX: Vertical Text in Tables incorrectly positioned

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117921

--- Comment #1 from Luke  ---
Created attachment 142427
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142427=edit
Screenshot of Word 2013 vs Writer 6.2

-- 
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 117881] FILEOPEN DOCX: Linefeed or pagebreak is missing from imported word DOCX document in libreoffice writer.

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117881

--- Comment #5 from Marco Diego Aurélio Mesquita  
---
I compiled Libreoffice from source and made some experiments. The following
changes seem to fix the bug, but it breaks tests (CppunitTest_sw_ooxmlexport9).

diff --git a/vcl/source/font/fontmetric.cxx b/vcl/source/font/fontmetric.cxx
index b54e41a..142e94e 100644
--- a/vcl/source/font/fontmetric.cxx
+++ b/vcl/source/font/fontmetric.cxx
@@ -457,7 +457,7 @@ void ImplFontMetricData::ImplCalcLineSpacing(const
std::vector& rHheaDa
 {
 fAscent =  rInfo.ascender  * fScale;
 fDescent= -rInfo.descender * fScale;
-fExtLeading =  rInfo.linegap   * fScale;
+fExtLeading =  rInfo.linegap   * (fScale + 0.5);
 }

 // But if OS/2 is present, prefer 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 117921] New: Fileopen DOCX: Vertical Text in Tables incorrectly positioned

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117921

Bug ID: 117921
   Summary: Fileopen DOCX: Vertical Text in Tables incorrectly
positioned
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lukebe...@hotmail.com

Created attachment 142426
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142426=edit
docx Text Boxes with both directions of Vertical Text

Text Boxes can have 2 vertical text directions. We only correctly import the
bottom to top (90 deg). The more common top to bottom ( 270 deg) is imported as
horizontal.

-- 
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 117879] Formula truncated falsely if the first/ middle argument of the function(with two or more significant args) contains a non-constants parameter within array of constants

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117879

--- Comment #3 from m.a.riosv  ---
Please take a look to the help about inline arrays.
https://help.libreoffice.org/Calc/Array_Functions#Using_Inline_Array_Constants_in_Formulas

So only values are allowed, and I think there is not allowed mix inline arrays
and other data with the same argument type. But it works with a formula like:
=VLOOKUP(A3;{0|0;4000|0,07;6000|0,1;9000|0,15};2)

Maybe to do what you want, the way is enter the formula as array not with an
inline array.
{=SUM(A1:A6,2,3,4,5)}
Introduced with [shift+Ctrl+Enter] without the brackets.

-- 
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 117914] printing multiple copies of documents

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117914

--- Comment #1 from Marco A.G.Pinto  ---
Ahhh... the printer is an HP 8725 in case you need to know.

After each copy, it gives a melody and its LCD gives a green colour.

-- 
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 117916] Installation of 6.0.4.2 warning so cannot install!

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117916

john4070  changed:

   What|Removed |Added

  Component|Writer  |Calc
Summary|Installation of 6.4.4.2 |Installation of 6.0.4.2
   |warning so cannot install!  |warning so cannot install!

-- 
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 117915] New: Bullet Tooltips Describe Wrong Symbol

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117915

Bug ID: 117915
   Summary: Bullet Tooltips Describe Wrong Symbol
   Product: LibreOffice
   Version: 6.0.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: trivial
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: andrewdco...@gmail.com

Description:
The tooltip text displayed when hovering over the "x" bullet and check mark
bullet icons are incorrect. The "x" bullet is described as a "check mark
bullet" while the check mark is described as a "tick mark bullet". It seems
like these should be switched: "x" is a tick mark and the check mark is, well,
the check mark.

Affects: Impress, Writer
Keywords: UI
Version: 6.0.4.2
Build ID: 9b0d9b32d5dcda91d2f1a96dc04c645c450872bf
CPU threads: 8; OS: Mac OS X 10.13.4; UI render: default; 
Locale: en-US (en_US.UTF-8); Calc: group

Steps to Reproduce:
1. Open a Writer or Impress document
2. Type some text
3. In the formatting menu, select the bullet options to open the submenu
4. Hover over the "x" or check mark bullet options to see the tooltip text

Actual Results:  
The text for the "x" and check mark are switched

Expected Results:
the "x" bullet should be called a "tick mark" while the check mark should be
called a "check mark"


Reproducible: Always


User Profile Reset: No


OpenGL enabled: Yes

Additional Info:


User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:52.0)
Gecko/20100101 Firefox/52.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 117916] New: Installation of 6.4.4.2 warning so cannot install!

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117916

Bug ID: 117916
   Summary: Installation of 6.4.4.2 warning so cannot install!
   Product: LibreOffice
   Version: 6.0.4.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jbk4...@gmail.com

Description:
Could not create shortcut LibreOffice 6.0 Ink.
Okay.  I'm supposed to "verify that the destination folder exists and that I
can access it."
Say what?
How would I have ANY IDEA of the destination folder.  I though your
installation was supposed to take care of that.
HELP?  (I've even donated again!)
I can send a Snipping tool pic of the warning if you need it.

Actual Results:  
It pops up when I try to install the program!

Expected Results:
I explained that above.


Reproducible: Always


User Profile Reset: No



Additional Info:


User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36

-- 
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 117914] New: printing multiple copies of documents

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117914

Bug ID: 117914
   Summary: printing multiple copies of documents
   Product: LibreOffice
   Version: 6.1.0.0.alpha1+
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: marcoagpi...@sapo.pt
CC: marcoagpi...@sapo.pt

Yesterday I was printing six copies of a one-page document.

After each print, the printer gives the end melody.

I converted to PDF and printed with Adobe Reader and it only gives the melody
in the end.

I know it works, but it is annoying to hear the melody after each copy.

-- 
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 117906] Fileopen DOCX: Vertical Text in Tables incorrectly positioned

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117906

Luke  changed:

   What|Removed |Added

 Attachment #142413|Simple Text Box with both   |Simple Table with both
description|kinds of Vertical Text  |kinds of Vertical Text.
   ||Bottom to Top text
   ||incorrect.

-- 
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 117906] Fileopen DOCX: Vertical Text in Tables incorrectly positioned

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117906

Luke  changed:

   What|Removed |Added

Summary|Fileopen DOCX: Support both |Fileopen DOCX: Vertical
   |Vertical Directions in Text |Text in Tables incorrectly
   |Box |positioned

--- Comment #3 from Luke  ---
Arrgh. I screwed up my description as I was simultaneously creating test
documents for 2 vertical text issue that I discovered. Let's track the table
bug here. Updated the summary.

-- 
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: extensions/source oovbaapi/ooo oovbaapi/UnoApi_oovbaapi.mk sw/source

2018-05-30 Thread Tor Lillqvist
 extensions/source/ole/servprov.cxx |8 
 extensions/source/ole/unoobjw.cxx  | 1131 +
 extensions/source/ole/unoobjw.hxx  |   26 
 oovbaapi/UnoApi_oovbaapi.mk|7 
 oovbaapi/ooo/vba/TypeAndIID.idl|   30 
 oovbaapi/ooo/vba/XConnectable.idl  |   38 
 oovbaapi/ooo/vba/XConnectionPoint.idl  |   34 
 oovbaapi/ooo/vba/XInterfaceWithIID.idl |   34 
 oovbaapi/ooo/vba/XSink.idl |   36 
 oovbaapi/ooo/vba/XSinkCaller.idl   |   29 
 oovbaapi/ooo/vba/word/XApplication.idl |2 
 oovbaapi/ooo/vba/word/XApplicationOutgoing.idl |   36 
 sw/source/ui/vba/vbaapplication.cxx|  103 ++
 sw/source/ui/vba/vbaapplication.hxx|   20 
 14 files changed, 1366 insertions(+), 168 deletions(-)

New commits:
commit f7e0297b01f739e17f2f9517bf3d89baaee654ab
Author: Tor Lillqvist 
Date:   Fri Mar 16 16:39:37 2018 +0200

Work in progress related to invoking events in Automation clients

XConnectable interfaces need a second IID, for the interface "itself",
not the coclass. (I am sure there is some catchy short term for that,
I just can't find it right now.)

Allow several simultaneous sinks for a SwVbaApplication. Not sure in
what case such would be needed, but you never know about 3rd-party
client code, and it's trivial to handle anyway, so why not.

Lots of FIXMEs still. There is likely also a lot of leaks. But at
least an event handler in a simple VBScript script does get invoked.

Note that the changed and added code in extensions/source/ole is
totally unaware of what outgoing ("event") interfaces Writer or Calc
implements, it is all handled generically through the UNO interfaces I
added recently.

One particular thing that needs doing is to actually make Writer (and
Calc) raise this kind of events when necessary. The current code to
invoke events handlers in StarBasic (including StarBasic code running
in "VBA" compaibility) is very much tied to having StarBasic running
(not surprisingly), which of course is not at all the case when it is
an Automation client that is manipulating a Writer or Calc instance
and wants events.

There is demonstration-only code in SwVbaApplication::Documents() to
raise the "Quit" event. (I would have put that in the SwVbaApplication
destructor but that doesn't seem to get called.) That should of course
go away once we invoke other relevant events in appropriate places.
And the "Quit" event needs to be invoked when the application is
quitting.

The whole callback mechanism with IConnectionPoint etc is still partly
a mystery to me. It is entirely possible that even if this now works
for a simple VBScript client, it won't work for (for instance) a VB6
client that might exercise the APIs of the COM interfaces we provide
in a different way.

Add XSinkCaller, for something that perhaps calls one or several
XSinks.

Change-Id: Ica03344010e374542f4aceff5ec032c78579f937
Reviewed-on: https://gerrit.libreoffice.org/55093
Tested-by: Jenkins 
Reviewed-by: Tor Lillqvist 

diff --git a/extensions/source/ole/servprov.cxx 
b/extensions/source/ole/servprov.cxx
index 220ced0bc2fd..f316e86a9f5c 100644
--- a/extensions/source/ole/servprov.cxx
+++ b/extensions/source/ole/servprov.cxx
@@ -24,7 +24,9 @@
 #include "servprov.hxx"
 #include "unoobjw.hxx"
 #include "oleobjw.hxx"
+
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -44,7 +46,8 @@ using namespace com::sun::star::bridge::ModelDependent;
 // {82154420-0FBF-11d4-8313-005004526AB4}
 DEFINE_GUID(OID_ServiceManager, 0x82154420, 0xfbf, 0x11d4, 0x83, 0x13, 0x0, 
0x50, 0x4, 0x52, 0x6a, 0xb4);
 
-// FIXME: This GUID is just the above with the initial part bumped by one. Is 
that good enough?
+// FIXME: This GUID is just the above OID_ServiceManager with the
+// initial part bumped by one. Is that good enough?
 // {82154421-0FBF-11d4-8313-005004526AB4}
 DEFINE_GUID(OID_LibreOfficeWriterApplication, 0x82154421, 0xfbf, 0x11d4, 0x83, 
0x13, 0x0, 0x50, 0x4, 0x52, 0x6a, 0xb4);
 
@@ -129,6 +132,8 @@ STDMETHODIMP OneInstanceOleWrapper::CreateInstance(IUnknown 
FAR* punkOuter,
REFIID riid,
void FAR* FAR* ppv)
 {
+SAL_INFO("extensions.olebridge", "OneInstanceOleWrapper::CreateInstance(" 
<< riid << ")");
+
 HRESULT ret = ResultFromScode(E_UNEXPECTED);
 punkOuter = nullptr;
 
@@ -150,6 +155,7 @@ STDMETHODIMP OneInstanceOleWrapper::CreateInstance(IUnknown 
FAR* punkOuter,
 
 if ((pVariant->vt == VT_UNKNOWN) || (pVariant->vt == VT_DISPATCH))
 {
+SAL_INFO("extensions.olebridge", 
"OneInstanceOleWrapper::Createbridge: punkVal=" << pVariant->punkVal);
  

[Libreoffice-bugs] [Bug 117920] SVG is shifted after inserted in document

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117920

--- Comment #1 from Aron Budea  ---
Created attachment 142425
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142425=edit
Screenshot

-- 
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 117920] SVG is shifted after inserting in document

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117920

Aron Budea  changed:

   What|Removed |Added

Summary|SVG is shifted after|SVG is shifted after
   |inserted in document|inserting in document

-- 
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 117920] New: SVG is shifted after inserted in document

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117920

Bug ID: 117920
   Summary: SVG is shifted after inserted in document
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: filter:svgInsert
  Severity: normal
  Priority: medium
 Component: filters and storage
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ba...@caesar.elte.hu
Blocks: 88278

Created attachment 142424
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142424=edit
Sample SVG

The attached SVG has four black squares in its corners. When inserted, it
appears shifted.

The SVG was created in Adobe Illustrator (whic behaved the same way), and later
simplified in Inkscape, plus some Illustrator-specific garbage was removed from
the file.

Shows badly in LO 6.1 beta1, 4.0.0.3, and even worse in 3.3.0 / Windows 7 &
Ubuntu 17.10.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=88278
[Bug 88278] [META] insert SVG image filter (all modules)
-- 
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 88278] [META] insert SVG image filter (all modules)

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88278

Aron Budea  changed:

   What|Removed |Added

 Depends on||117920


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117920
[Bug 117920] SVG is shifted after inserted in document
-- 
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 117896] FILESAVE, EDITING Performance of Calc become very slow after copy sheet

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117896

Telesto  changed:

   What|Removed |Added

Version|6.0.1.1 release |4.1.0.4 release

--- Comment #3 from Telesto  ---
Repro with
4.4.7.2 and with

Versie: 4.1.0.4 
Build ID: 89ea49ddacd9aa532507cbf852f2bb22b1ace28

-- 
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: canvas/source

2018-05-30 Thread Noel Grandin
 canvas/source/vcl/canvashelper.cxx |1 +
 1 file changed, 1 insertion(+)

New commits:
commit ed9f0e3bc2b5b205aba9475d3bcb314dcb76ce5d
Author: Noel Grandin 
Date:   Wed May 30 14:34:54 2018 +0200

fix "vcl: move Bitmap::MakeMonochrome() to BitmapMonochromeFilter"

commit 1f6af5c409105562edf2a034f4841c1aeb5a38b5
"vcl: move Bitmap::MakeMonochrome() to BitmapMonochromeFilter"
seems to have dropped a line of code which means the filtering
doesn't actually have an effect.

Change-Id: If46c15bd9ab9d4e3911bdb9baf3091889b1f634d
Reviewed-on: https://gerrit.libreoffice.org/55071
Tested-by: Jenkins 
Reviewed-by: Michael Meeks 

diff --git a/canvas/source/vcl/canvashelper.cxx 
b/canvas/source/vcl/canvashelper.cxx
index 5a0a74e389d2..d7005261558c 100644
--- a/canvas/source/vcl/canvashelper.cxx
+++ b/canvas/source/vcl/canvashelper.cxx
@@ -724,6 +724,7 @@ namespace vclcanvas
 BitmapEx aMaskEx(aMask);
 BitmapFilter::Filter(aMaskEx, 
BitmapMonochromeFilter(253));
 aMask = aMaskEx.GetBitmap();
+aBmpEx = BitmapEx( aBmpEx.GetBitmap(), aMask );
 }
 else if( aBmpEx.IsTransparent() )
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117919] New: Protect ranges in Calc

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117919

Bug ID: 117919
   Summary: Protect ranges in Calc
   Product: LibreOffice
   Version: 6.0.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: fabiru...@gmail.com

Description:
That is a improve of LibreOffice Calc, and is that I need to assign different
password for protect the ranges that I create in the spreadsheet.

Steps to Reproduce:
1.Protect range
2.Protect sheet
3.

Actual Results:  
Only exit one password for all range that have protection.

Expected Results:
I would like to protect the different ranges with different passwords.


Reproducible: Always


User Profile Reset: No



Additional Info:


User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:60.0) Gecko/20100101
Firefox/60.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 117916] Installation of 6.0.4.2 warning so cannot install!

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117916

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---
Have you installed with admin rights?

-- 
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 117918] New: UNO API: headers including themselves, causes IWYU assertion

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117918

Bug ID: 117918
   Summary: UNO API: headers including themselves, causes IWYU
assertion
   Product: LibreOffice
   Version: 6.2.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: framework
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kelem...@ubuntu.com
CC: vmik...@collabora.co.uk

Created attachment 142423
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142423=edit
Diff between a fresh and a fixed up UnoApiHeadersTarget dir, showing
problematic files

While trying to help on bug #42949 I noticed that IWYU does not report
unnecessary headers for some larger files with a lot of includes.
A bit of investigation revealed that IWYU fails in such situations with an
assertion error, like this:

$ include-what-you-use -Wall -DBOOST_ERROR_CODE_HEADER_ONLY
-DBOOST_SYSTEM_NO_DEPRECATED -DCPPU_ENV=gcc3 -DLINUX -DOSL_DEBUG_LEVEL=1
-DSAL_LOG_INFO -DSAL_LOG_WARN -DUNIX -DUNX -DX86_64 -D_PTHREADS -D_REENTRANT
-DSD_DLLIMPLEMENTATION -DSDUI_DLL_NAME=\"libsduilo.so\" -DENABLE_SDREMOTE
-DENABLE_SDREMOTE_BLUETOOTH -DLIBO_INTERNAL_ONLY
-I/home/gabor/src/core/workdir/UnpackedTarball/icu/source
-I/home/gabor/src/core/workdir/UnpackedTarball/icu/source/i18n
-I/home/gabor/src/core/workdir/UnpackedTarball/icu/source/common
-I/home/gabor/src/core/external/boost/include
-I/home/gabor/src/core/workdir/UnpackedTarball/boost
-I/home/gabor/src/core/external/bluez_bluetooth/inc
-I/home/gabor/src/core/include -I/usr/lib/jvm/java-11-openjdk-amd64/include
-I/usr/lib/jvm/java-11-openjdk-amd64/include/linux
-I/home/gabor/src/core/config_host -I/home/gabor/src/core/sd/inc
-I/home/gabor/src/core/sd/source/ui/inc
-I/home/gabor/src/core/sd/source/ui/slidesorter/inc
-I/home/gabor/src/core/workdir/SdiTarget/sd/sdi
-I/home/gabor/src/core/workdir/CustomTarget/officecfg/registry
-I/home/gabor/src/core/workdir/UnoApiHeadersTarget/udkapi/normal
-I/home/gabor/src/core/workdir/UnoApiHeadersTarget/offapi/normal
-I/home/gabor/src/core/workdir/UnpackedTarball/libxml2/include -isystem
/usr/include/dbus-1.0 -isystem /usr/lib/x86_64-linux-gnu/dbus-1.0/include
-isystem /usr/include/glib-2.0 -isystem
/usr/lib/x86_64-linux-gnu/glib-2.0/include -finput-charset=UTF-8
-fmessage-length=0 -fno-common -pipe -fvisibility-inlines-hidden -fPIC
-std=c++11 -c -x c++ /home/gabor/src/core/sd/inc/AnnotationEnumeration.hxx
Cycle in include-mapping:
  "com/sun/star/text/XTextRange.hpp" ->
  "com/sun/star/text/XTextRange.hpp"
/build/iwyu-mhPUyW/iwyu-5.0/iwyu_include_picker.cc:845: Assertion failed: Cycle
in include-mapping

Looking at
workdir/UnoApiHeadersTarget/offapi/normal/com/sun/star/text/XTextRange.hpp the
problem is clear: it contains an include of itself:

#include "com/sun/star/text/XTextRange.hpp"

Commenting this line out causes the assertion error to disappear. That is,
until it hits a similar problem - so far, to get IWYU to run on sd/inc and
chart2/inc needed commenting out 17 self includes.

I think it would be helpful to fix the underlying problem on the LO side and
stop generating hpp files with includes to themselves. 
That way IWYU and the find-unneeded-includes script could give relevant results
about all the headers.

I'm using:
include-what-you-use 0.9 based on clang version 5.0.1-2
(tags/RELEASE_501/final)
on Ubuntu 18.04.

-- 
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


Minutes from the design meeting 2018-May-30

2018-05-30 Thread Heiko Tietze
Present: Stuart, Heiko

Tickets

 * Print preview has disabled controls when document is write protected
   + https://bugs.documentfoundation.org/show_bug.cgi?id=92445 
   + NAB, since scaling is not a just visual function, and all other are 
enabled (Heiko)
   + print view definition is part of the document (Stuart)
   => NOTABUG

 * Gridlines on zoom 
   + https://bugs.documentfoundation.org/show_bug.cgi?id=117348
   + different color (dark grey) (Pedro)
 + available as option (see c15) (Regina)
   + adjust dot's distance depending on zoom factor (Heiko)
   + dots should remain a reasonable size and shift in conjunction with zoom 
(Stuart)
   => change it similar to dashed line of text boxes; zoom in goes with smaller 
distance and larger dots

 * Text shifted outside cell by indents
+ https://bugs.documentfoundation.org/show_bug.cgi?id=37873
+ possible use case is to hide parts of the document by negative 
indentation (Stuart)
+ Exporting the document with Word results in hidden text (Heiko)
=> respect table trasparency on export
+ we need a general indicator for text present outside the visible 
area--cells, page margins-- (Stuart)
+ option 1: small opacity to show the text in the background; requires to 
configure this setting 
  for exporting (Heiko); doesnt work when outside the page
+ option 2: little marker like the triangles known from Calc (Stuart); 
maybe at the ruler
+ option 3: forbid negative values (or positive beyond object size), not a 
fan (Stuart)
+ see also tdf#117009





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


[Libreoffice-bugs] [Bug 117917] New: Libreoffice doesn't quit with Command + Q

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117917

Bug ID: 117917
   Summary: Libreoffice doesn't quit with Command + Q
   Product: LibreOffice
   Version: 6.0.4.2 release
  Hardware: x86-64 (AMD64)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: silv...@gmail.com

Description:
LibreOffice 6.0.4.2 doesn't quit when using the keys Command and Q on MacOS
10.13.4; it does quit by clicking on the LibreOffice menu and the Quit option.

Actual Results:  
Press Command and Q, Libreoffice window disappears but remains open in the
Dock.

Expected Results:
Libreoffice should have quit.


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:


User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36

-- 
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: Minutes of ESC call: 2018-05-30

2018-05-30 Thread Jan Iversen


Enviado desde mi iPad

> El 30 may 2018, a las 18:38, Jan Holesovsky  escribió:
> 
> * Present:
>+ Thorsten, Kendy, Heiko, Noel, Olivier, Xisco, Bubli, Stephan, Sophie,
>  Michael W., Drew, Eike, Cloph
+ jani (I was the first, when you asked for names).
Rgds
Jan I.
> 
> * Completed Action Items:
> 
> * Pending Action Items:
> 
> * Release Engineering update (Christian)
>+ 6.0.5 – RC1 – this week.
>+ about to tag  
>+ 6.1.0 beta 1 status …
>+ out for a few days now
>+ beta 2 on June 12th – Cloph plans to do the Beta 2
>+ 6.1 late features
>+ calc threading default / fixing (Miklos)
>   + ongoing – more fixes this week.
>+ writer – red-lining re-factoring (Michael S)
>   + ongoing, to be pushed the next week hopefully
>   + switch to switch those 2
>+ KDE5 work (Bubli/Thorsten)
>   + canceled for 6.1, gets merged into master the next days, with the 
> view
> to ship it in 6.2 then
>+ Help format (Stephan)
>   + still trying to figure out how to make extension help work with 
> the
> new format
>+ Get-involved info-bar & Help/About menu (Michael)
>+ Renewed the Windows certificate for another year (watch out QA).
>+ Remotes
>+ iOS remote pending Apple’s approval.
>+ Android viewer
>+ Online
>+ waiting for -6-1 branch.
> 
> * Documentation (Olivier)
>+ New Help
> + Tested build with sberg : OK
> + has a localized build now
> + Discuss: Need a tinderbox to build offline new Help 
>+ “--with-help=html”
> + Tweaks for GDPR in online pages.
>+ Help Pages
> + fixes 
> + Doc bugs triaging.
>+ Guides
> + Sprint Revision week 
>  + 6 of 16 chapters ready for publication
>  + 10 more needed still, but progressing
>  + Missing team members
> 
> * UX Update (Heiko)
>+ Bugzilla (topicUI) statistics
>247(247) (topicUI) bugs open, 315(315) (needsUXEval)
>+ Updates:
>BZ changes   1 week   1 month3 months   12 months  
> added 1(-2)  7(-7) 33(-5) 103(-5) 
> commented 8(-32)   110(-67)   461(-51)   1890(-64)
>   removed 0(0)   0(0)   2(0)   11(0)  
>  resolved 2(1)   5(-1) 31(1)  180(0)  
>+ top 10 contributors:
>  Tietze, Heiko made 46 changes in 1 month, and 813 changes in 1 year
>  Pedro made 35 changes in 1 month, and 44 changes in 1 year
>  Cor Nouws made 14 changes in 1 month, and 155 changes in 1 year
>  Thomas Lendo made 12 changes in 1 month, and 395 changes in 1 year
>  Dieter Praas made 10 changes in 1 month, and 141 changes in 1 year
>  Xisco Faulí made 8 changes in 1 month, and 330 changes in 1 year
>  Foote, V Stuart made 8 changes in 1 month, and 265 changes in 1 year
>  Henschel, Regina made 7 changes in 1 month, and 107 changes in 1 year
>  Kainz, Andreas made 7 changes in 1 month, and 23 changes in 1 year
>  Buovjaga made 7 changes in 1 month, and 191 changes in 1 year
> 
>  + Late feature coming with flat MIME icons
>+ https://bugs.documentfoundation.org/show_bug.cgi?id=117456
>+ https://gerrit.libreoffice.org/#/c/54990/
>+ Andreas K. working on this
>+ documentation team informed
> 
> * Crash Reporting (Caolan)
>+ 6(-11) import failure, 3(+0) export failures
>   + 2 exports – mst layout asserts.
>   + fast-parser fix integrated.
>+ coverity
>+ ?? 6 (+3, -9)
>+ forcepoint round 7.
>+ ??
>+ oss-fuzz ?? (10 outstanding, 9 minor)
> 
> * Crash Reporting (Xisco)
>+ http://crashreport.libreoffice.org/stats/version/5.4.5.1 
>  + 650 (last 7 days) (+35)
>+ http://crashreport.libreoffice.org/stats/version/5.4.6.2 
>  + 724 (last 7 days) (+63)
>+ http://crashreport.libreoffice.org/stats/version/5.4.7.2
>  + 340 (last 7 days) (+116)
>+ http://crashreport.libreoffice.org/stats/version/6.0.3.2
>  + 1167 (last 7 days) (-165)
>+ http://crashreport.libreoffice.org/stats/version/6.0.4.2
>  + 1228 (last 7 days) (+216)
> 
> * Budget ranking (Thorsten)
>   + on ESC share - “Budget2018” - add your ranking.
> 
> * GSoC schedule (Heiko)
>   + Coding: May 14 - August 6
>   + please tell students to send a weekly status upate.
>   + Evaluation 1: June 11 - 15
>   + Evaluation 2: July 9 - 13
>   + Students Submit Code and Final Evaluations: August 6 - 14
>   + Mentors Submit Final Evaluations: August 14 - 21
>   + Results Announced: August 22
>   + https://wiki.documentfoundation.org/Development/GSoC/2018
> 
> * Hackfests & Events
>   + a hole here – potential one in Switzerland later in the year.
>   + call for papers for the LibreOffice Conference still ongoing! (Sophie)
>  + deadline: mid-July
> 
> * 

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

2018-05-30 Thread Noel Grandin
 drawinglayer/source/texture/texture3d.cxx  |  100 +
 include/drawinglayer/texture/texture3d.hxx |4 -
 2 files changed, 18 insertions(+), 86 deletions(-)

New commits:
commit 63e65d1743264dfa26d2aba615d71978e65784e8
Author: Noel Grandin 
Date:   Wed May 30 11:11:21 2018 +0200

dont use GetMask in GeoTexSvxBitmapEx

part of the process of making Bitmap's internals be private to vcl

Change-Id: I3784c14be1572d4df64b9cbdb5adcebdd1b274fd
Reviewed-on: https://gerrit.libreoffice.org/55050
Tested-by: Jenkins 
Reviewed-by: Michael Meeks 
Tested-by: Michael Meeks 

diff --git a/drawinglayer/source/texture/texture3d.cxx 
b/drawinglayer/source/texture/texture3d.cxx
index 0dac447ccf50..0573c3e4b3f5 100644
--- a/drawinglayer/source/texture/texture3d.cxx
+++ b/drawinglayer/source/texture/texture3d.cxx
@@ -64,39 +64,22 @@ namespace drawinglayer
 const BitmapEx& rBitmapEx,
 const basegfx::B2DRange& rRange)
 :   maBitmapEx(rBitmapEx),
-maTransparence(),
 maTopLeft(rRange.getMinimum()),
 maSize(rRange.getRange()),
 mfMulX(0.0),
 mfMulY(0.0),
-mbIsAlpha(false),
-mbIsTransparent(maBitmapEx.IsTransparent())
+mbIsAlpha(false)
 {
-// #121194# Todo: use alpha channel, too (for 3d)
-maBitmap = maBitmapEx.GetBitmap();
-
-if(mbIsTransparent)
+if(maBitmapEx.IsTransparent())
 {
 if(maBitmapEx.IsAlpha())
 {
 mbIsAlpha = true;
-maTransparence = rBitmapEx.GetAlpha().GetBitmap();
-}
-else
-{
-maTransparence = rBitmapEx.GetMask();
 }
-
-mpReadTransparence = Bitmap::ScopedReadAccess(maTransparence);
 }
 
-mpReadBitmap = Bitmap::ScopedReadAccess(maBitmap);
-SAL_WARN_IF(!mpReadBitmap, "drawinglayer", "GeoTexSvxBitmapEx: Got 
no read access to Bitmap");
-if (mpReadBitmap)
-{
-mfMulX = static_cast(mpReadBitmap->Width()) / 
maSize.getX();
-mfMulY = static_cast(mpReadBitmap->Height()) / 
maSize.getY();
-}
+mfMulX = static_cast(maBitmapEx.GetSizePixel().Width()) / 
maSize.getX();
+mfMulY = static_cast(maBitmapEx.GetSizePixel().Height()) / 
maSize.getY();
 
 if(maSize.getX() <= 1.0)
 {
@@ -113,60 +96,20 @@ namespace drawinglayer
 {
 }
 
-sal_uInt8 GeoTexSvxBitmapEx::impGetTransparence(sal_Int32 rX, 
sal_Int32 rY) const
+sal_uInt8 GeoTexSvxBitmapEx::impGetTransparence(sal_Int32 nX, 
sal_Int32 nY) const
 {
-switch(maBitmapEx.GetTransparentType())
-{
-case TransparentType::NONE:
-{
-break;
-}
-case TransparentType::Color:
-{
-const BitmapColor aBitmapColor(mpReadBitmap->GetColor(rY, 
rX));
-
-if(maBitmapEx.GetTransparentColor() == 
aBitmapColor.GetColor())
-{
-return 255;
-}
-
-break;
-}
-case TransparentType::Bitmap:
-{
-OSL_ENSURE(mpReadTransparence, "OOps, transparence type 
Bitmap, but no read access created in the constructor (?)");
-const BitmapColor 
aBitmapColor(mpReadTransparence->GetPixel(rY, rX));
-
-if(mbIsAlpha)
-{
-return aBitmapColor.GetIndex();
-}
-else
-{
-if(0x00 != aBitmapColor.GetIndex())
-{
-return 255;
-}
-}
-break;
-}
-}
-
-return 0;
+return maBitmapEx.GetTransparency(nX, nY);
 }
 
 bool GeoTexSvxBitmapEx::impIsValid(const basegfx::B2DPoint& rUV, 
sal_Int32& rX, sal_Int32& rY) const
 {
-if(mpReadBitmap)
-{
-rX = static_cast((rUV.getX() - maTopLeft.getX()) * 
mfMulX);
+rX = static_cast((rUV.getX() - maTopLeft.getX()) * 
mfMulX);
 
-if(rX >= 0 && rX < mpReadBitmap->Width())
-{
-rY = static_cast((rUV.getY() - 
maTopLeft.getY()) * mfMulY);
+if(rX >= 0 && rX < maBitmapEx.GetSizePixel().Width())
+{
+rY = static_cast((rUV.getY() - maTopLeft.getY()) * 
mfMulY);
 
-return (rY >= 0 && rY < mpReadBitmap->Height());
-}
+return (rY >= 0 && rY < 

[Libreoffice-qa] Minutes from the design meeting 2018-May-30

2018-05-30 Thread Heiko Tietze
Present: Stuart, Heiko

Tickets

 * Print preview has disabled controls when document is write protected
   + https://bugs.documentfoundation.org/show_bug.cgi?id=92445 
   + NAB, since scaling is not a just visual function, and all other are 
enabled (Heiko)
   + print view definition is part of the document (Stuart)
   => NOTABUG

 * Gridlines on zoom 
   + https://bugs.documentfoundation.org/show_bug.cgi?id=117348
   + different color (dark grey) (Pedro)
 + available as option (see c15) (Regina)
   + adjust dot's distance depending on zoom factor (Heiko)
   + dots should remain a reasonable size and shift in conjunction with zoom 
(Stuart)
   => change it similar to dashed line of text boxes; zoom in goes with smaller 
distance and larger dots

 * Text shifted outside cell by indents
+ https://bugs.documentfoundation.org/show_bug.cgi?id=37873
+ possible use case is to hide parts of the document by negative 
indentation (Stuart)
+ Exporting the document with Word results in hidden text (Heiko)
=> respect table trasparency on export
+ we need a general indicator for text present outside the visible 
area--cells, page margins-- (Stuart)
+ option 1: small opacity to show the text in the background; requires to 
configure this setting 
  for exporting (Heiko); doesnt work when outside the page
+ option 2: little marker like the triangles known from Calc (Stuart); 
maybe at the ruler
+ option 3: forbid negative values (or positive beyond object size), not a 
fan (Stuart)
+ see also tdf#117009





signature.asc
Description: OpenPGP digital signature
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: https://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

Pull request feedback

2018-05-30 Thread Victor Mireyev
Hi all!
I would like to get any feedback on this pull request.
https://gerrit.libreoffice.org/#/c/53902/
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: vcl/unx

2018-05-30 Thread Caolán McNamara
 vcl/unx/gtk/a11y/atkwrapper.hxx |8 
 vcl/unx/gtk3/gtk3gtkinst.cxx|   25 +++--
 2 files changed, 31 insertions(+), 2 deletions(-)

New commits:
commit fd52a23e4428bd9447643fd9c9c58905a4e7250b
Author: Caolán McNamara 
Date:   Wed May 30 16:26:40 2018 +0100

tdf#117859 crash in Tab Color a11y

Change-Id: I935f0b1a28b483fad70caf7af96742dee74916ad
Reviewed-on: https://gerrit.libreoffice.org/55087
Tested-by: Jenkins 
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/vcl/unx/gtk/a11y/atkwrapper.hxx b/vcl/unx/gtk/a11y/atkwrapper.hxx
index c45f0f9c839b..381f3c074fdf 100644
--- a/vcl/unx/gtk/a11y/atkwrapper.hxx
+++ b/vcl/unx/gtk/a11y/atkwrapper.hxx
@@ -21,6 +21,10 @@
 #define INCLUDED_VCL_UNX_GTK_A11Y_ATKWRAPPER_HXX
 
 #include 
+#include 
+#if GTK_CHECK_VERSION(3,0,0)
+#include 
+#endif
 #include 
 
 extern "C" {
@@ -70,7 +74,11 @@ struct AtkObjectWrapper
 
 struct AtkObjectWrapperClass
 {
+#if GTK_CHECK_VERSION(3,0,0)
+GtkWidgetAccessibleClass aParentClass;
+#else
 AtkObjectClass aParentClass;
+#endif
 };
 
 GType  atk_object_wrapper_get_type() G_GNUC_CONST;
diff --git a/vcl/unx/gtk3/gtk3gtkinst.cxx b/vcl/unx/gtk3/gtk3gtkinst.cxx
index 577d5e1d2744..5d801c5c 100644
--- a/vcl/unx/gtk3/gtk3gtkinst.cxx
+++ b/vcl/unx/gtk3/gtk3gtkinst.cxx
@@ -3653,6 +3653,14 @@ static MouseEventModifiers 
ImplGetMouseMoveMode(sal_uInt16 nCode)
 return nMode;
 }
 
+namespace
+{
+
+AtkObject* (*default_drawing_area_get_accessible)(GtkWidget *widget);
+
+}
+
+
 class GtkInstanceDrawingArea : public GtkInstanceWidget, public virtual 
weld::DrawingArea
 {
 private:
@@ -3928,6 +3936,21 @@ public:
 return uno::Reference();
 }
 
+virtual void set_accessible_name(const OUString& rName) override
+{
+AtkObject* pAtkObject = default_drawing_area_get_accessible(m_pWidget);
+if (!pAtkObject)
+return;
+atk_object_set_name(pAtkObject, OUStringToOString(rName, 
RTL_TEXTENCODING_UTF8).getStr());
+}
+
+virtual OUString get_accessible_name() const override
+{
+AtkObject* pAtkObject = default_drawing_area_get_accessible(m_pWidget);
+const char* pStr = pAtkObject ? atk_object_get_name(pAtkObject) : 
nullptr;
+return OUString(pStr, pStr ? strlen(pStr) : 0, RTL_TEXTENCODING_UTF8);
+}
+
 virtual ~GtkInstanceDrawingArea() override
 {
 g_object_steal_data(G_OBJECT(m_pDrawingArea), 
"g-lo-GtkInstanceDrawingArea");
@@ -4411,8 +4434,6 @@ namespace
 namespace
 {
 
-AtkObject* (*default_drawing_area_get_accessible)(GtkWidget *widget);
-
 AtkObject* drawing_area_get_accessibity(GtkWidget *pWidget)
 {
 AtkObject* pDefaultAccessible = 
default_drawing_area_get_accessible(pWidget);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-05-30 Thread Miklos Vajna
 embeddedobj/source/inc/oleembobj.hxx |4 
 filter/source/msfilter/msdffimp.cxx  |   14 +-
 include/filter/msfilter/msdffimp.hxx |6 
 sw/qa/extras/htmlexport/data/reqif-ole-odg.ole   |  146 +++
 sw/qa/extras/htmlexport/data/reqif-ole-odg.png   |binary
 sw/qa/extras/htmlexport/data/reqif-ole-odg.xhtml |9 +
 sw/qa/extras/htmlexport/htmlexport.cxx   |   15 ++
 sw/source/filter/html/htmlplug.cxx   |   70 ---
 sw/source/filter/html/htmlreqifreader.cxx|   36 -
 sw/source/filter/html/htmlreqifreader.hxx|8 -
 10 files changed, 284 insertions(+), 24 deletions(-)

New commits:
commit 0258bcdedd710d78de99c9cefc9d8c3e2ca85fdf
Author: Miklos Vajna 
Date:   Wed May 30 17:32:45 2018 +0200

sw HTML filter: handle embedded ODF content in xhtml/reqif mode

Embedded native data (what we don't parse just carry on) and real OLE2
embedding already worked, this adds the case where the actual content is
ODF, just inside OLE2.

The DOC import/export had support for handleing ODF content inside OLE2,
so reuse that code: add new functions to SvxMSDffManager for import
purposes and reuse SvxMSExportOLEObjects for export purposes.

Change-Id: I0acf65d4bf29af896b8f1dd625e8672050aae350
Reviewed-on: https://gerrit.libreoffice.org/55088
Reviewed-by: Miklos Vajna 
Tested-by: Jenkins 

diff --git a/embeddedobj/source/inc/oleembobj.hxx 
b/embeddedobj/source/inc/oleembobj.hxx
index 59a3782fb7f4..b1f44fbbd429 100644
--- a/embeddedobj/source/inc/oleembobj.hxx
+++ b/embeddedobj/source/inc/oleembobj.hxx
@@ -106,6 +106,10 @@ public:
 
 class OleComponent;
 class OwnView_Impl;
+/**
+ * Represents an OLE object that has native data and we try to let an external
+ * application handle that data.
+ */
 class OleEmbeddedObject : public ::cppu::WeakImplHelper
 < css::embed::XEmbeddedObject
 , css::embed::XEmbeddedOleObject
diff --git a/filter/source/msfilter/msdffimp.cxx 
b/filter/source/msfilter/msdffimp.cxx
index f37fa69dffd7..17b8273b908f 100644
--- a/filter/source/msfilter/msdffimp.cxx
+++ b/filter/source/msfilter/msdffimp.cxx
@@ -6936,7 +6936,7 @@ const char* GetInternalServerName_Impl( const 
SvGlobalName& aGlobName )
 return nullptr;
 }
 
-OUString GetFilterNameFromClassID_Impl( const SvGlobalName& aGlobName )
+OUString SvxMSDffManager::GetFilterNameFromClassID( const SvGlobalName& 
aGlobName )
 {
 if ( aGlobName == SvGlobalName( SO3_SW_OLE_EMBED_CLASSID_60 ) )
 return OUString( "StarOffice XML (Writer)" );
@@ -6977,6 +6977,13 @@ OUString GetFilterNameFromClassID_Impl( const 
SvGlobalName& aGlobName )
 return OUString();
 }
 
+void SvxMSDffManager::ExtractOwnStream(SotStorage& rSrcStg, SvMemoryStream& 
rMemStream)
+{
+tools::SvRef xStr
+= rSrcStg.OpenSotStream("package_stream", StreamMode::STD_READ);
+xStr->ReadStream(rMemStream);
+}
+
 css::uno::Reference < css::embed::XEmbeddedObject >  
SvxMSDffManager::CheckForConvertToSOObj( sal_uInt32 nConvertFlags,
 SotStorage& rSrcStg, const uno::Reference < 
embed::XStorage >& rDestStorage,
 const Graphic& rGrf,
@@ -7041,8 +7048,7 @@ css::uno::Reference < css::embed::XEmbeddedObject >  
SvxMSDffManager::CheckForCo
 if ( pName )
 {
 // TODO/LATER: perhaps we need to retrieve VisArea and Metafile 
from the storage also
-tools::SvRef xStr = rSrcStg.OpenSotStream( 
"package_stream", StreamMode::STD_READ );
-xStr->ReadStream( *xMemStream );
+SvxMSDffManager::ExtractOwnStream(rSrcStg, *xMemStream);
 }
 else
 {
@@ -7077,7 +7083,7 @@ css::uno::Reference < css::embed::XEmbeddedObject >  
SvxMSDffManager::CheckForCo
 if ( pFilter )
 aFilterName = pFilter->GetName();
 else
-aFilterName = GetFilterNameFromClassID_Impl( aStgNm );
+aFilterName = SvxMSDffManager::GetFilterNameFromClassID( 
aStgNm );
 
 uno::Sequence aMedium(aFilterName.isEmpty() 
? 3 : 4);
 aMedium[0].Name = "InputStream";
diff --git a/include/filter/msfilter/msdffimp.hxx 
b/include/filter/msfilter/msdffimp.hxx
index 41f5ce32ae0f..164c08406327 100644
--- a/include/filter/msfilter/msdffimp.hxx
+++ b/include/filter/msfilter/msdffimp.hxx
@@ -65,6 +65,7 @@ struct SvxMSDffShapeOrder;
 class SvxMSDffManager;
 class SfxItemSet;
 struct DffObjData;
+class SvGlobalName;
 
 namespace com { namespace sun { namespace star {
 namespace beans { class XPropertySet; }
@@ -735,6 +736,11 @@ public:
 const OUString& rPropertyName
 );
 
+/// Determines an ODF filter name (if there is one) for aGlobName.
+static OUString GetFilterNameFromClassID(const SvGlobalName& aGlobName);
+/// Extracts ODF data from rSrcStg.
+static void ExtractOwnStream(SotStorage& 

[Libreoffice-bugs] [Bug 86321] EDITING, FORMATTING: diagram didn' t automatic update when change variable (recalculation not triggered)

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86321

--- Comment #42 from vlb  ---
I have test in Versie: 6.0.4.2 (x64)and is still present.

-- 
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 117912] Indicator for objects outside the visible area

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117912

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 37873] VIEWING: Text shifted outside cell by indents or border distance invisible, but printed

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=37873

Heiko Tietze  changed:

   What|Removed |Added

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

-- 
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 117912] New: Indicator for objects outside the visible area

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117912

Bug ID: 117912
   Summary: Indicator for objects outside the visible area
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tietze.he...@gmail.com
CC: vstuart.fo...@utsa.edu

This is a spin-off from bug 37873: there is no feedback/indicator for text with
negative indentation in table cells. The same happens for the page or columns
when the paragraph is defined with extreme values.

Solution 1 is a small opacity to show the text in the background; but that
requires to configure this option to comply with bug 37873 and it doesnt' work
for objects outside the page area. So better we show little markers like the
triangles known from Calc. Those indicators could be presented with the ruler-
or the ruler background changes itself. This change could also be part of the
solution for bug 117009.

-- 
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 117009] In Impress UI scroll bars are active beyond the extent of the slide

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117009

Heiko Tietze  changed:

   What|Removed |Added

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

-- 
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-ux-advise] [Bug 37873] VIEWING: Text shifted outside cell by indents or border distance invisible, but printed

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=37873

Heiko Tietze  changed:

   What|Removed |Added

   Keywords|needsUXEval |
   Priority|low |medium
 CC|libreoffice-ux-advise@lists |tietze.he...@gmail.com,
   |.freedesktop.org|vstuart.fo...@utsa.edu
  Component|Writer  |filters and storage
   Severity|minor   |normal

--- Comment #15 from Heiko Tietze  ---
We discussed this issue in the design meeting. The use case might be to hide
parts of the document by negative indentation, so it's a valid issue. Exporting
the document with MS Word results in hidden text, just WYSIWYG. Maybe we do not
respect the table cell transparency on export- that should be solved.

Another problem is the fact that there is no indicator for content outside the
actual area. That goes into another ticket.

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


[Libreoffice-bugs] [Bug 37873] VIEWING: Text shifted outside cell by indents or border distance invisible, but printed

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=37873

Heiko Tietze  changed:

   What|Removed |Added

   Keywords|needsUXEval |
   Priority|low |medium
 CC|libreoffice-ux-advise@lists |tietze.he...@gmail.com,
   |.freedesktop.org|vstuart.fo...@utsa.edu
  Component|Writer  |filters and storage
   Severity|minor   |normal

--- Comment #15 from Heiko Tietze  ---
We discussed this issue in the design meeting. The use case might be to hide
parts of the document by negative indentation, so it's a valid issue. Exporting
the document with MS Word results in hidden text, just WYSIWYG. Maybe we do not
respect the table cell transparency on export- that should be solved.

Another problem is the fact that there is no indicator for content outside the
actual area. That goes into another ticket.

-- 
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: Change file_path LOOL

2018-05-30 Thread Jonathan Aquilina
Hi renato,

Are you running this on an Apache webserver with vhosts by any chance?

Sent from my iPhone

> On 28 May 2018, at 14:03, Renato Ribeiro  wrote:
> 
> Hello all,
> 
> When I launch the LOOL server I can use the link displayed to open a document 
> in a web browser (link below)
> 
> https://localhost:9980/loleaflet/2bac/loleaflet.html?file_path=file:///home//libreoffice/online/test/data/hello_world.odt
> 
> But this link shows the path of my diretories' tree 
> (/home//libreoffice/online/test/data/hello_world.odt). I would like to 
> know how I can hide this path. Can I define a variable for this path and with 
> this show online the name fo the variable instead the path? In which diretory 
> I can change this?
> 
> Thanks in advance.
> Best regards
> ___
> LibreOffice mailing list
> LibreOffice@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/libreoffice
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-ux-advise] [Bug 117348] Contrast and size of Impress grid affects visibility and usefulness

2018-05-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117348

Heiko Tietze  changed:

   What|Removed |Added

   Keywords|needsUXEval |easyHack, needsDevEval
 CC|libreoffice-ux-advise@lists |mentoring@documentfoundatio
   |.freedesktop.org|n.org,
   ||tietze.he...@gmail.com,
   ||vstuart.fo...@utsa.edu
  Component|UI  |Impress

--- Comment #22 from Heiko Tietze  ---
We discussed this topic in the design meeting. The recommendation is to adjust
the distance and size of the dots depending on the zoom factor (like it's done
for the dashed line around text boxes). The color can be adjusted individually
(see comment 15) and the default (100%) looks good, so nothing needs to be
changed here.

This issue is probably an easyhack.

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


  1   2   3   4   5   6   >