[Libreoffice-bugs] [Bug 111769] Black is set as New color in Area tab when a table with multiple colors in its cells is selected

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111769

--- Comment #23 from Ekansh Jha  ---
I couldn't select multiple tabs while opening or in the case of ambigous. I
have submitted a patch to my little understanding. I know it there will be alot
of mistakes. Please review 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 82030] FILEOPEN: DOCX Strict has missing rectangles

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82030

--- Comment #6 from Yousuf Philips (jay)  ---
Created attachment 137223
  --> https://bugs.documentfoundation.org/attachment.cgi?id=137223=edit
trimmed sample

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


[Libreoffice-bugs] [Bug 113221] Function "Quadratesumme"

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113221

Jean-Baptiste Faure  changed:

   What|Removed |Added

 CC||jbfa...@libreoffice.org

--- Comment #3 from Jean-Baptiste Faure  ---
What is the definition of "Quadratsumme" in your book ?

For me this bug report is invalid because it is a call for help for an
homework.
When you need help using LibreOffice, please go to https://ask.libreoffice.org

Best regards. JBF

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


[Libreoffice-bugs] [Bug 99609] Expert Configuration dialog does not correctly expose column names or row attributes

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99609

--- Comment #2 from Quentin Christensen  ---
Not strictly a fix for having the information automatically read, and this only
works for NVDA, but you can read the other columns by using NVDA's "Move to
next object" command.  Press NVDA+numpad6 in desktop keyboard layout or
NVDA+shift+right arrow in laptop layout.  See
https://www.nvaccess.org/files/nvda/documentation/userGuide.html#toc29 for
information on using Object navigation.

As noted that only works with NVDA.  I'm not sure if Orca or other screen
readers have similar commands.

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


Harsh Kumar license statement

2017-10-22 Thread harsh.cse15
All of my past & future contributions to LibreOffice may be licensed under the MPLv2/LGPLv3+ dual license.___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


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

2017-10-22 Thread Michael Meeks
 loleaflet/src/admin/AdminSocketOverview.js |   93 +++--
 1 file changed, 36 insertions(+), 57 deletions(-)

New commits:
commit 7bc510c17aa37cfe688cb23309469bdd0e76242f
Author: Michael Meeks 
Date:   Sat Oct 21 07:12:07 2017 +0100

Remove inconsistent copy/paste horror - fixing memory id & hence updating.

Change-Id: I8f92650717a39079dd4ad6ed61655266ba841115

diff --git a/loleaflet/src/admin/AdminSocketOverview.js 
b/loleaflet/src/admin/AdminSocketOverview.js
index 5e791c7a..664b0143 100644
--- a/loleaflet/src/admin/AdminSocketOverview.js
+++ b/loleaflet/src/admin/AdminSocketOverview.js
@@ -3,6 +3,39 @@
 */
 /* global vex $ Util AdminSocketBase */
 /* eslint no-unused-vars:0 */
