[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations (win only)

2014-12-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

foss f...@openmailbox.org changed:

   What|Removed |Added

Summary|Performance regression for  |Performance regression for
   |the attached file, from |the attached file, from
   |3.6.2 to 4.0.6 up to|3.6.2 to 4.0.6 up to
   |master, triple time to do   |master, triple time to do
   |the calculations.   |the calculations (win only)

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-11-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #40 from Michael Meeks michael.me...@collabora.com ---
I guess improving the spreadsheet to match at the beginning of the string is
not feasible ? =) it is doing a -ton- of un-necessary work left  right in
there.

I can't see us downgrading ICU really. Beyond that if someone wants to
investigate that - they need to generate a matched pair of callgrind traces for
the same workload (with symbols) for the older (faster) version, and the newer
(slower) version - and see if indeed the problem is with ICU. If so, we then
would want to write a micro-benchmark of that, and report to the ICU people
and/or look at exactly what is wrong here.

Failing that, there are of course, lots of potential opportunities for exotic
CPU threading in the formula interpreter; we should be able to parallelize
things rather nicely - for FormulaGroups with over-complicated regexp matching
in-use - but that of course is an even bigger chunk of engineering work: if
someone wants to do that work they can poke me for code pointers =)

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-11-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #39 from m.a.riosv mari...@miguelangel.mobi ---
Could be possible as workaround or temporal solution, downgrade de icu version
to the same that works with AOo, if there aren't other areas having mandatory
dependencies from the actual icu version?

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

m.a.riosv mari...@miguelangel.mobi changed:

   What|Removed |Added

 CC||se...@riseup.net

--- Comment #38 from m.a.riosv mari...@miguelangel.mobi ---
*** Bug 86059 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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-10-31 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

raal r...@post.cz changed:

   What|Removed |Added

 CC||nain.santi...@gmail.com

--- Comment #37 from raal r...@post.cz ---
*** Bug 77491 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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-09-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #35 from Owen Genat owen.ge...@gmail.com ---
Testing attachment 106629 for hard re-calc with these options:

A - Enable regex in formula. OpenCL off (default settings).
B - Disable regex in formula. OpenCL off.
C - Enable regex in formula. OpenCL on (Internal, software interpreter).
D - Disable regex in formula. OpenCL on (Internal, software interpreter).

Under Crunchbang 11 x86_64 using v4.3.2.2 on Core i7 Q720 @ 1.60Ghz:

A ~27 sec
B ~27 sec 
C ~1 sec  
D ~1 sec

Under Crunchbang 11 x86_64 using v4.4.0.0 2014-09-25 on Core i7 Q720 @ 1.60Ghz:

A ~25 sec
B ~25 sec 
C ~1 sec  
D ~1 sec

(In reply to comment #7)
 Doesn't matter if Enable regular expressions in formulas is activated or
 not.

Confirmed (mainly for my own curiosity). The performance under GNU/Linux (25-29
sec) appears to be better than under Windows (59 sec), so maybe there is
something different in the Windows build with ICU?

(In reply to comment #33)
 m.a.riosv points out that we use:
 
  b73baa6fbdfef197608d1f69300919b9-icu4c-53_1-src.tgz
 
 and AOO uses:
 
 2f6ecca935948f7db92d925d88d0d078-icu4c-4_0_1-src.tgz
 
 Its unclear to me how these versions really compare; perhaps something lies
 within ? 

Michael, is there anything someone, such as myself (moderate CLI knowledge),
can assist with in terms of trying to determine differences between these two
ICU versions. One is twice the size of the other, no doubt due to the expansion
of Unicode from 2009-2014. Even icu/source/test/testdata/regextst.txt
highlights numerous differences. Would raising the matter on the Unicode
mailing list help pinpoint an area to look at?
Best wishes, Owen.

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-09-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #36 from Owen Genat owen.ge...@gmail.com ---
Other attachments tested for hard re-calc under Crunchbang 11 x86_64 on Core i7
Q720 @ 1.60Ghz with these options:

A - OpenCL off (default setting).
B - OpenCL on.

Using v4.3.2.2:

100853  100921100922
--  ----
A ~16s  ~1s   ~27s  
B ~16s  crash![1] ~1s

Using v4.4.0.0 2014-09-25:

100853  100921100922
--  ----
A ~15s  ~2s   ~25s
B ~15s  crash![1] ~1s

Given attachment 100922 and attachment 106629 are similar, the match in results
(refer comment 35) seem reasonable.

[1] I will report this as a separate bug.

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #34 from m.a.riosv mari...@miguelangel.mobi ---
Created attachment 106629
  -- https://bugs.freedesktop.org/attachment.cgi?id=106629action=edit
Sample file for test calculation times.

Last calculation times
(Win7x64Ultimate i3-4Gb):

ApacheOO4.1.1   calculation time:  16 seconds,
  beginning search criterion with ^  25 seconds.
 beginning search criterion with .*  31 seconds.

LibreOffice 4.3.2.1 calculation time:  59 seconds,
  beginning search criterion with ^  33 seconds,
 beginning search criterion with .* 201 seconds.

Replacing LibreOffice user profile with Aoo user profile doesn't change times.

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-09-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #32 from Michael Meeks michael.me...@collabora.com ---
So - wait ... ICU got slower - but - do you want a faster sheet yourself for
your own reasons ?

If so, and you want to do a regexp match on a string - you would really win by
adding a '^' to match the beginning of the string if you can.

Otherwise - the matching has to be repeated all through the length of the
string - and ... well that's not incredibly quick =) can you tweak the matches
to be more clever there ? =)

Beyond that, I don't see us being able to make ICU regexps a ton faster anytime
soon; sorry.

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-09-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #33 from Michael Meeks michael.me...@collabora.com ---
m.a.riosv points out that we use:

 b73baa6fbdfef197608d1f69300919b9-icu4c-53_1-src.tgz

and AOO uses:

2f6ecca935948f7db92d925d88d0d078-icu4c-4_0_1-src.tgz

Its unclear to me how these versions really compare; perhaps something lies
within ? It'd be interesting to see if we can bibisect between 3.6.0 and 4.0.0
to see where the slowdown struck =)

The profile shows it all in the ICU regexp for the sheet I profiled; and good
of course not to confuse the issue with other different sheets / performance
issues =)

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-09-11 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #31 from m.a.riosv mari...@miguelangel.mobi ---
https://bugs.freedesktop.org/attachment.cgi?id=100853

4.3.1.2 00:00:59 :'-(

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-07-11 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #29 from Michael Meeks michael.me...@collabora.com ---
Bit of a mystery this really, many of these matches should either immediately
fail, or immediately succeed (it seems to me). Why we get 61m calls to
'RegexMatcher::MatchChunkAt' from 2m calls to TextSearch::RESearchForward is a
mystery to me - the matches are all ~trivial mostly comparing for an initial
series of digits as a string, and then a .* on the end ;-)

Would bear digging into those MatchChunkAt's manually I suspect.

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-07-11 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #30 from Michael Meeks michael.me...@collabora.com ---
Interesting; we always call 'find':

static bool lcl_findRegex( RegexMatcher * pRegexMatcher, sal_Int32 nStartPos,
UErrorCode  rIcuErr )
{
if (!pRegexMatcher-find( nStartPos, rIcuErr))

which searches all along the string for a match I believe:

http://icu-project.org/apiref/icu4c/classicu_1_1RegexMatcher.html#a50cce379741d692b8a4edc95e3145305

Which seems rather a shame for things that are starts_with regexps - but then
again; quite possibly this is not a 'starts with' regexp. It is entirely
possible that adding a '^' at the beginning of the match in the queries would
save a ton of time here.

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-07-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #28 from Michael Meeks michael.me...@collabora.com ---
Created attachment 102524
  -- https://bugs.freedesktop.org/attachment.cgi?id=102524action=edit
Profile with the prototype patch enabled ...

A better profile without all the debugutil stuff inside it -and- with the cache
- that drops the ICU calls from 5m - 2m over a load/hard-re-calc/exit cycle -
we are still completely dominated by ICU regexp matching time.

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-07-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #23 from Jay Philips philip...@hotmail.com ---
All went well this time. :)

