[Libreoffice-bugs] [Bug 121049] Failure to retain superscript when pasting from HTML

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

Nicholas van Oudtshoorn  changed:

   What|Removed |Added

Version|6.2.0.0.alpha1+ Master  |Inherited From OOo

--- Comment #1 from Nicholas van Oudtshoorn  ---
Note that this seems to be a very old bug. I know that I've been working around
it for ages. Web search shows people talking about it since 2014, and simply
saying "work around it" -
https://forum.openoffice.org/en/forum/viewtopic.php?f=7=69389

-- 
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 121049] New: Failure to retain superscript when pasting from HTML

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

Bug ID: 121049
   Summary: Failure to retain superscript when pasting from HTML
   Product: LibreOffice
   Version: 6.2.0.0.alpha1+ Master
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: vano...@gmail.com

Description:
When copying HTML from the web and pasting it into writer, superscripts aren't
retained if the HTML superscript has a class associated with it.

FORMATTING

Steps to Reproduce:
1.Visit https://www.biblegateway.com/passage/?search=John+1=NLT
2.Copy some of the text (verse numbers are superscript!) and paste it into
Writer. Notice that the verse numbers are no longer superscript.
3.Using your web browser's developer tools, remove the class from some of the
 tags. Try the copy and paste again, and the verse numbers remain
superscripted.

Actual Results:
 tags with classes don't retain superscript display in Writer.

Expected Results:
Superscript text should stay superscripted when pasted


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 6.2.0.0.alpha1+
Build ID: 96cf06c947838120e37f3fbb4d0543dd882cb20c
CPU threads: 4; OS: Linux 4.18; UI render: default; VCL: kde4; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2018-10-25_22:45:16
Locale: en-AU (en_AU.UTF-8); Calc: threaded

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


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

2018-10-29 Thread Libreoffice Gerrit user
 writerfilter/source/dmapper/DomainMapperTableHandler.cxx |3 +-
 writerfilter/source/dmapper/DomainMapper_Impl.cxx|   17 +++
 writerfilter/source/dmapper/DomainMapper_Impl.hxx|   10 +++-
 3 files changed, 19 insertions(+), 11 deletions(-)

New commits:
commit d3db6ff43a531ecf1afc858a0a8832353d091644
Author: Mike Kaganski 
AuthorDate: Mon Oct 29 23:00:37 2018 +0300
Commit: Mike Kaganski 
CommitDate: Tue Oct 30 06:19:17 2018 +0100

tdf#116989: disable conversion of tables in footers to floating for now

As the floating objects anchored to footers aren't wrapped around properly
(they behave as if they are wrapped through unconditionally), which makes
imported tables to overlap the page body text making the document unusable,
let's just disable the conversion for the time being (until the actual bug
fixed properly).

Change-Id: I06c984ff7157b71fff2aa8122cc475a114c6
Reviewed-on: https://gerrit.libreoffice.org/62523
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/writerfilter/source/dmapper/DomainMapperTableHandler.cxx 
b/writerfilter/source/dmapper/DomainMapperTableHandler.cxx
index 01c7f59fc314..04fd361b7e36 100644
--- a/writerfilter/source/dmapper/DomainMapperTableHandler.cxx
+++ b/writerfilter/source/dmapper/DomainMapperTableHandler.cxx
@@ -1176,7 +1176,8 @@ void DomainMapperTableHandler::endTable(unsigned int 
nestedTableLevel, bool bTab
 m_aTableProperties->getValue(TablePropertyMap::TABLE_WIDTH_TYPE, 
nTableWidthType);
 if (m_rDMapper_Impl.GetSectionContext() && nestedTableLevel <= 1 
&& !m_rDMapper_Impl.IsInHeaderFooter())
 m_rDMapper_Impl.m_aPendingFloatingTables.emplace_back(xStart, 
xEnd, comphelper::containerToSequence(aFrameProperties), nTableWidth, 
nTableWidthType);
-else
+else if (!m_rDMapper_Impl.IsInFooter()) // FIXME: tdf#116989 
floating objects anchored
+//to footer cannot have 
proper wrapping
 {
 // m_xText points to the body text, get the current xText from 
m_rDMapper_Impl, in case e.g. we would be in a header.
 uno::Reference 
xTextAppendAndConvert(m_rDMapper_Impl.GetTopTextAppend(), uno::UNO_QUERY);
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx 
b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index 835e6ff53920..d9edde3eaf22 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -212,7 +212,7 @@ DomainMapper_Impl::DomainMapper_Impl(
 m_sDefaultParaStyleName(),
 m_bInStyleSheetImport( false ),
 m_bInAnyTableImport( false ),
-m_bInHeaderFooterImport( false ),
+m_eInHeaderFooterImport( HeaderFooterImportState::none ),
 m_bDiscardHeaderFooter( false ),
 m_bInFootOrEndnote(false),
 m_bSeenFootOrEndnoteSeparator(false),
@@ -424,7 +424,7 @@ void DomainMapper_Impl::RemoveLastParagraph( )
 // (but only for paste/insert, not load; otherwise it can happen that
 // flys anchored at the disposed paragraph are deleted (fdo47036.rtf))
 bool const bEndOfDocument(m_aTextAppendStack.size() == 1);
-if ((m_bInHeaderFooterImport || (bEndOfDocument && !m_bIsNewDoc))
+if ((IsInHeaderFooter() || (bEndOfDocument && !m_bIsNewDoc))
 && xEnumerationAccess.is())
 {
 uno::Reference xEnumeration = 
xEnumerationAccess->createEnumeration();
@@ -1635,7 +1635,7 @@ void DomainMapper_Impl::appendTextPortion( const 
OUString& rString, const Proper
 {
 if (m_bStartTOC || m_bStartIndex || m_bStartBibliography || 
m_bStartGenericField)
 {
-if(m_bInHeaderFooterImport && !m_bStartTOCHeaderFooter)
+if (IsInHeaderFooter() && !m_bStartTOCHeaderFooter)
 {
 xTextRange = xTextAppend->appendTextPortion(rString, 
aValues);
 }
@@ -1899,7 +1899,8 @@ void DomainMapper_Impl::PushPageHeaderFooter(bool 
bHeader, SectionPropertyMap::P
 const PropertyIds ePropTextLeft = bHeader? PROP_HEADER_TEXT_LEFT: 
PROP_FOOTER_TEXT_LEFT;
 const PropertyIds ePropText = bHeader? PROP_HEADER_TEXT: PROP_FOOTER_TEXT;
 
-m_bInHeaderFooterImport = true;
+m_eInHeaderFooterImport
+= bHeader ? HeaderFooterImportState::header : 
HeaderFooterImportState::footer;
 
 //get the section context
 PropertyMapPtr pContext = 
DomainMapper_Impl::GetTopContextOfType(CONTEXT_SECTION);
@@ -1976,7 +1977,7 @@ void DomainMapper_Impl::PopPageHeaderFooter()
 }
 m_bDiscardHeaderFooter = false;
 }
-m_bInHeaderFooterImport = false;
+m_eInHeaderFooterImport = HeaderFooterImportState::none;
 
 if (!m_aHeaderFooterStack.empty())
 {
@@ -2384,7 +2385,7 @@ void DomainMapper_Impl::PushShapeContext( 

[Libreoffice-bugs] [Bug 120332] Cannot input Chinese characters

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

--- Comment #2 from illusory  ---
Have not tried the alpha version. But I switched from fcitx to ibus and it
works...

-- 
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 121048] New: UI freezes when you scroll up and down past page with cursor

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

Bug ID: 121048
   Summary: UI freezes when you scroll up and down past page with
cursor
   Product: LibreOffice
   Version: 6.0.6.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: dsm...@gmail.com

Description:
I have a doc that is maybe 7 pages.  If I put my cursor in the middle of the
4rth page (the middle of the docuemnt), and scroll up and down through out the
entire doc, the UI freezes when passing page 4.  It seems to freeze the UI when
it starts having to render the cursor.  The is really bad because A user spends
98% of the time around the cursor, so scrolling is constantly glitching and
skipping pages ahead and back as it unfreezes.  

Version: 6.0.6.2
Build ID: 1:6.0.6-0ubuntu0.18.04.1
CPU threads: 12; OS: Linux 4.15; UI render: default; VCL: gtk3; 
Locale: en-US (en_US.UTF-8); Calc: group


Steps to Reproduce:
1. make several page doc
2. put the cursor in the middle of the doc
3. scroll up and down around the area of the cursor, observe the glitchy
behavior.  
4. Note how scrolling up and down is useless because the skipping makes you
loose track of any line you where reading/looking at

Actual Results:
Scrolling up and down with the mouse or trackpad skips large leaps up and down
and text re-render looks glitchy and unreadable.

Expected Results:
I would expect that the scrolling would be continuous and smooth enough to not
loose my place on the pages I'm reading.  


Reproducible: Always


User Profile Reset: No



Additional Info:

-- 
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 94074] If you select an image direct after caption was selected, imagerelated entries in contextmenu are missing

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

--- 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 86896] FRAMEWORK: Command line help not translated

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

--- 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-commits] core.git: Branch 'libreoffice-6-1' - sc/source

2018-10-29 Thread Libreoffice Gerrit user
 sc/source/ui/app/transobj.cxx |6 ++
 1 file changed, 6 insertions(+)

New commits:
commit 968fac07d5e70c198459581f51e88179d3940d8a
Author: Vasily Melenchuk 
AuthorDate: Wed Oct 24 13:13:41 2018 +0200
Commit: Thorsten Behrens 
CommitDate: Tue Oct 30 04:56:50 2018 +0100

tdf#118747 sc: use manual height for previous rows in TransferObj

This can ensure, that visible area will not shift if autoheight
will change height of previous rows.

Change-Id: I66e013e9f3f27396f13b26fde37353cb63e47258
Reviewed-on: https://gerrit.libreoffice.org/62279
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 
(cherry picked from commit 1b9574ed8269f4ed9dde33856c1d74702a7fa4bb)
Reviewed-on: https://gerrit.libreoffice.org/62518
Tested-by: Xisco Faulí 

diff --git a/sc/source/ui/app/transobj.cxx b/sc/source/ui/app/transobj.cxx
index c3725e7202a0..fa76c05d133b 100644
--- a/sc/source/ui/app/transobj.cxx
+++ b/sc/source/ui/app/transobj.cxx
@@ -693,6 +693,12 @@ void ScTransferObj::InitDocShell(bool bLimitToPageSize)
 else
 rDestDoc.SetColWidth( nCol, 0, m_pDoc->GetColWidth( nCol, 
nSrcTab ) );
 
+if (nStartY > 0)
+{
+// Set manual height for all previous rows so we can ensure
+// that visible area will not change due to autoheight
+rDestDoc.SetManualHeight(0, nStartY - 1, 0, true);
+}
 for (SCROW nRow = nStartY; nRow <= nEndY; ++nRow)
 {
 if ( m_pDoc->RowHidden(nRow, nSrcTab) )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 75915] Rounding issues when working with metric units

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

--- 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 78115] VIEWING: In Drop down menu of Date field i can't see day names

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

--- 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 92873] UI Preview of 3D object doesn't resize w/ the dialog

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

--- 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 113294] Preview of 'Spiral In', 'Falling In', and 'Sling' custom animations go out of document area

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

--- 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 113489] Fill color of placeholder textbox doesnt appear in slide pane preview

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

--- Comment #2 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 88109] PERF: Calc autofill is very slow

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

--- 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 85482] FILESAVE/FILEOPEN: very slow loading of .ODS saved from .XLSX

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

--- Comment #13 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 109315] CPU spikes when in options dialog paths section (gtk3)

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

--- 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 76967] Bibliography database should not be overwritten by install procedure

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

--- Comment #15 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 73730] Navigating with arrow does not change the value shown in the formulabox if the first line is similar.

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

--- Comment #13 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 120108] Wrong wrap optimal icon in Karasa Jaga, elementary, Breeze/Sifr, Tango/Galaxy and Colibre

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

--- Comment #13 from Rizal Muttaqin  ---
(In reply to Xisco Faulí from comment #12)
> A polite ping to Rizal Muttaqin:
> Is this bug fixed? if so, could you please close it as RESOLVED FIXED ?
> Otherwise, Could you please explain what's missing?
> Thanks

Already fixed for Karasa Jaga and elementary, while other icons need to be
changed also. CC Andreas Kainz

-- 
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 121047] Alignment issue regarding placement of buttons in the Find & Replace dialogue box of LibreOffice Writer

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

Gaurav Sharma  changed:

   What|Removed |Added

 CC||gauravbharad...@outlook.com

--- Comment #1 from Gaurav Sharma  ---
Created attachment 146155
  --> https://bugs.documentfoundation.org/attachment.cgi?id=146155=edit
Photo showing improper alignment of certain buttons

-- 
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 121047] New: Alignment issue regarding placement of buttons in the Find & Replace dialogue box of LibreOffice Writer

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

Bug ID: 121047
   Summary: Alignment issue regarding placement of buttons in the
Find & Replace dialogue box of LibreOffice Writer
   Product: LibreOffice
   Version: 6.1.2.1 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gauravbharad...@outlook.com

Description:
When we start LibreOffice and go to the Find & Replace dialogue box and click
Format button to open another dialogue box, the alignment of the certain
buttons in the Find & Replace dialogue box gets changed and is improper as
certain buttons gets overlapped. This has been particularly observed when we go
to the Find & Replace dialogue the first time.

Steps to Reproduce:
1. Open Writer.
2. Open the Find & Replace dialogue box.
3. Click the Format button.
4. Choose a format and click OK.
5. You will see that the alignment of certain buttons gets changed improperly.
Overlapping will be seen.

Actual Results:
You will see overlapping of buttons in the Find & Replace dialogue box.

Expected Results:
The alignment of buttons should have been proper in the Find & Replace dialogue
box.


Reproducible: Always


User Profile Reset: No



Additional Info:

-- 
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: sc/qa

2018-10-29 Thread Libreoffice Gerrit user
 sc/qa/unit/data/functions/statistical/fods/small.fods |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2e184378da6058af14acf208d6469fadf44d04ed
Author: Takeshi Abe 
AuthorDate: Fri Oct 26 12:15:15 2018 +0900
Commit: Takeshi Abe 
CommitDate: Tue Oct 30 02:43:56 2018 +0100

sc: Fix a wrong reference in a SMALL()'s test case

Change-Id: I6eb5491cb437745a787304bde9f5673e63892773
Reviewed-on: https://gerrit.libreoffice.org/62380
Tested-by: Jenkins
Reviewed-by: Takeshi Abe 

diff --git a/sc/qa/unit/data/functions/statistical/fods/small.fods 
b/sc/qa/unit/data/functions/statistical/fods/small.fods
index ba203bf5ef7a..5f191b43edb4 100644
--- a/sc/qa/unit/data/functions/statistical/fods/small.fods
+++ b/sc/qa/unit/data/functions/statistical/fods/small.fods
@@ -3940,7 +3940,7 @@
  
   4
  