+
+function appendDocRow(document, $rowContainer, $userContainer, sPid, sName, 
sViews, sMem, sDocTime, sDocIdle, modified) {
+
+   var $pid = $(document.createElement('td')).text(sPid);
+   $pid.append($userContainer);
+   $rowContainer.append($pid);
+
+   var $name = $(document.createElement('td')).text(sName);
+   $rowContainer.append($name);
+
+   var $views = $(document.createElement('td')).attr('id', 'docview' + 
sPid)
+   
.text(sViews);
+   $rowContainer.append($views);
+
+   var $mem = $(document.createElement('td')).attr('id', 'docmem' + sPid)
+   .text(Util.humanizeMem(parseInt(sMem)));
+   $rowContainer.append($mem);
+
+   var $docTime = $(document.createElement('td')).addClass('elapsed_time')
+   .val(parseInt(sDocTime))
+   .text(Util.humanizeSecs(sDocTime));
+   $rowContainer.append($docTime);
+
+   var $docIdle = $(document.createElement('td')).attr('id', 'docidle' + 
sPid)
+   .addClass('idle_time')
+   .val(parseInt(sDocIdle))
+   .text(Util.humanizeSecs(sDocIdle));
+   $rowContainer.append($docIdle);
+
+   var $mod = $(document.createElement('td')).attr('id', 'mod' + 
sPid).text(modified);
+   $rowContainer.append($mod);
+}
+
 var AdminSocketOverview = AdminSocketBase.extend({
constructor: function(host) {
this.base(host);
@@ -93,8 +126,7 @@ var AdminSocketOverview = AdminSocketBase.extend({
textMsg = '';
}
 
-   var $rowContainer;
-   var $pid, $name, $views, $mem, $docTime, $docIdle, $doc, $a;
+   var $doc, $a, $rowContainer;
var nViews, nTotalViews;
var docProps, sPid, sName, sViews, sMem, sDocTime;
if (textMsg.startsWith('documents')) {
@@ -115,7 +147,6 @@ var AdminSocketOverview = AdminSocketBase.extend({
 
$doc = $('#doc' + sPid);
$rowContainer = 
$(document.createElement('tr')).attr('id', 'doc' + sPid);
-   $pid = 
$(document.createElement('td')).text(sPid);
$userContainer = 
$(document.createElement('div')).attr('id', 'ucontainer' + sPid)

  .addClass('userContainer dropdown');
$listContainer = 
$(document.createElement('ul')).addClass('dropdown-menu');
@@ -181,34 +212,8 @@ var AdminSocketOverview = AdminSocketBase.extend({
}
}
$userContainer.append($listContainer);
-   $pid.append($userContainer);
-   $rowContainer.append($pid);
-
-   $name = 
$(document.createElement('td')).text(sName);
-   $rowContainer.append($name);
 
-   $views = 
$(document.createElement('td')).attr('id', 'docview' + sPid)
-   
.text(sViews);
-   $rowContainer.append($views);
-
-   $mem = 
$(document.createElement('td')).attr('id', 'docmem' + sPid)
-   
.text(Util.humanizeMem(parseInt(sMem)));
-   $rowContainer.append($mem);
-
-   $docTime = 
$(document.createElement('td')).addClass('elapsed_time')
- 
.val(parseInt(sDocTime))
- 
.text(Util.humanizeSecs(sDocTime));
-   $rowContainer.append($docTime);
-
-   $docIdle = 
$(document.createElement('td')).attr('id', 'docidle' + sPid)
- 
.addClass('idle_time')
- 

Re: How to run multiple instances of Writer simultaneously?

2017-10-22 Thread Tor Lillqvist
> I'm curious: it sounded as if multi-threading within a single soffice.bin
> process is an issue. Any more details on that?
>

What multi-threading? Even when having multiple document windows (for
instance, multiple Writer ones) open, LibreOffice does not use
multi-threading for that.

Multi-threading is a completely different thing, and used for some special
purposes in LibreOffice, not related to whether multiple document windows
are open, or just one, or none at all.

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


[Libreoffice-bugs] [Bug 113371] New: export PDF file broken when used Noto Serif CJK TC

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113371

Bug ID: 113371
   Summary: export PDF file broken when used Noto Serif CJK TC
   Product: LibreOffice
   Version: 5.3.6.1 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Printing and PDF export
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: o...@gmx.com

Description:
My exported PDF file has error when I use font Noto Serif CJK TC, but my ODT
file is fine. Only Noto "Serif" CJK TC happen, Noto "Sans" CJK TC won't. I use
picture to expand.

https://imgur.com/tGlBWj7

https://imgur.com/bmuT7Sk

https://imgur.com/MMdPEME

Steps to Reproduce:
1.https://imgur.com/XK6bx0n
2.PDF export
3.get a bad PDF file

Actual Results:  
get a bad PDF file
https://imgur.com/bmuT7Sk

Expected Results:
get a fine PDF file


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML,
like Gecko) Chrome/61.0.3163.102 Safari/537.36 Vivaldi/1.93.955.38

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


[Libreoffice-bugs] [Bug 97000] LibreOffice Online - The Add Link property isn't in Writer

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97000

Aron Budea  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 113361] Adding links in Impress (Online)

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113361

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=97
   ||000
Summary|hyperlink support   |Adding links in Impress
   ||(Online)
 Ever confirmed|0   |1

--- Comment #1 from Aron Budea  ---
Seems reasonable.

-- 
You are receiving this mail because:
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: How to run multiple instances of Writer simultaneously?

2017-10-22 Thread Jens Tröger
Hi again :)

Just wanted to follow up on this thread. Running multiple Writers in the same 
(single) soffice.bin process seems to incur noticeable performance penalties. 
Therefore, in order to run several soffice.bin processes:

  - Get a uuid string.
  - Create random folder in /tmp/soffice-dir-uuid for the soffice.bin process.
  - Optional as Matthew Francis suggested: copy a cached soffice folder into 
/tmp/soffice-dir-uuid (to improve startup performance).
  - Run soffice --headless 
--accept="pipe,name=soffice-pipe-uuid;urp;StarOffice.ServiceManager" 
-env:UserInstallation=file:///tmp/soffice-dir-uuid  (Or call 
/path/to/soffice.bin directly.)

This allows me to run multiple processes of soffice, each of which services a 
single Writer. Is that how it should be done?

I'm curious: it sounded as if multi-threading within a single soffice.bin 
process is an issue. Any more details on that?

Thanks!
Jens

--
Jens Tröger
http://savage.light-speed.de/
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 113368] File Selection widget in dialog causes crash

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113368

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||bibisectRequest, regression
 Status|UNCONFIRMED |NEW
Version|5.1.6.2 release |5.0 all versions
 Ever confirmed|0   |1

--- Comment #2 from Xisco Faulí  ---
Reproduced in

 Version: 5.0.0.0.alpha1+
Build ID: 0db96caf0fcce09b87621c11b584a6d81cc7df86
Locale: ca-ES (ca_ES.UTF-8)

but not in

- Version: 4.3.0.0.alpha1+
Build ID: c15927f20d4727c3b8de68497b6949e72f9e6e9e

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


[Libreoffice-bugs] [Bug 113368] File Selection widget in dialog causes crash

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113368

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||haveBacktrace

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


[Libreoffice-bugs] [Bug 113368] File Selection widget in dialog causes crash

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113368

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #1 from Xisco Faulí  ---
Created attachment 137222
  --> https://bugs.documentfoundation.org/attachment.cgi?id=137222=edit
gdb backtrace

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


[Libreoffice-bugs] [Bug 112853] Calc doesn't support images in page header or footer

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112853

--- Comment #8 from Gabor Kelemen  ---
Created attachment 137221
  --> https://bugs.documentfoundation.org/attachment.cgi?id=137221=edit
Screenshot of the window

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


[Libreoffice-bugs] [Bug 113370] Copying a row temporarily disables Conditional Formatting.

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113370

--- Comment #1 from mrelw...@yahoo.com ---
Created attachment 137220
  --> https://bugs.documentfoundation.org/attachment.cgi?id=137220=edit
A spreadsheet to show the issue.

This spreadsheet has conditional formatting in place, and a guide how to
reproduce the issue.

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


[Libreoffice-bugs] [Bug 113370] New: Copying a row temporarily disables Conditional Formatting.

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113370

Bug ID: 113370
   Summary: Copying a row temporarily disables Conditional
Formatting.
   Product: LibreOffice
   Version: 4.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: mrelw...@yahoo.com

Description:
Copying a row looks like it doesn't copy the conditional formattings, but if:
- select menu item File > Reload, or
- the spreadsheet is saved and reopened, or
- if visiting any conditional formatting rule for editing,
the conditional formattings are then shown correctly.

For visiting any cconditional formatting rule, it is enough to:
- Menu: Format > Conditional Formatting > Manage, double-click a condition,
"OK", "OK".

Copying two or more rows, or a column doesn't have this issue.

Steps to Reproduce:
1. Create a conditional formatting.
2. Enter data that shows conditional formatting.
3. Copy (Cmd C + Cmd V, or Alt Drag) the single row where you entered data.

Actual Results:  
The copied row appears as if no conditional formattings were in place.

Expected Results:
The conditional formattings should show up right away, without reopening the
spreadsheet or editing conditional formattings.


Reproducible: Always

User Profile Reset: Yes. Happens on a new install.

Additional Info:
This issue has been there for a long time, so I don't remember the earliest
version I saw this bug in. It is still relevant in 5.3.6.1 and 6.0.0.0.alpha0+
(17.Sept.2017).


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

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


[Libreoffice-bugs] [Bug 112853] Calc doesn't support images in page header or footer

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112853

--- Comment #7 from Gabor Kelemen  ---
Created attachment 137219
  --> https://bugs.documentfoundation.org/attachment.cgi?id=137219=edit
The document in Calc 5.4.2 on Ubuntu in print preview

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


[Libreoffice-bugs] [Bug 112853] Calc doesn't support images in page header or footer

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112853

Gabor Kelemen  changed:

   What|Removed |Added

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

--- Comment #6 from Gabor Kelemen  ---
(In reply to raal from comment #5)
> Closing, see comment 4

Excuse me, but could you or Xavier prove the claims in comment 4 with a
screenshot?

I was unable to find an Insert image button in Calc -> Insert -> Headers /
Footers , there is a Custom header section with options for: Text formatting,
Title / File name / Path/File Name , Sheet name , Page numbering, Number of
pages, Date , Time. 

But no option for inserting an image.

-- 
You are receiving this mail because:
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: libgltf, glTF models, collada etc ?

2017-10-22 Thread Thorsten Behrens
Tor Lillqvist wrote:
> If you would ask me, which you shouldn't, I'd say let's kill it, and the
> collada stuff, too.
> 
At least can we decide to only ship _one_ model parser (for random
reasons I'd prefer gltf over collada...)?

Cheers,

-- Thorsten


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


[Libreoffice-bugs] [Bug 113369] New: Switching between read mode and edit mode needs clicking into the document

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113369

Bug ID: 113369
   Summary: Switching between read mode and edit mode needs
clicking into the document
   Product: LibreOffice
   Version: 5.4.2.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: zyklo...@web.de

Description:
In read mode, you have to click into the document for being able to switch back
to the edit mode.

Steps to Reproduce:
1. Open a document.
2. Press " +  + M".
3. Press " +  + M" again ⇒ nothing happens.

Actual Results:  
.

Expected Results:
.


Reproducible: Always

User Profile Reset: No

Additional Info:


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

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


[Libreoffice-bugs] [Bug 113368] New: File Selection widget in dialog causes crash

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113368

Bug ID: 113368
   Summary: File Selection widget in dialog causes crash
   Product: LibreOffice
   Version: 5.1.6.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rebelxtu...@hotmail.com

Created attachment 137218
  --> https://bugs.documentfoundation.org/attachment.cgi?id=137218=edit
Demonstrate crash

When a File Selection widget (FilePicker ?) is in a dialog, clicking the "Close
Window" button will cause LibreOffice to crash.

To reproduce, open the attached file; run the test macro in Module1. Click the
"Close Window" button and LibreOffice crashes. You may get a BASIC runtime
error initially; if so, just run the macro again. If the OK button is clicked
before the "Close Window" button, there will be no crash.

crashreport.libreoffice.org/stats/crash_details/e3486eb7-41c3-4838-815d-10c12af2076f

This came to my attention in Linux Mint 18.2, LibreOffice 5.1.6.2. The crash
report is from the current daily build. The crash also occurs with Test Mode On
when editing the dialog. I believe that is where the crash report was
generated.

I reproduced this crash in Writer 5.1.6.2. It worked properly in 3.3.4. I don't
know about 4.x.x.

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


[Libreoffice-bugs] [Bug 113367] attribute transform in draw:frame has wrong namespace, is svg , has to be draw

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113367

Regina Henschel  changed:

   What|Removed |Added

Summary|attribute transform in  |attribute transform in
   |draw:frame as wrong |draw:frame has wrong
   |namespace, is svg, has to   |namespace, is svg, has to
   |be draw |be 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 113343] Special character: context menu has no function

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113343

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||akshaydeepi...@gmail.com,
   ||tietze.he...@gmail.com,
   ||xiscofa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #1 from Xisco Faulí  ---
Confirmed in

Version: 6.0.0.0.alpha1+
Build ID: 118a0a3734a3f794c67a9d7d4376d8ed78a96fee
CPU threads: 4; OS: Linux 4.10; UI render: default; VCL: gtk3; 
Locale: ca-ES (ca_ES.UTF-8); Calc: group

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


[Libreoffice-bugs] [Bug 113367] New: attribute transform in draw:frame as wrong namespace, is svg, has to be draw

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113367

Bug ID: 113367
   Summary: attribute transform in draw:frame as wrong namespace,
is svg, has to be draw
   Product: LibreOffice
   Version: 6.0.0.0.alpha0+ Master
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rb.hensc...@t-online.de

Created attachment 137217
  --> https://bugs.documentfoundation.org/attachment.cgi?id=137217=edit
image with 30deg rotation

Open attached document. The image is rotated by 30deg. (Nice work!)

Open the file it was generated with Version: 6.0.0.0.alpha1+
Build ID: dc2d133e7953f08f73ef9cd0b40786764b0e2035
CPU threads: 4; OS: Windows 6.1; UI render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2017-10-22_01:16:45
Locale: de-DE (de_DE); Calc: group.

You will find the attribute svg:transform="rotate(300)" in element
. The namespace svg: is wrong for ODF1.2 it has to be namespace
draw:

http://docs.oasis-open.org/office/v1.2/os/OpenDocument-v1.2-os-part1.html#element-draw_frame

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


[Libreoffice-bugs] [Bug 113330] [Flatpak] Navigator cannot be anchored inside the main window

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113330

zyklo...@web.de changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #2 from zyklo...@web.de ---
There I could anchor it.

Now I have it in Wayland, too, but I cannot detach ich o_^.

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


[Libreoffice-bugs] [Bug 105989] Sound file starts automatically

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105989

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 113217] extremely high memory usage when cutting an entire column

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113217

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #9 from Xisco Faulí  ---
> It also says that "this version is supplied by Arch Linux". I will try
> downloading the package from LibreOffice website and testing it then.

Please, try with version 5.4.2 from
https://www.libreoffice.org/download/libreoffice-fresh/
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' if the bug is still present in the latest version.

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


[Libreoffice-bugs] [Bug 113366] Contour editor does not open

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113366

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||bibisectRequest
 Status|UNCONFIRMED |NEW
 CC||r...@post.cz,
   ||xiscofa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #1 from Xisco Faulí  ---
Reproduced in

Version: 6.0.0.0.alpha1+
Build ID: 0c46b3a9a384d5b70a708c3e9459a790dd815c63
CPU threads: 1; OS: Windows 6.1; UI render: default; 
Locale: fr-BE (es_ES); Calc: group

but not in

Version: 6.0.0.0.alpha1+
Build ID: 118a0a3734a3f794c67a9d7d4376d8ed78a96fee
CPU threads: 4; OS: Linux 4.10; UI render: default; VCL: x11; 
Locale: ca-ES (ca_ES.UTF-8); Calc: group

WIN only

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


[Libreoffice-bugs] [Bug 104229] Sidebar decks bleed into each other after changing read only document to edit mode

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104229

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||bibisectRequest, regression
 CC||r...@post.cz,
   ||xiscofa...@libreoffice.org
Version|5.4.0.0.alpha1+ |5.2 all versions
   Severity|minor   |normal

--- Comment #7 from Xisco Faulí  ---
Reproduced in

Version: 5.2.0.0.alpha1+
Build ID: 5b168b3fa568e48e795234dc5fa454bf24c9805e
CPU Threads: 4; OS Version: Linux 4.10; UI Render: default; 
Locale: ca-ES (ca_ES.UTF-8)

but not in

Version: 5.0.0.0.alpha1+
Build ID: 0db96caf0fcce09b87621c11b584a6d81cc7df86
Locale: ca-ES (ca_ES.UTF-8)

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


[Libreoffice-bugs] [Bug 104229] Sidebar decks bleed into each other after changing read only document to edit mode

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104229

Xisco Faulí  changed:

   What|Removed |Added

 CC||glo...@fbihome.de

--- Comment #6 from Xisco Faulí  ---
*** Bug 113264 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 113264] Sidebar not correctly painted when making the read-only presentation editable

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113264

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||xiscofa...@libreoffice.org
 Resolution|--- |DUPLICATE

--- Comment #1 from Xisco Faulí  ---
Hi Jan-Marek,
it seems like a dupe of bug 104229

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

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


[Libreoffice-bugs] [Bug 104468] [META] DOCX (OOXML) image-related issues

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104468

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||82029


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=82029
[Bug 82029] FILEOPEN: DOCX - Microsoft Dynamic logo appears on second page
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 104468] [META] DOCX (OOXML) image-related issues

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104468

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||83300


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=83300
[Bug 83300] FILEOPEN: DOCX - Image anchored as 'As Character' positioned on
wrong page
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 82029] FILEOPEN: DOCX - Microsoft Dynamic logo appears on second page

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82029

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||104468
Summary|FILEOPEN: DOCX Microsoft|FILEOPEN: DOCX - Microsoft
   |Dynamic logo appears on |Dynamic logo appears on
   |second page |second page


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104468
[Bug 104468] [META] DOCX (OOXML) image-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 113266] LO (UI) hangs on opening specific (XLS) document

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113266

