[Libreoffice-bugs] [Bug 108064] [FILESAVE DOCX] Border Line Style property of the data series not preserved when saved as DOCX

2018-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108064

Adam Kovacs  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |christo...@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 108064] [FILESAVE DOCX] Border Line Style property of the data series not preserved when saved as DOCX

2018-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108064

--- Comment #13 from Adam Kovacs  ---
One question. Why are these properties in if-else relation? If something has a
color property it cant have a linestyle property?

if (aStyleProperties.hasElements())
619  {
620  for (sal_Int32 i=0; i < aStyleProperties.getLength(); ++i)
621  {
622  if( aStyleProperties[i].Name == "Color" )
623  aStyleProperties[i].Value >>= nStyleColor;
624  else if( aStyleProperties[i].Name == "LineStyle" )
625  aStyleProperties[i].Value >>= aStyleLineStyle;
626  else if( aStyleProperties[i].Name == "LineJoint" )
627  aStyleProperties[i].Value >>= aStyleLineJoint;
628  else if( aStyleProperties[i].Name == "LineWidth" )
629  aStyleProperties[i].Value >>= nStyleLineWidth;
630  }
631  }

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


[Libreoffice-bugs] [Bug 108064] [FILESAVE DOCX] Border Line Style property of the data series not preserved when saved as DOCX

2018-07-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108064

--- Comment #12 from Adam Kovacs  ---
So in the file:
https://opengrok.libreoffice.org/xref/core/oox/source/drawingml/lineproperties.cxx

There are some settings for the preset line styles in this function:
https://opengrok.libreoffice.org/xref/core/oox/source/drawingml/lineproperties.cxx#62

And the meanings of the numbers can be seen in this function:
https://opengrok.libreoffice.org/xref/core/oox/source/drawingml/lineproperties.cxx#lclSetDashData

For example XML_dot: 1, 1, 0, 0, 3, and the meanings: Dots, DotLe, Dashes,
DashLen, Distance.

I guess some if-else-if should be written in this function:
https://opengrok.libreoffice.org/xref/core/oox/source/export/drawingml.cxx#573
around line 704.

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


[Libreoffice-bugs] [Bug 108064] [FILESAVE DOCX] Border Line Style property of the data series not preserved when saved as DOCX

2018-07-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108064

--- Comment #11 from Adam Kovacs  ---
https://opengrok.libreoffice.org/xref/core/oox/source/drawingml/lineproperties.cxx
https://opengrok.libreoffice.org/xref/core/oox/inc/drawingml/lineproperties.hxx

https://opengrok.libreoffice.org/xref/core/offapi/com/sun/star/drawing/LineProperties.idl

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


[Libreoffice-bugs] [Bug 108064] [FILESAVE DOCX] Border Line Style property of the data series not preserved when saved as DOCX

2018-07-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108064

--- Comment #10 from Adam Kovacs  ---
Can be also useful:
https://docs.microsoft.com/en-us/dotnet/api/documentformat.openxml.drawing.presetlinedashvalues?view=openxml-2.8.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 108064] [FILESAVE DOCX] Border Line Style property of the data series not preserved when saved as DOCX

2018-07-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108064

--- Comment #9 from Rizal Muttaqin  ---
Reproducible also

Version: 6.0.5.2
Build ID: 1:6.0.5~rc2-0ubuntu0.16.04.1~lo1
CPU threads: 2; OS: Linux 4.10; UI render: default; VCL: gtk2; 
Locale: id-ID (id_ID.UTF-8); Calc: group

Ubuntu 16.04.5

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


[Libreoffice-bugs] [Bug 108064] [FILESAVE DOCX] Border Line Style property of the data series not preserved when saved as DOCX

2018-07-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108064

--- Comment #8 from Adam Kovacs  ---
About the custom line styles:
https://msdn.microsoft.com/en-us/library/dd947967(v=office.12).aspx

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


[Libreoffice-bugs] [Bug 108064] [FILESAVE DOCX] Border Line Style property of the data series not preserved when saved as DOCX