https://drive.google.com/file/d/0B6qJrVIa0SAlMFNNV1doZjJ3ZXc/edit?usp=sharing

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-07-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #24 from Michael Meeks michael.me...@collabora.com ---
Created attachment 102485
  -- https://bugs.freedesktop.org/attachment.cgi?id=102485action=edit
kcachegrind map ...

I suspect the openCL code is ignoring the use-regexp-in-formulas which is
perhaps other reason why it is so fast =) I attach a photo of Jay's nice trace:
thanks for that Jay !

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-07-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #25 from Michael Meeks michael.me...@collabora.com ---
Hmm - it is also somewhat amusing that the only debuginfo build we have - also
has debugutil turned on adding a ton of different checks that seriously distort
the performance picture. ... will try to get Matus' builds up-loaded. Either
way - here I guess it is the 4 million calls to ScTable::ValidQuery that are
causing the grief =)

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-07-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #26 from Jay Philips philip...@hotmail.com ---
(In reply to comment #24)
 I suspect the openCL code is ignoring the use-regexp-in-formulas which is
 perhaps other reason why it is so fast =) I attach a photo of Jay's nice
 trace: thanks for that Jay !

Thanks for the photo. Reminds me of windirstat
 https://windirstat.info/images/windirstat.jpg 

(In reply to comment #25)
 Hmm - it is also somewhat amusing that the only debuginfo build we have -
 also has debugutil turned on adding a ton of different checks that seriously
 distort the performance picture. ... will try to get Matus' builds
 up-loaded.

So i'm assuming valgrind/callgrind can go faster if that is turned off, right?

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-07-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #27 from Michael Meeks michael.me...@collabora.com ---
Created attachment 102490
  -- https://bugs.freedesktop.org/attachment.cgi?id=102490action=edit
horrible prototype patch ...

I attach a prototype patch that adds a single item text search cache - to avoid
calling ICU endlessly for the same strings; I see a huge number of repeated
back-to-back string matching ~and this (I guess) should speed that up. Whether
that is in the right place or not is unclear to me - I'd love input from Eike -
and the patch is unfinished; need to cleanup the ScQueryEntry struct to make
this cleaner. Also - of course it is to some degree dependent on the data as to
whether that is at all useful. Still - it saves 10 seconds of the 35 that it
costs to calculate this document for me.

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-07-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #19 from Michael Meeks michael.me...@collabora.com ---
Cachegrind doesn't work on Windows; so you will need Linux -and- a build with
debugging symbols [ without that there is virtually no point ;-]. I added some
instructions here:

https://wiki.documentfoundation.org/QA/BugReport/Debug_Information#GNU.2FLinux:_How_to_get_a_cachegrind_trace

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-07-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #20 from Jay Philips philip...@hotmail.com ---
Is strace possible on windows?

I've done the callgrind, but an hour into the Shift+Ctrl+F9 process, the pc
shut off for some strange reason. So i pulled whatever had been outputted and
attached it. Hope its possible to see something from it, but if not, i can run
it again.

https://drive.google.com/file/d/0B6qJrVIa0SAlZHlQOUtqV2cwd1U/edit?usp=sharing

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-07-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #21 from Michael Meeks michael.me...@collabora.com ---
strace is not possible on windows though there is a MS equivalent, however its
not going to show us where big CPU related slowdowns are like cachegrind will.

 I've done the callgrind, but an hour into the Shift+Ctrl+F9 process, the pc
 shut off for some strange reason. So i pulled whatever had been outputted and
 attached it. Hope its possible to see something from it, but if not, i can
 run it again.

Awesome - of course cachegrind -really- hammers your CPU quite hard, then again
on a modern machine that shoudl leave some thermal envelope from the other
CPUs. Unfortunately the trace you gave me is just of a first start / setup -
ie. nothing interesting =)

Any chance you can have another go - and -thanks- so much for getting that
setup ?

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-07-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #22 from Jay Philips philip...@hotmail.com ---
(In reply to comment #21)
 strace is not possible on windows though there is a MS equivalent, however
 its not going to show us where big CPU related slowdowns are like cachegrind
 will.

Well if you could add the MS equivalent to the wiki, it would be great for
whenever strace is needed on windows. :)

 Awesome - of course cachegrind -really- hammers your CPU quite hard, then
 again on a modern machine that shoudl leave some thermal envelope from the
 other CPUs. Unfortunately the trace you gave me is just of a first start /
 setup - ie. nothing interesting =)

Yep it hammered my 7+ year old dual core CPU at 50% the whole time and i
mistakenly cancelled it once trying to copy text from the terminal using
ctrl+c. =)

Well about it shutting off, it didnt completely power off, it went into standby
mode because the laptop wasnt plugged into the power and when i awake it from
standby, all the things there were running had closed.

 Any chance you can have another go - and -thanks- so much for getting that
 setup ?

Second go on the way. Hopefully it will finish within a day. This time around,
i'm loading libreoffice with the file directly, rather than it opening the
start center and then having to go to open, as that added quite some time to
the process.

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-07-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #17 from Michael Meeks michael.me...@collabora.com ---
Interesting =) If we could get a callgrind trace done on a build with debugging
symbols, then the slow bits will immediately jump out of that when you
visualise it in kcachegrind.

It would saves some time to have that done by someone; thanks ! =)

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-07-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #18 from Jay Philips philip...@hotmail.com ---
I would be happy to supply the trace but dont know how to do it on windows. :)

Would the linux valgrind log be sufficient, as mentioned at 
https://wiki.documentfoundation.org/QA/BugReport/Debug_Information#GNU.2FLinux:_How_to_get_a_Valgrind_log
 or do i need to add some additional commandline arguments to it, as the
valgrind manual states i need to use --tool=callgrind.

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-07-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #15 from m.a.riosv mari...@miguelangel.mobi ---
Created attachment 102314
  -- https://bugs.freedesktop.org/attachment.cgi?id=102314action=edit
Compilation of times for hard recalc with two function and different OS

I think is more visible the performance regression from 3.6.7 with all 4.x
versions with different OS.

In my point of view is a hard regression because same complex files times for
hard recalc becomes really long.

Tested functions, SUMIF and VLOOKUP are both ones of the most used in
spreadsheets.

Please can someone at least set up as NEW.

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-07-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

Jay Philips philip...@hotmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||michael.me...@collabora.com
 Ever confirmed|0   |1

--- Comment #16 from Jay Philips philip...@hotmail.com ---
System : Windows 7 64-bit with an Intel Core 2 CPU @ 1.83Ghz and 2.5gb.

Loading Time [attachment 100853]:

3.3.0   - 0:05
3.6.7   - 0:05
4.0.6   - 1:07
4.2.6   - 0:13
4.3.0.2 - 0:04

Shift+Ctrl+F9 [attachment 100853]:

3.3.0   - 0:22
3.6.7   - 0:26
4.0.6   - 1:04
4.2.6   - 1:03 (with and without OpenCL)
4.3.0.2 - 1:04 (with and without OpenCL)

Shift+Ctrl+F9 [attachment 100922]:

