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

2018-05-05 Thread Zdeněk Crhonek
 sw/qa/uitest/writer_tests/formatParagraph.py |  698 +++
 1 file changed, 698 insertions(+)

New commits:
commit b6285f19d312bd967a33b5b090724f0386ef76f3
Author: Zdeněk Crhonek 
Date:   Tue Feb 6 18:19:07 2018 +0100

uitest Writer Format paragraph

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

diff --git a/sw/qa/uitest/writer_tests/formatParagraph.py 
b/sw/qa/uitest/writer_tests/formatParagraph.py
new file mode 100644
index ..0cdc32ed2ac8
--- /dev/null
+++ b/sw/qa/uitest/writer_tests/formatParagraph.py
@@ -0,0 +1,698 @@
+# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+from uitest.framework import UITestCase
+from libreoffice.uno.propertyvalue import mkPropertyValues
+from uitest.uihelper.common import get_state_as_dict, type_text
+
+import time
+from uitest.debug import sleep
+from libreoffice.uno.propertyvalue import mkPropertyValues
+from uitest.uihelper.common import select_pos
+
+class formatParagraph(UITestCase):
+
+   def test_format_paragraph_tab_indents_spacing(self):
+self.ui_test.create_doc_in_start_center("writer")
+document = self.ui_test.get_component()
+xWriterDoc = self.xUITest.getTopFocusWindow()
+xWriterEdit = xWriterDoc.getChild("writer_edit")
+
+self.ui_test.execute_dialog_through_command(".uno:ParagraphDialog")
+xDialog = self.xUITest.getTopFocusWindow()
+xTabs = xDialog.getChild("tabcontrol")
+select_pos(xTabs, "0")
+
+xBeforeText = xDialog.getChild("spinED_LEFTINDENT")
+xAfterText = xDialog.getChild("spinED_RIGHTINDENT")
+xFirstLine = xDialog.getChild("spinED_FLINEINDENT")
+xAutomaticChk = xDialog.getChild("checkCB_AUTO")
+xAbovePar = xDialog.getChild("spinED_TOPDIST")
+xBelowPar = xDialog.getChild("spinED_BOTTOMDIST")
+xChkspace = xDialog.getChild("checkCB_CONTEXTUALSPACING")
+xLineSpacing = xDialog.getChild("comboLB_LINEDIST")
+xActivate = xDialog.getChild("checkCB_REGISTER")
+
+xBeforeText.executeAction("UP", tuple())
+xAfterText.executeAction("UP", tuple())
+xFirstLine.executeAction("UP", tuple())
+xAutomaticChk.executeAction("CLICK", tuple())
+xAbovePar.executeAction("UP", tuple())
+xBelowPar.executeAction("UP", tuple())
+xChkspace.executeAction("CLICK", tuple())
+props = {"TEXT": "Double"}
+actionProps = mkPropertyValues(props)
+xLineSpacing.executeAction("SELECT", actionProps)
+xActivate.executeAction("CLICK", tuple())
+
+xOK = xDialog.getChild("ok")
+xOK.executeAction("CLICK", tuple())
+
+self.ui_test.execute_dialog_through_command(".uno:ParagraphDialog")
+xDialog = self.xUITest.getTopFocusWindow()
+xTabs = xDialog.getChild("tabcontrol")
+select_pos(xTabs, "0")
+xBeforeText = xDialog.getChild("spinED_LEFTINDENT")
+xAfterText = xDialog.getChild("spinED_RIGHTINDENT")
+xFirstLine = xDialog.getChild("spinED_FLINEINDENT")
+xAutomaticChk = xDialog.getChild("checkCB_AUTO")
+xAbovePar = xDialog.getChild("spinED_TOPDIST")
+xBelowPar = xDialog.getChild("spinED_BOTTOMDIST")
+xChkspace = xDialog.getChild("checkCB_CONTEXTUALSPACING")
+xLineSpacing = xDialog.getChild("comboLB_LINEDIST")
+xActivate = xDialog.getChild("checkCB_REGISTER")
+
+self.assertEqual(get_state_as_dict(xBeforeText)["Text"], "0.50 ch")
+self.assertEqual(get_state_as_dict(xAfterText)["Text"], "0.50 ch")
+self.assertEqual(get_state_as_dict(xFirstLine)["Text"], "0.50 ch")
+self.assertEqual(get_state_as_dict(xAutomaticChk)["Selected"], "true")
+self.assertEqual(get_state_as_dict(xAbovePar)["Text"], "0.50 line")
+self.assertEqual(get_state_as_dict(xBelowPar)["Text"], "0.50 line")
+self.assertEqual(get_state_as_dict(xChkspace)["Selected"], "true")
+self.assertEqual(get_state_as_dict(xLineSpacing)["SelectEntryText"], 
"Double")
+self.assertEqual(get_state_as_dict(xActivate)["Selected"], "true")
+
+xCanc = xDialog.getChild("cancel")
+self.ui_test.close_dialog_through_button(xCanc)
+
+self.ui_test.close_doc()
+
+   def test_format_paragraph_tab_alignment(self):
+self.ui_test.create_doc_in_start_center("writer")
+document = self.ui_test.get_component()
+xWriterDoc = self.xUITest.getTopFocusWindow()
+xWriterEdit = xWriterDoc.getChild("writer_edit")
+
+

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

2018-05-05 Thread Zdeněk Crhonek
 sc/qa/uitest/calc_tests/naturalSort.py |  113 +
 1 file changed, 113 insertions(+)

New commits:
commit 4e6cbbee9f3e962beef142f332c7bbcf9699ff70
Author: Zdeněk Crhonek 
Date:   Mon Apr 23 15:27:05 2018 +0200

uitest - Calc - natural sort

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

diff --git a/sc/qa/uitest/calc_tests/naturalSort.py 
b/sc/qa/uitest/calc_tests/naturalSort.py
new file mode 100644
index ..bd583a3c9a2c
--- /dev/null
+++ b/sc/qa/uitest/calc_tests/naturalSort.py
@@ -0,0 +1,113 @@
+# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+from uitest.framework import UITestCase
+from uitest.uihelper.common import get_state_as_dict
+from uitest.uihelper.common import select_pos
+from uitest.uihelper.calc import enter_text_to_cell
+from libreoffice.calc.document import get_sheet_from_doc
+from libreoffice.calc.conditional_format import 
get_conditional_format_from_sheet
+from uitest.debug import sleep
+from libreoffice.calc.document import get_cell_by_position
+from libreoffice.uno.propertyvalue import mkPropertyValues
+#Testcases Sorting TCS_Sorting
+
+class CalcNaturalSorting(UITestCase):
+
+def test_natural_sorting_rows(self):
+calc_doc = self.ui_test.create_doc_in_start_center("calc")
+xCalcDoc = self.xUITest.getTopFocusWindow()
+gridwin = xCalcDoc.getChild("grid_window")
+document = self.ui_test.get_component()
+#enter data
+enter_text_to_cell(gridwin, "A1", "MW100SSMOU456.996JIL4")
+enter_text_to_cell(gridwin, "A2", "MW180SSMOU456.996JIL4")
+enter_text_to_cell(gridwin, "A3", "MW110SSMOU456.993JIL4")
+enter_text_to_cell(gridwin, "A4", "MW180SSMOU456.994JIL4")
+enter_text_to_cell(gridwin, "A5", "MW101SSMOU456.996JIL4")
+#Open sort dialog by DATA - SORT
+self.ui_test.execute_dialog_through_command(".uno:DataSort")
+xDialog = self.xUITest.getTopFocusWindow()
+xTabs = xDialog.getChild("tabcontrol")
+select_pos(xTabs, "0")
+xNatural = xDialog.getChild("naturalsort")
+xNatural.executeAction("CLICK", tuple())
+xOk = xDialog.getChild("ok")
+self.ui_test.close_dialog_through_button(xOk)
+#Verify
+self.assertEqual(get_cell_by_position(document, 0, 0, 0).getString(), 
"MW100SSMOU456.996JIL4")
+self.assertEqual(get_cell_by_position(document, 0, 0, 1).getString(), 
"MW101SSMOU456.996JIL4")
+self.assertEqual(get_cell_by_position(document, 0, 0, 2).getString(), 
"MW110SSMOU456.993JIL4")
+self.assertEqual(get_cell_by_position(document, 0, 0, 3).getString(), 
"MW180SSMOU456.994JIL4")
+self.assertEqual(get_cell_by_position(document, 0, 0, 4).getString(), 
"MW180SSMOU456.996JIL4")
+#UNDO
+self.xUITest.executeCommand(".uno:Undo")
+#Verify
+self.assertEqual(get_cell_by_position(document, 0, 0, 0).getString(), 
"MW100SSMOU456.996JIL4")
+self.assertEqual(get_cell_by_position(document, 0, 0, 1).getString(), 
"MW180SSMOU456.996JIL4")
+self.assertEqual(get_cell_by_position(document, 0, 0, 2).getString(), 
"MW110SSMOU456.993JIL4")
+self.assertEqual(get_cell_by_position(document, 0, 0, 3).getString(), 
"MW180SSMOU456.994JIL4")
+self.assertEqual(get_cell_by_position(document, 0, 0, 4).getString(), 
"MW101SSMOU456.996JIL4")
+#enter data
+enter_text_to_cell(gridwin, "D1", "MW-2")
+enter_text_to_cell(gridwin, "D2", "MW-20")
+enter_text_to_cell(gridwin, "D3", "MW-1")
+enter_text_to_cell(gridwin, "D4", "MW-18")
+
+gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "D1:D4"}))
+
+#Open sort dialog by DATA - SORT
+self.ui_test.execute_dialog_through_command(".uno:DataSort")
+xDialog = self.xUITest.getTopFocusWindow()
+xTabs = xDialog.getChild("tabcontrol")
+select_pos(xTabs, "1")
+xNatural = xDialog.getChild("naturalsort")
+if (get_state_as_dict(xNatural)["Selected"]) == "false":
+xNatural.executeAction("CLICK", tuple())
+xOk = xDialog.getChild("ok")
+self.ui_test.close_dialog_through_button(xOk)
+
+self.assertEqual(get_cell_by_position(document, 0, 3, 0).getString(), 
"MW-1")
+self.assertEqual(get_cell_by_position(document, 0, 3, 1).getString(), 
"MW-2")
+self.assertEqual(get_cell_by_position(document, 0, 3, 2).getString(), 
"MW-18")
+self.assertEqual(get_cell_by_position(document, 0, 3, 3).getString(), 
"MW-20")
+
+

[Libreoffice-bugs] [Bug 99773] EDITING: calc freezes if sorting in natural mode

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

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

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

uitest for bug tdf#99773

It will be available in 6.1.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 99773] EDITING: calc freezes if sorting in natural mode

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.1.0

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


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

2018-05-05 Thread Zdeněk Crhonek
 sc/qa/uitest/calc_tests/tdf99773.py |   52 
 1 file changed, 52 insertions(+)

New commits:
commit c64dd1afb95b4945b438ee60ef811703413e416d
Author: Zdeněk Crhonek 
Date:   Mon Apr 23 15:36:43 2018 +0200

uitest for bug tdf#99773

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

diff --git a/sc/qa/uitest/calc_tests/tdf99773.py 
b/sc/qa/uitest/calc_tests/tdf99773.py
new file mode 100644
index ..099788fa1428
--- /dev/null
+++ b/sc/qa/uitest/calc_tests/tdf99773.py
@@ -0,0 +1,52 @@
+# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+from uitest.framework import UITestCase
+from uitest.uihelper.common import get_state_as_dict
+from uitest.uihelper.common import select_pos
+from uitest.uihelper.calc import enter_text_to_cell
+from libreoffice.calc.document import get_sheet_from_doc
+from libreoffice.calc.conditional_format import 
get_conditional_format_from_sheet
+from uitest.debug import sleep
+from libreoffice.calc.document import get_cell_by_position
+from libreoffice.uno.propertyvalue import mkPropertyValues
+#Bug 99773 - EDITING: calc freezes if sorting in natural mode
+
+class tdf99773(UITestCase):
+def test_tdf99773_natural_sorting_space(self):
+calc_doc = self.ui_test.create_doc_in_start_center("calc")
+xCalcDoc = self.xUITest.getTopFocusWindow()
+gridwin = xCalcDoc.getChild("grid_window")
+document = self.ui_test.get_component()
+#enter data
+enter_text_to_cell(gridwin, "A1", "A 11")
+enter_text_to_cell(gridwin, "A2", "A 2")
+enter_text_to_cell(gridwin, "A3", "B 2")
+enter_text_to_cell(gridwin, "A4", "A 5")
+enter_text_to_cell(gridwin, "A5", "A 50")
+enter_text_to_cell(gridwin, "A6", "B 20")
+
+gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "A1:A6"}))
+#Open sort dialog by DATA - SORT
+self.ui_test.execute_dialog_through_command(".uno:DataSort")
+xDialog = self.xUITest.getTopFocusWindow()
+xTabs = xDialog.getChild("tabcontrol")
+select_pos(xTabs, "1")
+xNatural = xDialog.getChild("naturalsort")
+if (get_state_as_dict(xNatural)["Selected"]) == "false":
+xNatural.executeAction("CLICK", tuple())
+xOk = xDialog.getChild("ok")
+self.ui_test.close_dialog_through_button(xOk)
+#Verify
+self.assertEqual(get_cell_by_position(document, 0, 0, 0).getString(), 
"A 2")
+self.assertEqual(get_cell_by_position(document, 0, 0, 1).getString(), 
"A 5")
+self.assertEqual(get_cell_by_position(document, 0, 0, 2).getString(), 
"A 11")
+self.assertEqual(get_cell_by_position(document, 0, 0, 3).getString(), 
"A 50")
+self.assertEqual(get_cell_by_position(document, 0, 0, 4).getString(), 
"B 2")
+self.assertEqual(get_cell_by_position(document, 0, 0, 5).getString(), 
"B 20")
+
+self.ui_test.close_doc()
+# vim: set shiftwidth=4 softtabstop=4 expandtab:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 99627] Calc freezes when applying natural sorting on text columns

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

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

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

