[Libreoffice-bugs] [Bug 57300] FORMATTING: line around images is asymetric

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

--- Comment #2 from bugquestcon...@online.de ---
Qubit, thanks for making the test.

As you made the test by zooming in to see the gap on LubO 3.4.4 on ubuntu
11.10, I repeated it by zooming in,
Observations
line = line on top and left edge of image 
gap = gab on bottom and rigth edge of image
line not = line is not 
100%  - line not visible - gap visible
200% - line not visible - gap visible
400% - line hardly visible - gap visible
800% - line partially visible - gap visible
1000% - line partially visible - gap visible
3000% - line almost fully visibel - gap visible

Using your approach with zooming in, I could measure the off-set to very close
to 0.05cm. This is a bit more than my first estimation of 0.03 - 0.04 cm. The
zooming in methods allows a better measurement.

-- 
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 57306] New: New languages mdf, mrj, yrk, nio, olo, vep, vro, liv, kca cannot be found in Tools/Language/...

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

  Priority: medium
Bug ID: 57306
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: New languages mdf, mrj, yrk, nio, olo, vep, vro, liv,
kca cannot be found in Tools/Language/...
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: rueter.j...@gmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 3.6.4.1 rc
 Component: Linguistic
   Product: LibreOffice

Created attachment 70297
  -- https://bugs.freedesktop.org/attachment.cgi?id=70297action=edit
Voikko-...oxt file cannot be added to 3.6.4.1

New languages have been added to the list of supported languages, but they do
not appear in either of two languages lists in LibreOffice.

Moksha mdf RU, 
Mari, Hill mrj RU, 
Nenets yrk RU,
Nganasan nio RU,
Karelian, Livvi (Olonets) olo RU,
Veps vep RU,
Võro vro EE,
Livonian liv LV,
Khanty kca RU

These _URJ_ languages have, reportedly, been added, and yet they cannot be
found in either of two lists:
They are not in
Tools/Language/For all texts/More.../

Nor are they available in the more extensive language selection provided in the
tool bar (at the bottom) of the document.


This problem may be associated with the fact that the LibreOffice has an empty
Voikko in 
LibreOffice/Preferences.../Language settings

and the absence of a Voikko-...oxt file that can be added to 3.6.4.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 57306] New languages mdf, mrj, yrk, nio, olo, vep, vro, liv, kca cannot be found in Tools/Language/...

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

--- Comment #1 from rueter.j...@gmail.com ---
Created attachment 70298
  -- https://bugs.freedesktop.org/attachment.cgi?id=70298action=edit
Version 3.6.4.1 (Build ID: a9a0717) has empty Voikko in
LibreOffice/Preferences.../Language settings

-- 
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 57307] New: Basic IDE: adding variable to Watch window performs incorrectly if variable name contains_underscores

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

  Priority: medium
Bug ID: 57307
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Basic IDE: adding variable to Watch window performs
incorrectly if variable name contains_underscores
  Severity: minor
Classification: Unclassified
OS: All
  Reporter: sasha.libreoff...@gmail.com
  Hardware: All
Status: UNCONFIRMED
   Version: 3.4.2 release
 Component: BASIC
   Product: LibreOffice

Basic IDE problem: If we place cursor on variable with underscores in name and
click Enable Watch (F7) for adding variable to Watch window, it performs
incorrectly. Adds only part of name.
Problem seen also if double click on such variable name in program's text. Only
part of name selected.

Steps to reproduce:
0. Start any LO module, for example, Writer
1. Press Alt-F11, in dialog LibreOffice Basic Macros press New and then
Ok
2. In Basic IDE enter something like this:

Sub Main
First_Result=1
Second_Result=2
End Sub

3. Place cursor on variable name and press Enable Watch (F7)
Expected: added variable with correct name to window Watch
Actually: added only part of name, for example First instead of First_Result

reproduced in 3.4.2 on Windows XP 32 bit and in 3.6.3 on RFR 17 64 bit

Workaround: select correct name of variable manually and press F7

-- 
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 57308] New: Basic IDE: watching of variable not working if variable is returning value of function

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

  Priority: medium
Bug ID: 57308
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Basic IDE: watching of variable not working if
variable is returning value of function
  Severity: minor
Classification: Unclassified
OS: All
  Reporter: sasha.libreoff...@gmail.com
  Hardware: All
Status: UNCONFIRMED
   Version: 3.4.2 release
 Component: BASIC
   Product: LibreOffice

Basic IDE problem: If we place variable which returns value from function to
Watch window, it not working. Always tells Out of scope

Steps to reproduce:
0. Start any LO module, for example, Writer
1. Press Alt-F11, in dialog LibreOffice Basic Macros press New and then
Ok
2. In Basic IDE enter something like this:

Sub Main
c=MySum(1,2)
End Sub
Function MySum (a as Integer, b as Integer)
MySum=0
MySum=a+MySum
MySum=MySum*10
MySum=b+MySum
End Function

3. Place cursor on word MySum and press F7. This variable added to Watch window
4. Place cursor on line where is MySum=0 and press F9. BreakPoint added
5. Place cursor on line where Sub Main and press F5
6. Press F8 several times and see on Watch window
Expected: value of variable MySum is shown
Actually: always Out of scope

reproduced in 3.4.2 on Windows XP 32 bit and in 3.6.3 on RFR 17 64 bit

Workaround: create new variable and use it for all calculations, then assign
result to returning variable in last line of function

-- 
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 52522] FILEOPEN: Data validation: date ranges are lost on .xlsx import

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

--- Comment #8 from damah...@yahoo.com ---
Ah now I see: the Validity of Date Fields works, but the Data Validity for cell
ranges does not work!
(see attached screenshots)
Steps to reproduce:

1. Data-Define Range (on sheet2)
2. Set Validity on B2 as Cell Range and provide the name of the defined range
3. Check that the suggestion works.
4. save and close file
5. reopen file
6. Now instead of the values of the cells there is only the name of the range
definition in the drop down list!

However with a file created with MS Office the dropdown is empty with high cpu
load.

Sorry, if this should be in 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 52522] FILEOPEN: Data validation: date ranges are lost on .xlsx import

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

--- Comment #9 from damah...@yahoo.com ---
Created attachment 70299
  -- https://bugs.freedesktop.org/attachment.cgi?id=70299action=edit
Validity Cell Range definition

-- 
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 57291] Embedding audio files used for transitions

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

--- Comment #2 from pierre-yves samyn pierre-yves.sa...@laposte.net ---
Hello

(In reply to comment #0)
 It would be very interesting and consistent with the above functionality to
 have the same possibility when choosing a sound file for a transition

+1

Regards
Pierre-Yves

-- 
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 52522] FILEOPEN: Data validation: date ranges are lost on .xlsx import

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

--- Comment #10 from damah...@yahoo.com ---
Created attachment 70300
  -- https://bugs.freedesktop.org/attachment.cgi?id=70300action=edit
Buggy dropdown for cell ranges

-- 
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 57199] BUGZILLAASSISTANT: Ask bug reporters for help

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

--- Comment #9 from Petr Mladek pmla...@suse.cz ---
I suggest to get more people on the IRC channel before we point new volunteers
there. I see there only 4 persons now: kendy, mmeeks, pmladek, and Sweetshark.

When I speak for myself, I read IRC only when someone mentions my name and the
irc client icon starts blinking in the systray. Sometimes I am concentrated too
much and miss even the blinking. Then I react with a big delay (hour(s)) when I
see the red colored channel name during a regular check.

I can't speak for others but they are on many channels, so they can't follow
all comments. I guess that they are using a similar strategy.

-- 
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 51178] FILEOPEN document from older version: cell borders width looks thicher than when opened with old version

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

--- Comment #8 from terencecguard-bugrep...@yahoo.co.uk ---
So basically something was fixed in 3.5.5. and 3.6.0+ which had no previous end
user impact?  After the fix it now has a user impact. But we are stuck with it.

-- 
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 57059] CRASH when scroll down on (Writer) HELP contents - Common Help Topics - General Information - General Glossary

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

--- Comment #5 from Michael Meeks michael.me...@novell.com ---
A better trace with symbols is:

(gdb) bt
#0  0xb7fdc424 in __kernel_vsyscall ()
#1  0xb7c6631f in __GI_raise (sig=sig@entry=6) at
../nptl/sysdeps/unix/sysv/linux/raise.c:64
#2  0xb7c67c03 in __GI_abort () at abort.c:91
#3  0xb7e7a01d in __gnu_cxx::__verbose_terminate_handler () at
../../../../libstdc++-v3/libsupc++/vterminate.cc:95
#4  0xb7e77c93 in __cxxabiv1::__terminate (handler=0xb7e79ed0
__gnu_cxx::__verbose_terminate_handler())
at ../../../../libstdc++-v3/libsupc++/eh_terminate.cc:40
#5  0xb7e77ccf in std::terminate () at
../../../../libstdc++-v3/libsupc++/eh_terminate.cc:50
#6  0xb7e77f6e in __cxxabiv1::__cxa_throw (obj=0xa66fce0, tinfo=0xb7f09b80
typeinfo for std::bad_alloc, dest=
0xb7e75dd0 std::bad_alloc::~bad_alloc()) at
../../../../libstdc++-v3/libsupc++/eh_throw.cc:83
#7  0xb7e7859e in operator new (sz=4294967176) at
../../../../libstdc++-v3/libsupc++/new_op.cc:58
#8  0xb7e7864b in operator new[] (sz=4294967176) at
../../../../libstdc++-v3/libsupc++/new_opv.cc:33
#9  0xb6c2f58b in Bitmap::ImplCalculateContributions (aSourceSize=1,
aDestinationSize=-15, aNumberOfContributions=@0xbfffd1c8: 1, pWeights=
@0xbfffd1cc: 0xa69e5a8, pPixels=@0xbfffd1d0: 0xb01a2e0, pCount=@0xbfffd1d4:
0xa66fe40, aKernel=...)
at /home/opt/libreoffice/re-base/vcl/source/gdi/bitmap3.cxx:2224
#10 0xb6c2faa7 in Bitmap::ImplScaleConvolution (this=0xbfffd70c,
rScaleX=@0xbfffd2e8: 1, rScaleY=@0xbfffd2f0: -15, aKernel=...)
at /home/opt/libreoffice/re-base/vcl/source/gdi/bitmap3.cxx:2196
#11 0xb6c2fc7b in Bitmap::Scale (this=0xbfffd70c, rScaleX=@0xbfffd2e8: 1,
rScaleY=@0xbfffd2f0: -15, nScaleFlag=6)
at /home/opt/libreoffice/re-base/vcl/source/gdi/bitmap3.cxx:901
#12 0xb6c38edd in BitmapEx::Scale (this=0xbfffd70c, rScaleX=@0xbfffd2e8: 1,
rScaleY=@0xbfffd2f0: -15, nScaleFlag=6)
at /home/opt/libreoffice/re-base/vcl/source/gdi/bitmapex.cxx:353
#13 0xb072604f in SwPageFrm::PaintBorderAndShadow (_rPageRect=SwRect = {...},
_pViewShell=0xa87f318, bPaintLeftShadow=true, bPaintRightShadow=
true, bRightSidebar=true) at
/home/opt/libreoffice/re-base/sw/source/core/layout/paintfrm.cxx:5795
#14 0xb07301a3 in SwRootFrm::Paint (this=0xa87f540, rRect=SwRect = {...},
pPrintData=0x0)
at /home/opt/libreoffice/re-base/sw/source/core/layout/paintfrm.cxx:3132
#15 0xb08e5627 in ViewShell::Paint (this=0xa87f318, rRect=Rectangle = {...}) at
/home/opt/libreoffice/re-base/sw/source/core/view/viewsh.cxx:1786
#16 0xb058a727 in SwCrsrShell::Paint (this=0xa87f318, rRect=Rectangle = {...})
at /home/opt/libreoffice/re-base/sw/source/core/crsr/crsrsh.cxx:1172
#17 0xb09fe37f in SwEditWin::Paint (this=0xa9a0828, rRect=Rectangle = {...}) at
/home/opt/libreoffice/re-base/sw/source/ui/docvw/edtwin2.cxx:535
#18 0xb6d982be in Window::ImplCallPaint (this=0xa9a0828, pRegion=0x0,
nPaintFlags=48)
at /home/opt/libreoffice/re-base/vcl/source/window/window.cxx:2464
#19 0xb6d98600 in Window::Update (this=0xa9a0828) at
/home/opt/libreoffice/re-base/vcl/source/window/window.cxx:7515
#20 0xb08e6779 in ViewShell::VisPortChgd (this=0xa87f318, rRect=SwRect = {...})
at /home/opt/libreoffice/re-base/sw/source/core/view/viewsh.cxx:1191
#21 0xb058a64f in SwCrsrShell::VisPortChgd (this=0xa87f318, rRect=SwRect =
{...})
at /home/opt/libreoffice/re-base/sw/source/core/crsr/crsrsh.cxx:1210
#22 0xb0a8aa03 in SwView::SetVisArea (this=0xa878c90, rRect=Rectangle = {...},
bUpdateScrollbar=0 '\000')
at /home/opt/libreoffice/re-base/sw/source/ui/uiview/viewport.cxx:268
#23 0xb0a889b2 in SwView::SetVisArea (this=0xa878c90, rPt=Point = {...},
bUpdateScrollbar=0 '\000')

And it seems the arithmetic error is:

(gdb) up
#13 0xb072604f in SwPageFrm::PaintBorderAndShadow (_rPageRect=SwRect = {...},
_pViewShell=0xa87f318, bPaintLeftShadow=true, bPaintRightShadow=
true, bRightSidebar=true) at
/home/opt/libreoffice/re-base/sw/source/core/layout/paintfrm.cxx:5795
5795aPageRightShadow.Scale( 1, aPagePxRect.Height() - 2 *
(mnShadowPxWidth - 1) );
(gdb) l
5790pOut-DrawBitmapEx( pOut-PixelToLogic( Point(
aPaintRect.Right() + 1, aPagePxRect.Bottom() + 1 -
(aPageBottomRightShadow.GetSizePixel().Height() - mnShadowPxWidth) ) ),
5791aPageBottomRightShadow );
5792pOut-DrawBitmapEx( pOut-PixelToLogic( Point(
aPaintRect.Right() + 1, aPagePxRect.Top() - mnShadowPxWidth ) ),
5793aPageTopRightShadow );
5794BitmapEx aPageRightShadow = aPageRightShadowBase;
5795aPageRightShadow.Scale( 1, aPagePxRect.Height() - 2 *
(mnShadowPxWidth - 1) );
5796lcl_paintBitmapExToRect(pOut, Point( aPaintRect.Right() +
mnShadowPxWidth, aPagePxRect.Top() + mnShadowPxWidth - 1), aPageRightShadow,
RIGHT );
5797}
5798
5799// Left shadows and corners
(gdb) p aPagePxRect.Height()
Cannot evaluate function -- may be inlined
(gdb) p aPagePxRect
$4 = SwRect = 

[Libreoffice-bugs] [Bug 57059] CRASH when scroll down on (Writer) HELP contents - Common Help Topics - General Information - General Glossary

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

Michael Meeks michael.me...@novell.com changed:

   What|Removed |Added

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

--- Comment #6 from Michael Meeks michael.me...@novell.com ---
thanks for the report - pushed a fix to master; looks like this could well be
in 3.6 as well (not sure if people have seen it there).

-- 
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 54157] LibreOffice 3.7/4.0 most annoying bugs

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

Bug 54157 depends on bug 57059, which changed state.

Bug 57059 Summary: CRASH when scroll down on (Writer) HELP contents - Common 
Help Topics - General Information - General Glossary
https://bugs.freedesktop.org/show_bug.cgi?id=57059

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 57310] New: SLIDESHOW: slide show shows only a black screen

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

  Priority: medium
Bug ID: 57310
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: SLIDESHOW: slide show shows only a black screen
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: bugquestcon...@online.de
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 3.5.7.2 release
 Component: Presentation
   Product: LibreOffice

Problem description: 
I observed now several times that the slide show does not start up; only a
black screen appears.

This time a had a Writer and Calc file open the same time. Additionally there
was Thunderbird and Firfox running in the back ground.

Closing Writer and Calc one after the other and try to start the slide show did
not work. Only closing and opening of LibO helped.

Until now I could not relate  this bug to any route cause and I could not
trigger this bug on purpose.