3.6.7   - 0:30
4.0.6   - 1:45
4.2.6   - 1:26
4.2.6   - 0:01 (OpenCL)
4.3.0.2 - 1:27
4.3.0.2 - 0:01 (OpenCL)

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-07-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #14 from Owen Genat owen.ge...@gmail.com ---
(In reply to comment #13)
 From results with OpenCL enable works fine for 4.3.0.1.0+/4.4.0.0.alpha0+
 with really an awesome time reduction.

I tested these versions under GNU/Linux:

A v3.5.7.2, 3215f89-f603614-ab984f2-7348103-1225a5b
B v4.1.6.2, 40ff705089295be5be0aae9b15123f687c05b0a
C v4.2.5.2, 61cb170a04bb1f12e77c884eab9192be736ec5f5
D v4.3.0.2, 14ed55896fdfcb93ff437b85c4f3e1923d2b1409

Hard recalc, indicates similar results to those reported. 

Attachment 100853: A ~9 sec; B ~16 sec; C ~16 sec (~16 sec); D ~19 sec (~19
sec)
Attachment 100921: A 1 sec; B ~50 sec; C 1 sec; D 1 sec
Attachment 100922: A 9 sec; B ~52 sec; C ~29 sec (1 sec); D ~46 sec (1 sec)

Figures in brackets are for OpenCL turned on i.e., original attachment seems
unaffected. Not sure this is confirmation.

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-06-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #13 from m.a.riosv mari...@miguelangel.mobi ---
VLOOKUP for text sample file

Win7x64 (parallel installations)

00:00:19 Version 3.6.7.2

00:00:54 Version: 4.2.6.0.0+ (clean profile)
00:00:53 Version: 4.2.6.0.0+ (clean profile) OpenCL enable. No difference.
  Build ID: 7a5727ba35ca2cff191208625448994202a94df6
  TinderBox: Win-x86@42, Branch:libreoffice-4-2, Time:
2014-06-23_03:45:23

00:00:57 Version: 4.3.0.1.0+ (clean profile)
00:00:03 Version: 4.3.0.1.0+ (clean profile) OpenCL enable.
  Build ID: 52613b9b632721ebb5167a4d9529c242a0b907da
  TinderBox: Win-x86@42, Branch:libreoffice-4-3, Time:
2014-06-23_07:41:56

00:05:45 Version: 4.4.0.0.alpha0+ (clean profile)
00:00:03 Version: 4.4.0.0.alpha0+ (clean profile) OpenCL enable.
  Build ID: 45f18e2ff2a54c412f296818fd73111cb62c7f3d
  TinderBox: Win-x86@39, Branch:master, Time: 2014-06-24_06:47:18

From results with OpenCL enable works fine for 4.3.0.1.0+/4.4.0.0.alpha0+ with
really an awesome time reduction. But not usable for me with more complex
files.

Without OpenCL, the slowness in respect with 3.6.7 remains.

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-06-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #12 from m.a.riosv mari...@miguelangel.mobi ---
(In reply to comment #9)
...
 
 So, it doesn't seem to be a regression within LO... Can you (or someone in
 QA) run the same test on another PC with a different CPU?

Forgive me Pedro, I'm not reporting about loading times, but time to do a
second hard recalc (comment#1)

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-06-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #11 from m.a.riosv mari...@miguelangel.mobi ---
VLOOKUP for text sample file

Virtual Box 4.3.12 (Win7x64Ultimate)
OpenSuse64 13.1
00:00:14 Version: 3.6.7.2 (Build ID: e183d5b)
00:00:55 Version: 4.1.6.2 Build ID: 410m0(Build:2)
00:00:54 Version: 4.3.0.1 Build ID: 9ed0c4329cf13f882dab0ee8b9ecd7b05e4aafbb

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-06-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

m.a.riosv mari...@miguelangel.mobi changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-06-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

Pedro pedl...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #9 from Pedro pedl...@gmail.com ---
I get quite different results with an Atom 330 based nettop running XP SP3
(tested with LO 4.3 Beta2 and LO 3.6.7.2 as well as AOO 4.1.0) when using your
VLOOKUP for text sample file

The loading times are around 50 seconds with LO 4.3 and 3.6.7.2 and nearly 2
minutes with AOO 4.1.0 (AOO takes ~1min to load and then 1min to Adapt row
height...)

So, it doesn't seem to be a regression within LO... Can you (or someone in QA)
run the same test on another PC with a different CPU?

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-06-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #10 from m.a.riosv mari...@miguelangel.mobi ---
VLOOKUP for text sample file

WinXPsp3, AMD athlon(tm)XP 2800+, 2,07Ghz, 1,43GB Ram
00:00:28 Version: 3.6.7.2 (Build Id.: e183d5b)
00:01:08 Version: 4.2.4.2 Build Id.: 63150712c6d317d27ce2db16eb94c2f3d7b699f8

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-06-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

bfoman bfo.bugm...@spamgourmet.com changed:

   What|Removed |Added

 Whiteboard||perf

--- Comment #8 from bfoman bfo.bugm...@spamgourmet.com ---
Received via email (please always comment via bug):

Hi,

done a test with Aoo (first sample file):

00:00:16 - AOo 3.4.1
00:00:16 - AOo 4.1.0

with new sample file in the bug, VLOOKUP() for text:

00:00:13 - AOo 3.4.1
00:00:13 - AOo 4.1.0

Best regards.
Miguel Ángel.

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-06-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #6 from m.a.riosv mari...@miguelangel.mobi ---
Created attachment 100921
  -- https://bugs.freedesktop.org/attachment.cgi?id=100921action=edit
Sample file to test VLOOKUP() for numbers

Sample with VLOOKUP() searching for numbers.

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-06-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #7 from m.a.riosv mari...@miguelangel.mobi ---
Created attachment 100922
  -- https://bugs.freedesktop.org/attachment.cgi?id=100922action=edit
Sample file to test VLOOKUP() for text


I have done a couple of test:

With VLOOKUP() function, searching for:
Numbers_  Text
00:00:02  00:00:19  - Version 3.6.7.2
00:00:02  00:01:06  - Version 4.0.6.2
00:00:02  00:00:58  - Version 4.2.5.1

Doesn't matter if Enable regular expressions in formulas is activated or not.

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-06-11 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

bfoman bfo.bugm...@spamgourmet.com changed:

   What|Removed |Added

 CC||bfo.bugm...@spamgourmet.com

--- Comment #4 from bfoman bfo.bugm...@spamgourmet.com ---
Can you provide benchmarks for current stable branches and master?

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-06-11 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #5 from m.a.riosv mari...@miguelangel.mobi ---
After open the sample file, times for the second hard recalc, firsts very
similar:

00:00:18 - Version 3.6.7.2 (Build ID: e183d5b)
00;00:54 - Version 4.0.6.2 (Build ID: 2e2573268451a50806fcd60ae2d9fe01dd0ce24)
00:00:55 - Version: 4.1.6.2 Build ID: 40ff705089295be5be0aae9b15123f687c05b0a
00:00:56 - Version: 4.2.0.4 Build ID: 05dceb5d363845f2cf968344d7adab8dcfb2ba71
00:00:52 - Version: 4.2.3.3 Build ID: 882f8a0a489bc99a9e60c7905a60226254cb6ff0
00:00:54 - Version: 4.2.4.2 Build ID: 63150712c6d317d27ce2db16eb94c2f3d7b699f8
00:00:54 - Version: 4.2.5.1 Build ID: 881bb88abfe2992c6cede97c23e64a9885de87de
00:00:56 - Version: 4.2.6.0.0+ Build ID:
5e04f1b373a288d7804253113bb28796a67dc67f
Win-x86@42, Branch:libreoffice-4-2, Time:
2014-06-10_09:00:50
00:00:56 - Version:
4.3.0.0.beta2+BuildID:f817dac57c748dd156cd9bacf8368dd561de88d4
Win-x86@42, Branch:libreoffice-4-3, Time:
2014-06-11_08:24:10
00:01:57 - Version:
4.4.0.0.alpha0+BuildID7d10da2174eac4afd189ee2e9bfb031d315763c1
TB: Win-x86@39, Branch:master, Time: 2014-06-11_01:17:37
This one has symbols.

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


[Libreoffice-bugs] [Bug 79892] New: Performance regression for the attached from 3.6.2 to 4.0.6 and ahead, triple time to do the calculations.

2014-06-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

  Priority: medium
Bug ID: 79892
  Keywords: regression
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Performance regression for the attached from 3.6.2 to
4.0.6 and ahead, triple time to do the calculations.
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: mari...@miguelangel.mobi
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.0.6.2 release
 Component: Spreadsheet
   Product: LibreOffice

Created attachment 100836
  -- https://bugs.freedesktop.org/attachment.cgi?id=100836action=edit
Sample file to test

Win7x64Ultimate, Intel I3(2,13), 4GB.

With sample file, calculation time:

Version 3.6.2: ~ 18

Versions from 4.0.6 to master: ~ 56 - 59

The file use intensively regular expressions (SUMIF),
just with 4.0, https://wiki.documentfoundation.org/ReleaseNotes/4.0
New Regular Expression Engine ICU was adopted. 

Annoying, regular expressions is one of the more powerful tools in LibreOffice.

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached from 3.6.2 to 4.0.6-master, triple time to do the calculations.

2014-06-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

m.a.riosv mari...@miguelangel.mobi changed:

   What|Removed |Added

Summary|Performance regression for  |Performance regression for
   |the attached from 3.6.2 to  |the attached from 3.6.2 to
   |4.0.6 and ahead, triple |4.0.6-master, triple time
   |time to do the  |to do the calculations.
   |calculations.   |

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached from 3.6.2 to 4.0.6-master, triple time to do the calculations.

2014-06-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #1 from m.a.riosv mari...@miguelangel.mobi ---
I forgot, times are for hard recacl [Shift+Ctrl+F9]

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 up to 4.0.6-master, triple time to do the calculations.

2014-06-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

m.a.riosv mari...@miguelangel.mobi changed:

   What|Removed |Added

Summary|Performance regression for  |Performance regression for
   |the attached from 3.6.2 to  |the attached file, from
   |4.0.6-master, triple time   |3.6.2 up to 4.0.6-master,
   |to do the calculations. |triple time to do the
   ||calculations.

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-06-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

m.a.riosv mari...@miguelangel.mobi changed:

   What|Removed |Added

Summary|Performance regression for  |Performance regression for
   |the attached file, from |the attached file, from
   |3.6.2 up to 4.0.6-master,   |3.6.2 to 4.0.6 up to
   |triple time to do the   |master, triple time to do
   |calculations.   |the calculations.

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-06-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #2 from Kohei Yoshida libreoff...@kohei.us ---
The sample file looks corrupted though.  Can you double-check?

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-06-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

--- Comment #3 from m.a.riosv mari...@miguelangel.mobi ---
Created attachment 100853
  -- https://bugs.freedesktop.org/attachment.cgi?id=100853action=edit
Sample file to test

Attached again.

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-06-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

m.a.riosv mari...@miguelangel.mobi changed:

   What|Removed |Added

 Attachment #100853|application/xml |application/vnd.oasis.opend
  mime type||ocument.spreadsheet

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


[Libreoffice-bugs] [Bug 79892] Performance regression for the attached file, from 3.6.2 to 4.0.6 up to master, triple time to do the calculations.

2014-06-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79892

m.a.riosv mari...@miguelangel.mobi changed:

   What|Removed |Added

 Attachment #100836|application/xml |application/vnd.oasis.opend
  mime type||ocument.spreadsheet
 Attachment #100836|0   |1
is obsolete||

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


[Libreoffice-bugs] [Bug 55413] broken formulas and extra line added after saving in 3.6.2, closing and re-opening a spreadsheet; regression from LibO 3.5

2013-12-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55413

Eike Rathke er...@redhat.com changed:

   What|Removed |Added

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

--- Comment #21 from Eike Rathke er...@redhat.com ---
Whatever it was, it appears to be fixed, tried in 4-1 and 4-2.

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


[Libreoffice-bugs] [Bug 55413] broken formulas and extra line added after saving in 3.6.2, closing and re-opening a spreadsheet; regression from LibO 3.5

2013-12-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55413

Michael Stahl mst...@redhat.com changed:

   What|Removed |Added

  Attachment #68420|application/octet-stream|application/vnd.oasis.opend
  mime type||ocument.spreadsheet

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


[Libreoffice-bugs] [Bug 55474] aptitude package manager broken after install of 3.6.2-rc1

2013-09-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55474

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTABUG
 CC||jmadero@gmail.com

--- Comment #2 from Joel Madero jmadero@gmail.com ---
This is not a bug. It happens when you install the debian packages from
libreoffice.org/download on top of your local install. In general we recommend
sticking with PPA's, then things to get broken, we have official PPA for
pre-release and for releases if you want to stay ahead of what Ubuntu tends to
do (which is not update on the default repos)

We've had lots of discussions on ESC and in mailing list about this and I
believe in the future we will provide some kind of warning when downloading
from libreoffice.org but don't hold me to that ;) I don't remember the
conclusion of our talks

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


[Libreoffice-bugs] [Bug 56761] FILEOPEN: .odm crashes after update to 3.6.2

2013-09-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56761

QA Administrators qa-ad...@libreoffice.org changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INVALID

--- Comment #6 from QA Administrators qa-ad...@libreoffice.org ---
Dear Bug Submitter,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INVALID due to inactivity and a lack of
information which is needed in order to accurately reproduce and confirm the
problem. We encourage you to retest your bug against the latest release. If the
issue is still present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating system and the
latest version of LibreOffice that you have confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED and we will
attempt to reproduce the issue. 
Please do not:
a) respond via email 
b) update the version field in the bug or any of the other details on the top
section of FDO

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


