[Libreoffice-commits] .: 3 commits - sw/inc sw/source writerfilter/source

2011-11-12 Thread Cédric Bosdonnat
 sw/inc/IDocumentSettingAccess.hxx  |1 +
 sw/inc/doc.hxx |1 +
 sw/source/core/doc/dbgoutsw.cxx|6 +++---
 sw/source/core/doc/doc.cxx |5 +
 sw/source/core/doc/docnew.cxx  |1 +
 sw/source/core/text/guess.cxx  |8 ++--
 sw/source/filter/ww8/ww8par.cxx|1 +
 sw/source/filter/xml/xmlimp.cxx|   10 ++
 sw/source/ui/uno/SwXDocumentSettings.cxx   |   16 +++-
 writerfilter/source/filter/ImportFilter.cxx|9 +
 writerfilter/source/rtftok/rtfdocumentimpl.cxx |4 
 11 files changed, 56 insertions(+), 6 deletions(-)

New commits:
commit 8a232f007458c9f474c6bf8fdf1f7f2c5ae467cf
Author: Cédric Bosdonnat cedric.bosdonnat@free.fr
Date:   Fri Nov 11 22:11:58 2011 +0100

RTF import: Fixed unicode characters import, fdo#42109

Actually implemented the \uc to skip the ANSI representation after the
unicode value.

diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.cxx 
b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
index 9cc025c..7ba5249 100644
--- a/writerfilter/source/rtftok/rtfdocumentimpl.cxx
+++ b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
@@ -2221,6 +2221,10 @@ int RTFDocumentImpl::dispatchValue(RTFKeyword nKeyword, 
int nParam)
 }
 }
 break;