The Impress file contains 74 slides, file size: 913kB. All afternoon I switch
from Normal View to Slide Show back and forth.

I have an Lenovo x230 / Intel Core TM i7-3520M @ 2.9 GHz and 3.25 GB of RAM
XP / SP3

Steps to reproduce:
Bug happened several times but I could not reproduce it. 

Current behavior:
Slide show does stop with a black screen

Expected behavior:
Slide show runs

Platform (if different from the browser): see above

Browser: Mozilla/5.0 (Windows NT 5.1; rv:16.0) Gecko/20100101 Firefox/16.0

Should someone have an idea on the cause of this bug I willing to test.

-- 
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 57311] New: LO 3.6.4.1 is named LOdev instead of LibreOffice for Linux / Deb x86

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

  Priority: medium
Bug ID: 57311
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: LO 3.6.4.1 is named LOdev instead of LibreOffice for
Linux / Deb x86
  Severity: blocker
Classification: Unclassified
OS: Linux (All)
  Reporter: jbf.fa...@sud-ouest.org
  Hardware: x86 (IA32)
Status: UNCONFIRMED
   Version: unspecified
 Component: Installation
   Product: LibreOffice

LibreOffice 3.6.4.1 (RC1) for Linux / Deb x86 is named LOdev instead of
LibreOffice
Its splash-screen has the tag beta

As a consequence the user profile is not found and a new one is created.

The build for Linux / deb x86_64 does not has this problem.

Best regards. JBF

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


[Libreoffice-bugs] [Bug 57311] LO 3.6.4.1 is named LOdev instead of LibreOffice for Linux / Deb x86

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

Jean-Baptiste Faure jbf.fa...@sud-ouest.org changed:

   What|Removed |Added

   Priority|medium  |highest

-- 
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 44446] LibreOffice 3.6 most annoying bugs

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

Jean-Baptiste Faure jbf.fa...@sud-ouest.org changed:

   What|Removed |Added

 Depends on||57311

--- Comment #167 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
I nominate bug 57311 : LO 3.6.4.1 is named LOdev instead of LibreOffice on
Linux / Deb x86

-- 
You are receiving this mail because:
You are on the CC list for the bug.
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 57311] LO 3.6.4.1 is named LOdev instead of LibreOffice for Linux / Deb x86

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

Jean-Baptiste Faure jbf.fa...@sud-ouest.org changed:

   What|Removed |Added

 Blocks||6

-- 
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 57311] LO 3.6.4.1 is named LOdev instead of LibreOffice for Linux / Deb x86

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

Jean-Baptiste Faure jbf.fa...@sud-ouest.org 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 57311] LO 3.6.4.1 is named LOdev instead of LibreOffice for Linux / Deb x86

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

Jean-Baptiste Faure jbf.fa...@sud-ouest.org changed:

   What|Removed |Added

Version|unspecified |3.6.4.1 rc

-- 
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 57285] Address Book Data Source Wizard lists Mac OS X address book on Linux

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

DavidO d.ostrov...@gmx.de changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |d.ostrov...@gmx.de
   |desktop.org |

-- 
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 57312] New: FILESAVE Crash when saving a document with drag'n'dropped pictures

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

  Priority: medium
Bug ID: 57312
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FILESAVE Crash when saving a document with
drag'n'dropped pictures
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: baltas...@gmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: unspecified
 Component: Writer
   Product: LibreOffice

Version of LibreOffice: Version 3.6.2.2 (Build ID: 360m1(Build:2))
OS: Lubuntu 12.10
Linux 3.5.0-19-generic #30-Ubuntu SMP Tue Nov 13 17:49:53 UTC 2012 i686 i686
i686 GNU/Linux

Steps to reproduce the problem:

1. Create a new Writer document
2. Drag'n'drop an image (for example, in the desktop) to the document
3. A new section is created. Press insert.
4. Save the document: LibreOffice will 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 57313] New: Document Recovery .Doc shows repeated recovery fail when successful

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

  Priority: medium
Bug ID: 57313
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Document Recovery .Doc shows repeated recovery fail
when successful
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: j...@onlinehome.de
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 3.6.3.2 release
 Component: Writer
   Product: LibreOffice

Created attachment 70303
  -- https://bugs.freedesktop.org/attachment.cgi?id=70303action=edit
document created in libre office and is singles page two columns - left hand
side is corrected version of right hand side.

Edited .odt saved as .doc (word 97 ++). When I open writer I get message that
.doc is being recovered - then immediately that recovery has failed. However
the document is then opened with latest changes updated. The document is then
useable.
The message appears to repeat every time I open writer.

-- 
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 57313] Document Recovery .Doc shows repeated recovery fail when successful

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

j...@onlinehome.de changed:

   What|Removed |Added

   Priority|medium  |low

-- 
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 57315] New: Unknown option -Embedding when try CoCreateInstance() of com.sun.star.ServiceManager

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

  Priority: medium
Bug ID: 57315
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Unknown option -Embedding when try CoCreateInstance()
of com.sun.star.ServiceManager
  Severity: major
Classification: Unclassified
OS: Windows (All)
  Reporter: and...@gmail.com
  Hardware: x86 (IA32)
Status: UNCONFIRMED
   Version: 3.6.3.2 release
 Component: sdk
   Product: LibreOffice

Hello, 
When I try connect to LibreOffice with COM brige using CoCreateInstance() with
class com.sun.star.ServiceManager LibreOffice shows Unknown option -Embedding
error.

Connecting to LibreOffice works in 3.6.2.2 release but not working in 3.6.3.2
and 3.6.4.1.

Tested on Win7 32bit and WinXP.

-- 
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 46468] : soffice.bin loads the CPU

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

--- Comment #13 from Michael Meeks michael.me...@novell.com ---
What an odd strace - it looks like a timed wait on a mutex that is not unlocked
ever - with some busy loop waking noticing it's not done and going back to
sleep: sucky indeed. Prolly associated with a deadlock.

As such this -should- be quite easy to find. As/when it happens again - can you
attach gdb and do:

thread apply all backtrace

with a strong preference for having symbols installed, and attach the full
backtrace there ? :-)

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 37361] LibreOffice 3.5 most annoying bugs

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

Michael Meeks michael.me...@novell.com changed:

   What|Removed |Added

 Depends on||34555

--- Comment #393 from Michael Meeks michael.me...@novell.com ---
add image cropping annoyance mis-added to 4.0

-- 
You are receiving this mail because:
You are on the CC list for the bug.
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 34555] request Writer functionality: crop raster image using mouse

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

Michael Meeks michael.me...@novell.com changed:

   What|Removed |Added

 Blocks||37361

-- 
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 54157] LibreOffice 3.7/4.0 most annoying bugs

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

Michael Meeks michael.me...@novell.com changed:

   What|Removed |Added

 Depends on|34555   |

--- Comment #33 from Michael Meeks michael.me...@novell.com ---
Removed bug#34555 - please add MAB's to the open tracker of the lowest version
they are found in: in this case 3.5 (at bug#37361). This helps us have a good
view of bugs specific to each 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 34555] request Writer functionality: crop raster image using mouse

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

Michael Meeks michael.me...@novell.com changed:

   What|Removed |Added

 Blocks|54157   |

-- 
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 42899] Macro changes not saved on document Close/Save

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

--- Comment #35 from sasha.libreoff...@gmail.com ---
Another possible WORKAROUND: before exit Basic IDE or after making changes,
switch to editing dialog (create new dialog if needed) using tab in left bottom
of IDE window. Then back to previous tab. Tool Save (diskette) on toolbar of
Basic IDE will be now enabled if present non-saved changes.

-- 
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 56460] CRASH when closing specific .odg files

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

--- Comment #20 from Michael Meeks michael.me...@novell.com ---
 Michael: Do you think I should try to build LO with JB's autogen.lastrun
 or to get another Valgrind trace to provide helpful info?

Given that your trace looks identical to the issue that Caolan fixed, and
others can't reproduce it with tinderbox built binaries - I strongly suspect
some build problem here :-)

It would help to know which git hash you're building from too I guess (?).

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 57317] New: Writer FILESAVE: bullets list saved as numbered list

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

  Priority: medium
Bug ID: 57317
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Writer FILESAVE: bullets list saved as numbered list
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: sasha.libreoff...@gmail.com
  Hardware: All