- 
+ 
   TRUE
  
  
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-10-29 Thread Libreoffice Gerrit user
 sc/source/core/tool/interpr1.cxx |   67 +++
 1 file changed, 47 insertions(+), 20 deletions(-)

New commits:
commit 9574076674acfed2e7f24a86929c10b7a539a35c
Author: Eike Rathke 
AuthorDate: Mon Oct 29 23:49:22 2018 +0100
Commit: Eike Rathke 
CommitDate: Tue Oct 30 02:35:28 2018 +0100

Rewrite REGEX() to directly use icu::RegexMatcher, tdf#113977

This not only avoids all the overhead of i18npool's TextSearch and
Transliteration efforts (which are useful in the Find
dialog bu we don't use here) that could possibly even get in the
way how they are implemented, but also gives us direct control
over all possible flags; plus ICU's replace features are more
convenient to use and have better error checking to report back
and there is the advantage that ICU's regex description can be
taken verbatim.

Change-Id: Iaa06c26a3ff6882a0057d1ca92b1605073429bca
Reviewed-on: https://gerrit.libreoffice.org/62531
Reviewed-by: Eike Rathke 
Tested-by: Eike Rathke 

diff --git a/sc/source/core/tool/interpr1.cxx b/sc/source/core/tool/interpr1.cxx
index 6c3012ad2ad9..3123335ea3b9 100644
--- a/sc/source/core/tool/interpr1.cxx
+++ b/sc/source/core/tool/interpr1.cxx
@@ -37,6 +37,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 #include 
@@ -9242,30 +9243,56 @@ void ScInterpreter::ScRegex()
 return;
 }
 
-sal_Int32 nPos = 0;
-sal_Int32 nEndPos = aText.getLength();
-utl::SearchParam aParam( aExpression, 
utl::SearchParam::SearchType::Regexp);
-css::util::SearchResult aResult;
-utl::TextSearch aSearch( aParam, *ScGlobal::pCharClass);
-const bool bMatch = aSearch.SearchForward( aText, , , 
);
-if (!bMatch)
-PushError( FormulaError::NotAvailable);
-else
+const icu::UnicodeString aIcuExpression(
+reinterpret_cast(aExpression.getStr()), 
aExpression.getLength());
+UErrorCode status = U_ZERO_ERROR;
+icu::RegexMatcher aRegexMatcher( aIcuExpression, 0, status);
+if (U_FAILURE(status))
 {
-assert(aResult.subRegExpressions >= 1);
-if (!bReplacement)
-PushString( aText.copy( aResult.startOffset[0], 
aResult.endOffset[0] - aResult.startOffset[0]));
-else
+// Invalid regex.
+PushIllegalArgument();
+return;
+}
+// Guard against pathological patterns, limit steps of engine, see
+// 
https://ssl.icu-project.org/apiref/icu4c/classicu_1_1RegexMatcher.html#a6ebcfcab4fe6a38678c0291643a03a00
+aRegexMatcher.setTimeLimit ( 23*1000, status);
+
+const icu::UnicodeString aIcuText( reinterpret_cast(aText.getStr()), aText.getLength());
+aRegexMatcher.reset( aIcuText);
+
+if (!bReplacement)
+{
+// Find first occurrence.
+if (!aRegexMatcher.find())
+{
+PushError( FormulaError::NotAvailable);
+return;
+}
+// Extract matched text.
+icu::UnicodeString aMatch( aRegexMatcher.group( status));
+if (U_FAILURE(status))
 {
-/* TODO: global replacement of multiple occurrences, introduce
- * extra parameter with flag 'g'? Loop over positions after
- * nEndPos until none left? How to keep the offsets in sync
- * after replacement? That should be done by
- * ReplaceBackReferences(). */
-aSearch.ReplaceBackReferences( aReplacement, aText, aResult);
-PushString( aReplacement);
+// Some error.
+PushIllegalArgument();
+return;
 }
+OUString aResult( reinterpret_cast(aMatch.getBuffer()), aMatch.length());
+PushString( aResult);
+return;
+}
+
+// Replace first occurrence of match with replacement.
+const icu::UnicodeString aIcuReplacement(
+reinterpret_cast(aReplacement.getStr()), 
aReplacement.getLength());
+icu::UnicodeString aReplaced( aRegexMatcher.replaceFirst( 
aIcuReplacement, status));
+if (U_FAILURE(status))
+{
+// Some error, e.g. extraneous $1 without group.
+PushIllegalArgument();
+return;
 }
+OUString aResult( reinterpret_cast(aReplaced.getBuffer()), aReplaced.length());
+PushString( aResult);
 }
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[mdds] R-tree documentation is now available

2018-10-29 Thread Kohei Yoshida
Hi there,

Just a short-n-quick announcement that I've finished authoring
documentation for R-tree - the newest addition in mdds.

http://kohei.us/files/mdds/doc/rtree.html

I've also updated the doc for flat_segment_tree and multi_type_vector,
to add a bit more code examples.

Best,

Kohei

-- 
Kohei Yoshida, LibreOffice Calc volunteer hacker

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


[Libreoffice-bugs] [Bug 121046] New: EDITING: Rotated Images with Alpha Channel are Black

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

Bug ID: 121046
   Summary: EDITING: Rotated Images with Alpha Channel are Black
   Product: LibreOffice
   Version: 6.1.2.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: doak...@gmail.com

Description:
Rotate an image with a alpha'd out background. When presenting, the opaque area
will be filled with black.

https://i.imgur.com/MyiNRNK.png



Steps to Reproduce:
1. Drag an image with and alpha background
2. Press F5 to run the presentation
3. Notice the opaque area will be filled with black

Actual Results:
The image is filled in with black

Expected Results:
The image should look the same, but rotated


Reproducible: Always


User Profile Reset: Yes



Additional Info:

-- 
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 67464] Request for built-in EPS rendering ...

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

Stéphane Aulery  changed:

   What|Removed |Added

   See Also||http://bugs.debian.org/8775
   ||61

-- 
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 89754] using autofill on dates is wrong when increment should be 0

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

--- Comment #11 from almos  ---
Still the same in 6.1.1.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 45252] EDITING postgreSQL-SDBC Can not edit properties for existing table column

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

Stéphane Aulery  changed:

   What|Removed |Added

   See Also||http://bugs.debian.org/8574
   ||67
 CC||lk...@free.fr

-- 
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: sc/uiconfig sd/uiconfig

2018-10-29 Thread Libreoffice Gerrit user
 sc/uiconfig/scalc/popupmenu/form.xml   |2 -
 sc/uiconfig/scalc/popupmenu/oleobject.xml  |2 -
 sd/uiconfig/sdraw/popupmenu/3dobject.xml   |6 ++--
 sd/uiconfig/sdraw/popupmenu/3dscene.xml|3 --
 sd/uiconfig/sdraw/popupmenu/connector.xml  |   28 ++---
 sd/uiconfig/sdraw/popupmenu/curve.xml  |   29 ++
 sd/uiconfig/sdraw/popupmenu/group.xml  |3 --
 sd/uiconfig/sdraw/popupmenu/line.xml   |4 +--
 sd/uiconfig/sdraw/popupmenu/measure.xml|   27 ++---
 sd/uiconfig/sdraw/popupmenu/multiselect.xml|   31 +++-
 sd/uiconfig/sdraw/popupmenu/page.xml   |2 -
 sd/uiconfig/sdraw/popupmenu/textbox.xml|6 +---
 sd/uiconfig/simpress/popupmenu/3dobject.xml|7 ++---
 sd/uiconfig/simpress/popupmenu/3dscene.xml |3 --
 sd/uiconfig/simpress/popupmenu/connector.xml   |   29 ++
 sd/uiconfig/simpress/popupmenu/curve.xml   |   32 +++--
 sd/uiconfig/simpress/popupmenu/draw.xml|9 ---
 sd/uiconfig/simpress/popupmenu/form.xml|   24 +-
 sd/uiconfig/simpress/popupmenu/group.xml   |3 --
 sd/uiconfig/simpress/popupmenu/line.xml|6 +---
 sd/uiconfig/simpress/popupmenu/measure.xml |   30 ++-
 sd/uiconfig/simpress/popupmenu/media.xml   |1 
 sd/uiconfig/simpress/popupmenu/multiselect.xml |   31 +++-
 sd/uiconfig/simpress/popupmenu/oleobject.xml   |2 -
 sd/uiconfig/simpress/popupmenu/page.xml|2 -
 sd/uiconfig/simpress/popupmenu/textbox.xml |7 +
 26 files changed, 151 insertions(+), 178 deletions(-)

New commits:
commit bd96f02f51ccaa6ad02f459b07f810d23c868f98
Author: andreas kainz 
AuthorDate: Mon Oct 29 22:16:55 2018 +0100
Commit: andreas_kainz 
CommitDate: Tue Oct 30 00:54:55 2018 +0100

context menu: finish draw and calc context menues

and update NameGroup arrangement

Change-Id: I373229793fa1605e731c04824112118c15e05c29
Reviewed-on: https://gerrit.libreoffice.org/62528
Tested-by: Jenkins
Reviewed-by: andreas_kainz 

diff --git a/sc/uiconfig/scalc/popupmenu/form.xml 
b/sc/uiconfig/scalc/popupmenu/form.xml
index 7c0dc23842c2..a1e28386f0e5 100644
--- a/sc/uiconfig/scalc/popupmenu/form.xml
+++ b/sc/uiconfig/scalc/popupmenu/form.xml
@@ -47,6 +47,6 @@
   
   
   
-  
   
+  
 
diff --git a/sc/uiconfig/scalc/popupmenu/oleobject.xml 
b/sc/uiconfig/scalc/popupmenu/oleobject.xml
index 39779cd19733..4d0e5fc4bbd3 100644
--- a/sc/uiconfig/scalc/popupmenu/oleobject.xml
+++ b/sc/uiconfig/scalc/popupmenu/oleobject.xml
@@ -39,8 +39,8 @@
 
   
   
-  
   
+  
   
   
   
diff --git a/sd/uiconfig/sdraw/popupmenu/3dobject.xml 
b/sd/uiconfig/sdraw/popupmenu/3dobject.xml
index f8d64c1c03be..af54cdbf743d 100644
--- a/sd/uiconfig/sdraw/popupmenu/3dobject.xml
+++ b/sd/uiconfig/sdraw/popupmenu/3dobject.xml
@@ -12,10 +12,13 @@
   
   
   
+  
+  
   
   
   
   
+  
   
 
   
@@ -40,7 +43,6 @@
   
 
   
-  
   
 
   
@@ -58,9 +60,7 @@
   
 
   
-  
   
-  
   
   
 
diff --git a/sd/uiconfig/sdraw/popupmenu/3dscene.xml 
b/sd/uiconfig/sdraw/popupmenu/3dscene.xml
index 34b8dc5560e0..bc55ca2aa3da 100644
--- a/sd/uiconfig/sdraw/popupmenu/3dscene.xml
+++ b/sd/uiconfig/sdraw/popupmenu/3dscene.xml
@@ -18,6 +18,7 @@
   
   
   
+  
   
 
   
@@ -42,7 +43,6 @@
   
 
   
-  
   
 
   
@@ -54,6 +54,5 @@
   
 
   
-  
   
 
diff --git a/sd/uiconfig/sdraw/popupmenu/connector.xml 
b/sd/uiconfig/sdraw/popupmenu/connector.xml
index 80f62bcfd90c..20569f57af33 100644
--- a/sd/uiconfig/sdraw/popupmenu/connector.xml
+++ b/sd/uiconfig/sdraw/popupmenu/connector.xml
@@ -13,13 +13,24 @@
   
   
   
+  
   
   
   
   
   
-  
-  
+  
+  
+
+  
+  
+  
+  
+  
+  
+  
+
+  
   
 
   
@@ -33,18 +44,6 @@
   
 
   
-  
-
-  
-  
-  
-  
-  
-  
-  
-
-  
-  
   
 
   
@@ -56,7 +55,6 @@
   
 
   
-  
   
   
   
diff --git a/sd/uiconfig/sdraw/popupmenu/curve.xml 
b/sd/uiconfig/sdraw/popupmenu/curve.xml
index 46f01a2b76dd..a994db1737be 100644
--- a/sd/uiconfig/sdraw/popupmenu/curve.xml
+++ b/sd/uiconfig/sdraw/popupmenu/curve.xml
@@ -12,14 +12,26 @@
   
   
   
-  
-  
   
   
+  
+  
   
   
   
   
+  
+  
+
+  
+  
+  
+  
+  
+  
+  
+
+  
   
 
   
@@ -33,18 +45,6 @@
   
 
   
-  
-
-  
-  
-  
-  
-  
-  
-  
-
-  
-  
   
 
   
@@ -62,7 +62,6 @@
   
 
   
-  
   
   
   
diff --git a/sd/uiconfig/sdraw/popupmenu/group.xml 
b/sd/uiconfig/sdraw/popupmenu/group.xml
index d534990a7fed..bc360939009c 100644
--- a/sd/uiconfig/sdraw/popupmenu/group.xml
+++ b/sd/uiconfig/sdraw/popupmenu/group.xml
@@ -16,6 +16,7 @@
   
   
  

[Libreoffice-qa] Next QA meeting: Oct 30 at 15:00 UTC

2018-10-29 Thread Xisco Fauli
Hello,

Kindly Reminder: Next QA meeting will take place today Tue, October 30
at 15:00 UTC in the IRC channel #libreoffice-qa. More information:
https://wiki.documentfoundation.org/QA/IRC


If you have any topic you would like to discuss during the meeting, please 
reply to this email or mention it at the beginning of the meeting.

Regards

-- 
Xisco Faulí
Libreoffice QA Team
IRC: x1sc0

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

[Libreoffice-bugs] [Bug 103469] [META] Wrap content panel of the Properties deck/tab of the sidebar

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

Bug 113420 Summary: Sidebar: Wrap spacing presets arent based on measurement 
unit setting
https://bugs.documentfoundation.org/show_bug.cgi?id=113420

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|WORKSFORME  |---

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


[Libreoffice-bugs] [Bug 113420] Sidebar: Wrap spacing presets arent based on measurement unit setting

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

zyklo...@web.de changed:

   What|Removed |Added

 Resolution|WORKSFORME  |---
 Status|RESOLVED|REOPENED

--- Comment #5 from zyklo...@web.de ---
No, it isn’t. At least not in v6.1.2.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 113420] Sidebar: Wrap spacing presets arent based on measurement unit setting

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

--- Comment #4 from zyklo...@web.de ---
Created attachment 146154
  --> https://bugs.documentfoundation.org/attachment.cgi?id=146154=edit