uitest for bug tdf#99627

It will be available in 6.1.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 99627] Calc freezes when applying natural sorting on text columns

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.1.0

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


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

2018-05-05 Thread Zdeněk Crhonek
 sc/qa/uitest/calc_tests/data/tdf99627.ods |binary
 sc/qa/uitest/calc_tests/tdf99627.py   |   52 ++
 2 files changed, 52 insertions(+)

New commits:
commit 6898da014b1db1f5b8d4a21af204b04cc7915a92
Author: Zdeněk Crhonek 
Date:   Tue Apr 24 15:10:02 2018 +0200

uitest for bug tdf#99627

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

diff --git a/sc/qa/uitest/calc_tests/data/tdf99627.ods 
b/sc/qa/uitest/calc_tests/data/tdf99627.ods
new file mode 100644
index ..84c4e513415f
Binary files /dev/null and b/sc/qa/uitest/calc_tests/data/tdf99627.ods differ
diff --git a/sc/qa/uitest/calc_tests/tdf99627.py 
b/sc/qa/uitest/calc_tests/tdf99627.py
new file mode 100644
index ..4f95a9e964ed
--- /dev/null
+++ b/sc/qa/uitest/calc_tests/tdf99627.py
@@ -0,0 +1,52 @@
+# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+from uitest.framework import UITestCase
+from uitest.uihelper.common import get_state_as_dict
+from uitest.uihelper.common import select_pos
+from uitest.uihelper.calc import enter_text_to_cell
+from libreoffice.calc.document import get_cell_by_position
+from libreoffice.uno.propertyvalue import mkPropertyValues
+import org.libreoffice.unotest
+import pathlib
+#Bug 99627 - Calc freezes when applying natural sorting on text columns
+
+def get_url_for_data_file(file_name):
+return 
pathlib.Path(org.libreoffice.unotest.makeCopyFromTDOC(file_name)).as_uri()
+
+class tdf99627(UITestCase):
+def test_td99627_natural_sort(self):
+calc_doc = 
self.ui_test.load_file(get_url_for_data_file("tdf99627.ods"))
+xCalcDoc = self.xUITest.getTopFocusWindow()
+gridwin = xCalcDoc.getChild("grid_window")
+document = self.ui_test.get_component()
+
+gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "A1"}))
+
+#Open sort dialog by DATA - SORT
+self.ui_test.execute_dialog_through_command(".uno:DataSort")
+xDialog = self.xUITest.getTopFocusWindow()
+xTabs = xDialog.getChild("tabcontrol")
+select_pos(xTabs, "1")
+xNatural = xDialog.getChild("naturalsort")
+xdown = xDialog.getChild("down")
+xNatural.executeAction("CLICK", tuple())
+select_pos(xTabs, "0")
+xdown.executeAction("CLICK", tuple())
+xOk = xDialog.getChild("ok")
+self.ui_test.close_dialog_through_button(xOk)
+#Verify
+self.assertEqual(get_cell_by_position(document, 0, 0, 1).getString(), 
"2998")
+self.assertEqual(get_cell_by_position(document, 0, 0, 
2998).getString(), "1")
+#UNDO
+self.xUITest.executeCommand(".uno:Undo")
+#Verify
+self.assertEqual(get_cell_by_position(document, 0, 0, 1).getString(), 
"1")
+self.assertEqual(get_cell_by_position(document, 0, 0, 
2998).getString(), "2998")
+
+self.ui_test.close_doc()
+
+# vim: set shiftwidth=4 softtabstop=4 expandtab:
\ No newline at end of file
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-05-05 Thread Zdeněk Crhonek
 sc/qa/uitest/calc_tests/tdf79983.py |   71 
 1 file changed, 71 insertions(+)

New commits:
commit b75fde430a01fc165e69ccf437fbc262fcfc1926
Author: Zdeněk Crhonek 
Date:   Tue Apr 24 21:54:45 2018 +0200

uitest for bug tdf#79983

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

diff --git a/sc/qa/uitest/calc_tests/tdf79983.py 
b/sc/qa/uitest/calc_tests/tdf79983.py
new file mode 100644
index ..f4afc77eaf26
--- /dev/null
+++ b/sc/qa/uitest/calc_tests/tdf79983.py
@@ -0,0 +1,71 @@
+# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+from uitest.framework import UITestCase
+from uitest.uihelper.common import get_state_as_dict
+from uitest.uihelper.common import select_pos
+from uitest.uihelper.calc import enter_text_to_cell
+from libreoffice.calc.document import get_cell_by_position
+from libreoffice.uno.propertyvalue import mkPropertyValues
+from uitest.debug import sleep
+#Bug 79983 - Calc sort lists aren't case sensitive
+
+class tdf79983(UITestCase):
+def test_tdf79983_sort_list_case_sensitive(self):
+calc_doc = self.ui_test.create_doc_in_start_center("calc")
+xCalcDoc = self.xUITest.getTopFocusWindow()
+gridwin = xCalcDoc.getChild("grid_window")
+document = self.ui_test.get_component()
+
+enter_text_to_cell(gridwin, "A1", "AAA")
+enter_text_to_cell(gridwin, "A2", "BBB")
+enter_text_to_cell(gridwin, "A3", "CCC")
+enter_text_to_cell(gridwin, "A4", "DDD")
+gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "A1:A4"}))
+
+#Tools / Options / LibreOffice Calc / Sort Lists
+self.ui_test.execute_dialog_through_command(".uno:OptionsTreeDialog")  
#optionsdialog
+xDialogOpt = self.xUITest.getTopFocusWindow()
+
+xPages = xDialogOpt.getChild("pages")
+xCalcEntry = xPages.getChild('3') # Calc
+xCalcEntry.executeAction("EXPAND", tuple())
+xCalcSortEntry = xCalcEntry.getChild('5')
+xCalcSortEntry.executeAction("SELECT", tuple())  #Sort List
+#copy new list from selected cells
+xcopy = xDialogOpt.getChild("copy")
+xcopy.executeAction("CLICK", tuple())
+xOKBtn = xDialogOpt.getChild("ok")
+self.ui_test.close_dialog_through_button(xOKBtn)
+
+gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "A1:A4"}))
+gridwin.executeAction("TYPE", mkPropertyValues({"KEYCODE": "DELETE"}))
+
+enter_text_to_cell(gridwin, "A1", "AAA")
+gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "A1:A4"}))
+#fill down
+self.ui_test.execute_dialog_through_command(".uno:FillSeries")
+xDialog = self.xUITest.getTopFocusWindow()
+xautofill = xDialog.getChild("autofill")
+xautofill.executeAction("CLICK", tuple())
+xOK = xDialog.getChild("ok")
+self.ui_test.close_dialog_through_button(xOK)
+#verify
+self.assertEqual(get_cell_by_position(document, 0, 0, 0).getString(), 
"AAA")
+self.assertEqual(get_cell_by_position(document, 0, 0, 1).getString(), 
"BBB")
+self.assertEqual(get_cell_by_position(document, 0, 0, 2).getString(), 
"CCC")
+self.assertEqual(get_cell_by_position(document, 0, 0, 3).getString(), 
"DDD")
+#UNDO
+self.xUITest.executeCommand(".uno:Undo")
+#verify
+self.assertEqual(get_cell_by_position(document, 0, 0, 0).getString(), 
"AAA")
+self.assertEqual(get_cell_by_position(document, 0, 0, 1).getString(), 
"")
+self.assertEqual(get_cell_by_position(document, 0, 0, 2).getString(), 
"")
+self.assertEqual(get_cell_by_position(document, 0, 0, 3).getString(), 
"")
+
+self.ui_test.close_doc()
+
+# vim: set shiftwidth=4 softtabstop=4 expandtab:
\ No newline at end of file
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-05-05 Thread Zdeněk Crhonek
 sc/qa/uitest/calc_tests/data/tdf95192.ods |binary
 sc/qa/uitest/calc_tests/tdf95192.py   |   52 ++
 2 files changed, 52 insertions(+)

New commits:
commit c5f74b7d567b1a1ac952c14b77404031290a96d0
Author: Zdeněk Crhonek 
Date:   Tue Apr 24 15:37:48 2018 +0200

uitest for bug tdf#95192

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

diff --git a/sc/qa/uitest/calc_tests/data/tdf95192.ods 
b/sc/qa/uitest/calc_tests/data/tdf95192.ods
new file mode 100644
index ..8cee74288ae7
Binary files /dev/null and b/sc/qa/uitest/calc_tests/data/tdf95192.ods differ
diff --git a/sc/qa/uitest/calc_tests/tdf95192.py 
b/sc/qa/uitest/calc_tests/tdf95192.py
new file mode 100644
index ..5e1292d9d3b9
--- /dev/null
+++ b/sc/qa/uitest/calc_tests/tdf95192.py
@@ -0,0 +1,52 @@
+# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+from uitest.framework import UITestCase
+from uitest.uihelper.common import get_state_as_dict
+from uitest.uihelper.common import select_pos
+from uitest.uihelper.calc import enter_text_to_cell
+from libreoffice.calc.document import get_cell_by_position
+from libreoffice.uno.propertyvalue import mkPropertyValues
+import org.libreoffice.unotest
+import pathlib
+#Bug 95192 - SORTING Natural sorting not working with non-letter,non-number 
content
+
+def get_url_for_data_file(file_name):
+return 
pathlib.Path(org.libreoffice.unotest.makeCopyFromTDOC(file_name)).as_uri()
+
+class tdf95192(UITestCase):
+def test_td99627_natural_sort(self):
+calc_doc = 
self.ui_test.load_file(get_url_for_data_file("tdf95192.ods"))
+xCalcDoc = self.xUITest.getTopFocusWindow()
+gridwin = xCalcDoc.getChild("grid_window")
+document = self.ui_test.get_component()
+
+gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "A1"}))
+
+#Open sort dialog by DATA - SORT
+self.ui_test.execute_dialog_through_command(".uno:DataSort")
+xDialog = self.xUITest.getTopFocusWindow()
+xTabs = xDialog.getChild("tabcontrol")
+select_pos(xTabs, "1")
+xNatural = xDialog.getChild("naturalsort")
+xNatural.executeAction("CLICK", tuple())
+xOk = xDialog.getChild("ok")
+self.ui_test.close_dialog_through_button(xOk)
+#Verify
+self.assertEqual(get_cell_by_position(document, 0, 0, 0).getString(), 
"Sal. Capra 1/17")
+self.assertEqual(get_cell_by_position(document, 0, 0, 1).getString(), 
"Sal. Capra 1/20")
+self.assertEqual(get_cell_by_position(document, 0, 0, 2).getString(), 
"Sal. Oregina 1/2")
+self.assertEqual(get_cell_by_position(document, 0, 0, 41).getString(), 
"Vico Chiuso Cinque Santi 18/10")
+#UNDO
+self.xUITest.executeCommand(".uno:Undo")
+#Verify
+self.assertEqual(get_cell_by_position(document, 0, 0, 0).getString(), 
"Sal. Oregina 1/2")
+self.assertEqual(get_cell_by_position(document, 0, 0, 1).getString(), 
"Via A. Centurione 11/7")
+self.assertEqual(get_cell_by_position(document, 0, 0, 41).getString(), 
"Vico Chiuso Cinque Santi 18/10")
+
+self.ui_test.close_doc()
+
+# vim: set shiftwidth=4 softtabstop=4 expandtab:
\ No newline at end of file
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-05-05 Thread Zdeněk Crhonek
 sc/qa/uitest/calc_tests/data/tdf99208.ods |binary
 sc/qa/uitest/calc_tests/tdf99208.py   |   68 ++
 2 files changed, 68 insertions(+)