Status: UNCONFIRMED
   Version: 3.4.2 release
 Component: Writer
   Product: LibreOffice

Created attachment 70304
  -- https://bugs.freedesktop.org/attachment.cgi?id=70304action=edit
test case for demonstrating problems with saving list

Problem: when I change list to bullets list and save, it becomes numbered

Steps to reproduce:
0. Open attachment in Writer
1. Select all items of numbered list and change to Bullets using button
Bullets On/Off on toolbar or by press Shift-F12. List becomes bulletted.
2. Save
3. File-Reload
Expected: list remains bulletted
Actually: list becomes numbered

Reproduced in 3.4.2 on Windows XP 32 bit and in 3.6.3 on RFR 17 64 bit

Observation: msWord 2007 opens list as numbered. Therefore I guess that problem
appears during saving. Calligra Words and Ocular also opens as numbered.

Workaround: use Format-Bullets and numbering for changing format of list

-- 
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 52522] FILEOPEN: Data validation: date ranges are lost on .xlsx import

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

sasha.libreoff...@gmail.com changed:

   What|Removed |Added

  Attachment #70299|text/plain  |image/pdf
  mime type||

-- 
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 52522] FILEOPEN: Data validation: date ranges are lost on .xlsx import

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

sasha.libreoff...@gmail.com changed:

   What|Removed |Added

  Attachment #70299|image/pdf   |image/png
  mime type||

-- 
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 52522] FILEOPEN: Data validation: date ranges are lost on .xlsx import

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

sasha.libreoff...@gmail.com changed:

   What|Removed |Added

  Attachment #70300|text/plain  |image/png
  mime type||

-- 
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 57320] New: FILESAVE: hidden text visible in HTML export

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

  Priority: medium
Bug ID: 57320
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FILESAVE: hidden text visible in HTML export
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: libreoff...@arbruijn.dds.nl
  Hardware: Other
Status: UNCONFIRMED
   Version: unspecified
 Component: Writer
   Product: LibreOffice

Text with font effect Hidden is not marked as hidden in the HTML export.

-- 
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 57321] New: Math OLE cripples in document

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

  Priority: medium
Bug ID: 57321
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Math OLE cripples in document
  Severity: critical
Classification: Unclassified
OS: Linux (All)
  Reporter: de.tec...@gmail.com
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 3.6.3.2 release
 Component: UI
   Product: LibreOffice

Created attachment 70307
  -- https://bugs.freedesktop.org/attachment.cgi?id=70307action=edit
Here, the hats are cut off.

For e.g. when I insert a math OLE (or make a new one inside the document) with
the contents -- 

hat m

The top part of the OLE cuts out.

Attaching screenshot.

-- 
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 57320] FILESAVE: hidden text visible in HTML export

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

--- Comment #1 from libreoff...@arbruijn.dds.nl ---
Created attachment 70308
  -- https://bugs.freedesktop.org/attachment.cgi?id=70308action=edit
write display:none for hidden text in HTML export

-- 
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 38951] RTL numbering with wrong direction in Textbox

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

Ahmad Harthi aalhar...@kacst.edu.sa changed:

   What|Removed |Added

   Hardware|Other   |All
 OS|Linux (All) |All
   Assignee|libreoffice-b...@lists.free |aalhar...@kacst.edu.sa
   |desktop.org |
Version|3.3.2 release   |unspecified
 Blocks||37692

-- 
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 37692] RTL list numbering reverses its direction

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

Ahmad Harthi aalhar...@kacst.edu.sa changed:

   What|Removed |Added

 Depends on||38951

-- 
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 57060] FILEOPEN: xls file from Birt Report could not be opened

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

--- Comment #1 from Timon kaktebyaviru...@gmail.com ---
In fact it is Microsoft Excel 2003 XML (.xml) file format

-- 
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 57060] FILEOPEN: xml file from Birt Report could not be opened

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

Timon kaktebyaviru...@gmail.com changed:

   What|Removed |Added

Summary|FILEOPEN: xls file from |FILEOPEN: xml file from
   |Birt Report could not be|Birt Report could not be
   |opened  |opened

-- 
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 57322] New: Moz-free LDAP Address Book driver

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

  Priority: medium
Bug ID: 57322
CC: caol...@redhat.com, d.ostrov...@gmx.de,
d...@jochenschiffers.de,
ernstke+freedesktopbugzi...@gmail.com,
fridrich.st...@bluewin.ch, lio...@mamane.lu,
michael.me...@novell.com, mst...@redhat.com,
sberg...@redhat.com
  Assignee: libreoffice-bugs@lists.freedesktop.org
Blocks: 56902
   Summary: Moz-free LDAP Address Book driver
  Severity: enhancement
Classification: Unclassified
OS: All
  Reporter: lio...@mamane.lu
  Hardware: All
Status: UNCONFIRMED
   Version: unspecified
 Component: Database
   Product: LibreOffice

It seems our LDAP address book driver was also implemented through mozab, that
is the in-tree ancient Mozilla copy.

In order to get rid of in-tree mozilla, this, too, needs replacement.

-- 
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 56902] Kill off in-tree (ancient) mozilla copy

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

Lionel Elie Mamane lio...@mamane.lu changed:

   What|Removed |Added

 Depends on||57322

-- 
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 57322] Moz-free LDAP Address Book driver

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

--- Comment #1 from Fridrich Strba fridrich.st...@bluewin.ch ---
I already replaced the ldap configuration backend to use openldap for *nix and
winldap for windows. So one could get inspired from that work, I guess.

-- 
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 56763] SLIDESHOW: slide shows displays chart format different to normal view

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

bugquestcon...@online.de changed:

   What|Removed |Added

   Severity|normal  |blocker
   Priority|medium  |highest

--- Comment #2 from bugquestcon...@online.de ---
togehter with the bug https://bugs.freedesktop.org/show_bug.cgi?id=56766 this
creates a full blocker. I cannot use Impress for presentations when I need to
show slides in the layout of my company (data series in column charts area
filling with gradient.
Therefore I change importance to highest and blocker.

These 2 bugs created a 1 - 2 day loss

I can be contacted

-- 
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 56766] SLIDESHOW: Difference in slide show view and normal view for star objects in slide

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

bugquestcon...@online.de changed:

   What|Removed |Added

   Severity|normal  |blocker
   Priority|medium  |highest

--- Comment #4 from bugquestcon...@online.de ---
please see also: https://bugs.freedesktop.org/show_bug.cgi?id=56763
I can be contacted

-- 
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 57302] FORMATTING: Text does not align justified

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

--- Comment #1 from Urmas davian...@gmail.com ---
The text on your screenshot is justified. What kind of issue do you actually
have?

-- 
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 42134] FORMATTING: Autofit doesn't work properly on long texts

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

Mihkel Tõnnov mihh...@gmail.com changed:

   What|Removed |Added

   Severity|normal  |major
 CC||mihh...@gmail.com
 Blocks||37361

--- Comment #12 from Mihkel Tõnnov mihh...@gmail.com ---
This is terribly annoying. Using Debian Lenny and LibO 3.6.3 final release,
with longer lines part of or all of the text in a text frame regularly gets
squeezed together (rendering it completely illegible). Resizing the text frame
usually works, but only until the text layout inside the frame changes --
terribly annoying.

Disabling Fit to frame is somewhat of a workaround, but this really should be
fixed.

Adding this to earliest available MAB and upping importance a notch.

-- 
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 37361] LibreOffice 3.5 most annoying bugs

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

Mihkel Tõnnov mihh...@gmail.com changed:

   What|Removed |Added

 Depends on||42134

-- 
You are receiving this mail because:
You are on the CC list for the bug.
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 37361] LibreOffice 3.5 most annoying bugs

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

--- Comment #394 from Mihkel Tõnnov mihh...@gmail.com ---
Added bug 42134 - FORMATTING: Autofit doesn't work properly on long texts

This is terribly annoying for me: with longer lines, part of or all of the text
in a text frame regularly gets squeezed together so the text becomes illegible.
Workaround is to disable Autofit completely.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
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 55777] PIVOTTABLE: Unexpected crash of PivotTable

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

--- Comment #11 from Nikos gdna7...@hotmail.com ---
Persists in 3.6.4.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 55777] PIVOTTABLE: Unexpected crash of PivotTable

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