Still persistent in v6.1.2.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 103152] [META] Writer image bugs and enhancements

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

Bug 113420 Summary: Sidebar: Wrap spacing presets arent based on measurement 
unit setting
https://bugs.documentfoundation.org/show_bug.cgi?id=113420

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|WORKSFORME  |---

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


[Libreoffice-bugs] [Bug 38093] Add an Outline View layout and editing mode to Writer

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

V Stuart Foote  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||rb.hensc...@t-online.de
Summary|Functionality request for   |Add an Outline View layout
   |Writer: Add Outliner|and editing mode to Writer
   |similar one in Impress as   |
   |basis for outlining |
   |component   |

--- Comment #33 from V Stuart Foote  ---
@Heiko, * -- can we add this to the Design/UX pile...

Need to scope functional requirements (for a document viewshell and also
enhancing Navigator) for implementing an Outline View layout and editing mode
for Writer, with an eye toward a GSOC project (or two). And/or preparing same
for a crowd funded dev effort.  

Getting the UI requirements hammered out has not occurred in any fashion in the
OOo era, nor with AOO, nor in any of the LO Bugzilla dupes. Jean-Marc Liotier
started requirements [1] on Wiki in 2014, but they have languished.

And, guess that if any additions to ODF are needed to hold a document in an
Outline View, that has to started as well.

=-ref-=
[1] https://wiki.documentfoundation.org/Outline_view

-- 
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 38093] Add an Outline View layout and editing mode to Writer

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

V Stuart Foote  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||rb.hensc...@t-online.de
Summary|Functionality request for   |Add an Outline View layout
   |Writer: Add Outliner|and editing mode to Writer
   |similar one in Impress as   |
   |basis for outlining |
   |component   |

--- Comment #33 from V Stuart Foote  ---
@Heiko, * -- can we add this to the Design/UX pile...

Need to scope functional requirements (for a document viewshell and also
enhancing Navigator) for implementing an Outline View layout and editing mode
for Writer, with an eye toward a GSOC project (or two). And/or preparing same
for a crowd funded dev effort.  

Getting the UI requirements hammered out has not occurred in any fashion in the
OOo era, nor with AOO, nor in any of the LO Bugzilla dupes. Jean-Marc Liotier
started requirements [1] on Wiki in 2014, but they have languished.

And, guess that if any additions to ODF are needed to hold a document in an
Outline View, that has to started as well.

=-ref-=
[1] https://wiki.documentfoundation.org/Outline_view

-- 
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-commits] core.git: Branch 'libreoffice-6-1' - vcl/source

2018-10-29 Thread Libreoffice Gerrit user
 vcl/source/window/builder.cxx |   18 +++---
 1 file changed, 7 insertions(+), 11 deletions(-)

New commits:
commit 7a6e6d027ad41350ae1334d3e60dc1a6ce96c508
Author: Caolán McNamara 
AuthorDate: Sun Oct 28 20:52:37 2018 +
Commit: Adolfo Jayme Barrientos 
CommitDate: Tue Oct 30 00:28:35 2018 +0100

Resolves: tdf#120988 mismatch of in/out locale formatting

Change-Id: I9def43c111adc877aeec9f1990f5dd76fabdbf8f
Reviewed-on: https://gerrit.libreoffice.org/62486
Tested-by: Jenkins
Tested-by: Xisco Faulí 
Reviewed-by: Adolfo Jayme Barrientos 
Tested-by: Adolfo Jayme Barrientos 

diff --git a/vcl/source/window/builder.cxx b/vcl/source/window/builder.cxx
index 63e459a0becb..efa62401f876 100644
--- a/vcl/source/window/builder.cxx
+++ b/vcl/source/window/builder.cxx
@@ -216,18 +216,18 @@ namespace weld
 {
 OUString aStr;
 
+const LocaleDataWrapper& rLocaleData = 
Application::GetSettings().GetUILocaleDataWrapper();
+
 unsigned int nDecimalDigits = m_xSpinButton->get_digits();
 //pawn percent off to icu to decide whether percent is separated from 
its number for this locale
 if (m_eSrcUnit == FUNIT_PERCENT)
 {
 double fValue = nValue;
 fValue /= SpinButton::Power10(nDecimalDigits);
-aStr = unicode::formatPercent(fValue, 
Application::GetSettings().GetUILanguageTag());
+aStr = unicode::formatPercent(fValue, 
rLocaleData.getLanguageTag());
 }
 else
 {
-const SvtSysLocale aSysLocale;
-const LocaleDataWrapper& rLocaleData = aSysLocale.GetLocaleData();
 aStr = rLocaleData.getNum(nValue, nDecimalDigits, true, true);
 if (m_eSrcUnit != FUNIT_NONE && m_eSrcUnit != FUNIT_DEGREE)
 aStr += " ";
@@ -245,8 +245,7 @@ namespace weld
 
 IMPL_LINK(MetricSpinButton, spin_button_input, int*, result, bool)
 {
-const SvtSysLocale aSysLocale;
-const LocaleDataWrapper& rLocaleData = aSysLocale.GetLocaleData();
+const LocaleDataWrapper& rLocaleData = 
Application::GetSettings().GetUILocaleDataWrapper();
 double fResult(0.0);
 bool bRet = MetricFormatter::TextToValue(get_text(), fResult, 0, 
m_xSpinButton->get_digits(), rLocaleData, m_eSrcUnit);
 if (bRet)
@@ -259,8 +258,7 @@ namespace weld
 int nStartPos, nEndPos;
 m_xSpinButton->get_selection_bounds(nStartPos, nEndPos);
 
-const SvtSysLocale aSysLocale;
-const LocaleDataWrapper& rLocaleData = aSysLocale.GetLocaleData();
+const LocaleDataWrapper& rLocaleData = 
Application::GetSettings().GetUILocaleDataWrapper();
 const int nTimeArea = TimeFormatter::GetTimeArea(m_eFormat, 
m_xSpinButton->get_text(), nEndPos,
  rLocaleData);
 
@@ -294,8 +292,7 @@ namespace weld
 int nStartPos, nEndPos;
 m_xSpinButton->get_selection_bounds(nStartPos, nEndPos);
 
-const SvtSysLocale aSysLocale;
-const LocaleDataWrapper& rLocaleData = aSysLocale.GetLocaleData();
+const LocaleDataWrapper& rLocaleData = 
Application::GetSettings().GetUILocaleDataWrapper();
 tools::Time aResult(0);
 bool bRet = TimeFormatter::TextToTime(m_xSpinButton->get_text(), 
aResult, m_eFormat, true, rLocaleData);
 if (bRet)
@@ -327,8 +324,7 @@ namespace weld
 
 OUString TimeSpinButton::format_number(int nValue) const
 {
-const SvtSysLocale aSysLocale;
-const LocaleDataWrapper& rLocaleData = aSysLocale.GetLocaleData();
+const LocaleDataWrapper& rLocaleData = 
Application::GetSettings().GetUILocaleDataWrapper();
 return TimeFormatter::FormatTime(ConvertValue(nValue), m_eFormat, 
TimeFormat::Hour24, true, rLocaleData);
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117560] Writer: embedded Calc spreadsheet with underlined text does not show up underlined

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

Bartosz  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |gan...@poczta.onet.pl
   |desktop.org |

-- 
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 121045] New: OLE form control checkbox is larger than in Word

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

Bug ID: 121045
   Summary: OLE form control checkbox is larger than in Word
   Product: LibreOffice
   Version: 6.2.0.0.alpha1+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kelem...@ubuntu.com

Created attachment 146152
  --> https://bugs.documentfoundation.org/attachment.cgi?id=146152=edit
Example document from Word with legacy form control checkboxes

Attached form has a lot of legacy OLE form control checkboxes in tables.

In Word this document fits on 3 pages, but in Writer it is 5.

This is because the legacy form controls are imported as a slightly larger
square, causing table rows becoming a bit taller. 
This adds up and two table rows are pushed to the next page after the first
one, and an empty paragraph is pushed to the fourth page.

It would be nice if these old style controls would be somehow identical in size
to the ones in Word.

Note: the square before "Kulcs visszaállítás" on the first page is actually
smaller than all other squares, while in Word it is the same size.

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


[Libreoffice-commits] online.git: 2 commits - net/FakeSocket.cpp net/Socket.hpp

2018-10-29 Thread Libreoffice Gerrit user
 net/FakeSocket.cpp |   24 ++--
 net/Socket.hpp |2 ++
 2 files changed, 16 insertions(+), 10 deletions(-)

New commits:
commit 4ce96fb8fff164555b165f9b3692b453b8ff3660
Author: Tor Lillqvist 
AuthorDate: Tue Oct 30 00:46:52 2018 +0200
Commit: Tor Lillqvist 
CommitDate: Tue Oct 30 00:47:26 2018 +0200

Don't access nonexistent vector element in the EOF case

diff --git a/net/FakeSocket.cpp b/net/FakeSocket.cpp
index ecbcdc33e..0a4419110 100644
--- a/net/FakeSocket.cpp
+++ b/net/FakeSocket.cpp
@@ -510,18 +510,22 @@ ssize_t fakeSocketRead(int fd, void *buf, size_t nbytes)
 return -1;
 }
 
-// These sockets are record-oriented. It won't work to read less than the 
whole record in turn
-// to be read.
-ssize_t result = pair.buffer[K][0].size();
-if (nbytes < result)
+ssize_t result = 0;
+if (pair.buffer[K].size() > 0)
 {
-loggingBuffer << "FakeSocket EAGAIN: Read from #" << fd << ", " << 
nbytes << (nbytes == 1 ? " byte" : " bytes") << flush();
-errno = EAGAIN; // Not the right errno, but what would be?q
-return -1;
-}
+// These sockets are record-oriented. It won't work to read less than 
the whole record in
+// turn to be read.
+result = pair.buffer[K][0].size();
+if (nbytes < result)
+{
+loggingBuffer << "FakeSocket EAGAIN: Read from #" << fd << ", " << 
nbytes << (nbytes == 1 ? " byte" : " bytes") << flush();
+errno = EAGAIN; // Not the right errno, but what would be?
+return -1;
+}
 
-memmove(buf, pair.buffer[K][0].data(), result);
-pair.buffer[K].erase(pair.buffer[K].begin());
+memmove(buf, pair.buffer[K][0].data(), result);
+pair.buffer[K].erase(pair.buffer[K].begin());
+}
 
 // If peer is closed or shut down, we continue to be readable
 if (pair.fd[N] == -1 || pair.shutdown[N])
commit 9fec3b0e277c6dc9a979bd2afeb07aee4a0a54c5
Author: Tor Lillqvist 
AuthorDate: Tue Oct 30 00:45:55 2018 +0200
Commit: Tor Lillqvist 
CommitDate: Tue Oct 30 00:47:21 2018 +0200

Handle EOF case (when fakeSocketAvailableDataLength() returns 0)

diff --git a/net/Socket.hpp b/net/Socket.hpp
index 3a28bffdd..e62b01039 100644
--- a/net/Socket.hpp
+++ b/net/Socket.hpp
@@ -893,6 +893,8 @@ public:
 ssize_t len;
 if (available == -1)
 len = -1;
+else if (available == 0)
+len = 0;
 else
 {
 std::vectorbuf(available);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 120875] UI: Graphics engine badly draws mathematical operators in Formula Editor

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

Michal Kozakiewicz  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 112779] Displaying very large plot pasted from Calc causes Writer to become unresponsive

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

--- Comment #9 from Stéphane Aulery  ---
Can I found a portable version of the last buil for windows?

-- 
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 112779] Displaying very large plot pasted from Calc causes Writer to become unresponsive

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

Xisco Faulí  changed:

   What|Removed |Added

 Resolution|FIXED   |WORKSFORME

--- Comment #8 from Xisco Faulí  ---
Thanks for retesting with the latest version.
Setting to RESOLVED WORKSFORME as the commit fixing this issue hasn't been
identified.

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


[Libreoffice-commits] online.git: 4 commits - Mobile/Mobile Mobile/Mobile.xcodeproj

2018-10-29 Thread Libreoffice Gerrit user
 Mobile/Mobile.xcodeproj/project.pbxproj |   51 
 Mobile/Mobile/Info.plist|   14 +---
 Mobile/Mobile/Mobile.entitlements   |   20 
 3 files changed, 74 insertions(+), 11 deletions(-)

New commits:
commit 15bd148f26b1597bf158f1dd61407c42091abea7
Author: Tor Lillqvist 
AuthorDate: Mon Oct 29 21:17:36 2018 +0200
Commit: Tor Lillqvist 
CommitDate: Tue Oct 30 00:22:45 2018 +0200

Add source files from vcl/headless for easier breakpointing

Change-Id: Iae08ef264ba8e03f478c16ea60a5dd46d06e4930