[Libreoffice-bugs] [Bug 56761] FILEOPEN: .odm crashes after update to 3.6.2

2013-07-18 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56761

QA Administrators qa-ad...@libreoffice.org changed:

   What|Removed |Added

 QA Contact||qa-ad...@libreoffice.org

--- Comment #5 from QA Administrators qa-ad...@libreoffice.org ---
Dear Bug Submitter,

Please read the entire message in its entirety before continuing - also please
respond directly to FDO when replying - do not reply via email.

This bug has been in NEEDINFO status with no change for at least 6 months.
Please provide the requested information as soon as possible and mark the bug
as UNCONFIRMED. Due to regular bug tracker maintenance, if the bug is still in
NEEDINFO status with no change in 30 days the QA team will close the bug as
INVALID due to lack of needed information.

For more information about our NEEDINFO policy please read the wiki located
here: 
https://wiki.documentfoundation.org/QA/FDO/NEEDINFO

If you have already provided the requested information, please mark the bug as
UNCONFIRMED so that the QA team knows that the bug is ready to be confirmed.


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


Warm Regards,
QA Team

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


[Libreoffice-bugs] [Bug 56286] Crash on starting LibreOffice 3.6.2

2013-06-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56286

Stephan Bergmann sberg...@redhat.com changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|WORKSFORME  |---
   Assignee|libreoffice-b...@lists.free |sberg...@redhat.com
   |desktop.org |