Kohei Yoshida kohei.yosh...@suse.de changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #12 from Kohei Yoshida kohei.yosh...@suse.de ---
At this point someone who can replicate this needs to provide a stack trace in
order for this to proceed. Without that we can't really try to even fix this.

-- 
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 57324] New: VIEWING: Garbled screen after cell freeze, save, and reopen

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

  Priority: medium
Bug ID: 57324
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: VIEWING: Garbled screen after cell freeze, save, and
reopen
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: pechan...@hypervisual.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 3.6.1.2 release
 Component: Spreadsheet
   Product: LibreOffice

Created attachment 70314
  -- https://bugs.freedesktop.org/attachment.cgi?id=70314action=edit
Excel sheet (XLSX)

Problem description: 

Calc screen is severely garbled after freezing a cell from a XLSX spreadsheet,
saving and reopening.

Steps to reproduce:
1. Load XLSX spreadsheet attached.
2. Select cell E3.
3. Select Window  Freeze.
4. Save as another file.
5. Close the spreadsheet.
5. Reopen the spreadsheet.

Current behavior:

After reloading, the screen is garbled. Also, Window  Split is checked, but
Window  Freeze is not. Unchecking Window  Split corrects the problem.

Expected behavior:

The screen should not be garbled. Also, Window  Freeze should be checked.

Platform (if different from the browser): 

Windows 7 SP1

Browser: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.11 (KHTML, like
Gecko) Chrome/23.0.1271.64 Safari/537.11

-- 
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 57324] VIEWING: Garbled screen after cell freeze, save, and reopen

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

--- Comment #1 from Rubem pechan...@hypervisual.com ---
Created attachment 70315
  -- https://bugs.freedesktop.org/attachment.cgi?id=70315action=edit
Screenshot showing garbled screen at left

-- 
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 57203] Ole bridge is broken: unable to create object com.sun.star.servicemanager

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

--- Comment #15 from Domingo Sacristan domingosacris...@gmail.com ---
Created attachment 70316
  -- https://bugs.freedesktop.org/attachment.cgi?id=70316action=edit
-embedded error

-- 
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 57203] Ole bridge is broken: unable to create object com.sun.star.servicemanager

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

--- Comment #16 from Domingo Sacristan domingosacris...@gmail.com ---
Created attachment 70317
  -- https://bugs.freedesktop.org/attachment.cgi?id=70317action=edit
com.sun.star.ServiceManager error

-- 
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 37361] LibreOffice 3.5 most annoying bugs

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

Roman Eisele b...@eikota.de changed:

   What|Removed |Added

 Depends on||54933
 Blocks|54933   |

--- Comment #395 from Roman Eisele b...@eikota.de ---
I would guess that bug 54933 is meant to be in the “Depends on” field, not in
the “Blocks” list, isn’t it?!

-- 
You are receiving this mail because:
You are on the CC list for the bug.
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 54933] EDITING Report builder: mouse-move control: gap between mouse position

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

Roman Eisele b...@eikota.de changed:

   What|Removed |Added

 Depends on|37361   |
 Blocks||37361

-- 
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 57203] Ole bridge is broken: unable to create object com.sun.star.servicemanager

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

--- Comment #17 from Domingo Sacristan domingosacris...@gmail.com ---
Sorry i have forgotten to save the comments

You can reproduce the error if you don't launch LibO

1. Download Sample from Comment 3. save as C:\Users\user\test.vbs
2. Start DOS window
command line prompt in folder C:\Users\user
3. 'cscript test.vbs' Enter

-- 
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 57302] FORMATTING: Text does not align justified

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

--- Comment #2 from bugquestcon...@online.de ---
I appologize, I should have use 3 lines to see the effect. 
Please delete the report

-- 
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 57197] segfault: undo insertion of table row

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

--- Comment #4 from Terrence Enger lo_b...@iseries-guru.com ---
Created attachment 70318
  -- https://bugs.freedesktop.org/attachment.cgi?id=70318action=edit
valgrind output

segfault is in abeyance, presumably because --freelist-vol prevents overwriting
the destructed object.

-- 
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 57322] Moz-free LDAP Address Book driver

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

--- Comment #2 from DavidO d.ostrov...@gmx.de ---
My understanding was, that Fridrich's open LDAP integration already replaced
mozab LDAP driver. If it is not true, then it was a mistake to remove mozab
driver on *nices on master and we must restore it again. Unless someone is
going to integrate Fridrich's open LDAP integration in mork driver (or create a
new one).

-- 
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 34836] PDF export does not export EPS images

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

--- Comment #32 from Kevin Ernst ernstke+freedesktopbugzi...@gmail.com ---
(In reply to comment #31)
 I tried this and it did not work for me. I still have the same problem with
 my eps images (from MATLAB) not exporting from Draw. I did find that going

Wow. I'm very sorry. I set up a dummy account to check and see if it was an
issue of pstoedit or ps2epsi or something else not being in the path and
discovered that it no longer works with my *own* account--if it ever did. I was
pretty certain when I posted my last comment; now I'm not. (Granted, this is
several minor point releases later, so maybe there was a regression.)

I can attest to the fact that NeoOffice *does* successfully export an ODF
document with an embedded EPS to PDF, albeit rendered to a bitmap at what
appears to be about 300 dpi. If that's any consolation. Be forewarned that I
have the paid version of NeoOffice (v.3.3 patch 2, currently), so your
mileage may vary with the free download.

I realize this doesn't add any substance to the bug report (and my apologies to
the devs on the cc list for this bug), but consider this a retraction to my
previous WORKAROUND comment. For 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 56460] CRASH when closing specific .odg files

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

--- Comment #21 from Julien Nabet serval2...@yahoo.fr ---
Michael: master sources for the test have been retrieved until
http://cgit.freedesktop.org/libreoffice/core/commit/?id=fd91019804398c0643951eb291a45d3931968ae3.
It still crashes :(

-- 
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 51597] Impress just crashes if I click Slide Sorter

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

--- Comment #5 from jc...@virgin.net ---
Dear Julien

Thanks for your help - I will think about this.  

Meanwhile - URGENT - I see that your bug blog includes my name, postal
address, phone, etc.  I discovered this when I Googled my details.

Your bug database should not publish such personal details - this is a
criminal offence in UK.  Please ensure that these details are deleted
IMMEDIATELY

Regards

Jonathan Stopes-Roe
115 Queen's Drive
London N4 2BE

T: 020 8802 2719
F: 020 7690 5424
M: 07884 473 190

-Original Message-
From: bugzilla-dae...@freedesktop.org
[mailto:bugzilla-dae...@freedesktop.org] 
Sent: 15 November 2012 21:30
To: jc...@virgin.net
Subject: [Bug 51597] Impress just crashes if I click Slide Sorter





Comment # 4 https://bugs.freedesktop.org/show_bug.cgi?id=51597#c4  on bug
51597 https://bugs.freedesktop.org/show_bug.cgi?id=51597  from 
href=mailto:serval2...@yahoo.fr;Julien Nabet 
jc.sr: first sorry since my first questions was about distribution and
version

and you had already quoted it in your bug description (LibreOffice 3.5.3.2).



For the rest, you must know that LO is a shortcut for LibreOffice.

Also, Linux distributions are made from Linux kernel + software packages.

LibreOffice is a software delivered in a set of packages as Gnome, kde,
Gimp,

etc are also a set of packages.



Now lo-menubar package is an extension which is often (always?) by default

installed on Ubuntu. The problem is this one has been responsible for some
bugs

on LibreOffice. So my second question was : do you have this package
installed?

If yes, could you, for the test, uninstall it and try to reproduce the bug?



There are also other extensions for LibreOffice which are not installed by

default. My third question was : did you install some extension for

LibreOffice? If you just installed LibreOffice and that's all, I suppose you

didn't install any extensions.



Finally, each software creates a specific directory to store its config

parameters (Recent files, memory used, ...). LibreOffice specific directory
is

in ~/.config/libreoffice (~ represents your home directory). It happened in
a

lot of bugs that something in this specific directory creates problem after

having upgraded LibreOffice for example.

So for the test, it could be interesting you rename this directory to force

LibreOffice, at the next launch, to recreate a brand new one.



Is it more clear like this?



