[Libreoffice-bugs] [Bug 62361] FILEOPEN without optimum row height calculation

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

--- Comment #9 from Tester  ---
Bug is still present in 5.3.0.3, check this: bug 62268

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


[Libreoffice-bugs] [Bug 62268] FILEOPEN: Optimum row height should be recalculated with " style:use-optimal-row-height='true'"

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

--- Comment #19 from Tester  ---
(I prepared this text for the bug report and found this here... so i post my
issue. i agree with Bernhard Dippold

Calc Version: 5.3.0.3 (Bug is still present)

Issue, libreoffice-Calc should update the automatic optimal height of rows, wen
the file is opened.
This is a issue which maybe shows up only by outside generated documents (Not
saved by libreoffice-Calc).

The Rows are set to be formated in optimal height, and because the generator
can not know this hight, the data is left out.
Calc should now update the Rows heights to there optimal. But after opening a
document, all rows are in the same standard hight.
The expected behavior is that Calc updates the height from this rows
automatically by the opening of the file, in case no height is set in the XML.
So that the user don't have to take any further action to correct the heights
manually.
I speculate, a simple trigger of a "Do-Automatic-Row-Height-Correction" in the
opening process fix the bug. dependent of the code, it is maybe only 1 code
line more.

Below are the XML codes generated form external generator, and tests.
See in "office:automatic-styles" the "style:use-optimal-row-height" option in
ro1 ro2
See in "office:automatic-styles" the "style:row-height" option in r03 r04
r03 r04 are the data generated from a external generator, form him it is
impossible to predict the height.

If a automatic update is not wanted, "style:use-optimal-row-height" simply must
be "false". It is set to "false" from Calc automatically, in case a user
changes the hight manually.
If it is "true", the correct behavior is to update it on file-load.


(I ca send a exampple.ods, but a expert should unterstand the issue
immediately.)

(In case you care about details, my ODS generator is a PHP code, which
generates documentation for medical informations. The users of the generator
should not do extra work to correct the row hight after opening the document.
And the generator can not know the hight Calc will create, so can not set it in
the generation process. The update must be done by loading the file. So pleas
no work arounds.)


content.xml:
...






































Fix Hight, No Automatic
Update, Hight Hight Hight Hight Hight Hight Hight Hight Hight Hight Hight Hight
Hight Hight





Automatic Known Hight,
but Wrong, Do Automatic Update?, Hight Hight Hight Hight Hight Hight Hight
Hight Hight Hight Hight Hight Hight Hight





Automatic Unknown
Hight, Do Automatic Update!, Hight Hight Hight Hight Hight Hight Hight Hight
Hight Hight Hight Hight Hight Hight





Automatic Unknown
Hight, Do Automatic Update!, Hight Hight Hight Hight Hight Hight Hight Hight
Hight Hight Hight Hight Hight








...

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


[Libreoffice-bugs] [Bug 107314] New: Galaxy Icon Set: Inconsistency of icon

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

Bug ID: 107314
   Summary: Galaxy Icon Set: Inconsistency of icon
   Product: LibreOffice
   Version: 5.3.2.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ca...@free.fr

In the Galaxy Icon Set
The "Insert image" icon on the standard toolbar is different from the "Insert
Picture" icon in the Insert menu
The "Insert" menu icon corresponds to the icon "Open the drawing toolbar"

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-commits] online.git: wsd/LOOLWSD.cpp

2017-04-20 Thread Ashod Nakashian
 wsd/LOOLWSD.cpp |7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

New commits:
commit 15e13e58f64f6c9f6e5be706c53916649fd73257
Author: Ashod Nakashian 
Date:   Thu Apr 20 23:11:07 2017 -0400

wsd: clear the socket buffer only after processing the request

Because POST requests need to consume the complete
request message, we shouldn't clear the buffer
before handling the POST request.

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

diff --git a/wsd/LOOLWSD.cpp b/wsd/LOOLWSD.cpp
index d109e5d2..a0529380 100644
--- a/wsd/LOOLWSD.cpp
+++ b/wsd/LOOLWSD.cpp
@@ -1579,10 +1579,6 @@ private:
 LOG_DBG("Not enough content yet: ContentLength: " << 
contentLength << ", available: " << available);
 return SocketHandlerInterface::SocketOwnership::UNCHANGED;
 }
-
-// if we succeeded - remove the request from our input buffer
-// we expect one request per socket
-in.erase(in.begin(), itBody);
 }
 catch (const std::exception& exc)
 {
@@ -1668,6 +1664,9 @@ private:
 LOOLProtocol::getAbbreviatedMessage(in) << "]: " << 
exc.what());
 }
 
+// if we succeeded - remove the request from our input buffer
+// we expect one request per socket
+in.erase(in.begin(), itBody);
 return socketOwnership;
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] online.git: wsd/DocumentBroker.cpp

2017-04-20 Thread Ashod Nakashian
 wsd/DocumentBroker.cpp |   10 +++---
 1 file changed, 3 insertions(+), 7 deletions(-)

New commits:
commit 874b86ac89e0a6cd456d5dca6dda312ab584d322
Author: Ashod Nakashian 
Date:   Thu Apr 20 23:50:03 2017 -0400

wsd: simplify

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

diff --git a/wsd/DocumentBroker.cpp b/wsd/DocumentBroker.cpp
index 9cd27989..999cab12 100644
--- a/wsd/DocumentBroker.cpp
+++ b/wsd/DocumentBroker.cpp
@@ -244,14 +244,10 @@ void DocumentBroker::pollThread()
 
 // First copy into local container, since removeSession
 // will erase from _sessions, but will leave the last.