--- Comment #5 from Stephan Bergmann sberg...@redhat.com ---
BUG IN CLIENT OF LIBDISPATCH: Do not close random Unix descriptors:  Looks
like this is due to the fix for bug 50603,
http://cgit.freedesktop.org/libreoffice/core/commit/?id=d5e9c2e3e85a2bcdd6a0b2088253fc133e52e831
fdo#50603: Close fds across a restart of soffice on Mac OS X.

Very early in main (before calling osl_setCommandArgs, so this matches the
state of thread 0 in comment 0), we close all open file descriptors on Mac OS
X.  It appears that by that time additional OS-specific threads can already
have been started and opened some file descriptors, though.

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


[Libreoffice-bugs] [Bug 56286] Crash on starting LibreOffice 3.6.2

2013-06-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56286

tbehr...@suse.com changed:

   What|Removed |Added

 CC||nthieb...@gmail.com,
   ||sberg...@redhat.com,
   ||tbehr...@suse.com

--- Comment #4 from tbehr...@suse.com ---
Adding two more mac hackers to Cc list - guys, extra-weird mac crash with a few
dupes, maybe one of you has additional ideas how to debug that?

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


[Libreoffice-bugs] [Bug 63936] LibreOffice Menus Stop Working even with libreoffice=1:3.6.2~rc2-0ubuntu4 and indicator-appmenu=12.10.3-0ubuntu2.1

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63936

Björn Michaelsen bjoern.michael...@canonical.com changed:

   What|Removed |Added

Summary|UI: Unity integration bugs  |LibreOffice Menus Stop
   ||Working even with
   ||libreoffice=1:3.6.2~rc2-0u
   ||buntu4 and
   ||indicator-appmenu=12.10.3-
   ||0ubuntu2.1

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


[Libreoffice-bugs] [Bug 63936] LibreOffice Menus Stop Working even with libreoffice=1:3.6.2~rc2-0ubuntu4 and indicator-appmenu=12.10.3-0ubuntu2.1

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63936

--- Comment #4 from shopp...@epistole.de ---
Sorry, I am new to this whole bug-reporting business. Thanks for your effort!

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


[Libreoffice-bugs] [Bug 55474] aptitude package manager broken after install of 3.6.2-rc1

2013-03-15 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55474

bfoman bfo.bugm...@spamgourmet.com changed:

   What|Removed |Added

 CC||bfo.bugm...@spamgourmet.com

--- Comment #1 from bfoman bfo.bugm...@spamgourmet.com ---
Is this still an issue for packages of the latest stable release?

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


[Libreoffice-bugs] [Bug 56286] Crash on starting LibreOffice 3.6.2

2013-03-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56286

Julien Nabet serval2...@yahoo.fr changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME
 CC||serval2...@yahoo.fr

--- Comment #3 from Julien Nabet serval2...@yahoo.fr ---
No feedback since several months, put it WFM.