diff --git a/Mobile/Mobile.xcodeproj/project.pbxproj 
b/Mobile/Mobile.xcodeproj/project.pbxproj
index adaba7441..22dcfd753 100644
--- a/Mobile/Mobile.xcodeproj/project.pbxproj
+++ b/Mobile/Mobile.xcodeproj/project.pbxproj
@@ -80,6 +80,18 @@
BE58E12E217F295B00249358 /* Protocol.hpp */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path 
= Protocol.hpp; sourceTree = ""; };
BE58E12F217F295B00249358 /* Session.hpp */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path 
= Session.hpp; sourceTree = ""; };
BE58E13021874A2E00249358 /* Mobile.entitlements */ = {isa = 
PBXFileReference; lastKnownFileType = text.plist.entitlements; path = 
Mobile.entitlements; sourceTree = ""; };
+   BE58E132218793B500249358 /* svpbmp.cxx */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpbmp.cxx; 
path = "../../ios-device/vcl/headless/svpbmp.cxx"; sourceTree = ""; };
+   BE58E133218793B500249358 /* svpglyphcache.cxx */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = 
svpglyphcache.cxx; path = "../../ios-device/vcl/headless/svpglyphcache.cxx"; 
sourceTree = ""; };
+   BE58E134218793B600249358 /* svpgdi.cxx */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpgdi.cxx; 
path = "../../ios-device/vcl/headless/svpgdi.cxx"; sourceTree = ""; };
+   BE58E135218793B600249358 /* headlessinst.cxx */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = 
headlessinst.cxx; path = "../../ios-device/vcl/headless/headlessinst.cxx"; 
sourceTree = ""; };
+   BE58E136218793B600249358 /* svpcairotextrender.cxx */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = 
svpcairotextrender.cxx; path = 
"../../ios-device/vcl/headless/svpcairotextrender.cxx"; sourceTree = ""; 
};
+   BE58E137218793B600249358 /* svpprn.cxx */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpprn.cxx; 
path = "../../ios-device/vcl/headless/svpprn.cxx"; sourceTree = ""; };
+   BE58E138218793B600249358 /* svpdummies.cxx */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = 
svpdummies.cxx; path = "../../ios-device/vcl/headless/svpdummies.cxx"; 
sourceTree = ""; };
+   BE58E139218793B600249358 /* svpinst.cxx */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpinst.cxx; 
path = "../../ios-device/vcl/headless/svpinst.cxx"; sourceTree = ""; };
+   BE58E13A218793B600249358 /* svpdata.cxx */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpdata.cxx; 
path = "../../ios-device/vcl/headless/svpdata.cxx"; sourceTree = ""; };
+   BE58E13B218793B600249358 /* svptext.cxx */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svptext.cxx; 
path = "../../ios-device/vcl/headless/svptext.cxx"; sourceTree = ""; };
+   BE58E13C218793B600249358 /* svpvd.cxx */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpvd.cxx; 
path = "../../ios-device/vcl/headless/svpvd.cxx"; sourceTree = ""; };
+   BE58E13D218793B600249358 /* svpframe.cxx */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpframe.cxx; 
path = "../../ios-device/vcl/headless/svpframe.cxx"; sourceTree = ""; };
BE5EB5B9213FE29900E0826C /* Log.cpp */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; 
path = Log.cpp; sourceTree = ""; };
BE5EB5BA213FE29900E0826C /* SpookyV2.cpp */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; 
path = SpookyV2.cpp; sourceTree = ""; };
BE5EB5BB213FE29900E0826C /* Session.cpp */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; 
path = Session.cpp; sourceTree = ""; };
@@ -314,6 +326,25 @@
name = Frameworks;
sourceTree = "";
};
+   BE58E1312187938700249358 /* headless */ = {
+   isa = PBXGroup;
+   children = (
+   BE58E135218793B600249358 /* headlessinst.cxx */,
+   

[Libreoffice-bugs] [Bug 112779] Displaying very large plot pasted from Calc causes Writer to become unresponsive

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

Stéphane Aulery  changed:

   What|Removed |Added

 Resolution|INSUFFICIENTDATA|FIXED

--- Comment #7 from Stéphane Aulery  ---
No crash since LO 5.4.1-1

No slow response since LO 6.0.x

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


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

2018-10-29 Thread Libreoffice Gerrit user
 vcl/headless/svpinst.cxx |2 ++
 vcl/inc/headless/svpinst.hxx |2 ++
 2 files changed, 4 insertions(+)

New commits:
commit 629f9ff63bf3a1e16ed38a737a7fdd074b9c0ca7
Author: Tor Lillqvist 
AuthorDate: Mon Oct 29 22:04:19 2018 +0200
Commit: Tor Lillqvist 
CommitDate: Tue Oct 30 00:20:59 2018 +0200

m_FeedbackFDs is unused on iOS

I wonder why we have that iOS ifdef in SvpSalInstance::Wakeup()?
Elsewhere in this file we do compile code that uses those same fields
for iOS, too.

Change-Id: Ib801ea81fafcf2296181874018c1df2ceef144a1

diff --git a/vcl/headless/svpinst.cxx b/vcl/headless/svpinst.cxx
index a711d693f00e..25e15ca9961a 100644
--- a/vcl/headless/svpinst.cxx
+++ b/vcl/headless/svpinst.cxx
@@ -298,7 +298,9 @@ void SvpSalInstance::ProcessEvent( SalUserEvent aEvent )
 
 SvpSalYieldMutex::SvpSalYieldMutex()
 {
+#ifndef IOS
 m_FeedbackFDs[0] = m_FeedbackFDs[1] = -1;
+#endif
 }
 
 SvpSalYieldMutex::~SvpSalYieldMutex()
diff --git a/vcl/inc/headless/svpinst.hxx b/vcl/inc/headless/svpinst.hxx
index 7c2b5efce593..4793d8e463d5 100644
--- a/vcl/inc/headless/svpinst.hxx
+++ b/vcl/inc/headless/svpinst.hxx
@@ -73,7 +73,9 @@ private:
 // at least one subclass of SvpSalInstance (GTK3) that doesn't use them.
 friend class SvpSalInstance;
 // members for communication from main thread to non-main thread
+#ifndef IOS
 int m_FeedbackFDs[2];
+#endif
 osl::Condition  m_NonMainWaitingYieldCond;
 // members for communication from non-main thread to main thread
 boolm_bNoYieldLock = false; // accessed only on main 
thread
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 67346] EDITING: Undo broken when pasting text that has been copied from the input line

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

--- Comment #4 from Commit Notification 
 ---
Zdeněk Crhonek committed a patch related to this issue.
It has been pushed to "master":

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

uitest for bug tdf#67346

It will be available in 6.2.0.

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

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

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


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

2018-10-29 Thread Libreoffice Gerrit user
 sc/qa/uitest/inputLine/tdf67346.py |   45 +
 1 file changed, 45 insertions(+)

New commits:
commit 87f57f3aaf90706f1b3e0a9bc22de17378f319f2
Author: Zdeněk Crhonek 
AuthorDate: Mon Oct 29 22:01:32 2018 +0100
Commit: Zdenek Crhonek 
CommitDate: Mon Oct 29 23:19:09 2018 +0100

uitest for bug tdf#67346

Change-Id: I637a9811ac656db46e0e993343e962dc296e360b
Reviewed-on: https://gerrit.libreoffice.org/62527
Tested-by: Jenkins
Reviewed-by: Zdenek Crhonek 

diff --git a/sc/qa/uitest/inputLine/tdf67346.py 
b/sc/qa/uitest/inputLine/tdf67346.py
new file mode 100644
index ..324d8ca6384c
--- /dev/null
+++ b/sc/qa/uitest/inputLine/tdf67346.py
@@ -0,0 +1,45 @@
+# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+from uitest.framework import UITestCase
+from uitest.uihelper.common import get_state_as_dict
+from uitest.uihelper.common import select_pos
+from uitest.uihelper.calc import enter_text_to_cell
+from libreoffice.calc.document import get_sheet_from_doc
+from libreoffice.calc.conditional_format import 
get_conditional_format_from_sheet
+from uitest.debug import sleep
+from libreoffice.calc.document import get_cell_by_position
+from libreoffice.uno.propertyvalue import mkPropertyValues
+#Bug 67346 - EDITING: Undo broken when pasting text that has been copied from 
the input line
+
+class tdf67346(UITestCase):
+
+def test_tdf67346_undo_paste_text_input_line(self):
+calc_doc = self.ui_test.create_doc_in_start_center("calc")
+xCalcDoc = self.xUITest.getTopFocusWindow()
+gridwin = xCalcDoc.getChild("grid_window")
+document = self.ui_test.get_component()
+# type 'Apple' in A1
+enter_text_to_cell(gridwin, "A1", "Apple")
+# input line: copy the text from there
+xInputWin = xCalcDoc.getChild("sc_input_window")
+xInputWin.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"}))
+self.xUITest.executeCommand(".uno:Copy")
+gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "A2"}))
+# Ctrl-V
+self.xUITest.executeCommand(".uno:Paste")
+self.assertEqual(get_cell_by_position(document, 0, 0, 0).getString(), 
"Apple")
+self.assertEqual(get_cell_by_position(document, 0, 0, 1).getString(), 
"Apple")
+self.assertEqual(get_state_as_dict(xInputWin)["Text"], "Apple")
+#Ctrl-Z
+self.xUITest.executeCommand(".uno:Undo")
+self.assertEqual(get_cell_by_position(document, 0, 0, 0).getString(), 
"Apple")
+self.assertEqual(get_cell_by_position(document, 0, 0, 1).getString(), 
"")
+self.assertEqual(get_state_as_dict(xInputWin)["Text"], "")
+
+self.ui_test.close_doc()
+
+# 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 67346] EDITING: Undo broken when pasting text that has been copied from the input line

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:4.2.5|target:4.2.5 target:6.2.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 38093] Functionality request for Writer: Add Outliner similar one in Impress as basis for outlining component

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

--- Comment #32 from Cougar Brenneman  ---
I'm sorry, I keep using OO rather than LO, because although I haven't been
willing to use either one for many years because of this functional deficit.

-- 
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 121027] missing apostrophe in xlsx import

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

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
Version|6.1.2.1 release |4.1.0.4 release
 CC||r...@post.cz
 Ever confirmed|0   |1

--- Comment #2 from raal  ---
Confirm with Version: 6.2.0.0.alpha1+
Build ID: a50f845957fff66ca7f459da4878be4597e0bae3
CPU threads: 4; OS: Linux 4.4; UI render: default; VCL: x11; and Version
4.1.0.0.alpha0+ (Build ID: efca6f15609322f62a35619619a6d5fe5c9bd5a)

Cells are imported as Number type, not General

-- 
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: Build fails in UnitTest

2018-10-29 Thread Regis Perdreau
Forget the noise, Lo accept to launch itself at the second try :)

Régis Perdreau


Le lun. 29 oct. 2018 à 21:18, Regis Perdreau
 a écrit :
>
> Hi,
>
> I have this error when i try to launch debug version of libreoffice in GDB.
>
>
> Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
> warning: Corrupted shared library list: 0x55850240 != 0x77f97cc0
>
> Some clues to solve this problem ?
>
> Régis Perdreau
> 07 68 88 26 07
>
> Le mar. 16 oct. 2018 à 19:36, kalriel  a écrit :
> >
> > Hello.
> > I get the following error when building the master
> >
> > Error: a unit test failed, please do one of:
> > make CppunitTest_sc_subsequent_filters_test CPPUNITTRACE="lldb --"   #
> > for interactive debugging on OS X
> > make CppunitTest_sc_subsequent_filters_test VALGRIND=memcheck#
> > for memory checking
> >
> > You can limit the execution to just one particular test by:
> >
> > make CppunitTest_sc_subsequent_filters_test CPPUNIT_TEST_NAME="testXYZ"
> > ...above mentioned params...
> >
> > /[...]/LibreOffice_Source/lode/dev/core/solenv/gbuild/CppunitTest.mk:120:
> > recipe for target
> > '/[...]/LibreOffice_Source/lode/dev/core/workdir/CppunitTest/sc_subsequent_filters_test.test'
> > failed
> > make[1]: ***
> > [/[...]/LibreOffice_Source/lode/dev/core/workdir/CppunitTest/sc_subsequent_filters_test.test]
> > Error 1
> > Makefile:167: recipe for target 'CppunitTest_sc_subsequent_filters_test'
> > failed
> > make: *** [CppunitTest_sc_subsequent_filters_test] Error 2
> >
> > Best regards.
> > Kalriel
> >
> >
> >
> > --
> > Sent from: 
> > http://document-foundation-mail-archive.969070.n3.nabble.com/Dev-f1639786.html
> > ___
> > 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-bugs] [Bug 51697] EDITING: Cell format for date is not taken into account when entering data

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

--- Comment #14 from mt  ---
The bug is still present.

Version: 6.1.2.1
Build ID: 1:6.1.2-0ubuntu1
CPU threads: 4; OS: Linux 4.18; UI render: default; VCL: gtk3_kde5; 
Locale: en-US (en_US.UTF-8); Calc: group threaded

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


[Libreoffice-bugs] [Bug 38093] Functionality request for Writer: Add Outliner similar one in Impress as basis for outlining component

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

--- Comment #31 from Cougar Brenneman  ---
Let's be specific with actual documents I've written, which are book length
(including all of the APIs and developers guides for I-Flow at Fujitsu in the
1990s).

I hide everything but chapter headings. Then I use the buttons to rearrange the
chapters by dragging and dropping. This literally takes 5 seconds or less.

Then within the chapters, I hide everything except the headings and I rearrange
them by dragging and dropping them to new locations, including in other
chapters. This also takes 5 seconds or less for major reorganization of the
material.

The same goes for subheadings, paragraphs (with lines hidden), and even clumsy
sentences. I'll take a clumsy sentence, break it into five clauses, use the
button to drag and drop the clauses into a logical order, and then reassemble
the sentence, which is no longer clumsy.

NONE of this is possible with OO. It is possible with Word and WPS, and in
those tools, rearranging by dragging and dropping the buttons is instantaneous.

I wrote and published over 200 trade magazine articles using this method as
well as a multichapter section in a book on Cold Fusion 6 in the 90s, other
APIs and user guides, and I currently am working on a novel and a large,
multi-volume nonfiction book. I'm also currently reviewing my PHP code and my
jQuery code for a project I've been visualizing for decades.

When I'm talking about VITAL tools for being a writer, I'm talking from
successful. Incidentally, at Fujitsu, I wrote in Word because of the outliner
and then imported it into Framemaker for publication. I could NOT simply work
in Framemaker, because Framemaker did not have this functionality. I needed
this functionality for production work.

-- 
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 121043] Cutting and pasting a value into a cell referenced in formula doesn't update formula

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

raal  changed:

   What|Removed |Added

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

--- Comment #2 from raal  ---
Confirm with Version: 6.2.0.0.alpha1+
Build ID: a50f845957fff66ca7f459da4878be4597e0bae3
CPU threads: 4; OS: Linux 4.4; UI render: default; VCL: x11;

-- 
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 60616] Chapter info doesn't support more than one appearance in an Alphabetical index entry and only the last chapter

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

Lee <92ma...@gmail.com> changed:

   What|Removed |Added

 CC||92ma...@gmail.com

--- Comment #15 from Lee <92ma...@gmail.com> ---
This is a lot like the error I am having.
I have three instances of subnet mask noted in the index, they occur on pages
2-2, 2-8 and 4-7.
That part of my index is as follows:
subnet mask  4-2, 7, 8

None of the three entries for subnet mask are correct.

-- 
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 120939] Calc performs a wrong calculation!!!

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