Xisco Faulí  changed:

   What|Removed |Added

Version|5.4.2.2 release |Inherited From OOo

--- Comment #3 from Xisco Faulí  ---
Also reproduced in

LibreOffice 3.3.0 
OOO330m19 (Build:6)
tag libreoffice-3.3.0.4

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


[Libreoffice-bugs] [Bug 113266] LO (UI) hangs on opening specific (XLS) document

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113266

--- Comment #2 from Xisco Faulí  ---
Actually, it's responsive, but it needs some time ;-)

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


[Libreoffice-bugs] [Bug 113266] LO (UI) hangs on opening specific (XLS) document

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113266

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||perf, wantBacktrace
 Status|UNCONFIRMED |NEW
 CC||xiscofa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #1 from Xisco Faulí  ---
Confirmed in

Version: 6.0.0.0.alpha1+
Build ID: 118a0a3734a3f794c67a9d7d4376d8ed78a96fee
CPU threads: 4; OS: Linux 4.10; UI render: default; VCL: gtk3; 
Locale: ca-ES (ca_ES.UTF-8); Calc: group

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


[Libreoffice-bugs] [Bug 113365] [META] RTF (text) image-related issues

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113365

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||81943


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=81943
[Bug 81943] FILEOPEN: RTF - Image should be placed behind table (wrap
through-in background)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 81943] FILEOPEN: RTF - Image should be placed behind table ( wrap through-in background)

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81943

