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

2016-03-08 Thread Rohan Kumar
 xmlscript/source/xml_helper/xml_impctx.cxx  |   18 +++---
 xmlscript/source/xmldlg_imexp/xmldlg_import.cxx |8 +---
 xmlscript/source/xmllib_imexp/xmllib_import.cxx |7 +--
 xmlscript/source/xmlmod_imexp/xmlmod_import.cxx |7 +--
 4 files changed, 6 insertions(+), 34 deletions(-)

New commits:
commit 0a8c9fde3ba59a278c9ee4d18f099cfeec71fbef
Author: Rohan Kumar 
Date:   Wed Mar 9 11:32:40 2016 +0530

tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals

I removed OSL_DEBUG_LEVEL > 1 conditionals and left SAL_INFO()s
statements alone. I also removed OUStringToOString(..) calls that were
used by SAL_INFO(..)

Change-Id: I01cce00265531d7f0ad0a6f564fef6262d3d1205
Reviewed-on: https://gerrit.libreoffice.org/23036
Tested-by: Jenkins 
Reviewed-by: Stephan Bergmann 

diff --git a/xmlscript/source/xml_helper/xml_impctx.cxx 
b/xmlscript/source/xml_helper/xml_impctx.cxx
index 02ae45c..493c333 100644
--- a/xmlscript/source/xml_helper/xml_impctx.cxx
+++ b/xmlscript/source/xml_helper/xml_impctx.cxx
@@ -497,11 +497,7 @@ void DocumentHandlerImpl::startElement(
 if (m_nSkipElements > 0)
 {
 ++m_nSkipElements; // wait for another end tag
-#if OSL_DEBUG_LEVEL > 1
-OString aQName(
-OUStringToOString( rQElementName, RTL_TEXTENCODING_ASCII_US ) );
-SAL_INFO("xmlscript.xmlhelper", "### no context given on 
createChildElement() => ignoring element \"" << aQName.getStr() << "\" ...");
-#endif
+SAL_INFO("xmlscript.xmlhelper", " no context given on 
createChildElement() => ignoring element \"" << rQElementName << "\" ...");
 return;
 }
 
@@ -608,11 +604,7 @@ void DocumentHandlerImpl::startElement(
 else
 {
 ++m_nSkipElements;
-#if OSL_DEBUG_LEVEL > 1
-OString aQName(
-OUStringToOString( rQElementName, RTL_TEXTENCODING_ASCII_US ) );
-SAL_INFO("xmlscript.xmlhelper", "### no context given on 
createChildElement() => ignoring element \"" << aQName.getStr() << "\" ...");
-#endif
+SAL_INFO("xmlscript.xmlhelper", " no context given on 
createChildElement() => ignoring element \"" << rQElementName << "\" ...");
 }
 }
 }
@@ -627,11 +619,7 @@ void DocumentHandlerImpl::endElement(
 if (m_nSkipElements)
 {
 --m_nSkipElements;
-#if OSL_DEBUG_LEVEL > 1
-OString aQName(
-OUStringToOString( rQElementName, RTL_TEXTENCODING_ASCII_US ) );
-SAL_INFO("xmlscript.xmlhelper", "### received endElement() for \"" << 
aQName.getStr() << "\".");
-#endif
+SAL_INFO("xmlscript.xmlhelper", "### received endElement() for \"" << 
rQElementName << "\".");
 static_cast(rQElementName);
 return;
 }
diff --git a/xmlscript/source/xmldlg_imexp/xmldlg_import.cxx 
b/xmlscript/source/xmldlg_imexp/xmldlg_import.cxx
index 89069cb..c82d306 100644
--- a/xmlscript/source/xmldlg_imexp/xmldlg_import.cxx
+++ b/xmlscript/source/xmldlg_imexp/xmldlg_import.cxx
@@ -1702,11 +1702,7 @@ ElementBase::~ElementBase()
 _pParent->release();
 }
 
-#if OSL_DEBUG_LEVEL > 1
-OString aStr( OUStringToOString(
- _aLocalName, RTL_TEXTENCODING_ASCII_US ) );
-SAL_INFO("xmlscript.xmldlg", "ElementBase::~ElementBase(): " << 
aStr.getStr() );
-#endif
+SAL_INFO("xmlscript.xmldlg", "ElementBase::~ElementBase(): " << 
_aLocalName );
 }
 
 // XRoot
@@ -1761,9 +1757,7 @@ Reference< xml::input::XElement > 
DialogImport::startRootElement(
 
 DialogImport::~DialogImport()
 {
-#if OSL_DEBUG_LEVEL > 1
 SAL_INFO("xmlscript.xmldlg", "DialogImport::~DialogImport()." );
-#endif
 }
 
 Reference< util::XNumberFormatsSupplier > const & 
DialogImport::getNumberFormatsSupplier()
diff --git a/xmlscript/source/xmllib_imexp/xmllib_import.cxx 
b/xmlscript/source/xmllib_imexp/xmllib_import.cxx
index 0b0e6b1..8919192 100644
--- a/xmlscript/source/xmllib_imexp/xmllib_import.cxx
+++ b/xmlscript/source/xmllib_imexp/xmllib_import.cxx
@@ -110,10 +110,7 @@ LibElementBase::~LibElementBase()
 _pParent->release();
 }
 
-#if OSL_DEBUG_LEVEL > 1
-OString aStr( OUStringToOString( _aLocalName, RTL_TEXTENCODING_ASCII_US ) 
);
-SAL_INFO("xmlscript.xmllib", "LibElementBase::~LibElementBase(): " << 
aStr.getStr() );
-#endif
+SAL_INFO("xmlscript.xmllib", "LibElementBase::~LibElementBase(): " << 
_aLocalName );
 }
 
 // XRoot
@@ -176,9 +173,7 @@ Reference< xml::input::XElement > 
LibraryImport::startRootElement(
 
 LibraryImport::~LibraryImport()
 {
-#if OSL_DEBUG_LEVEL > 1
 SAL_INFO("xmlscript.xmllib", "LibraryImport::~LibraryImport()." );
-#endif
 }
 
 // libraries
diff --git a/xmlscript/source/xmlmod_imexp/xmlmod_import.cxx 
b/xmlscript/source/xmlmod_imexp/xmlmod_import.cxx
index 23bd93b..965f1bb 100644
--- a/xmlscript/source/xmlmod_imexp/xmlmod_import.cxx
+++ b/xmlscript/source/xmlmod_imexp/xmlmod_import.cxx
@@ -110,10 +110,7 @@ 

[Libreoffice-commits] core.git: chart2/source dbaccess/source sd/source sfx2/source slideshow/source svx/source vcl/source xmloff/source

2016-03-08 Thread David Ostrovsky
 chart2/source/inc/CommonConverters.hxx   |1 +
 chart2/source/tools/DataSourceHelper.cxx |2 ++
 dbaccess/source/filter/xml/xmlExport.cxx |1 +
 sd/source/ui/sidebar/MasterPageObserver.cxx  |1 +
 sfx2/source/view/classificationhelper.cxx|1 +
 slideshow/source/engine/shapes/drawshape.cxx |1 +
 svx/source/form/formcontroller.cxx   |1 +
 vcl/source/gdi/textlayout.cxx|1 +
 xmloff/source/chart/SchXMLTableContext.cxx   |1 +
 xmloff/source/text/txtparae.cxx  |1 +
 10 files changed, 11 insertions(+)

New commits:
commit adfa77254927dcb3f2a87eb0d23c71ad7282948b
Author: David Ostrovsky 
Date:   Wed Mar 9 00:01:36 2016 +0100

Add missing includes

These include were needed to compile on Windows, MSVC 14.0 with
clang-cl.

Change-Id: I4ca5cec8314920e90fcca6fa69ec4df87d680f29
Reviewed-on: https://gerrit.libreoffice.org/23044
Tested-by: Jenkins 
Reviewed-by: Stephan Bergmann 

diff --git a/chart2/source/inc/CommonConverters.hxx 
b/chart2/source/inc/CommonConverters.hxx
index 46288be..af72ba1 100644
--- a/chart2/source/inc/CommonConverters.hxx
+++ b/chart2/source/inc/CommonConverters.hxx
@@ -38,6 +38,7 @@
 
 #include 
 #include 
+#include 
 
 namespace chart
 {
diff --git a/chart2/source/tools/DataSourceHelper.cxx 
b/chart2/source/tools/DataSourceHelper.cxx
index 6e37732..3d90fa9 100644
--- a/chart2/source/tools/DataSourceHelper.cxx
+++ b/chart2/source/tools/DataSourceHelper.cxx
@@ -37,6 +37,8 @@
 #include 
 #include 
 
+#include 
+
 namespace chart
 {
 using namespace ::com::sun::star;
diff --git a/dbaccess/source/filter/xml/xmlExport.cxx 
b/dbaccess/source/filter/xml/xmlExport.cxx
index 14bf274..2938173 100644
--- a/dbaccess/source/filter/xml/xmlExport.cxx
+++ b/dbaccess/source/filter/xml/xmlExport.cxx
@@ -54,6 +54,7 @@
 
 #include 
 #include 
+#include 
 
 namespace dbaxml
 {
diff --git a/sd/source/ui/sidebar/MasterPageObserver.cxx 
b/sd/source/ui/sidebar/MasterPageObserver.cxx
index 78b6dbc..cc32177 100644
--- a/sd/source/ui/sidebar/MasterPageObserver.cxx
+++ b/sd/source/ui/sidebar/MasterPageObserver.cxx
@@ -20,6 +20,7 @@
 #include "MasterPageObserver.hxx"
 
 #include 
+#include 
 #include "drawdoc.hxx"
 #include "sdpage.hxx"
 #include 
diff --git a/sfx2/source/view/classificationhelper.cxx 
b/sfx2/source/view/classificationhelper.cxx
index c3161b6..ab913b5 100644
--- a/sfx2/source/view/classificationhelper.cxx
+++ b/sfx2/source/view/classificationhelper.cxx
@@ -11,6 +11,7 @@
 
 #include 
 #include 
+#include 
 
 #include 
 #include 
diff --git a/slideshow/source/engine/shapes/drawshape.cxx 
b/slideshow/source/engine/shapes/drawshape.cxx
index 1d58d8d..667a176 100644
--- a/slideshow/source/engine/shapes/drawshape.cxx
+++ b/slideshow/source/engine/shapes/drawshape.cxx
@@ -49,6 +49,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 
diff --git a/svx/source/form/formcontroller.cxx 
b/svx/source/form/formcontroller.cxx
index 238c265..d0c93d3 100644
--- a/svx/source/form/formcontroller.cxx
+++ b/svx/source/form/formcontroller.cxx
@@ -88,6 +88,7 @@
 #include 
 
 #include 
+#include 
 
 #include 
 
diff --git a/vcl/source/gdi/textlayout.cxx b/vcl/source/gdi/textlayout.cxx
index 0b7ac69..1e01659 100644
--- a/vcl/source/gdi/textlayout.cxx
+++ b/vcl/source/gdi/textlayout.cxx
@@ -33,6 +33,7 @@
 #endif
 
 #include 
+#include 
 
 namespace vcl
 {
diff --git a/xmloff/source/chart/SchXMLTableContext.cxx 
b/xmloff/source/chart/SchXMLTableContext.cxx
index d70b8f6..5bef107 100644
--- a/xmloff/source/chart/SchXMLTableContext.cxx
+++ b/xmloff/source/chart/SchXMLTableContext.cxx
@@ -49,6 +49,7 @@
 
 #include 
 #include 
+#include 
 
 using namespace com::sun::star;
 using namespace ::xmloff::token;
diff --git a/xmloff/source/text/txtparae.cxx b/xmloff/source/text/txtparae.cxx
index b2c4320..3cadc6a 100644
--- a/xmloff/source/text/txtparae.cxx
+++ b/xmloff/source/text/txtparae.cxx
@@ -109,6 +109,7 @@
 #include 
 #include 
 #include 
+#include 
 
 using namespace ::std;
 using namespace ::com::sun::star;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 65746] FILESAVE: Excel 2003 XML formulas are not preserved

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65746

Buovjaga  changed:

   What|Removed |Added

 CC||w...@blue-andi.de

--- Comment #5 from Buovjaga  ---
*** Bug 98223 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 98223] FILEOPEN: Excel 2003 XML: Formulas are imported wrong

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98223

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||todven...@suomi24.fi
 Resolution|--- |DUPLICATE

--- Comment #1 from Buovjaga  ---


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

-- 
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: solenv/gbuild

2016-03-08 Thread David Ostrovsky
 solenv/gbuild/platform/com_MSC_defs.mk |   12 ++--
 1 file changed, 10 insertions(+), 2 deletions(-)

New commits:
commit 1baf5c3c66700b8072436ae0fdb210a442cc7e68
Author: David Ostrovsky 
Date:   Tue Mar 8 19:54:42 2016 +

Fix unrecognized -Wv:18 option for clang-cl on MSVC 14.0

Change-Id: I4ac94475b663c1ec1f5148b766a81a31adb1d49e
Reviewed-on: https://gerrit.libreoffice.org/23038
Tested-by: Jenkins 
Reviewed-by: Stephan Bergmann 

diff --git a/solenv/gbuild/platform/com_MSC_defs.mk 
b/solenv/gbuild/platform/com_MSC_defs.mk
index 93994e9..16abf4c 100644
--- a/solenv/gbuild/platform/com_MSC_defs.mk
+++ b/solenv/gbuild/platform/com_MSC_defs.mk
@@ -164,7 +164,6 @@ gb_CFLAGS := \
-wd4706 \
-wd4800 \
-Zc:wchar_t- \
-   $(if $(filter-out 120,$(VCVER)), -Wv:18 -wd4267) \
 
 ifeq ($(COM_IS_CLANG),TRUE)
 gb_CFLAGS += \
@@ -175,6 +174,11 @@ gb_CFLAGS += \
-Wundef \
-Wunused-macros \
 
+else
+
+gb_CFLAGS += \
+   $(if $(filter-out 120,$(VCVER)), -Wv:18 -wd4267) \
+
 endif
 
 gb_CXXFLAGS := \
@@ -207,7 +211,6 @@ gb_CXXFLAGS := \
-wd4800 \
-wd4913 \
-Zc:wchar_t- \
-   $(if $(filter-out 120,$(VCVER)), -Wv:18 -wd4267) \
 
 ifeq ($(CPUNAME),X86_64)
 
@@ -235,6 +238,11 @@ gb_CXXFLAGS += \
-Wundef \
-Wunused-macros \
 
+else
+
+gb_CXXFLAGS += \
+   $(if $(filter-out 120,$(VCVER)), -Wv:18 -wd4267) \
+
 endif
 
 # rc.exe does not support -nologo in 6.1.6723.1 that is in the Windows SDK 6.0A
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 98176] active cell border color stays black

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98176

Buovjaga  changed:

   What|Removed |Added

   Keywords||needsDevEval
 Status|UNCONFIRMED |NEW
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1

--- Comment #1 from Buovjaga  ---
Sounds fair -> NEW

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


[Libreoffice-bugs] [Bug 98540] New: Info.plist seems to be broken in OS X

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98540

Bug ID: 98540
   Summary: Info.plist seems to be broken in OS X
   Product: LibreOffice
   Version: 5.0.5.2 release
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bb...@yopmail.com

(At least) the odt file icon does not show (blank file icon in the finder and
in the libreoffice window top frame) in 5.1.0 and 5.1.1.
I tried to replace with info.plist provided in those versions with the one from
5.0.5 and things went back to normal.

-- 
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 98539] DIALOG: Improvements to the Find & Replace dialog

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98539

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC|ypha...@gmail.com   |c...@nouenoff.nl,
   ||f...@libreoffice.org,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||philip...@hotmail.com,
   ||vstuart.fo...@utsa.edu
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=98
   ||417
Summary|Modify UI for Find/Replace  |DIALOG: Improvements to the
   |Dialog  |Find & Replace dialog
 Ever confirmed|0   |1

--- Comment #2 from Yousuf (Jay) Philips  ---
Thanks for the work Akshay. It looks great.

Does anyone from UX have any additional suggestions.

-- 
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 98539] DIALOG: Improvements to the Find & Replace dialog

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98539

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC|ypha...@gmail.com   |c...@nouenoff.nl,
   ||f...@libreoffice.org,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||philip...@hotmail.com,
   ||vstuart.fo...@utsa.edu
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=98
   ||417