-std::vector sessions;
-for (const auto& pair : _sessions)
-{
-sessions.push_back(pair.second);
-}
-
-for (const std::shared_ptr& session : sessions)
+std::map sessions = 
_sessions;
+for (const auto& pair : sessions)
 {
+std::shared_ptr session = pair.second;
 try
 {
 // Notify the client and disconnect.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] online.git: wsd/DocumentBroker.cpp

2017-04-20 Thread Ashod Nakashian
 wsd/DocumentBroker.cpp |7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

New commits:
commit 560406a3081cfc5b48f4d6900b1f3c702261f81f
Author: Ashod Nakashian 
Date:   Thu Apr 20 22:43:27 2017 -0400

wsd: don't remove session after saving unconditionally

We should only remove sessions that had already been
disconnected, which caused the saving.

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

diff --git a/wsd/DocumentBroker.cpp b/wsd/DocumentBroker.cpp
index a2b90d50..9cd27989 100644
--- a/wsd/DocumentBroker.cpp
+++ b/wsd/DocumentBroker.cpp
@@ -562,11 +562,12 @@ bool DocumentBroker::saveToStorage(const std::string& 
sessionId,
 
 const bool res = saveToStorageInternal(sessionId, success, result);
 
-// We've saved and can safely destroy this session.
-removeSessionInternal(sessionId);
+// If marked to destroy, or session is disconnected, remove.
+const auto it = _sessions.find(sessionId);
+if (_markToDestroy || (it != _sessions.end() && 
it->second->isCloseFrame()))
+removeSessionInternal(sessionId);
 
 // If marked to destroy, then this was the last session.
-// Otherwise, check that we are (which we might be by now).
 if (_markToDestroy || _sessions.empty())
 {
 // Stop so we get cleaned up and removed.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] online.git: wsd/ClientSession.cpp wsd/ClientSession.hpp wsd/DocumentBroker.cpp

2017-04-20 Thread Ashod Nakashian
 wsd/ClientSession.cpp  |4 ++--
 wsd/ClientSession.hpp  |6 +++---
 wsd/DocumentBroker.cpp |2 +-
 3 files changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 7019ca8c257b6f4e4b91988243da12236c9de94a
Author: Ashod Nakashian 
Date:   Thu Apr 20 22:17:08 2017 -0400

wsd: ClientSession's isLoaded -> isViewLoaded

Not to confuse with the DocumentBroker isLoaded,
this is view-specific. Except for the first view,
which is identical to the document being loaded,
subsequent view loadings are independent from,
though follow, document loading.

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

diff --git a/wsd/ClientSession.cpp b/wsd/ClientSession.cpp
index 8be60603..11db33af 100644
--- a/wsd/ClientSession.cpp
+++ b/wsd/ClientSession.cpp
@@ -38,7 +38,7 @@ ClientSession::ClientSession(const std::string& id,
 _uriPublic(uriPublic),
 _isDocumentOwner(false),
 _isAttached(false),
-_isLoaded(false)
+_isViewLoaded(false)
 {
 const size_t curConnections = ++LOOLWSD::NumConnections;
 LOG_INF("ClientSession ctor [" << getName() << "], current number of 
connections: " << curConnections);
@@ -632,7 +632,7 @@ bool ClientSession::handleKitToClientMessage(const char* 
buffer, const int lengt
 }
 else if (tokens[0] == "status:")
 {
-setLoaded();
+setViewLoaded();
 docBroker->setLoaded();
 
 // Forward the status response to the client.
diff --git a/wsd/ClientSession.hpp b/wsd/ClientSession.hpp
index 81c55c70..b0eefecf 100644
--- a/wsd/ClientSession.hpp
+++ b/wsd/ClientSession.hpp
@@ -39,8 +39,8 @@ public:
 void setAttached() { _isAttached = true; }
 
 /// Returns true if this session has loaded a view (i.e. we got status 
message).
-bool isLoaded() const { return _isLoaded; }
-void setLoaded() { _isLoaded = true; }
+bool isViewLoaded() const { return _isViewLoaded; }
+void setViewLoaded() { _isViewLoaded = true; }
 
 const std::string getUserId() const { return _userId; }
 const std::string getUserName() const {return _userName; }
@@ -148,7 +148,7 @@ private:
 bool _isAttached;
 
 /// If we have loaded a view.
-bool _isLoaded;
+bool _isViewLoaded;
 
 /// Wopi FileInfo object
 std::unique_ptr _wopiFileInfo;
diff --git a/wsd/DocumentBroker.cpp b/wsd/DocumentBroker.cpp
index fd3a6ea9..a2b90d50 100644
--- a/wsd/DocumentBroker.cpp
+++ b/wsd/DocumentBroker.cpp
@@ -1216,7 +1216,7 @@ void DocumentBroker::destroyIfLastEditor(const 
std::string& id)
 for (const auto& it : _sessions)
 {
 if (it.second->getId() != id &&
-it.second->isLoaded() &&
+it.second->isViewLoaded() &&
 !it.second->isReadOnly())
 {
 // Found another editable.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 107313] New: Impress : function and button "Format mark"

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

Bug ID: 107313
   Summary: Impress : function and button "Format mark"
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ca...@free.fr

Request to add the function and its "Format mark" button (unprinted characters)
in Impress
To facilitate the identification of paragraphs during the animation phase of
the text blocks
A big thanks in advance

(Sorry for my bad english)

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


[Libreoffice-bugs] [Bug 107312] New: Pivot Table fields become black as I drag fields around.

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

Bug ID: 107312
   Summary: Pivot Table fields become black as I drag fields
around.
   Product: LibreOffice
   Version: 5.3.2.2 release
  Hardware: x86-64 (AMD64)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: david.stro...@gmail.com

Description:
I select some cells, do Data -> Pivot Table.  I get the dialog box.  As I drag
items from "Available fields" to the "Row Fields", etc. boxes, the boxes become
black.

Steps to Reproduce:
See description

Actual Results:  
white boxes become black

Expected Results:
white boxes stay white


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:52.0)
Gecko/20100101 Firefox/52.0

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


[Libreoffice-bugs] [Bug 107311] New: "Named range" option always grayed out in Pivot Table

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

Bug ID: 107311
   Summary: "Named range" option always grayed out in Pivot Table
   Product: LibreOffice
   Version: 5.3.2.2 release
  Hardware: x86-64 (AMD64)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: david.stro...@gmail.com

Description:
In Calc, I make a simple spreadsheet, select two columns, and do Data -> Define
Range.  I give it a name.  I then do Data -> Pivot Table.  The "Named range"
option is always grayed out.

Steps to Reproduce:
See description.

Actual Results:  
Named Range grayed out

Expected Results:
Named Range active, I can select one.


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:52.0)
Gecko/20100101 Firefox/52.0

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


[Libreoffice-bugs] [Bug 103676] Toolbars background is not drawn, instead showing previously active application as a background (KDE)

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

Hamid  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC|hamidrjaf...@gmail.com  |
 Resolution|--- |FIXED

--- Comment #26 from Hamid  ---
Update to 17.04 resolved the issue.

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


[Libreoffice-bugs] [Bug 107310] Formula cell with hybrid cell token mis-calculates to #VALUE!

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

Kohei Yoshida  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |kohei.yosh...@collabora.com
   |desktop.org |

--- Comment #3 from Kohei Yoshida  ---
I'm looking into this right now.

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


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

2017-04-20 Thread Henry Castro
 loleaflet/src/layer/AnnotationManager.js|9 +
 loleaflet/src/layer/tile/WriterTileLayer.js |9 ++---
 2 files changed, 15 insertions(+), 3 deletions(-)

New commits:
commit 42091f0b2010f66d8a1a0939f7c82926ca38c89d
Author: Henry Castro 
Date:   Thu Apr 20 21:56:07 2017 -0400

loleaflet: update document size when insert new annotation

Change-Id: Iaaca82aba1c04de336e89ff4e854cc9632fbfc53

diff --git a/loleaflet/src/layer/AnnotationManager.js 
b/loleaflet/src/layer/AnnotationManager.js
index 88fbcaba..88cc2c6a 100644
--- a/loleaflet/src/layer/AnnotationManager.js
+++ b/loleaflet/src/layer/AnnotationManager.js
@@ -210,6 +210,12 @@ L.AnnotationManager = L.Class.extend({
this.layout();
},
 
+   updateDocBounds: function (count, extraSize) {
+   if (this._items.length === count) {
+   this._map._docLayer._updateMaxBounds(true, extraSize);
+   }
+   },
+
layoutUp: function (commentThread, latLng, layoutBounds) {
if (commentThread.length <= 0)
return;
@@ -473,6 +479,7 @@ L.AnnotationManager = L.Class.extend({
if (this._selected && !this._selected.isEdit()) {
this._map.focus();
}
+   this.updateDocBounds(1);
this.layout();
} else if (action === 'Remove') {
id = changetrack ? 'change-' + obj.redline.index : 
obj.comment.id;
@@ -480,6 +487,7 @@ L.AnnotationManager = L.Class.extend({
if (removed) {
this.adjustParentRemove(removed);
this._map.removeLayer(this.removeItem(id));
+   this.updateDocBounds(0);
if (this._selected === removed) {
this.unselect();
} else {
@@ -508,6 +516,7 @@ L.AnnotationManager = L.Class.extend({
_onAnnotationCancel: function (e) {
if (e.annotation._data.id === 'new') {

this._map.removeLayer(this.removeItem(e.annotation._data.id));
+   this.updateDocBounds(0);
}
if (this._selected === e.annotation) {
this.unselect();
diff --git a/loleaflet/src/layer/tile/WriterTileLayer.js 
b/loleaflet/src/layer/tile/WriterTileLayer.js
index b45f584d..5610d010 100644
--- a/loleaflet/src/layer/tile/WriterTileLayer.js
+++ b/loleaflet/src/layer/tile/WriterTileLayer.js
@@ -12,6 +12,7 @@ L.WriterTileLayer = L.TileLayer.extend({
comment.anchorPix = 
this._twipsToPixels(comment.anchorPos.min);
}
if (comment.anchorPos) {
+   this._annotations.updateDocBounds(0, 
this._annotations.options.extraSize);

this._annotations.modify(this._annotations.add(comment));
}
},
@@ -229,9 +230,11 @@ L.WriterTileLayer = L.TileLayer.extend({
this._update();
},
 
-   _updateMaxBounds: function (sizeChanged) {
-   var extraSize = this._annotations && 
this._annotations._items.length > 0 ?
-   this._annotations.options.extraSize : null;
+   _updateMaxBounds: function (sizeChanged, extraSize) {
+   if (!extraSize) {
+   extraSize = this._annotations && 
this._annotations._items.length > 0 ?
+   this._annotations.options.extraSize : null;
+   }
L.GridLayer.prototype._updateMaxBounds.call(this, sizeChanged, 
extraSize, {panInside: false});
}
 });
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 107310] Formula cell with hybrid cell token mis-calculates to #VALUE!

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

Kohei Yoshida  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #2 from Kohei Yoshida  ---
It's a regression from Bug 96475.

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


[Libreoffice-bugs] [Bug 107310] Formula cell with hybrid cell token mis-calculates to #VALUE!

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

Kohei Yoshida  changed:

   What|Removed |Added

   Keywords||regression

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


[Libreoffice-bugs] [Bug 107310] Formula cell with hybrid cell token mis-calculates to #VALUE!

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

--- Comment #1 from Kohei Yoshida  ---
Created attachment 132726
  --> https://bugs.documentfoundation.org/attachment.cgi?id=132726=edit
test document

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


[Libreoffice-bugs] [Bug 107310] New: Formula cell with hybrid cell token mis-calculates to #VALUE!

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

Bug ID: 107310
   Summary: Formula cell with hybrid cell token mis-calculates to
#VALUE!
   Product: LibreOffice
   Version: 5.3.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kohei.yosh...@collabora.com

Description:
A formula cell that references another cell that has hybrid cell token as its
result sometimes mis-calculates to #VALUE!.

Steps to Reproduce:
1. Open the test document.
2. Type in 1 to B16 after the document is loaded.
3. See #VALUE! in B18.

Actual Results:  
B18 displays #VALUE!.

Expected Results:
B18 displays 1.


Reproducible: Always

User Profile Reset: 

Additional Info:


User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:52.0) Gecko/20100101
Firefox/52.0

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


[Libreoffice-bugs] [Bug 107207] Applications or files don't open after a while ( and computer has slept ?)

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

Dude76  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTABUG

--- Comment #1 from Dude76  ---
This bug can be closed.
I have deleted my profile, then all seems to working properly.
Something had to gone wrong somewhere and then corrupted one or more files of
the profile.
(but it is curious that it raised only after the computer has slept).
Any way.
Sorry for the inconvenience.

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


[Libreoffice-bugs] [Bug 103872] Untranslatable string in Calc/Chart: "Save as Image"

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

Gabor Kelemen  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |kelem...@ubuntu.com
   |desktop.org |

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


[Libreoffice-bugs] [Bug 107289] Conditional formatting breaks on adding then deleting a new sheet

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

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  ---
Please attach a minimal sample file where to reproduce the issue.

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


[Libreoffice-bugs] [Bug 104423] UI: Edit > Duplicate (Shft+F3) doesn' t any longer remember last used values

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

Laurent BP  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||jumbo4...@yahoo.fr
   Assignee|libreoffice-b...@lists.free |jumbo4...@yahoo.fr
   |desktop.org |

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


[Libreoffice-bugs] [Bug 107043] EDITING: Horizontal table borders are disappearing and reappearing with OpenGL enabled

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

Telesto  changed:

   What|Removed |Added

Summary|EDITING: Horizontal table   |EDITING: Horizontal table
   |borders are disappearing|borders are disappearing
   |and reappearing |and reappearing with OpenGL
   ||enabled

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


[Libreoffice-bugs] [Bug 106323] tab layout in dialogues

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

--- Comment #10 from andreas_k  ---
we can also say use gnome in gnome LibreOffice look good. If you use Microsoft
Windows it's your fault, that LibreOffice tabs look like 1999.

sorry for the hard words, but if you have a look at the attachment it didn't
look good.

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


[Libreoffice-bugs] [Bug 106323] tab layout in dialogues

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

--- Comment #9 from Yousuf Philips (jay)  ---
(In reply to Thomas Lendo from comment #8)
> I also don't see much benefit in the wide tabs layout in the current tabbed
> notebookbar as shown in the screenshot from Andreas. You will have too few
> space on small screens and it is a design users don't know from elsewhere.
> MSO 2013 hasn't so wide tabs, see
> https://bug-attachments.documentfoundation.org/attachment.cgi?id=132532

The difference between LO and MSO is that MSO's ribbon (and entire app) is
fully themed by them, which unfortunately LO doesnt have. Tiny sized tabs are
more difficult to hit with a mouse or a with a touch screen, but we are
designing it for screens that are 1280px wide or more, but a user's OS theme
will always cause issues that we wont forsee.

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


[Libreoffice-bugs] [Bug 107309] VIEWING: and skip over rows

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

Terrence Enger  changed:

   What|Removed |Added

 Attachment #132725|exampl spreadsheet  |example spreadsheet
description||

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


[Libreoffice-bugs] [Bug 107309] VIEWING: and skip over rows

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

--- Comment #1 from Terrence Enger  ---
Created attachment 132725
  --> https://bugs.documentfoundation.org/attachment.cgi?id=132725=edit
exampl spreadsheet

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


[Libreoffice-bugs] [Bug 107309] VIEWING: and skip over rows

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

Terrence Enger  changed:

   What|Removed |Added

   Hardware|All |x86-64 (AMD64)
 OS|All |Linux (All)

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


[Libreoffice-bugs] [Bug 107309] New: VIEWING: and skip over rows

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

Bug ID: 107309
   Summary: VIEWING:  and  skip over rows
   Product: LibreOffice
   Version: 4.3.0.4 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lo_b...@iseries-guru.com

Description:
As per summary.

Steps to Reproduce:
(1) Download and open example.ods.  Observe that cell A147 is current,
and row 137 is at the top of the data area.

(2) Unmaximize the Calc window, if necessary, and adjust window height
to make row 148 the last on shown.

(3) Type "".


Actual Results:  
Top row in the data area is row 154.

Expected Results:
Top row in the data area is row 149.


Reproducible: Always

User Profile Reset: No

Additional Info:
I see this on debian-wheezy with LibreOffice versions
(*) daily Linux dbgutil bibisect repository version 2017-04-20
(*) as delivered with debian-stretch, Version: 5.2.6.2 Build ID:
1:5.2.6-2
(*) bibisect-43max version oldest.

I am setting priority of this report to Minor.


User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101
Firefox/45.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-ux-advise] [Bug 106781] Addition of a style-focused formatting toolbar

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

--- Comment #23 from Yousuf Philips (jay)  ---
(In reply to Thomas Lendo from comment #21)
> Is it possible (or is it already implemented) to only show the Style-focused
> formatting toolbar in situations when the Formatting toolbar is shown too?

I had tried to do it in the commit, but wasnt able to get that functionality
working, so i'll have to leave it to a dev to look into. So to solve the issue,
i placed the toolbar as a 3rd toolbar, so no constant jumping happens.

(In reply to LibreTraining from comment #22)
> Adobe InDesign has pre-defined and customizable Workspace options.
> This changes the toolbars and the sidebars all at once.

LibreOffice has a similar feature in the View > Toolbars and once we have
additional focused toolbars geared towards specific workflows, we'll additional
toolbar layouts for them.

> And, Yes, I did mean frame styles, object styles is the similar feature in
> InDesign. :-)

As LO doesnt have any styled predefined frame styles, it cant be incorporated
into the toolbar at present. I'd suggest you submit an enhancement request for
the creation of a good set of predefined styled frame-type styles that could be
used.

-- 
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 106781] Addition of a style-focused formatting toolbar

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

--- Comment #23 from Yousuf Philips (jay)  ---
(In reply to Thomas Lendo from comment #21)
> Is it possible (or is it already implemented) to only show the Style-focused
> formatting toolbar in situations when the Formatting toolbar is shown too?

I had tried to do it in the commit, but wasnt able to get that functionality
working, so i'll have to leave it to a dev to look into. So to solve the issue,
i placed the toolbar as a 3rd toolbar, so no constant jumping happens.

(In reply to LibreTraining from comment #22)
> Adobe InDesign has pre-defined and customizable Workspace options.
> This changes the toolbars and the sidebars all at once.

LibreOffice has a similar feature in the View > Toolbars and once we have
additional focused toolbars geared towards specific workflows, we'll additional
toolbar layouts for them.

> And, Yes, I did mean frame styles, object styles is the similar feature in
> InDesign. :-)

As LO doesnt have any styled predefined frame styles, it cant be incorporated
into the toolbar at present. I'd suggest you submit an enhancement request for
the creation of a good set of predefined styled frame-type styles that could be
used.

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


[Libreoffice-bugs] [Bug 107306] Need Of Italic Characters

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

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #1 from V Stuart Foote  ---
Any modern OTF/TTF font installed to system will be available. Bitmap and Type1
postscript are no longer supported, but I don't believe that is what you seek.

You can use any OpenSource or commercial font foundry you would like--just be
sure to select and install TTF, OTF, or Graphite flavors.

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


[Libreoffice-bugs] [Bug 103064] Introduce a comment style

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

--- Comment #14 from Yousuf Philips (jay)  ---
(In reply to Thomas Lendo from comment #11)
> Now, every comment has its own character style (which are invisible for end
> users; I learned that for my research in bug 107095, comment 4).

>From what i saw in the xml file, this isnt accurate. Each character style
combination has its own character style entry, but each comment has a paragraph
style parenting all child text entries.


   Ich bin 
   noch ein Test
   .


Unfortunately, the P1 paragraph style doesnt have font name and size assigned
to them, so each character style has font name and size assigned to them.

> I would use that fact to keep work in this bug as easy/short as possible:
> - Handle comment styles as character styles in the character style list.

Exposing each comment character style combination in the character style list
would be useless to users.

> - Initially, all comments should have the same default character style.

This already happens.

> - What's possible in character styles should be possible for end users to
> format comments. (In MSO Word 2013, the same (character) formatting is
> possible for comments as for normal text.)

Ideally comments would have no formatting at all, this is how it is in Google
Docs, or alternatively font name and size would be disabled, MS Word disables
font size.

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


[Libreoffice-bugs] [Bug 107308] Not saving printing area when exporting to xlsx

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

Mikhail Novosyolov  changed:

   What|Removed |Added

   Keywords||filter:ooxml, filter:xlsx

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


[Libreoffice-bugs] [Bug 107308] New: Not saving printing area when exporting to xlsx

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

Bug ID: 107308
   Summary: Not saving printing area when exporting to xlsx
   Product: LibreOffice
   Version: 5.3.2.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mikhail...@dumalogiya.ru

Created attachment 132724
  --> https://bugs.documentfoundation.org/attachment.cgi?id=132724=edit
example document with printing area

To reproduce:
take the example file or any other in xlsx or save the ods as xlsx, change the
printing area and exports/save as xlsx. The change of the printing area will
not be saved. However, it is not present with xls.

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


[Libreoffice-bugs] [Bug 103407] [META] Unify behaviour and functions across apps

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

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||107307


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107307
[Bug 107307] Split window view for 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 107307] New: Split window view for Writer

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

Bug ID: 107307
   Summary: Split window view for Writer
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
Blocks: 103407

Split Window (.uno:SplitWindow) is a function in Calc and it would be useful to
have it in a similar fashion in writer. Presently to get a similar view in
Writer is to duplicate a window of the same document ( Window > New Window ),
but this duplicates the menubar, toolbars, sidebar and statusbar.

How it looks in MS Word -
http://www.java2s.com/Tutorial/Microsoft-Office-Word-2007Images/Split_Windows___Then_Click_To_Split_Document.PNG


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103407
[Bug 103407] [META] Unify behaviour and functions across apps
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 104759] Cell content not displaying in large Calc files after driver update ( NVIDIA GeForce 310M driver)

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

--- Comment #8 from David Edwards <2davidedwa...@gmail.com> ---
Hi,

apologies - work took over and I forgot about this. At the moment I have
5.2.5.1 which is working fine but I have not tried re-updating the driver. I
will try to find time to do this over the next couple of days - after which I
once again change country, start a new activity, etc. etc. and won't have a
moment.

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


[Libreoffice-bugs] [Bug 107300] Bibliography database - no CANCEL button

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

Marco A.G.Pinto  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #3 from Marco A.G.Pinto  ---
Xisco,

Select the bibliography database and click in the last book in the list.

Below the books, in the title field, add some characters.

Close the window clicking in the "x".

Go back to the database and the title of the book will have the extra stuff you
typed.

There should be a cancel button to abort unwanted changes.

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


[Libreoffice-commits] online.git: Branch 'refs/tags/2.1-rc2' - 0 commits -

2017-04-20 Thread Unknown
Rebased ref, commits from common ancestor:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 106323] tab layout in dialogues

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

Thomas Lendo  changed:

   What|Removed |Added

 CC||thomas.le...@gmail.com

--- Comment #8 from Thomas Lendo  ---
I would vote against a minimum width of tabs because it wouldn't fit into the
OS design and the mouse ways would be longer when switching through the tabs
for searching a setting.

I also don't see much benefit in the wide tabs layout in the current tabbed
notebookbar as shown in the screenshot from Andreas. You will have too few
space on small screens and it is a design users don't know from elsewhere. MSO
2013 hasn't so wide tabs, see
https://bug-attachments.documentfoundation.org/attachment.cgi?id=132532

(In reply to Yousuf Philips (jay) from comment #7)
> We would likely be moving to horizontal tabs/tree for dialogs, similar to
> the hyperlink dialog, so that would fix the issue as it wouldnt be OS themed.
There were reasons for Mozilla switching from a vertical settings tree (sidebar
layout) to a horizontal settings tab layout long ago (the last change was an
issue of space I assume). Users are more confident with a tabbed horizontal
layout as most of LibO's dialogs have it today. Users with LTR and RTL writing
can easier search for horizontal information.

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


minutes of ESC call ...

2017-04-20 Thread Michael Meeks
* Present:
+ Bjoern, JanI, Thorsten, Michael M, Sophie, Xisco, Kendy, Oivier,
  Heiko, Miklos, Stephan, Christian, Michael S, Eike

* Completed Action Items:
+ Send sorted & rated GSoC document to the mentors (Thorsten)
+ file twitter commit notification bot easy-hack (Cloph)

* Pending Action Items:
+ mass conversion of helpcontent (Cloph)
   [ still dealing with the UI bits ]
+ look at old Duden extension to see if they use UWINAPI.DLL (Thorsten)
+ release note drop of OSX 10.8 support re: thread-safe statics (Michael S)

* ESC budget tendering (Florian)
+ https://wiki.documentfoundation.org/Development/Budget2017
+ would like to gather a few ESC members for feedback, approval
  (and possibly review of bids)
+ tenders approved in the budget by the board  
https://wiki.documentfoundation.org/Development/Budget2017#Accessibility_improvements
 
* 
https://wiki.documentfoundation.org/Development/Budget2017#Image_handling_re-work
 
* 
https://wiki.documentfoundation.org/Development/Budget2017#Deprecate_SVG_filter_in_favour_of_SVGIO
 
* 
https://wiki.documentfoundation.org/Development/Budget2017#HSQLDB_binary_format_import
 
 + would like a number of experts to help spec. that out (Thorsten)
 + propose: approve specs for tender as-in the wiki &
   Florian to collect people to help out.
+ no objections.

* Release Engineering update (Christian)
+ 5.2.7 RC1 status
+ test failures, didn’t get a build that make-check worked for 1st time.
+ running checks manually – they pass.
+ issues with build parallelism here.
+ sometimes complex test or XStyleLoader2 test – only on Windows.
+ tried 4-5 times, not working – for complete check
+ is it upgrading the compiler ? (Thorsten)
+ random toolchain timing symptom (Michael)
+ random windows updates too – what changed ? (Cloph)
+ only on 5.2? (Miklos)
+ 5.3 rare to run into issues – sometimes XStyleloader2 (Cloph)
AI: + investigate signing issues around files (Cloph)
+ 5.3.3 RC1 status
+ tag yesterday – builds are currently underway
+ available tomorrow.
+ 5.4. builds / master
+ Alpha 1 – April 25th(?) - hard feature-freeze May 15th(?)
  alpha still from master , libreoffice-5-4 tag along with 
feature-freeze
+ translation problems
+ cleanup & re-shuffling in the src files
+ that changed lots of message contexts.
+ around 20k words to translate → thye’re not happy.
+ now down to 1500 – 2000 words; still some left.
+ improving quickly.
+ Android & iOS Remote
+ some patches need review, and some integrated.
+ no new builds yet.
+ online
+ propose skip 5.3.3 rc1 and do an rc2.

* Documentation (Olivier)
 + Zarro unconfirmed documentation bugs
 + thanks to Xisco mailing him the doc. bugs quickly.
 + New page on HC for Template manager (C. Vance and ohallot)
 + Need to review many other outdated/invalid pages on the subject
 + Guides: Change of templates for chapters triggers heavy work on update
  + style names changed – investigating if this is necessary
 + Fixes in help contents after translators
 + Tests LOOL to evaluate use for collaborative content insertion
   for Guides, encouraging results with track changes,
   but some issues open, e.g. protection.
+ may be better suited for doc. Authors rathern than caring about 
formats
+ have to download / edit / up-load cycle currently – which is a pain.
 + use the current site – with latest master/online builds.
+ testing some issues; been reported & fixed by Pranav
+ poking at two users – to see how they interfere – v. optimistic.

* should we have keywords not components in bugzilla (Heiko)
 + would need to move things from writer → documentation etc.
 + what’s wrong with a component ? (Xisco)
+ don’t see the problem.
 + some bugs have multiple facets: l10n, UI, documentation (Heiko)
AI: + come up with a proposal (Xisco, Heiko, Olivier)

* UX Update (Heiko)
+ Bugzilla (topicUI) statistics
248(248) (topicUI) bugs open, 470(470) (needsUXEval) needs to be 
evaluated by the UXteam
+ Updates:
BZ changes   1 week   1 month3 months   12 months
 added  3(3)  9(0)  31(-3) 490(0)
 commented 21(4)107(-36)   532(-73)   3532(-35)
   removed  0(0)  0(0)   4(-4)  38(0)
  resolved  3(-1)22(3)  82(-12)225(1)
+ top 10 contributors:
  Tietze, Heiko made 75 changes in 1 month, and 2262 changes in 1 year
  Foote, V Stuart made 37 changes in 1 month, and 670 changes in 1 year
  Philips, Yousuf made 28 changes in 1 month, and 1226 changes in 1 year
  Thomas Lendo 

[Libreoffice-qa] minutes of ESC call ...

2017-04-20 Thread Michael Meeks
* Present:
+ Bjoern, JanI, Thorsten, Michael M, Sophie, Xisco, Kendy, Oivier,
  Heiko, Miklos, Stephan, Christian, Michael S, Eike

* Completed Action Items:
+ Send sorted & rated GSoC document to the mentors (Thorsten)
+ file twitter commit notification bot easy-hack (Cloph)

* Pending Action Items:
+ mass conversion of helpcontent (Cloph)
   [ still dealing with the UI bits ]
+ look at old Duden extension to see if they use UWINAPI.DLL (Thorsten)
+ release note drop of OSX 10.8 support re: thread-safe statics (Michael S)

* ESC budget tendering (Florian)
+ https://wiki.documentfoundation.org/Development/Budget2017
+ would like to gather a few ESC members for feedback, approval
  (and possibly review of bids)
+ tenders approved in the budget by the board  
https://wiki.documentfoundation.org/Development/Budget2017#Accessibility_improvements
 
* 
https://wiki.documentfoundation.org/Development/Budget2017#Image_handling_re-work
 
* 
https://wiki.documentfoundation.org/Development/Budget2017#Deprecate_SVG_filter_in_favour_of_SVGIO
 
* 
https://wiki.documentfoundation.org/Development/Budget2017#HSQLDB_binary_format_import
 
 + would like a number of experts to help spec. that out (Thorsten)
 + propose: approve specs for tender as-in the wiki &
   Florian to collect people to help out.
+ no objections.

* Release Engineering update (Christian)
+ 5.2.7 RC1 status
+ test failures, didn’t get a build that make-check worked for 1st time.
+ running checks manually – they pass.
+ issues with build parallelism here.
+ sometimes complex test or XStyleLoader2 test – only on Windows.
+ tried 4-5 times, not working – for complete check
+ is it upgrading the compiler ? (Thorsten)
+ random toolchain timing symptom (Michael)
+ random windows updates too – what changed ? (Cloph)
+ only on 5.2? (Miklos)
+ 5.3 rare to run into issues – sometimes XStyleloader2 (Cloph)
AI: + investigate signing issues around files (Cloph)
+ 5.3.3 RC1 status
+ tag yesterday – builds are currently underway
+ available tomorrow.
+ 5.4. builds / master
+ Alpha 1 – April 25th(?) - hard feature-freeze May 15th(?)
  alpha still from master , libreoffice-5-4 tag along with 
feature-freeze
+ translation problems
+ cleanup & re-shuffling in the src files
+ that changed lots of message contexts.
+ around 20k words to translate → thye’re not happy.
+ now down to 1500 – 2000 words; still some left.
+ improving quickly.
+ Android & iOS Remote
+ some patches need review, and some integrated.
+ no new builds yet.
+ online
+ propose skip 5.3.3 rc1 and do an rc2.

* Documentation (Olivier)
 + Zarro unconfirmed documentation bugs
 + thanks to Xisco mailing him the doc. bugs quickly.
 + New page on HC for Template manager (C. Vance and ohallot)
 + Need to review many other outdated/invalid pages on the subject
 + Guides: Change of templates for chapters triggers heavy work on update
  + style names changed – investigating if this is necessary
 + Fixes in help contents after translators
 + Tests LOOL to evaluate use for collaborative content insertion
   for Guides, encouraging results with track changes,
   but some issues open, e.g. protection.
+ may be better suited for doc. Authors rathern than caring about 
formats
+ have to download / edit / up-load cycle currently – which is a pain.
 + use the current site – with latest master/online builds.
+ testing some issues; been reported & fixed by Pranav
+ poking at two users – to see how they interfere – v. optimistic.

* should we have keywords not components in bugzilla (Heiko)
 + would need to move things from writer → documentation etc.
 + what’s wrong with a component ? (Xisco)
+ don’t see the problem.
 + some bugs have multiple facets: l10n, UI, documentation (Heiko)
AI: + come up with a proposal (Xisco, Heiko, Olivier)

* UX Update (Heiko)
+ Bugzilla (topicUI) statistics
248(248) (topicUI) bugs open, 470(470) (needsUXEval) needs to be 
evaluated by the UXteam
+ Updates:
BZ changes   1 week   1 month3 months   12 months
 added  3(3)  9(0)  31(-3) 490(0)
 commented 21(4)107(-36)   532(-73)   3532(-35)
   removed  0(0)  0(0)   4(-4)  38(0)
  resolved  3(-1)22(3)  82(-12)225(1)
+ top 10 contributors:
  Tietze, Heiko made 75 changes in 1 month, and 2262 changes in 1 year
  Foote, V Stuart made 37 changes in 1 month, and 670 changes in 1 year
  Philips, Yousuf made 28 changes in 1 month, and 1226 changes in 1 year
  Thomas Lendo 

[Libreoffice-bugs] [Bug 107303] Crash on opening file

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

Buovjaga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #4 from Buovjaga  ---
No crash here.

Henry: could you please copy and paste the text from "LibreOffice - About
LibreOffice" menu?

Version: 5.3.2.2
Build ID: 6cd4f1ef626f15116896b1d8e1398b56da0d0ee1
CPU Threads: 4; OS Version: Mac OS X 10.12.4; UI Render: default; Layout
Engine: new; 
Locale: en-US (en_FI.UTF-8); Calc: group

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


[Libreoffice-bugs] [Bug 89994] writer

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

--- Comment #4 from Telesto  ---
Created attachment 132723
  --> https://bugs.documentfoundation.org/attachment.cgi?id=132723=edit
Example file

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


[Libreoffice-bugs] [Bug 89994] writer

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

Telesto  changed:

   What|Removed |Added

Version|4.2.7.2 release |4.0.0.3 release

--- Comment #3 from Telesto  ---
Confirming with:
Version: 5.4.0.0.alpha0+
CPU threads: 4; OS: Windows 6.19; UI render: GL; 
TinderBox: Win-x86@42, Branch:master, Time: 2017-04-05_23:32:27
Locale: nl-NL (nl_NL); Calc: CL

and with:
Versie 4.0.0.3 (Bouw-id: 7545bee9c2a0782548772a21bc84a9dcc583b89)

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


[Libreoffice-bugs] [Bug 107306] New: Need Of Italic Characters

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

Bug ID: 107306
   Summary: Need Of Italic Characters
   Product: LibreOffice
   Version: 5.3.2.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: matteonardell...@gmail.com

Dear all,

In order to satisfy my different aims, I need for Calculator, Writer and
Impress many Italic Characters to be availables. I remember that once, 2-3
years ago, they were available, I don't know why you, as LibreOffice community,
decided to delete it, I need it.
Please could you make it available again for LibreOffice, you know, I mean
those characters like: Monotype Corsiva... and other that I even don't
remember.

Cheers

Matteo

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


[Libreoffice-bugs] [Bug 101627] FILEOPEN: Height of text box in footer in DOCX imported wrong ( thus hiding the page number)

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

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

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

tdf#101627 add unit test

It will be available in 5.4.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-bugs] [Bug 106781] Addition of a style-focused formatting toolbar

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

--- Comment #22 from LibreTraining  ---

Regarding the eLAIX extension ...
It is just an example of a dedicated toolbar which emphasizes styles vs. direct
formatting.   
That toolbar attempts to put all the tools needed for ePub documents in one
place.
Instead of scattered around in multiple toolbars.
And it adds some missing features.

The tools developed for this styles-focused toolbar will enable other dedicated
toolbars.

For example Corel WordPerfect X8 has a Legal Toolbar.
It includes all the the tools needed by lawyers to file pleadings, etc. in one
toolbar.
It includes paragraph styles.
It includes page styles.
It includes buttons to run fill-in-the-form macros to get the document started
with proper page layout and the basic information which is needed every time.

Another example is a Long Document Toolbar.
The tools needed for long documents are scattered all over the place.

And turning all these separate toolbars on and off is a giant PITA.
Having to go back into that toolbars menu over and over again is ridiculous.
I will create a separate bug report/request for that issue - with examples from
other apps which work better.


Adobe InDesign has pre-defined and customizable Workspace options.
This changes the toolbars and the sidebars all at once.
Essentials (minimal), Digital Publishing, Book (long print docs), Advanced
(everything), etc. etc.
All toolbars can be customized and all panels turned on or off.
There a Lynda.com video on creating your own ePub workspace.
Easy to do.

MUFFIN on steroids.


And, Yes, I did mean frame styles, object styles is the similar feature in
InDesign. :-)

-- 
You are receiving this mail because:
You 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 106781] Addition of a style-focused formatting toolbar

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

--- Comment #22 from LibreTraining  ---

Regarding the eLAIX extension ...
It is just an example of a dedicated toolbar which emphasizes styles vs. direct
formatting.   
That toolbar attempts to put all the tools needed for ePub documents in one
place.
Instead of scattered around in multiple toolbars.
And it adds some missing features.

The tools developed for this styles-focused toolbar will enable other dedicated
toolbars.

For example Corel WordPerfect X8 has a Legal Toolbar.
It includes all the the tools needed by lawyers to file pleadings, etc. in one
toolbar.
It includes paragraph styles.
It includes page styles.
It includes buttons to run fill-in-the-form macros to get the document started
with proper page layout and the basic information which is needed every time.

Another example is a Long Document Toolbar.
The tools needed for long documents are scattered all over the place.

And turning all these separate toolbars on and off is a giant PITA.
Having to go back into that toolbars menu over and over again is ridiculous.
I will create a separate bug report/request for that issue - with examples from
other apps which work better.


Adobe InDesign has pre-defined and customizable Workspace options.
This changes the toolbars and the sidebars all at once.
Essentials (minimal), Digital Publishing, Book (long print docs), Advanced
(everything), etc. etc.
All toolbars can be customized and all panels turned on or off.
There a Lynda.com video on creating your own ePub workspace.
Easy to do.

MUFFIN on steroids.


And, Yes, I did mean frame styles, object styles is the similar feature in
InDesign. :-)

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


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

2017-04-20 Thread Patrick Jaap
 sw/qa/extras/ooxmlimport/data/tdf101627.docx |binary
 sw/qa/extras/ooxmlimport/ooxmlimport.cxx |8 
 2 files changed, 8 insertions(+)

New commits:
commit d862741423cdf0ef228d34b2a25b09c9401be584
Author: Patrick Jaap 
Date:   Thu Apr 20 15:31:18 2017 +0200

tdf#101627 add unit test

unit test for the patch 80b9b6761e8cb974e0cdc0c7be0eb95f8745d86f

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

diff --git a/sw/qa/extras/ooxmlimport/data/tdf101627.docx 
b/sw/qa/extras/ooxmlimport/data/tdf101627.docx
new file mode 100644
index ..0a1efd8f4295
Binary files /dev/null and b/sw/qa/extras/ooxmlimport/data/tdf101627.docx differ
diff --git a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx 
b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
index 2a6bbf49dd05..9154ef1cfa3c 100644
--- a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
+++ b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
@@ -1304,6 +1304,14 @@ DECLARE_OOXMLIMPORT_TEST( testTdf106606, 
"tdf106606.docx" )
 CPPUNIT_ASSERT( FindGraphicBitmapPropertyInNumStyle("WWNum2") );
 }
 
+DECLARE_OOXMLIMPORT_TEST(testTdf101627, "tdf101627.docx")
+{
+// Do not shrink the textbox in the footer
+uno::Reference xFrame(getShape(1), uno::UNO_QUERY);
+CPPUNIT_ASSERT(xFrame->getString().startsWith( "1" ) );
+CPPUNIT_ASSERT_EQUAL(sal_Int32(466), getProperty(xFrame, 
"Height"));
+}
+
 // tests should only be added to ooxmlIMPORT *if* they fail round-tripping in 
ooxmlEXPORT
 
 CPPUNIT_PLUGIN_IMPLEMENT();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 107300] Bibliography database - no CANCEL button

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

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #2 from Xisco Faulí  ---
Hello Marco,

Thank you for reporting the bug.
Unfortunately without clear steps to reproduce it, we cannot track down the
origin of the problem.
Please provide a clearer set of step-by-step instructions on how to reproduce
the problem.
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the steps are provided

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


[Libreoffice-bugs] [Bug 107302] Can't format texte in a shape

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

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||xiscofa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #1 from Xisco Faulí  ---
I can't reproduce it in

Version: 5.3.2.2
Build ID: 1:5.3.2~rc2-0ubuntu1~yakkety0
CPU Threads: 4; OS Version: Linux 4.8; UI Render: default; VCL: gtk3; Layout
Engine: new; 
Locale: es-ES (ca_ES.UTF-8); Calc: group

Could you please try to reproduce it with the version 5.3.2.2 of LibreOffice
from https://www.libreoffice.org/download/libreoffice-fresh/ ?
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' if the bug is still present in the latest 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 107305] EDITING: Blue page break line disappears after updating TOC ( and reappears after scrolling)

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

--- Comment #1 from Telesto  ---
Created attachment 132722
  --> https://bugs.documentfoundation.org/attachment.cgi?id=132722=edit
Example file

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


[Libreoffice-bugs] [Bug 107305] New: EDITING: Blue page break line disappears after updating TOC ( and reappears after scrolling)

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

Bug ID: 107305
   Summary: EDITING: Blue page break line disappears after
updating TOC (and reappears after scrolling)
   Product: LibreOffice
   Version: 5.0.0.5 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: trivial
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
The blue page break line visualization disappears after updating TOC (and
reappears after scrolling)

Steps to Reproduce:
1. Open attached file
2. Right Click the Table of Content and select update index

Actual Results:  
The visualization of the page breaks is disappearing after updating TOC

Expected Results:
Shouldn't disappear at all


Reproducible: Always

User Profile Reset: No

Additional Info:
Found in
Version: 5.4.0.0.alpha0+
CPU threads: 4; OS: Windows 6.19; UI render: GL; 
TinderBox: Win-x86@42, Branch:master, Time: 2017-04-05_23:32:27
Locale: nl-NL (nl_NL); Calc: CL

and in
Version: 5.0.6.3
Build ID: 490fc03b25318460cfc54456516ea2519c11d1aa
Locale: en-US (nl_NL)

but not in
Version: 5.0.0.5
Build ID: 1b1a90865e348b492231e1c451437d7a15bb262b
Locale: nl-NL (nl_NL)


User-Agent: Mozilla/5.0 (Windows NT 6.2; WOW64; rv:45.0) Gecko/20100101
Firefox/45.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 107293] Açılışta ve İşlem Sırasında Yavaşlama

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

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||xiscofa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #1 from Xisco Faulí  ---
Translation using Google translate:

"The Libre Office slowed down both on the opening and the word processor, on
the calculator, or on the floor. We always have to wait and act. This slowdown
has started since the last version. We want this issue fixed. Good work."

My answer:

Thank you for reporting the bug.
Unfortunately without clear steps to reproduce it, we cannot track down the
origin of the problem.
Please provide a clearer set of step-by-step instructions on how to reproduce
the problem.
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the steps are provided

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


[Libreoffice-bugs] [Bug 107304] FILEOPEN OTT: Slow file-opening

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

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #1 from Xisco Faulí  ---
I can't reproduce it in

Version: 5.4.0.0.alpha0+
Build ID: 7635e0c1c7f821a1081f8e3868f641ae74a172d6
CPU threads: 4; OS: Linux 4.8; UI render: default; VCL: gtk3; 
Locale: ca-ES (ca_ES.UTF-8); Calc: group

it takes

real0m3.645s
user0m3.584s
sys 0m0.252s

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


[Libreoffice-bugs] [Bug 107301] Text of justified paragraph cluttered if snap to char is turn off

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

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||xiscofa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #2 from Xisco Faulí  ---
I trust 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 107304] New: FILEOPEN OTT: Slow file-opening

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

Bug ID: 107304
   Summary: FILEOPEN OTT: Slow file-opening
   Product: LibreOffice
   Version: 4.1.0.4 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
File-opening is quite slow in LibO5.4 compared to LibO4.0.0.1.

Steps to Reproduce:
1. Launch Writer
2. Download and open attachment 117368 (bug 87647)

Actual Results:  
Slow file opening

Expected Results:
Fast file opening


Reproducible: Always

User Profile Reset: No

Additional Info:
Found in 
Version: 5.4.0.0.alpha0+ (+/- 25 sec)
CPU threads: 4; OS: Windows 6.19; UI render: GL; 
TinderBox: Win-x86@42, Branch:master, Time: 2017-04-05_23:32:27
Locale: nl-NL (nl_NL); Calc: CL

and in
Versie: 4.1.0.4 (+/-16 sec)
Build ID: 89ea49ddacd9aa532507cbf852f2bb22b1ace28

but not in
Versie 4.0.0.3 (+/- 5 sec)
Bouw-id: 7545bee9c2a0782548772a21bc84a9dcc583b89)


User-Agent: Mozilla/5.0 (Windows NT 6.2; WOW64; rv:45.0) Gecko/20100101
Firefox/45.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 107297] Crash in: StarBASIC::~StarBASIC()

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

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #1 from Xisco Faulí  ---
You can see it in the summary tab in
http://crashreport.libreoffice.org/stats/signature/StarBASIC::~StarBASIC%28%29
It seems most of the reports are from 5.2.4.2 but there's still a few from the
latest versions.
Did you copy something to clipboard before you close 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 106959] In mail merge if the output document is saved as individual documents the second document is identical to the first one

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

--- Comment #2 from Braciolo  ---
Created attachment 132721
  --> https://bugs.documentfoundation.org/attachment.cgi?id=132721=edit
Example of mail merge odt (with table) to test the bug

Use this odt file with the db (other attachment) to test the behavior of 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 106959] In mail merge if the output document is saved as individual documents the second document is identical to the first one

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

--- Comment #1 from Braciolo  ---
Created attachment 132720
  --> https://bugs.documentfoundation.org/attachment.cgi?id=132720=edit
Example of db to test the bug

Simple db to test writer 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 107303] Crash on opening file

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

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #3 from Xisco Faulí  ---
I can't reproduce it in

Version: 5.3.2.2
Build ID: 1:5.3.2~rc2-0ubuntu1~yakkety0
CPU Threads: 4; OS Version: Linux 4.8; UI Render: default; VCL: gtk3; Layout
Engine: new; 
Locale: es-ES (ca_ES.UTF-8); Calc: group

or

Versión: 5.3.2.2
Id. de compilación: 6cd4f1ef626f15116896b1d8e1398b56da0d0ee1
Subproc. CPU: 1; SO: Windows 6.1; Repr. de IU: predet.; Motor de trazado:
HarfBuzz; 
Configuración regional: es-ES (es_ES); Calc: group

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


[Libreoffice-bugs] [Bug 107299] New Template Manager help content issues

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

Olivier Hallot  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||7229
 Depends on||107229
 Ever confirmed|0   |1


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107229
[Bug 107229] [LOCALHELP] Review help pages for Templates
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107229] [LOCALHELP] Review help pages for Templates

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

Olivier Hallot  changed:

   What|Removed |Added

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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107299
[Bug 107299] New Template Manager help content issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107114] UI not shown after update to 5.3.2

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

--- Comment #7 from V Stuart Foote  ---
You might also test using the Intel Q45 graphics driver 15.17.19.2869
(11/16/2012) for any improvement, Windows 7 (WDDM 1.1). 

But, note that there are no Windows 10 (WDDM 2.0) certified drivers for that
GPU, so the Microsoft Basic driver is probably going to be the most stable--but
limited--choice.

Issue we seem to be having with these older GPUs at 5.3.2 is with LibreOffice's
move to more DirectWrite/Direct2D based rendering away from GDI based
rendering.

=-ref-=

Intel Q45 WDDM 1.1 accelerated drivers
32-bit
https://downloadcenter.intel.com/download/22163

64-bit
https://downloadcenter.intel.com/download/22166

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


[Libreoffice-bugs] [Bug 107303] Crash on opening file

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

--- Comment #2 from Henry Lieberman  ---
Created attachment 132719
  --> https://bugs.documentfoundation.org/attachment.cgi?id=132719=edit
.odm file for book of which "Jailbreaking..." file is a chapter

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


[Libreoffice-bugs] [Bug 107303] Crash on opening file

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

Henry Lieberman  changed:

   What|Removed |Added

 CC||lie...@media.mit.edu

--- Comment #1 from Henry Lieberman  ---
Created attachment 132718
  --> https://bugs.documentfoundation.org/attachment.cgi?id=132718=edit
File causing LO 5.3.2 to crash

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


[Libreoffice-bugs] [Bug 107114] UI not shown after update to 5.3.2

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

V Stuart Foote  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #6 from V Stuart Foote  ---
(In reply to guido@treofan.com from comment #4)
> The systems are "HP Compaq 8000 Elite SFF PC" with the integrated "Intel(R)
> Q45/Q43 Express Chipset", using the latest "Intel driver Q45/Q43 Express
> Chipset Graphics Driver 8.15.10.2702 for Windows 10"


Please check result when you disable OpenGL rendering--restart, and then
disable (uncheck) Use hardware acceleration. Both from the Tools -> Options ->
View menu.

If text is not visible in the UI, the accelerators still should get you there.

F10 -> +T -> +O -> then just V, in the right hand column clear the
top three check boxes.

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


[Libreoffice-bugs] [Bug 107303] New: Crash on opening file

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

Bug ID: 107303
   Summary: Crash on opening file
   Product: LibreOffice
   Version: 5.3.1.2 release
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lie...@media.mit.edu

Description:
5.3 versions crash immediately upon opening a LibreOffice writer file. 5.1.2
doesn't crash.  

Here's the file (I don't see any other way to send it to you, despite all the
long questionnaire)
http://www.media.mit.edu/~lieber/Misc/Bug-Reports/jailbreaking_the_prisoners_dilemma.odt

Error message:
http://web.media.mit.edu/~lieber/Misc/Bug-Reports/LO-Error-Message-20-Apr-17.jpeg

I'm also still having trouble with the 5.1 versions on editing .odm files.
(This file above is a chapter in a book). 
Will crash on trying to save or print an .odm. Or it'll save OK but the next
time it'll make me go through the recovery dialog.

Here's the .odm:
http://web.media.mit.edu/~lieber/Misc/Bug-Reports/LO-Error-Message-20-Apr-17.jpeg

Steps to Reproduce:
1. Load file mentioned.
2.
3.

Actual Results:  
Crash.


Expected Results:
I should be able to edit the file without LO crashing. 


Reproducible: Always

User Profile Reset: Tried it once, to no avail. Not unique to one version. 

Additional Info:
This questionnaire is way too long for a bug report, too much work for users. 
I'm willing to help if you interact with me, but this is too much upfront work
for a bug report. 

Bug reports need a way to send you the files in question. 


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

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


[Libreoffice-bugs] [Bug 107114] UI not shown after update to 5.3.2

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||michael.me...@collabora.com
   ||, t...@iki.fi
  Component|framework   |graphics stack

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


[Libreoffice-bugs] [Bug 95278] Solving for the local maxima by providing limiting conditions results in an answer , but causes strange behavior in LibreOffice/Solver.

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

Carlos  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #2 from Carlos  ---
(In reply to whiys from comment #0)
> Created attachment 119910 [details]
> An example spreadsheet to use for duplication of the error
> 
> 0) Download the attached example.ods.
> 0.5) Install nlpsolver if you haven't already.
> (http://extensions.openoffice.org/en/project/solver-nonlinear-programming-
> beta)
> 1) Summon Solver.
> 2) Select $B$7 as your target cell.
> 3) Optimize the result to maximize that cell.
> 4) Select $B$6 as the cells to change.
> 5) If we solved now, we'd get the absolute maxima. We want a local maxima
> instead, so add in two limiting conditions, one for $B$6 <= 2, and one for
> $B$6 => 3.
> 6) Solve.
> 7) You can either wait out the 2000 iterations, or stop shortly after
> starting. Either way, Solver will have arrived at the answer (Should say
> 2.90). It should be noted that $B$6 will be (approximately) equal to $B$11,
> and $B$7 will be (approximately) equal to $B$12. This is the answer we want.
> 8) After hitting OK, Solver will declare that "No solution was found." and
> revert the two cells to what they were before Solving.
> 
> I don't know if this is an edge case on Solver, or the result of weirdness
> from the NLP Solving plugin, but even if Solver couldn't be convinced that
> this is the answer I want, it'd be nice to have the "No solution was found."
> box give me the option to keep the answers, rather than reverting them with
> no recourse. The answer can still be extracted (as you can see), but it
> requires typing everything out manually outside of LibreOffice, which is a
> pain.