PS: please, don't answer the mail received from bugzilla freedesktop, go to

this url: https://bugs.freedesktop.org/show_bug.cgi?id=51597 and add a
comment

directly.

Thank you.



  _  

You are receiving this mail because: 

*You reported the 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 51597] Impress just crashes if I click Slide Sorter

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

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

   What|Removed |Added

 CC||LibreOffice@bielefeldundbus
   ||s.de

--- Comment #6 from Julien Nabet serval2...@yahoo.fr ---
jc...@virgin.net: your personal info are on the bugtracker (see this page
https://bugs.freedesktop.org/show_bug.cgi?id=51597) because I suppose you
answer directly to the mail you receive + you customized your mailer to attach
these personal info.

You should comment this bug by going to the bug url:
https://bugs.freedesktop.org/show_bug.cgi?id=51597, not by answering you
receive from this website.

About removing personal info, I can't do anything about this since I'm not an
admin.

Rainer: could you remind the procedure to remove an attachment/comment?
I think it's :
- file a new bug
- Product: freedesktop.org
- Component: ?
- and explain what do you want to remove and why

-- 
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 57203] Ole bridge is broken: unable to create object com.sun.star.servicemanager

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

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

  Attachment #70316|text/plain  |image/jpeg
  mime type||

-- 
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 57203] Ole bridge is broken: unable to create object com.sun.star.servicemanager

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

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

  Attachment #70317|text/plain  |image/jpeg
  mime type||

-- 
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 55777] PIVOTTABLE: Unexpected crash of PivotTable

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

Michael Meeks michael.me...@novell.com changed:

   What|Removed |Added

 CC||bfo.bugm...@spamgourmet.com
   ||, michael.me...@novell.com

--- Comment #13 from Michael Meeks michael.me...@novell.com ---
bfoman is the heroic Windows stack-trace provider - can you help ? :-)

-- 
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 57328] New: activex plugin on internet explorer

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

  Priority: medium
Bug ID: 57328
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: activex plugin on internet explorer
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: domingosacris...@gmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 3.6.4.1 rc
 Component: Libreoffice
   Product: LibreOffice

Created attachment 70321
  -- https://bugs.freedesktop.org/attachment.cgi?id=70321action=edit
-Embedded error

Since Version libO 3.6.3 is not possible to open one odt doc, if libO is not
launch before

Platform: Win Xp Sp3, Internet Explorer 8

1. Close all soffice processes
2. Open Internet Explorer
3. Try to open following doc:
http://wiki.documentfoundation.org/images/2/2f/01ES_00Vorwort_V33.odt

see error on attachments

It is no problem if soffice process is open

-- 
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 56882] Font list is unsorted in 'insert special character' dialog

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

Caolán McNamara caol...@redhat.com changed:

   What|Removed |Added

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

--- Comment #6 from Caolán McNamara caol...@redhat.com ---
yup, sorting wasn't ported across during.ui conversion

-- 
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 55777] PIVOTTABLE: Unexpected crash of PivotTable

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

--- Comment #14 from mariosv mari...@miguelangel.mobi ---
I can not reproduce it.
Win 7x64 Ultimate
LibreOffice Version 3.6.4.1 (Build ID: a9a0717)
Java 1.7.09_32.

I guess, an user profile reset has been done to verify the issue it is no
there.

-- 
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 57329] New: FORMATTING: Ignoring do not recognise URLs in Autoformat settings

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

  Priority: medium
Bug ID: 57329
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FORMATTING: Ignoring do not recognise URLs in
Autoformat settings
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: no.junkm...@pncg.ch
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 3.5.6.2 release
 Component: Presentation
   Product: LibreOffice

My default LibreOffice settings are to kill off any URL recognition and thus
prevent any consequential manipulation, alteration, mutilation, formatting or
otherwise uncontrolled and very much unwanted applying of formats that
sometimes cannot even be found in the style menu.

Yet it does it, regardless of setting - or maybe there is not even a setting
for it.

Steps to reproduce:
1. Tools - AutoCorrect - Options - disable URL recognition (this, however, only
applies to autoamtic recognition of text entered, not of information marked as
a URL)
2. Highlight some content and link it as URL or email address
3. Swear at changes made regardless of whatever you try to put in the way of
such change
4. Discover there isn't even a style you can change to stop this from happening
5. End up undoing an automatic feature you didn't even want by forcing text
colour manually.

Current behavior:

Text which gets links attached will change colour - there seems to be no style
associated with this behaviour.

Expected behavior:

Either URLs are simply left alone as per user expressed wish in the AutoCorrect
configuration, or a *style* is applied so that the user stands a chance of
{controlling/adjusting/entirely nuking the mere thought of} this automatic
formatting.

Platform (if different from the browser): 

Browser: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/536.26.17
(KHTML, like Gecko) Version/6.0.2 Safari/536.26.17

-- 
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 57330] New: : Link to external data does not work

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

  Priority: medium
Bug ID: 57330
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: : Link to external data does not work
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: davideluca.mil...@libero.it
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 3.5.4 release
 Component: Spreadsheet
   Product: LibreOffice

Problem description:

no way to link external data to .xls file in Calc and keep it updated.
Neither (1)linking .txt,.csv file format via the Insert - Sheet from file -
Link,(2)nor with Paste as link with .xls external file format, (3) nor with
.html external file format via Link to external data in Insert menu.


Case (1)

Steps to reproduce:


1.   Create a list of simple comma separated  numbers in a .txt, .csv file,
for ex. E1.txt.

2.   Open a new spreadsheet in Calc, .xls format (for ex. NEW.xls), and try
to link data from external source to this file using Insert - Sheet from file
- Link from external sheet to the new sheet.

3.   Now save and close the files.

4.   Open the new sheet.



Expected behavior:

NEW.xls open and linked data are shown correctly.


Current behavior:

No data update in NEW.xls is done.


Case (2)

Steps to reproduce:

1.   Create a list of simple comma separated  numbers in a .xls file, for
ex. E1.xls.

2.   Open a new spreadsheet in Calc, .xls format (for ex. NEW.xls), and try
to link data from external source to this file using Paste special and Link
from external sheet to the new sheet.

3.   Now save and close the files.

4.   Open the new sheet.



Expected behavior:

 NEW.xls open and linked data are shown correctly.


Current behavior:

At file opening an error message will pop up: 

 reported error window 


The following external file could not be loaded. Data linked from this

file did not get updated.


file:///home/xxx/E1.txt


   end error window


Looking into the linked cell it paste twice the file path: i.e.
file:///home/xxx/home/xxx/E1.txt


Case (3)
Steps to reproduce:

1.   Create a .html file with a table of simple numbers. Called for or ex.
E1.html.

2.   Open a new spreadsheet in Calc, .xls format (for ex. NEW.xls), and try
to link data from external source to this file using Insert - Link to
external data.

3.   Now save and close the files.

4.   Open the new sheet.



Expected behavior:

 NEW.xls open and linked data are shown correctly.


Current behavior:


At file opening all linked values are gone and replaced by The link cannot be
updated

Looking into the reference link file path is pasted twice.






Platform (if different from the browser): 

Browser: Firefox 16.0.2
Ubuntu; Linux 12.04.1 LTS (kernel:  3.2.0-33-generic #52-Ubuntu SMP Thu Oct 18
16:19:45 UTC 2012 i686 i686 i386 GNU/Linux)
Calc 3.5.4.2 Numero di build: 350m1(Build: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 54157] LibreOffice 3.7/4.0 most annoying bugs

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

Bug 54157 depends on bug 56882, which changed state.

Bug 56882 Summary: Font list is unsorted in 'insert special character' dialog
https://bugs.freedesktop.org/show_bug.cgi?id=56882

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 57331] New: Opening a .doc file results in garbage characters

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

  Priority: medium
Bug ID: 57331
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Opening a .doc file results in garbage characters
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: as...@isa.upv.es
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 3.6.4.1 rc
 Component: Writer
   Product: LibreOffice

Created attachment 70322
  -- https://bugs.freedesktop.org/attachment.cgi?id=70322action=edit
Screenshot of the strange characters and problematic document, in a compressed
file

Opening the attached .doc file results in pure garbage in 3.6.4.1 rc.
MS Word and Calligra open it sucessfully.
See screenshot also in the attached file.
It already resulted in garbage in the stock LibreOffice that came with Ubuntu
12.10. I apt-get purged it and installed the last RC to see if the bug was
solved, but it seems it wasn't.