2018-07-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108064

--- Comment #7 from Adam Kovacs  ---
This could be useful about the prst (preset) dashes:
http://officeopenxml.com/drwSp-outline.php

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


[Libreoffice-bugs] [Bug 108064] [FILESAVE DOCX] Border Line Style property of the data series not preserved when saved as DOCX

2018-07-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108064

--- Comment #6 from Adam Kovacs  ---
Hello!
I've noticed that if you make the docx file with MS Word, inside the unzipped
docx folder in the chart1.xml file there are a tag something like:  or  or .
The value of val="something" certainly depends on the custom line style you
chose (for example sysdot is also like normal dashes, and lgDashDotDot contains
more than one dashes and dots).
When you save the docx file with LibreOffice Writer, this a:prstdash tag will
be removed and there will be an  tag instead of it/them (without
val="something").
If you save the file with LibreOffice Writer (...then it loses the custom line
style of course...) and manually edit the chart1.xml file, and delete the
 tag, and instert an appropriate tag (for example a ) instead of it, rezip the contents of the folder and rename it to
docx, the custom line style will work again, and it will have the same look (I
havent tried all of the custom styles, just a few one).

(You can check out and edit the xml files with xml copy or open xml sdk. Open
xml sdk can also compare two xml files).

I guess the responsible code for this, is in the WriteOutLine function in the
https://opengrok.libreoffice.org/xref/core/oox/source/export/drawingml.cxx#573
file, starting at the line 700, with this: if( bDashSet && aStyleLineStyle !=
drawing::LineStyle_DASH ). Currently I have no idea how to solve it. I tried to
rename XML_custdash macros to XML_prstDash, but thats not working. I also tried
to delete the else block and the if header, and the result was losing the
custom dash property, but the line style wont be continous, instead of it it
will be dashed with long dashes and long spacing. Can somebody help? :)

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


[Libreoffice-bugs] [Bug 108064] [FILESAVE DOCX] Border Line Style property of the data series not preserved when saved as DOCX

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

--- Comment #5 from Jacques Guilleron  ---
Reproduced also with
LO 6.1.0.0.alpha1+
Build ID: 23c5125148a8110d88385b29570bf0b7d4400458
CPU threads: 2; OS: Windows 6.1; UI render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2018-05-12_00:15:25
Locale: fr-FR (fr_FR); 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 108064] [FILESAVE DOCX] Border Line Style property of the data series not preserved when saved as DOCX

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

--- 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 108064] [FILESAVE DOCX] Border Line Style property of the data series not preserved when saved as DOCX

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108064

Pénzes Dávid  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 108064] [FILESAVE DOCX] Border Line Style property of the data series not preserved when saved as DOCX

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108064

Jacques Guilleron  changed:

   What|Removed |Added

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

--- Comment #3 from Jacques Guilleron  ---
Hello Gabor,

I reproduce with
LO 5.5.0.0.alpha0+ Build ID: 0e6297932252403883a6057feee488e4ee2bc360
CPU threads: 2; OS: Windows 6.1; UI render: default; 
TinderBox: Win-x86@39, Branch:master, Time: 2017-05-23_00:14:17
Locale: fr-FR (fr_FR); Calc: CL
and
LO 4.2.0.0.beta1 Build ID: f4ca7b35f580827ad2c69ea6d29f7c9b48ebbac7
& Windows 7 Home

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


[Libreoffice-bugs] [Bug 108064] [FILESAVE DOCX] Border Line Style property of the data series not preserved when saved as DOCX

2017-05-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108064

--- Comment #2 from Gabor Kelemen  ---
Created attachment 133530
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133530=edit
Docx in Word 2013 and odt in LO 5.3 side by side

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


[Libreoffice-bugs] [Bug 108064] [FILESAVE DOCX] Border Line Style property of the data series not preserved when saved as DOCX

2017-05-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108064

--- Comment #1 from Gabor Kelemen  ---
Created attachment 133529
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133529=edit
Example file saved from LO 5.3

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