Did you try version 5.3.2?

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

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


[Libreoffice-bugs] [Bug 104759] Cell content not displaying in large Calc files after driver update ( NVIDIA GeForce 310M driver)

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

Carlos  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #7 from Carlos  ---
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' if the issue is still present

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


[Libreoffice-bugs] [Bug 104759] Cell content not displaying in large Calc files after driver update ( NVIDIA GeForce 310M driver)

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

Carlos  changed:

   What|Removed |Added

Summary|cell content not displaying |Cell content not displaying
   |in large Calc files after   |in large Calc files after
   |driver update   |driver update (NVIDIA
   ||GeForce 310M driver)

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


[Libreoffice-bugs] [Bug 104759] cell content not displaying in large Calc files after driver update

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

--- Comment #6 from Carlos  ---
(In reply to David Edwards from comment #4)
> Ah! OK. So, no, that's not the problem here.
>  Who knows if the problem is driver side or LibreOffice side anyway. I have
> also raised the issue there.

David, did you try  version 5.3.2 (or 5.2.4)?

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


[Libreoffice-bugs] [Bug 107166] Text is invisible, both in UI and in editor

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

V Stuart Foote  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 107114] UI not shown after update to 5.3.2

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

V Stuart Foote  changed:

   What|Removed |Added

   Priority|medium  |high
 Status|NEEDINFO|NEW
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||7166