Summary|Modify UI for Find/Replace  |DIALOG: Improvements to the
   |Dialog  |Find & Replace dialog
 Ever confirmed|0   |1

--- Comment #2 from Yousuf (Jay) Philips  ---
Thanks for the work Akshay. It looks great.

Does anyone from UX have any additional suggestions.

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


[Libreoffice-bugs] [Bug 98539] Modify UI for Find/Replace Dialog

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98539

--- Comment #1 from Akshay Deep  ---
Created attachment 123418
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123418=edit
Find-replace dialog compact UI

-- 
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 98539] New: Modify UI for Find/Replace Dialog

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98539

Bug ID: 98539
   Summary: Modify UI for Find/Replace Dialog
   Product: LibreOffice
   Version: 5.2.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: akshaydeepi...@gmail.com
CC: ypha...@gmail.com

Created attachment 123417
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123417=edit
expanded UI for find/replace

Current Find/Replace dialog consumes screen space and eclipses the document.
This problem can be solved by reducing the dimensions of Find/replace dialog.

UI suggested by Yousuf Philips is attached to this enhancement report.

Labels and their respective combobox box are horizontally aligned to reduce
height of the dialog. Buttons have been moved to a separate dock.

-- 
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 98516] Freeze function doesn't work

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98516

raal  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |NOTABUG

--- Comment #4 from raal  ---
Info from reporter:
Raal,
Sorry for the inconvenience but I was staying at the first cell, rather than
the second one. It worked.
Thank you very much for your quick and appropriate reaction. You have a great
customer support service. 
Keep going in the same way guys, cheers!


Closing the 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 97980] SVG: Graph data series filled colors being cropped

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97980

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #9 from Yousuf (Jay) Philips  ---
Version: 5.2.0.0.alpha0+
Build ID: ed51d4293dd919a03edca11ec48c607bbfa31076
CPU Threads: 2; OS Version: Linux 4.2; UI Render: default; 
TinderBox: Linux-rpm_deb-x86@71-TDF, Branch:master, Time: 2016-03-07_00:33:34
Locale: en-US (en_US.UTF-8)

-- 
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 92218] UNO command for Single Toolbar Mode

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92218

vasya  changed:

   What|Removed |Added

 CC||vasya.shipuch...@yandex.ru

--- Comment #4 from vasya  ---
Hi, Yousuf. this work will be continued? because, are working on analogue
ribbon
https://smehrbrodt.wordpress.com/2015/11/24/improving-the-toolbars-in-libreoffice/

-- 
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 98514] [pre-install.sh]Installation Script terminates abnormally

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98514

jan iversen  changed:

   What|Removed |Added

   Keywords|easyHack|
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WONTFIX

--- Comment #3 from jan iversen  ---
(In reply to krishna keshav from comment #2)
> (In reply to jan iversen from comment #1)
> > The script is not part of our repo, but provided for convenience.
> > 
> > I myself use ubuntu 14.04, and did the much simpler variant, use apt-get.
> 
> Totally with you.But it is a part of documentation which every beginner has
> to go through.Hence I thought it needed a fix.

But since the script is not part of our repo, it is not something we can fix,
the owner of the script has to fix it.

The documents are changed, today every newcomer is greeted and asked to have a
look at:
https://wiki.documentfoundation.org/Development/GetInvolved

-- 
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 42346] FILESAVE: Cross-references to certain numbered items (object, graphic, table) turn to plain text on export to .doc or .docx (works OK for headings and bookmarks)

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42346

--- Comment #63 from andis.lazd...@gmail.com ---
(In reply to Joel Madero from comment #61)
> Looking at the history - there's zero reason why this should be critical.
> Changing back to Normal
> 
> Normal: Can prevent high quality work

Can you look on this issue from a user point of view? To maintain compatibility
with Microsoft office we need to have copies of Microsoft office on every
computer and we have to spend time to replace broken references in Word. There
might be about a hundred of cross-references in average document and
unfortunately there is no efficient workaround. Respectively, for our team this
is the most critical problem with Writer.

-- 
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 98375] Separate Accelerators.xcu file for Mac

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98375

Yousuf (Jay) Philips  changed:

   What|Removed |Added

   Keywords||needsDevEval, topicUI
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Yousuf (Jay) Philips  ---
During the build process, i noticed that we do create separate
Accelerators-unxwnt.xcu and Accelerators-macosx.xcu files, so instead of
generating these files from the single Accelerators.xcu, we would have them as
separate files.

-- 
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: Options for a normal development build

2016-03-08 Thread Chen Huang
Thanks Chris. I am on a 64-bit Ubuntu 14.04.
Which modules are affected by turning off Java?

A little bit off original question, but do we have documentation around the
supported/required versions of third party libraries and tools (for
example, GCC, gtk, etc..)?
Specifically for gtk, I had to update it to 3.12 for the code to compile.
And even for 3.12 I saw a warning saying we need a more recent version...
It would be helpful if our wiki mentions this or mentions how to document
things like this


Chen

On Tue, Mar 8, 2016 at 10:14 PM, Chris Sherlock 
wrote:

> Oh, sorry - actually not completely true. I also add --enable-dbg-util in
> autogen.input
>
> Chris
>
> > On 9 Mar 2016, at 4:28 PM, Chen Huang  wrote:
> >
> > Hi,
> >
> > I am new to LibreOffice and trying to build it following our wiki guide.
> >
> > Seems there are a lot of compile options can be turned on and off and I
> am wondering:
> > - Is the default make option reasonable enough for me to stick to it?
> > - Does anyone have any suggestion on which flags to be turned on/off for
> a normal development build?
> > - Does our developer guide mention this anywhere?
> >
> > Thanks,
> > Chen
> >
> >
> > ___
> > 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 42346] FILESAVE: Cross-references to certain numbered items (object, graphic, table) turn to plain text on export to .doc or .docx (works OK for headings and bookmarks)

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42346

--- Comment #62 from andis.lazd...@gmail.com ---
(In reply to Joel Madero from comment #60)

Our company is sending annual private donations to libreoffice, which is equal
to buying of new Microsoft office licences every year. To my understanding it
should be enough, at least to receive different attitude. We would be happy for
option to address donations to solve specific problems. We are users (for more
than 10 years of star / open / libreoffice) and we are not dealing with
development of the program. We are very happy with functionality and simplicity
of the Writer software, but we are living in a world where we should exchange
documents with organizations dealing only with Microsoft office and we have to
compete with others using Microsoft office and not having our problems of
compatibility. 

> 
> As always patches welcomeoptions never change:
> 1) Fix it yourself;
> 2) Find someone to fix it;
> 3) Pay for a fix;
> 4) Wait for a *volunteer* to *choose* to fix it

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


[Libreoffice-bugs] [Bug 75280] Convert inappropriate use of sal_uIntPtr to better integer types

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75280

David Tardon  changed:

   What|Removed |Added

Summary|[Easyhack] Convert  |Convert inappropriate use
   |inappropriate use of|of sal_uIntPtr to better
   |sal_uIntPtr to better   |integer types
   |integer types   |

-- 
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 75280] [Easyhack] Convert inappropriate use of sal_uIntPtr to better integer types

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75280

David Tardon  changed:

   What|Removed |Added

 Whiteboard|ToBeReviewed target:5.2.0   |target:5.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


Re: Options for a normal development build

2016-03-08 Thread Chris Sherlock
Oh, sorry - actually not completely true. I also add --enable-dbg-util in 
autogen.input

Chris

> On 9 Mar 2016, at 4:28 PM, Chen Huang  wrote:
> 
> Hi,
> 
> I am new to LibreOffice and trying to build it following our wiki guide.
> 
> Seems there are a lot of compile options can be turned on and off and I am 
> wondering:
> - Is the default make option reasonable enough for me to stick to it?
> - Does anyone have any suggestion on which flags to be turned on/off for a 
> normal development build?
> - Does our developer guide mention this anywhere?
> 
> Thanks,
> Chen
> 
> 
> ___
> 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