+case RTF_UC:
+if ((SAL_MIN_INT16 = nParam)  (nParam = SAL_MAX_INT16))
+m_aStates.top().nUc = nParam;
+break;
 case RTF_U:
 if ((SAL_MIN_INT16 = nParam)  (nParam = SAL_MAX_INT16))
 {
commit 74b6759ee81c95ae75046dd411d2bd0bd2324a8b
Author: Cédric Bosdonnat cedric.bosdonnat@free.fr
Date:   Thu Nov 10 16:10:25 2011 +0100

n#707157: Word doesn't break the numberings and prefers hiding them

Added a compatibility option to reproduce Word's behavior when importing
Doc, docx and RTF files. The default behavior isn't changed.

diff --git a/sw/inc/IDocumentSettingAccess.hxx 
b/sw/inc/IDocumentSettingAccess.hxx
index 50e8096..d912376 100644
--- a/sw/inc/IDocumentSettingAccess.hxx
+++ b/sw/inc/IDocumentSettingAccess.hxx
@@ -83,6 +83,7 @@ namespace com { namespace sun { namespace star { namespace 
i18n { struct Forbidd
  COLLAPSE_EMPTY_CELL_PARA,
  SMALL_CAPS_PERCENTAGE_66,
  TAB_OVERFLOW,
+ UNBREAKABLE_NUMBERINGS,
  // COMPATIBILITY FLAGS END
 
  BROWSE_MODE,
diff --git a/sw/inc/doc.hxx b/sw/inc/doc.hxx
index e4848f5..8427b17 100644
--- a/sw/inc/doc.hxx
+++ b/sw/inc/doc.hxx
@@ -579,6 +579,7 @@ private:
 bool mbTabAtLeftIndentForParagraphsInList; // #i89181# - see 
above
 bool mbSmallCapsPercentage66;
 bool mbTabOverflow;
+bool mbUnbreakableNumberings;
 
 bool mbLastBrowseMode   : 1;
 
diff --git a/sw/source/core/doc/doc.cxx b/sw/source/core/doc/doc.cxx
index bdded6f..326cfde 100644
--- a/sw/source/core/doc/doc.cxx
+++ b/sw/source/core/doc/doc.cxx
@@ -203,6 +203,7 @@ bool SwDoc::get(/*[in]*/ DocumentSettingId id) const
 case COLLAPSE_EMPTY_CELL_PARA: return mbCollapseEmptyCellPara;
 case SMALL_CAPS_PERCENTAGE_66: return mbSmallCapsPercentage66;
 case TAB_OVERFLOW: return mbTabOverflow;
+case UNBREAKABLE_NUMBERINGS: return mbUnbreakableNumberings;
 
 case BROWSE_MODE: return mbLastBrowseMode; // Attention: normally the 
ViewShell has to be asked!
 case HTML_MODE: return mbHTMLMode;
@@ -341,6 +342,10 @@ void SwDoc::set(/*[in]*/ DocumentSettingId id, /*[in]*/ 
bool value)
 case TAB_OVERFLOW:
 mbTabOverflow = value;
 break;
+
+case UNBREAKABLE_NUMBERINGS:
+mbUnbreakableNumberings = value;
+break;
  // COMPATIBILITY FLAGS END
 
 case BROWSE_MODE: //can be used temporary (load/save) when no 
ViewShell is avaiable
diff --git a/sw/source/core/doc/docnew.cxx b/sw/source/core/doc/docnew.cxx
index f8a0ce2..656fb20 100644
--- a/sw/source/core/doc/docnew.cxx
+++ b/sw/source/core/doc/docnew.cxx
@@ -358,6 +358,7 @@ SwDoc::SwDoc()
 mbCollapseEmptyCellPara = true;// hidden
 mbSmallCapsPercentage66 = false;// hidden
 mbTabOverflow   = true;
+mbUnbreakableNumberings = false;
 
 //
 // COMPATIBILITY FLAGS END
diff --git a/sw/source/core/text/guess.cxx b/sw/source/core/text/guess.cxx
index bc84437..83c1758 100644
--- a/sw/source/core/text/guess.cxx
+++ b/sw/source/core/text/guess.cxx
@@ -125,8 +125,12 @@ sal_Bool SwTxtGuess::Guess( const SwTxtPortion rPor, 
SwTxtFormatInfo rInf,
 if ( nLineWidth  0 ) nLineWidth = 0;
 }
 
+const bool bUnbreakableNumberings = rInf.GetTxtFrm()-GetTxtNode()-
+

[Libreoffice-commits] .: writerfilter/source

2011-11-12 Thread Miklos Vajna
 writerfilter/source/dmapper/DomainMapper_Impl.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 2cbb64ca303d89984fd42ba4a787d63ea427fcd6
Author: Miklos Vajna vmik...@frugalware.org
Date:   Sat Nov 12 15:36:03 2011 +0100

Related: i#108154 null pointer check for the unit test

diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx 
b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index 53bfb1e..2f3eed6 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -1368,6 +1368,8 @@ void DomainMapper_Impl::PopAnnotation()
 
 void DomainMapper_Impl::PushShapeContext( const uno::Reference 
drawing::XShape  xShape )
 {
+if (m_aTextAppendStack.empty())
+return;
 uno::Referencetext::XTextAppend xTextAppend = 
m_aTextAppendStack.top().xTextAppend;
 m_bIsInShape = true;
 try
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [Libreoffice] [PATCH][PLEASE REVIEW] Remove String::Fill() usage

2011-11-12 Thread Chr. Rossmanith
To add some information: LibO builds fine but I keep getting failed 
tests in the end:


make[1]: *** 
[/Space/LibreOffice_OneGit/core/workdir/unxlngi6.pro/CppunitTest/sc_filters_test.test] 
Fehler 1


It's ./sc where I made modifications and sc_filters_test which fails...

Christina



Am 11.11.2011 23:16, schrieb Chr. Rossmanith:

Hi,

currently I'm removing the Fill() method for strings. Comments are 
very welcome.


Christina


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


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


[Libreoffice] [PATCH] [REVIEW 3-4] application crash on exit

2011-11-12 Thread Noel Power

(putting patch in subject )

Hi

We have an internal bug that happens when closing the application where 
there is a legacy format document ( e.g. something.sdd ) already open


I get the following trace

==23824== Invalid read of size 8
==23824==at 0x10C543A0: GtkSalDisplay::EventGuardAcquire() 
(gtkdata.hxx:83)

==23824==by 0x10C53633: GtkXLib::userEventFn(void*) (gtkdata.cxx:800)
==23824==by 0x10C535D4: call_userEventFn (gtkdata.cxx:789)
==23824==by 0x13538BD2: g_main_context_dispatch (in 
/lib64/libglib-2.0.so.0.2800.0)

==23824==by 0x135393AF: ??? (in /lib64/libglib-2.0.so.0.2800.0)
==23824==by 0x1353964F: g_main_context_iteration (in 
/lib64/libglib-2.0.so.0.2800.0)

==23824==by 0x10C53861: GtkXLib::Yield(bool, bool) (gtkdata.cxx:868)
==23824==by 0x10C5294A: GtkXLib::~GtkXLib() (gtkdata.cxx:577)
==23824==by 0x10C52A37: GtkXLib::~GtkXLib() (gtkdata.cxx:587)
==23824==by 0x1392F225: X11SalData::DeleteDisplay() (saldata.cxx:293)
==23824==by 0x1392F108: X11SalData::~X11SalData() (saldata.cxx:286)
==23824==by 0x10C53CEB: GtkData::~GtkData() (gtkdata.cxx:1032)
==23824==  Address 0x16002a00 is 576 bytes inside a block of size 2,296 
free'd
==23824==at 0x4C2599C: free (in 
/usr/lib64/valgrind/vgpreload_memcheck-amd64-linux.so)
==23824==by 0x10C50897: GtkSalDisplay::~GtkSalDisplay() 
(gtkdata.cxx:110)

==23824==by 0x1392F1ED: X11SalData::DeleteDisplay() (saldata.cxx:291)
==23824==by 0x1392F108: X11SalData::~X11SalData() (saldata.cxx:286)
==23824==by 0x10C53CEB: GtkData::~GtkData() (gtkdata.cxx:1032)
==23824==by 0x10C53D1D: GtkData::~GtkData() (gtkdata.cxx:1034)
==23824==by 0x139443E5: X11SalInstance::~X11SalInstance() 
(salinst.cxx:141)

==23824==by 0x10C55F5D: GtkInstance::~GtkInstance() (gtkinst.cxx:187)
==23824==by 0x10C55FB1: GtkInstance::~GtkInstance() (gtkinst.cxx:190)
==23824==by 0x99EB564: DestroySalInstance(SalInstance*) 
(salplug.cxx:264)

==23824==by 0x960A5C9: DeInitVCL() (svmain.cxx:566)
==23824==by 0x96094F0: ImplSVMain() (svmain.cxx:198)

I had a patch ( that just returned immediately from GtkXLib::userEventFn 
while GtkXLib was destructing ) However now I see that this doesn't 
happen on master so after looking there I rewrote the patch be more like 
( albeit simpler ) the solution there ( which seems to be part of some 
bigger rework, for gtk3 ? )


attached is the patch, 2 version, one generated ingnoring whitespace ( 
for ease of review ) the other with whitespace for applying


since I know approximately zero about gtk stuff, appreciate wiser heads 
having a look


thanks,
Noel


diff --git a/vcl/unx/gtk/app/gtkdata.cxx b/vcl/unx/gtk/app/gtkdata.cxx
index 6a61098..7c76d6f 100644
--- a/vcl/unx/gtk/app/gtkdata.cxx
+++ b/vcl/unx/gtk/app/gtkdata.cxx
@@ -792,30 +792,36 @@ extern C
 
 gboolean GtkXLib::userEventFn(gpointer data)
 {
-gboolean bContinue;
+   
+gboolean bContinue = FALSE;
 GtkXLib *pThis = (GtkXLib *) data;
-SalData *pSalData = GetSalData();
 
-pSalData-m_pInstance-GetYieldMutex()-acquire();
-pThis-m_pGtkSalDisplay-EventGuardAcquire();
+GtkData *pGtkData = static_castGtkData*(GetSalData());
+
+pGtkData-m_pInstance-GetYieldMutex()-acquire();
 
-if( !pThis-m_pGtkSalDisplay-HasMoreEvents() )
+if ( pGtkData-GetDisplay() )
 {
-if( pThis-m_pUserEvent )
+pThis-m_pGtkSalDisplay-EventGuardAcquire();
+
+if( !pThis-m_pGtkSalDisplay-HasMoreEvents() )
 {
-g_source_unref (pThis-m_pUserEvent);
-pThis-m_pUserEvent = NULL;
+if( pThis-m_pUserEvent )
+{
+g_source_unref (pThis-m_pUserEvent);
+pThis-m_pUserEvent = NULL;
+}
+bContinue = FALSE;
 }
-bContinue = FALSE;
-}
-else
-bContinue = TRUE;
+else
+bContinue = TRUE;
 
-pThis-m_pGtkSalDisplay-EventGuardRelease();
+pThis-m_pGtkSalDisplay-EventGuardRelease();
 
-pThis-m_pGtkSalDisplay-DispatchInternalEvent();
+pThis-m_pGtkSalDisplay-DispatchInternalEvent();
 
-pSalData-m_pInstance-GetYieldMutex()-release();
+pGtkData-m_pInstance-GetYieldMutex()-release();
+}
 
 return bContinue;
 }


diff --git a/vcl/unx/gtk/app/gtkdata.cxx b/vcl/unx/gtk/app/gtkdata.cxx
index 6a61098..7c76d6f 100644
--- a/vcl/unx/gtk/app/gtkdata.cxx
+++ b/vcl/unx/gtk/app/gtkdata.cxx
@@ -792,11 +792,16 @@ extern C
 
 gboolean GtkXLib::userEventFn(gpointer data)
 {
-gboolean bContinue;
+   
+gboolean bContinue = FALSE;
 GtkXLib *pThis = (GtkXLib *) data;
-SalData *pSalData = GetSalData();
 
-pSalData-m_pInstance-GetYieldMutex()-acquire();
+GtkData *pGtkData = static_castGtkData*(GetSalData());
+
+pGtkData-m_pInstance-GetYieldMutex()-acquire();
+
+if ( pGtkData-GetDisplay() )
+{
 pThis-m_pGtkSalDisplay-EventGuardAcquire();
 
 if( !pThis-m_pGtkSalDisplay-HasMoreEvents() )
@@ -815,7 

[Libreoffice] [PATCH] - avoid odt import crash (fdo#42785)

2011-11-12 Thread Michael Meeks
So,

I'm no writer filter expert; but it seems like there is a rather
incomplete attempt in this code to cope with a NULL mpEditSource - that
I finish off. But of course, perhaps there is a much cleaner / easier
fix elsewhere.

HTH,

Michael.

-- 
michael.me...@suse.com  , Pseudo Engineer, itinerant idiot
From 6ef46645e145f59b83b63b3a14c940725076eac8 Mon Sep 17 00:00:00 2001
From: Michael Meeks michael.me...@suse.com
Date: Sat, 12 Nov 2011 11:15:19 +
Subject: [PATCH] avoid crasher from unusual odt document fdo#42785

---
 editeng/source/uno/unotext.cxx|   34 --
 sw/source/filter/xml/xmltexti.cxx |2 +-
 2 files changed, 21 insertions(+), 15 deletions(-)

diff --git a/editeng/source/uno/unotext.cxx b/editeng/source/uno/unotext.cxx
index ac241d2..5933da3 100644
--- a/editeng/source/uno/unotext.cxx
+++ b/editeng/source/uno/unotext.cxx
@@ -183,6 +183,13 @@ void CheckSelection( struct ESelection rSel, SvxTextForwarder* pForwarder ) thr
 }
 }
 
+void CheckSelection( struct ESelection rSel, SvxEditSource *pEdit ) throw()
+{
+if (!pEdit)
+return;
+CheckSelection( rSel, pEdit-GetTextForwarder() );
+}
+
 // 
 // class SvxUnoTextRangeBase
 // 
@@ -275,8 +282,7 @@ void SvxUnoTextRangeBase::SetSelection( const ESelection rSelection ) throw()
 SolarMutexGuard aGuard;
 
 maSelection = rSelection;
-if (mpEditSource != NULL)
-CheckSelection( maSelection, mpEditSource-GetTextForwarder() );
+CheckSelection( maSelection, mpEditSource );
 }
 
 // Interface XTextRange ( XText )
@@ -291,7 +297,6 @@ uno::Reference text::XTextRange  SAL_CALL SvxUnoTextRangeBase::getStart(void)
 SvxTextForwarder* pForwarder = mpEditSource ? mpEditSource-GetTextForwarder() : NULL;
 if( pForwarder )
 {
-
 CheckSelection( maSelection, pForwarder );
 
 SvxUnoTextBase* pText = SvxUnoTextBase::getImplementation( getText() );
@@ -406,7 +411,6 @@ void SAL_CALL SvxUnoTextRangeBase::_setPropertyValue( const OUString PropertyNa
 SvxTextForwarder* pForwarder = mpEditSource ? mpEditSource-GetTextForwarder() : NULL;
 if( pForwarder )
 {
-
 CheckSelection( maSelection, pForwarder );
 
 const SfxItemPropertySimpleEntry* pMap = mpPropSet-getPropertyMapEntry(PropertyName );
@@ -1308,7 +1312,7 @@ uno::Sequence uno::Any  SAL_CALL SvxUnoTextRangeBase::getPropertyDefaults( con
 // internal
 void SvxUnoTextRangeBase::CollapseToStart(void) throw()
 {
-CheckSelection( maSelection, mpEditSource-GetTextForwarder() );
+CheckSelection( maSelection, mpEditSource );
 
 maSelection.nEndPara = maSelection.nStartPara;
 maSelection.nEndPos  = maSelection.nStartPos;
@@ -1316,7 +1320,7 @@ void SvxUnoTextRangeBase::CollapseToStart(void) throw()
 
 void SvxUnoTextRangeBase::CollapseToEnd(void) throw()
 {
-CheckSelection( maSelection, mpEditSource-GetTextForwarder() );
+CheckSelection( maSelection, mpEditSource );
 
 maSelection.nStartPara = maSelection.nEndPara;
 maSelection.nStartPos  = maSelection.nEndPos;
@@ -1324,7 +1328,7 @@ void SvxUnoTextRangeBase::CollapseToEnd(void) throw()
 
 sal_Bool SvxUnoTextRangeBase::IsCollapsed(void) throw()
 {
-CheckSelection( maSelection, mpEditSource-GetTextForwarder() );
+CheckSelection( maSelection, mpEditSource );
 
 return ( maSelection.nStartPara == maSelection.nEndPara 
  maSelection.nStartPos  == maSelection.nEndPos );
@@ -1332,7 +1336,7 @@ sal_Bool SvxUnoTextRangeBase::IsCollapsed(void) throw()
 
 sal_Bool SvxUnoTextRangeBase::GoLeft(sal_Int16 nCount, sal_Bool Expand) throw()
 {
-CheckSelection( maSelection, mpEditSource-GetTextForwarder() );
+CheckSelection( maSelection, mpEditSource );
 
 //  #75098# use end position, as in Writer (start is anchor, end is cursor)
 sal_uInt16 nNewPos = maSelection.nEndPos;
@@ -1375,7 +1379,6 @@ sal_Bool SvxUnoTextRangeBase::GoRight(sal_Int16 nCount, sal_Bool Expand)  throw(
 {
 CheckSelection( maSelection, pForwarder );
 
-
 sal_uInt16 nNewPos = maSelection.nEndPos + nCount; //! Overflow???
 sal_uInt16 nNewPar = maSelection.nEndPara;
 
@@ -1419,7 +1422,7 @@ void SvxUnoTextRangeBase::GotoStart(sal_Bool Expand) throw()
 
 void SvxUnoTextRangeBase::GotoEnd(sal_Bool Expand) throw()
 {
-CheckSelection( maSelection, mpEditSource-GetTextForwarder() );
+CheckSelection( maSelection, mpEditSource );
 
 SvxTextForwarder* pForwarder = mpEditSource ? mpEditSource-GetTextForwarder() : NULL;
 if( pForwarder )
@@ -1670,8 +1673,11 @@ void SAL_CALL SvxUnoTextBase::insertString( const uno::Reference text::XTextRan
 return;
 
 ESelection aSelection;
-::GetSelection( aSelection, GetEditSource()-GetTextForwarder() );
-SetSelection( aSelection );
+if (GetEditSource())
+{
+

Re: [Libreoffice] [PUSHED][PATCH] Re: Easy hack regex compile infinite loop ( bug 41738 )

2011-11-12 Thread Noel Grandin
Seems like this is a case where you should be able to find unit
testing in some other open source project, rather than writing them
from scratch.
Mozilla, Apache Harmony, Perl, Webkit, Python, should all have a bunch
of unit testing code for their regular expression features.

In fact, there are a couple of open-source libraries for regex stuff,
I'm sure it would better to simply use the code of one of those other
projects, rather than maintaining our own.
Webkit/Mozilla should have excellent engines inside their JavaScript
modules written in C++ that we could copy.
And they would have seen an enormous amount of testing.

Regards, Noel Grandin


On Fri, Nov 11, 2011 at 18:48,  koehlerk...@comcast.net wrote:
 Hi Eike,

 I confirm I contribute this and all future patches for LibreOffice under the 
 LGPLv3+ and MPL 1.1 .

 Yes, there are quite some shortcomings and bugs with that code.
 I wouldn't invest too much time though, plan is to replace that legacy
 code entirely with the more suitable ICU regex.

 This seems like a nice idea .. is there already a bug/Easy hack for that ?

 Thanks !

  - Karl

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

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


Re: [Libreoffice] iOS and convert to PDF

2011-11-12 Thread Michael Meeks

On Fri, 2011-11-11 at 08:30 -0800, BrianS wrote:
 I might be interested in including some LO source in my app, if that can be
 made to work technically and within License restrictions.

So - in terms of product shipment, you'll want to use the MPL license;
currently that is not possible - but as/when Oracle have finally managed
to get the code under AL2, we'll be applying all our work on top of that
under MPL/LGPLv3+ - that is expected to arrive post LibreOffice 3.5 -
during 3.6 development; I anticipate that done  dusted by the middle of
next year.

  Since I'm mainly interested in converting documents is it possible
 to isolate that code to a small part of the codebase?

There is a hope that (by munging the code into a single large shared
libary, and link-time-optimising it) that (if we can get the right
constant propagation: no UI eg.) much of the bits we don't need will
be auto-evaporated :-) [ you can but hope ]. Failing that, a number of
cuts to the code will have the same effect.

HTH,

Michael.

-- 
michael.me...@suse.com  , Pseudo Engineer, itinerant idiot

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


Re: [Libreoffice] Howto develop an extension with URE?

2011-11-12 Thread Michael Meeks

On Fri, 2011-11-11 at 22:52 +0100, Christian Ehrlicher wrote:
  thx - this brings me a step further but can someone explain me how to
  create the headers out of the idl-files? They formerly were part of
  ure-devel iirc.
  
 Ok, forgive my ignorance :)

Not at all ! :-) it is a rather good question.

 After studiing the examples provided by sdk-doc again I found the cppumaker - 
 command. Now I only have to adjust my cmake script to generate those headers 
 dynamically too. 

It seems a nonsense to me to not ship the pre-built C++ headers in the
sdk - particularly if that would make things easier for developers.

Stephan - is there a really good reason for not doing that ? clearly
the easier we make the sdk to use the better, and those headers can be
cut/pasted around / included into the code without problems surely.

ATB,

Michael.

-- 
michael.me...@suse.com  , Pseudo Engineer, itinerant idiot

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


[Libreoffice] [REVIEWED 3-4] application crash on exit

2011-11-12 Thread Michael Meeks
Hi Noel,

On Sat, 2011-11-12 at 09:49 +, Noel Power wrote:
 We have an internal bug that happens when closing the application where 
 there is a legacy format document ( e.g. something.sdd ) already open

Thanks for looking at this :-)

 ==23824== Invalid read of size 8
 ==23824==at 0x10C543A0: GtkSalDisplay::EventGuardAcquire() 
 (gtkdata.hxx:83)

So - your fix seems reasonable enough but:

 ==23824==by 0x10C53633: GtkXLib::userEventFn(void*) (gtkdata.cxx:800)
 ==23824==by 0x10C535D4: call_userEventFn (gtkdata.cxx:789)
 ==23824==by 0x13538BD2: g_main_context_dispatch (in 
 /lib64/libglib-2.0.so.0.2800.0)

This processing of events during the GtkXLib destructor is a bit
surprising I suppose. I would be inclined as a belt + braces to add:

if (m_pUserEvent)
{
g_source_destroy (m_pUserEvent);
g_source_unref (m_pUserEvent);
m_pUserEvent = NULL;
}

At the end of ~GtkXLib as well. The hard-coded:

int nMaxEvents = bHandleAllCurrentEvents ? 100 : 1;

in the original code is particularly horrible but ... ;-)

 I had a patch ( that just returned immediately from GtkXLib::userEventFn 
 while GtkXLib was destructing ) However now I see that this doesn't 
 happen on master so after looking there I rewrote the patch be more like 
 ( albeit simpler ) the solution there ( which seems to be part of some 
 bigger rework, for gtk3 ? )

Right - there are some rather substantial changes there. Then again - I
havn't seen my TESTME: warning on shutdown on master so perhaps that
isn't getting exercised much.

 since I know approximately zero about gtk stuff, appreciate wiser heads 
 having a look

Looks fine for the branch for me - any chance you could cherry-pick
it ?

Thanks !

Michael.

-- 
michael.me...@suse.com  , Pseudo Engineer, itinerant idiot

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


Re: [Libreoffice] Howto develop an extension with URE?

2011-11-12 Thread Christian Ehrlicher
Am Samstag, 12. November 2011, 12:43:47 schrieb Michael Meeks:
 On Fri, 2011-11-11 at 22:52 +0100, Christian Ehrlicher wrote:
   thx - this brings me a step further but can someone explain me how to
   create the headers out of the idl-files? They formerly were part of
   ure-devel iirc.
  
  Ok, forgive my ignorance :)
 
   Not at all ! :-) it is a rather good question.
 
  After studiing the examples provided by sdk-doc again I found the
  cppumaker - command. Now I only have to adjust my cmake script to
  generate those headers dynamically too.
 
Ok, next step - is it correct that I don't need a custom rdb anymore? The 
example formerly created an own rdb but is now using offapi.rdb from basis-
link/program
The old rdb creation procedure also used some libs which are not there anymore 
- remotebridge.uno.so and bridgefac.uno.so

Now when I try to use the provided rdb I get an error when I try to load a 
document:
LoadFromUrl failed: Binary URP bridge disposed during call - 
file:///home/chehrlic/Dokumente/test.odp
Out of curiosity the documentloader example can load my document and I can't 
find a difference between the example and my code.

I found a bugreport about this message in ubuntu ( 
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/787539 ) but this 
did not help me further.

Is there a wiki about this? All I can find are old instructions ... 

Thx,
Christian
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice] [PATCH][PLEASE REVIEW] Remove String::Fill() usage

2011-11-12 Thread Markus Mohrhard
Hello Christina,

2011/11/12 Chr. Rossmanith chrrossman...@gmx.de:
 To add some information: LibO builds fine but I keep getting failed tests in
 the end:

 make[1]: ***
 [/Space/LibreOffice_OneGit/core/workdir/unxlngi6.pro/CppunitTest/sc_filters_test.test]
 Fehler 1

 It's ./sc where I made modifications and sc_filters_test which fails...


This part might be worng:

 if ( bValue )
-aString.AssignAscii( ### );
-aString.Erase( nLen );
+aString = rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( ### ));

Could you paste the exact error message. Normally there should be a
better error message mentioning why the test did fail. Depending on
the place where it fails it should give a relative exact message which
cell is not as expected. Otherwise I'll have a look tomorrow evening.

I think it should fail in sc/qa/unit/data/ods/format.ods. You can
check this file yourself with your build and see what is different to
a 3-4 build.

Regards,
Markus
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice] Trouble with autogen on WinXP

2011-11-12 Thread Regina Henschel

Hi all,

this time my try to build fails already in autogen.sh. Up to now I had 
used the switches cited below.

But now
1. It does not know --disable-nss-module
2. It tries to build mozilla, instead of using the prebuild ones
Breaks here.

Kind regards
Regina

./autogen.sh \
 --with-directx-home=/cygdrive/c/Programme/Microsoft DirectX SDK 
(March 2009) \

 --with-cl-home=/cygdrive/c/Programme/Microsoft Visual Studio 9.0/VC \
 --disable-activex \
 --disable-build-mozilla \
 --disable-nss-module \
 --disable-binfilter \
 --disable-odk \
 --with-midl-path=/cygdrive/c/Programme/Microsoft 
SDKs/Windows/v6.0A/bin \
 --with-asm-home=/cygdrive/c/Programme/Microsoft Visual Studio 
9.0/VC/bin \

 --with-jdk-home=/cygdrive/c/Programme/Java/jdk1.6.0_20 \
 --with-csc-path=/cygdrive/c/Windows/Microsoft.NET/Framework/v3.5 \
 --with-ant-home=/ant \
 --with-mspdb-path=/cygdrive/c/Programme/Microsoft Visual Studio 
9.0/Common7/IDE \

 --without-junit \

But now
1. It does not know --disable-nss-module
2. It tries to build mozilla, instead of using the prebuild ones
Breaks here.

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


[Libreoffice] Build fails in moz module

2011-11-12 Thread Anurag Jain
Hi there,

My build is failing in the moz module. I tried building the moz
individually after doing the clean up but could not figure out the problem.

Here is the build log http://pastebin.com/XwrWqgMJ

Please help me figure out what might be causing the problem.

Thanks and regards

-- 
Anurag Jain
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice] cloph's license statement

2011-11-12 Thread Christian Lohmaier
Hi *,

apparently I never sent an official message regarding my contribution,
so here it is for reference/housekeeping:

All past and future contributions by me (be it to the old
OpenOffice.org project or to the LibreOffice project) are under
 LGPLv3+/GPLv3+/MPL until further notice.

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


[Libreoffice] [PATCH] Replace command domainname by getdomainname() on Unix

2011-11-12 Thread Arnaud Versini
Hi,

I have noticed some forks during valgrind check, I think it will be better
to use functions instead of the unix command. This patch replace the fork
and exec  domainnanme by a simple call to getdomainname(). It is faster and
we sould have less message during valgrind and strace investigation's.

Best regards

-- 
Arnaud Versini
From 1f15cd04c17af93c7603e8d90137df9a91e86493 Mon Sep 17 00:00:00 2001
From: Arnaud Versini arnaud.vers...@gmail.com
Date: Sat, 12 Nov 2011 19:17:03 +0100
Subject: [PATCH] Replace domainname command by getdomainname syscall or
 function

---
 sal/osl/unx/socket.c |   51 -
 1 files changed, 5 insertions(+), 46 deletions(-)

diff --git a/sal/osl/unx/socket.c b/sal/osl/unx/socket.c
index b60fb2d..9c33eaf 100644
--- a/sal/osl/unx/socket.c
+++ b/sal/osl/unx/socket.c
@@ -811,52 +811,11 @@ static struct hostent* _osl_gethostbyname_r (
 
 static sal_Bool  _osl_getDomainName (sal_Char *buffer, sal_Int32 bufsiz)
 {
-sal_Bool result;
-int  p[2];
-
-result = sal_False;
-if (pipe (p) == 0)
-{
-pid_t pid;
-int nStatus;
-
-pid = fork();
-if (pid == 0)
-{
-char *argv[] =
-{
-/bin/domainname,
-NULL
-};
-
-close (p[0]);
-dup2  (p[1], 1);
-close (p[1]);
-
-execv (/bin/domainname, argv);
-// arriving here means exec failed
-_exit(-1);
-}
-else if (pid  0)
-{
-sal_Int32 k = 0, n = bufsiz;
-
-close (p[1]);
-if ((k = read (p[0], buffer, n - 1))  0)
-{
-buffer[k] = 0;
-if (buffer[k - 1] == '\n')
-buffer[k - 1] = 0;
-result = sal_True;
-}
-close (p[0]);
-waitpid (pid, nStatus, 0);
-}
-else
-{
-close (p[0]);
-close (p[1]);
-}
+sal_Bool result = (getdomainname(buffer, bufsiz) == 0);
+if  (!result) {
+OSL_TRACE(osl_getDomainName failed. Errno: %d; %s\n,
+  errno,
+  strerror(errno));
 }
 return (result);
 }
-- 
1.7.5.4

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


Re: [Libreoffice] Trouble with autogen on WinXP

2011-11-12 Thread Noel Grandin
I found that I had to install the Mozilla build tools and point autogen at
them to make my build work

On Saturday, November 12, 2011, Regina Henschel rb.hensc...@t-online.de
wrote:
 Hi all,

 this time my try to build fails already in autogen.sh. Up to now I had
used the switches cited below.
 But now
 1. It does not know --disable-nss-module
 2. It tries to build mozilla, instead of using the prebuild ones
 Breaks here.

 Kind regards
 Regina

 ./autogen.sh \
  --with-directx-home=/cygdrive/c/Programme/Microsoft DirectX SDK (March
2009) \
  --with-cl-home=/cygdrive/c/Programme/Microsoft Visual Studio 9.0/VC \
  --disable-activex \
  --disable-build-mozilla \
  --disable-nss-module \
  --disable-binfilter \
  --disable-odk \
  --with-midl-path=/cygdrive/c/Programme/Microsoft
SDKs/Windows/v6.0A/bin \
  --with-asm-home=/cygdrive/c/Programme/Microsoft Visual Studio
9.0/VC/bin \
  --with-jdk-home=/cygdrive/c/Programme/Java/jdk1.6.0_20 \
  --with-csc-path=/cygdrive/c/Windows/Microsoft.NET/Framework/v3.5 \
  --with-ant-home=/ant \
  --with-mspdb-path=/cygdrive/c/Programme/Microsoft Visual Studio
9.0/Common7/IDE \
  --without-junit \

 But now
 1. It does not know --disable-nss-module
 2. It tries to build mozilla, instead of using the prebuild ones
 Breaks here.

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

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


Re: [Libreoffice] Trouble with autogen on WinXP

2011-11-12 Thread Regina Henschel

Hi Noel,

Noel Grandin schrieb:

I found that I had to install the Mozilla build tools and point autogen at
them to make my build work


What do I need, MozillaBuildSetup or moztools-static ?

Kind regards
Regina
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice] [PATCH] Replace command domainname by getdomainname() on Unix

2011-11-12 Thread Lionel Elie Mamane
On Sat, Nov 12, 2011 at 09:00:08PM +0100, Arnaud Versini wrote:

 I have noticed some forks during valgrind check, I think it will be better
 to use functions instead of the unix command. This patch replace the fork
 and exec  domainnanme by a simple call to getdomainname(). It is faster and
 we sould have less message during valgrind and strace
 investigation's.

getdomainname() is not specified by SUS, nor POSIX. However, BSDs have
it since... a long, long time. Google tells me recent versions of
Solaris/SunOS sorta-has it, but not really: it is in -lnsl, but not in
the headers... See
http://old.nabble.com/getdomainname%3A-fix-several-problems-td30324427.html

So I guess we are happy with the portability of that, and I'm committing.

For nitpickers, note that getdomainname does *not* return the DNS
domain, but the NIS domain, which strictly speaking may or may not
coincide. The portable and strictly correct way seems to be to do a
DNS query on the result of gethostname() (gethostbyname or getaddrinfo
with AI_CANONNAME).

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


[Libreoffice] [Bug 42865] New: MySQL native driver: free() on non-heap pointer; in debug mode abort()

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42865

 Bug #: 42865
   Summary: MySQL native driver: free() on non-heap pointer; in
debug mode abort()
Classification: Unclassified
   Product: LibreOffice
   Version: LibO Master
  Platform: All
OS/Version: All
Status: ASSIGNED
  Severity: major
  Priority: medium
 Component: Database
AssignedTo: lio...@mamane.lu
ReportedBy: lio...@mamane.lu
CC: mst...@redhat.com


Open a .odb file that uses the native MySQL driver. Click on tables in the
left column to see the list of available tables.

free() is called on a pointer that was not malloc()ed; on a dbgutil build, this
leads to an immediate abort() since commit
e0c72547ce57c25db61ec3da6c2f2f2792348c7d, which enables libstdc++ debug mode in
dbgutil build.

The root cause is the interplay of how libstdc++ handles empty std::string and
mysqlc.uno.so's version script:

libstdc++ does not allocate heap memory for an empty std::string, but makes the
data pointer point to a constant, the symbol _S_empty_rep_storage (initialised
by the linker). The std::string destructor does something along the lines of:

if (the_string.pData != _S_empty_rep_storage)
   free(the_string.pData)

Normally, the symbol _S_empty_rep_storage is unique global across the whole
process (GNU extension to ELF), so this works well. But the local: *; in
mysqlc.uno.so's version link script overrides that and makes the
_S_empty_rep_storage of mysqlc.uno.so different from the _S_empty_rep_storage
of libmysqlcppconn.so. But mysqlc.uno.so's getTables calls libmysqlcppconn.so's
getTables, and gets (among others) empty strings as result (wrapped in a
SQLString); the first occurrence is the name of the catalog of the table (MySQL
does not support catalogs).

When that empty string is destructed within mysqlc.uno.so, the destructor calls
free() on libmysqlcppconn.so's _S_empty_rep_storage, and boum!


The best fix would be to add

{
global:
_ZNSs4_Rep20_S_empty_rep_storageE;
};

to all version link scripts (to get rid of that problem *everywhere*), but that
is not allowed. I filed a request to allow that in GNU ld
(http://sourceware.org/bugzilla/show_bug.cgi?id=13406), but even if we get my
wish, we need another solution until that version of ld can become our
baseline... years away.

Note that exporting that symbol in UDK_3_0_0 (or any other named version) does
*not* work, it needs to be the anonymous version to be compatible with system
DSOs such as mysqlcppconn.so.


Removing the local: *; from all link scripts would lead to massive symbol
leak, defeating the purpose of link version scripts. Unless we do something
like *automatically* adding each and every symbol there, except for
_ZNSs4_Rep20_S_empty_rep_storageE, e.g. with a script that does:

1) Link a first time without .map file
2) use nm/objdump -T to get symbols
3) add to .map file every symbol not already mentioned in another section,
except for _ZNSs4_Rep20_S_empty_rep_storageE.
4) Link again with .map file


Anybody got a better idea?


Note that this problem is probably not MySQL-specific, nor Base-specifing; it
will crop up with any external C++ lib that provides us with (potentially
empty) std::string.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You reported the bug.

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


[Libreoffice] Updating external to new version: mysqlcppconn

2011-11-12 Thread Lionel Elie Mamane
I have in my local working dir an upgrade of the bundled mysqlcppconn
to latest officially stable version; it was my first shot at
fdo#42865.

Since I've done the work, I can as well push it; mysqlcppconn's
changelog (bugs fixed) suggests to me it is a good idea.

1) I wanted to first check whether we have a specific policy on when /
   how / why we upgrade bundled externals to newer versions, and if
   that policy tells I should not do it in the current situation.

2) The tarball downloaded from mysql.com unpacks into
   mysql-connector-c++-1.1.0, not mysql-connector-cpp. Am I supposed
   to repackage the tarball so that it unpacks into
   mysql-connector-cpp or to change makefile.mk to adapt to the new
   name? (FYI, in my local copy, I have changed makefile.mk to adapt
   to the new name.)

3) I'm also removing from the patch the hunks that do

   // hack around the non-existent ::boost::variant in OOo 3.1 build env

   Since it has been in boost since 2002/2003, so our baseline
   minimal version supported of boost should have it!

   Our bundled boost (version 1.44) has boost::variant.

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


Re: [Libreoffice] translating german - english

2011-11-12 Thread Norbert Thiebaud
On Mon, Nov 7, 2011 at 8:48 AM, Ivan Timofeev timofeev@gmail.com wrote:
 2011/11/7 Michael Meeks michael.me...@suse.com:

 On Mon, 2011-11-07 at 11:57 +0100, Luc Castermans wrote:
 The last thing: I found patch making  instructions on the Libo site.
 If there are better ones, I like to receive them.

        Just doing 'git diff  /tmp/foo.diff' can be good

 You can also use 'git diff --color' to see colored diff in terminal.

actually you can set that up once and for all with

git config --global color.diff auto

This will colorized the diff output when the output of the diff is a
terminal (but not colorize it if you pipe or redirect the output to a
file)

See man git-config for all the things that can be tweaked... :-)


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


Re: [Libreoffice] about daily builds

2011-11-12 Thread Norbert Thiebaud
On Wed, Nov 2, 2011 at 7:08 AM, Jean-Baptiste Faure jbf.fa...@orange.fr wrote:
 Hi all,

 I think it should be interesting to have in the directory of each daily
 build a text file giving two informations :
 1/ the top commit against which this daily build has been built
 2/ the list of autogen.sh options that have been used.

 1/ is useful if you want to test a particular fix on a machine where you
 can't compile LibreOffice.

 2/ is useful to compare a daily build with your own build.


Done: see 
http://dev-builds.libreoffice.org/daily/MacOSX_10.6.7_Intel_no-moz/master/2011-11-13_01.04.10/
there is now a file called *_build.info.txt
that file contains
the generals info relative to the tinderbox
the list of repo:commit_sha on which the build is based
and the output of teh ./autogen.sh command that was used in the build

for example:
---

Build Info
tinderbox: administrator: nthieb...@gmail.com
tinderbox: buildname: MacOSX 10.6.7 Intel no-moz
tinderbox: tree: MASTER
tinderbox: pull time 2011-11-13 01:04:10
tinderbox: git sha1s
core:a7553b213cd7603e9dbac76e92384ca466487915
binfilter:533e3c648db45ba7c7804928a5759e2b60fdb9a2
dictionaries:ca7e6f5cabfeaa82aa4479b8aa1151c26d903993
help:9125509a7c6e65336330b8ac42a293aa77b18ee3

tinderbox: autogen log
running ./configure with '--with-vendor=The Document Foundation'
'--enable-epm' '--enable-binfilter' '--with-java-target-version=1.5'
'--disable-online-update' '--enable-ext-presenter-minimizer'
'--enable-ext-presenter-console' '--enable-ext-pdfimport'
'--enable-ext-wiki-publisher' '--enable-ext-report-builder'
'--enable-ext-scripting-beanshell' '--enable-ext-scripting-javascript'
'--enable-ext-nlpsolver' '--enable-extension-integration'
'--with-max-jobs=8' '--with-num-cpus=6' '--disable-mozilla'
'--enable-werror' '--enable-epm' '--disable-systray'

*
*   Running LibreOffice build configuration.
*


checking build system type... x86_64-apple-darwin10.8.0
checking host system type... x86_64-apple-darwin10.8.0
checking for sed... /usr/bin/sed
[...]


I have pushed the associated changes to contrib/buildbot.

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


Re: [Libreoffice] Trouble with autogen on WinXP

2011-11-12 Thread Noel Grandin
I used Mozillabuildsetup.

On Sunday, November 13, 2011, Regina Henschel rb.hensc...@t-online.de
wrote:
 Hi Noel,

 Noel Grandin schrieb:

 I found that I had to install the Mozilla build tools and point autogen
at
 them to make my build work

 What do I need, MozillaBuildSetup or moztools-static ?

 Kind regards
 Regina
 ___
 LibreOffice mailing list
 LibreOffice@lists.freedesktop.org
 http://lists.freedesktop.org/mailman/listinfo/libreoffice

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


[Libreoffice] Misrouted bugs.Freedesktop.org report

2011-11-12 Thread Dennis E. Hamilton
Here's an interesting problem.  This report came to dennis.hamilton@ acm.org. 
I am not connected with that bug in any manner.  I am not following it, I did 
not report it, and, of course, it is not assigned to me.

Interesting problem.


 - Dennis E. Hamilton
   tools for document interoperability,  http://nfoWorks.org/
   dennis.hamil...@acm.org  gsm: +1-206-779-9430  @orcmid



-Original Message-
From: libreoffice-bounces+dennis.hamilton=acm@lists.freedesktop.org 
[mailto:libreoffice-bounces+dennis.hamilton=acm@lists.freedesktop.org] On 
Behalf Of bugzilla-dae...@freedesktop.org
Sent: Saturday, November 12, 2011 16:40
To: lio...@mamane.lu
Subject: [Libreoffice] [Bug 42865] New: MySQL native driver: free() on 
non-heap pointer; in debug mode abort()

https://bugs.freedesktop.org/show_bug.cgi?id=42865

 Bug #: 42865
   Summary: MySQL native driver: free() on non-heap pointer; in
debug mode abort()
Classification: Unclassified
   Product: LibreOffice
   Version: LibO Master
  Platform: All
OS/Version: All
Status: ASSIGNED
  Severity: major
  Priority: medium
 Component: Database
AssignedTo: lio...@mamane.lu
ReportedBy: lio...@mamane.lu
CC: mst...@redhat.com


Open a .odb file that uses the native MySQL driver. Click on tables in the
left column to see the list of available tables.

free() is called on a pointer that was not malloc()ed; on a dbgutil build, 
this
leads to an immediate abort() since commit
e0c72547ce57c25db61ec3da6c2f2f2792348c7d, which enables libstdc++ debug mode 
in
dbgutil build.

The root cause is the interplay of how libstdc++ handles empty std::string and
mysqlc.uno.so's version script:

[ ... ]

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You reported the bug.

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


smime.p7s
Description: S/MIME cryptographic signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice] about daily builds

2011-11-12 Thread Jean-Baptiste Faure

Le 13/11/2011 05:32, Norbert Thiebaud a écrit :

On Wed, Nov 2, 2011 at 7:08 AM, Jean-Baptiste Faurejbf.fa...@orange.fr  wrote:

Hi all,

I think it should be interesting to have in the directory of each daily
build a text file giving two informations :
1/ the top commit against which this daily build has been built
2/ the list of autogen.sh options that have been used.

1/ is useful if you want to test a particular fix on a machine where you
can't compile LibreOffice.

2/ is useful to compare a daily build with your own build.



Done: see 
http://dev-builds.libreoffice.org/daily/MacOSX_10.6.7_Intel_no-moz/master/2011-11-13_01.04.10/
there is now a file called *_build.info.txt
that file contains
the generals info relative to the tinderbox
the list ofrepo:commit_sha  on which the build is based
and the output of teh ./autogen.sh command that was used in the build


Great ! Thank you very much

Merci beaucoup Norbert :-)

Best regards.
JBF

--
Seuls des formats ouverts peuvent assurer la pérennité de vos documents.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice] compile fails: solver/unxlngx6.pro/xml/ure/services.rdb not created

2011-11-12 Thread Luc Castermans
Hi,

Get compile error on testtool:  solver/unxlngx6.pro/xml/ure/services.rdb
is not created.
No matter what I try. Before it was OK.

See:

http://pastebin.com/4cUAnyXF

when I execute the instruction I move one level deeper and get:

http://pastebin.com/F2z0SjNm

Any help, please

-- 
Luc Castermans
mailto:luc.casterm...@gmail.com
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-qa] Bugzilla Query puzzling