--- Comment #5 from V Stuart Foote  ---
Suspect this will end up duplicate of bug 107166, but as this is on Windows 10,
with old GMA X4500 graphics, will keep it separate for now. See also bug 107166

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


[Libreoffice-bugs] [Bug 56187] Standard Filter gets wrong criteria from Autofilter and vice versa

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

oli  changed:

   What|Removed |Added

Version|3.5.6.2 release |5.3.2.2 release

--- Comment #6 from oli  ---
bug reproduced as filed by 2012-10-19

Version: 5.3.2.2 (x64)
Build-ID: 6cd4f1ef626f15116896b1d8e1398b56da0d0ee1
CPU-Threads: 8; BS-Version: Windows 6.1; UI-Render: Standard; Layout-Engine:
neu; 
Gebietsschema: de-DE (de_DE); Calc: group

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


[Libreoffice-bugs] [Bug 107161] FORMATTING - LibreOffice Writer bulleted list evidentiation/ strikethrough bug

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

Timur  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #2 from Timur  ---
Plese prepare a minimal test case i.e. source file (not image) where problem is
reproduced, then set back to Uncofirmed. 
You may get http://tdf.io/siguiexe to easily get and run "parallel" LO in
Windows (extract without installation) in order to test newer Lo versions, like
fresh 5.3 and master 5.4+.

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