Re: Options for a normal development build

2016-03-08 Thread Chris Sherlock
Normally it is fine - but for myself I turn off doxygen and Java. 

What platform are you building on?

Chris

> On 9 Mar 2016, at 4:28 PM, Chen Huang  wrote:
> 
> Hi,
> 
> I am new to LibreOffice and trying to build it following our wiki guide.
> 
> Seems there are a lot of compile options can be turned on and off and I am 
> wondering:
> - Is the default make option reasonable enough for me to stick to it?
> - Does anyone have any suggestion on which flags to be turned on/off for a 
> normal development build?
> - Does our developer guide mention this anywhere?
> 
> Thanks,
> Chen
> 
> 
> ___
> 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


Options for a normal development build

2016-03-08 Thread Chen Huang
Hi,

I am new to LibreOffice and trying to build it following our wiki guide.

Seems there are a lot of compile options can be turned on and off and I am
wondering:
- Is the default make option reasonable enough for me to stick to it?
- Does anyone have any suggestion on which flags to be turned on/off for a
normal development build?
- Does our developer guide mention this anywhere?

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


[Libreoffice-bugs] [Bug 91946] Direct2D font rendering in Windows

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91946

Adolfo Jayme  changed:

   What|Removed |Added

 Whiteboard||target:5.2.0

--- Comment #2 from Adolfo Jayme  ---
https://cgit.freedesktop.org/libreoffice/core/commit/?id=64172644c898d4f5f29494b2f8b5fbcdc2cd9824

DirectWrite rendering for Graphite to work around ExTextOut 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 98538] New: :

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98538

Bug ID: 98538
   Summary: :
   Product: LibreOffice
   Version: 5.1.0.3 release
  Hardware: Other
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jim...@hotmail.com

RE V5.1: Graphics don't display correctly, unable to open a document in writer.
After downloading, installing, repairing, removing, restarting computer
multiple times I have reverted to V5.0.5 which does work. O.S. is W7 HP running
on Lenovo T420. I thought the the file was corrupt but have tried downloading
from more than one location and multiple times.

-- 
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 91770] Crash on closing on Windows

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91770

--- Comment #36 from Yousuf (Jay) Philips  ---
Created attachment 123416
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123416=edit
another backtrace 2

@Stuart,
(In reply to V Stuart Foote from comment #35)
> @Jay,
> Are you using Kendy's TB39 build of master? Was it done as a "/a"
> administrative install in parallel, or did you actually install it (I don't
> think I've every tried debugging against an installed TB build, just Cloph's
> production builds when installed).

Yes using kendy's build and extracting using `msiexec /qr /a`.

So i downloaded the 12gb of symbols from kendy's server and added it to the
local cache and ran another backtrace which is attached. If this still isnt
sufficient, then please close the 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 98537] New: Freeze at startup

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98537

Bug ID: 98537
   Summary: Freeze at startup
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jsvitko...@gmail.com

When opening a relatively large file (1/2 Mb or larger) Libreoffice 5 freezes
when I try and start it before the last "startup" programs are loaded.  I've
ended the task in task manager, which had in the past ended problem programs
(LO 4.x, Firefox, etc), but now it just hangs and I have to restart the
computer to have it work again.  This never happened with LO 4.x which I used
as soon as my computer recognized keystrokes.  4.x just opened after the last
startup program loaded.

-- 
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 98536] New: 日本語入力時に右ALTキーを押しながらF?=,E,V,I,O,A,T,W,=?UTF-8?Q?Hなどのキーを押してもメニューを選択できなくなった

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98536

Bug ID: 98536
   Summary: 日本語入力時に右ALTキーを押しながらF,E,V,I,O,A,T,W,Hなどのキーを押してもメニューを選択で
きなくなった
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: apollo1997web-...@yahoo.co.jp

User-Agent:   Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586
Build Identifier: LibreOffice 5.0.5.2

Writer で編集中にIMEが日本語入力状態(あ)になっているときに、以前は ALT+I
等でメニュー項目を選択できたが現在のバージョンではできなくなっている。
メニューのサブ項目やアプリケーションキーでも同様。

右ALTキーのみの不具合で、左ALTキーでは以前と同様に使える。
また、右ALTキーを一度押してから離して、その後で他のキーを押せばメニューを選択できる。
メニューを選択できないのは右ALTキーを押したままの状態の時だけ。

Reproducible: Always

Steps to Reproduce:
1.右ALT+I+I
2.
3.
Actual Results:  
挿入メニューが表示され、画像の挿入の項目が選択される。

Expected Results:  
文書の本文に「i」と文字が入力されるだけ。
メニュー項目は選択されない。

[Information automatically included from LibreOffice]
Locale: ja
Module: TextDocument
OS: Windows 10
OS is 64bit: yes


Reset User Profile?No

-- 
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 64795] [FORMATTING] Add new feature of 'keep with previous paragraph' formatting option for Writer

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=64795

--- Comment #4 from Alan Smithee <3djfk0+dw4bgmkbx5...@sharklasers.com> ---
This would be a great enhancement. Without it, I am forced to create "junk"
styles simply to turn off the "keep with next" when I have multiple blocks of
text that follow a general pattern.

Allowing the user to keep with the previous paragraph would eliminate a lot of
the work and trouble associated with clumsy kludges like the above.

-- 
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: config_host/config_graphite.h.in vcl/win

2016-03-08 Thread Tim Eves
 config_host/config_graphite.h.in |2 
 vcl/win/gdi/winlayout.cxx|  372 ---
 2 files changed, 354 insertions(+), 20 deletions(-)

New commits:
commit 64172644c898d4f5f29494b2f8b5fbcdc2cd9824
Author: Tim Eves 
Date:   Tue Mar 8 14:46:49 2016 +0700

DirectWrite rendering for Graphite to work around ExTextOut bug

ExTextOut has a bug on Windows 7 and above where it incorrectly
positions certain diacritics, using DirectWrite and Direct2D fixes
this. Implemented on-demand loading of the DLL so the old ExTextOut
based renderer will be used when drwite and d2d1 cannot be found
allowing this work on Windows XP (where this bug doesn't seem to occur)

Change-Id: I767d62c8188511e745373b61ba51e7e2745f7b8b
Reviewed-on: https://gerrit.libreoffice.org/23020
Tested-by: Jenkins 
Reviewed-by: Michael Meeks 
Reviewed-by: Martin Hosken 

diff --git a/config_host/config_graphite.h.in b/config_host/config_graphite.h.in
index 46e624d..953c006 100644
--- a/config_host/config_graphite.h.in
+++ b/config_host/config_graphite.h.in
@@ -3,4 +3,6 @@
 
 #define ENABLE_GRAPHITE 0
 
+#define ENABLE_GRAPHITE_DWRITE 1
+
 #endif
diff --git a/vcl/win/gdi/winlayout.cxx b/vcl/win/gdi/winlayout.cxx
index d43f4e1..cccae83 100644
--- a/vcl/win/gdi/winlayout.cxx
+++ b/vcl/win/gdi/winlayout.cxx
@@ -33,7 +33,6 @@
 
 #include "sft.hxx"
 #include "sallayout.hxx"
-#include "glyphy/demo.hxx"
 
 #include 
 #include 
@@ -54,8 +53,16 @@ typedef std::unordered_map IntMap;
 #if ENABLE_GRAPHITE
 #include 
 #include 
+#if ENABLE_GRAPHITE_DWRITE
+#include 
+#include 
+#endif
 #endif
 
+// This needs to come after any includes for d2d1.h, otherwise we get lots of 
errors
+#include "glyphy/demo.hxx"
+
+
 #define DROPPED_OUTGLYPH 0x
 
 namespace
@@ -3562,6 +3569,346 @@ sal_GlyphId GraphiteLayoutWinImpl::getKashidaGlyph(int 
& rWidth)
 return mrFont.GetMinKashidaGlyph();
 }
 
+class TextOutRenderer
+{
+protected:
+explicit TextOutRenderer() = default;
+TextOutRenderer(const TextOutRenderer &) = delete;
+TextOutRenderer & operator = (const TextOutRenderer &) = delete;
+
+public:
+static TextOutRenderer & get();
+
+virtual ~TextOutRenderer() = default;
+
+
+virtual bool operator ()(WinLayout const , HDC hDC,
+const Rectangle* pRectToErase,
+Point* pPos, int* pGetNextGlypInfo) = 0;
+};
+
+class ExTextOutRenderer : public TextOutRenderer
+{
+ExTextOutRenderer(const ExTextOutRenderer &) = delete;
+ExTextOutRenderer & operator = (const ExTextOutRenderer &) = delete;
+
+public:
+explicit ExTextOutRenderer() = default;
+virtual ~ExTextOutRenderer() override = default;
+
+bool operator ()(WinLayout const , HDC hDC,
+const Rectangle* pRectToErase,
+Point* pPos, int* pGetNextGlypInfo) override;
+};
+
+#if ENABLE_GRAPHITE_DWRITE
+
+class D2DWriteTextOutRenderer : public TextOutRenderer
+{
+typedef HRESULT(WINAPI *pD2D1CreateFactory_t)(D2D1_FACTORY_TYPE,
+REFIID, const D2D1_FACTORY_OPTIONS *, void **);
+typedef HRESULT(WINAPI *pDWriteCreateFactory_t)(DWRITE_FACTORY_TYPE,
+REFIID, IUnknown **);
+
+static HINSTANCE mmD2d1, mmDWrite;
+static pD2D1CreateFactory_t D2D1CreateFactory;
+static pDWriteCreateFactory_t   DWriteCreateFactory;
+
+public:
+static bool InitModules();
+
+explicit D2DWriteTextOutRenderer();
+virtual ~D2DWriteTextOutRenderer() override;
+
+bool operator ()(WinLayout const , HDC hDC,
+const Rectangle* pRectToErase,
+Point* pPos, int* pGetNextGlypInfo) override;
+
+private:
+static void CleanupModules();
+
+// This is a singleton object disable copy ctor and assignemnt operator
+D2DWriteTextOutRenderer(const D2DWriteTextOutRenderer &) = delete;
+D2DWriteTextOutRenderer & operator = (const D2DWriteTextOutRenderer &) = 
delete;
+
+bool GetDWriteFaceFromHDC(HDC hDC, IDWriteFontFace ** ppFontFace, float * 
lfSize) const;
+bool GetDWriteInkBox(IDWriteFontFace & rFontFace, WinLayout const 
, float const lfEmHeight, Rectangle &) const;
+
+inline
+HRESULT CreateRenderTarget() {
+if (mpRT) mpRT->Release(); mpRT = NULL;
+return mpD2DFactory->CreateDCRenderTarget(, );
+}
+
+inline
+bool Ready() const { return mpGdiInterop && mpRT; }
+
+inline
+bool BindDC(HDC hDC, Rectangle const & rRect = Rectangle(0,0,0,0)) {
+RECT const rc = { rRect.Left(), rRect.Top(), rRect.Right(), 
rRect.Bottom() };
+return SUCCEEDED(mpRT->BindDC(hDC, ));
+}
+
+ID2D1Factory* mpD2DFactory;
+IDWriteFactory  * mpDWriteFactory;
+IDWriteGdiInterop   * mpGdiInterop;
+ID2D1DCRenderTarget * mpRT;
+const D2D1_RENDER_TARGET_PROPERTIES mRTProps;
+};
+
+HINSTANCE D2DWriteTextOutRenderer::mmD2d1 = nullptr,
+  

[ANN] orcus 0.11.0 on master

2016-03-08 Thread Kohei Yoshida
Hi there,

Michael Stahl has already done the announcement indirectly, so this may
be redundant.  I'll keep it short.

The orcus library has been updated to 0.11.0 on the master branch.  As
Michael pointed out, apparently you need to do make sc.clean to get it
to build incrementally.

BTW, I'll probably release 0.11.1 soon since there are quite a few build
issues already uncovered as a result of the 0.11.0 integration effort.

Best,

Kohei

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


[Libreoffice-commits] online.git: loolwsd/Storage.hpp

2016-03-08 Thread Ashod Nakashian
 loolwsd/Storage.hpp |   15 ++-
 1 file changed, 14 insertions(+), 1 deletion(-)