--- Comment #8 from diego.guella...@gmail.com ---
(In reply to Aron Budea from comment #7)
> (In reply to diego.guella.85 from comment #5)
> > Additional information: Original bug was encountered and reported from my
> > office PC, which is a Core i7-920 on Windows 7 Pro SP1. I tried opening the
> > testcase.ods file from my home PC, Core i7-6700k on Windows 10 Pro 1803, and
> > got the same results. I confirm that recalculating with CTRL+SHIFT+F9
> > produces the right values here too, but simply opening the file I get the
> > wrong ones.
> The formula results are cached in the spreadsheet, so just opening the file
> will produce wrong results everywhere, unless Calc is set to always
> recalculate formula. What is interesting is what happens when you
> recalculate, if the results are fine then, then that particular system+LO
> combination is okay.

I wasn't aware about that. So, I recreated the spreadsheet from a blank one on
the Core i7-6700K Win10 Pro 1803, LO 5.4.7.2 x64, and I found no issues on the
"0,2" row.

-- 
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: sd/uiconfig

2018-10-29 Thread Libreoffice Gerrit user
 sd/uiconfig/sdraw/popupmenu/tabletext.xml|   75 +++
 sd/uiconfig/simpress/popupmenu/tabletext.xml |   75 +++
 2 files changed, 62 insertions(+), 88 deletions(-)

New commits:
commit e9b5b4b5c65cd86b1c7aee98a9837464bc126ef1
Author: andreas kainz 
AuthorDate: Mon Oct 29 17:46:49 2018 +0100
Commit: andreas_kainz 
CommitDate: Mon Oct 29 22:17:57 2018 +0100

update tabletext context toolbar for draw and impress

Change-Id: If4a78aa0c95c0d6943c34caf0636e9867556b725
Reviewed-on: https://gerrit.libreoffice.org/62516
Tested-by: Jenkins
Reviewed-by: andreas_kainz 

diff --git a/sd/uiconfig/sdraw/popupmenu/tabletext.xml 
b/sd/uiconfig/sdraw/popupmenu/tabletext.xml
index 482ad92396a0..ed1625065383 100644
--- a/sd/uiconfig/sdraw/popupmenu/tabletext.xml
+++ b/sd/uiconfig/sdraw/popupmenu/tabletext.xml
@@ -11,67 +11,54 @@
   
   
   
-  
   
-  
-  
-  
-  
-  
-  
-  
-  
-  
+  
+  
+  
 
-  
-  
+  
+  
+  
   
-  
-  
-  
+  
+  
+  
 
   
-  
+  
 
-  
-  
-  
-  
-  
-  
   
+  
+  
 
   
-  
+  
 
+  
+  
+  
+  
+  
+  
   
   
   
-  
-  
-  
-  
 
   
   
-  
-  
-  
+  
+  
   
-  
-
-  
-  
-  
-  
-  
-  
-  
-  
-  
-
-  
   
-  
+  
+  
+  
+  
+  
   
+  
+  
+  
+  
+  
 
diff --git a/sd/uiconfig/simpress/popupmenu/tabletext.xml 
b/sd/uiconfig/simpress/popupmenu/tabletext.xml
index 482ad92396a0..ed1625065383 100644
--- a/sd/uiconfig/simpress/popupmenu/tabletext.xml
+++ b/sd/uiconfig/simpress/popupmenu/tabletext.xml
@@ -11,67 +11,54 @@
   
   
   
-  
   
-  
-  
-  
-  
-  
-  
-  
-  
-  
+  
+  
+  
 
-  
-  
+  
+  
+  
   
-  
-  
-  
+  
+  
+  
 
   
-  
+  
 
-  
-  
-  
-  
-  
-  
   
+  
+  
 
   
-  
+  
 
+  
+  
+  
+  
+  
+  
   
   
   
-  
-  
-  
-  
 
   
   
-  
-  
-  
+  
+  
   
-  
-
-  
-  
-  
-  
-  
-  
-  
-  
-  
-
-  
   
-  
+  
+  
+  
+  
+  
   
+  
+  
+  
+  
+  
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-10-29 Thread Libreoffice Gerrit user
 xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx |   83 ++
 xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.hxx |8 
 xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.cxx |   26 +++
 xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.hxx |6 
 4 files changed, 92 insertions(+), 31 deletions(-)

New commits:
commit 2286137c40a2abb26d36beb906962baffd779312
Author: Tomaž Vajngerl 
AuthorDate: Wed Oct 24 10:27:26 2018 +0200
Commit: Tomaž Vajngerl 
CommitDate: Mon Oct 29 22:15:56 2018 +0100

fix importing the certificate and private key

If importing the certificate and private key is done separately,
they don't associate with each other, so with this you can add
the private key to the certificate that it belongs to. If the
private key is set in this way, then getPrivateKey() call doesn't
look into the database but just returns the private key stored
in the member variable.

Additionally use CERT_DecodeCertFromPackage to import the DER
certificate from the imput as CERT_DecodeDERCertificate doesn't
import a complete certificate and doesn't add it into the
certificate database.

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

diff --git a/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx 
b/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx
index 4e31c40bf733..bdf8000d886b 100644
--- a/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx
+++ b/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx
@@ -432,6 +432,30 @@ Sequence< Reference < XCertificate > > 
SecurityEnvironment_NssImpl::buildCertifi
 return Sequence< Reference < XCertificate > >();
 }
 
+X509Certificate_NssImpl* 
SecurityEnvironment_NssImpl::createAndAddCertificateFromPackage(
+const 
css::uno::Sequence& raDERCertificate,
+OUString const & 
raString)
+{
+auto pCertificateBytes = reinterpret_cast(const_cast(raDERCertificate.getConstArray()));
+CERTCertificate* pCERTCertificate = 
CERT_DecodeCertFromPackage(pCertificateBytes, raDERCertificate.getLength());
+
+if (!pCERTCertificate)
+return nullptr;
+
+OString aTrustString = OUStringToOString(raString, 
RTL_TEXTENCODING_ASCII_US);
+
+CERTCertTrust aTrust;
+if (CERT_DecodeTrustString(, aTrustString.getStr()) != SECSuccess)
+return nullptr;
+
+if (CERT_ChangeCertTrust(CERT_GetDefaultCertDB(), pCERTCertificate, 
) != SECSuccess)
+return nullptr;
+
+X509Certificate_NssImpl* pX509Certificate = new X509Certificate_NssImpl();
+pX509Certificate->setCert(pCERTCertificate);
+return pX509Certificate;
+}
+
 X509Certificate_NssImpl* 
SecurityEnvironment_NssImpl::createX509CertificateFromDER(const 
css::uno::Sequence& aDerCertificate)
 {
 X509Certificate_NssImpl* pX509Certificate = nullptr;
@@ -816,68 +840,71 @@ xmlSecKeysMngrPtr 
SecurityEnvironment_NssImpl::createKeysManager() {
 // Adopt the private key of the signing certificate, if it has any.
 if (auto pCertificate = 
dynamic_cast(m_xSigningCertificate.get()))
 {
-if (auto pCERTCertificate = 
const_cast(pCertificate->getNssCert()))
+SECKEYPrivateKey* pPrivateKey = pCertificate->getPrivateKey();
+if (pPrivateKey)
 {
-if (pCERTCertificate && pCERTCertificate->slot)
-{
-SECKEYPrivateKey* pPrivateKey = 
PK11_FindPrivateKeyFromCert(pCERTCertificate->slot, pCERTCertificate, nullptr);
-xmlSecKeyDataPtr pKeyData = xmlSecNssPKIAdoptKey(pPrivateKey, 
nullptr);
-xmlSecKeyPtr pKey = xmlSecKeyCreate();
-xmlSecKeySetValue(pKey, pKeyData);
-xmlSecNssAppDefaultKeysMngrAdoptKey(pKeysMngr, pKey);
-}
-else
-{
-SAL_WARN("xmlsecurity.xmlsec", "Can't get the private key from 
the certificate.");
-}
+xmlSecKeyDataPtr pKeyData = xmlSecNssPKIAdoptKey(pPrivateKey, 
nullptr);
+xmlSecKeyPtr pKey = xmlSecKeyCreate();
+xmlSecKeySetValue(pKey, pKeyData);
+xmlSecNssAppDefaultKeysMngrAdoptKey(pKeysMngr, pKey);
+}
+else
+{
+SAL_WARN("xmlsecurity.xmlsec", "Can't get the private key from the 
certificate.");
 }
 }
 
-return pKeysMngr ;
+return pKeysMngr;
 }
+
 void SecurityEnvironment_NssImpl::destroyKeysManager(xmlSecKeysMngrPtr 
pKeysMngr) {
 if( pKeysMngr != nullptr ) {
 xmlSecKeysMngrDestroy( pKeysMngr ) ;
 }
 }
 
-uno::Reference 
SecurityEnvironment_NssImpl::createDERCertificateWithPrivateKey(
-Sequence const & raDERCertificate, Sequence const 
& raPrivateKey)
+SECKEYPrivateKey* 

[Libreoffice-bugs] [Bug 119020] Icons are corrupted on Windows when scaling UI 150% and higher, with some OpenGL dependency

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

--- Comment #38 from Tomaz Vajngerl  ---
(In reply to V Stuart Foote from comment #37)
> Does this mean we *never* pick up SVG flavors of icons in the Windows builds
> for the HiDPI handling noted comment 10?  And it is only lower res 8-bit
> color PNG that are being scaled and corrupted?  

SVG icons aren't packaged anywhere yet and they are meant to be separate icon
themes (breeze_svg, colibre_svg,..) until we decide to drop the PNG icon
themes.  

> Are the SVG being scaled and pushed to cache as PNG for HiDPI, but then not
> reused? If so where do they go?

SVG icons are all cached as PNG (and rendered at higher resolution for HiDPI
and not scaled), however PNG icons are only cached for the HiDPI and "disabled"
variants.

-- 
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 38093] Functionality request for Writer: Add Outliner similar one in Impress as basis for outlining component

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

--- Comment #30 from Mike Kaganski  ---
(In reply to Cougar Brenneman from comment #29)
> Let's try again. 

Ok.

> 1) In Outliner View, Word puts a little button in front of every paragraph
> or heading that you can use to drag and drop. This is a key feature which is
> not at all available in OO.

Ok; agreed - I missed that those "text points" you were mentioning are normal
paragraphs; yes, this is missing.

> 2) In Outliner View, all text below any heading can be hidden. This creates
> a headings only view.

The Navigator's headings provide you just that: a heading only view.

> 3) In Outliner View, all headings which are children of a selected heading
> can be hidden. This can, for instance, create an "h2 and above view" or an
> "h3 and above view."

The Navigator allows you to collapse any heading's children. Also, it allows
you to limit view to only N levels, hiding all levels below L (say, only level
1 and 2 would be visible).

> 4) Text paragraphs can be viewed with only the first line showing.

This one was the one I agreed to in comment 28. No need to reiterate.

> 5) In Outliner View, when you drag and drop that little button icon in front
> of the paragraph or heading, all of the hidden text and headings go along
> with the heading that you're dragging. BY DRAGGING AND DROPPING THAT SINGLE
> BUTTON, you can drag 10,000 hidden words from below 10,000 other hidden
> words, and drop them in the new location. Then you can collapse those 20,000
> words under a different heading, and drag them invisibly to another new
> location. Then you uncollapse all of the sections, hide all but the first
> lines of the entire page, and drag paragraphs into new positions before
> displaying the whole paragraphs that you've dragged around.

Dragging isn't working in Navigator (for some unclear reason); still, there are
"Promote/Demote Chapter" and "Promote/Demote Level" buttons on the Navigator's
toolbar, which do just that: move chapters with everything inside them (all
those thousands paragraphs and included sublevels).

> I HATE the fact ...

This is totally irrelevant. The discussion here isn't about anyone's
personality and feelings; it's about figuring out what needs addressing (and
that's why I jumped in and try to clarify what is really missing, and what is
already present - and thus not needed in this discussion, because it only
clutters it and makes the issue unmanageable).

-- 
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 114700] Image Anchor Icon corrupted on HiDPI Displays

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

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

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

tdf#114700 Single marker files are needed for HiDPI display

It will be available in 6.2.0.

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

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

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


[Libreoffice-bugs] [Bug 114700] Image Anchor Icon corrupted on HiDPI Displays

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.2.0

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


[Libreoffice-commits] core.git: svx/inc

2018-10-29 Thread Libreoffice Gerrit user
 svx/inc/bitmaps.hlst |   89 +++
 1 file changed, 89 insertions(+)

New commits:
commit f713caa6f116ee9d6f99e03a688216984cedce44
Author: Regina Henschel 
AuthorDate: Sun Oct 28 23:08:48 2018 +0100
Commit: Tomaž Vajngerl 
CommitDate: Mon Oct 29 22:07:39 2018 +0100

tdf#114700 Single marker files are needed for HiDPI display

The method ImpGetBitmapEx in svdhdl.cxx needs special single
marker files to generate display dependent markers on the fly.
List them in bitmaps.hlst so that they are packed and delivered.

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

diff --git a/svx/inc/bitmaps.hlst b/svx/inc/bitmaps.hlst
index 5ae8d9e3ea60..158b66175691 100644
--- a/svx/inc/bitmaps.hlst
+++ b/svx/inc/bitmaps.hlst
@@ -186,6 +186,95 @@
 #define SIP_SA_MARKERS  "svx/res/markers.png"
 #define BMP_SVXOLEOBJ   "res/oleobj.png"
 #define SIP_SA_CROP_MARKERS "svx/res/cropmarkers.png"
+#define BMP_MARKER_ANCHOR   "svx/res/marker-anchor.png"
+#define BMP_MARKER_ANCHOR_PRESSED   
"svx/res/marker-anchor-pressed.png"
+#define BMP_MARKER_CIRC7_1  
"svx/res/marker-circ7-1.png"
+#define BMP_MARKER_CIRC7_2  
"svx/res/marker-circ7-2.png"
+#define BMP_MARKER_CIRC7_3  
"svx/res/marker-circ7-3.png"
+#define BMP_MARKER_CIRC7_4  
"svx/res/marker-circ7-4.png"
+#define BMP_MARKER_CIRC7_5  
"svx/res/marker-circ7-5.png"
+#define BMP_MARKER_CIRC7_6  
"svx/res/marker-circ7-6.png"
+#define BMP_MARKER_CIRC9_1  
"svx/res/marker-circ9-1.png"
+#define BMP_MARKER_CIRC9_2  
"svx/res/marker-circ9-2.png"
+#define BMP_MARKER_CIRC9_3  
"svx/res/marker-circ9-3.png"
+#define BMP_MARKER_CIRC9_4  
"svx/res/marker-circ9-4.png"
+#define BMP_MARKER_CIRC9_5  
"svx/res/marker-circ9-5.png"
+#define BMP_MARKER_CIRC9_6  
"svx/res/marker-circ9-6.png"
+#define BMP_MARKER_CIRC11_1 
"svx/res/marker-circ11-1.png"
+#define BMP_MARKER_CIRC11_2 
"svx/res/marker-circ11-2.png"
+#define BMP_MARKER_CIRC11_3 
"svx/res/marker-circ11-3.png"
+#define BMP_MARKER_CIRC11_4 
"svx/res/marker-circ11-4.png"
+#define BMP_MARKER_CIRC11_5 
"svx/res/marker-circ11-5.png"
+#define BMP_MARKER_CIRC11_6 
"svx/res/marker-circ11-6.png"
+#define BMP_MARKER_CROSS"svx/res/marker-cross.png"
+#define BMP_MARKER_ELLI7x9_1
"svx/res/marker-elli7x9-1.png"
+#define BMP_MARKER_ELLI7x9_2
"svx/res/marker-elli7x9-2.png"
+#define BMP_MARKER_ELLI7x9_3
"svx/res/marker-elli7x9-3.png"
+#define BMP_MARKER_ELLI7x9_4
"svx/res/marker-elli7x9-4.png"
+#define BMP_MARKER_ELLI7x9_5
"svx/res/marker-elli7x9-5.png"
+#define BMP_MARKER_ELLI7x9_6
"svx/res/marker-elli7x9-6.png"
+#define BMP_MARKER_ELLI9x7_1
"svx/res/marker-elli9x7-1.png"
+#define BMP_MARKER_ELLI9x7_2
"svx/res/marker-elli9x7-2.png"
+#define BMP_MARKER_ELLI9x7_3
"svx/res/marker-elli9x7-3.png"
+#define BMP_MARKER_ELLI9x7_4
"svx/res/marker-elli9x7-4.png"
+#define BMP_MARKER_ELLI9x7_5
"svx/res/marker-elli9x7-5.png"
+#define BMP_MARKER_ELLI9x7_6
"svx/res/marker-elli9x7-6.png"
+#define BMP_MARKER_ELLI9x11_1   
"svx/res/marker-elli9x11-1.png"
+#define BMP_MARKER_ELLI9x11_2   
"svx/res/marker-elli9x11-2.png"
+#define BMP_MARKER_ELLI9x11_3   
"svx/res/marker-elli9x11-3.png"
+#define BMP_MARKER_ELLI9x11_4   
"svx/res/marker-elli9x11-4.png"
+#define BMP_MARKER_ELLI9x11_5   
"svx/res/marker-elli9x11-5.png"
+#define BMP_MARKER_ELLI9x11_6   
"svx/res/marker-elli9x11-6.png"
+#define BMP_MARKER_ELLI11x9_1   
"svx/res/marker-elli11x9-1.png"
+#define BMP_MARKER_ELLI11x9_2   
"svx/res/marker-elli11x9-2.png"
+#define BMP_MARKER_ELLI11x9_3   
"svx/res/marker-elli11x9-3.png"
+#define BMP_MARKER_ELLI11x9_4   
"svx/res/marker-elli11x9-4.png"
+#define BMP_MARKER_ELLI11x9_5   
"svx/res/marker-elli11x9-5.png"
+#define BMP_MARKER_ELLI11x9_6   
"svx/res/marker-elli11x9-6.png"
+#define BMP_MARKER_GLUE_SELECTED   