[Libreoffice-bugs] [Bug 107272] Characters don't fit into text grid with vertical writing.

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

--- Comment #6 from Khaled Hosny  ---
(In reply to Mark Hung from comment #5)
> @Khaled,
> 
> I'm using Windows, so I guess it's internal one, right?

Yes. Not the issue I suspected then.

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


[Libreoffice-bugs] [Bug 95267] Copy of comment from one doc to another changes the comment text font size

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

Timur  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||gti...@gmail.com
 Resolution|--- |DUPLICATE

--- Comment #7 from Timur  ---
Seems to me like there were 2 issues here: 
- basic that is duplicate of Bug 103064 (newer but with more useful comments)
- workaround that was fixed in bug 91596. 

If you disagree, please explain.

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

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


[Libreoffice-bugs] [Bug 103064] Introduce a comment style

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

Timur  changed:

   What|Removed |Added

 CC||l...@zeta.org.au

--- Comment #13 from Timur  ---
*** Bug 95267 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 106179] [META] Writer comment bugs and enhancements

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

Bug 95267 Summary: Copy of comment from one doc to another changes the comment 
text font size
https://bugs.documentfoundation.org/show_bug.cgi?id=95267

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 107302] New: Can't format texte in a shape

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

Bug ID: 107302
   Summary: Can't format texte in a shape
   Product: LibreOffice
   Version: 5.2.6.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: zhiqo.z...@gmail.com