New commits:
commit cef1d842f9229c845da1530840cfaba442763030
Author: Ashod Nakashian 
Date:   Tue Mar 8 20:35:16 2016 -0500

loolwsd: added user-agent and response header logging to WOPI GetFile

Change-Id: Ia7fba845d67b27c25accb8515a44c57eed112a9b
Reviewed-on: https://gerrit.libreoffice.org/23054
Reviewed-by: Ashod Nakashian 
Tested-by: Ashod Nakashian 

diff --git a/loolwsd/Storage.hpp b/loolwsd/Storage.hpp
index 5dadb9d..bb9a4d0 100644
--- a/loolwsd/Storage.hpp
+++ b/loolwsd/Storage.hpp
@@ -136,10 +136,23 @@ public:
 Poco::URI uriObject(uri);
 Poco::Net::HTTPClientSession session(uriObject.getHost(), 
uriObject.getPort());
 Poco::Net::HTTPRequest request(Poco::Net::HTTPRequest::HTTP_GET, 
uriObject.getPathAndQuery(), Poco::Net::HTTPMessage::HTTP_1_1);
+request.set("User-Agent", "LOOLWSD WOPI Agent");
 session.sendRequest(request);
+
 Poco::Net::HTTPResponse response;
 std::istream& rs = session.receiveResponse(response);
-Log::info() << "WOPI::GetFile Status: " <<  response.getStatus() << " 
" << response.getReason() << Log::end;
+
+Log::info() << "WOPI::GetFile Status for URI [" << uri << "]: "
+<< response.getStatus() << " " << response.getReason() << 
Log::end;
+
+auto logger = Log::debug();
+logger << "WOPI::GetFile header for URI [" << uri << "]:\n";
+for (auto& pair : response)
+{
+logger << '\t' + pair.first + ": " + pair.second << '\n';
+}
+
+logger << Log::end;
 
 //TODO: Get proper filename.
 const auto filename = "filename";
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] online.git: loolwsd/LOOLWSD.hpp loolwsd/Storage.hpp

2016-03-08 Thread Ashod Nakashian
 loolwsd/LOOLWSD.hpp |   14 --
 loolwsd/Storage.hpp |   13 +
 2 files changed, 17 insertions(+), 10 deletions(-)

New commits:
commit e5fcdb890e54568aa62fbc61c3454d6f2d106758
Author: Ashod Nakashian 
Date:   Tue Mar 8 19:50:35 2016 -0500

loolwsd: corrections to file and wopi URI handling

Change-Id: I7389a30931be01a40714167039055a758187bd82
Reviewed-on: https://gerrit.libreoffice.org/23053
Reviewed-by: Ashod Nakashian 
Tested-by: Ashod Nakashian 

diff --git a/loolwsd/LOOLWSD.hpp b/loolwsd/LOOLWSD.hpp
index 77d0ea0..33f6913 100644
--- a/loolwsd/LOOLWSD.hpp
+++ b/loolwsd/LOOLWSD.hpp
@@ -39,12 +39,12 @@ public:
 Log::info("DocumentURI: url: " + url + ", jailRoot: " + jailRoot + ", 
childId: " + childId);
 
 // TODO: Sanitize the url and limit access!
-auto uriPublic = Poco::URI(url);
-uriPublic.normalize();
+std::string decodedUrl;
+Poco::URI::decode(url, decodedUrl);
+auto uriPublic = Poco::URI(decodedUrl);
+Log::info("Public URI [" + uriPublic.toString() + "].");
 
-const auto publicFilePath = uriPublic.getPath();
-
-if (publicFilePath.empty())
+if (uriPublic.getPath().empty())
 throw std::runtime_error("Invalid URL.");
 
 // This lock could become a bottleneck.
@@ -62,6 +62,8 @@ public:
 auto uriJailed = uriPublic;
 if (uriPublic.isRelative() || uriPublic.getScheme() == "file")
 {
+uriPublic.normalize();
+Log::info("Public URI [" + uriPublic.toString() + "] is a file.");
 std::unique_ptr storage(new LocalStorage(jailRoot, 
jailPath.toString()));
 const auto localPath = 
storage->getFilePathFromURI(uriPublic.getPath());
 uriJailed = Poco::URI(Poco::URI("file://"), localPath);
@@ -78,7 +80,7 @@ public:
 
 auto document = std::shared_ptr(new 
DocumentURI(uriPublic, uriJailed, childId));
 
-Log::info("DocumentURI [" + publicFilePath + "] created.");
+Log::info("DocumentURI [" + uriPublic.toString() + "] created.");
 return document;
 }
 
diff --git a/loolwsd/Storage.hpp b/loolwsd/Storage.hpp
index 8fcf773..5dadb9d 100644
--- a/loolwsd/Storage.hpp
+++ b/loolwsd/Storage.hpp
@@ -131,21 +131,26 @@ public:
 /// uri format: http://server/<...>/wopi*/files//content
 std::string getFilePathFromURI(const std::string& uri) override
 {
+Log::info("Downloading URI [" + uri + "].");
+
 Poco::URI uriObject(uri);
 Poco::Net::HTTPClientSession session(uriObject.getHost(), 
uriObject.getPort());
-Poco::Net::HTTPRequest request(Poco::Net::HTTPRequest::HTTP_GET, uri, 
Poco::Net::HTTPMessage::HTTP_1_1);
-Poco::Net::HTTPResponse response;
+Poco::Net::HTTPRequest request(Poco::Net::HTTPRequest::HTTP_GET, 
uriObject.getPathAndQuery(), Poco::Net::HTTPMessage::HTTP_1_1);
 session.sendRequest(request);
+Poco::Net::HTTPResponse response;
 std::istream& rs = session.receiveResponse(response);
 Log::info() << "WOPI::GetFile Status: " <<  response.getStatus() << " 
" << response.getReason() << Log::end;
 
 //TODO: Get proper filename.
-const std::string local_filename = _localStorePath + "/filename";
+const auto filename = "filename";
+const std::string local_filename = Poco::Path(getRootPath(), 
filename).toString();
 std::ofstream ofs(local_filename);
 std::copy(std::istreambuf_iterator(rs),
   std::istreambuf_iterator(),
   std::ostreambuf_iterator(ofs));
-return local_filename;
+
+// Now return the jailed path.
+return Poco::Path(_jailPath, filename).toString();
 }
 
 bool restoreFileToURI(const std::string& path, const std::string& uri) 
override
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] online.git: loolwsd/Storage.hpp

2016-03-08 Thread Ashod Nakashian
 loolwsd/Storage.hpp |   27 +--
 1 file changed, 17 insertions(+), 10 deletions(-)

New commits:
commit 978147df55cfa521e36d79bd22d8c4a94cc1bba9
Author: Ashod Nakashian 
Date:   Tue Mar 8 19:21:16 2016 -0500

loolwsd: refactored path manipulation in Storage.

Change-Id: I320c5638353b03df4fd0be612bb66c26e4f498a3
Reviewed-on: https://gerrit.libreoffice.org/23052
Reviewed-by: Ashod Nakashian 
Tested-by: Ashod Nakashian 

diff --git a/loolwsd/Storage.hpp b/loolwsd/Storage.hpp
index efda920..8fcf773 100644
--- a/loolwsd/Storage.hpp
+++ b/loolwsd/Storage.hpp
@@ -34,6 +34,22 @@ public:
 {
 }
 
+std::string getRootPath() const
+{
+auto localPath = _jailPath;
+if (localPath[0] == '/')
+{
+// Remove the leading /
+localPath.erase(0, 1);
+}
+
+// /chroot/jailId/user/doc/childId
+const auto rootPath = Poco::Path(_localStorePath, localPath);
+Poco::File(rootPath).createDirectories();
+
+return rootPath.toString();
+}
+
 /// Returns a local file path given a URI or ID.
 /// If necessary copies the file locally first.
 virtual std::string getFilePathFromURI(const std::string& uri) = 0;
@@ -58,16 +74,7 @@ public:
 
 std::string getFilePathFromURI(const std::string& uri) override
 {
-auto localPath = _jailPath;
-if (localPath[0] == '/')
-{
-// Remove the leading /
-localPath.erase(0, 1);
-}
-
-// /chroot/jailId/user/doc/childId
-const auto rootPath = Poco::Path(_localStorePath, localPath);
-Poco::File(rootPath).createDirectories();
+const auto rootPath = getRootPath();
 
 // /chroot/jailId/user/doc/childId/file.ext
 const auto filename = Poco::Path(uri).getFileName();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] online.git: loolwsd/Util.cpp

2016-03-08 Thread Ashod Nakashian
 loolwsd/Util.cpp |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

New commits:
commit 18a224b4135457ca59cb17c962ccb9c8c8e7c510
Author: Ashod Nakashian 
Date:   Tue Mar 8 19:19:41 2016 -0500

loolwsd: Color logs can be enabled by defining LOOL_LOGCOLOR envar

Change-Id: I12a38562f05c5d0b5d1c970a4b67240167322daf
Reviewed-on: https://gerrit.libreoffice.org/23051
Reviewed-by: Ashod Nakashian 
Tested-by: Ashod Nakashian 

diff --git a/loolwsd/Util.cpp b/loolwsd/Util.cpp
index e4d1352..ee7aaca 100644
--- a/loolwsd/Util.cpp
+++ b/loolwsd/Util.cpp
@@ -115,7 +115,10 @@ namespace Log
 << std::setw(5) << std::setfill('0') << Poco::Process::id();
 SourceId = oss.str();
 
-auto& logger = Poco::Logger::create(SourceName, new 
Poco::ConsoleChannel(), Poco::Message::PRIO_INFORMATION);
+auto channel = (std::getenv("LOOL_LOGCOLOR")
+ ? static_cast(new 
Poco::ColorConsoleChannel())
+ : static_cast(new 
Poco::ConsoleChannel()));
+auto& logger = Poco::Logger::create(SourceName, channel, 
Poco::Message::PRIO_INFORMATION);
 
 // Configure the logger.
 // TODO: This should come from a file.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-03-08 Thread Ashod Nakashian
 loleaflet/dist/loleaflet.html |2 +-
 loleaflet/src/core/Socket.js  |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 83880c454fb1694ec4e00c4f7bd7f75ef8727c71
Author: Ashod Nakashian 
Date:   Tue Mar 8 19:18:32 2016 -0500

loleaflet: removed unnecessary token parameter sent to WSD

Change-Id: Ibdef21665fcbf65c95870c8711321f63f7098596
Reviewed-on: https://gerrit.libreoffice.org/23050
Reviewed-by: Ashod Nakashian 
Tested-by: Ashod Nakashian 