Robin: don't hesitate to reopen if you still reproduce this with 3.6.5 or 4.0.0
and a brand new LO profile (see
https://wiki.documentfoundation.org/UserProfile)

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


[Libreoffice-bugs] [Bug 56761] FILEOPEN: .odm crashes after update to 3.6.2

2012-11-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56761

Petr Mladek pmla...@suse.cz changed:

   What|Removed |Added

  Attachment #70029|text/plain  |application/vnd.oasis.opend
  mime type||ocument.text-master

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


[Libreoffice-bugs] [Bug 56761] FILEOPEN: .odm crashes after update to 3.6.2

2012-11-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56761

Petr Mladek pmla...@suse.cz changed:

   What|Removed |Added

 CC||cedric.bosdonnat.ooo@free.f
   ||r, mst...@redhat.com,
   ||pmla...@suse.cz

--- Comment #3 from Petr Mladek pmla...@suse.cz ---
Ah, I forgot to add myself into CC and missed your comment :-(

Hmm, I am still not able to reproduce the crash. I can open the attached
document without problems. Note that it does not ask to update any style or
links. I wonder if the sample is incomplete or I do something wrong.

Kara, could you please provide more detailed steps to reproduce? Something
like:

1. Open the document blabla.odm
2. Select in menu 
3. ...

Result: Crash,...

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


[Libreoffice-bugs] [Bug 56761] FILEOPEN: .odm crashes after update to 3.6.2

2012-11-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56761

Petr Mladek pmla...@suse.cz changed:

   What|Removed |Added

   Severity|blocker |critical
   Priority|medium  |high

--- Comment #4 from Petr Mladek pmla...@suse.cz ---
Anyway, master document is a feature used only by limited group of experienced
users. It seems that we have a regression here and should fix it ASAP. On the
other hand, it could not block the the release of 3.6.4 bugfix release with
many other useful fixes = slightly reducing the severity.

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


[Libreoffice-bugs] [Bug 56761] FILEOPEN: .odm crashes after update to 3.6.2

2012-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56761

Petr Mladek pmla...@suse.cz changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from Petr Mladek pmla...@suse.cz ---
Hmm, I am unable to reproduce this with the LO-3.6.3 on Linux. I created new
master document, modified some styles (Default, Header 1), wrote some text
using these styles, saved and reopened the file. It worked fine.

Kara, could you please attach sample file that shows the problem?

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


[Libreoffice-bugs] [Bug 56761] FILEOPEN: .odm crashes after update to 3.6.2

2012-11-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56761

--- Comment #2 from Kara k...@rosemeier.co ---
Created attachment 70029
  -- https://bugs.freedesktop.org/attachment.cgi?id=70029action=edit
Crashes on updating styles

Two people confirmed here http://libreofficeforum.org/node/4676#comment-21062

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


[Libreoffice-bugs] [Bug 56761] New: FILEOPEN: .odm crashes after update to 3.6.2

2012-11-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56761

  Priority: medium
Bug ID: 56761
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FILEOPEN: .odm crashes after update to 3.6.2
  Severity: blocker
Classification: Unclassified
OS: Linux (All)
  Reporter: k...@rosemeier.co
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 3.6.2.2 release
 Component: Writer
   Product: LibreOffice

Existing master document crashes app on opening. Asks to update links and
styles, and then crashes all Libreoffice apps without error or trace. Same
behaviour with newly crafted .odm as soon as some changes in styles were made
(Header formats). No error message when calling doc from terminal, but same
behaviour.

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


[Libreoffice-bugs] [Bug 55839] File = Print = application crashes (CALC, IMPRESS, DRAW, WRITER) after upgrade from 3.5.6 to 3.6.2

2012-10-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55839

--- Comment #12 from Korrawit Pruegsanusak detective.conan.1...@gmail.com ---
Sorry for late reply. I did some tests and found that:

1. To reproduce, you must have java runtime environment installed. Mine is
6.0.37 on Windows XP.

I also tested with 3.6.2.2 on Windows 7, without JRE. After open Spreadsheet,
there was a dialog warning that I need JRE, and this bug did NOT reproduce.

2. (IMHO everyone here is already known anyway ;) After extracting user profile
from comment 5, adjust program/bootstrap.ini as appropriate, and start
soffice.exe. You should see a splash box *without* any messages about
installing extensions

But you should have seen Recovery dialog instead. Click Cancel.

3. Open Spreadsheet  Ctrl + P  Crash

Note: 3.6.2.2 and 3.6.3.1 the crash has a little difference. In 3.6.2.2, libo
disappeared without any dialog. In 3.6.3.1, there was a dialog about runtime
exception. Clicking OK, libo disappeared.

I used Administrative install: msiexec /a installer.msi for both versions.

I hope this, and Julien's backtrace, helps. Thanks everyone! :-)

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


[Libreoffice-bugs] [Bug 55839] File = Print = application crashes (CALC, IMPRESS, DRAW, WRITER) after upgrade from 3.5.6 to 3.6.2

2012-10-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55839

--- Comment #11 from Julien Nabet serval2...@yahoo.fr ---
Created attachment 69138
  -- https://bugs.freedesktop.org/attachment.cgi?id=69138action=edit
bt on 3.6

On pc Debian x86-64 with 3.6 sources updated today + LO profile from comment5,
I reproduced the crash.
- Open Calc
- File, Print
= Crash

With master sources updated today, I didn't reproduce the crash.

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


[Libreoffice-bugs] [Bug 55839] File = Print = application crashes (CALC, IMPRESS, DRAW, WRITER) after upgrade from 3.5.6 to 3.6.2

2012-10-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55839

--- Comment #10 from Stephan Bergmann sberg...@redhat.com ---
I was unfortunately not able to reproduce with the user data linked to from
comment 5, with LO 3.6.2 on Windows 7.

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


[Libreoffice-bugs] [Bug 56286] Crash on starting LibreOffice 3.6.2

2012-10-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56286

bfoman bfo.bugm...@spamgourmet.com changed:

   What|Removed |Added

 CC||bfo.bugm...@spamgourmet.com
   ||, b...@eikota.de

--- Comment #1 from bfoman bfo.bugm...@spamgourmet.com ---
@Roman Eisele
Could you check this on Mac? Thanks.

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


[Libreoffice-bugs] [Bug 56286] Crash on starting LibreOffice 3.6.2

2012-10-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56286

--- Comment #2 from Roman Eisele b...@eikota.de ---
Thank you very much for your bug report!

However, I am sorry to say so but this report makes me rather helpless. I use
the same Mac OS X version (10.6.8) like you and all versions of LibreOffice,
including 3.6.2.2, and I am reading most crash reports for LibreOffice on Mac
OS X which have been reported here, but I have never (!) seen a similar crash
log -- I mean, the stack backtrace and especially the message

  Application Specific Information:
  BUG IN CLIENT OF LIBDISPATCH: Do not close random Unix descriptors

look completely new to me.

This suggests to me that your problem might be not simply a bug in LibreOffice,
but a problem related to some special setup on your Mac. This is confirmed by
the fact that the crash does not happen in thread 0 (which is the real startup
of org.libreoffice.script = LibreOffice), but in thread 1, which is about
invoking com.apple.libdispatch-manager, i.e. libdispatch (a part of Mac OS X,
see e.g. http://en.wikipedia.org/wiki/Grand_Central_Dispatch). This fits
together with the fact that thread 0 = LibreOffice is about to get some process
locale information (text encoding etc.) when the crash happens. Maybe some
setup file on your Mac is corrupted?

Searching the web for the very special message BUG IN CLIENT OF LIBDISPATCH:
Do not close random Unix descriptors, I found some reports about similar
issues. Please check them yourself and try to find out if some of them helps
you. IMHO especially this report looks similar to your problem:

  
http://superuser.com/questions/121857/how-do-i-fix-libdispatch-problem-crashing-mac-os-x-apps

In this report, the corrupted file seems to be .CFUserTextEncoding. I can not
know if the same could be true in your case, but it may be well worth to try
removing this file first, especially because the stack backtrace shows that
LibreOffice is about to get information about the text encoding right before
the crash happens. The .CFUserTextEncoding file is invisible and located
directly inside of your home folder, i.e. at
   /Users/your user name/.CFUserTextEncoding
You need to use the Terminal/Shell to delete it: start Terminal, enter ls -a
(without the quotation marks) to list your home directory and to see if the
file is there (it should ;-), and then try rm .CFUserTextEncoding; after
this, I would reboot my Mac (it does not hurt and might help).

If this does not help, I don’t know how to fix this issue; reading all the
websites which mention BUG IN CLIENT OF LIBDISPATCH: Do not close random Unix
descriptors, or asking some Mac expert (customer service) may be advisable.

Question: Do you see similar crashes when starting other applications?
Or do you face this kind of crash *only* when starting LibreOffice?

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


[Libreoffice-bugs] [Bug 56286] Crash on starting LibreOffice 3.6.2

2012-10-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56286

Roman Eisele b...@eikota.de 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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 55839] File = Print = application crashes (CALC, IMPRESS, DRAW, WRITER) after upgrade from 3.5.6 to 3.6.2

2012-10-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55839

Petr Mladek pmla...@suse.cz changed:

   What|Removed |Added

   Severity|blocker |critical
 CC||sberg...@redhat.com,
   ||ti...@fsf.hu

--- Comment #9 from Petr Mladek pmla...@suse.cz ---
OK, it seems to be somehow related to the update and the user extensions. I
wonder if Korrawit is doing more investigation.

Anyway, we have a workaround. It is related to some non-standard extensions =
it affects limited group of users = should not block the release = lowering
the severity a bit.

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


[Libreoffice-bugs] [Bug 55413] broken formulas and extra line added after saving in 3.6.2, closing and re-opening a spreadsheet; regression from LibO 3.5

2012-10-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55413

Petr Mladek pmla...@suse.cz changed:

   What|Removed |Added

   Severity|blocker |critical
   Priority|medium  |highest
 CC||er...@redhat.com,
   ||kohei.yosh...@suse.de
Summary|Extra line added after  |broken formulas and extra
   |saving in 3.6.2, closing|line added after saving in
   |and re-opening a|3.6.2, closing and
   |spreadsheet this is a   |re-opening a spreadsheet;
   |regression from LibO 3.5|regression from LibO 3.5

--- Comment #20 from Petr Mladek pmla...@suse.cz ---
Thanks for nailing this down. Comment #18 is useful to reproduce and even fix
this problem.

It is a nasty bug and I hope that we will fix it soon. Well, I am not aware of
other similar bugs, so it looks like less typical scenario. The bug was already
in older 3.6.x releases = we should not block 3.6.3 with other useful fixes =
lowering the severity a bit. I hope that we could fix this for 3.6.4 because it
is regression and potential data loss.

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


[Libreoffice-bugs] [Bug 56286] Crash on starting LibreOffice 3.6.2

2012-10-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56286

ro...@luffzone.co.uk changed:

   What|Removed |Added

   Priority|medium  |high

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


3.6.2

2012-10-18 Thread Joel Madero
Hi All,

Thread started on tdf discuss list that is asking why 3.6.2 isn't showing
here: http://www.libreoffice.org/download

It's still only showing on the pre-release page. It was my understanding
that 3.6.2 is final.

Also is it correct that we had 3.6.2.1 RC and now it's 3.6.2.2 final? There
is no 3.6.2.0 release? Just trying to understand the naming convention.

Included main mailing list and qa list

Regards,
Joel

-- 
*Joel Madero*
LibO QA Volunteer
jmadero@gmail.com
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: 3.6.2

2012-10-18 Thread David Tardon
Hi,

On Thu, Oct 18, 2012 at 03:58:42PM -0700, Joel Madero wrote:
 Hi All,
 
 Thread started on tdf discuss list that is asking why 3.6.2 isn't showing
 here: http://www.libreoffice.org/download

I think we only show the version that is officially recommended. We do
not offer automatic update to 3.6.x yet, either.

 
 It's still only showing on the pre-release page. It was my understanding
 that 3.6.2 is final.

It is. We are at 3.6.3 RC1 now.

 
 Also is it correct that we had 3.6.2.1 RC and now it's 3.6.2.2 final? There
 is no 3.6.2.0 release? Just trying to understand the naming convention.

The numbering of RCs starts with .1. The last RC (typically RC2 - .2)
is exactly equivalent to the final release--we just copy the files to a
different directory on the download site. So, for 3.6.2, we had:
- 3.6.2.1 (RC1)
- 3.6.2.2 (RC2)
  - this later become 3.6.2.2 (final)

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


[Libreoffice-qa] 3.6.2

2012-10-18 Thread Joel Madero
Hi All,

Thread started on tdf discuss list that is asking why 3.6.2 isn't showing
here: http://www.libreoffice.org/download

It's still only showing on the pre-release page. It was my understanding
that 3.6.2 is final.

Also is it correct that we had 3.6.2.1 RC and now it's 3.6.2.2 final? There
is no 3.6.2.0 release? Just trying to understand the naming convention.

Included main mailing list and qa list

Regards,
Joel

-- 
*Joel Madero*
LibO QA Volunteer
jmadero@gmail.com
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

Re: [Libreoffice-qa] 3.6.2

2012-10-18 Thread V Stuart Foote
Joel,

Have been a couple of issues with the TDF download landing pages of late.
This bug is open (Unconfirmed) against WWW which will elicit a review by the
correct maintainers if you'd care to bump it new with any needed edits.

fdo#55699 https://bugs.freedesktop.org/show_bug.cgi?id=55699  

Stuart



--
View this message in context: 
http://nabble.documentfoundation.org/Libreoffice-qa-3-6-2-tp4014173p4014182.html
Sent from the QA mailing list archive at Nabble.com.
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/


Re: [Libreoffice-qa] 3.6.2

2012-10-18 Thread David Tardon
Hi,

On Thu, Oct 18, 2012 at 03:58:42PM -0700, Joel Madero wrote:
 Hi All,
 
 Thread started on tdf discuss list that is asking why 3.6.2 isn't showing
 here: http://www.libreoffice.org/download

I think we only show the version that is officially recommended. We do
not offer automatic update to 3.6.x yet, either.

 
 It's still only showing on the pre-release page. It was my understanding
 that 3.6.2 is final.

It is. We are at 3.6.3 RC1 now.

 
 Also is it correct that we had 3.6.2.1 RC and now it's 3.6.2.2 final? There
 is no 3.6.2.0 release? Just trying to understand the naming convention.

The numbering of RCs starts with .1. The last RC (typically RC2 - .2)
is exactly equivalent to the final release--we just copy the files to a
different directory on the download site. So, for 3.6.2, we had:
- 3.6.2.1 (RC1)
- 3.6.2.2 (RC2)
  - this later become 3.6.2.2 (final)

D.
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/


[Libreoffice-bugs] [Bug 55839] File = Print = application crashes (CALC, IMPRESS, DRAW, WRITER) after upgrade from 3.5.6 to 3.6.2

2012-10-18 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55839

--- Comment #8 from Juetho han...@vs-polis.de ---
Problem fixed for me, see comment #7 2012-10-17 14:06:22 UTC. Renaming my user
folder enables printing in the correct way. Jürgen

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


[Libreoffice-bugs] [Bug 55839] File = Print = application crashes (CALC, IMPRESS, DRAW, WRITER) after upgrade from 3.5.6 to 3.6.2

2012-10-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55839

Korrawit Pruegsanusak detective.conan.1...@gmail.com changed:

   What|Removed |Added

Summary|File = Print =|File = Print =
   |application crashes (CALC,  |application crashes (CALC,
   |IMPRESS, DRAW, WRITER)  |IMPRESS, DRAW, WRITER)
   ||after upgrade from 3.5.6 to
   ||3.6.2

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


[Libreoffice-bugs] [Bug 55839] File = Print = application crashes (CALC, IMPRESS, DRAW, WRITER) after upgrade from 3.5.6 to 3.6.2

2012-10-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55839

Korrawit Pruegsanusak detective.conan.1...@gmail.com changed:

   What|Removed |Added

 Blocks||43489

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


[Libreoffice-bugs] [Bug 55413] Extra line added after saving in 3.6.2, closing and re-opening a spreadsheet this is a regression from LibO 3.5

2012-10-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55413

James Stirling ja...@jstirling.co.uk 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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 55839] File = Print = application crashes (CALC, IMPRESS, DRAW, WRITER) after upgrade from 3.5.6 to 3.6.2

2012-10-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55839

--- Comment #7 from Juetho han...@vs-polis.de ---
I confirm the printing problem in the following circumstances:

LibO crashes if I first open a database. It doesn't crash if I first open a
writer document. I tested the following ways:

Printing with crash
1. Start LibO 
2. Open a database
3. Open a writer document or the macro editor
4. File  Print crashes but the icon print directly doesn't

Printing without crash
1. Start LibO 
2. Open a writer document 
3. File  Print works
4. Open a database
5. Open the macro editor
6. File  Print works

LibO 3.6.2.2 (Build ID: da8c1e6)
Windows 7 Home Premium 64-bit Service Pack 1
latest Update: 2012-10-12 08:53

Juergen

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


Re: [Libreoffice-ux-advise] [Libreoffice-qa] LO 3.6.2 : about Manage dialog from Conditional Formatting

2012-10-14 Thread pierre-yves samyn
Hello

A great and beautiful work has been done, thank you for that. 
I hope my poor English will not betray my goal which is trying to improve 
this feature. I would like to continue to discuss it constructively...

My message will be a bit long because it is necessary to detail the steps, 
sorry for that...

In  (comment # 26) Michael says
The relative reference is expressed consistently with reference to the top 
left hand corner of the range you're currently inside

I agree with Michael on: The idea of a special case for when a cell is
selected 
inside the range is (IMHO) not at all intuitive there.

I agree when we use Format CF Manage. 

I agree for cells in the range.

But I do not agree when you use Format CF CF and when the current cell 
is the last of the range because it is a selection mode very common .

Steps to reproduce (tested with Version 3.6.4.0+ (Build ID: a010c4e)):

1. File New Spreadsheet
2. Type a, b, c, d respectively A1, A2, A3, A4
3. Select A4:A1

Note:
- After entering d  A5 is selected and a common way to select A1:A4 is
the 
mouse starting A4 to A1. Why I said in step 3 select A4:A1
- After step 3 A1:A4 is selected and the current cell is A4

4. Format CF CF Add, condition: formula is B4 = 1, Apply style: Result

The reference is relative. So we want to test the cell one column to the
right, same row.

* This is the intuitive functionning in current versions*

5. Keep the selected range and redo Format CF CF
The formula is now displayed B7 = 1

I think it introduces a non-homogeneously managing of relatives references.
I do not see others dialogs doing this...

Further tests show other problem:

6. Delete (click on Remove)
7. Click Add, condition: formula is B4 = 1 Apply style: Result, Ok
8. Keep the selected range and redo Format CF CF
The formula was kept and correctly (in my opinion) spread:
Format CF Manage displays correctly for A1: A4 Form B1 = 1

This is my expected result, It would be great if we got directly :)

Thank you for reading this far ...
Regards
Pierre-Yves






--
View this message in context: 
http://nabble.documentfoundation.org/Libreoffice-ux-advise-LO-3-6-2-about-Manage-dialog-from-Conditional-Formatting-tp4009133p4013198.html
Sent from the UX-Advise mailing list archive at Nabble.com.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 55413] Extra line added after saving in 3.6.2, closing and re-opening a spreadsheet this is a regression from LibO 3.5