-- 
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 57331] Opening a .doc file results in garbage characters

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

A.S. as...@isa.upv.es changed:

   What|Removed |Added

  Attachment #70322|text/plain  |application/x-gzip
  mime type||

-- 
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 57203] Launching .vbs before LibO causes error Unknown option: -Embedding and command line help appears

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

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 Status|NEEDINFO|NEW
Summary|Ole bridge is broken:   |Launching .vbs before LibO
   |unable to create object |causes error Unknown
   |com.sun.star.servicemanager |option: -Embedding and
   ||command line help appears
  Component|sdk |Installation

--- Comment #18 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
As expected I run into the problem shown in attachment  -embedded error when
I uninstall OOo 2.0.  So NEW

I doubt that the problem is LibO internal because everything works fine if LibO
has been started before the script lets.

@András:
any ideas? Please set Status to ASSIGNED and add yourself to Assigned To if
you accept this Bug or forward the Bug if it's not your turf.

-- 
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 57199] BUGZILLAASSISTANT: Ask bug reporters for help

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

--- Comment #10 from Joel Madero jmadero@gmail.com ---
Fair enough, so can we agree to get text that reads:

Thank you for reporting a problem with LibreOffice.

Nobody is perfect and more bugs have been reported.
Let's make the next release better together.
You could help us a lot by verifying them[1].

Then have a link to a really really simple wiki (I'll create this, the one we
discussed during QA call). Three simple points that basically says what to do.

-- 
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 40889] EDITING: alkdsjfalkdjf

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

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |LibreOffice@bielefeldundbus
   |desktop.org |s.de
 CC||LibreOffice@bielefeldundbus
   ||s.de
  Component|Database|test

-- 
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 57249] labelling axes with superscript is not formatting properly

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

--- Comment #7 from Roman Eisele b...@eikota.de ---
(In reply to comment #4)
 The character 1 is also not correct. The fontset Lucida Grande produces
 i instead of 1.

The question if the superscript “i” instead of “1” is a bug or not, depends on
how you entered the axis labels. U+2071 is correctly a superscript i (not 1),
the superscript i is at U+0089, and if I manually insert U+0089 into the label
text, it correctly remains a superscript 1 in Lucida Grande font.

So, how did you enter the axis labels text?

-- 
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 51340] FORMATTING: Line spacing and spacing above/blow paragraph not correctly imported from PPTX 2010

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

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Priority|medium  |high
 CC||jmadero@gmail.com
 Ever confirmed|0   |1

--- Comment #5 from Joel Madero jmadero@gmail.com ---
Verified.

LibO: 3.6.3.2

Marking as NEW and prioritizing:

Normal: Can prevent users from making high quality work

High: PPTX is becoming the standard, especially in professional settings,
furthermore line spacing is an incredibly popular thing to do in slides.

-- 
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 55571] [Task] Tracking bug for important bugs related to the Mac OS X Accessibility API

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

Roman Eisele b...@eikota.de changed:

   What|Removed |Added

 Depends on||57245

--- Comment #15 from Roman Eisele b...@eikota.de ---
Added Bug 57245 - “In OS X Calc hangs if save button used. Both Cmd-G and menu
File-Save works OK.” Not yet reproduced, but according to the stack backtraces
definitely yet another issue related to Mac OS accessibility stuff.

-- 
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 57245] In OS X Calc hangs if save button used. Both Cmd-G and menu File-Save works OK.

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

Roman Eisele b...@eikota.de changed:

   What|Removed |Added

 Blocks||55571

-- 
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 57199] BUGZILLAASSISTANT: Ask bug reporters for help

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

--- Comment #11 from Marc Pare m...@marcpare.com ---
For what it is worth here is a modification that was worked on by some of the
marketing team members. We avoided as much as possible contractions,
possessives and EN colloquialisms, some of the sentences that sounded too
apologetic were removed as well as unecessary text. Also be aware that the
LibreOffice forums will most likely come online very early in the new year and
it would be possible to send the users to a possible QA section on the forums,
which has a lower entrance barrier and has a shorter learning curve. The text
could then be modified to send the user to the forums rather than the mailing
lists.

= NEW TEXT =

Thank you very much for your e-mail and interest in LibreOffice.

Due to the increasing popularity of the free office suite, we receive a lot of
support requests every day. Unfortunately, we cannot reply personally to every
e-mail, as our engagement in the project is completely voluntary and restricted
to our spare time.

However, the Community does offer a large variety of mailing lists to support
its users. We have compiled an overview at
http://www.libreoffice.org/get-help/mailing-lists/

Please have a look at these pages, and send your inquiry to the applicable
mailing list. A member of our mailing list will then respond and try to address
the details of your inquiry.


= NEW TEXT = 

= ORIGINAL TEXT =

Thank you very much for your e-mail and your interest in LibreOffice.

Due to the increasing popularity of the free office suite, we receive
lots of support requests day by day. Unfortunately, we can't reply
personally to every e-mail, as our engagement in the project is
completely on a volunteer basis and in our spare time. This often
demands several hours of volunteer engagement per day, leaving no time
to respond to individual requests.

However, the Community does offer a large variety of mailing lists to
support its users. We have compiled an overview at

http://www.libreoffice.org/get-help/mailing-lists/

Please have a look at these pages, and send your inquiry to our mailing
lists. Chances are high that your problem then will be solved very soon.

= ORIGINAL =

-- 
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 57245] In OS X Calc hangs if save button used. Both Cmd-G and menu File-Save works OK.

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

Roman Eisele b...@eikota.de changed:

   What|Removed |Added

   Hardware|Other   |x86-64 (AMD64)
   Severity|blocker |critical
   Priority|highest |high

--- Comment #10 from Roman Eisele b...@eikota.de ---
@ Paco:
Thank you very much for the crash reports!

@ Alex, Emir, Niklas:
Thank you very much for triaging!

@ Alex:
Thank you for your research!


Paco’s crash reports which contain many references to Mac OS X accessibility
stuff -- especially the hitTestRunner() only appears when the Mac OS X
accessibility API is used -- show that this is yet another bug in some
LibreOffice code which gets activated only when the Mac OS X accessibility API
is used.

Therefore I have added this bug to our tracking bug for such issues, bug 55571
(please see that bug report for more details about this bugs and its fellows).

And for the same reason I have lowered the severity a bit: the bug is critical,
but not a blocker -- being an issue related to Mac OS accessibility, this bug
should have a workaround: disably any utilities which activate the usage of the
Mac OS X accessibility API ...

-- 
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 57245] In OS X Calc hangs if save button used. Both Cmd-G and menu File-Save works OK.

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

--- Comment #11 from Roman Eisele b...@eikota.de ---
@ Paco:

To work around the bug and to find out what exactly triggers the bug,
please check and answer the following questions:

1) Do you have any accessibility features enabled? Apple’s accessibility
features like “VoiceOver” or “Enable access for assistive devices”, which get
enabled in “System Preferences  Universal Access”, are known to cause many
crashes and freezes in LibreOffice. So please try to disable any accesibility
features, then check if the problem is still reproducible.

2) Do you have installed any window management/user interface
utilities/apps/control panels/extensions for Mac OS X like 
   * AquaSnap* BetterSnapTool
   * BetterTouchTool * Breeze
   * Cinch   * Divvy
   * DoublePane  * Flexiglass
   * HyperDock   * iSnap
   * Moom* RightZoom
   * ShiftIt * SizeUp
   * SizeWell* Spectacle
   * Stay* TileWindows
   * WindowTidy... or something similar?

And/or do you use any mouse cursor/pointer utility, i.e. some little
application or control panel etc. which animates or replaces etc. the mouse
curser/pointer, like
   * LazyMouse?

And/or do you use any special software which could be related to accessibility
stuff, e.g. a screen reader, screen magnifier, speech recognition software,
a text-to-speech (dictation) application, or similar?

All these and many similar utilities rely heavily on Mac OS accessibility
features and therefore can cause LibreOffice to crash or freeze. So please
check if you have installed any utility of this kind and try to disable it
(or to add LibreOffice to the list of excluded applications for the utility,
if there is such a thing).