[Libreoffice-bugs] [Bug 38093] Functionality request for Writer: Add Outliner similar one in Impress as basis for outlining component

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

--- Comment #29 from Cougar Brenneman  ---
Mike Kaganski(In reply to Mike Kaganski from comment #28)
> (In reply to Cougar Brenneman from comment #27)
> 
> So everything you wrote sums up to only this? "LibreOffice cannot do #6 from
> the list; everything else is easily done using Navigator".

No, LibreOffice cannot do everything up to this point. When I can't use MS
Word, I use WPS Office because it has the features I'm describing. I have the
latest LibreOffice on my computer, and it does NOT.

Let's try again. 
1) In Outliner View, Word puts a little button in front of every paragraph or
heading that you can use to drag and drop. This is a key feature which is not
at all available in OO.
2) In Outliner View, all text below any heading can be hidden. This creates a
headings only view.
3) In Outliner View, all headings which are children of a selected heading can
be hidden. This can, for instance, create an "h2 and above view" or an "h3 and
above view."
4) Text paragraphs can be viewed with only the first line showing.
5) In Outliner View, when you drag and drop that little button icon in front of
the paragraph or heading, all of the hidden text and headings go along with the
heading that you're dragging. BY DRAGGING AND DROPPING THAT SINGLE BUTTON, you
can drag 10,000 hidden words from below 10,000 other hidden words, and drop
them in the new location. Then you can collapse those 20,000 words under a
different heading, and drag them invisibly to another new location. Then you
uncollapse all of the sections, hide all but the first lines of the entire
page, and drag paragraphs into new positions before displaying the whole
paragraphs that you've dragged around.

I HATE the fact that when I can't use Word, I have to put the security of my
system in the hands of the Chinese (with WPS Office), when the Chinese have a
history of malicious hacking. 

With both Word and WPS Offices, I can perform this magic.
With OO,  I canNOT perform this magic. This makes OO a VASTLY inferior product.

-- 
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 119020] Icons are corrupted on Windows when scaling UI 150% and higher, with some OpenGL dependency

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

V Stuart Foote  changed:

   What|Removed |Added

Summary|Icons loadFromSVG() are |Icons are corrupted on
   |corrupted on Windows when   |Windows when scaling UI
   |scaling UI 150% and higher  |150% and higher,  with some
   |(comment 10, comment 14)|OpenGL dependency
   |with some OpenGL dependency |

--- Comment #37 from V Stuart Foote  ---
(In reply to Jan-Marek Glogowski from comment #36)
So, not an SVG icon handling issue. 

Does this mean we *never* pick up SVG flavors of icons in the Windows builds
for the HiDPI handling noted comment 10?  And it is only lower res 8-bit color
PNG that are being scaled and corrupted?  

Are the SVG being scaled and pushed to cache as PNG for HiDPI, but then not
reused? If so where do they go?

> There is now a patch in Gerrit. If someone here has a Windows build, you can
> try it. The patch isn't Windows specific and much simpler then my original
> idea. Due to Jenkins infrastructure problems I didn't push it yet.
> 

Will look for it to roll to nightlies once pushed.

-- 
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 120515] Re-pagination starts for every save (making saving quite slow)

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

Miklos Vajna  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |vmik...@collabora.co.uk
   |desktop.org |

--- Comment #6 from Miklos Vajna  ---
I plan to look at this.

-- 
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: sc/Module_sc.mk sc/qa sc/UITest_inputLine.mk

2018-10-29 Thread Libreoffice Gerrit user
 sc/Module_sc.mk|1 
 sc/UITest_inputLine.mk |   20 +++
 sc/qa/uitest/inputLine/tdf54197.py |   38 +
 3 files changed, 59 insertions(+)

New commits:
commit 993948678e7a78c7c91e2c2728a9b7182cb2bc79
Author: Zdeněk Crhonek 
AuthorDate: Mon Oct 29 19:57:43 2018 +0100
Commit: Zdenek Crhonek 
CommitDate: Mon Oct 29 21:20:37 2018 +0100

uitest for bug tdf#54197

Change-Id: Iaa6039f9ebabdd4b17e044a82b4e047506addf79
Reviewed-on: https://gerrit.libreoffice.org/62522
Tested-by: Jenkins
Reviewed-by: Zdenek Crhonek 

diff --git a/sc/Module_sc.mk b/sc/Module_sc.mk
index da8cfd59a6ca..6373fad86cb7 100644
--- a/sc/Module_sc.mk
+++ b/sc/Module_sc.mk
@@ -198,6 +198,7 @@ $(eval $(call gb_Module_add_uicheck_targets,sc,\
UITest_key_f4 \
UITest_textCase \
UITest_signatureLine \
+   UITest_inputLine \
 ))
 endif
 
diff --git a/sc/UITest_inputLine.mk b/sc/UITest_inputLine.mk
new file mode 100644
index ..df6dfc627095
--- /dev/null
+++ b/sc/UITest_inputLine.mk
@@ -0,0 +1,20 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+
+$(eval $(call gb_UITest_UITest,inputLine))
+
+$(eval $(call gb_UITest_add_modules,inputLine,$(SRCDIR)/sc/qa/uitest,\
+   inputLine/ \
+))
+
+$(eval $(call gb_UITest_set_defs,inputLine, \
+TDOC="$(SRCDIR)/sc/qa/uitest/calc_tests/data" \
+))
+
+# vim: set noet sw=4 ts=4:
diff --git a/sc/qa/uitest/inputLine/tdf54197.py 
b/sc/qa/uitest/inputLine/tdf54197.py
new file mode 100644
index ..54f2c5f56861
--- /dev/null
+++ b/sc/qa/uitest/inputLine/tdf54197.py
@@ -0,0 +1,38 @@
+# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+from uitest.framework import UITestCase
+from uitest.uihelper.common import get_state_as_dict
+from uitest.uihelper.common import select_pos
+from uitest.uihelper.calc import enter_text_to_cell
+from libreoffice.calc.document import get_sheet_from_doc
+from libreoffice.calc.conditional_format import 
get_conditional_format_from_sheet
+from uitest.debug import sleep
+from libreoffice.calc.document import get_cell_by_position
+from libreoffice.uno.propertyvalue import mkPropertyValues
+#Bug 54197 - Calc single cell filling (Ctrl+D) does not change data at input 
line
+
+class tdf54197(UITestCase):
+
+def test_tdf54197_CTRL_D_input_line_change(self):
+calc_doc = self.ui_test.create_doc_in_start_center("calc")
+xCalcDoc = self.xUITest.getTopFocusWindow()
+gridwin = xCalcDoc.getChild("grid_window")
+document = self.ui_test.get_component()
+# 1. go to cell A1 enter any text
+enter_text_to_cell(gridwin, "A1", "t")
+# 2. go to cell A2 press Ctrl+D
+gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "A2"}))
+self.xUITest.executeCommand(".uno:FillDown")
+# The same text as above is displayed at cell A2, BUT input line is 
still blank
+self.assertEqual(get_cell_by_position(document, 0, 0, 0).getString(), 
"t")
+self.assertEqual(get_cell_by_position(document, 0, 0, 1).getString(), 
"t")
+xInputWin = xCalcDoc.getChild("sc_input_window")
+self.assertEqual(get_state_as_dict(xInputWin)["Text"], "t")
+
+self.ui_test.close_doc()
+
+# vim: set shiftwidth=4 softtabstop=4 expandtab:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Build fails in UnitTest

2018-10-29 Thread Regis Perdreau
Hi,

I have this error when i try to launch debug version of libreoffice in GDB.


Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
warning: Corrupted shared library list: 0x55850240 != 0x77f97cc0

Some clues to solve this problem ?

Régis Perdreau
07 68 88 26 07

Le mar. 16 oct. 2018 à 19:36, kalriel  a écrit :
>
> Hello.
> I get the following error when building the master
>
> Error: a unit test failed, please do one of:
> make CppunitTest_sc_subsequent_filters_test CPPUNITTRACE="lldb --"   #
> for interactive debugging on OS X
> make CppunitTest_sc_subsequent_filters_test VALGRIND=memcheck#
> for memory checking
>
> You can limit the execution to just one particular test by:
>
> make CppunitTest_sc_subsequent_filters_test CPPUNIT_TEST_NAME="testXYZ"
> ...above mentioned params...
>
> /[...]/LibreOffice_Source/lode/dev/core/solenv/gbuild/CppunitTest.mk:120:
> recipe for target
> '/[...]/LibreOffice_Source/lode/dev/core/workdir/CppunitTest/sc_subsequent_filters_test.test'
> failed
> make[1]: ***
> [/[...]/LibreOffice_Source/lode/dev/core/workdir/CppunitTest/sc_subsequent_filters_test.test]
> Error 1
> Makefile:167: recipe for target 'CppunitTest_sc_subsequent_filters_test'
> failed
> make: *** [CppunitTest_sc_subsequent_filters_test] Error 2
>
> Best regards.
> Kalriel
>
>
>
> --
> Sent from: 
> http://document-foundation-mail-archive.969070.n3.nabble.com/Dev-f1639786.html
> ___
> 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-commits] translations.git: Changes to 'refs/tags/libreoffice-6.1.3.2'

2018-10-29 Thread Libreoffice Gerrit user
Tag 'libreoffice-6.1.3.2' created by Christian Lohmaier 
 at 2018-10-29 19:55 +

Tag libreoffice-6.1.3.2
-BEGIN PGP SIGNATURE-

iQIcBAABAgAGBQJb12XAAAoJEPQ0oe+v7q6jC+gP/1NI25futaRkX2Bdoeuejbnl
e7AV18kOp0K1bu6jOlwcJ6nu2mqZdM6jVjp1nix3zK3rqDfx2+6rENol3hs+JAUk
oagqmMdRDFBuM5JHWAin2/xCrxWlXxXp5PXcjdY7wUoSpxD6R7POfN5lpZGQ78+1
ILpkSTmuDdyM4bs2qhORjS9K2ks4qEv7JOltV3X1CigLcINYBEaFJeYZEbFPpWR7
qI1xEXv/q3+76OdLTdcphj2JR3US4H/NCqOcks3kK5hCYX9LQKJCmksrwWSubu3f
NQnpU+T2Qa1q/M8wOw/7NgTHCCJLBgKOI1vapR6xCl8BaJX08SBZyfmMLh+UP7/d
aUZQQ+/DmFFVqpw3bv9bQXrw1VkxNiQYJH0QOW/EURG62rZpOjWaAF4jIlAi/1rw
5MaN649B88v6V8xGqprWytSlwr/ctR6fJ3IUQpwGzpT6hQBwRbMhO1jnvsUU0B1X
uQ/VzPEt9cY6br9UpMBgMqT8qdQMfM4W8cSmUjmzTGRebFi7ZodnkVq0q5wOCL5z
aWmTB0wedkQKm0Nn2VnEYrbRurVh6x8h2n7QIV2z+IBHsX52HqdVUivVi+m1bkJG
GRPZQ6apiGBshJxPBz559TXSbsQZVXpFdpftodqkv2k6opmG1U1MwZ7DFUIlYpX8
4Gsl+WQfE5EMsEiKQxhf
=+j7F
-END PGP SIGNATURE-

Changes since libreoffice-6-1-branch-point-24:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 119020] Icons loadFromSVG() are corrupted on Windows when scaling UI 150% and higher (comment 10, comment 14) with some OpenGL dependency

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

--- Comment #36 from Jan-Marek Glogowski  ---
There is now a patch in Gerrit. If someone here has a Windows build, you can
try it. The patch isn't Windows specific and much simpler then my original
idea. Due to Jenkins infrastructure problems I didn't push it yet.

https://gerrit.libreoffice.org/#/c/62505/

-- 
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-3' - configure.ac

2018-10-29 Thread Libreoffice Gerrit user
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 1602b56fb1741598f6aefaaeda292594144552bd
Author: Christian Lohmaier 
AuthorDate: Mon Oct 29 20:56:17 2018 +0100
Commit: Christian Lohmaier 
CommitDate: Mon Oct 29 20:56:17 2018 +0100

bump product version to 6.1.3.2.0+

Change-Id: I1dea874f7ac5edacfaa54541ca59f26f68b5364c

diff --git a/configure.ac b/configure.ac
index 67ebe0c96e62..d2542ab31d13 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ dnl in order to create a configure script.
 # several non-alphanumeric characters, those are split off and used only for 
the
 # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no 
idea.
 