Yousuf Philips (jay)  changed:

   What|Removed |Added

   Keywords||bibisectRequest, regression
 Status|RESOLVED|NEW
 Blocks|81234   |113365
 Resolution|WORKSFORME  |---
Summary|FILEOPEN: RTF image should  |FILEOPEN: RTF - Image
   |be placed behind table  |should be placed behind
   ||table (wrap through-in
   ||background)

--- Comment #6 from Yousuf Philips (jay)  ---
Seems it broke in 5.1 and is the same until now.

Version: 5.1.6.2
Build ID: 07ac168c60a517dba0f0d7bc7540f5afa45f0909
CPU Threads: 2; OS Version: Linux 4.4; UI Render: default; 
Locale: en-US (en_US.UTF-8); Calc: group


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=81234
[Bug 81234] [META] RTF filter issues
https://bugs.documentfoundation.org/show_bug.cgi?id=113365
[Bug 113365] [META] RTF (text) image-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 81234] [META] RTF filter issues

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81234

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on|81943   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=81943
[Bug 81943] FILEOPEN: RTF - Image should be placed behind table (wrap
through-in background)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 113365] [META] RTF (text) image-related issues

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113365
Bug 113365 depends on bug 81943, which changed state.

Bug 81943 Summary: FILEOPEN: RTF - Image should be placed behind table (wrap 
through-in background)
https://bugs.documentfoundation.org/show_bug.cgi?id=81943

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|WORKSFORME  |---

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