diff --git a/loleaflet/dist/loleaflet.html b/loleaflet/dist/loleaflet.html
index c001d1f..53045eb 100644
--- a/loleaflet/dist/loleaflet.html
+++ b/loleaflet/dist/loleaflet.html
@@ -280,7 +280,7 @@
 }
 document.title = fileName;
 var map = L.map('map', {
-server: host,
+   server: host,
doc: filePath,
permission: permission,
timestamp: timestamp,
diff --git a/loleaflet/src/core/Socket.js b/loleaflet/src/core/Socket.js
index f3c7dd7..d1d5ad9 100644
--- a/loleaflet/src/core/Socket.js
+++ b/loleaflet/src/core/Socket.js
@@ -9,7 +9,7 @@ L.Socket = L.Class.extend({
initialize: function (map) {
this._map = map;
try {
-   this.socket = new WebSocket(map.options.server + 
'/?token=' + map.options.token);
+   this.socket = new WebSocket(map.options.server);
} catch (e) {
this.fire('error', {msg: _('Socket connection error'), 
cmd: 'socket', kind: 'failed', id: 3});
return null;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] online.git: loolwsd/LOOLWSD.hpp loolwsd/Storage.hpp

2016-03-08 Thread Ashod Nakashian
 loolwsd/LOOLWSD.hpp |   49 
 loolwsd/Storage.hpp |   70 +---
 2 files changed, 72 insertions(+), 47 deletions(-)

New commits:
commit 6c6951956269ceb232f682bac295a3204e4edeca
Author: Ashod Nakashian 
Date:   Sat Mar 5 10:27:30 2016 -0500

Storage is used to manage files locally

Change-Id: Id50eca8fe1136777ca99c60d78c15e1a47397993
Reviewed-on: https://gerrit.libreoffice.org/23049
Reviewed-by: Ashod Nakashian 
Tested-by: Ashod Nakashian 

diff --git a/loolwsd/LOOLWSD.hpp b/loolwsd/LOOLWSD.hpp
index 0997fb2..77d0ea0 100644
--- a/loolwsd/LOOLWSD.hpp
+++ b/loolwsd/LOOLWSD.hpp
@@ -36,6 +36,8 @@ public:
 const std::string& jailRoot,
 const std::string& childId)
 {
+Log::info("DocumentURI: url: " + url + ", jailRoot: " + jailRoot + ", 
childId: " + childId);
+
 // TODO: Sanitize the url and limit access!
 auto uriPublic = Poco::URI(url);
 uriPublic.normalize();
@@ -52,55 +54,26 @@ public:
 // The URL is the publicly visible one, not visible in the chroot jail.
 // We need to map it to a jailed path and copy the file there.
 
-// chroot/jailId/user/doc
-const auto jailedDocRoot = Poco::Path(jailRoot, JailedDocumentRoot);
+// user/doc/childId
+const auto jailPath = Poco::Path(JailedDocumentRoot, childId);
 
-// chroot/jailId/user/doc/childId
-const auto docPath = Poco::Path(jailedDocRoot, childId);
-Poco::File(docPath).createDirectories();
+Log::info("jailPath: " + jailPath.toString() + ", jailRoot: " + 
jailRoot);
 
 auto uriJailed = uriPublic;
 if (uriPublic.isRelative() || uriPublic.getScheme() == "file")
 {
-const auto filename = 
Poco::Path(uriPublic.getPath()).getFileName();
-
-// chroot/jailId/user/doc/childId/file.ext
-const auto jailedFilePath = Poco::Path(docPath, 
filename).toString();
-
-const auto localPath = Poco::Path(JailedDocumentRoot, childId);
-uriJailed = Poco::URI(Poco::URI("file://"), Poco::Path(localPath, 
filename).toString());
-
-Log::info("Public URI [" + uriPublic.toString() +
-  "] jailed to [" + uriJailed.toString() + "].");
-
-Log::info("Linking " + publicFilePath + " to " + jailedFilePath);
-if (!Poco::File(jailedFilePath).exists() && 
link(publicFilePath.c_str(), jailedFilePath.c_str()) == -1)
-{
-// Failed
-Log::error("link(\"" + publicFilePath + "\", \"" + 
jailedFilePath + "\") failed.");
-}
-
-try
-{
-// Fallback to copying.
-if (!Poco::File(jailedFilePath).exists())
-{
-Log::info("Copying " + publicFilePath + " to " + 
jailedFilePath);
-Poco::File(publicFilePath).copyTo(jailedFilePath);
-}
-}
-catch (const Poco::Exception& exc)
-{
-Log::error("copyTo(\"" + publicFilePath + "\", \"" + 
jailedFilePath + "\") failed: " + exc.displayText());
-throw;
-}
+std::unique_ptr storage(new LocalStorage(jailRoot, 
jailPath.toString()));
+const auto localPath = 
storage->getFilePathFromURI(uriPublic.getPath());
+uriJailed = Poco::URI(Poco::URI("file://"), localPath);
 }
 else
 {
 Log::info("Public URI [" + uriPublic.toString() +
   "] assuming cloud storage.");
 //TODO: Configure the storage to use. For now, assume it's WOPI.
-std::unique_ptr storage(new 
WopiStorage(docPath.toString()));
+std::unique_ptr storage(new WopiStorage(jailRoot, 
jailPath.toString()));
+const auto localPath = 
storage->getFilePathFromURI(uriPublic.toString());
+uriJailed = Poco::URI(Poco::URI("file://"), localPath);
 }
 
 auto document = std::shared_ptr(new 
DocumentURI(uriPublic, uriJailed, childId));
diff --git a/loolwsd/Storage.hpp b/loolwsd/Storage.hpp
index a9db691..efda920 100644
--- a/loolwsd/Storage.hpp
+++ b/loolwsd/Storage.hpp
@@ -16,6 +16,7 @@
 
 #include 
 
+#include "Common.hpp"
 #include "Auth.hpp"
 #include "Util.hpp"
 
@@ -24,8 +25,12 @@ class StorageBase
 {
 public:
 
-StorageBase(const std::string& localStorePath) :
-_localStorePath(localStorePath)
+/// localStorePath the absolute root path of the chroot.
+/// jailPath the path within the jail that the child uses.
+StorageBase(const std::string& localStorePath,
+const std::string& jailPath) :
+_localStorePath(localStorePath),
+_jailPath(jailPath)
 {
 }

[Libreoffice-bugs] [Bug 42346] FILESAVE: Cross-references to certain numbered items (object, graphic, table) turn to plain text on export to .doc or .docx (works OK for headings and bookmarks)

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42346

Joel Madero  changed:

   What|Removed |Added

 CC|jmadero@gmail.com   |
   Severity|critical|normal

--- Comment #61 from Joel Madero  ---
Looking at the history - there's zero reason why this should be critical.
Changing back to Normal

Normal: Can prevent high quality 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 42346] FILESAVE: Cross-references to certain numbered items (object, graphic, table) turn to plain text on export to .doc or .docx (works OK for headings and bookmarks)

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42346

--- Comment #60 from Joel Madero  ---
(In reply to andis.lazdins from comment #59)
> The problem is still there in 5.1.1.3, Ubuntu 14.04 32 bit. It's really
> annoying considering that the bug report recently passed 4 years anniversity.

As always patches welcomeoptions never change:
1) Fix it yourself;
2) Find someone to fix it;
3) Pay for a fix;
4) Wait for a *volunteer* to *choose* to fix it

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


[Libreoffice-bugs] [Bug 98535] New: Não Salva documetno no google drive em formato .docx

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98535

Bug ID: 98535
   Summary: Não Salva documetno no google drive em formato .docx
   Product: LibreOffice
   Version: 5.1.0.3 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: roogerav...@gmail.com

simplesmente perdi meu trabalho que pensei ter sido salvo no google drive,
agora terei de refazê-lo.

-- 
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 65509] FILESAVE "Automatically save" is not running

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65509

Yousuf (Jay) Philips  changed:

   What|Removed |Added

   Keywords||needsDevEval, topicUI
 CC||momonas...@gmail.com,
   ||philip...@hotmail.com,
   ||samuel.mehrbr...@cib.de

--- Comment #21 from Yousuf (Jay) Philips  ---
This should likely be an easy fix as all that is needed is to check whether the
checkbox is enabled and if so, execute the .uno:Save command.

-- 
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 98534] New bug in 5.1.0.3 Printing PDF

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98534

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---
Hi Paul, thanks for reporting.

Please test disabling the option:
Menu/Tools/Options/LibreOffice/Print - Convert colors to grayscale

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


Chen Huang license statement

2016-03-08 Thread Chen Huang
Hello,

All of my past & future contributions to LibreOffice may be licensed under
the MPLv2/LGPLv3+ dual license.

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


[Libreoffice-bugs] [Bug 98533] Clarify Insert->Document menu entry usage

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98533

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---
As commented in #98502, the error box could show the file has not an acceptable
file format to be inserted in the text.

-- 
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 98534] New: New bug in 5.1.0.3 Printing PDF

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98534

Bug ID: 98534
   Summary: New bug in 5.1.0.3 Printing PDF
   Product: LibreOffice
   Version: 5.1.0.3 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: libreoff...@infosectech.com

I use a template document which contains a corporate logo in the header. This
works in previous versions (including 5.0.x) of Libreoffice when printing
(Windows and Linux).

Under 5.1, the body of the document prints, but the entire header containing
the graphic prints as a solid black (lots of ink!!) - full width of page and
the full height of header - about the top 1.5-2 cm of the page.

This occurs on 'real' (HP) printer and on a pseudo-printer (a print-to-PDF
solution, CutePDF writer). 
Using Libreoffice exporting to PDF works correctly, so the workaround at
present is to export to PDF and the print that - or revert to 5.0 series.

Printing details: 
* HP OfficeJet Pro (X576DW)
* CutePDF 'printer'

If you need me to reproduce on Linux, I can test on Ubuntu easily.
If you need a sample document, I'll need to replicate using something other
than our corporate paper, but am happy to try.

-- 
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 98526] REGRESSION: Incorrect labels with XY (scatter) chart

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98526

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #3 from m.a.riosv  ---
Closed as 'worksforme' please if you are not agree reopen it.

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


[Libreoffice-bugs] [Bug 98526] REGRESSION: Incorrect labels with XY (scatter) chart

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98526

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #2 from m.a.riosv  ---
Created attachment 123415
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123415=edit
Test file with modified data values.

Hi @Milan, thanks for reporting.

After deleting and reinsert the right Y values are inserted. (in your sample X
and Y has the same values for every point)

Edit the with right-click 'Format Data Labels' 'Data Labels' disable 'Show
value as number' and enable 'Show category'

It works fine for me.

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


[Libreoffice-bugs] [Bug 97132] Cell Contents Do Not Update for Screen Display (Screen Scrolling Needed)

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97132

Kevin Suo  changed:

   What|Removed |Added

Version|5.1.0.3 release |5.1.0.2 rc

-- 
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 97132] Cell Contents Do Not Update for Screen Display (Screen Scrolling Needed)

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97132

--- Comment #6 from Kevin Suo  ---
(In reply to ChrisR from comment #5)
Please do not change the version field, it should reflect the earlist version
affected.
Please provide your Graphic driver version. Thanks.

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


[Libreoffice-bugs] [Bug 98524] Automatic Spell Checker leads to display errors on neighboring cells

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98524

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---
Hi @Peter, thanks for reporting.

Please test disabling the option:
Menu/Tools/Options/LibreOffice/View - Graphics Output - Use OpenGL...

-- 
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 98502] Insert->Document fails in writer with PDF (with -pdfimport installed), "open" works

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98502

--- Comment #8 from Stéphane Aulery  ---
See https://bugs.documentfoundation.org/show_bug.cgi?id=98533 for enhancement.

-- 
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 98511] Delete conditional formats in Excel files xlsx

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98511

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m.a.riosv  ---
Created attachment 123414
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123414=edit
Test file

Hi @bocanegr, thanks for reporting.

It works for me with:
Win10x64
Version: 4.2.8.2 Build ID: 48d50dbfc06349262c9d50868e5c1f630a573ebd
Version: 4.4.7.2 Build ID: f3153a8b245191196a4b6b9abd1d0da16eead600
Version: 5.1.1.3 (x64) Build ID: 89f508ef3ecebd2cfb8e1def0f0ba9a803b88a6d
CPU Threads: 4; OS Version: Windows 6.19; UI Render: GL;

Please could you test updating your version.

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


[Libreoffice-bugs] [Bug 98533] Clarify Insert->Document menu entry usage

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98533

Stéphane Aulery  changed:

   What|Removed |Added

 CC||lk...@free.fr
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=98
   ||502

-- 
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 98511] Delete conditional formats in Excel files xlsx

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98511

m.a.riosv  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 98502] Insert->Document fails in writer with PDF (with -pdfimport installed), "open" works

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98502

Stéphane Aulery  changed:

   What|Removed |Added

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

-- 
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 98533] New: Clarify Insert->Document menu entry usage

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98533

Bug ID: 98533
   Summary: Clarify Insert->Document menu entry usage
   Product: LibreOffice
   Version: 5.0.1.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lk...@free.fr

"Document" is a word passe-partout. The help says that you can insert a text
file, but I can insert an other ODT file too (tested).

Why not a PDF or a PS?

Someone tried, Someone tried and has a nice error message.

See bug https://bugs.documentfoundation.org/show_bug.cgi?id=98502

-- 
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 98461] UNO commands for mouse pointer options

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98461

Yousuf (Jay) Philips  changed:

   What|Removed |Added

   Keywords||needsDevEval, topicUI
 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 98506] Calc crashes randomly and frequently

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98506

m.a.riosv  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #3 from m.a.riosv  ---
What you can try now is disable the option:
Menu/Tools/Options/LibreOffice/View - Graphics output - Use OpenGL for ...