New commits:
commit 98821620c99f66b9e30db225a2d28db7b28ba013
Author: Zdeněk Crhonek 
Date:   Thu May 3 17:28:16 2018 +0200

uitest for bug tdf#99208

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

diff --git a/sc/qa/uitest/calc_tests/data/tdf99208.ods 
b/sc/qa/uitest/calc_tests/data/tdf99208.ods
new file mode 100644
index ..2767e773151b
Binary files /dev/null and b/sc/qa/uitest/calc_tests/data/tdf99208.ods differ
diff --git a/sc/qa/uitest/calc_tests/tdf99208.py 
b/sc/qa/uitest/calc_tests/tdf99208.py
new file mode 100644
index ..94fed01c3ae2
--- /dev/null
+++ b/sc/qa/uitest/calc_tests/tdf99208.py
@@ -0,0 +1,68 @@
+# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+from uitest.framework import UITestCase
+from uitest.uihelper.common import get_state_as_dict
+from uitest.uihelper.common import select_pos
+from uitest.uihelper.calc import enter_text_to_cell
+from libreoffice.calc.document import get_cell_by_position
+from libreoffice.uno.propertyvalue import mkPropertyValues
+import org.libreoffice.unotest
+import pathlib
+#Bug 99208 - Spreadsheet sort hangs
+def get_url_for_data_file(file_name):
+return 
pathlib.Path(org.libreoffice.unotest.makeCopyFromTDOC(file_name)).as_uri()
+
+class tdf99208(UITestCase):
+def test_td99627_natural_sort(self):
+calc_doc = 
self.ui_test.load_file(get_url_for_data_file("tdf99208.ods"))
+xCalcDoc = self.xUITest.getTopFocusWindow()
+gridwin = xCalcDoc.getChild("grid_window")
+document = self.ui_test.get_component()
+#select A3:C245
+gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "A1:C245"}))
+
+#Menu 'Data -> Sort
+#Column A - Ascending' 
+self.ui_test.execute_dialog_through_command(".uno:DataSort")
+xDialog = self.xUITest.getTopFocusWindow()
+xTabs = xDialog.getChild("tabcontrol")
+select_pos(xTabs, "1")
+xNatural = xDialog.getChild("naturalsort")
+xtopdown = xDialog.getChild("topdown")
+xHeader = xDialog.getChild("header")
+xFormats = xDialog.getChild("formats")
+if (get_state_as_dict(xNatural)["Selected"]) == "false":
+xNatural.executeAction("CLICK", tuple())
+if (get_state_as_dict(xHeader)["Selected"]) == "false":
+xHeader.executeAction("CLICK", tuple())
+if (get_state_as_dict(xFormats)["Selected"]) == "false":
+xFormats.executeAction("CLICK", tuple())
+xtopdown.executeAction("CLICK", tuple())
+select_pos(xTabs, "0")
+xSortKey1 = xDialog.getChild("sortlb")
+xAsc = xDialog.getChild("up")
+props = {"TEXT": "FODMAP"}
+actionProps = mkPropertyValues(props)
+xSortKey1.executeAction("SELECT", actionProps)
+xAsc.executeAction("CLICK", tuple())
+xOk = xDialog.getChild("ok")
+self.ui_test.close_dialog_through_button(xOk)
+#Verify Expected: Values column B sorted ascending, column "control" 
unsorted
+self.assertEqual(get_cell_by_position(document, 0, 0, 0).getString(), 
"FODMAP")
+self.assertEqual(get_cell_by_position(document, 0, 0, 1).getString(), 
"agave")
+self.assertEqual(get_cell_by_position(document, 0, 0, 2).getString(), 
"almond milk")
+self.assertEqual(get_cell_by_position(document, 0, 0, 
244).getString(), "zucchini")
+# UNDO
+self.xUITest.executeCommand(".uno:Undo")
+# Verify
+self.assertEqual(get_cell_by_position(document, 0, 0, 0).getString(), 
"FODMAP")
+self.assertEqual(get_cell_by_position(document, 0, 0, 1).getString(), 
"beef (grass fed, no breadcrumbs)")
+self.assertEqual(get_cell_by_position(document, 0, 0, 
244).getString(), "salsa")
+
+self.ui_test.close_doc()
+
+# vim: set shiftwidth=4 softtabstop=4 expandtab:
\ No newline at end of file
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117451] New: For certain fonts, text copied from PDF document created by Writer is garbled on paste

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

Bug ID: 117451
   Summary: For certain fonts, text copied from PDF document
created by Writer is garbled on paste
   Product: LibreOffice
   Version: 6.0.0.3 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mkf...@gmail.com

Description:
People often copy/paste *from* a PDF document. When using certain fonts in
LibreOffice, and exporting to PDF, then copy/paste from that PDF, the resulting
text has all sorts of character replacements.

Steps to Reproduce:
1. Create YourDocument.odt
2. Use Calibri font (default for MSWord, often requested for resumes), or
Carlito (metric equivalent to Calibri)
3. Export as / Export as PDF / save (as) YourDocument.pdf
4. Open YourDocument.pdf
5. Select text / copy text / paste text into notepad



Actual Results:  
Characters have been replaced with garbage characters.

Now change the font to Times New Roman/Arial/Courier New. Problem disappears.

Expected Results:
Pasted text should be what is visible in the PDF document created by
LibreOffice Writer.


Reproducible: Always


User Profile Reset: No



Additional Info:


User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101
Firefox/59.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


New Defects reported by Coverity Scan for LibreOffice

2018-05-05 Thread scan-admin
Hi,

Please find the latest report on new defect(s) introduced to LibreOffice found 
with Coverity Scan.

11 new defect(s) introduced to LibreOffice found with Coverity Scan.
8 defect(s), reported by Coverity Scan earlier, were marked fixed in the recent 
build analyzed by Coverity Scan.

New defect(s) Reported-by: Coverity Scan
Showing 11 of 11 defect(s)


** CID 1435443:  API usage errors  (SWAPPED_ARGUMENTS)



*** CID 1435443:  API usage errors  (SWAPPED_ARGUMENTS)
/svx/source/accessibility/svxrectctaccessiblecontext.cxx: 854 in 
RectCtlAccessibleContext::FireChildFocus(RectPoint)()
848 }
849 else
850 {
851 Any aOld;
852 Any aNew;
853 aNew <<= AccessibleStateType::FOCUSED;
>>> CID 1435443:  API usage errors  (SWAPPED_ARGUMENTS)
>>> The positions of arguments in the call to "NotifyAccessibleEvent" do 
>>> not match the ordering of the parameters:
* "aNew" is passed to "_rOldValue"
* "aOld" is passed to "_rNewValue"
854 NotifyAccessibleEvent(AccessibleEventId::STATE_CHANGED, 
aNew, aOld);
855 }
856 }
857 else
858 mnSelectedChild = NOCHILDSELECTED;
859 }

** CID 1435442:  Error handling issues  (CHECKED_RETURN)
/vcl/source/image/ImplImageTree.cxx: 611 in ImplImageTree::getNameAccess()()



*** CID 1435442:  Error handling issues  (CHECKED_RETURN)
/vcl/source/image/ImplImageTree.cxx: 611 in ImplImageTree::getNameAccess()()
605 }
606 return rNameAccess.is();
607 }
608 
609 css::uno::Reference const & 
ImplImageTree::getNameAccess()
610 {
>>> CID 1435442:  Error handling issues  (CHECKED_RETURN)
>>> Calling "checkPathAccess" without checking return value (as is done 
>>> elsewhere 4 out of 5 times).
611 checkPathAccess();
612 return getCurrentIconSet().maNameAccess;
613 }
614 

** CID 1435441:(UNINIT_CTOR)
/usr/include/c++/7/bits/regex.h: 2460 in 
std::__cxx11::regex_iterator<__gnu_cxx::__normal_iterator, 
std::allocator>>, wchar_t, 
std::__cxx11::regex_traits>::regex_iterator()()
/usr/include/c++/7/bits/regex.h: 2460 in 
std::__cxx11::regex_iterator<__gnu_cxx::__normal_iterator, 
std::allocator>>, char, 
std::__cxx11::regex_traits>::regex_iterator()()