-AC_INIT([LibreOffice],[6.1.3.1.0+],[],[],[http://documentfoundation.org/])
+AC_INIT([LibreOffice],[6.1.3.2.0+],[],[],[http://documentfoundation.org/])
 
 AC_PREREQ([2.59])
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-10-29 Thread Libreoffice Gerrit user
Tag 'libreoffice-6.1.3.2' created by Christian Lohmaier 
 at 2018-10-29 19:55 +

Tag libreoffice-6.1.3.2
-BEGIN PGP SIGNATURE-

iQIcBAABAgAGBQJb12W9AAoJEPQ0oe+v7q6jnYoP/1qi03RMVelFvBJixsVe0leE
8juat+aD2cZot//FtjuS5tcmTZOa6xGTReMEvvF39uMo7Pm6FnvI9eeawCoirAUg
NAFeMwxqqWg81+iZFdf2f0VVcLrYgzOr4I/JwwoLd//glWzB+S5FBYLBVVitKjVZ
JfW0KB6jxwKOiGp8rZNXnHR6ljWWJRDnifPRANYPLelCkSwymHKL1o2dSKml690C
Of8wbj4OVY4KwNRnNmkoicd+mzOitRwBZAIDetqeKNYeJW6Nb1og2bPQxNpbRmdy
GTMV0CsJVbGQliwAac7Kx638jGamagWkK63nUPpRbEJqOCOkj52v5xFVqkQo5IwX
XSgZVFPIM6KStqdGRFPFPFgC3j/ePWiKXLT+9HlDr5wuFUGeJ7TZ97dtR2ULdf3A
rTpK2ghNkoOvaFSEXwv3Kz3+B4gAxbqjIEgiNXKr5aUH3/fW69RfzZi7+y/3dtxg
uXiJtP8MpB1L0ZoX3hVGHJFCsK6Q8B5iYwbzDAXfZThxyvO2knCJ8r08afb5mIO/
nvRn7k6dak0LKzyVHn7kykuRvrv90t8aPIIBay2vtmyefViwrflvpUOSXVVfml21
2iydCdMzp6kxdl55K2uWypBQLThbEZiuhFPSR7B9ANzf0FWogQGfsE2P9zWR2734
0HDGm6V0FBOZwaMpz/sO
=8Kms
-END PGP SIGNATURE-

Changes since libreoffice-6-1-branch-point-68:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-10-29 Thread Libreoffice Gerrit user
Tag 'libreoffice-6.1.3.2' created by Christian Lohmaier 
 at 2018-10-29 19:55 +

Tag libreoffice-6.1.3.2
-BEGIN PGP SIGNATURE-

iQIcBAABAgAGBQJb12XDAAoJEPQ0oe+v7q6jptUP/0xqLvNwBr/02CoE1bOLxWDv
nEa/+6ILN2hLeR+60otrtk3S1/Esa9wZl35c90eMeRBpON88CidmUMytrkKd0eWY
6kxDse6RClDjfkok+45V2CbnfeyzZORZITQ2tC4gk6hQuM1o2r0PjT3qyAZtsBOK
tnB4tAG/cIcx8L1iKJElot75/IZlvwAz2YtbkttXXbWr/EDJREH54NBzO0qtL8tp
5vVAIaw1CTDTIXYTFXIq+lpS3goJNxTMUjMZ32IyeN6z76m7NUWk5CieVLRMNgZk
U3hp0yWr+JRZ54/qzKtfOzBi3bGPyg3WoV5aJCaYdp0sHGM9+wEJ1YGufUuwO6XB
VBfqnzGns4N9the1EQARl5Xh4kVwVzXoQsce2bh7cG/2KAlyPza8nHUlwm+xp/Ez
3v8qrT6aKJHRIV7d9H+emMGEQy+Jgr2tHpmiBFabvoCxwkhUnt5O9QHaOidZptO9
KK99meRceft7aiW68MJje9Tv60EPr13SB3iUYesDFNAPGNxba+rWl3cnMZvqOPaP
12Z5tvtL3gy29fTDwg5av/WSC2X5JmpGhcwgi9rJgMNwHuAiRugZjzUbqD9X7GmJ
z6Di5eF3C2QTK9pL7YjJEAqz6Fhu1ZGvu093QV7kA/2ZBN8Or1Vij/Xov5jqkvct
aHbxofZAFGFNqXPxhzDa
=xE0w
-END PGP SIGNATURE-

Changes since libreoffice-6-1-branch-point-1163:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-10-29 Thread Libreoffice Gerrit user
Tag 'libreoffice-6.1.3.2' created by Christian Lohmaier 
 at 2018-10-29 19:55 +

Tag libreoffice-6.1.3.2
-BEGIN PGP SIGNATURE-

iQIcBAABAgAGBQJb12W5AAoJEPQ0oe+v7q6jHcYQAJqUOd+e+u8JeiZTVeiS+A0n
NaUCpvaCl7658U80REfTewM+60W7FK/4WG7L60HppopAQoe4L9o6H6t1V7RoPly+
TxOwlzOZ1saj+7U1JLU4G5KPwtww818bRH4iujh43WlqKzt/4HPd5XTFFR5zoxg3
ooScKRicjVYw+v921vRn2gDso0mNWYJv0XA+sbH9JtHavB8t8hD9AUtCV3fLrpFj
L0kYM8RvU52wZ/yWB4Q95RHis1ifhBQT9jvml57oXJyDudMXitNAWTEFwFIl1jBT
EA9O/9sH3brYuk3buhYL4vt8hkT9fZSSAGPUMWwXXSbC2//PAA03uidSvXbt1pxI
F1MSU4xPNWwmcZJe/Fkq8hAHQnwMh/HZFMJl6PjgzboxHLyWfQDmuczLnRfDSyan
gO4f6bSVCZl1k623BNTf5REuNg+1jdGcbyRfTUZznAKnsysKEMEufYab1Sa9XYjN
Lo4TJikXHiD5xbX+wiIwL/KPaiQwVYujx6a0ys0GTU0ECtCcc38Yehk14j6NrEnO
PUhr+Rg0za14YN/Q4JJx9chmEIWMYoiz8ruyooNx2ZX+SL6Q6QgFXCcmhfnInP8t
tkh016T/6nR+DRs4kGcuULdYalLO32I9RMWRBHWmKiGbeBq2mkXu3auxu/B9XcHw
T+XfCOtr4UdcLIOsxcSM
=6DiB
-END PGP SIGNATURE-

Changes since libreoffice-6-1-branch-point-10:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 101831] [META] Contour editor bugs and enhancements

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

Dieter Praas  changed:

   What|Removed |Added

 Depends on||121022


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=121022
[Bug 121022] Contour editor crashes
-- 
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 121022] Contour editor crashes

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

Dieter Praas  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de
 Blocks||101831


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=101831
[Bug 101831] [META] Contour editor 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-commits] core.git: Branch 'libreoffice-6-1-3' - readlicense_oo/license

2018-10-29 Thread Libreoffice Gerrit user
 readlicense_oo/license/CREDITS.fodt | 2905 ++--
 1 file changed, 1458 insertions(+), 1447 deletions(-)

New commits:
commit 9e5b99a776073aceb9dac7d428c1624bf8429601
Author: Christian Lohmaier 
AuthorDate: Mon Oct 29 20:40:24 2018 +0100
Commit: Christian Lohmaier 
CommitDate: Mon Oct 29 20:48:37 2018 +0100

update credits

Change-Id: I8a383888ae8e2da96c7eef94c40cf3ddb7815d98
(cherry picked from commit 360b557c28c7f19731d566c01627cc104d06638a)
(cherry picked from commit cb5584c8a715df8aa68cecefd0bad8d1839124e8)

diff --git a/readlicense_oo/license/CREDITS.fodt 
b/readlicense_oo/license/CREDITS.fodt
index af19c057ea7e..f88e2f1b7a3b 100644
--- a/readlicense_oo/license/CREDITS.fodt
+++ b/readlicense_oo/license/CREDITS.fodt
@@ -1,24 +1,24 @@
 
 
 http://www.w3.org/1999/xlink; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" 
xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:config="urn:oas
 is:names:tc:opendocument:xmlns:config:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:officeooo="http://openoffice.org/2009/office; 
xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:formx="urn:openoffice:names:
 experimental:ooxml-odf-interop:xmlns:form:1.0" 
xmlns:css3t="http://www.w3.org/TR/css3-text/; office:version="1.2" 
office:mimetype="application/vnd.oasis.opendocument.text">
- Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/6.1.2.1$Linux_X86_64
 
LibreOffice_project/65905a128db06ba48db947242809d14d3f9a93fe2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
+ Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/6.1.2.1$Linux_X86_64
 
LibreOffice_project/65905a128db06ba48db947242809d14d3f9a93fe2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
  
   
-   649
+   533
501
-   50872
-   26846
+   37917
+   18960
true
true

 
  view2
- 3577
- 3434
+ 3531
+ 3313
  501
- 649
- 51372
- 27494
+ 533
+ 38416
+ 19491
  0
  0
  false
@@ -69,7 +69,7 @@
false
false
true
-   8065751
+   8189906
false
false
false
@@ -320,58 +320,58 @@
  
  
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

   
-  
+  

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

@@ -380,19 +380,19 @@

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

@@ -401,26 +401,23 @@

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

   
-  
-   
-  
   

   
@@ -1054,7 +1051,7 @@

   
  Credits
-1364 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2018-10-18 11:20:47.
+1367 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2018-10-29 07:13:20.
 * marks developers whose first contributions 
happened after 2010-09-28.
 Developers 
committing code since 2010-09-28
 
@@ -1081,13 +1078,13 @@
Vladimir 
GlazunovCommits: 25434Joined: 
2000-12-04
   
   
-   Caolán 
McNamaraCommits: 25074Joined: 
2000-10-10
+   Caolán 
McNamaraCommits: 25215Joined: 
2000-10-10
   
   
-   Stephan 
BergmannCommits: 16463Joined: 
2000-10-04
+   Stephan 
BergmannCommits: 

[Libreoffice-commits] core.git: Branch 'libreoffice-6-1' - readlicense_oo/license

2018-10-29 Thread Libreoffice Gerrit user
 readlicense_oo/license/CREDITS.fodt | 2905 ++--
 1 file changed, 1458 insertions(+), 1447 deletions(-)

New commits:
commit cb5584c8a715df8aa68cecefd0bad8d1839124e8
Author: Christian Lohmaier 
AuthorDate: Mon Oct 29 20:40:24 2018 +0100
Commit: Christian Lohmaier 
CommitDate: Mon Oct 29 20:45:28 2018 +0100

update credits

Change-Id: I8a383888ae8e2da96c7eef94c40cf3ddb7815d98
(cherry picked from commit 360b557c28c7f19731d566c01627cc104d06638a)

diff --git a/readlicense_oo/license/CREDITS.fodt 
b/readlicense_oo/license/CREDITS.fodt
index af19c057ea7e..f88e2f1b7a3b 100644
--- a/readlicense_oo/license/CREDITS.fodt
+++ b/readlicense_oo/license/CREDITS.fodt
@@ -1,24 +1,24 @@
 
 
 http://www.w3.org/1999/xlink; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" 
xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:config="urn:oas
 is:names:tc:opendocument:xmlns:config:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:officeooo="http://openoffice.org/2009/office; 
xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:formx="urn:openoffice:names:
 experimental:ooxml-odf-interop:xmlns:form:1.0" 
xmlns:css3t="http://www.w3.org/TR/css3-text/; office:version="1.2" 
office:mimetype="application/vnd.oasis.opendocument.text">
- Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/6.1.2.1$Linux_X86_64
 
LibreOffice_project/65905a128db06ba48db947242809d14d3f9a93fe2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
+ Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/6.1.2.1$Linux_X86_64
 
LibreOffice_project/65905a128db06ba48db947242809d14d3f9a93fe2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
  
   
-   649
+   533
501
-   50872
-   26846
+   37917
+   18960
true
true

 
  view2
- 3577
- 3434
+ 3531
+ 3313
  501
- 649
- 51372
- 27494
+ 533
+ 38416
+ 19491
  0
  0
  false
@@ -69,7 +69,7 @@
false
false
true
-   8065751
+   8189906
false
false
false
@@ -320,58 +320,58 @@
  
  
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

   
-  
+  

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

@@ -380,19 +380,19 @@

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

@@ -401,26 +401,23 @@

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

   
-  
-   
-  
   

   
@@ -1054,7 +1051,7 @@

   
  Credits
-1364 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2018-10-18 11:20:47.
+1367 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2018-10-29 07:13:20.
 * marks developers whose first contributions 
happened after 2010-09-28.
 Developers 
committing code since 2010-09-28
 
@@ -1081,13 +1078,13 @@
Vladimir 
GlazunovCommits: 25434Joined: 
2000-12-04
   
   
-   Caolán 
McNamaraCommits: 25074Joined: 
2000-10-10
+   Caolán 
McNamaraCommits: 25215Joined: 
2000-10-10
   
   
-   Stephan 
BergmannCommits: 16463Joined: 
2000-10-04
+   Stephan 
BergmannCommits: 16483Joined: 
2000-10-04
   
   
-   *Noel GrandinCommits: 

[Libreoffice-bugs] [Bug 35287] feature request: smooth scroll

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

--- Comment #23 from Marcel Partap  ---
Wow 2018 and the *Open Document Foundation* should really sponsor fixing this,
could be paid 100% from marketing budget. Can someone please make that phone
call.

The chunky scrolling gives an incredibly ugly impression when group-editing any
document.
The other office does it way way better.

-- 
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-0-7' - readlicense_oo/license

2018-10-29 Thread Libreoffice Gerrit user
 readlicense_oo/license/CREDITS.fodt | 2905 ++--
 1 file changed, 1458 insertions(+), 1447 deletions(-)

New commits:
commit ee1ddb52aedcf2a01dcebc4817e4687729ede596
Author: Christian Lohmaier 
AuthorDate: Mon Oct 29 20:40:24 2018 +0100
Commit: Christian Lohmaier 
CommitDate: Mon Oct 29 20:42:57 2018 +0100

update credits

Change-Id: I8a383888ae8e2da96c7eef94c40cf3ddb7815d98
(cherry picked from commit 360b557c28c7f19731d566c01627cc104d06638a)
(cherry picked from commit a836d673119f1187e6b8bf70968429b58b105097)

diff --git a/readlicense_oo/license/CREDITS.fodt 
b/readlicense_oo/license/CREDITS.fodt
index af19c057ea7e..f88e2f1b7a3b 100644
--- a/readlicense_oo/license/CREDITS.fodt
+++ b/readlicense_oo/license/CREDITS.fodt
@@ -1,24 +1,24 @@
 
 
 http://www.w3.org/1999/xlink; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" 
xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:config="urn:oas
 is:names:tc:opendocument:xmlns:config:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:officeooo="http://openoffice.org/2009/office; 
xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:formx="urn:openoffice:names:
 experimental:ooxml-odf-interop:xmlns:form:1.0" 
xmlns:css3t="http://www.w3.org/TR/css3-text/; office:version="1.2" 
office:mimetype="application/vnd.oasis.opendocument.text">
- Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/6.1.2.1$Linux_X86_64
 
LibreOffice_project/65905a128db06ba48db947242809d14d3f9a93fe2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
+ Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/6.1.2.1$Linux_X86_64
 
LibreOffice_project/65905a128db06ba48db947242809d14d3f9a93fe2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
  
   
-   649
+   533
501
-   50872
-   26846
+   37917
+   18960
true
true

 
  view2
- 3577
- 3434
+ 3531
+ 3313
  501
- 649
- 51372
- 27494
+ 533
+ 38416
+ 19491
  0
  0
  false
@@ -69,7 +69,7 @@
false
false
true
-   8065751
+   8189906
false
false
false
@@ -320,58 +320,58 @@
  
  
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

   
-  
+  

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

@@ -380,19 +380,19 @@

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

@@ -401,26 +401,23 @@

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

   
-  
-   
-  
   

   
@@ -1054,7 +1051,7 @@

   
  Credits
-1364 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2018-10-18 11:20:47.
+1367 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2018-10-29 07:13:20.
 * marks developers whose first contributions 
happened after 2010-09-28.
 Developers 
committing code since 2010-09-28
 
@@ -1081,13 +1078,13 @@
Vladimir 
GlazunovCommits: 25434Joined: 
2000-12-04
   
   
-   Caolán 
McNamaraCommits: 25074Joined: 
2000-10-10
+   Caolán 
McNamaraCommits: 25215Joined: 
2000-10-10
   
   
-   Stephan 
BergmannCommits: 16463Joined: 
2000-10-04
+   Stephan 
BergmannCommits: 

[Libreoffice-bugs] [Bug 86615] Formula not updated if it contains reference to formula

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

Aron Budea  changed:

   What|Removed |Added

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

-- 
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 121043] Cutting and pasting a value into a cell referenced in formula doesn't update formula

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