-- 
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 98502] Insert->Document fails in writer with PDF (with -pdfimport installed), "open" works

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98502

m.a.riosv  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |NOTABUG

--- Comment #7 from m.a.riosv  ---
@MM then I think would be better open a new bug as request for enhancement.

Close this one as 'notabug' looks fine, please if you are not agree reopen it.

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


[Libreoffice-bugs] [Bug 98506] Calc crashes randomly and frequently

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98506

sviatos...@outlook.com changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #2 from sviatos...@outlook.com ---
Reset the user profile as per recommendation and observed significantly less
frequent crashing (about 5-10 times less frequent), but still the application
crashes randomly. The fashion in which it crashes is different. I no longer see
a distorted GUI, instead the application simply disappears from the screen in
an instant. Also, autorecovery information is no longer corrupt and it is
possible to restore to the auto saved state.

I cannot pin point the issue to help you identify the bug. Any suggestions on
what I can do? Is there a debug version I can install that would give more
feedback, that I can then convey to you?

-- 
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 71732] META: Bugs related to text rendering, typography and font features in LO

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71732

--- Comment #6 from V Stuart Foote  ---
bug 95209 and bug 98349 -- for handling of Latin 1252 mapped "Symbol fonts"
with mappings to PUA codepoints.

-- 
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 71732] META: Bugs related to text rendering, typography and font features in LO

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71732

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||98349

-- 
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 98349] Chess font not rendered correctly ...

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98349

V Stuart Foote  changed:

   What|Removed |Added

 Status|REOPENED|NEW
 Blocks||71732

--- Comment #11 from V Stuart Foote  ---
adding to the bug 71732 meta for tracking font issues.

This looks to be same issue in handling Latin 1252 mapped "Symbol fonts" as
affected bug 95209 - "Broken font rendering of some characters in Opus Standard
font"

-- 
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 98502] Insert->Document fails in writer with PDF (with -pdfimport installed), "open" works

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98502

--- Comment #6 from MM  ---
I don't think insert>document was ever intended to open pdf files. So that's
why there's an error. But it would be nice if the error was a bit more
informative and not just a 'read-error'.

-- 
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 98528] Hidden text not visible

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98528

--- Comment #2 from Don Wade  ---
Created attachment 123413
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123413=edit
A piece of a document with about 15 lines of hidden text

There are about 15 lines of text between the date and the phone number (I left
the final CR unhidden to create a space).  They used to be visible as dotted
underlined text but now are not visible at all.  I tried saving as "odt" but
there was no difference.

-- 
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 98416] REMOTE FILE: "The specified device is invalid." error dialog when attempting to add a service

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98416

--- Comment #7 from Yousuf (Jay) Philips  ---
So did some testing of old builds and they have failed to connect to Google
Drive on linux since 4.2, when this feature was introduced, and only with the
new remote file dialog is an error message appearing.

-- 
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: Questions regarding Contributing to LibreOffice

2016-03-08 Thread Chris Sherlock
To answer my own question - the legendary Beej has produced a tutorial here:

https://beej.us/guide/bggdb/ 

This is the second awesome thing I’ve read from this individual, the other is 
his guide to sockets. Thanks Beej, if you ever stumble across this post :-)

Chris

> On 5 Mar 2016, at 12:31 PM, Chris Sherlock  wrote:
> 
> Does anyone know of any good guides on how to use gdb’s TUI?
> 
> Kendy mentioned this a few times in the past on IRC, and anything that helps 
> me debug would be greatly appreciated :-)
> 
> I was thinking of using cgdb, anyone have any experience in that?
> 
> Chris
> 
>> On 27 Feb 2016, at 8:04 PM, Akash B > > wrote:
>> 
>> Yeah, I've set everything up. I still don't know where to start debugging 
>> the code. Please give me some guidance. I'm trying solve the first C++ 
>> problem in the Easy Hacks section but I've no idea where to find the code. 
>> Please point me to the right direction. 
>> Regards, 
>> Akash Prasanna Basabhat.
>> 
>> 
>> On Sat, Feb 27, 2016, 2:30 PM jan iversen > > wrote:
>> Welcome
>> 
>> We have made a step by step guide to help you get started:
>> https://wiki.documentfoundation.org/Development/GetInvolved/DeveloperStepByStep
>>  
>> 
>> 
>> 
>> rgds
>> jan i
>> 
>> Sent from my iPad, please excuse any misspellings
>> 
>> > On 27 Feb 2016, at 08:13, Akash B > > > wrote:
>> >
>> > Hi all,
>> > I'm interested in contributing to LibreOffice. I'm comfortable 
>> > with C++, C++11, Python and Java. I'd like some guidance as to how to 
>> > contribute to LibreOffice. I've built LibreOffice on Ubuntu. I need some 
>> > guidance on what my next steps are going to be.
>> >
>> > Regards,
>> > Akash PB
>> > ___
>> > 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 mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: VCL LineInfo dotlen and dashlen question

2016-03-08 Thread Chris Sherlock
Quick ping to the ML - can anyone advise me on the purpose of these functions?

Before I forget, there’s also GetDistance as well. 

I’m assuming that GetDashLen is the length of each individual dash in the 
dashed line, GetDotLen is the length of each individual dot in a dotted line 
and GetDistance is the length of the distance between dashes and dots. 

I’d just like to confirm this, because if so then there’s an odd bug I think 
Stephan van den Akker and myself have uncovered in a VCL unit test that Stephan 
added (not *caused* by Stephan, but uncovered). 

Chris

> On 5 Mar 2016, at 12:25 PM, Chris Sherlock  wrote:
> 
> Hi all, 
> 
> Can anyone tell me the different between GetDotLen and GetDashLen in LineInfo?
> 
> You can have a situation where there are dashes and dots in lines, so does 
> that affect anything?
> 
> Thanks,
> Chris

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


Re: [Libreoffice-qa] More information in About dialog

2016-03-08 Thread Yousuf 'Jay' Philips

Hi,

I had mentioned the issue to Meeks last week and he said "Oh - so; those 
numbers have to go through a mapping table to be human

readable. And - worse - they are now trying hard not to expose windows
version information in their new APIs."

On 03/08/2016 03:13 AM, Pedro wrote:

V Stuart Foote wrote

See this MSDN note:

https://msdn.microsoft.com/en-us/library/windows/desktop/ms724832%28v=vs.85%29.aspx


Ok. So LibreOffice is not getting the Windows version correctly.

In fact, if I open a command window I get "Microsoft Windows [Version
10.0.10586]" which makes sense and agrees with the MSDN page.


___
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 98437] DIALOG: Find & Replace dialog reopens with larger size but collapsed options

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98437

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 CC||er...@redhat.com

--- Comment #2 from Yousuf (Jay) Philips  ---
I believe it must be this, as that is the only change made to
svx/uiconfig/ui/findreplacedialog.ui since October.

commit 393f11f88648e1c7cace6224aa7afcbf9d68ddd6
Author: Eike Rathke 
Date:   Fri Feb 26 00:13:07 2016 +0100

add Wildcards to Find dialog

Enabled only for Calc. Writer needs to be adapted to support wildcards.

The global escape character is '\' set in SvxSearchItem ctor.

Change-Id: I1af78f296deff81e023ee9f0e936f5f506f80c83

@Eike: Any thoughts?

-- 
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 75280] [Easyhack] Convert inappropriate use of sal_uIntPtr to better integer types

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75280

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|ToBeReviewed|ToBeReviewed target:5.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 75280] [Easyhack] Convert inappropriate use of sal_uIntPtr to better integer types

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75280

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

http://cgit.freedesktop.org/libreoffice/core/commit/?id=45701913f642b17aabd67b52de9002cc79cf07ae

tdf#75280 Replace sal_uIntPtr to better types in /connectivity

It will be available in 5.2.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://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: connectivity/source

2016-03-08 Thread Jaskaran
 connectivity/source/drivers/dbase/DIndexIter.cxx |   18 +-
 connectivity/source/drivers/dbase/DResultSet.cxx |2 +-
 connectivity/source/inc/dbase/DIndexIter.hxx |   14 +++---
 3 files changed, 17 insertions(+), 17 deletions(-)

New commits:
commit 45701913f642b17aabd67b52de9002cc79cf07ae
Author: Jaskaran 
Date:   Tue Mar 8 21:07:40 2016 +0530

tdf#75280 Replace sal_uIntPtr to better types in /connectivity

Many other occurences of outdated sal_uIntPtr still remain.This
commit does not fully fix the issue.

Change-Id: I744a4399a12cefb48e948c20c2d0dec833116b81
Reviewed-on: https://gerrit.libreoffice.org/23034
Tested-by: Jenkins 
Reviewed-by: Michael Stahl 

diff --git a/connectivity/source/drivers/dbase/DIndexIter.cxx 
b/connectivity/source/drivers/dbase/DIndexIter.cxx
index e77f03e..3c0318b 100644
--- a/connectivity/source/drivers/dbase/DIndexIter.cxx
+++ b/connectivity/source/drivers/dbase/DIndexIter.cxx
@@ -34,20 +34,20 @@ OIndexIterator::~OIndexIterator()
 }
 
 
-sal_uIntPtr OIndexIterator::First()
+sal_uInt32 OIndexIterator::First()
 {
 return Find(true);
 }
 
 
-sal_uIntPtr OIndexIterator::Next()
+sal_uInt32 OIndexIterator::Next()
 {
 return Find(false);
 }
 