*** CID 1435441:(UNINIT_CTOR)
/usr/include/c++/7/bits/regex.h: 2460 in 
std::__cxx11::regex_iterator<__gnu_cxx::__normal_iterator, 
std::allocator>>, wchar_t, 
std::__cxx11::regex_traits>::regex_iterator()()
2454   /**
2455* @brief Provides a singular iterator, useful for indicating
2456* one-past-the-end of a range.
2457*/
2458   regex_iterator()
2459   : _M_pregex()
>>> CID 1435441:(UNINIT_CTOR)
>>> Non-static class member "_M_flags" is not initialized in this 
>>> constructor nor in any functions that it calls.
2460   { }
2461 
2462   /**
2463* Constructs a %regex_iterator...
2464* @param __a  [IN] The start of a text range to search.
2465* @param __b  [IN] One-past-the-end of the text range to search.
/usr/include/c++/7/bits/regex.h: 2460 in 
std::__cxx11::regex_iterator<__gnu_cxx::__normal_iterator, 
std::allocator>>, char, 
std::__cxx11::regex_traits>::regex_iterator()()
2454   /**
2455* @brief Provides a singular iterator, useful for indicating
2456* one-past-the-end of a range.
2457*/
2458   regex_iterator()
2459   : _M_pregex()
>>> CID 1435441:(UNINIT_CTOR)
>>> Non-static class member "_M_flags" is not initialized in this 
>>> constructor nor in any functions that it calls.
2460   { }
2461 
2462   /**
2463* Constructs a %regex_iterator...
2464* @param __a  [IN] The start of a text range to search.
2465* @param __b  [IN] One-past-the-end of the text range to search.

** CID 1435440:  FindBugs: Dodgy code  (FB.URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD)
/qadevOOo/tests/java/ifc/chart/_ChartDataPointProperties.java: 71 in ()



*** CID 1435440:  FindBugs: Dodgy code  
(FB.URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD)
/qadevOOo/tests/java/ifc/chart/_ChartDataPointProperties.java: 71 in ()
65 if (Line == null) throw new StatusException(Status.failed
66 ("Relation 'LINE' not found"));
67 
68 doc.setDiagram(Line);
69 }
70 
>>> CID 1435440:  FindBugs: Dodgy code  
>>> 

[Libreoffice-bugs] [Bug 54442] Fontwork flattened last letter

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

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

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 37808] Button 'Word Justify' works incorrectly on fontwork

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

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

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 61576] fontwork trailing space

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

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

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 107275] Make .uno:OriginalSize work in Writer

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

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

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 35152] fontwork cursor problem: there already is cursor, but we need click additionaly

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

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

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 107639] User feedback that slide transition doesnt work due to OpenGL version

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

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

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 99156] Text in rotated rectangle is always horizontal

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

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

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 92796] [ODF] Writer does not remove unused page background image/ bitmap

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

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

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 99978] MariaDB/MySQL - JDBC: Field not shown in table/query, if set ON UPDATE CURRENT_TIMESTAMP

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

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

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 104594] Wrong text joining behavior in fontwork

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

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

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 107409] FILESAVE DOC: Formula's seem to be (badly) rendered EMF images

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

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

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 117450] New: Repagination on FileOpen in Writer makes drawings disappear.

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

Bug ID: 117450
   Summary: Repagination on FileOpen in Writer makes drawings
disappear.
   Product: LibreOffice
   Version: 6.0.3.2 release
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: darvdomb...@hotmail.com

Description:
Drawings that are anchored to a page near the end of a chapter, in a file where
chapters are set to begin on a right-hand page, will disappear immediately
after the file is opened, as if the image was deleted.

Steps to Reproduce:
1. Create a book-length file with drawings near the chapter ends. (Mine is
about 160 pages.)
2. Set the chapters to start on a right hand page. (This automatically
generates blank pages between chapters if necessary.)
3. Anchor the drawings to "Page." (In my case, I have a couple drawings that
take up the whole page, so that alternative types of anchors do not work.)

Actual Results:  
When I open the file, the drawings every so briefly display on the file, and
disappear while the file is being paginated.

Expected Results:
The drawings should remain the the place where they were positioned.


Reproducible: Always


User Profile Reset: Yes



Additional Info:
As a work-around, I have attempted to select and cut the drawing while it is
still visible before the pagination is complete. This tends to crash
LibreOffice, but it worked well in the NeoOffice derivative, which seems to
have a more pedantic repagination process. Unfortunately, that work-around can
only be used for one drawing.

Version: 6.0.3.2
Build ID: 8f48d515416608e3a835360314dac7e47fd0b821
CPU threads: 4; OS: Mac OS X 10.13.4; UI render: default; 
Locale: en-US (en_US.UTF-8); Calc: group


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

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


[Libreoffice-commits] core.git: helpcontent2

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

New commits:
commit e89dc1b6819b3a2d67d2cc077ca7ddee2261998e
Author: Olivier Hallot 
Date:   Tue May 1 14:36:14 2018 -0300

Updated core
Project: help  6de0f39ea58f371de25f22ba95bd8996b08ca09d

De-dup object ID

Just in case ...

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

diff --git a/helpcontent2 b/helpcontent2
index a154b3f59a7d..6de0f39ea58f 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit a154b3f59a7d6e6cf17e585521592bf96b42a20e
+Subproject commit 6de0f39ea58f371de25f22ba95bd8996b08ca09d
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117449] Text boxes positions and sizes are incorrect

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

--- Comment #6 from Ryszard  ---
Created attachment 141922
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141922=edit
actuall document2

-- 
You are receiving this mail because:
You 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] help.git: source/text

2018-05-05 Thread Olivier Hallot
 source/text/scalc/06/calcsamplefiles.xhp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 6de0f39ea58f371de25f22ba95bd8996b08ca09d
Author: Olivier Hallot 
Date:   Tue May 1 14:36:14 2018 -0300

De-dup object ID

Just in case ...

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

diff --git a/source/text/scalc/06/calcsamplefiles.xhp 
b/source/text/scalc/06/calcsamplefiles.xhp
index c7e3eccf6..230baab03 100644
--- a/source/text/scalc/06/calcsamplefiles.xhp
+++ b/source/text/scalc/06/calcsamplefiles.xhp
@@ -21,7 +21,7 @@
 
 
 
-
+
 
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117449] Text boxes positions and sizes are incorrect

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

--- Comment #5 from Ryszard  ---
Created attachment 141921
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141921=edit
Incorrect way Doc2

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


[Libreoffice-bugs] [Bug 117449] Text boxes positions and sizes are incorrect

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

--- Comment #4 from Ryszard  ---
Created attachment 141920
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141920=edit
correct doc 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 117449] Text boxes positions and sizes are incorrect

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

--- Comment #3 from Ryszard  ---
Created attachment 141919
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141919=edit
actuall document1

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


[Libreoffice-bugs] [Bug 117449] Text boxes positions and sizes are incorrect

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

--- Comment #2 from Ryszard  ---
Created attachment 141918
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141918=edit
Incorrect way

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


[Libreoffice-bugs] [Bug 117449] Text boxes positions and sizes are incorrect

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

--- Comment #1 from Ryszard  ---
Created attachment 141917
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141917=edit
correct way

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


[Libreoffice-bugs] [Bug 117449] New: Text boxes positions and sizes are incorrect

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

Bug ID: 117449
   Summary: Text boxes positions and sizes are incorrect
   Product: LibreOffice
   Version: 5.3.0.3 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ry...@iname.com

Description:
I have files with text boxes created few years ago. Since LO 5.3 series these
files are not shows text boxes correctly, somehow now, even the boxes were
created without borders, and they using wrap through settings the spacing and
spacing to contents are affecting the size and position of text boxes.

Actual Results:  
text boxes are overlapping almost impossible to correct position of them
without resetting all spacing to 0 and wrap setting

Expected Results:
Should open file the way was created and still opens right way in last OO


Reproducible: Always


User Profile Reset: No



Additional Info:


User-Agent: Mozilla/5.0 (X11; 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


CppCheck Report Update

2018-05-05 Thread cppcheck.libreoff...@gmail.com

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


Note:
The script generating this report was run at :
2018-06-05 02:29:51 with user buildslave at host vm140 as 
/home/buildslave/source/dev-tools/cppcheck/cppcheck-report.sh -s 
/home/buildslave/source/libo-core -c /home/buildslave/source/cppcheck -w 
/home/buildslave/tmp/www

It can be found and improved here:

https://gerrit.libreoffice.org/gitweb?p=dev-tools.git;a=blob;f=cppcheck/cppcheck-report.sh


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


[Libreoffice-bugs] [Bug 117448] FILEOPEN Table in attached DOC(X) shows unexpected cell padding

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

--- Comment #2 from Aron Budea  ---
Created attachment 141916
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141916=edit
Comparison between LO 6.1alpha1 & Word 2013

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


[Libreoffice-bugs] [Bug 117448] FILEOPEN Table in attached DOC(X) shows unexpected cell padding

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

--- Comment #1 from Aron Budea  ---
Created attachment 141915
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141915=edit
Sample in DOC

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


[Libreoffice-bugs] [Bug 104444] [META] DOCX (OOXML) table-related issues

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

Aron Budea  changed:

   What|Removed |Added

 Depends on||117448


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117448
[Bug 117448] FILEOPEN Table in attached DOC(X) shows unexpected cell padding
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 112700] [META] DOC (binary) table-related issues

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

Aron Budea  changed:

   What|Removed |Added

 Depends on||117448


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117448
[Bug 117448] FILEOPEN Table in attached DOC(X) shows unexpected cell padding
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 117448] New: FILEOPEN Table in attached DOC(X) shows unexpected cell padding

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

Bug ID: 117448
   Summary: FILEOPEN Table in attached DOC(X) shows unexpected
cell padding
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: filter:doc, filter:docx
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ba...@caesar.elte.hu
Blocks: 10, 112700

Created attachment 141914
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141914=edit
Sample in DOCX

The attached simple table (based on bug 117447's table that goes missing,
except it isn't floating and has content this time) has unexpected padding in
top/bottom of cells that cuts into text. I don't know where that setting is
coming from, it's not because of padding in table properties.

Observed using LO 6.1alpha1 & 3.3.0 / Windows 7.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=10
[Bug 10] [META] DOCX (OOXML) table-related issues
https://bugs.documentfoundation.org/show_bug.cgi?id=112700
[Bug 112700] [META] DOC (binary) table-related 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 117447] FILEOPEN Floating table in attached DOC(X) is lost during import

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

Aron Budea  changed:

   What|Removed |Added

   Keywords||notBibisectable, 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 117447] FILEOPEN Floating table in attached DOC(X) is lost during import

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

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

Note that the PDF only shows one table, the missing one, because the other has
no borders, and they're both empty.

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


[Libreoffice-bugs] [Bug 117447] FILEOPEN Floating table in attached DOC(X) is lost during import

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

--- Comment #1 from Aron Budea  ---
Created attachment 141912
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141912=edit
Sample in DOC

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


[Libreoffice-bugs] [Bug 104444] [META] DOCX (OOXML) table-related issues

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

Aron Budea  changed:

   What|Removed |Added

 Depends on||117447


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117447
[Bug 117447] FILEOPEN Floating table in attached DOC(X) is lost during import
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 112700] [META] DOC (binary) table-related issues

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

Aron Budea  changed:

   What|Removed |Added

 Depends on||117447


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117447
[Bug 117447] FILEOPEN Floating table in attached DOC(X) is lost during import
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 117447] New: FILEOPEN Floating table in attached DOC(X) is lost during import

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

Bug ID: 117447
   Summary: FILEOPEN Floating table in attached DOC(X) is lost
during import
   Product: LibreOffice
   Version: 3.5.0 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: filter:doc, filter:docx
  Severity: normal
  Priority: medium
 Component: filters and storage
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ba...@caesar.elte.hu
Blocks: 10, 112700

Created attachment 141911
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141911=edit
Sample in DOCX

The attached Word document (same in DOC and DOCX formats) contains a regular
and a floating table. When opened in Writer, only the regular table is shown,
the floating table is lost upon import.

Observed using LO 6.1alpha1, 4.4.0.3 & 3.5.0.3 / Windows 7.
Both tables are imported in LO 3.3.0 (positioning is bad with DOCX, not with
DOC).
=> regression, not bibisectable


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=10
[Bug 10] [META] DOCX (OOXML) table-related issues
https://bugs.documentfoundation.org/show_bug.cgi?id=112700
[Bug 112700] [META] DOC (binary) table-related 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 117440] Assertion fails on menu closing if the comments window was previously open

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

Maxim Monastirsky  changed:

   What|Removed |Added

 CC||momonas...@gmail.com
   Hardware|x86-64 (AMD64)  |All
Summary|Assertion fail on try to|Assertion fails on menu
   |format comment  |closing if the comments
   ||window was previously open
 OS|Windows (All)   |All

--- Comment #4 from Maxim Monastirsky  ---
Not related to the Character dialog, as just opening and closing any menu
triggers this assert.

(And btw I don't think that the Character dialog can be used or was ever
working with comments in Draw.)

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


[Libreoffice-bugs] [Bug 104930] please handle 'hang' baseline feature of OpenType fonts

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

LibreTraining  changed:

   What|Removed |Added

 CC||libretraining.tutorials@gma
   ||il.com

--- Comment #23 from LibreTraining  ---
(In reply to Volga from comment #20)
> It’s coming in HB 1.7.6.

Harfbuzz 1.7.6 was released on 2018-03-07.
https://github.com/harfbuzz/harfbuzz/releases

So what is happening with this 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 117446] Firebird: Migration: LibO hangs with data type binary[ VARBINARY] and image data in hsql database

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

Drew Jensen  changed:

   What|Removed |Added

Summary|Firebird: Migration: LibO   |Firebird: Migration: LibO
   |hangs when with data of |hangs with  data type
   |type binary[VARBINARY] and  |binary[VARBINARY] and image
   |image data in import file   |data in hsql database

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


[Libreoffice-bugs] [Bug 98259] [META] Keyboard shortcuts and accelerators bugs and enhancements

2018-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98259
Bug 98259 depends on bug 51401, which changed state.

Bug 51401 Summary: Better shortcut category for forward and back navigation 
functions
https://bugs.documentfoundation.org/show_bug.cgi?id=51401

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 51401] Better shortcut category for forward and back navigation functions

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

Maxim Monastirsky  changed:

   What|Removed |Added

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

--- Comment #6 from Maxim Monastirsky  ---
In the meantime it was fixed by
https://cgit.freedesktop.org/libreoffice/core/commit/?id=66e8f52d10eb6ff779d177e61899e83f6a3b5a60

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


[Libreoffice-bugs] [Bug 117446] New: Firebird: Migration: LibO hangs when with data of type binary[VARBINARY] and image data in import file

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

Bug ID: 117446
   Summary: Firebird: Migration: LibO hangs when with data of type
binary[VARBINARY] and image data in import file
   Product: LibreOffice
   Version: 6.1.0.0.alpha1+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: drewjensen.in...@gmail.com

Description:
The migration routine declares table columns of type Binary[VARBINARY] from
hsql into Text[VARCHAR] (according to Libo 6.0.3.2. 

If there is an image file stored in the first record this causes libo to become
non-responsive and it must be forced to quit.

stdout reads: (soffice:26591): GLib-GObject-WARNING **: 16:52:47.499:
../../../../gobject/gsignal.c:3492: signal name 'selection_changed' is invalid
for instance '0x30b9390' of type 'OOoAtkObjCompTxt'
double free or corruption (!prev)


Steps to Reproduce:
1. download test file, open it
2. open form say later when it asks to migrate
3. form displayes graphic from table in image control
4. close the file, reopen it
5  open the form, answer yes to migration prompt

Actual Results:  
system becomes non-responsive

Expected Results:
finish migration open form


Reproducible: Always


User Profile Reset: No



Additional Info:
tested w/build:
Version: 6.1.0.0.alpha1+
Build ID: f1579d3d6c5f5f3a651825e035b93bee7a4f43c6
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk2; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2018-05-03_10:04:51
Locale: en-US (en_US.UTF-8); Calc: group


User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like
Gecko) Ubuntu Chromium/65.0.3325.181 Chrome/65.0.3325.181 Safari/537.36

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


[Libreoffice-bugs] [Bug 117446] Firebird: Migration: LibO hangs when with data of type binary [VARBINARY] and image data in import file

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

--- Comment #1 from Drew Jensen  ---
Created attachment 141910
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141910=edit
test file with data

single table, one record, single form

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


[Libreoffice-bugs] [Bug 117413] double display slightly offset when editing a cell

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

Caolán McNamara  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |caol...@redhat.com
   |desktop.org |

--- Comment #10 from Caolán McNamara  ---
excellent, windows failure is bogus wrt this patch as its not on the windows
code path. will try build again, picked to proposed 6-0 in gerrit in the
meantime

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


[Libreoffice-commits] core.git: Branch 'aoo/trunk' - scp2/source

2018-05-05 Thread Matthias Seidel
 scp2/source/xsltfilter/module_xsltfilter.scp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8891cae6d50661068d6ec0da9176e1ff7e68a820
Author: Matthias Seidel 
Date:   Sat May 5 19:08:23 2018 +

#i127770#

Include "XSLT Sample Filter" in default installation on Windows

diff --git a/scp2/source/xsltfilter/module_xsltfilter.scp 
b/scp2/source/xsltfilter/module_xsltfilter.scp
index 5263ed399965..de923564cb96 100644
--- a/scp2/source/xsltfilter/module_xsltfilter.scp
+++ b/scp2/source/xsltfilter/module_xsltfilter.scp
@@ -41,6 +41,6 @@ Module gid_Module_Optional_Xsltfiltersamples
 gid_File_Xsl_Export_Xhtml_Table,
 gid_File_Share_Registry_Xsltfilter_Xcd );
 Minimal = NO;
-Default = NO;
+Default = YES;
 Styles = ( );
 End
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117445] New: Impress notes do not save 'tab' space as space. Periods do not attach to words.

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

Bug ID: 117445
   Summary: Impress notes do not save 'tab' space as space.
Periods do not attach to words.
   Product: LibreOffice
   Version: 6.0.3.2 release
  Hardware: x86-64 (AMD64)
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: cgyer...@gmail.com

Description:
When creating notes 'tabbing' does not create a space in the final note and a
period does not attach itself to the preceding word and can be alone on a
separate line.

Steps to Reproduce:
1.Type a note with a tab
2.view slide show
3.

Actual Results:  
the items after the tab become part of the text before the tab.

Expected Results:
the tab adds space you see on the creation screen is not in the slide show


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:


User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like
Gecko) Chrome/65.0.3325.181 Safari/537.36 OPR/52.0.2871.99

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


[Libreoffice-bugs] [Bug 117435] Firebird: Migration: data type Image [ LONGVARBINARY ] is not being migrated properly

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

Drew Jensen  changed:

   What|Removed |Added

Summary|Firebird: Migration: Forms  |Firebird: Migration: data
   |and Reports with image  |type Image [ LONGVARBINARY
   |controls and images stored  |] is not being migrated
   |in database no longer   |properly
   |display graphics after  |
   |migration   |

--- Comment #4 from Drew Jensen  ---
Changed summary

The migration function is setting the wrong data type for hsql Image [
LONGVARBINARY ] and 6.1 is GUI is not recognizing the mistake.

You can see side by side screen shot of both the table design editor and the
table data editor between 6.0.3.2 and 6.1alpha displaying the same tables
information after use of the migration function here:
https://nextcloud.documentfoundation.org/s/AMngzJjP94fcsbg

6.0.3.2 sees the tables column as type text(fix)[CHAR]
6.1 alpha sees the tables column type as Image[BLOB]

The image controls, with 6.0.3.2 and 6.1, work fine when the table is defined
as type Blob[BLOB].

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


Re: Open Source Contribution

2018-05-05 Thread Sophia Schröder

Hello Calvin,

welcome aboard! :-D

First off all, I am not a developer but a contributer of the LibreOffice 
project, but I want to try to help you.


Am 05.05.2018 um 13:32 schrieb Calvin:

Sir,
2nd: You failed with the first word. Colonial times are happily gone and 
hopefully never come back.
We are a very diverse community, scattered around the globe with all 
kinds of people.
I am Om Pandey , a college student from India , I got to know about 
Gsoc and open source contribution in December 2017 , Since then i have 
been trying to contribute to the open source community
I am in my freshmen year of college and i have been trying to look out 
for ways of contribution to the open source community with all failed 
attempts i am completely lost as what i should do or where i should 
start please guide me so that i can learn to contribute .

Which kind of guidance do you need? In which field do you want to work?
As a first starting point: 
https://www.libreoffice.org/community/get-involved/
I chose to message this organisation as I myself am a vry avid user of 
LibreOffice and use it to document all my files and work and would 
hence like to contribute .
Please guide me as to what is to be done , i know most of the 
technologies which have been listed in your Gsoc page inculding

c++,java,javascript,php,python and many more
Our code base is very complex, legacy, convoluted and needs a lot of 
love and work. Nobody understands it its whole.
So you often need a "specialist" as mentor in the area you want to work. 
But we are all helpful.
But I am not understanding as to what is to be done , where and how to 
start and what to do , I wanted to be a part in Gsoc 2018 , but failed 
due to lack of guidance , please tell me as to what is to be done.
Unhappily, too late for GSoC 2018 for sure, for all projects involved. 
But you can dive in our team, beginning with building the source, 
finding interesting pieces. Also lurking around and asking in our IRC 
dev channel #libreoffice-dev @ freenode.net is not the worst idea. Your 
advantage is then to be more familiar with the code for the next GSoC 
2019 and knowing better yourself what you want and intend to do and what 
not.
I have an entire year to go ,please guide me and I promise that to the 
best of my efforts I shall perform.

Regards,
Yours Truly,
Om Pandey



--
Regards / Mit freundlichen Grüßen

Sophia Schröder
---
German Language Team
LibreOffice.org
IRC: SophiaS

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


[Libreoffice-bugs] [Bug 70838] FILESAVE: doc: wrong size and position exporting rotated shapes

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

Victor Mireyev  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |victor.mire...@gmail.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 117444] New: Crash in: BigPtrArray::Index2Block(unsigned __int64)

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

Bug ID: 117444
   Summary: Crash in: BigPtrArray::Index2Block(unsigned __int64)
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: carrbig...@yahoo.com

Viewing 
This bug was filed from the crash reporting server and is
br-0d487f9e-5075-4371-b776-652da4665208.

This may be a duplicate of 98202 - Comparing two documents.
I was comparing two versions of a document. 
In this instance of the crash, LO writer brought up the list of differences. I
realized the two documents had a long list of differences because of formatting
changes that had occurred and using compare would not be a reasonable technique
for me to use. I closed the window showing the differences. The pop up window
closed and was followed by LO Writer crashing. 
=

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


Open Source Contribution

2018-05-05 Thread Calvin
 Sir,
I am Om Pandey , a college student from India , I got to know about Gsoc
and open source contribution in December 2017 , Since then i have been
trying to contribute to the open source community
I am in my freshmen year of college and i have been trying to look out for
ways of contribution to the open source community with all failed attempts
i am completely lost as what i should do or where i should start please
guide me so that i can learn to contribute .
I chose to message this organisation as I myself am a vry avid user of
LibreOffice and use it to document all my files and work and would hence
like to contribute .
Please guide me as to what is to be done , i know most of the technologies
which have been listed in your Gsoc page inculding
c++,java,javascript,php,python and many more
But I am not understanding as to what is to be done , where and how to
start and what to do , I wanted to be a part in Gsoc 2018 , but failed due
to lack of guidance , please tell me as to what is to be done.
I have an entire year to go ,please guide me and I promise that to the best
of my efforts I shall perform.
Regards,
Yours Truly,
Om Pandey
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 117441] Not able to delete or move/ copy sheets in Calc on V6.0.3.2 or three previous versions.

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu

--- Comment #1 from V Stuart Foote  ---
Can not confirm on Windows 10 Home 64-bit en-US with
Version: 6.0.4.1 (x64)
Build ID: a63363f6506b8bdc5222481ce79ef33b2d13c741
CPU threads: 4; OS: Windows 10.0; UI render: GL; 
Locale: en-US (en_US); Calc: CL

STR

Move sheet:
1. create two calc documents
2. add 3 sheets to first doc and add content to a few cells
3. add 2 sheets to second doc and add content to a few cells
4. select 3rd sheet of first doc
5. from main menu open Sheet -> Move or Copy Sheet... dialog
6. select the Move (or Copy )radio button
7. select To document (the other, or a new doc)
8. select the insert location
9. OK

Sheet is moved from first doc to second doc, if copy rather than move RB is
selected it copies.

Delete sheet:
1. use the existing open docs
2. select one of the sheets
3. from main menu Sheet -> Delete Sheet...
4. on click of the menu entry the sheet is deleted.

All entries on the Sheet menu seem to function as intended.

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


[Libreoffice-bugs] [Bug 117443] New: Calc freeze scrolling down and not evaluate formulas

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

Bug ID: 117443
   Summary: Calc freeze scrolling down and not evaluate formulas
   Product: LibreOffice
   Version: 6.0.1.1 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: hildo...@gmail.com

Created attachment 141909
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141909=edit
XLSX and Calc files

The attached Excel file was generated by a Python script and the Calc ods is it
converted version. Loading the XLSX on Microsoft Excel works fine, but loading
it on Calc cause sometimes freeze on load or on scrolling down (by the mouse or
lateral bar). The ods file doesn't cause freeze.

Both files does not execute automatically the formulas when loaded, to working
around this issue I am just changing the H1 value and, doing so, all the
formulas are evaluated (in both files I have the same behavior).

It's not some big issue, but these files point some directions to some
improvements.

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


[Libreoffice-bugs] [Bug 117440] Assertion fail on try to format comment

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

--- Comment #3 from Julien Nabet  ---
Some gdb session:
#4  0x7fffebcaeb62 in MenuBarWindow::ChangeHighlightItem
(this=0x5ad53ff0, n=65535, bSelectEntry=false, bAllowRestoreFocus=true,
bDefaultToDocument=false)
at /home/julien/lo/libreoffice/vcl/source/window/menubarwindow.cxx:526
526 assert(xTempFocusId == nullptr ||
ImplGetSVData()->maWinData.mpFocusWin != this);
(gdb) p xTempFocusId
$1 = {_vptr.VclPtr = 0x7fffecddf6f0 +16>,
m_rInnerRef = rtl::Reference to 0x5b0d5300}
(gdb) p ImplGetSVData()->maWinData.mpFocusWin
$2 = {_vptr.VclPtr = 0x7fffecddf6f0 +16>,
m_rInnerRef = rtl::Reference to 0x5ad53ff0}
(gdb) p this
$3 = (MenuBarWindow * const) 0x5ad53ff0

BTW, the comment is closed too with gtk3 rendering.

Maxim: noticing
https://cgit.freedesktop.org/libreoffice/core/commit/?id=3ecf542af410536d64d217c71002799bbe48b9c3
which contains the assert, thought you might be interested in this one.

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


GSoC'18 Introduction and Project Description

2018-05-05 Thread Hrishabh Rajput
Hello Community,

I am Hrishabh Rajput. I am an undergraduate student in Indian Institute of
Technology Kharagpur, India. I am selected in GSoC 2018 to work under
LibreOffice. I will be working in LO Base on the project Listbox separate
read values from input values [1].

I am currently going through the Base Handbook, especially focussing on the
chapter on Forms. After this, I will be jumping to the implementation of
Listbox for better understanding.

Firstly in my project, I will work on adding AfterUpdate function for each
form component, which will allow us to listen to user activity. Secondly, I
will duplicate "list entries" and "list content" properties of the listbox
to implement the filter. Moreover, I will be working on some bugs in Base
if I finished early. Mostly, I will be working autonomously.

Excited to work with LibreOffice this summer.

Thanks,
Hrishabh

[1] https://summerofcode.withgoogle.com/projects/#5213156381556736
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 117442] No support for Base files using firebird sdbc under Ubuntu 18.04

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

Drew Jensen  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID

--- Comment #1 from Drew Jensen  ---
sorry, that was an earlier snap..my mistake.

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


[Libreoffice-bugs] [Bug 117442] New: No support for Base files using firebird sdbc under Ubuntu 18.04

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

Bug ID: 117442
   Summary: No support for Base files using firebird sdbc under
Ubuntu 18.04
   Product: LibreOffice
   Version: 6.0.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: drewjensen.in...@gmail.com

Description:
Auto update of my Ubuntu 17.10 system to Ubuntu 18.04
Afterwards the system LibreOffice 
Version: 6.0.3.2
Build ID: libreoffice-6.0.3.2-snap1
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3; 
Locale: en-US (en_US.UTF-8); Calc: group

Default did not support embedded firebird base files.
After finding lbreoffice-sdbc-firebird not installed, via synaptic, installed
it. checked that experimental support was on, Still no support for these files.


Steps to Reproduce:
1. update your Ubuntu 17.10 to 18.04
2.
3.

Actual Results:  
no support for firebird sdbc

Expected Results:
support for firebird sdbc


Reproducible: Always


User Profile Reset: No



Additional Info:
filed bug report at launchpad:
https://bugs.launchpad.net/launchpad/+bug/1769378


User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like
Gecko) Ubuntu Chromium/65.0.3325.181 Chrome/65.0.3325.181 Safari/537.36

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


[Libreoffice-bugs] [Bug 117440] Assertion fail on try to format comment

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

Julien Nabet  changed:

   What|Removed |Added

   Keywords||haveBacktrace
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 117440] Assertion fail on try to format comment

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

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #2 from Julien Nabet  ---
Created attachment 141908
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141908=edit
bt with debug symbols

On pc Debian x86-64 with master sources updated yesterday, I reproduced this
BUT the assert happened when opening dialog, not during cancel since I couldn't
get the dialog.

Also I reproduced this with gen rendering, I don't reproduce this with gtk3
rendering.
I can give a try to other renderings (gtk and kde4) if useful.

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


[Libreoffice-bugs] [Bug 117327] FIELDS-DIALOG: empty spaces in DocInformation => Type

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

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #2 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated yesterday, I could reproduce
this.
I tried to figure out where this indent came from by using keyid but then I
lost the track. What a mess for just some dialog display!

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


[Libreoffice-commits] core.git: icon-themes/colibre_svg

2018-05-05 Thread Rene Engelhard
 0 files changed

New commits:
commit f557aa2b729e54a670b54a41b14a8d9f696e1472
Author: Rene Engelhard 
Date:   Sat May 5 18:08:30 2018 +0200

also rename icons with spaces in colibre_svg

Change-Id: I4cb23384015f37af62d0e499909ef1c7a4c3148d

diff --git a/icon-themes/colibre_svg/svx/res/spacing_very loose.svg 
b/icon-themes/colibre_svg/svx/res/spacing_very_loose.svg
similarity index 100%
rename from icon-themes/colibre_svg/svx/res/spacing_very loose.svg
rename to icon-themes/colibre_svg/svx/res/spacing_very_loose.svg
diff --git a/icon-themes/colibre_svg/svx/res/spacing_very loose_s.svg 
b/icon-themes/colibre_svg/svx/res/spacing_very_loose_s.svg
similarity index 100%
rename from icon-themes/colibre_svg/svx/res/spacing_very loose_s.svg
rename to icon-themes/colibre_svg/svx/res/spacing_very_loose_s.svg
diff --git a/icon-themes/colibre_svg/svx/res/spacing_very tight.svg 
b/icon-themes/colibre_svg/svx/res/spacing_very_tight.svg
similarity index 100%
rename from icon-themes/colibre_svg/svx/res/spacing_very tight.svg
rename to icon-themes/colibre_svg/svx/res/spacing_very_tight.svg
diff --git a/icon-themes/colibre_svg/svx/res/spacing_very tight_s.svg 
b/icon-themes/colibre_svg/svx/res/spacing_very_tight_s.svg
similarity index 100%
rename from icon-themes/colibre_svg/svx/res/spacing_very tight_s.svg
rename to icon-themes/colibre_svg/svx/res/spacing_very_tight_s.svg
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: icon-themes/colibre

2018-05-05 Thread Rene Engelhard
 0 files changed

New commits:
commit fd5e1bb6657d1137f7a0cd195da7213b70b2a9a5
Author: Rene Engelhard 
Date:   Sat May 5 17:59:59 2018 +0200

more icon rename without spaces for colibre...

(as done for previous galaxy in 5e71673ae0bbd4c0c1b32a1269155b4cd2cb5f45

Change-Id: I1a231e2b34377a80d2eb4a5467d0b5a136a5df75

diff --git a/icon-themes/colibre/svx/res/spacing_very loose.png 
b/icon-themes/colibre/svx/res/spacing_very_loose.png
similarity index 100%
rename from icon-themes/colibre/svx/res/spacing_very loose.png
rename to icon-themes/colibre/svx/res/spacing_very_loose.png
diff --git a/icon-themes/colibre/svx/res/spacing_very loose_s.png 
b/icon-themes/colibre/svx/res/spacing_very_loose_s.png
similarity index 100%
rename from icon-themes/colibre/svx/res/spacing_very loose_s.png
rename to icon-themes/colibre/svx/res/spacing_very_loose_s.png
diff --git a/icon-themes/colibre/svx/res/spacing_very tight.png 
b/icon-themes/colibre/svx/res/spacing_very_tight.png
similarity index 100%
rename from icon-themes/colibre/svx/res/spacing_very tight.png
rename to icon-themes/colibre/svx/res/spacing_very_tight.png
diff --git a/icon-themes/colibre/svx/res/spacing_very tight_s.png 
b/icon-themes/colibre/svx/res/spacing_very_tight_s.png
similarity index 100%
rename from icon-themes/colibre/svx/res/spacing_very tight_s.png
rename to icon-themes/colibre/svx/res/spacing_very_tight_s.png
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117439] Search box in the menu Save As doesn't work properly

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

Dieter Praas  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de
 OS|Linux (All) |All
   Severity|normal  |enhancement

--- Comment #1 from Dieter Praas  ---
I don't think, that this is a bug, but a proposal for an enhancement. But I
don't want to support it, because if the search is in all folders on the
computer by default, it would take too much time. So for me it is a WONTFIX.

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


Re: API-CHANGE - dropping string properties which use vnd.sun.star.GraphicObject URL

2018-05-05 Thread Drew Jensen
Howdy,

Not at all sure this was from anything your work did, but to give you a
heads up;

Working with the latest daily build (may 4th) under Ubuntu 18.10 (64bit).

Entered an issue today
https://bugs.documentfoundation.org/show_bug.cgi?id=117435

The issue includes two test ODB files, almost identical. Single table, form
with image control, report (RB) with image control and 3 test images.

File one stores the images in the embedded database. File two stores a URL
to external image files.

File one (Image binary in table) works as expected under 6.1 for both the
form and report. However It fails to display any image data after migration
to a Firebird data engine.

File two (URL in table)  works as expected before and after the migration
to Firebird.

So, as I said thought I would just let you know.

Best wishes, Drew


On Sat, Apr 28, 2018 at 8:01 PM, Tomaž Vajngerl  wrote:

> Hi,
>
> On Sat, Apr 28, 2018 at 10:34 AM, Drew Jensen
>  wrote:
> > Howdy list,
> >
> > Reading over this, and sorry if this is a naive question, but I was
> > wondering if this could effect the way image controls work in forms and
> > reports.
> >
> > When an imagecontrol on a form (or Report Builder report) is linked to a
> > character field in a data table the control reads a URL from the data
> field
> > and loads the image into the control as the user moves through the table
> or
> > as a report is generated.
> >
> > For a Form, the user can also insert a graphic into the control via the
> GUI
> > and table column with the URL.
> >
> > Like I say I don't have enough detail knowledge of how this works, under
> the
> > hood, to know if what is changing here could be an issue or not, so
> thought
> > I would ask.
> >
> > Thank you for your time in advance.
>
> Yes, it does effect the image controls but just in the way that you
> can't use the internal URL with the scheme
> vnd.sun.star.GraphicObject:. In that case you will need to load
> the image first with XGraphicProvider and set the "Graphic" property
> instead of the "ImageURL" property.
>
> It would be good to try this use cases out with the Report Builder
> with the current master.
>
> Regards, Tomaž
>
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 117433] count.if doesn't work

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

Jacques Guilleron  changed:

   What|Removed |Added

   Keywords||bibisectRequest
 Status|UNCONFIRMED |NEW
 CC||guillero...@aol.com
 Ever confirmed|0   |1

--- Comment #3 from Jacques Guilleron  ---
Hi exceller,

I reproduce with
LO 6.1.0.0.alpha1+ Build ID: 936eaedddbc6d21737745be3c3131607440e366c
CPU threads: 2; OS: Windows 6.1; UI render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2018-05-04_01:09:04
Locale: fr-FR (fr_FR); Calc: CL
also with
LO 4.3.0.0.beta1
Build ID: b7cfa1eab1cb1e94f71d6df6612b73f231d0bf92
I Don't reroduce with
LO 4.2.8.2 Build ID: 48d50dbfc06349262c9d50868e5c1f630a573e
where I get 0 as result of =NB.SI(A1:B3;"")
Try to import from Excel 2010, I get and keep the right result, even after
recalculate. See first attachment.
The same file writed with Calc doesn't give the result. See second attachment.
Thank you to have reported it.

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


[Libreoffice-bugs] [Bug 117435] Firebird: Migration: Forms and Reports with image controls and images stored in database no longer display graphics after migration

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

--- Comment #3 from Drew Jensen  ---
Created attachment 141907
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141907=edit
zip with test ODB and 3 image files

OK - this file shows that the problem is only with images saved in the database
table.

It is identical to the first test file but stores a URL (w/ relative
addressing) to 3 images.

Unzip the file into a directory, open the test file fb_mig_image_url and open
the form triggering the migration function. It will run to completion and both
the form and report will display the images as expected.

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


[Libreoffice-bugs] [Bug 117364] Special Character dialog grid not reset completely when changing font selection , metrics for prior character selection retained and grid corrupted

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

V Stuart Foote  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #5 from V Stuart Foote  ---
Yes grid and glyph position are correct now with
Version: 6.1.0.0.alpha1+
Build ID: 0b56585cfc047decf25c648d3cccfc3c7b594a86
CPU threads: 4; OS: Windows 10.0; UI render: GL; 
TinderBox: Win-x86@42, Branch:master, Time: 2018-05-05_05:23:29
Locale: en-US (en_US); Calc: CL

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


[Libreoffice-bugs] [Bug 117433] count.if doesn't work

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

--- Comment #2 from Jacques Guilleron  ---
Created attachment 141906
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141906=edit
Same file writed with Calc

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


[Libreoffice-bugs] [Bug 117441] New: Not able to delete or move/ copy sheets in Calc on V6.0.3.2 or three previous versions.

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

Bug ID: 117441
   Summary: Not able to delete or move/copy sheets in Calc on
V6.0.3.2 or three previous versions.
   Product: LibreOffice
   Version: 6.0.0.3 release
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: adrians1...@gmail.com

Description:
The Delete Sheet and Move/Copy Sheet options are greyed out. The spreadsheet
has no protection i.e. these functions should be enabled.

Steps to Reproduce:
1.Open spreadsheet
2.Select tab
3.Select Sheet/Delete or Move/Copy

Actual Results:  
Delete and Move/Copy are greyed out (not available)

Expected Results:
Nothing. I had to port the spreadsheet to a Windoze machine and delete the
sheets using Excel. 


Reproducible: Always


User Profile Reset: Yes



Additional Info:
I've been using LibreOffice for years and used to be able to delete or
move/copy sheets but the last three versions installed have acted as described
above.

LibreOffice/About LibreOffice:
Version: 6.0.3.2
Build ID: 8f48d515416608e3a835360314dac7e47fd0b821
CPU threads: 4; OS: Mac OS X 10.13.4; UI render: default; 
Locale: en-AU (en_AU.UTF-8); Calc: group

Opened LibreOffice in Safe Mode and loaded the spreadsheet with the same
results. (User profile OK). Enabling Open GL in LibreOffice Preferences
produced the same results. GL currently disabled. Using Anti-aliasing.

MacBook Pro 6,1 
M540 @ 2.53 Ghz Intel CPU x 4
RAM: 8 Gb

Renderer: NVIDIA GeForce GT 330M OpenGL 
Engine
Vendor: NVIDIA Corporation

Memory: 512 MB

Version: 3.3 NVIDIA-10.4.14 310.90.30.05b27

Device: MacBookPro6,1

Shading language version: 3.30



Max texture size: 8192 x 8192

Max vertex texture image units: 16

Max texture image units: 16

Max geometry texture units: 16

Max anisotropic filtering value: 16

Max viewport size: 8192 x 8192

Max Clip Distances: 8

Max samples: 8



Extensions: 37




GL_APPLE_texture_range

GL_EXT_framebuffer_multisample_blit_scaled

GL_ARB_viewport_array

GL_ARB_explicit_attrib_location

GL_NV_texture_barrier

GL_ARB_separate_shader_objects

GL_ARB_texture_storage

GL_ARB_texture_swizzle
GL_EXT_texture_compression_s3tc

GL_ARB_texture_cube_map_array

GL_ARB_blend_func_extended

GL_EXT_texture_sRGB_decode

GL_EXT_texture_filter_anisotropic

GL_APPLE_row_bytes

GL_ARB_texture_query_lod

GL_ARB_draw_buffers_blend

GL_ARB_sample_shading

GL_ARB_internalformat_query

GL_EXT_texture_mirror_clamp

GL_ARB_timer_query

GL_ATI_texture_mirror_once

GL_EXT_debug_marker

GL_APPLE_rgb_422

GL_ARB_vertex_type_2_10_10_10_rev

GL_EXT_debug_label

GL_ARB_instanced_arrays

GL_APPLE_container_object_shareable

GL_ARB_ES2_compatibility

GL_APPLE_client_storage

GL_ARB_sampler_objects

GL_ARB_occlusion_query2

GL_ARB_shading_language_include

GL_EXT_depth_bounds_test

GL_ARB_texture_rgb10_a2ui

GL_APPLE_object_purgeable

GL_ARB_shader_bit_encoding

GL_APPLE_flush_render


Core features

v3.0 (100 % - 23/23)

v3.1 (100 % - 8/8)

v3.2 (100 % - 10/10)

v3.3 (100 % - 10/10)

v4.0 (28 % - 4/14)

v4.1 (42 % - 3/7)

v4.2 (15 % - 2/13)

v4.3 (0 % - 0/23)

v4.4 (0 % - 0/10)

v4.5 (0 % - 0/11)

v4.6 (0 % - 0/11)

vARB 2015 (0 % - 0/12)


OpenGL driver version check (Current: 3.3 NVIDIA-10.4.14 310.90.30.05b27, 
Latest known: ):
Latest version of display drivers found

According the database, you are running the latest display drivers for your
video card.


User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4)
AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15

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


[Libreoffice-bugs] [Bug 117433] count.if doesn't work

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

--- Comment #1 from Jacques Guilleron  ---
Created attachment 141905
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141905=edit
Count.If from Excel 2010

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


[Libreoffice-commits] core.git: include/tools

2018-05-05 Thread Chris Sherlock
 include/tools/b3dtrans.hxx |7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

New commits:
commit de3d05699db629754600f91452bab373c03e9637
Author: Chris Sherlock 
Date:   Sat May 5 22:19:47 2018 +1000

tools: explain rVRP, rVPN and rVUP in SetOrientation()

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

diff --git a/include/tools/b3dtrans.hxx b/include/tools/b3dtrans.hxx
index 8dcd57e6da26..9f71d7d87750 100644
--- a/include/tools/b3dtrans.hxx
+++ b/include/tools/b3dtrans.hxx
@@ -86,7 +86,12 @@ public:
 
 void Reset();
 
-// Orientation
+/** Set the orientation
+
+@param vVRP the View Reference Point (VRP)
+@param vVPN the View Plane Normal (VPN)
+@param vVUP the View Up Plane (VUP)
+*/
 void SetOrientation(
 const basegfx::B3DPoint& rVRP = basegfx::B3DPoint(0.0,0.0,1.0),
 const basegfx::B3DVector& rVPN = basegfx::B3DVector(0.0,0.0,1.0),
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117406] UI color palette and Recent Colors in (Table properties) not accessible via key board, dropped TAB focus

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