2011-11-12 Thread Rainer Bielefeld

Hello,

I am just trying to create a reliable bug needs review for Confirmation.

1. step was
https://bugs.freedesktop.org/buglist.cgi?emailtype2=substringlist_id=10914emaillongdesc1=1field0-0-0=status_whiteboardemailtype1=notregexpchfieldto=Nowquery_format=advancedchfield=[Bug%20creation]bug_status=UNCONFIRMEDbug_status=NEWbug_status=PLEASETESTemail2=libreoffice-bugs%40lists.freedesktop.orgemail1=LibreOffice%40bielefeldundbuss.de%20%20%20detective.conan.1412%40gmail.com%20%20iamtester8%40gmail.com%20jbf.faure%40orange.fr%20%20%20fyvaao%40ya.ru%20%20vitriol_vitriol%40katamail.com%20andre.schnabel%40gmx.net%20drew%40baseanswers.com%20%20%20maand%40gmx.de%20%20wope%40gmx.com%20%20baur.steven%40googlemail.com%20%20dmx404%40gmail.com%20jeffdchang%40gmail.com%20%20yfjiang%40novell.com%20%20%20%20jr%40natural-computing.de%20%20emailassigned_to2=1type0-0-0=notsubstringvalue0-0-0=CONFIRMEDproduct=LibreOffice