-sal_uIntPtr OIndexIterator::Find(bool bFirst)
+sal_uInt32 OIndexIterator::Find(bool bFirst)
 {
-sal_uIntPtr nRes = NODE_NOTFOUND;
+sal_uInt32 nRes = NODE_NOTFOUND;
 
 if (bFirst)
 {
@@ -129,7 +129,7 @@ ONDXKey* OIndexIterator::GetFirstKey(ONDXPage* pPage, const 
OOperand& rKey)
 }
 
 
-sal_uIntPtr OIndexIterator::GetCompare(bool bFirst)
+sal_uInt32 OIndexIterator::GetCompare(bool bFirst)
 {
 ONDXKey* pKey = nullptr;
 sal_Int32 ePredicateType = 
dynamic_cast(*m_pOperator).getPredicateType();
@@ -199,7 +199,7 @@ sal_uIntPtr OIndexIterator::GetCompare(bool bFirst)
 }
 
 
-sal_uIntPtr OIndexIterator::GetLike(bool bFirst)
+sal_uInt32 OIndexIterator::GetLike(bool bFirst)
 {
 if (bFirst)
 {
@@ -219,7 +219,7 @@ sal_uIntPtr OIndexIterator::GetLike(bool bFirst)
 }
 
 
-sal_uIntPtr OIndexIterator::GetNull(bool bFirst)
+sal_uInt32 OIndexIterator::GetNull(bool bFirst)
 {
 if (bFirst)
 {
@@ -241,13 +241,13 @@ sal_uIntPtr OIndexIterator::GetNull(bool bFirst)
 }
 
 
-sal_uIntPtr OIndexIterator::GetNotNull(bool bFirst)
+sal_uInt32 OIndexIterator::GetNotNull(bool bFirst)
 {
 ONDXKey* pKey;
 if (bFirst)
 {
 // go through all NULL values first
-for (sal_uIntPtr nRec = GetNull(bFirst);
+for (sal_uInt32 nRec = GetNull(bFirst);
  nRec != NODE_NOTFOUND;
  nRec = GetNull(false))
  ;
diff --git a/connectivity/source/drivers/dbase/DResultSet.cxx 
b/connectivity/source/drivers/dbase/DResultSet.cxx
index e83e270..3e31902 100644
--- a/connectivity/source/drivers/dbase/DResultSet.cxx
+++ b/connectivity/source/drivers/dbase/DResultSet.cxx
@@ -167,7 +167,7 @@ bool ODbaseResultSet::fillIndexValues(const Reference< 
XColumnsSupplier> &_xInde
 
 if (pIter)
 {
-sal_uIntPtr nRec = pIter->First();
+sal_uInt32 nRec = pIter->First();
 while (nRec != NODE_NOTFOUND)
 {
 if (m_aOrderbyAscending[0])
diff --git a/connectivity/source/inc/dbase/DIndexIter.hxx 
b/connectivity/source/inc/dbase/DIndexIter.hxx
index 7d3dd2f..0b70f96 100644
--- a/connectivity/source/inc/dbase/DIndexIter.hxx
+++ b/connectivity/source/inc/dbase/DIndexIter.hxx
@@ -41,11 +41,11 @@ namespace connectivity
 m_aCurLeaf;
 sal_uInt16  m_nCurNode;
 
-sal_uIntPtr Find(bool bFirst);
-sal_uIntPtr GetCompare(bool bFirst);
-sal_uIntPtr GetLike(bool bFirst);
-sal_uIntPtr GetNull(bool bFirst);
-sal_uIntPtr GetNotNull(bool bFirst);
+sal_uInt32 Find(bool bFirst);
+sal_uInt32 GetCompare(bool bFirst);
+sal_uInt32 GetLike(bool bFirst);
+sal_uInt32 GetNull(bool bFirst);
+sal_uInt32 GetNotNull(bool bFirst);
 
 ONDXKey* GetFirstKey(ONDXPage* pPage,
 const file::OOperand& rKey);
@@ -64,8 +64,8 @@ namespace connectivity
 }
 
 virtual ~OIndexIterator();
-sal_uIntPtr First();
-sal_uIntPtr Next();
+sal_uInt32 First();
+sal_uInt32 Next();
 
 };
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 87530] can't add password to macro library

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87530

Michael Stahl  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=68
   ||983,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=42
   ||899,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=67
   ||685
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |mst...@redhat.com
   |desktop.org |

--- Comment #22 from Michael Stahl  ---
sorry that bug somehow removed itself from my todo-list...

the patch from comment #19 should fix the operation 2. from description
the patch from comment #20 should fix the operation 3./4. from description

fixed on master

-- 
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 89710] Runtime error executing function in huge password protected Basic macro library

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89710
Bug 89710 depends on bug 87530, which changed state.

Bug 87530 Summary: can't add password to macro library
https://bugs.documentfoundation.org/show_bug.cgi?id=87530

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 93953] Crash when accessing Tools > Macros > Organize Macros > Javascript while in backtrace mode

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93953

--- Comment #19 from Yousuf (Jay) Philips  ---
(In reply to Michael Meeks from comment #18)
> hmm; so if you have a debug build; perhaps it would be better to generate a
> core file =) if you can ensure you're running soffice from a write-able
> directory and do:

yes i have a write-able directory.

> ulimit -c unlimited

i ran this at the commandline and it didnt output anything.

> and run it until it crashes.

then i ran `./soffice --backtrace` and caused the crash

> Then we should have a core.12345 file.

but no core.12345 file was created.

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


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

2016-03-08 Thread Michael Stahl
 sw/qa/core/macros-test.cxx |   71 ++---
 1 file changed, 55 insertions(+), 16 deletions(-)

New commits:
commit 7faecc70c286c0e1a3068b77ccde771640928b37
Author: Michael Stahl 
Date:   Tue Mar 8 23:03:48 2016 +0100

tdf#87530 finish the regression test

Need to store the document twice to actually reproduce the bug.

Change-Id: I2332bce1e30546b3a9fe2ec020f2eea8e8d0da58

diff --git a/sw/qa/core/macros-test.cxx b/sw/qa/core/macros-test.cxx
index 44ac68f..3a5453a 100644
--- a/sw/qa/core/macros-test.cxx
+++ b/sw/qa/core/macros-test.cxx
@@ -439,24 +439,61 @@ void SwMacrosTest::testFdo87530()
 Reference xComponent =
 loadFromDesktop("private:factory/swriter", 
"com.sun.star.text.TextDocument");
 
+utl::TempFile aTempFile;
+aTempFile.EnableKillingFile();
+
+Sequence desc(1);
+desc[0].Name = "FilterName";
+desc[0].Value <<= OUString("writer8");
+
 {
+// insert initial password protected library
 Reference xDocScr(xComponent, 
UNO_QUERY_THROW);
 Reference 
xStorBasLib(xDocScr->getBasicLibraries());
 Reference xBasLib(xStorBasLib, 
UNO_QUERY_THROW);
 Reference xBasLibPwd(xStorBasLib, 
UNO_QUERY_THROW);
-xBasLib->createLibrary("Library1");
-xBasLibPwd->changeLibraryPassword("Library1", "", "foo");
+Reference 
xLibrary(xBasLib->createLibrary("BarLibrary"));
+xLibrary->insertByName("BarModule",
+uno::makeAny(OUString("Sub Main\nEnd Sub\n")));
+xBasLibPwd->changeLibraryPassword("BarLibrary", "", "foo");
+
+Reference xDocStorable(xComponent, UNO_QUERY_THROW);
+CPPUNIT_ASSERT(xDocStorable.is());
+
+xDocStorable->storeAsURL(aTempFile.GetURL(), desc);
 }
 
-Reference xDocStorable(xComponent, UNO_QUERY_THROW);
-CPPUNIT_ASSERT(xDocStorable.is());
+Reference(xComponent, UNO_QUERY_THROW)->close(false);
 
-utl::TempFile aTempFile;
-aTempFile.EnableKillingFile();
-Sequence desc(1);
-desc[0].Name = "FilterName";
-desc[0].Value <<= OUString("writer8");
-xDocStorable->storeAsURL(aTempFile.GetURL(), desc);
+// re-load
+xComponent = loadFromDesktop(aTempFile.GetURL(), 
"com.sun.star.text.TextDocument");
+
+{
+// check that password-protected library survived store and re-load
+Reference xDocScr(xComponent, 
UNO_QUERY_THROW);
+Reference 
xStorBasLib(xDocScr->getBasicLibraries());
+Reference xBasLib(xStorBasLib, 
UNO_QUERY_THROW);
+Reference xBasLibPwd(xStorBasLib, 
UNO_QUERY_THROW);
+CPPUNIT_ASSERT(xBasLibPwd->isLibraryPasswordProtected("BarLibrary"));
+CPPUNIT_ASSERT(xBasLibPwd->verifyLibraryPassword("BarLibrary", "foo"));
+xBasLib->loadLibrary("BarLibrary");
+CPPUNIT_ASSERT(xBasLib->isLibraryLoaded("BarLibrary"));
+Reference 
xLibrary(xBasLib->getByName("BarLibrary"), UNO_QUERY);
+Any module(xLibrary->getByName("BarModule"));
+CPPUNIT_ASSERT_EQUAL(module.get(), OUString("Sub Main\nEnd 
Sub\n"));
+
+// add a second module now - tdf#87530 happened here
+Reference 
xFooLib(xBasLib->createLibrary("FooLibrary"));
+xFooLib->insertByName("FooModule",
+uno::makeAny(OUString("Sub Main\nEnd Sub\n")));
+xBasLibPwd->changeLibraryPassword("FooLibrary", "", "foo");
+
+// store again
+Reference xDocStorable(xComponent, UNO_QUERY_THROW);
+CPPUNIT_ASSERT(xDocStorable.is());
+
+xDocStorable->store();
+}
 
 Reference(xComponent, UNO_QUERY_THROW)->close(false);
 
@@ -468,14 +505,16 @@ void SwMacrosTest::testFdo87530()
 Reference 
xStorBasLib(xDocScr->getBasicLibraries());
 Reference xBasLib(xStorBasLib, UNO_QUERY_THROW);
 Reference xBasLibPwd(xStorBasLib, 
UNO_QUERY_THROW);
-CPPUNIT_ASSERT(xBasLibPwd->isLibraryPasswordProtected("Library1"));
-CPPUNIT_ASSERT(xBasLibPwd->verifyLibraryPassword("Library1", "foo"));
-xBasLib->loadLibrary("Library1");
-CPPUNIT_ASSERT(xBasLib->isLibraryLoaded("Library1"));
+CPPUNIT_ASSERT(xBasLibPwd->isLibraryPasswordProtected("FooLibrary"));
+CPPUNIT_ASSERT(xBasLibPwd->verifyLibraryPassword("FooLibrary", "foo"));
+xBasLib->loadLibrary("FooLibrary");
+CPPUNIT_ASSERT(xBasLib->isLibraryLoaded("FooLibrary"));
+Reference 
xLibrary(xBasLib->getByName("FooLibrary"), UNO_QUERY);
+Any module(xLibrary->getByName("FooModule"));
+CPPUNIT_ASSERT_EQUAL(module.get(), OUString("Sub Main\nEnd 
Sub\n"));
 
 // close
-Reference xDocCloseable(xComponent, UNO_QUERY_THROW);
-xDocCloseable->close(false);
+Reference(xComponent, UNO_QUERY_THROW)->close(false);
 }
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96996] PIVOTTABLE Drill to details first level doesn't work

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96996

--- Comment #18 from Robert Gonzalez MX  ---
Hi.

Tested this problem with the Pivot table.

Version: 5.1.1.3
Build ID: 89f508ef3ecebd2cfb8e1def0f0ba9a803b88a6d
CPU Threads: 8; OS Version: Windows 6.2; UI Render: default; 
Locale: es-MX (es_MX)
On windows 10 and XP SP3

-- 
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 96996] PIVOTTABLE Drill to details first level doesn't work

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96996

--- Comment #17 from Robert Gonzalez MX  ---
Created attachment 123412
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123412=edit
Calc Screenshoot

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


Backported fix for EMF dashed lines

2016-03-08 Thread Chris Sherlock
Hi all, 

Would someone be able to review the following backported fixes?

https://gerrit.libreoffice.org/#/c/22923/ - v5.1
https://gerrit.libreoffice.org/#/c/22928/ - v5.0

Bug is tdf#79679, dashed lines show as solid lines when importing EMF files

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


[Libreoffice-bugs] [Bug 98530] CALC doesn't show spreadsheets

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98530

raal  changed:

   What|Removed |Added

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

--- Comment #1 from raal  ---
Have you tested the options for the graphics card in
Menu/Tools/LibreOffice/View?

Disabling the OpenGL

-- 
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 98481] SUM is zero when some cells are empty and some cells reference other sheet AND file is xlsx.

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98481

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #2 from raal  ---
Hard recalc CTRL+SHIFT+F9 works for me. Recalculate you can turn in
Menu/ptions/Calc/Formula/Recalculation on file load

-- 
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 98492] Text into the cell not visible When I typed in Calc

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98492

raal  changed:

   What|Removed |Added

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

--- Comment #2 from raal  ---
Have you tested the options for the graphics card in
Menu/Tools/LibreOffice/View?
Disabling the OpenGL

-- 
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 98532] Find and Replace comment.

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98532

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||r...@post.cz
 Resolution|--- |DUPLICATE

--- Comment #1 from raal  ---


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

-- 
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 65334] SEARCHING in Notes cannot find a cell with searched text

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65334

raal  changed:

   What|Removed |Added

 CC||kj.cu...@sympatico.ca

--- Comment #9 from raal  ---
*** Bug 98532 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 88278] Meta: insert SVG image filter (all modules)

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88278
Bug 88278 depends on bug 97332, which changed state.

Bug 97332 Summary: SVG: Incorrect fill color
https://bugs.documentfoundation.org/show_bug.cgi?id=97332

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 97332] SVG: Incorrect fill color

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97332

Yousuf (Jay) Philips  changed:

   What|Removed |Added

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

--- Comment #11 from Yousuf (Jay) Philips  ---
As the issue is with the bibisect build, i would say this is WFM. I've noticed
stuff in the debug build that doesnt happen in regular build, e.g. bug 93953.
If you disagree, please reset it to UNCONFIRMED.

-- 
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 98532] New: Find and Replace comment.

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98532

Bug ID: 98532
   Summary: Find and Replace comment.
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kj.cu...@sympatico.ca

Using: Version: 5.1.0.3
Build ID: 5e3e00a007d9b3b6efb6797a8b8e57b51ab1f737
CPU Threads: 8; OS Version: Windows 6.1; UI Render: default; 
Locale: en-CA (en_CA)
OS Windows 7 Ult x64
---

When using 'Find & Replace' via the the command menu (Edit/Find & Replace or
Ctrl+H) the function does not locate the target search item contained in
comment boxes.Neither is the sub-function selectable as an option under the
'Other Options' sub-menu.