2012-10-11 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55413

James Stirling ja...@jstirling.co.uk changed:

   What|Removed |Added

Summary|Extra line added after  |Extra line added after
   |saving in 3.6.2, closing|saving in 3.6.2, closing
   |and re-opening a|and re-opening a
   |spreadsheet.|spreadsheet this is a
   ||regression from LibO 3.5

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


[Libreoffice-bugs] [Bug 55413] Extra line added after saving in 3.6.2, closing and re-opening a spreadsheet this is a regression from LibO 3.5

2012-10-11 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55413

--- Comment #17 from real...@gmx-topmail.de ---
The attachment in comment 8 seems to be a broken file 

check filteype with file

file Pricing\ 2012\ J6.ods
Pricing 2012 J6.ods: XML  document text

check integrity with zip :

zip -T Pricing\ 2012\ J6.ods
zip warning: expected 16 entries but found 13

zip error: Zip file structure invalid (Pricing 2012 J6.ods)


- Trying to open this file opens the dialog for textimport.
So I can not do any more testing with this file.

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


[Libreoffice-bugs] [Bug 55413] Extra line added after saving in 3.6.2, closing and re-opening a spreadsheet this is a regression from LibO 3.5

2012-10-11 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55413

--- Comment #18 from real...@gmx-topmail.de ---
After saving the attachment in comment 16 with a new name and reopend the file
I can reproduce the problem.