[Libreoffice-bugs] [Bug 112037] please add support for crash reporting

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112037

raal  changed:

   What|Removed |Added

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

--- Comment #1 from raal  ---
set as new

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


[Libreoffice-bugs] [Bug 113366] New: Contour editor does not open

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113366

Bug ID: 113366
   Summary: Contour editor does not open
   Product: LibreOffice
   Version: 6.0.0.0.alpha0+ Master
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Keywords: regression
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rb.hensc...@t-online.de

Created attachment 137216
  --> https://bugs.documentfoundation.org/attachment.cgi?id=137216=edit
Image with contour

Open attached document. Click on image. Open sidebar properties and click on
button "Edit contour". The contour editor does not open.

It was OK in Version: 6.0.0.0.alpha0+
Build ID: a4a182e24d2e3e954831a0a7c70a7299f28950cb
CPU threads: 4; OS: Windows 6.1; UI render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2017-10-18_04:47:29
Locale: de-DE (de_DE); Calc: group

It is broken in Version: 6.0.0.0.alpha1+
Build ID: dc2d133e7953f08f73ef9cd0b40786764b0e2035
CPU threads: 4; OS: Windows 6.1; UI render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2017-10-22_01:16:45
Locale: de-DE (de_DE); Calc: group

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


[Libreoffice-bugs] [Bug 109332] [FEATURE] Pulling months should keep the case

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109332

raal  changed:

   What|Removed |Added

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

--- Comment #12 from raal  ---
Setting as NEW for now.

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


[Libreoffice-bugs] [Bug 113361] hyperlink support

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113361

Xisco Faulí  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu,
   ||xiscofa...@libreoffice.org
   Severity|normal  |enhancement

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


[Libreoffice-bugs] [Bug 95726] Doubleclick on Open File button creates two dialogs [ possible crash]

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95726

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #14 from Xisco Faulí  ---
Armin Le Grand,
Do you still reproduce this issue on master?

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


[Libreoffice-bugs] [Bug 113365] [META] RTF (text) image-related issues

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113365

Yousuf Philips (jay)  changed:

   What|Removed |Added

   Keywords||filter:rtf
 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 112853] Calc doesn't support images in page header or footer

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112853

raal  changed:

   What|Removed |Added

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

--- Comment #5 from raal  ---
Closing, see comment 4

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