V Stuart Foote  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #5 from V Stuart Foote  ---
Yup, TAB navigation onto the color widgets restored now.

Version: 6.1.0.0.alpha1+
Build ID: 0b56585cfc047decf25c648d3cccfc3c7b594a86
CPU threads: 4; OS: Windows 10.0; UI render: GL; 
TinderBox: Win-x86@42, Branch:master, Time: 2018-05-05_05:23:29
Locale: en-US (en_US); Calc: CL

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


[Libreoffice-bugs] [Bug 117440] Assertion fail on try to format comment

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

--- Comment #1 from Regina Henschel  ---
Created attachment 141904
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141904=edit
Call 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 117440] New: Assertion fail on try to format comment

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

Bug ID: 117440
   Summary: Assertion fail on try to format comment
   Product: LibreOffice
   Version: 6.1.0.0.alpha1+ Master
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rb.hensc...@t-online.de

Created attachment 141903
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141903=edit
Document to reproduce the assertion

Open attached document.
Click on comment marker in top-left corner.
Click into comment and mark "draw".
Menu Format > Character.
Notice, that the comment is closed.
Cancel Character format dialog.

That gives the assertion failure:
Assertion failed!
Program: ...\core\instdir\program\vcllo.dll
File: ../core/vcl/source/window/menubarwindow.cxx
Line: 526