BUT : After deleting the comment in cell D-31 and saving with a new name and
reopening the new file there are no extra lines and everything is fine.

So it seems the comment causes the problem.

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


[Libreoffice-bugs] [Bug 55413] Extra line added after saving in 3.6.2, closing and re-opening a spreadsheet this is a regression from LibO 3.5

2012-10-11 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55413

--- Comment #19 from James Stirling ja...@jstirling.co.uk ---
I can confirm that deleting the comment solves the problem.
Showing it, changing it is not enough.

Adding a comment on row 31 (tested on column A,B C,D) seems to be an issue.
Adding a comment on row 32 does not cause a problem.
How did you discover this as a solution?

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


[Libreoffice-bugs] [Bug 55413] Extra line added after saving in 3.6.2, closing and re-opening a spreadsheet.

2012-10-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55413

--- Comment #13 from real...@gmx-topmail.de ---
Just followed the way to repoduce the problem as described in comment 12 in
LibreOffice version 3.6.2.2.

After reopen the file there was not added an extra line.
So maybe this issue is solved now?

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


[Libreoffice-bugs] [Bug 55413] Extra line added after saving in 3.6.2, closing and re-opening a spreadsheet.

2012-10-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55413

--- Comment #14 from James Stirling ja...@jstirling.co.uk ---
I have downloaded and test 3.6.2 and the issue is still present.

Open the original file and save it with a different file name then open the new
file the extra line is still added creating a problem with the formulas in the
spreadsheet.

Release 3.6.2 does not solve the problem.

Thanks for the update.

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


[Libreoffice-bugs] [Bug 55413] Extra line added after saving in 3.6.2, closing and re-opening a spreadsheet.

2012-10-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55413

James Stirling ja...@jstirling.co.uk changed:

   What|Removed |Added

Version|3.6.1.2 release |3.6.2.2 release

--- Comment #15 from James Stirling ja...@jstirling.co.uk ---
I have re-tested the method used and can not reproduce the problem.

I can open the spreadsheet uploaded save it with a different name and reproduce
the problem.

Comment 8 contains a spreadsheet with the problem.

If you could please review this is may help isolate the problem.

Thanks

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


[Libreoffice-bugs] [Bug 55413] Extra line added after saving in 3.6.2, closing and re-opening a spreadsheet.

2012-10-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55413

--- Comment #16 from James Stirling ja...@jstirling.co.uk ---
Created attachment 68420
  -- https://bugs.freedesktop.org/attachment.cgi?id=68420action=edit
File before save as, this file contains the correct line locations

The file is the file version saved in 3.5 without an extra line.

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


[Libreoffice-bugs] [Bug 55779] New: : Helpfiles are installed, but absolutely no help in Libreoffice 3.6.2

2012-10-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55779

  Priority: medium
Bug ID: 55779
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: : Helpfiles are installed, but absolutely no help in
Libreoffice 3.6.2
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: tho...@kallayesw.de
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 3.6.2.2 release
 Component: BASIC
   Product: LibreOffice

Problem description: English and German Helpfiles are installed, but absoltely
no help in Libreoffice 3.6.2. When clicking to Help, only a Website opens in
Firefox, wich says, that Libreoffice 3.6.2 has a built-in help. But in fact
there is no, nor in English, nor in other language.

Platform (if different from the browser): Ubuntu Linux 12.04

Browser: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:15.0) Gecko/20100101
Firefox/15.0.1

Sorry for my poor English.

Greetings an thanks a lot for your great work and efforts.
Thomas

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


[Libreoffice-bugs] [Bug 55413] Extra line added after saving in 3.6.2, closing and re-opening a spreadsheet.

2012-10-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55413

--- Comment #2 from James Stirling ja...@jstirling.co.uk ---
Created attachment 67945
  -- https://bugs.freedesktop.org/attachment.cgi?id=67945action=edit
The enclosed document is an example of what happens when opening a document and
re-saving in LibreOffice 3.6.x

I have found this problem exists in 3.6.1 and 3.6.2
I have not tested this in 3.6.0.

The problem does not exist in 3.5.6 and I can open the same spreadsheet and it
does not add an extra line close the the top of the sheet.

I removed many sheets in the workbook and the problem is still present.
I plan to try removing more data to see if any other factors are a cause.

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


[Libreoffice-bugs] [Bug 55413] Extra line added after saving in 3.6.2, closing and re-opening a spreadsheet.

2012-10-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55413

--- Comment #3 from Markus Mohrhard markus.mohrh...@googlemail.com ---
This is a drawing file and not a calc file. Are you maybe talking about a
problem inside draw or impress?

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


[Libreoffice-bugs] [Bug 55413] Extra line added after saving in 3.6.2, closing and re-opening a spreadsheet.

2012-10-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55413

--- Comment #4 from James Stirling ja...@jstirling.co.uk ---
Created attachment 67948
  -- https://bugs.freedesktop.org/attachment.cgi?id=67948action=edit
This attachement shows the worksheet openen in 3.6, then saved and re-opened

The following attachment shows a sheet opening in 3.6 saved under a different
file name and then re-opened. 

It adds and extra line in the spreadsheet and line 33.

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


[Libreoffice-bugs] [Bug 55413] Extra line added after saving in 3.6.2, closing and re-opening a spreadsheet.

2012-10-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55413

--- Comment #5 from Markus Mohrhard markus.mohrh...@googlemail.com ---
This is still a odg file! IF you want to save a calc file use ODS and not ODG.

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


[Libreoffice-bugs] [Bug 55413] Extra line added after saving in 3.6.2, closing and re-opening a spreadsheet.

2012-10-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55413

--- Comment #6 from James Stirling ja...@jstirling.co.uk ---
Comment on attachment 67948
  -- https://bugs.freedesktop.org/attachment.cgi?id=67948
This attachement shows the worksheet openen in 3.6, then saved and re-opened

By adding comments to line 33 and line 34 seems to stop the addition of an
extra line at 32. I wonder if some has damaged the file causing the erratic
behavior

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


[Libreoffice-bugs] [Bug 55413] Extra line added after saving in 3.6.2, closing and re-opening a spreadsheet.

2012-10-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55413

--- Comment #7 from James Stirling ja...@jstirling.co.uk ---
Created attachment 67950
  -- https://bugs.freedesktop.org/attachment.cgi?id=67950action=edit
Attachement of the spreadsheet after an open and save in 3.5 then re-open and
re-save in 3.6

This the spreadsheet that will open fine and line 33 is the word Name, after
opening and saving in 3.6 the word name is now on line 36.

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


  1   2   >