2. Step was
https://bugs.freedesktop.org/buglist.cgi?emailtype2=substringemaillongdesc1=1field0-0-0=status_whiteboardemailtype1=notregexpchfieldto=Nowquery_format=advancedchfield=[Bug%20creation]bug_status=UNCONFIRMEDbug_status=NEWbug_status=PLEASETESTemail2=libreoffice-bugs%40lists.freedesktop.orgemail1=LibreOffice%40bielefeldundbuss.de%20%20%20detective.conan.1412%40gmail.com%20%20iamtester8%40gmail.com%20jbf.faure%40orange.fr%20%20%20fyvaao%40ya.ru%20%20vitriol_vitriol%40katamail.com%20andre.schnabel%40gmx.net%20drew%40baseanswers.com%20%20%20maand%40gmx.de%20%20wope%40gmx.com%20%20baur.steven%40googlemail.com%20%20dmx404%40gmail.com%20jeffdchang%40gmail.com%20%20yfjiang%40novell.com%20%20%20%20jr%40natural-computing.de%20%20emailassigned_to2=1type0-0-0=notsubstringvalue0-0-0=CONFIRMEDproduct=LibreOffice

I would have expected more or less the same number of bugs, but 1. has 
2767 hits, 2. 2316 ones. At the end of the list may be 50 can miss, 
that's inteded, but within the line In 2. are missing Bugs 35041, 35393, 
36992, 37222, 37276, 37312, 37721, 38273, 38738, 38781, 39111, 39143, 
39566, 39746, 39924, 39926, 39997, 40027, 40036, 40067, 40070, 40196, 
40237, 40248, 40266, 40292, 40319, 40320, 40362, 40376, 40391, 40435, 
40447, 40472, 40506, 40550, 40615, 40617, 40626, 40634, 40679, 40755, 
40757, 40821, 40899, 40944, 40983, 41024, 41067, 41089, 41093, 41166, 
41176, 41180, 41186, 41205, 41215, 41223, 41224, 41256, 41261, 41269, 
41270, 41278, 41285, 41288, 41293, 41298, 41299