[Libreoffice-bugs] [Bug 103152] [META] Writer image bugs and enhancements

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103152

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||113365


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113365
[Bug 113365] [META] RTF (text) image-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 81234] [META] RTF filter issues

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81234

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||113365


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113365
[Bug 113365] [META] RTF (text) image-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 113365] New: [META] RTF (text) image-related issues

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113365

Bug ID: 113365
   Summary: [META] RTF (text) image-related issues
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
Blocks: 81234, 103152


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=81234
[Bug 81234] [META] RTF filter issues
https://bugs.documentfoundation.org/show_bug.cgi?id=103152
[Bug 103152] [META] Writer image bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 104468] [META] DOCX (OOXML) image-related issues

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104468

Yousuf Philips (jay)  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 112701] [META] DOC (binary) image-related issues

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112701

Yousuf Philips (jay)  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 112751] [META] RTF (text) style bugs and enhancements

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112751

Yousuf Philips (jay)  changed:

   What|Removed |Added

Summary|[META] RTF style bugs and   |[META] RTF (text) style
   |enhancements|bugs and enhancements

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


[Libreoffice-bugs] [Bug 99970] Writer crashes when insert a a new sub-bullet

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99970

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #8 from Xisco Faulí  ---
(In reply to Eric Trogneux from comment #6)
> Created attachment 135880 [details]
> Writer file where the bug can be reproduced
> 
> Reproducing the bug:
> Step 1: Open the document in Writer
> Step 2: Go to page 29, chapter BR-09C.11: xx de x para xxx
> Step 3: Go to ID R-2 line
> Step 4: Position to end of line "El Tipo de ."
> Step 5: Enter new line (Keyboard Enter button)
> Step 6: New line is inserted, as sub-bullet
> Step 7: Try to capture text, you can't.

A few questions:
1. What do you mean by 'try to capture text'?
2. Could you please create a screencast?
2. Is it reproducible in the latest version of LibreOffice from
https://www.libreoffice.org/download/libreoffice-fresh/ ?

I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' if the bug is still present in the latest version.

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


[Libreoffice-bugs] [Bug 108816] [META] Writer toolbar bugs and enhancements

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108816

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||81651


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=81651
[Bug 81651] TOOLBAR: Default 'Insert' button in Tools toolbar doesnt work
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 81651] TOOLBAR: Default 'Insert' button in Tools toolbar doesnt work

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81651

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||108816


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 104520] [META] DOCX (OOXML) bug tracker

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104520

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||81650


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=81650
[Bug 81650] FILEOPEN: LibO exported DOCX crashes on reopen
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 81650] FILEOPEN: LibO exported DOCX crashes on reopen

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81650

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||104520


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104520
[Bug 104520] [META] DOCX (OOXML) bug tracker
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 113364] [META] Transitional OOXML imported or exported that has different results in Office 2010 and 2013

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113364

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Depends on||81507, 77794
Summary|[META] Transitional OOXML   |[META] Transitional OOXML
   |code imported or exported   |imported or exported that
   |that has different results  |has different results in
   |in Office 2010 and 2013 |Office 2010 and 2013
 Ever confirmed|0   |1


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=77794
[Bug 77794] FILEOPEN: DOCX - incorrect placement of image inside a cell when
position option "Layout in table cell" is set
https://bugs.documentfoundation.org/show_bug.cgi?id=81507
[Bug 81507] FILESAVE: DOCX - w:sdtContent not exported correctly
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 77794] FILEOPEN: DOCX - incorrect placement of image inside a cell when position option " Layout in table cell" is set

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77794

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||113364


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113364
[Bug 113364] [META] Transitional OOXML imported or exported that has different
results in Office 2010 and 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 81507] FILESAVE: DOCX - w:sdtContent not exported correctly

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81507

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||113364


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113364
[Bug 113364] [META] Transitional OOXML imported or exported that has different
results in Office 2010 and 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 112906] Custom date format is not applied for fields which use custom function

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112906

raal  changed:

   What|Removed |Added

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

--- Comment #2 from raal  ---
Tested with Version: 6.0.0.0.alpha0+
Build ID: 616f21db9e50a77b0c02dfb123f871a742f46216
CPU threads: 4; OS: Linux 4.4; UI render: default; VCL: gtk3; 

I can change format to "YY-MM-DD" and it works. Please, could you test with
newer version? Setting bug as needinfo, set as unconfirmed again if problem
still occurs in newer version. Thank you.

http://dev-builds.libreoffice.org/daily/master/

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


[Libreoffice-bugs] [Bug 83571] [META] Import issues with Strict Open XML but not transitional OOXML

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83571

Yousuf Philips (jay)  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 107841] [META] Import and export issues with ECMA-376 1st Edition Open XML

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107841

Yousuf Philips (jay)  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 107585] [META] Microsoft Office binary, text and xml file formats

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107585

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||113364


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113364
[Bug 113364] [META] Transitional OOXML code imported or exported that has
different results in Office 2010 and 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 113364] New: [META] Transitional OOXML code imported or exported that has different results in Office 2010 and 2013

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113364

Bug ID: 113364
   Summary: [META] Transitional OOXML code imported or exported
that has different results in Office 2010 and 2013
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
Blocks: 107585


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107585
[Bug 107585] [META] Microsoft Office binary, text and xml file formats
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 113174] Formula Input Line does save the size if you increase it

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113174

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||r...@post.cz
 Ever confirmed|0   |1
 OS|Windows (All)   |All