Expression: xTempFocusId == nullptr || implGerSVData()->maWinData.mpFocusWin !=
this

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


[Libreoffice-commits] core.git: helpcontent2

2018-05-05 Thread Rene Engelhard
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f61ae112b3d926a64696ba969734f840d117b3e9
Author: Rene Engelhard 
Date:   Sat May 5 15:13:01 2018 +0200

Updated core
Project: help  a154b3f59a7d6e6cf17e585521592bf96b42a20e

s/galaxy/colibre/

... as galaxy got removed with 60413c9800c27f53c1108015b50754b065bc98c6

Change-Id: I4e3ec6db6b57b31e184ec53def5bdb54e064ad21

diff --git a/helpcontent2 b/helpcontent2
index a536178daab5..a154b3f59a7d 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit a536178daab521449620a80459371fa2bb76b295
+Subproject commit a154b3f59a7d6e6cf17e585521592bf96b42a20e
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: GeneratedPackage_html_media.mk help3xsl/convert2html.sh help3xsl/get_media.sh help3xsl/xhp2html.sh helpers/find-invalid-help-images.sh

2018-05-05 Thread Rene Engelhard
 GeneratedPackage_html_media.mk  |2 +-
 help3xsl/convert2html.sh|2 +-
 help3xsl/get_media.sh   |4 ++--
 help3xsl/xhp2html.sh|2 +-
 helpers/find-invalid-help-images.sh |8 
 5 files changed, 9 insertions(+), 9 deletions(-)