and others (I became tired with searching) are missing.

Intention for step 2 only was to shift the Status info to Custum 
Search to exclude NEW after a particular Bug No (41983, Ocotober-16, 
new Bugzilla)


I can't find out why, can you help?

Kind regards

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


Re: [Libreoffice-qa] Bugzilla Query puzzling

2011-11-12 Thread Rainer Bielefeld

Rainer Bielefeld schrieb:


Hello,

now I know (writing such a mail always helps), UNCONFIRMED bugs are all 
missing. But why?


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


[Libreoffice-bugs] [Bug 41313] FILESAVE crashes when attempting to save chart into .odt format.

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=41313

--- Comment #5 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-11-12 00:21:38 UTC ---
@rydenfr...@gmail.com
Please try 3.4.4

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 40980] Tamil text will CRASH

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40980

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

   What|Removed |Added

 AssignedTo|libreoffice-b...@lists.free |tlillqv...@suse.com
   |desktop.org |

--- Comment #4 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-11-12 00:29:43 PST ---
Still [Reproducible] with Server installation of Master LibO-dev 3.5.0 – WIN7
Home Premium (64bit) German UI [(Build ID: 
6b0de40-0bc4ff4-ca7e6f5-9125509-ce71330)] (11) when I copy/paste the
paragraph starting with அச்சே சுல்தானகம் (Aceh Sultanate,

@Tor:
Can you help? Seems WIN specific.
Please feel free to reassign (or reset Assignee to default) if it’s not your
area or if provided information is not sufficient. Please set Status to
ASSIGNED if you accept this Bug.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42772] Launch of Libreoffice 3.4.4 impossible after update from version 3.4.1

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42772

Christian Ehrlicher ch.ehrlic...@gmx.de changed:

   What|Removed |Added

 CC||ch.ehrlic...@gmx.de

--- Comment #1 from Christian Ehrlicher ch.ehrlic...@gmx.de 2011-11-12 
01:06:47 PST ---
I've exactly the same problem (with a slightly differeent msvcrt90 version) on
Windows7 after upgrading from 3.4.3. Uninstall + Reinstall doesn't help either.
I'm using Windows 7, 64Bit

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42684] FILEOPEN very slow, network/dns related, it takes about 15 minutes

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42684

--- Comment #3 from mboh...@gmail.com 2011-11-12 01:21:13 PST ---
When opening the file in LO 3.3, LO stops.
I think some dependencies are missing.
I add an strace and below is the command line output 

arc@VASTEPC:~$ strace -o /tmp/strace.log -f -tt -s 512 libreoffice

(soffice:2265): Gtk-WARNING **:
/opt/libreoffice/program/../basis-link/ure-link/lib/libstdc++.so.6: version
`GLIBCXX_3.4.11' not found (required by
/usr/lib/i386-linux-gnu/gtk-2.0/2.10.0/engines/liboxygen-gtk.so)
marc@VASTEPC:~$ strace -o /tmp/strace.log -f -tt -s 512 libreoffice

(soffice:2351): Gtk-WARNING **:
/opt/libreoffice/program/../basis-link/ure-link/lib/libstdc++.so.6: version
`GLIBCXX_3.4.11' not found (required by
/usr/lib/i386-linux-gnu/gtk-2.0/2.10.0/engines/liboxygen-gtk.so)
marc@VASTEPC:~$ strace -o /tmp/strace.log -f -tt -s 512 libreoffice