--- Comment #1 from raal  ---
I can confirm with Version: 6.0.0.0.alpha0+
Build ID: 616f21db9e50a77b0c02dfb123f871a742f46216
CPU threads: 4; OS: Linux 4.4; UI render: default; VCL: gtk3;

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


[Libreoffice-ux-advise] [Bug 99649] [META] Improve Connector handling

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99649
Bug 99649 depends on bug 103930, which changed state.

Bug 103930 Summary: UI: Add connector button to drawing toolbar in LO Writer
https://bugs.documentfoundation.org/show_bug.cgi?id=103930

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 79356] connectors split button is missing in the drawing bar in Writer and Calc

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79356

Maxim Monastirsky  changed:

   What|Removed |Added

 CC||diazbast...@openmailbox.org

--- Comment #12 from Maxim Monastirsky  ---
*** Bug 103930 has been marked as a duplicate of this bug. ***

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


[Libreoffice-ux-advise] [Bug 103930] UI: Add connector button to drawing toolbar in LO Writer

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103930

Maxim Monastirsky  changed:

   What|Removed |Added

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

--- Comment #4 from Maxim Monastirsky  ---


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

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


[Libreoffice-bugs] [Bug 99649] [META] Improve Connector handling

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99649
Bug 99649 depends on bug 103930, which changed state.

Bug 103930 Summary: UI: Add connector button to drawing toolbar in LO Writer
https://bugs.documentfoundation.org/show_bug.cgi?id=103930

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 103930] UI: Add connector button to drawing toolbar in LO Writer

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103930

Maxim Monastirsky  changed:

   What|Removed |Added

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

--- Comment #4 from Maxim Monastirsky  ---


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

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


[Libreoffice-bugs] [Bug 108816] [META] Writer toolbar bugs and enhancements

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108816
Bug 108816 depends on bug 103930, which changed state.

Bug 103930 Summary: UI: Add connector button to drawing toolbar in LO Writer
https://bugs.documentfoundation.org/show_bug.cgi?id=103930

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 81507] FILESAVE: DOCX - w:sdtContent not exported correctly

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81507

--- Comment #8 from Yousuf Philips (jay)  ---
Created attachment 137215
  --> https://bugs.documentfoundation.org/attachment.cgi?id=137215=edit
word 2013 screenshot

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


[Libreoffice-bugs] [Bug 104520] [META] DOCX (OOXML) bug tracker

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104520

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on|81507   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=81507
[Bug 81507] FILESAVE: DOCX - w:sdtContent not exported correctly
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 113363] [META] DOCX (OOXML) content control-related issues

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113363

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||81507


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=81507
[Bug 81507] FILESAVE: DOCX - w:sdtContent not exported correctly
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 81507] FILESAVE: DOCX - w:sdtContent not exported correctly

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81507

Yousuf Philips (jay)  changed:

   What|Removed |Added

 CC||jl...@mail.com,
   ||mikekagan...@hotmail.com
 Blocks|104520  |113363
Summary|FILEOPEN:  w:sdtContent not |FILESAVE: DOCX -
   |retained when saved DOCX|w:sdtContent not exported
   |opened in MS Word   |correctly

--- Comment #7 from Yousuf Philips (jay)  ---
So with master, the text appears correct in Word 2010, but not in Word 2013.
The problems seems to be that each  isnt being wrapped in ,
resulting in Word 2013 showing all the text joined together without the line
breaks. LO exported XML.


 ...
 
   
   aasdfasdkasdcmcxmzmzxç
   
   asdkjasdkaslkfzcxv
   
   
   
   asdflasjdfkasjdfasñldfjñalf
 


Original imported XML


 
   aasdfasdkasdcmcxmzmzxç
 
 
   
 
 
   asdkjasdkaslkfzcxv
 
 
   
 
 
   
 
 
   
   asdflasjdfkasjdfasñldfjñalf
 



Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104520
[Bug 104520] [META] DOCX (OOXML) bug tracker
https://bugs.documentfoundation.org/show_bug.cgi?id=113363
[Bug 113363] [META] DOCX (OOXML) content control-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 113053] Arrow keys action in different keyboard layouts

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113053

raal  changed:

   What|Removed |Added

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

--- Comment #2 from raal  ---
Closing for now.
This Ask seems to be relevant too:
https://ask.libreoffice.org/en/question/87678/cursor-keys-scroll-document-in-calc-instead-of-moving/

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


[Libreoffice-bugs] [Bug 90850] TOOLBAR: Cant set alignment of a single shape in Writer and Calc

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90850

Maxim Monastirsky  changed:

   What|Removed |Added

Summary|TOOLBAR: Cant set alignment |TOOLBAR: Cant set alignment
   |of shapes in Writer and |of a single shape in Writer
   |Calc|and Calc

--- Comment #7 from Maxim Monastirsky  ---
The button works when you select 2 shapes, so the request here is to make it
work also with a single shape, like in Impress.

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


[Libreoffice-bugs] [Bug 90850] TOOLBAR: Cant set alignment of shapes in Writer and Calc

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90850

--- Comment #6 from Maxim Monastirsky  ---
*** Bug 107342 has been marked as a duplicate of this bug. ***

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


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

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103407
Bug 103407 depends on bug 107342, which changed state.

Bug 107342 Summary: Horizontal alignment of shapes doesnt function
https://bugs.documentfoundation.org/show_bug.cgi?id=107342

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 107342] Horizontal alignment of shapes doesnt function

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107342