New commits:
commit a154b3f59a7d6e6cf17e585521592bf96b42a20e
Author: Rene Engelhard 
Date:   Sat May 5 15:13:01 2018 +0200

s/galaxy/colibre/

... as galaxy got removed with 60413c9800c27f53c1108015b50754b065bc98c6

Change-Id: I4e3ec6db6b57b31e184ec53def5bdb54e064ad21

diff --git a/GeneratedPackage_html_media.mk b/GeneratedPackage_html_media.mk
index 9e483738a..423e6a2df 100644
--- a/GeneratedPackage_html_media.mk
+++ b/GeneratedPackage_html_media.mk
@@ -9,7 +9,7 @@
 #
 $(eval $(call 
gb_GeneratedPackage_GeneratedPackage,helpcontent2_html_media,$(SRCDIR)))
 
-$(eval $(call 
gb_GeneratedPackage_add_dir,helpcontent2_html_media,$(INSTROOT)/$(LIBO_SHARE_HELP_FOLDER)$(if
 $(HELP_ONLINE),/$(PRODUCTVERSION))/media/icon-themes,icon-themes/galaxy))
+$(eval $(call 
gb_GeneratedPackage_add_dir,helpcontent2_html_media,$(INSTROOT)/$(LIBO_SHARE_HELP_FOLDER)$(if
 $(HELP_ONLINE),/$(PRODUCTVERSION))/media/icon-themes,icon-themes/colibre))
 
 $(eval $(call 
gb_GeneratedPackage_add_dir,helpcontent2_html_media,$(INSTROOT)/$(LIBO_SHARE_HELP_FOLDER)$(if
 
$(HELP_ONLINE),/$(PRODUCTVERSION))/media/helpimg,helpcontent2/source/media/helpimg))
 $(eval $(call 
gb_GeneratedPackage_add_dir,helpcontent2_html_media,$(INSTROOT)/$(LIBO_SHARE_HELP_FOLDER)$(if
 
$(HELP_ONLINE),/$(PRODUCTVERSION))/media/navigation,helpcontent2/source/media/navigation))
diff --git a/help3xsl/convert2html.sh b/help3xsl/convert2html.sh
index 3cfe860d9..f48f1d8a8 100755
--- a/help3xsl/convert2html.sh
+++ b/help3xsl/convert2html.sh
@@ -287,7 +287,7 @@ echo ''>>$sitemap
 cp normalize.css default.css help.js fuse.js paginathing.js $outDir
 cp -r $enSource/source/media $outDir
 mkdir -p $outDir/media/icon-themes
-#cp -a ../../icon-themes/galaxy/* $outDir/media/icon-themes/
+#cp -a ../../icon-themes/colibre/* $outDir/media/icon-themes/
 #ln -s $productversion html/latest
 
 exit
diff --git a/help3xsl/get_media.sh b/help3xsl/get_media.sh
index eaaeb44f1..ac1e90fc5 100755
--- a/help3xsl/get_media.sh
+++ b/help3xsl/get_media.sh
@@ -39,5 +39,5 @@ cp default.css $outDir'/'$productVersion'/'
 
 cp -a ../source/media $outDir'/'$productVersion'/'
 
-galaxy=$(realpath $workDir'/../icon-themes/galaxy')
-cp -a $galaxy $outDir'/'$productVersion'/media/icon-themes'
+colibre=$(realpath $workDir'/../icon-themes/colibre')
+cp -a $colibre $outDir'/'$productVersion'/media/icon-themes'
diff --git a/help3xsl/xhp2html.sh b/help3xsl/xhp2html.sh
index 6da95dbd9..f65f58a07 100755
--- a/help3xsl/xhp2html.sh
+++ b/help3xsl/xhp2html.sh
@@ -181,7 +181,7 @@ cp default.css $here'/html/'$productversion'/'
 
 cp -a ../source/media $here'/html/'$productversion'/'
 mkdir -p $here'/html/'$productversion'/media/icon-themes'