So please check these possibilities, if any of them helps to make the hang go
away, and report the results here.

Thank you very much in advance!

-- 
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 57332] New: LibreOffice changes hyperlinks when opening files

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

  Priority: medium
Bug ID: 57332
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: LibreOffice changes hyperlinks when opening files
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: techplex.engin...@gmail.com
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 3.6.2.2 release
 Component: Writer
   Product: LibreOffice

I'm using libreoffice to compose HTML documents. I have some other HTML files
in the current directory that I have made. I've setup links in my index.html
file.

Everything seems to be working at this point. The problem comes when I try to
edit one of my html files that has relative links in it. Upon opening the file
Libreoffice changes links like ./abc.html to
file:///home//Desktop/abc.html.

Is there a setting somewhere that will keep Libreoffice from changing my links?

Version: Version 3.6.2.2 (Build ID: 360m1(Build:2))

Running on Ubuntu 12.10

-- 
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 57333] New: BUGZILLAASSISTANT: Add privacy hint nearby submit button

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

  Priority: medium
Bug ID: 57333
CC: webs...@global.libreoffice.org
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: BUGZILLAASSISTANT: Add privacy hint nearby submit
button
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: libreoff...@bielefeldundbuss.de
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: unspecified
 Component: WWW
   Product: LibreOffice

To avoid discussions as in Bug 51597 and othrs please add a privacy hint nearby
'Submit' button:

All your contributions will be public in WWW! By clicking the 'Submit' button
you irrevocably agree to release your contribution under the CC-BY-SA 3.0
License and the GFDL. If you can't agree to these terms for documents you
planned to attach you can state in this report that such a document exists. QA
team will discuss with you further proceeding in the bug.

Browser: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:16.0) Gecko/20121026
Firefox/16.0 SeaMonkey/2.13.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 56460] CRASH when closing specific .odg files

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

--- Comment #22 from Julien Nabet serval2...@yahoo.fr ---
Created attachment 70328
  -- https://bugs.freedesktop.org/attachment.cgi?id=70328action=edit
bt with symbols + console logs

I attached last bt + console logs I hadn't notice (or perhaps it wasn't there
last 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 56460] CRASH when closing specific .odg files

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

--- Comment #23 from Julien Nabet serval2...@yahoo.fr ---
Logs are the same but not the same lines:
warn:svl.items:32455:1:/home/julien/compile-libreoffice/libo/svl/source/items/itempool.cxx:517:
fuer Image, dort gibt es derzeit keine Statics - Bug
warn:svl.items:32455:1:/home/julien/compile-libreoffice/libo/svl/source/items/itempool.cxx:379:
fuer Image, dort gibt es derzeit keine Statics - Bug
warn:svl.items:32455:1:/home/julien/compile-libreoffice/libo/svl/source/items/itempool.cxx:517:
fuer Image, dort gibt es derzeit keine Statics - Bug
warn:svl.items:32455:1:/home/julien/compile-libreoffice/libo/svl/source/items/itempool.cxx:517:
fuer Image, dort gibt es derzeit keine Statics - Bug
warn:svl.items:32455:1:/home/julien/compile-libreoffice/libo/svl/source/items/itempool.cxx:379:
fuer Image, dort gibt es derzeit keine Statics - Bug
warn:svl.items:32455:1:/home/julien/compile-libreoffice/libo/svl/source/items/itempool.cxx:517:
fuer Image, dort gibt es derzeit keine Statics - Bug
warn:svl.items:32455:1:/home/julien/compile-libreoffice/libo/svl/source/items/itempool.cxx:517:
fuer Image, dort gibt es derzeit keine Statics - Bug
warn:svl.items:32455:1:/home/julien/compile-libreoffice/libo/svl/source/items/itempool.cxx:379:
fuer Image, dort gibt es derzeit keine Statics - Bug
warn:svl.items:32455:1:/home/julien/compile-libreoffice/libo/svl/source/items/itempool.cxx:517:
fuer Image, dort gibt es derzeit keine Statics - Bug
warn:svl.items:32455:1:/home/julien/compile-libreoffice/libo/svl/source/items/itempool.cxx:517:
fuer Image, dort gibt es derzeit keine Statics - Bug
warn:svl.items:32455:1:/home/julien/compile-libreoffice/libo/svl/source/items/itempool.cxx:379:
fuer Image, dort gibt es derzeit keine Statics - Bug
and so on until the 33th 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 57335] New: Libreoffice base freeze

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

  Priority: medium
Bug ID: 57335
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Libreoffice base freeze
  Severity: critical
Classification: Unclassified
OS: Windows (All)
  Reporter: musikdok...@gmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: unspecified
 Component: Database
   Product: LibreOffice

Hi, first at all i want to report that something bad is happening with base.

I have a 2.8 mb database. the problem i'm having is that base start to Freeze
Libreoffice.. i mean freeze because is not a crash, it's most like your cpu use
the 100% of resources on other things and non to use Libreoffice..

I check the cpu use but is normal.. 0 or 2 for moments, nothing weird..

Sometimes i open the base but i start to do other things on firefox for
example, when i jump back i see LO is freeze just alone..

The only solution to close BASE without loose or broke the base is click on
close.. wait 15 seconds (on a I5) (tested on other pcs same result) then click
on save... wait another 15 seconds and then LO can close..

Sometimes i reopen Libreoffice and i see sone layouts are corrupted.. so i have
to have backups every time preventing lost of data..

Very bad IMO.

Tested on Libre office 3.4x 3.5x 3.6x

-- 
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 56460] CRASH when closing specific .odg files

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

--- Comment #24 from Julien Nabet serval2...@yahoo.fr ---
New behaviour too, it crashes as usual with the window message:
The following files will be recovered,

I just clicked OK as usual, the window disappear so LO is stopped but right
away, Writer started automatically, weird...

-- 
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 51597] Impress just crashes if I click Slide Sorter

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

--- Comment #7 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
@jc...@virgin.net 
It would be really great if you guys would think before you write. And to
complain finding personal data in the web you published in the web with exactly
that data again in the comment is a really really good joke. We will try
eliminate the result of your mindlessness. 

@Julien
I can delete complete bugs.
If only particular content of a Bug should be deleted the proceeding is as you
suppose: Create a Bug Product=freedesktop.org, Component=Bugzilla and ask for
deletion of particular contents (similar to Bug 57005).

Hoping to be able to reduce such problems I submitted
Bug 57336 - Reduce possibility to comment in Bugs using the answer function of
an e-mail client
Bug 57333 - BUGZILLAASSISTANT: Add privacy hint nearby submit button
Bug 57334 - Privacy hint required

-- 
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 57335] Libreoffice base freeze

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

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

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||serval2...@yahoo.fr
 Ever confirmed|0   |1

--- Comment #1 from Julien Nabet serval2...@yahoo.fr ---
We need more info here:
- what's your Windows version?
- what's your LibreOffice version? if  3.6.3, could you give a try to a newer
version?
- did you install any LO specific extensions?
- what's your Java version?

If you still reproduce this, could you attach your database 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 56460] CRASH when closing specific .odg files

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

--- Comment #25 from Julien Nabet serval2...@yahoo.fr ---
Caolán/Michael: perhaps it could be svl/source/items/itempool.cxx from line 379
which is debug only part:
378 #ifdef DBG_UTIL
379 SAL_WARN( svl.items, fuer Image, dort gibt es derzeit keine
Statics - Bug );
380 if ( pImp-ppStaticDefaults )
381 {
382 // Delete() ist noch nicht gelaufen?
383 if ( !pImp-maPoolItems.empty() 
!pImp-mpSecondary-pImp-maPoolItems.empty() )
384 {
385 // hat der master SetItems?
386 sal_Bool bHasSetItems = sal_False;
and so on...

-- 
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 57245] In OS X Calc hangs if save button used. Both Cmd-G and menu File-Save works OK.

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

Paco paco.cruz.iesbe...@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |FIXED

--- Comment #12 from Paco paco.cruz.iesbe...@gmail.com ---
Hi Roman 

I have this settings in “System Preferences  Universal Access”

VoiceOver - No
Enable access for assistive devices- Enabled/Checked

Unchecking Enable access for assistive devices RESOLVES THE CRASH both in my
Mac and my wife's. 


Thank you all for your support. :-)

-- 
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   >