Thanks in advance for repairing this item.

Cheers
Kevin

-- 
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 98416] REMOTE FILE: "The specified device is invalid." error dialog when attempting to add a service

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98416

--- Comment #6 from Yousuf (Jay) Philips  ---
Just tried this on a new installation of Ubuntu Mate 16.04 which comes with
5.1.0.3 and got the same error and got an email from google confirming the
sign-in.

-- 
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 97898] CMIS: "generic input / output error" when attempting to access Google Drive

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97898

--- Comment #17 from Szymon Kłos  ---
I installed Kubuntu 14.04, LibreOffice from PPA (Version: 5.1.1.2, Build ID:
1:5.1.1~rc2-0ubuntu1~trusty0) and I used gdb to create backtrace.

The reason of an error message must be different from that I mentioned above.
In this moment I can't tell where is the problem.

-- 
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 97898] CMIS: "generic input / output error" when attempting to access Google Drive

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97898

--- Comment #16 from Szymon Kłos  ---
Created attachment 123411
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123411=edit
Backtrace - breakpoints in ucbhelper::cancelCommandExecution

-- 
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 98524] Automatic Spell Checker leads to display errors on neighboring cells

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98524

Julien Nabet  changed:

   What|Removed |Added

Summary|Automatic Spell Cecker  |Automatic Spell Checker
   |leads to display errors on  |leads to display errors on
   |neighboring cells   |neighboring cells

-- 
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 98526] REGRESSION: Incorrect labels with XY (scatter) chart

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98526

Milan Bouchet-Valat  changed:

   What|Removed |Added

Version|5.1.0.3 release |4.3.4.1 release

--- Comment #1 from Milan Bouchet-Valat  ---
I've reproduced this problem with LO 4.3.1.4, 5.0 and 5.1.0.3. I'm saying this
is a regression since on the Forums two users were able to create the linked
document in 2014 (no precision about the version):
https://ask.libreoffice.org/en/question/31880/data-labels-on-data-series/

-- 
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 98531] Croatian hunspell dictionary update

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98531

--- Comment #1 from Kruno  ---
Created attachment 123410
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123410=edit
New croatian aff 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


Re: alternatives to Firebird: sqlite [was: Firebird doesn't support MSVC 2015]

2016-03-08 Thread Wols Lists
On 08/03/16 13:32, Lionel Elie Mamane wrote:
> At this point, I'd say, even more strongly than usual: the one that
> will do it will decide. Upgrading to a modern Java-based database
> would maybe not be that bad after all...

Sounds like I'd better get my finger out then!

IF I can get the basics in place (and to be honest it is a big if), are
other people prepared to muck in and help with the bits I can't do?

Bear in mind I'm quite happy with a relational layer and SQL as an
add-on, but a lot of the "con" points with SQLite, you might feel the
same about Pick. I'm not sure I agree with you there ...

I'm looking at it initially as being a bit like MS Access, the initial
implementation might be single user, but everything is already planned
out in my head. The file format will very rapidly get frozen, so you
won't have all these upgrade headaches ...

At the end of the day, I *WANT* to do this, but I have to be honest and
say my skill-set currently falls a bit short, and I have family issues
that may well get in the way. But I'm going to have a crack at it, if
anyone would care to help? And I'll try and get some help from the Pick
side of the fence, but I'm aware of several attempts at an Open Source
Pick that have never really got off the ground - probably due to lack of
exposure.

And if it gets the exposure, I expect users will start saying "oh, this
is an easy database to use". One of the reasons Pick has a crap
reputation among computer scientists is too many applications were
written by users - like accountants, travel agents, etc etc.

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


[Libreoffice-bugs] [Bug 98531] New: Croatian hunspell dictionary update

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98531

Bug ID: 98531
   Summary: Croatian hunspell dictionary update
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Linguistic
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kruno...@gmx.com

Created attachment 123409
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123409=edit
New croation dic file

I would like to update croatian hunspell dictionary. As far as I can see, it
hasn't been updated since 2010. I've made few corrections but they are rather
cosmetic. This dictionary is one of the ugliest out there, that's for sure. The
.aff file is unusable and everything should be build from strach -- and that is
not gonna happen in 2016.

So to buy some time I've:

- converted .aff to UTF8 to match .dic encoding
- removed nonsenses like "word1yyyword2" or "wordy."
- added 123 new words
- added some new classes to .aff (just because I could not use default ones,
nothing fancy)
- tried to improve suggestions by adding a REP section

Can't say I'm proud on the work done but it should do for now.

And one more thing: is this the proper way to do this kind of updates?

-- 
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: 3 commits - compilerplugins/clang cppu/Library_cppu.mk cppu/source

2016-03-08 Thread Stephan Bergmann
 compilerplugins/clang/salbool.cxx |2 
 cppu/Library_cppu.mk  |1 
 cppu/source/uno/check.cxx |  290 ++
 cppu/source/uno/data.cxx  |  254 -
 4 files changed, 292 insertions(+), 255 deletions(-)

New commits:
commit ea5bc30fbbfc5f3695290701cda9033f28bf5fe8
Author: Stephan Bergmann 
Date:   Tue Mar 8 21:31:31 2016 +0100

Extract static_asserts out of OSL_DEBUG_LEVEL > 0

Change-Id: I604b41a5063728833d57e2589e6d3ec39eb67166

diff --git a/cppu/source/uno/check.cxx b/cppu/source/uno/check.cxx
index 7adfe36..9dd892b 100644
--- a/cppu/source/uno/check.cxx
+++ b/cppu/source/uno/check.cxx
@@ -26,17 +26,8 @@
 #include 
 #include 
 
-#if OSL_DEBUG_LEVEL > 0
-
-namespace {
-
-#if defined( SAL_W32)
-#pragma pack(push, 8)
-#endif
-
 // Why hardcode like this instead of using the (generated)
 //  ?
-
 #if (defined(INTEL) \
 && (defined(__GNUC__) && (defined(LINUX) || defined(FREEBSD) ||   \
   defined(NETBSD) || defined(OPENBSD) ||  \
@@ -46,15 +37,11 @@ namespace {
 #define MAX_ALIGNMENT_4
 #endif
 
-#define OFFSET_OF( s, m ) reinterpret_cast< size_t >(reinterpret_cast(_cast(16)->m) -16)
+namespace {
 
-#define BINTEST_VERIFYOFFSET( s, m, n ) \
-if (OFFSET_OF(s, m) != static_cast(n))  \
-{   \
-fprintf(stderr, "### OFFSET_OF(" #s ", "  #m ") = %" SAL_PRI_SIZET "u 
instead of expected %" SAL_PRI_SIZET "u!!!\n", \
-OFFSET_OF(s, m), static_cast(n));\
-abort();\
-}
+#if defined( SAL_W32)
+#pragma pack(push, 8)
+#endif
 
 struct C1
 {
@@ -166,117 +153,138 @@ enum Enum
 v = SAL_MAX_ENUM
 };
 
+#ifdef SAL_W32
+#   pragma pack(pop)
+#endif
 
-class BinaryCompatible_Impl
-{
-public:
-BinaryCompatible_Impl();
-};
-BinaryCompatible_Impl::BinaryCompatible_Impl()
-{
-static_assert( static_cast(true) == sal_True,
-   "must be binary compatible" );
-static_assert( static_cast(false) == sal_False,
-   "must be binary compatible" );
+static_assert( static_cast(true) == sal_True,
+   "must be binary compatible" );
+static_assert( static_cast(false) == sal_False,
+   "must be binary compatible" );
 #ifdef MAX_ALIGNMENT_4
-// max alignment is 4
-static_assert(offsetof(AlignSize_Impl, dDouble) == 4, 
"offsetof(AlignSize_Impl, dDouble) != 4");
-static_assert(sizeof(AlignSize_Impl) == 12, "sizeof(AlignSize_Impl) != 
12");
+// max alignment is 4
+static_assert(offsetof(AlignSize_Impl, dDouble) == 4, 
"offsetof(AlignSize_Impl, dDouble) != 4");
+static_assert(sizeof(AlignSize_Impl) == 12, "sizeof(AlignSize_Impl) != 12");
 #else
-// max alignment is 8
-static_assert(offsetof(AlignSize_Impl, dDouble) == 8, 
"offsetof(AlignSize_Impl, dDouble) != 8");
-static_assert(sizeof(AlignSize_Impl) == 16, "sizeof(AlignSize_Impl) != 
16");
+// max alignment is 8
+static_assert(offsetof(AlignSize_Impl, dDouble) == 8, 
"offsetof(AlignSize_Impl, dDouble) != 8");
+static_assert(sizeof(AlignSize_Impl) == 16, "sizeof(AlignSize_Impl) != 16");
 #endif
 
-// sequence
-static_assert((SAL_SEQUENCE_HEADER_SIZE % 8) == 0, "binary compatibility 
test failed: (SAL_SEQUENCE_HEADER_SIZE % 8) == 0!!!");
-// enum
-static_assert(sizeof(Enum) == sizeof(sal_Int32), "binary compatibility 
test failed: (sizeof(Enum) == sizeof(sal_Int32))");
-// any
-static_assert(sizeof(void *) >= sizeof(sal_Int32), "binary compatibility 
test failed: (sizeof(void *) >= sizeof(sal_Int32))");
-static_assert(sizeof(uno_Any) == sizeof(void *) * 3, "binary compatibility 
test failed: (sizeof(uno_Any) == sizeof(void *) * 3");
-static_assert(offsetof(uno_Any, pType) == 0, "offsetof(uno_Any, pType) != 
0");
-static_assert(offsetof(uno_Any, pData) == 1 * sizeof(void *), 
"offsetof(uno_Any, pTData) != (1 * sizeof(void *))");
-static_assert(offsetof(uno_Any, pReserved) == 2 * sizeof(void *), 
"offsetof(uno_Any, pReserved) != (2 * sizeof(void *))");
-// string
-static_assert(sizeof(OUString) == sizeof(rtl_uString *), "binary 
compatibility test failed: sizeof(OUString) != sizeof(rtl_uString *)");
-// struct
-static_assert(sizeof(M) == 8, "sizeof(M) != 8");
-static_assert(offsetof(M, o) == 4, "offsetof(M, o) != 4");
-static_assert(sizeof(N) == 12, "sizeof(N) != 12");
-BINTEST_VERIFYOFFSET(N, p, 8);
-static_assert(sizeof(N2) == 12, "sizeof(N2) != 12");
+// sequence
+static_assert((SAL_SEQUENCE_HEADER_SIZE % 8) == 0, "binary compatibility test 
failed: (SAL_SEQUENCE_HEADER_SIZE % 8) == 0!!!");
+// enum
+static_assert(sizeof(Enum) == sizeof(sal_Int32), "binary compatibility test 
failed: (sizeof(Enum) == sizeof(sal_Int32))");
+// any
+static_assert(sizeof(void *) >= sizeof(sal_Int32), "binary compatibility test 
failed: (sizeof(void *) >= 

[Libreoffice-bugs] [Bug 98052] FILEOPEN: bad rendering of .WMF image in .ODT when OpenGL enabled

2016-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98052

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

http://cgit.freedesktop.org/libreoffice/core/commit/?id=6651aca57bae1bef3343f26d1a0fd59d3802c1cd

tdf#98052 - even polygons were not drawn on the alpha device

It will be available in 5.2.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://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: vcl/source

2016-03-08 Thread Marco Cecchetti
 vcl/source/outdev/polygon.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 6651aca57bae1bef3343f26d1a0fd59d3802c1cd
Author: Marco Cecchetti 
Date:   Tue Mar 8 10:03:06 2016 +0100

tdf#98052 - even polygons were not drawn on the alpha device

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

diff --git a/vcl/source/outdev/polygon.cxx b/vcl/source/outdev/polygon.cxx
index 129f6de..1ca1d87 100644
--- a/vcl/source/outdev/polygon.cxx
+++ b/vcl/source/outdev/polygon.cxx
@@ -212,6 +212,8 @@ void OutputDevice::DrawPolygon( const tools::Polygon& rPoly 
)
 
 if(bSuccess)
 {
+if( mpAlphaVDev )
+mpAlphaVDev->DrawPolygon( rPoly );
 return;
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


  1   2   3   >