Aron Budea  changed:

   What|Removed |Added

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

--- Comment #1 from Aron Budea  ---
There are a couple of other, already fixed bugs starting with the same commit,
eg. bug 86615.

-- 
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-0' - readlicense_oo/license

2018-10-29 Thread Libreoffice Gerrit user
 readlicense_oo/license/CREDITS.fodt | 2905 ++--
 1 file changed, 1458 insertions(+), 1447 deletions(-)

New commits:
commit a836d673119f1187e6b8bf70968429b58b105097
Author: Christian Lohmaier 
AuthorDate: Mon Oct 29 20:40:24 2018 +0100
Commit: Christian Lohmaier 
CommitDate: Mon Oct 29 20:42:03 2018 +0100

update credits

Change-Id: I8a383888ae8e2da96c7eef94c40cf3ddb7815d98
(cherry picked from commit 360b557c28c7f19731d566c01627cc104d06638a)

diff --git a/readlicense_oo/license/CREDITS.fodt 
b/readlicense_oo/license/CREDITS.fodt
index af19c057ea7e..f88e2f1b7a3b 100644
--- a/readlicense_oo/license/CREDITS.fodt
+++ b/readlicense_oo/license/CREDITS.fodt
@@ -1,24 +1,24 @@
 
 
 http://www.w3.org/1999/xlink; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" 
xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:config="urn:oas
 is:names:tc:opendocument:xmlns:config:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:officeooo="http://openoffice.org/2009/office; 
xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:formx="urn:openoffice:names:
 experimental:ooxml-odf-interop:xmlns:form:1.0" 
xmlns:css3t="http://www.w3.org/TR/css3-text/; office:version="1.2" 
office:mimetype="application/vnd.oasis.opendocument.text">
- Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/6.1.2.1$Linux_X86_64
 
LibreOffice_project/65905a128db06ba48db947242809d14d3f9a93fe2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
+ Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/6.1.2.1$Linux_X86_64
 
LibreOffice_project/65905a128db06ba48db947242809d14d3f9a93fe2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
  
   
-   649
+   533
501
-   50872
-   26846
+   37917
+   18960
true
true

 
  view2
- 3577
- 3434
+ 3531
+ 3313
  501
- 649
- 51372
- 27494
+ 533
+ 38416
+ 19491
  0
  0
  false
@@ -69,7 +69,7 @@
false
false
true
-   8065751
+   8189906
false
false
false
@@ -320,58 +320,58 @@
  
  
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

   
-  
+  

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

@@ -380,19 +380,19 @@

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

@@ -401,26 +401,23 @@

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

   
-  
-   
-  
   

   
@@ -1054,7 +1051,7 @@

   
  Credits
-1364 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2018-10-18 11:20:47.
+1367 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2018-10-29 07:13:20.
 * marks developers whose first contributions 
happened after 2010-09-28.
 Developers 
committing code since 2010-09-28
 
@@ -1081,13 +1078,13 @@
Vladimir 
GlazunovCommits: 25434Joined: 
2000-12-04
   
   
-   Caolán 
McNamaraCommits: 25074Joined: 
2000-10-10
+   Caolán 
McNamaraCommits: 25215Joined: 
2000-10-10
   
   
-   Stephan 
BergmannCommits: 16463Joined: 
2000-10-04
+   Stephan 
BergmannCommits: 16483Joined: 
2000-10-04
   
   
-   *Noel GrandinCommits: 

[Libreoffice-commits] core.git: readlicense_oo/license

2018-10-29 Thread Libreoffice Gerrit user
 readlicense_oo/license/CREDITS.fodt | 2905 ++--
 1 file changed, 1458 insertions(+), 1447 deletions(-)

New commits:
commit 360b557c28c7f19731d566c01627cc104d06638a
Author: Christian Lohmaier 
AuthorDate: Mon Oct 29 20:40:24 2018 +0100
Commit: Christian Lohmaier 
CommitDate: Mon Oct 29 20:40:24 2018 +0100

update credits

Change-Id: I8a383888ae8e2da96c7eef94c40cf3ddb7815d98

diff --git a/readlicense_oo/license/CREDITS.fodt 
b/readlicense_oo/license/CREDITS.fodt
index af19c057ea7e..f88e2f1b7a3b 100644
--- a/readlicense_oo/license/CREDITS.fodt
+++ b/readlicense_oo/license/CREDITS.fodt
@@ -1,24 +1,24 @@
 
 
 http://www.w3.org/1999/xlink; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" 
xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:config="urn:oas
 is:names:tc:opendocument:xmlns:config:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:officeooo="http://openoffice.org/2009/office; 
xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:formx="urn:openoffice:names:
 experimental:ooxml-odf-interop:xmlns:form:1.0" 
xmlns:css3t="http://www.w3.org/TR/css3-text/; office:version="1.2" 
office:mimetype="application/vnd.oasis.opendocument.text">
- Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/6.1.2.1$Linux_X86_64
 
LibreOffice_project/65905a128db06ba48db947242809d14d3f9a93fe2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
+ Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/6.1.2.1$Linux_X86_64
 
LibreOffice_project/65905a128db06ba48db947242809d14d3f9a93fe2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
  
   
-   649
+   533
501
-   50872
-   26846
+   37917
+   18960
true
true

 
  view2
- 3577
- 3434
+ 3531
+ 3313
  501
- 649
- 51372
- 27494
+ 533
+ 38416
+ 19491
  0
  0
  false
@@ -69,7 +69,7 @@
false
false
true
-   8065751
+   8189906
false
false
false
@@ -320,58 +320,58 @@
  
  
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

   
-  
+  

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

@@ -380,19 +380,19 @@

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

@@ -401,26 +401,23 @@

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

   
-  
-   
-  
   

   
@@ -1054,7 +1051,7 @@

   
  Credits
-1364 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2018-10-18 11:20:47.
+1367 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2018-10-29 07:13:20.
 * marks developers whose first contributions 
happened after 2010-09-28.
 Developers 
committing code since 2010-09-28
 
@@ -1081,13 +1078,13 @@
Vladimir 
GlazunovCommits: 25434Joined: 
2000-12-04
   
   
-   Caolán 
McNamaraCommits: 25074Joined: 
2000-10-10
+   Caolán 
McNamaraCommits: 25215Joined: 
2000-10-10
   
   
-   Stephan 
BergmannCommits: 16463Joined: 
2000-10-04
+   Stephan 
BergmannCommits: 16483Joined: 
2000-10-04
   
   
-   *Noel GrandinCommits: 
10457Joined: 2011-12-12
+   *Noel GrandinCommits: 
10506Joined: 2011-12-12
 

[Libreoffice-bugs] [Bug 121002] Cells not recalculating after moving

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

Peter Beurle  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #5 from Peter Beurle  ---
I think you are missing the point. I shouldn't have to manipulate a file on
open to get it to display correct values, its misleading and incorrect
behavior.

-- 
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 121044] Form-Control: Button lost icon

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

--- Comment #1 from BGWitt <1...@bg-topnet.de> ---
Created attachment 146151
  --> https://bugs.documentfoundation.org/attachment.cgi?id=146151=edit
Corresponding PNG-file

-- 
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 120321] Start Center: Documents Preview are cropped on mac

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

Telesto  changed:

   What|Removed |Added

 CC||g...@mm.st

--- Comment #4 from Telesto  ---
*** Bug 121037 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 121044] New: Form-Control: Button lost icon

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

Bug ID: 121044
   Summary: Form-Control: Button lost icon
   Product: LibreOffice
   Version: 6.1.1.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: 1...@bg-topnet.de

Created attachment 146150
  --> https://bugs.documentfoundation.org/attachment.cgi?id=146150=edit
ODS-File

I use button in a calc-sheet (form control) with a linked PNG-file. In LO
6.0.1.1 is all correct. If I start the sheet with 6.1.1.2, then the button is
without the PNG-file. The properties for the picture at the button are lost.

Sorry for my bad english.

-- 
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 102593] [META] Paste bugs and enhancements

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

Aron Budea  changed:

   What|Removed |Added

 Depends on||121043


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=121043
[Bug 121043] Cutting and pasting a value into a cell referenced in formula
doesn't update formula
-- 
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 121043] New: Cutting and pasting a value into a cell referenced in formula doesn't update formula

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

Bug ID: 121043
   Summary: Cutting and pasting a value into a cell referenced in
formula doesn't update formula
   Product: LibreOffice
   Version: 4.4.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: bibisected, bisected, regression
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ba...@caesar.elte.hu
Blocks: 102593

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

- Open attached spreadsheet.
- Cut A1.
- Paste into A2 (overwrite existing data).

=> F2, which is the sum of A2:D2, isn't updated accordingly (should become 22
instead of 26).

Observed using LO 6.2.0.0.alpha1+ (313392119522c21a6ecd14403d6f92c948149df7) &
4.4.0.3 / Ubuntu 18.04.
No issue in LO 4.3.0.4.
=> regression

Bibisected to the following commit using repo bibisect-44max.

https://cgit.freedesktop.org/libreoffice/core/commit/?id=5ef856e975d7c0396984d588a43fd1a7c7085c55
author  Kohei Yoshida  2014-11-18
21:03:05 -0500
committer   Kohei Yoshida  2014-11-18
21:03:50 -0500

Use group area listeners during ODS import.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102593
[Bug 102593] [META] Paste 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 121037] Thumbnail of document in startcenter is cut or missing

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

Telesto  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #2 from Telesto  ---
Thanks for testing. A known issue

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

-- 
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 121013] External tool with dialog for updating input fields opens together with the internal one

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

Adolfo Jayme  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|UNCONFIRMED |RESOLVED

-- 
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 121042] Missing icon of update notification button

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

--- Comment #1 from rait...@hotmail.com ---
Created attachment 146148
  --> https://bugs.documentfoundation.org/attachment.cgi?id=146148=edit
Represents visually that missing icon

-- 
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 119963] Implement Curtains transition that was introduced in PowerPoint 2013

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

Xisco Faulí  changed:

   What|Removed |Added

   Hardware|x86 (IA32)  |All
 Blocks||103704
Version|6.1.2.1 release |Inherited From OOo


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103704
[Bug 103704] [META] Slide transition 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 103704] [META] Slide transition bugs and enhancements

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

Xisco Faulí  changed:

   What|Removed |Added

 Depends on||119963


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=119963
[Bug 119963] Implement Curtains transition that was introduced in PowerPoint
2013
-- 
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 121042] New: Missing icon of update notification button

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

Bug ID: 121042
   Summary: Missing icon of update notification button
   Product: LibreOffice
   Version: 6.0.5.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: trivial
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rait...@hotmail.com

Description:
When an update comes out and program found it there is a notification in the
top right corner of window but arrow of that is directed to the square box
which is a button that opens up an update window but, as mentioned before,
there is no icon in that button but I think that there should be. Occurs in
every of LibreOffice component, eg. Writer, Calc, Impress, etc. 

Steps to Reproduce:
1. Open any LibreOffice component, eg. Writer
2. Wait a moment for update notification and drag mouse on that button without
icon
3. or select from menu Help->Check for Updates, close that window and drag
mouse to the top right corner to see iconless button
4. Of course appears only on non-up-to-date version

Actual Results:
There is no icon

Expected Results:
There should be icon


Reproducible: Always


User Profile Reset: No


OpenGL enabled: Yes

Additional Info:
Wersja: 6.0.5.2
Build ID: 54c8cbb85f300ac59db32fe8a675ff7683cd5a16
CPU threads: 4; OS: Windows 10.0; UI render: GL; 
Ustawienia regionalne: pl-PL (pl_PL); Calc: CL

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


[Libreoffice-bugs] [Bug 119773] Table Contextmenu in Writer, Calc, Draw and Impress

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

--- Comment #7 from andreas_k  ---
(In reply to Thomas Lendo from comment #6)
> Table context menu in Draw:
> "Edit Style..." has no effect.
> 
> Table context menu in Writer:
> "Table" sub-menu and "Table properties..." should be together as they change
> some of the same settings.

Thanks for your feedback

The "Problem" is that the property item is ALWAYS the last item in the
subgroups.

"Table" sub-menu can be moved to Table properties to bottom. What do you think?

-- 
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 118573] Process Soffice.bin does not stop at Windows logoff when Quickstarter is used

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

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org
   Keywords||regression

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


[Libreoffice-ux-advise] [Bug 119773] Table Contextmenu in Writer, Calc, Draw and Impress

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

--- Comment #7 from andreas_k  ---
(In reply to Thomas Lendo from comment #6)
> Table context menu in Draw:
> "Edit Style..." has no effect.
> 
> Table context menu in Writer:
> "Table" sub-menu and "Table properties..." should be together as they change
> some of the same settings.

Thanks for your feedback

The "Problem" is that the property item is ALWAYS the last item in the
subgroups.

"Table" sub-menu can be moved to Table properties to bottom. What do you think?

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