Description:
When you create a shapes and you writ in this shapes, you can't format the text
(font size,bold, font name, italic...)

P.S: I already do a tweet about that at @LibreOfficeBugs

Steps to Reproduce:
1.create a rectangle or callouts (create an objects of "drawing toolbars"
2.write in the object
3.You can't edit the format of the text !

Actual Results:  
You can't edit the format of the text

Expected Results:
no


Reproducible: Always

User Profile Reset: No

Additional Info:


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

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


[Libreoffice-bugs] [Bug 106568] [META]Text Grid Issues

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

Mark Hung  changed:

   What|Removed |Added

 Depends on||107301


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107301
[Bug 107301] Text of justified paragraph cluttered if snap to char is turn off
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107301] Text of justified paragraph cluttered if snap to char is turn off

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

Mark Hung  changed:

   What|Removed |Added

 Blocks||106568


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 107301] Text of justified paragraph cluttered if snap to char is turn off

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

--- Comment #1 from Mark Hung  ---
Created attachment 132717
  --> https://bugs.documentfoundation.org/attachment.cgi?id=132717=edit
Screenshot of 5.3.1.2

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


[Libreoffice-bugs] [Bug 106890] Page orientation of User page size is not determined correctly

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

dieterp  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de
   Severity|normal  |enhancement