(soffice:2392): Gtk-WARNING **:
/opt/libreoffice/program/../basis-link/ure-link/lib/libstdc++.so.6: version
`GLIBCXX_3.4.11' not found (required by
/usr/lib/i386-linux-gnu/gtk-2.0/2.10.0/engines/liboxygen-gtk.so)
terminate called after throwing an instance of 'eIDMW::CMWException'
  what():  std::exception


When opening a simple file with just a few numbers in it, it works.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 38913] Libreoffice applications crash - MSVCR90.dll

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38913

Alex Sims a...@softgrow.com changed:

   What|Removed |Added

 CC||a...@softgrow.com

--- Comment #3 from Alex Sims a...@softgrow.com 2011-11-12 01:24:10 PST ---
The Java is a key. After uninstalling (on 64 bit Windows Vista Enterprise) the
x86 versions of Java, LibreOffice would crash on startup. 
- installed Microsoft Visual C++ 2008 Redistributable
- still crashes
- Install Java 7 x86 offline
- Still crashes
- Install Java 6 x86 offline
- fixed!

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42785] FILEOPEN

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42785

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed|0   |1

--- Comment #1 from Michael Meeks michael.me...@novell.com 2011-11-12 
01:30:24 PST ---
confirmed vs. just built master.

#0  0xae69ff5b in
SvxUnoTextBase::insertString(com::sun::star::uno::Referencecom::sun::star::text::XTextRange
const, rtl::OUString const, unsigned char) () from
/data/opt/OOInstall/program/libeditenglo.so
#1  0xafc21ba0 in XMLTextImportHelper::InsertString(rtl::OUString const,
unsigned char) ()
   from /data/opt/OOInstall/program/../program/libxolo.so
#2  0xafc40196 in ?? () from /data/opt/OOInstall/program/../program/libxolo.so
#3  0xafafca04 in SvXMLImport::characters(rtl::OUString const) () from
/data/opt/OOInstall/program/../program/libxolo.so
#4  0xaf9d17d1 in ?? () from
/data/opt/OOInstall/program/../program/expwrap.uno.so
#5  0xaf9dceae in ?? () from
/data/opt/OOInstall/program/../program/expwrap.uno.so
#6  0xaf9dd1fe in ?? () from
/data/opt/OOInstall/program/../program/expwrap.uno.so

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42841] New: Extensioname: enable extension error

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42841

 Bug #: 42841
   Summary: Extensioname: enable extension error
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Extensions
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: goodlinuxu...@gmail.com


Created attachment 53437
  -- https://bugs.freedesktop.org/attachment.cgi?id=53437
error loading example

Problem description: 
libre office3.4.4 can not load 
extensions by default install during installation
1.report builder
2.script provider for beanshell
3.script provider for js
4.solver for non linear programming
4.wiki publisher

after 
delete these by modify in setup progress solve

Platform (if different from the browser): 

Browser: Mozilla/5.0 (Windows NT 6.1; rv:8.0) Gecko/20100101 Firefox/8.0

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42842] New: Crash on fileopen with big picture ancored to page

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42842

 Bug #: 42842
   Summary: Crash on fileopen with big picture ancored to page
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.3 release
  Platform: x86 (IA32)
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: critical
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: jelen_v_se...@yahoo.co.uk


I have a text document. Then I put in a big bitmap picture. 300dpi. 1748 x
2480. Then resize picture to full page - A5 in my case. If picture is anchored
to paragraf, everything is OK. But if picture is anchored to page, at next file
open LibreOffice die. LibreOffice try to restore corupted file, but no success.
-I hope I'm not misss any importannt.


Matic

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42842] Crash on fileopen with big picture anchored to page

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42842

Matic jelen_v_se...@yahoo.co.uk changed:

   What|Removed |Added

Summary|Crash on fileopen with big  |Crash on fileopen with big
   |picture ancored to page |picture anchored to page

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 41749] FILEOPEN: graphics disappearing

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=41749

--- Comment #1 from tester8 iamtest...@gmail.com 2011-11-12 03:13:05 PST ---
Can you please provide exactly URL for test?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42785] FILEOPEN

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42785

--- Comment #2 from Michael Meeks michael.me...@novell.com 2011-11-12 
03:16:45 UTC ---
Created attachment 53438
  -- https://bugs.freedesktop.org/attachment.cgi?id=53438
patch

This avoids the crash, whether it is a good idea is anyone's guess :-)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 41533] : LO on Windows crashes when a remote Windows session is disconnected

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=41533

tester8 iamtest...@gmail.com changed:

   What|Removed |Added

 CC||mat.end...@gmail.com

--- Comment #1 from tester8 iamtest...@gmail.com 2011-11-12 03:18:57 PST ---
*** Bug 41559 has been marked as a duplicate of this bug. ***

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 41559] : LibreOffice crashes when disconnecting an RDP session.

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=41559

tester8 iamtest...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||DUPLICATE

--- Comment #2 from tester8 iamtest...@gmail.com 2011-11-12 03:18:57 PST ---


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

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 41590] undefined: Defective Error checking -

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=41590

tester8 iamtest...@gmail.com changed:

   What|Removed |Added

 CC||iamtest...@gmail.com

--- Comment #1 from tester8 iamtest...@gmail.com 2011-11-12 03:22:46 PST ---
NOT reproduced with new document.
Can you please attach sample document?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 41842] FORMATTING: Transfering format with brush affects wrong cells

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=41842

tester8 iamtest...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed|0   |1

--- Comment #1 from tester8 iamtest...@gmail.com 2011-11-12 03:35:52 PST ---
Reproduced with

LO 3.4.4
Ubuntu 10.04.3 x86
Linux 2.6.32-35-generic Russian UI

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42843] New: Text alignment is all messed up

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42843

 Bug #: 42843
   Summary: Text alignment is all messed up
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: x86 (IA32)
OS/Version: Linux (All)
Status: UNCONFIRMED
  Severity: blocker
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: s...@hellug.gr


Created attachment 53441
  -- https://bugs.freedesktop.org/attachment.cgi?id=53441
Text alignment mess visual explanation

This is hard to explain. Please see the attached png file (text-align-mess.png)

Steps to reproduce:
Create a multi paragraph document. Apply different paragraph styles, full
justification, check for corruption.

This corruption makes libreoffice 3.4.4 unusable for me :(
Will try to go back to 3.3.x
Will keep 3.4.4 on a vitrual machine in case you need any more info

Platform: debian sid (aptosid)
Running Linux 3.0.0-1-686-pae i686 [ aptosid 2010-02 Κῆρες - kde-full -
(201009132215) ]

LibreOffice 3.4.4, OOO340m1 (Build:402)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 41863] Ellipse drawing shape position and size not saved

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=41863

tester8 iamtest...@gmail.com changed:

   What|Removed |Added

 CC||iamtest...@gmail.com

--- Comment #2 from tester8 iamtest...@gmail.com 2011-11-12 03:46:24 PST ---
NOT reproduced with

LO 3.4.4
Ubuntu 10.04.3 x86
Linux 2.6.32-35-generic Russian UI

steveb, Fahad Al-Saidi
Can you please test with 3.4.4?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42833] Requesting a user account

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42833

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

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||FIXED

--- Comment #2 from Michael Meeks michael.me...@novell.com 2011-11-12 
03:47:54 PST ---
Created an account 'augsod' - please use ./g --set-push-user augsod # to switch
your tree over and be able to push.
Please only push obvious / cleanup commits you're confident of without review,
otherwise best to send patches to the developer list for wider approval.
Thanks so much for your contributions  welcome to the core team ! :-)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42843] Text alignment is all messed up

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42843

--- Comment #1 from s...@hellug.gr 2011-11-12 03:48:13 PST ---
Created attachment 53442
  -- https://bugs.freedesktop.org/attachment.cgi?id=53442
ODT file demonstrating the bug

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42843] Text alignment is all messed up

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42843

s...@hellug.gr changed:

   What|Removed |Added

   Priority|medium  |highest

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 41890] : Printing problems since installation of Ubuntu 11.10

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=41890

tester8 iamtest...@gmail.com changed:

   What|Removed |Added

   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=41882

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 40965] EDITING: Impress edition in Slide Sorter view is erratic

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40965

tester8 iamtest...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||DUPLICATE

--- Comment #3 from tester8 iamtest...@gmail.com 2011-11-12 03:58:16 PST ---
Mark as duplicate due to reporters words.

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

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 40951] EDITING: Impress edition in Slide Sorter view is erratic

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40951

--- Comment #2 from tester8 iamtest...@gmail.com 2011-11-12 03:58:16 PST ---
*** Bug 40965 has been marked as a duplicate of this bug. ***

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42638] Feature request: floating menus

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42638

--- Comment #1 from Ilian Dimitrov hellion...@gmail.com 2011-11-12 04:10:11 
PST ---
Created attachment 53443
  -- https://bugs.freedesktop.org/attachment.cgi?id=53443
the floating menu unclicked

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42638] Feature request: floating menus

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42638

--- Comment #2 from Ilian Dimitrov hellion...@gmail.com 2011-11-12 04:11:04 
PST ---
Created attachment 53444
  -- https://bugs.freedesktop.org/attachment.cgi?id=53444
Menu clicked

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42638] Feature request: floating menus

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42638

--- Comment #3 from Ilian Dimitrov hellion...@gmail.com 2011-11-12 04:12:15 
PST ---
Created attachment 53445
  -- https://bugs.freedesktop.org/attachment.cgi?id=53445
The paste special function added to the context menu

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42763] [FORMATTING] Option to clear style properties, fall back to Inherit

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42763

--- Comment #1 from ryan.jendo...@gmail.com ryan.jendo...@gmail.com 
2011-11-12 04:13:24 PST ---
Additional thoughts re: proposed solution B
---
- it appears that all radio buttons in the Paragraph Style: Style dialogue
box currently always have a default option selected. Therefore a way to
indicate deferral to the parent style for radio box would be for clicking on a
currently-selected option to /remove/ that selection, leaving /nothing/
selected in the optiongroup. I think this would be reasonably clear, and of
course would toggle back and forth very easily.

- for combo boxes (e.g. Before indent, Scale width, etc), I have often
instinctively sought to clear these values by deleting all text in them, then
clicking / tabbing out. At the moment, if there is no text in a combo box when
it loses focus, a default value (0.00cm, 100%, etc) is substituted in. I'd
suggest that instead this could be taken as an indication that the user wishes
to clear that property and defer back to the parent style. The default value
can still be easily entered, either by hand or via the Standard button in the
bottom right of the Paragraph Style: Style dialogue box, and as I
mentioned, I've often tried this method intuitively.

- this leaves checkboxes. Obviously they can't be dealt with in the same way as
radio buttons, since un-checking a checkbox which is checked in the parent
style is a legitimate expression of preference. Altogether I think there are 25
checkbox options in the Paragraph Style: Style dialogue box:

Organizer  AutoUpdate
Indents  Spacing  (2 options)
Alignment  (2 options)
Text flow  (5 options)
Asian Typography  (3 options)
Font Effects  (5 options)
Position  (2 options)
Asian Layout  Write in double lines
Outline numbering  (2 options)
Drop caps  (2 options)

Barring any flashes of insight, a [Clear all] button is still the best
solution I can think of for these. Obviously the [Clear all] button would
only apply to the currently visible tab, as does the existing [Standard]
button.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42638] Feature request: floating menus

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42638

--- Comment #4 from Ilian Dimitrov hellion...@gmail.com 2011-11-12 04:14:44 
PST ---
I've added a few quick mockups to illustrate my proposal

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 40270] Header border showing on PDF export

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40270

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

   What|Removed |Added

 OS/Version|Mac OS X (All)  |All

--- Comment #8 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-11-12 05:44:46 PST ---
@Jonathan:
Thank you for your additional information. I believe we here have 2
observations:
1. it's difficult to adjust heading height so that it is exactly shown at the 
   place below the bottom of capital letters; that was your original report, it
   has been reproduced.
2. An additional, may be other line parts the descenders of some letters 
  (g, j, y) at the baseline from the x-height part 
  (see http://en.wikipedia.org/wiki/X-height and 
   http://en.wikipedia.org/wiki/Descender), See my comment 6

Can you confirm 2.?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42843] Text alignment is all messed up

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42843

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

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
   Severity|blocker |normal
   Priority|highest |medium
 CC||LibreOffice@bielefeldundbus
   ||s.de
 Ever Confirmed|0   |1

--- Comment #2 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-11-12 06:06:18 PST ---
NOT reproducible with LibreOffice 3.4.4  - WIN7 Home Premium (64bit) German UI
[OOO340m1 (Build:402)]. I see and understand (probably) the problems in the
screenshots, but I have problems to find them in the text. I believe that I
already saw some of the problems, some of them were problems with settings.

Here we should concentrate to the first problem in the screenshot text looks
like left justified.

@reporter:
May I ask you to read  hints on http://wiki.documentfoundation.org/BugReport
carefully?
Then please:
- Write a meaningful Summary. 
- Contribute Search helps how to find the problems in a document so that it's 
  also possible for users not speaking Greek. Here for first for the 
  text looks like left justified.
- add information 
  -- concerning your PC (video card)
  -- concerning your OS (Version, Distribution, Language)
  -- concerning your LibO localization (UI language)
  –- Libo settings that might be related to your problems 
(video hardware acceleration ...)
  -- how you launch LibO and how you opened the sample document
  -- everything else crossing your mind after you read linked texts

Please file separate Bug reports for each problem you find (and refer to the
sample document here)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42845] New: EDITING: Equation sqrt{..}

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42845

 Bug #: 42845
   Summary: EDITING: Equation sqrt{..}
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: philippe.da...@ac-toulouse.fr


Created attachment 53451
  -- https://bugs.freedesktop.org/attachment.cgi?id=53451
error image

Problem description: I edit an equation with sqrt{2}. When I open again the
file, the image of the root square is not correct

see image joined

Platform (if different from the browser): win32 xp

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

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42846] New: EDITING: masked paragraph

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42846

 Bug #: 42846
   Summary: EDITING: masked paragraph
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.3 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: philippe.da...@ac-toulouse.fr


Problem description: sometimes, when I work on a file, the masked paragraph is
no longer visible. 

I quit the writer.

When I open again the file the masked paragraph reappears. 

Platform (if different from the browser): Win32 xp

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

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42843] Text alignment is all messed up

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42843

--- Comment #3 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-11-12 06:27:16 PST ---
I do not have reporter's font set FreeSerif on my PC, what might also cuase my
different results

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42847] New: EDITING: Fonts LMRomanUnsl10

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42847

 Bug #: 42847
   Summary: EDITING: Fonts LMRomanUnsl10
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: philippe.da...@ac-toulouse.fr


Created attachment 53452
  -- https://bugs.freedesktop.org/attachment.cgi?id=53452
the letter v is on LMRomanUnsl10 font (win xp)

Problem description: 
I use on ubuntu the font LMRomanUnsl10.: it's OK
When I opened the file on windows xp, the font is not correct and idem on rhe
equation editor.

lmromanunsl10-regular-webfont.ttf has been installed the Fonts folder.


Platform (if different from the browser): win32 xp

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

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42843] Text alignment is all messed up

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42843

--- Comment #4 from Spiros Georgaras s...@hellug.gr 2011-11-12 07:28:05 PST 
---
Hi again

Just got back to find that the document renders ok! Probably turning off and on
the PC did the trick. I am lost here... I had an uptime of a little more than a
day, and since i use quickstarter (on xfce system tray) i can only assume that
this is what caused the problem. In any case i will report back after reaching
a similar uptime.

I can upload a copy of the sample document with some kind of token indicating
where the text in question resides. Would making the text red (foreground) be
ok?

You mentioned you saw some settings problems. What might these be? What should
i be paying attention in case it happens again?

Sorry I could not provide a useful summary. I hope this is better...



Here is my PC info:


$ infobash -v3
Host/Kernel/OS  running Linux 3.0.0-1-686-pae i686 [ aptosid 2010-02 Κῆρες -
kde-full - (201009132215) ]
CPU Info8x Intel Core i7 860 @ 8192 KB cache flags( sse3 ht nx lm vmx )
clocked at [ 1197.000 MHz ]
Videocard   nVidia G92 [GeForce GTS 250]  X.Org 1.10.4  [ 1680x1050@50.0hz
]
Network cards   Realtek RTL8111/8168B PCI Express Gigabit
Processes 190 | Uptime 17min | Memory 1369.9/4045.4MB | HDD WDC
WD2002FAEX-0,WDC WD2002FAEX-0,WDC WD20EARS-00M,WDC WD1001FALS-0 Size 7001GB
(37%used) | GLX Renderer GeForce GTS 250/PCI/SSE2 | GLX Version 3.3.0 NVIDIA
285.05.09 | Client Shell | Infobash v3.37

$ locale
LANG=el_GR.UTF-8
LANGUAGE=
LC_CTYPE=el_GR.UTF-8
LC_NUMERIC=el_GR.UTF-8
LC_TIME=el_GR.UTF-8
LC_COLLATE=el_GR.UTF-8
LC_MONETARY=el_GR.UTF-8
LC_MESSAGES=el_GR.UTF-8
LC_PAPER=el_GR.UTF-8
LC_NAME=el_GR.UTF-8
LC_ADDRESS=el_GR.UTF-8
LC_TELEPHONE=el_GR.UTF-8
LC_MEASUREMENT=el_GR.UTF-8
LC_IDENTIFICATION=el_GR.UTF-8
LC_ALL=


libreoffice info
---
LibreOffice 3.4.4 OOO340m1 (Build:402) (32bit)
Greek UI
Started from auto-launched quickstarted (kind of graphical environment
autoexec)
Hardware acceleration: On
Anti-Aliasing: On
Font preview: On

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42851] New: Calc crashes when 2 cells get the same name

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42851

 Bug #: 42851
   Summary: Calc crashes when 2 cells get the same name
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.3 release
  Platform: x86-64 (AMD64)
OS/Version: Linux (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Spreadsheet
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: simonrafic.bec...@googlemail.com


Created attachment 53459
  -- https://bugs.freedesktop.org/attachment.cgi?id=53459
strace log of application from start to crash.

I know, writing 2 values in the same variable is not (much) a good idea.
In calc, you can give names to cells by strg+f3 (that we know what we are 
talking about). If you happen to give two cells the same name, the application
crashes, and it seems to be reproductable.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42853] New: PRINTING complex documents to a CLP-620ND using the default printer language (pdf) results in garbage

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42853

 Bug #: 42853
   Summary: PRINTING complex documents to a CLP-620ND using the
default printer language (pdf) results in garbage
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.3 release
  Platform: x86-64 (AMD64)
OS/Version: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: r...@pangolin.org.uk


Created attachment 53460
  -- https://bugs.freedesktop.org/attachment.cgi?id=53460
pdf created by selecting print to file with the printer language set to pdf

Printing complex documents to a samsung CLP-620ND using libreoffice's default
printer language of pdf results in a line of garbage being printed to as many
pages as I have in the printer most of the time (some times it works no matter
how complicated the document).

Printing simple documents works most of the time.

Changing the printer language to Postscript fixes the problem (as far as I can
tell).

Setting the printer language to pdf and selecting print to file creates a pdf
that will print from evince, albeit not 100% correctly e.g it won't be
positioned properly on the page.

The documents that cause problems tend to be ones that have multiple pages per
side, duplexing, colour, or are a different size to the size paper they are
being printed on. As sometimes one page will print whilst another almost
identical page won't, it is difficult to say exactly what causes the problem.

I have attached a pdf created by selecting print to file with the printer
language set to pdf. It has two pages (slightly smaller than A5) printed on one
A4 page. If the same options are used in libreOffice but print to file is not
checked, it results in garbage being printed. If the pdf is printed from evince
it will print, but it will be misaligned (the print preview looks fine).

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42843] Text alignment is all messed up

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42843

--- Comment #5 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-11-12 08:50:56 PST ---
@Spiros Georgaras:
I know that feeling: 1 afternoon work, and then 1 switch off switch on did the
job - terrible.

I recommend that you still do some some tests and if the result remains that
now everything is ok please change status to RESOLVED - NOTABUG.

If you find that something differs from behavior you have been used to see
please add description and modify Subject line, then we can try to find out
what the problem is.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42856] New: Font rendering problem of lower case i following lower case f

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42856

 Bug #: 42856
   Summary: Font rendering problem of lower case i following
lower case f
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: PowerPC
OS/Version: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Libreoffice
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: dand1...@yahoo.com


Created attachment 53462
  -- https://bugs.freedesktop.org/attachment.cgi?id=53462
screenshot of font problem

I noticed in certain monospace fonts that the spacing between lower case f
followed by lower case i is messed up.  This happens in Courier (but not
Courier New), American Typewriter, and Monaco.

I also found the dot of the i disappears when following an f in Geneva and
New York.  This isn't a comprehensive list because I didn't check every single
font.  I've attached a png to illustrate examples.

I found this problem in both Writer and Spreadsheets.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 38310] Text (.txt) files by default open in Calc

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38310

NoOp gl...@sbcglobal.net changed:

   What|Removed |Added

 CC||gl...@sbcglobal.net

--- Comment #2 from NoOp gl...@sbcglobal.net 2011-11-12 12:38:16 PST ---
Reproducable in LO 3.4.4 final (linux - deb builds):
LibreOffice 3.4.4 
OOO340m1 (Build:402)
Defaults to opening the text file in Calc.

In LO 3.3.4 (linux - deb builds):
LibreOffice 3.3.4 
OOO330m19 (Build:401)
tag libreoffice-3.3.4.1
Properly opens the text file in Writer.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 38310] Text (.txt) files by default open in Calc

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38310

--- Comment #3 from NoOp gl...@sbcglobal.net 2011-11-12 12:39:03 PST ---
Created attachment 53465
  -- https://bugs.freedesktop.org/attachment.cgi?id=53465
test text file

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42845] EDITING: Equation sqrt{..}

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42845

Jean-Baptiste Faure jbf.fa...@orange.fr changed:

   What|Removed |Added

 CC||jbf.fa...@orange.fr

--- Comment #1 from Jean-Baptiste Faure jbf.fa...@orange.fr 2011-11-12 
12:56:25 PST ---
Please attach the original file containing the equation.

Best regards. JBF

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42846] EDITING: masked paragraph

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42846

Jean-Baptiste Faure jbf.fa...@orange.fr changed:

   What|Removed |Added

 CC||jbf.fa...@orange.fr

--- Comment #1 from Jean-Baptiste Faure jbf.fa...@orange.fr 2011-11-12 
13:00:38 PST ---
Please attach a document file showing the problem.
sometimes does not help very much to discover what goes wrong. :-)
Do you have some more precise information on what can be triggering the
offending behavior ?

I suggest you to try the current release : 3.4.4

Best regards. JBF

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42848] EDITING: Color on Equation editor and writer

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42848

Jean-Baptiste Faure jbf.fa...@orange.fr changed:

   What|Removed |Added

 CC||jbf.fa...@orange.fr

--- Comment #1 from Jean-Baptiste Faure jbf.fa...@orange.fr 2011-11-12 
13:14:01 PST ---
LibreOffice-Math has a very poor color palette. Until this is improved, I can
only suggest you to use the same red in LibO-Writer than the red in LibO-Math.
You can define a character style derived from standard style to easily apply
the right color. Please, if needed, ask for help on that to the French users
list: http://fr.libreoffice.org/assistance/ 

Best regards. JBF

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42848] EDITING: Color on Equation editor and writer

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42848

Jean-Baptiste Faure jbf.fa...@orange.fr changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||NOTABUG

--- Comment #2 from Jean-Baptiste Faure jbf.fa...@orange.fr 2011-11-12 
13:15:37 PST ---
Closing as not-a-bug.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42845] EDITING: Equation sqrt{..}

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42845

Jean-Baptiste Faure jbf.fa...@orange.fr changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever Confirmed|0   |1

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42859] New: Docking slide pane again

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42859

 Bug #: 42859
   Summary: Docking slide pane again
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.3 release
  Platform: x86-64 (AMD64)
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Presentation
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: d...@jochenschiffers.de


If slide pane is undocked docking is IMHO not easy possible. You must for
example press the Ctrl key and simultaneous double-click in the gray area next
to the word slides in slide pane.

If task pane is undocked docking is easy: klick on view in
task-pane-window respectively on dock.

Proposal: same programming for slide pane

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42858] RTF file not opened properly

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42858

Jean-Baptiste Faure jbf.fa...@orange.fr changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||jbf.fa...@orange.fr
 Ever Confirmed|0   |1

--- Comment #1 from Jean-Baptiste Faure jbf.fa...@orange.fr 2011-11-12 
13:30:30 PST ---
Please give us more information:
- your version of LibreOffice
- your OS

I confirm that this file don't open correctly in LibreOffice 3.4.4 under Ubuntu
10.04. But the RTF filter is currently rewritten for the next version 3.5 (feb.
2012). ATM, I can't test this file on the master (build in progress) but I
guess this bug may be a duplicate of bug 39337. To be verified.

Best regards. JBF

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42856] Font rendering problem of lower case i following lower case f

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42856

Jean-Baptiste Faure jbf.fa...@orange.fr changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||jbf.fa...@orange.fr
 Ever Confirmed|0   |1

--- Comment #1 from Jean-Baptiste Faure jbf.fa...@orange.fr 2011-11-12 
13:41:54 UTC ---
Hmmm, it seems to be ligatures:
http://en.wikipedia.org/wiki/Typographic_ligature

Please compare to DejaVu and Liberation fonts.

Best regards. JBF

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42843] Text alignment is all messed up

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42843

Jean-Baptiste Faure jbf.fa...@orange.fr changed:

   What|Removed |Added

 CC||jbf.fa...@orange.fr

--- Comment #6 from Jean-Baptiste Faure jbf.fa...@orange.fr 2011-11-12 
13:51:05 PST ---
Not reproducible for me with LibreOffice 3.4.4 under Ubuntu 10.04 FR x86_64.
Font FreeSerif is installed on my PC.

Best regards. JBF

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42861] New: Error with converting the automatic numbering inside a docx. In LibO it starts with 1, but it should start with 0

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42861

 Bug #: 42861
   Summary: Error with converting the automatic numbering inside a
docx. In LibO it starts with 1, but it should start
with 0
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: x86 (IA32)
OS/Version: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: gijs.hillen...@gmail.com


A docx document that I opened, and can't share here, sorry, contains a table
with (automatic) numbered rows. When opened in Microsoft Word these numbers
start with 0 : (0., 0.1, 0.2 and so on).

When opened in LibreOffice 3.4.4 OOO340m1 (Build:402) the number starts with 1 
(1., 1.1, 1.2 and so on).

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 40346] German dictionary doesn't work, update necessarily.

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40346

manj_k courrier.oou.fr@googlemail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID

--- Comment #2 from manj_k courrier.oou.fr@googlemail.com 2011-11-12 
13:58:06 PST ---
Marked 'German dictionary doesn't work, update necessarily.' as INVALID.
CLOSED

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 40346] German dictionary doesn't work, update necessarily.

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40346

manj_k courrier.oou.fr@googlemail.com changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42853] PRINTING complex documents to a CLP-620ND using the default printer language (pdf) results in garbage

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42853

--- Comment #1 from r...@pangolin.org.uk 2011-11-12 14:04:06 PST ---
I spoke too soon about the benefits of changing the printer language to ps.
This change still sometimes creates garbage. Currently printing to file and
then printing the ps file with evince works perfectly with every file I've
tried. I don't understand why this would work and not printing straight from
libreoffice, but there you go.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 39659] Java 1.7.0 not recognised

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39659

Cor Nouws c...@nouenoff.nl changed:

   What|Removed |Added

 CC||c...@nouenoff.nl

--- Comment #26 from Cor Nouws c...@nouenoff.nl 2011-11-12 14:08:50 PST ---
.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42094] Templates are mixed up in template organizer

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42094

manj_k courrier.oou.fr@googlemail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||courrier.oou.fr.mjk@googlem
   ||ail.com
 Ever Confirmed|0   |1

--- Comment #4 from manj_k courrier.oou.fr@googlemail.com 2011-11-12 
14:35:03 UTC ---
Reproducible with LibO-dev 3.5.0 
Build ID: 6b0de40-0bc4ff4-ca7e6f5-9125509-ce71330
[master~2011-11-10_19.57.25...]
on WinXP

E.g.: attached screenshot 'templates_messed_up.png'

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42094] Templates are mixed up in template organizer

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42094

--- Comment #5 from manj_k courrier.oou.fr@googlemail.com 2011-11-12 
14:36:07 PST ---
Created attachment 53468
  -- https://bugs.freedesktop.org/attachment.cgi?id=53468
Screenshot 'templates_messed_up.png'

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 39659] Java 1.7.0 not recognised

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39659

Doug d...@sasktel.net changed:

   What|Removed |Added

   Platform|All |x86 (IA32)
 OS/Version|All |Windows (All)
Version|LibO 3.4.1 release  |LibO 3.4.4 release

--- Comment #27 from Doug d...@sasktel.net 2011-11-12 14:46:52 PST ---
I have had the unfortunate experience of not being able to run LO 3.4.4 without
re-installing Java version 6 on my machine.

I was nosing about in C:\Users\user\AppData\Roaming\LibreOffice\3\user\config
when I saw this file.. javasettings_Windows_x86.xml it is a pregenerated file
that hard wires LO to look for Java6

Copy from file lines 10  11
locationfile:///C:/Program%20Files%20(x86)/Java/jre6/location
version1.6.0_23/version

It appears to me that LO is hardwired to look for J6 can or should this be
changed, so LO is looking for any version of Java, not just a particular
version?

Am I wrong in assuming this?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 39659] Java 1.7.0 not recognised

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39659

Frédéric Buclin lpso...@netscape.net changed:

   What|Removed |Added

   Platform|x86 (IA32)  |All
 OS/Version|Windows (All)   |All
Version|LibO 3.4.4 release  |LibO 3.4.1 release

--- Comment #28 from Frédéric Buclin lpso...@netscape.net 2011-11-12 14:59:36 
UTC ---
Please stop playing with the Platform/OS and version fields all the time. This
bug is reproducible on all platforms, so All/All is definitely the right values
for Platform/OS. Also, this bug has been reported against 3.4.1. It's obviously
not fixed in 3.4.4 or any other new releases, else this bug would be marked
RESOLVED FIXED, so there is no need to touch this field at all either.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42863] New: EDITING: I don't know where to start, really...

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42863

 Bug #: 42863
   Summary: EDITING: I don't know where to start, really...
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Database
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: en...@tiscali.co.uk


Problem description: 

Cannot find the BASIC toolbar... doesn't show in the toolbar list

Current behavior: Closest I can get is TOOLS\MACROS\ORGANISE MACROS\LIBREOFFICE
BASIC\ORGANISER... then EDIT an existing macro. 

Expected behavior: I'd expect the documentation to tell me that current
behaviour I've described above, but it doesn't... frankly it's appallingly
useless; I'm just wading through by trial and error and it's unbelievably
frustrating.

Platform : Windows 7

Browser:  Firefox/7.0.1

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 35091] EDITING / regression: table or view opens in the background (loses focus)

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35091

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

   What|Removed |Added

 CC||lio...@mamane.lu

--- Comment #6 from Lionel Elie Mamane lio...@mamane.lu 2011-11-12 16:01:22 
PST ---
Bug 42612 and this one are *partially* duplicates.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42856] Font rendering problem of lower case i following lower case f

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42856

--- Comment #2 from dand1...@yahoo.com 2011-11-12 19:09:16 PST ---
DejaVu and Liberation fonts render correctly.  I understand now that the
ligatures I saw in Geneva and New York are intentional, but in the monospace
fonts listed in my first post it's still a problem because each character is
supposed to take up the same amount of space.  All other monospace fonts I
checked display correctly.

Thank you for your reply.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42866] New: Fondo de carácter sin relleno cierra aplicación

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42866

 Bug #: 42866
   Summary: Fondo de carácter sin relleno cierra aplicación
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: Other
OS/Version: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: luchot...@gmail.com


AL APLICAR

fondo de carácter
sin relleno

SE CIERRA INESPERADAMENTE LA APLICACIÓN

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42147] FILEOPEN: Opening valid ODF text document crashes Writer

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42147

ibur...@gmail.com changed:

   What|Removed |Added

   Priority|medium  |high
Version|LibO 3.4.3 release  |LibO 3.4.4 release

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42148] EDITING: Inserting a manual page break causes a frame on the next page to disappear

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42148

ibur...@gmail.com changed:

   What|Removed |Added

   Severity|normal  |major
Version|LibO 3.4.3 release  |LibO 3.4.4 release

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42148] EDITING: Inserting a manual page break causes a frame on the next page to disappear

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42148

--- Comment #1 from ibur...@gmail.com 2011-11-12 20:17:27 PST ---
The issue remains to occur on both Windows and Linux versions of LibreOffice
3.4.4 running on both x86 and x86-64 systems.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42858] RTF file not opened properly

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42858

--- Comment #2 from Jean-Baptiste Faure jbf.fa...@orange.fr 2011-11-12 
21:29:22 PST ---
Seems to be correct in the master (LibreOffice 3.5.0 
Build ID: 2cbb64c-533e3c6-ca7e6f5-9125509-ce71330).

@Reporter: Please have a look at my export in pdf of the bugdoc. Is it correct
?

Best regards. JBF

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42858] RTF file not opened properly

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42858

--- Comment #3 from Jean-Baptiste Faure jbf.fa...@orange.fr 2011-11-12 
21:30:40 PST ---
Created attachment 53472
  -- https://bugs.freedesktop.org/attachment.cgi?id=53472
PDF export of bugdoc with master

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42868] New: TDF Site : Installation instructions missing for 3.4

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42868

 Bug #: 42868
   Summary: TDF Site: Installation instructions missing for 3.4
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.0 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: WWW
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: libreoff...@bielefeldundbuss.de


Steps to reproduce:
1. Go to http://www.libreoffice.org/
2. Click Get Help
3. Click Installation
   Expected: find something concerning latest stable version
   Actual: only 3.3 mentioned

Browser: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:7.0.1) Gecko/20110928
Firefox/7.0.1 SeaMonkey/2.4.1

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42868] TDF Site : Installation instructions missing for 3.4

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42868

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Severity|normal  |trivial
 AssignedTo|libreoffice-b...@lists.free |floeff@documentfoundation.o
   |desktop.org |rg
 CC||LibreOffice@bielefeldundbus
   ||s.de
 Ever Confirmed|0   |1
URL||http://www.libreoffice.org/
   ||get-help/installation/

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-11-12 23:18:52 PST ---
Of course it's a minor problem, I doubt that there are important differences,
but at least it should be mentioned that the instructions also are valid for
3.4

@Florian:
Please feel free to reassign (or reset Assignee to default) if it’s not your
area or if provided information is not sufficient. Please set Status to
ASSIGNED if you accept this Bug.

- Reported with Bug Submission Assistant -

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 35830] International build not international enough!

2011-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35830

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

   What|Removed |Added

 Status|NEW |NEEDINFO
 CC||LibreOffice@bielefeldundbus
   ||s.de

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-11-12 23:27:59 PST ---
I do not understand any of the problems except that it's difficult to predict
with what UI language LibO will start when you have installed more than 1 UI
language.

@kyri...@alumni.princeton.edu:
please:
- Write a meaningful Summary
- Attach screenshots with comments if you believe that that might explain the 
  problem better than a text comment. Best way is to insert your screenshots
  into a DRAW document and to add comments that explain what you want to show
- Contribute a step by step instruction containing every key press and every 
  mouse click how to reproduce your problem 
- add information 
  -- what exactly is unexpected
  -- and why do you believe it's unexpected (cite Installation instructions on
http://www.libreoffice.org/, Help or Documentation!)
  -- concerning your PC
  -- everything else crossing your mind after you read linked texts

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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