Maxim Monastirsky  changed:

   What|Removed |Added

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

--- Comment #4 from Maxim Monastirsky  ---


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

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


[Libreoffice-bugs] [Bug 113363] [META] DOCX (OOXML) content control-related issues

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113363

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 113279] calc doesn' t respect the column width or the auto width from a html table

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113279

raal  changed:

   What|Removed |Added

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

--- Comment #1 from raal  ---
Hello,

Thank you for filing the bug. Please send us a sample document, as this makes
it easier for us to verify the bug. 
I have set the bug's status to 'NEEDINFO', so please do change it back to
'UNCONFIRMED' once you have attached a document.
(Please note that the attachment will be public, remove any sensitive
information before attaching it.)
How can I eliminate confidential data from a sample document?
https://wiki.documentfoundation.org/QA/FAQ#How_can_I_eliminate_confidential_data_from_a_sample_document.3F
Thank you

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


[Libreoffice-bugs] [Bug 107742] [META] Form control bugs and enhancements

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107742

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||113363


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113363
[Bug 113363] [META] DOCX (OOXML) content control-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 104523] [META] DOCX (OOXML) form-related issues

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104523

Yousuf Philips (jay)  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 104520] [META] DOCX (OOXML) bug tracker

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104520

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||113363


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113363
[Bug 113363] [META] DOCX (OOXML) content control-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 113363] New: [META] DOCX (OOXML) content control-related issues

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113363

Bug ID: 113363
   Summary: [META] DOCX (OOXML) content control-related issues
   Product: LibreOffice
   Version: unspecified
  Hardware: All
   URL: https://support.office.com/en-us/article/About-content
-controls-283b1e29-0b77-4781-b236-2d02c1cce1c2
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
Blocks: 104520, 107742

Meta for the Content Control type of controls in Office 2007 and above, which
are different from the ActiveX form controls (Control Toolbox toolbar) and
legacy form controls (Forms toolbar) in Office 2003.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104520
[Bug 104520] [META] DOCX (OOXML) bug tracker
https://bugs.documentfoundation.org/show_bug.cgi?id=107742
[Bug 107742] [META] Form control bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 113217] extremely high memory usage when cutting an entire column

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113217

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #8 from raal  ---
no repro Version: 6.0.0.0.alpha0+
Build ID: 616f21db9e50a77b0c02dfb123f871a742f46216
CPU threads: 4; OS: Linux 4.4; UI render: default; VCL: gtk3;

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


[Libreoffice-bugs] [Bug 113362] New: Popup menu stays active when another LibreOffice window becomes active

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113362

Bug ID: 113362
   Summary: Popup menu stays active when another LibreOffice
window becomes active
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mikekagan...@hotmail.com

Steps to reproduce:
1. On Windows, open Writer and Impress side-by-side.
2. In Impress, click on File menu.
3. Click on Writer's title bar (note that menu in Impress is still open, and
cursor is blinking in Writer).
4. Type single character "i".

Expected: "i" in Writer.
Actual result: Properties dialog from Impress is shown, nothing is typed in
Writer. The "Properties" subitem of "File" menu that was open in Impress, has
"i" as accelerator.

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


[Libreoffice-bugs] [Bug 103914] When LO closes menu, it sets window of that menu active

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103914

Mike Kaganski  changed:

   What|Removed |Added

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

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


Unit test fails on macOS

2017-10-22 Thread Heiko Tietze
My ticket wasn't accepted but cross posting here again sounds weird to me. What 
fails is basically this

core/sw/qa/extras/ooxmlexport/ooxmlexport3.cxx:588: Assertion
Test name: testTdf106974_int32Crop::Import
assertion failed
- Expression: sal_Int32( 40470 ) < aGraphicCropStruct.Right
- 39058

All details in https://bugs.documentfoundation.org/show_bug.cgi?id=113345



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


[Libreoffice-bugs] [Bug 113361] New: hyperlink support

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113361

Bug ID: 113361
   Summary: hyperlink support
   Product: LibreOffice Online
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mich...@opensourceecology.org

When I was working on Impress, i want to "Add Link" to some words or some
sentences. Sometimes this is very useful. LibreOffice Online can make this
property. I think this possible.

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


[Libreoffice-bugs] [Bug 97000] LibreOffice Online - The Add Link property isn't in Writer

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97000

--- Comment #1 from mich...@opensourceecology.org ---
+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 103503] [META] GTK2 VCL backend bugs and enhancements

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103503

Maxim Monastirsky  changed:

   What|Removed |Added

 Depends on||113353


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113353
[Bug 113353] UI: floating toolbars have two heading (VCL: gtk2)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 113353] UI: floating toolbars have two heading (VCL: gtk2)

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113353

Maxim Monastirsky  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Blocks||103503
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |momonas...@gmail.com
   |desktop.org |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103503
[Bug 103503] [META] GTK2 VCL backend bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 103503] [META] GTK2 VCL backend bugs and enhancements

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103503
Bug 103503 depends on bug 113353, which changed state.

Bug 113353 Summary: UI: floating toolbars have two heading (VCL: gtk2)
https://bugs.documentfoundation.org/show_bug.cgi?id=113353

   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 113337] FILEOPEN: XLSX - Hyperlinks always displayed as blue

2017-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113337

--- Comment #3 from MM  ---
I thought with the comment you made, that LO colors hyperlinks automatically on
fileopen.

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


  1   2   3   4   5   >