--- Comment #5 from dieterp  ---
I agree to Johnny, that everything is, how it should be, so I think, it is not
a bug but a proposal for an enhancement (so I changed Importance to medium
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 107301] New: Text of justified paragraph cluttered if snap to char is turn off

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

Bug ID: 107301
   Summary: Text of justified paragraph cluttered if snap to char
is turn off
   Product: LibreOffice
   Version: 3.3.0 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mark...@gmail.com

Created attachment 132716
  --> https://bugs.documentfoundation.org/attachment.cgi?id=132716=edit
Text grid on, squared page mode, and snap-to-char off, justified paragraph

1. Tools / Options / LibreOffice Writer / General / Use, uncheck "square page
mode"
2. Select "Lines and Chars" in Text Grid tab in Page Style dialog.
3. Set Characters per line to 20, Characters width to 24pt.
4. Insert as text that grows to more than one lines.
5. Edit Paragraph/Alignment, select Justified. Also select Justified for last
line.

Observed: text except for last line cluttered, ignoring spacing for the text
grid.

Expect: the space between characters should be 12pt ( i.e. Character width -
CJK font height of default style. )

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


[Libreoffice-bugs] [Bug 83946] [META] Bugs for tracking changes

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

Bug 65056 Summary: Search and replace, with tracked changes on, changing only 
format of text, causes Writer to hang
https://bugs.documentfoundation.org/show_bug.cgi?id=65056

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 36582] "Find and replace" finds/replaces text deleted with "record/ track changes"

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

Timur  changed:

   What|Removed |Added

 CC||cpblpublic+bugzilla@gmail.c
   ||om

--- Comment #16 from Timur  ---
*** Bug 65056 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 65056] Search and replace, with tracked changes on, changing only format of text, causes Writer to hang

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

Timur  changed:

   What|Removed |Added

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

--- Comment #7 from Timur  ---
Looks like a duplicate of Bug 36582. 
If you disagree, please explain and set back to New.

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

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


[Libreoffice-bugs] [Bug 107300] Bibliography database - no CANCEL button

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

--- Comment #1 from Marco A.G.Pinto  ---
[16:49]  and 5.4 alpha seems to have a shorter default
bibliography

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


[Libreoffice-bugs] [Bug 107300] New: Bibliography database - no CANCEL button

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

Bug ID: 107300
   Summary: Bibliography database - no CANCEL button
   Product: LibreOffice
   Version: 5.3.2.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: marcoagpi...@mail.telepac.pt
CC: ba...@caesar.elte.hu, dennisroc...@libreoffice.org,
marcoagpi...@mail.telepac.pt, todven...@suomi24.fi,
xiscofa...@libreoffice.org

Hello!

I was making some tests in it and I randomly wrote some characters in the title
of a book there.

When I tried to cancel (I clicked in the close window gadget) it became part of
the database.

There is a need for a CANCEL button.

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


[Libreoffice-commits] online.git: Branch 'distro/collabora/collabora-online-2-1' - wsd/LOOLWSD.cpp

2017-04-20 Thread Jan Holesovsky
 wsd/LOOLWSD.cpp |   14 ++
 1 file changed, 6 insertions(+), 8 deletions(-)

New commits:
commit 998473fa7fe6dfb68f202a464a1bb12d417d92a2
Author: Jan Holesovsky 
Date:   Thu Apr 20 17:42:31 2017 +0200

Revert "wsd: clear the incoming buffer before upgrading to WS"

This fixes image insertion.

This reverts commit 9a761ffe68b24e180dd74c0737e20cabe9dc9e1b.

Change-Id: I05c88b96e40fce820a75738485fe8599129d3e20

diff --git a/wsd/LOOLWSD.cpp b/wsd/LOOLWSD.cpp
index d109e5d2..b4db3636 100644
--- a/wsd/LOOLWSD.cpp
+++ b/wsd/LOOLWSD.cpp
@@ -1533,7 +1533,6 @@ private:
 {
 auto socket = _socket.lock();
 std::vector& in = socket->_inBuffer;
-LOG_TRC("#" << socket->getFD() << " handling incoming " << in.size() 
<< " bytes.");
 
 // Find the end of the header, if any.
 static const std::string marker("\r\n\r\n");
@@ -1541,7 +1540,7 @@ private:
   marker.begin(), marker.end());
 if (itBody == in.end())
 {
-LOG_DBG("#" << socket->getFD() << " doesn't have enough data 
yet.");
+LOG_TRC("#" << socket->getFD() << " doesn't have enough data 
yet.");
 return SocketHandlerInterface::SocketOwnership::UNCHANGED;
 }
 
@@ -1579,10 +1578,6 @@ private:
 LOG_DBG("Not enough content yet: ContentLength: " << 
contentLength << ", available: " << available);
 return SocketHandlerInterface::SocketOwnership::UNCHANGED;
 }
-
-// if we succeeded - remove the request from our input buffer
-// we expect one request per socket
-in.erase(in.begin(), itBody);
 }
 catch (const std::exception& exc)
 {
@@ -1639,8 +1634,7 @@ private:
 // All post requests have url prefix 'lool'.
 socketOwnership = handlePostRequest(request, message);
 }
-else if (reqPathTokens.count() > 2 && reqPathTokens[0] == 
"lool" && reqPathTokens[2] == "ws" &&
- request.find("Upgrade") != request.end() && 
Poco::icompare(request["Upgrade"], "websocket") == 0)
+else if (reqPathTokens.count() > 2 && reqPathTokens[0] == 
"lool" && reqPathTokens[2] == "ws")
 {
 socketOwnership = handleClientWsUpgrade(request, 
reqPathTokens[1]);
 }
@@ -1659,6 +1653,10 @@ private:
 socket->shutdown();
 }
 }