-cp -a ../../icon-themes/galaxy/* 
$here'/html/'$productversion'/media/icon-themes/'
+cp -a ../../icon-themes/colibre/* 
$here'/html/'$productversion'/media/icon-themes/'
 ln -s $productversion html/latest
 
 # Set helpex utility and environment
diff --git a/helpers/find-invalid-help-images.sh 
b/helpers/find-invalid-help-images.sh
index c73d40ed2..d779f80b8 100755
--- a/helpers/find-invalid-help-images.sh
+++ b/helpers/find-invalid-help-images.sh
@@ -6,7 +6,7 @@
 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
 # This script looks up  tags in helpcontent, checks whether the
-# referenced file exist in the galaxy theme or in source/ and prints a warning 
if it does not.
+# referenced file exist in the colibre theme or in source/ and prints a 
warning if it does not.
 # Execute from the root directory of the helpcontent2 repository.
 # No parameters are used.
 
@@ -22,11 +22,11 @@ while read nextline ; do
 img3=${img2%%\"*};
 
 # Check the images existence
-if [ ! -f "../icon-themes/galaxy/$img3" ] ; then
-# Not present in galaxy, but it may be under source/
+if [ ! -f "../icon-themes/colibre/$img3" ] ; then
+# Not present in colibre, but it may be under source/
 if [ ! -f "source/$img3" ] ; then
 # Not even there, we have an error!
-echo "$img3 included in file $sourcefile is not found in the 
galaxy theme or the help media!";
+echo "$img3 included in file $sourcefile is not found in the 
colibre theme or the help media!";
 fi
  fi
 done <<< "$images"
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 107637] get focus on comment without mouse

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

--- Comment #3 from Regina Henschel  ---
The problem still exists in Version: 6.1.0.0.alpha1+ (x64)
Build ID: 5e34e3741de8aae10bf30889c227581818276186
CPU threads: 8; OS: Windows 10.0; UI render: GL; 
Locale: de-DE (de_DE); Calc: CL

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


[Libreoffice-commits] libcdr.git: configure.ac

2018-05-05 Thread David Tardon
 configure.ac |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 93f8e7405e4a852a2908c011456719dc8e3033e6
Author: David Tardon 
Date:   Sat May 5 13:44:41 2018 +0200

disable werror by default

Change-Id: I56bc2296c8705ac0c9c475aa1cf76baa5dddac83

diff --git a/configure.ac b/configure.ac
index e41be19..3927e5e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -202,9 +202,9 @@ AS_IF([test $platform_win32 = yes],
 # Check for cflags
 # 
 AC_ARG_ENABLE([werror],
-   [AS_HELP_STRING([--disable-werror], [Treat all warnings as errors, 
useful for development])],
+   [AS_HELP_STRING([--enable-werror], [Treat all warnings as errors, 
useful for development])],
[enable_werror="$enableval"],
-   [enable_werror=yes]
+   [enable_werror=no]
 )
 AS_IF([test x"$enable_werror" != "xno"], [
CFLAGS="$CFLAGS -Werror"
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117438] LO x64 - Remote Connection crashes with Exception in " mscx_uno.dll"

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

Julien Nabet  changed:

   What|Removed |Added

Summary|LO x64 - Remote Connection  |LO x64 - Remote Connection
   |crashes with Execption in   |crashes with Exception in
   |"mscx_uno.dll"  |"mscx_uno.dll"

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


[Libreoffice-bugs] [Bug 89466] [META] SIDEBAR: Slide and Page content panels in Properties tab in Impress/Draw

2018-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89466
Bug 89466 depends on bug 117355, which changed state.

Bug 117355 Summary: Color picker for setting background color of master slide 
is missing from content panel of its Sidebar deck
https://bugs.documentfoundation.org/show_bug.cgi?id=117355

   What|Removed |Added

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

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


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

2018-05-05 Thread Xisco Fauli
 sd/source/ui/sidebar/SlideBackground.cxx |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 7237db44dfac914e5b6003f418267d3df1e7f162
Author: Xisco Fauli 
Date:   Wed May 2 17:34:44 2018 +0200

tdf#117355 Show color picker on the sidebar

Change-Id: I3e69b4247b679e0ceb3c8cee5d6fecf82ad8c445
Reviewed-on: https://gerrit.libreoffice.org/53746
Tested-by: Jenkins 
Reviewed-by: Xisco Faulí 

diff --git a/sd/source/ui/sidebar/SlideBackground.cxx 
b/sd/source/ui/sidebar/SlideBackground.cxx
index 616f51171e7b..d815fefebd41 100644
--- a/sd/source/ui/sidebar/SlideBackground.cxx
+++ b/sd/source/ui/sidebar/SlideBackground.cxx
@@ -326,6 +326,7 @@ void SlideBackground::Update()
 {
 mpFillAttr->Hide();
 mpFillGrad->Hide();
+mpFillLB->Show();
 const Color aColor = GetColorSetOrDefault();
 mpFillLB->SelectEntry(aColor);
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117432] Blank icon bar

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

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #1 from Xisco Faulí  ---
Thank you for reporting the bug. To be certain the reported issue is not
related to corruption in the user profile, could you please reset your
Libreoffice profile ( https://wiki.documentfoundation.org/UserProfile ) and
re-test?

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 117405] Paste link doesn't work correctly

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

Xisco Faulí  changed:

   What|Removed |Added

 Status|REOPENED|NEEDINFO

--- Comment #7 from Xisco Faulí  ---
(In reply to Sergio bh from comment #6)
> Excuse me Xisco.
> The problem there isn't if you do paste, but if you do "special paste" and
> select "link paste".
> I don't know if these function words are correct because I am using italian
> version.
> I think that this bug should be open again.
> I didn't try it with bet version 6.1.
> Thank you

Hello Sergio,
Yes, I used special paste.
So, if you paste the formula in A1, what do you expect it to show?

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


[Libreoffice-bugs] [Bug 117410] UI: Settings in PDF Options not remembered for next export

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

Matteo Casalin  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |matteo.casalin@libreoffice.
   |desktop.org |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-commits] core.git: sw/CppunitTest_sw_ooxmlimport2.mk sw/Module_sw.mk sw/qa

2018-05-05 Thread Mark Hung
 sw/CppunitTest_sw_ooxmlimport2.mk |  107 +++
 sw/Module_sw.mk   |1 
 sw/qa/extras/ooxmlimport/ooxmlimport.cxx  |  160 ---
 sw/qa/extras/ooxmlimport/ooxmlimport2.cxx |  201 ++
 4 files changed, 309 insertions(+), 160 deletions(-)

New commits:
commit 266e3fa59a83b17f93765bf517f6db7ee324bdee
Author: Mark Hung 
Date:   Thu May 3 07:36:38 2018 +0800

sw: move tests in ooxmlimport to ooxmlimport2.

To avoid using -bigobj on Windows.

Change-Id: I3115fc01a0802c4b40219bb6f7ea934df81706ed
Reviewed-on: https://gerrit.libreoffice.org/53769
Tested-by: Jenkins 
Reviewed-by: Mark Hung 

diff --git a/sw/CppunitTest_sw_ooxmlimport2.mk 
b/sw/CppunitTest_sw_ooxmlimport2.mk
new file mode 100644
index ..d170cb822b2e
--- /dev/null
+++ b/sw/CppunitTest_sw_ooxmlimport2.mk
@@ -0,0 +1,107 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+#*
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+#*
+
+$(eval $(call gb_CppunitTest_CppunitTest,sw_ooxmlimport2))
+
+$(eval $(call gb_CppunitTest_add_exception_objects,sw_ooxmlimport2, \
+sw/qa/extras/ooxmlimport/ooxmlimport2 \
+))
+
+$(eval $(call gb_CppunitTest_use_libraries,sw_ooxmlimport2, \
+basegfx \
+comphelper \
+cppu \
+cppuhelper \
+sal \
+sfx \
+test \
+unotest \
+utl \
+sw \
+tl \
+vcl \
+svxcore \
+))
+
+$(eval $(call gb_CppunitTest_use_externals,sw_ooxmlimport2,\
+   boost_headers \
+libxml2 \
+))
+
+$(eval $(call gb_CppunitTest_set_include,sw_ooxmlimport2,\
+-I$(SRCDIR)/sw/inc \
+-I$(SRCDIR)/sw/source/core/inc \
+-I$(SRCDIR)/sw/qa/extras/inc \
+$$(INCLUDE) \
+))
+
+ifeq ($(OS),MACOSX)
+
+$(eval $(call gb_CppunitTest_add_cxxflags,sw_ooxmlimport2,\
+$(gb_OBJCXXFLAGS) \
+))
+
+$(eval $(call gb_CppunitTest_use_system_darwin_frameworks,sw_ooxmlimport2,\
+   AppKit \
+))
+
+endif
+
+$(eval $(call gb_CppunitTest_use_sdk_api,sw_ooxmlimport2))
+
+$(eval $(call gb_CppunitTest_use_ure,sw_ooxmlimport2))
+$(eval $(call gb_CppunitTest_use_vcl,sw_ooxmlimport2))
+
+$(eval $(call gb_CppunitTest_use_components,sw_ooxmlimport2,\
+   basic/util/sb \
+chart2/source/controller/chartcontroller \
+chart2/source/chartcore \
+   canvas/source/factory/canvasfactory \
+comphelper/util/comphelp \
+configmgr/source/configmgr \
+drawinglayer/drawinglayer \
+embeddedobj/util/embobj \
+emfio/emfio \
+filter/source/config/cache/filterconfig1 \
+forms/util/frm \
+framework/util/fwk \
+i18npool/util/i18npool \
+linguistic/source/lng \
+oox/util/oox \
+package/source/xstor/xstor \
+package/util/package2 \
+sax/source/expatwrap/expwrap \
+sw/util/sw \
+sw/util/swd \
+sw/util/msword \
+sfx2/util/sfx \
+sot/util/sot \
+starmath/util/sm \
+svl/source/fsstor/fsstorage \
+svl/util/svl \
+svtools/util/svt \
+svx/util/svx \
+svx/util/svxcore \
+toolkit/util/tk \
+ucb/source/core/ucb1 \
+ucb/source/ucp/file/ucpfile1 \
+unotools/util/utl \
+unoxml/source/service/unoxml \
+unoxml/source/rdf/unordf \
+uui/util/uui \
+vcl/vcl.common \
+writerfilter/util/writerfilter \
+xmloff/util/xo \
+))
+
+$(eval $(call gb_CppunitTest_use_configuration,sw_ooxmlimport2))
+
+# vim: set noet sw=4 ts=4:
diff --git a/sw/Module_sw.mk b/sw/Module_sw.mk
index 01a67af503a9..87367d05de5c 100644
--- a/sw/Module_sw.mk
+++ b/sw/Module_sw.mk
@@ -77,6 +77,7 @@ $(eval $(call gb_Module_add_slowcheck_targets,sw,\
 CppunitTest_sw_ooxmlw14export \
 CppunitTest_sw_ooxmlencryption \
 CppunitTest_sw_ooxmlimport \
+CppunitTest_sw_ooxmlimport2 \
 CppunitTest_sw_ww8export \
 CppunitTest_sw_ww8export2 \
 CppunitTest_sw_ww8import \
diff --git a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx 
b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
index 7b60b191df67..4743cbc8afed 100644
--- a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
+++ b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
@@ -1440,166 +1440,6 @@ DECLARE_OOXMLIMPORT_TEST(testTdf108995, 
"xml_space.docx")
  paragraph->getString());
 }
 
-DECLARE_OOXMLIMPORT_TEST(testTdf108545_embeddedDocxIcon, 
"tdf108545_embeddedDocxIcon.docx")
-{
-uno::Reference xSupplier(getShape(1), 
uno::UNO_QUERY);
-CPPUNIT_ASSERT_EQUAL(embed::Aspects::MSOLE_ICON, xSupplier->getAspect());
-}
-
-
-DECLARE_OOXMLIMPORT_TEST(testTdf109053, "tdf109053.docx")
-{
-// Table was imported into a text 

Re: GSOC Introduction

2018-05-05 Thread Noel Grandin
Just a suggestion: Looking at that list of papercuts, I suggest someone
sort it by module (ie. writer/calc/base/etc) , and that you pick one and
focus on doing the papercuts pertaining to that module, only moving on to
another module once exhausting the first module.
Mostly because LO is huge, and the learning curve steep, so if you bounce
around, it will take much longer to develop any familiarity with the
codebase.
​
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


GSOC Introduction

2018-05-05 Thread Nick Thanda
Hey there,

I'm Nickson Thanda, and I will be working on the 100 paper cuts project in 
which I will be solving some of the annoying UI bugs raised by the community 
with Samuel Mehrbrodt and Muhammet Kara as my mentors.

You can view the current list of paper cuts here: 
https://nextcloud.documentfoundation.org/s/g5opmnMCkYQwfWc

I'm looking forward to working on this over the summer.

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


[Libreoffice-bugs] [Bug 117439] New: Search box in the menu Save As doesn't work properly

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

Bug ID: 117439
   Summary: Search box in the menu Save As doesn't work properly
   Product: LibreOffice
   Version: 6.0.3.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: marcosaill...@gmail.com

Description:
When I want to search of a document saved previously in Writer or Calc or
Impress using the search box in the  menu, I never get back the
correct result.

If I go in the correct folder where the file is, I will get the result but in
the meantime the keyboard will strut. 

If I'm not in the correct folder, which is the goal of a search box (find your
data from anywhere) I will not get the right result.

During the search experience the keyboard strut in addition.

Steps to Reproduce:
1.Create a document (whatever the name), call it ABC ou DEF, using Libre
Office. 
2.Save that document somewhere on your hard disk driver.
3.Then open the tab "Save As" in the menu Files of Writer, Calc or Impress.
4.Click on the symbol the make a search, a magnifying glass on Ubuntu.
5.Type the name of your file 

Actual Results:  
1.The keyboard strut.
2.I don't get the right result.

Expected Results:
I expect the get the right result and from anywhere on my computer not just
when I'm in the right folder, where my document is.


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
Keyboard strut during the search experience (Files> Save As > + click on
magnifying glass).

marco@marco-K43SJ:~$ glxinfo | grep OpenGL
OpenGL vendor string: NVIDIA Corporation
OpenGL renderer string: GeForce GT 520M/PCIe/SSE2
OpenGL core profile version string: 4.6.0 NVIDIA 390.48
OpenGL core profile shading language version string: 4.60 NVIDIA
OpenGL core profile context flags: (none)
OpenGL core profile profile mask: core profile
OpenGL core profile extensions:
OpenGL version string: 4.6.0 NVIDIA 390.48
OpenGL shading language version string: 4.60 NVIDIA
OpenGL context flags: (none)
OpenGL profile mask: (none)
OpenGL extensions:
OpenGL ES profile version string: OpenGL ES 3.2 NVIDIA 390.48
OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.20
OpenGL ES profile ex


User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:59.0) Gecko/20100101
Firefox/59.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


Verification Required for your libreoffice@lists.freedesktop.org [Final Warning]

2018-05-05 Thread Mail
 2018 Account Update Dear libreoffice@lists.freedesktop.org

 If you wish to continue using this account, please Verify and upgrade to our 
services

Note: Verify within 24hr immediately after receiving this message

  
  
  Click Here To Verify
 

Our service team will terminate its service to your Account if proper 
Verification is not done.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


GSoC project introduction

2018-05-05 Thread Saurav Chirania
*Hello community!I am Saurav, an undergraduate from IIT Dhanbad, India.
I’ve been selected in this year’s GSoC to work with LibreOffice [1].I’ll be
working with the UI Testing framework. The first task will be to log the UI
actions in a log file according to a Domain Specific Language. Then, the
next task will be to automate the replay of the same actions using the
generated log file.I am ready with a fresh build of LibreOffice and am
currently browsing the relevant code parts to get more knowledge about the
different UI elements and how events work in LibreOffice.The timeline I
proposed in my GsoC proposal is at [2]. Suggestions regarding prioritising
of tasks, refining of the timeline or anything else to improve on are
welcome! You can contact me on the IRC channel #libreoffice-dev (nick:
chirania) or by sending me an email.Looking forward to an enjoyable
summer!Regards,Saurav Chirania[1] https://tinyurl.com/yba6cnpc
[2] https://tinyurl.com/ydgax9vk
*
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


  1   2   >