+
+// if we succeeded - remove the request from our input buffer
+// we expect one request per socket
+in.clear();
 }
 catch (const std::exception& exc)
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 107114] UI not shown after update to 5.3.2

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

--- Comment #4 from guido@treofan.com  ---
The systems are "HP Compaq 8000 Elite SFF PC" with the integrated "Intel(R)
Q45/Q43 Express Chipset", using the latest "Intel driver Q45/Q43 Express
Chipset Graphics Driver 8.15.10.2702 for Windows 10"

The driver allows not to disable OpenGL at all, only several OpenGL features

I tried to change everything described on
http://www.intel.eu/content/www/eu/en/support/graphics-drivers/05575.html

without influence to the Libreoffice GUI. If I remove the Intel driver and went
back to the "Microsoft basic driver", everything is fine. But the screen
resolution/quality is too bad to stay with this driver

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


[Libreoffice-commits] online.git: Branch 'distro/collabora/collabora-online-2-1' - 3 commits - test/httpwstest.cpp wsd/ClientSession.cpp wsd/ClientSession.hpp wsd/DocumentBroker.cpp

2017-04-20 Thread Jan Holesovsky
 test/httpwstest.cpp|   70 -
 wsd/ClientSession.cpp  |4 --
 wsd/ClientSession.hpp  |   10 ---
 wsd/DocumentBroker.cpp |   20 +++---
 4 files changed, 12 insertions(+), 92 deletions(-)

New commits:
commit db3416c32f881e3edcffc670074874f1e074725a
Author: Jan Holesovsky 
Date:   Thu Apr 20 17:32:24 2017 +0200

Revert "wsd: unittest for correctly saving in presence of passive clients"

This reverts commit b0a21ae1b349a4eb52d93f1b63a4f8f10463b0f2.

diff --git a/test/httpwstest.cpp b/test/httpwstest.cpp
index 917a41dd..78d717fb 100644
--- a/test/httpwstest.cpp
+++ b/test/httpwstest.cpp
@@ -70,7 +70,6 @@ class HTTPWSTest : public CPPUNIT_NS::TestFixture
 CPPUNIT_TEST(testReload);
 CPPUNIT_TEST(testGetTextSelection);
 CPPUNIT_TEST(testSaveOnDisconnect);
-CPPUNIT_TEST(testSavePassiveOnDisconnect);
 CPPUNIT_TEST(testReloadWhileDisconnecting);
 CPPUNIT_TEST(testExcelLoad);
 CPPUNIT_TEST(testPaste);
@@ -124,7 +123,6 @@ class HTTPWSTest : public CPPUNIT_NS::TestFixture
 void testReload();
 void testGetTextSelection();
 void testSaveOnDisconnect();
-void testSavePassiveOnDisconnect();
 void testReloadWhileDisconnecting();
 void testExcelLoad();
 void testPaste();
@@ -713,74 +711,6 @@ void HTTPWSTest::testSaveOnDisconnect()
 }
 }
 
-void HTTPWSTest::testSavePassiveOnDisconnect()
-{
-const auto testname = "saveOnPassiveDisconnect ";
-
-const auto text = helpers::genRandomString(40);
-std::cerr << "Test string: [" << text << "]." << std::endl;
-
-std::string documentPath, documentURL;
-getDocumentPathAndURL("hello.odt", documentPath, documentURL, testname);
-
-int kitcount = -1;
-try
-{
-auto socket = loadDocAndGetSocket(_uri, documentURL, testname);
-
-Poco::Net::HTTPRequest request(Poco::Net::HTTPRequest::HTTP_GET, 
documentURL);
-auto socket2 = connectLOKit(_uri, request, _response);
-
-sendTextFrame(socket, "uno .uno:SelectAll", testname);
-sendTextFrame(socket, "uno .uno:Delete", testname);
-sendTextFrame(socket, "paste mimetype=text/plain;charset=utf-8\n" + 
text, testname);
-
-// Check if the document contains the pasted text.
-sendTextFrame(socket, "uno .uno:SelectAll", testname);
-sendTextFrame(socket, "gettextselection 
mimetype=text/plain;charset=utf-8", testname);
-const auto selection = assertResponseString(socket, 
"textselectioncontent:", testname);
-CPPUNIT_ASSERT_EQUAL("textselectioncontent: " + text, selection);
-
-// Closing connection too fast might not flush buffers.
-// Often nothing more than the SelectAll reaches the server before
-// the socket is closed, when the doc is not even modified yet.
-getResponseMessage(socket, "statechanged", testname);
-
-kitcount = getLoolKitProcessCount();
-
-// Shutdown abruptly.
-std::cerr << "Closing connection after pasting." << std::endl;
-socket->shutdown(); // Should trigger saving.
-socket2->shutdown();
-}
-catch (const Poco::Exception& exc)
-{
-CPPUNIT_FAIL(exc.displayText());
-}
-
-// Allow time to save and destroy before we connect again.
-testNoExtraLoolKitsLeft();
-std::cerr << "Loading again." << std::endl;
-try
-{
-// Load the same document and check that the last changes (pasted 
text) is saved.
-auto socket = loadDocAndGetSocket(_uri, documentURL, testname);
-
-// Should have no new instances.
-CPPUNIT_ASSERT_EQUAL(kitcount, countLoolKitProcesses(kitcount));
-
-// Check if the document contains the pasted text.
-sendTextFrame(socket, "uno .uno:SelectAll", testname);
-sendTextFrame(socket, "gettextselection 
mimetype=text/plain;charset=utf-8", testname);
-const auto selection = assertResponseString(socket, 
"textselectioncontent:", testname);
-CPPUNIT_ASSERT_EQUAL("textselectioncontent: " + text, selection);
-}
-catch (const Poco::Exception& exc)
-{
-CPPUNIT_FAIL(exc.displayText());
-}
-}
-
 void HTTPWSTest::testReloadWhileDisconnecting()
 {
 const auto testname = "reloadWhileDisconnecting ";
commit 63398891b273b78042ed49c41d8439c8384cbcd4
Author: Jan Holesovsky 
Date:   Thu Apr 20 17:32:18 2017 +0200

Revert "wsd: rely only on loaded sessions for saving"

This reverts commit c1dbc3a117ef77557db10c98a9d5ca43bb2065f6.

diff --git a/wsd/ClientSession.cpp b/wsd/ClientSession.cpp
index 8be60603..414f8b94 100644
--- a/wsd/ClientSession.cpp
+++ b/wsd/ClientSession.cpp
@@ -37,8 +37,7 @@ ClientSession::ClientSession(const std::string& id,
 _docBroker(docBroker),
 _uriPublic(uriPublic),
 _isDocumentOwner(false),
-_isAttached(false),
-_isLoaded(false)
+_isAttached(false)
 {
 const size_t curConnections = 

[Libreoffice-bugs] [Bug 107294] [EDITING] When pasting large text in a table, hangs then nothing happens

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

Timur  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from Timur  ---
No repro on Windows for 32-bit 5.3.1.1. and 64-bit 5.3.2.1 and 5.4+ master. 
Please test with clean new profile and other computer if you can and write your
OS.

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


[Libreoffice-bugs] [Bug 107299] New: New Template Manager help content issues

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

Bug ID: 107299
   Summary: New Template Manager help content issues
   Product: LibreOffice
   Version: 5.4.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mi...@filmsi.net
CC: olivier.hal...@documentfoundation.org

Description:
The added Template Manager help content has several issues:
- several times shortcuts are used without options for macOS, like:
Press Ctrl-Shift-N or File – New Template to open the Template Manager
(macOS should have Cmd/Command instead of Ctrl)
There are other appearances as well.
- there is an unfinished sentence, supposedly a link to another help page is
missing in the sentence:
"Refer to for templates to download."

Steps to Reproduce:
1. See Pootle - helpcontent2\source\text\shared/guide.po
2.
3.

Actual Results:  
Help text is not OK for all OS.

Expected Results:
Should be true on all OS.


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:52.0)
Gecko/20100101 Firefox/52.0

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


[Libreoffice-bugs] [Bug 107298] New: Snap option "When creating or moving objects" is mis-labeled in Draw

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

Bug ID: 107298
   Summary: Snap option "When creating or moving objects" is
mis-labeled in Draw
   Product: LibreOffice
   Version: 5.3.2.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: miar...@gmail.com

Description:
The Draw/snap option labeled "When creating or moving objects" implies that
when you create or move an object, that bounding boxes will snap to grid
points, etc. But this option does the opposite. 

Steps to Reproduce:
N/A

Actual Results:  
One would expect that new objects would snap when they're created, in any
arbitrary aspect ratio. In actuality, the option:

* disables snapping on new shapes (the exact opposite!), and
* fixes the new shape's aspect ratio at 1:1, which is completely unexpected.


Expected Results:
One would expect that new objects would snap when they're created, in any
arbitrary aspect ratio. 

When a user is trying to draw a rectangle and it always comes out a square,
they'll naturally look through Draw's options. But they won't find a
corresponding option. As I did, they'll have to find the solution in a forum or
by digging in Help.


Reproducible: Always

User Profile Reset: N/A

Additional Info:
The simple fix is to rename that option:

"Aspect ratio of new shapes is 1:1"
or
"Default aspect ration of new shapes is 1:1", which hints at the keyboard
shortcut to unlock the ratio.


User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:53.0) Gecko/20100101
Firefox/53.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 107297] New: Crash in: StarBASIC::~StarBASIC()

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

Bug ID: 107297
   Summary: Crash in: StarBASIC::~StarBASIC()
   Product: LibreOffice
   Version: 5.2.6.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gti...@gmail.com

This bug was filed from the crash reporting server and is
br-dd78e6d2-a7c0-4766-8907-c08c19a85440.
=

I don't know how I got this one, maybe on Writer close. But I had crash on
paste before and restarted LO. 
This is working LO with add-ons, I can't say whether some of them caused this. 

There are 34 pages of this crash:
http://crashreport.libreoffice.org/stats/signature/StarBASIC::~StarBASIC%28%29
Newest is for LO 5.3.1.2. 

BTW: how do we sort this crash list by 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


  1   2   3   >