LO 4.0 build fails in postprocess

2013-01-05 Thread Jean-Baptiste Faure
Hi,

I encounter the same problem as tinderboxes
Linux-x86_10-Release-Configuration
and
Linux-x86_64_11-Release-Configuration

My OS : Ubuntu 12.04 x86-64

What is weird for me is that this issue occurs when I do a complete
build (make clean  make dev-install). During the past days, and even
this morning, I did only make dev-install and that worked well.

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


[Bug 44446] LibreOffice 3.6 most annoying bugs

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

--- Comment #192 from choffardet pierre.choffar...@free.fr ---
May I suggest to add bug 58893 ?
https://bugs.freedesktop.org/show_bug.cgi?id=58893

[crash] filopen master document with linked template modified

because libo crash and it is a regression from libo 3.5.7

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


Re: Doing massive source changes

2013-01-05 Thread Michael Meeks

On Fri, 2013-01-04 at 15:12 +0100, Lubos Lunak wrote:
 The patch specifically is string rtl:: prefix removal. 

 Nice work ! :-)

 - wait until before 4-1 branch-off (or do not do such a big change at all) - 
 this would mean there still would be these changes done in small bits by 
 other people (including the gerrit review overhead)

I'd be concerned about doing this on the the -4-0 branch; it also makes
it hard to see what changed there now we're frozen in a given module
between two git hashes.

Having said that - it is something we really want to do; can we drop
the published easy hack bug in this regard (or just close it) to avoid
the drip of patches there ?

I suggest we do it at a similar time to Norbert's onegit - ie. around
the 4.0.2 release or so - when the cross-branch cherry-picking starts to
reduce in frequency.

Thanks,

Michael.

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

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


[Libreoffice-commits] .: vcl/source

2013-01-05 Thread Libreoffice Gerrit user
 vcl/source/filter/graphicfilter.cxx |4 
 1 file changed, 4 insertions(+)

New commits:
commit 1b65d9ed728bff7123d4385248ce6671c4de8bc0
Author: Tor Lillqvist t...@iki.fi
Date:   Sat Jan 5 13:25:00 2013 +0200

WaE: defined but not used in the DISABLE_EXPORT case

Change-Id: I14e851a74955ff4053026e7fb664759cbf24c86a

diff --git a/vcl/source/filter/graphicfilter.cxx 
b/vcl/source/filter/graphicfilter.cxx
index 3a68acd..bacf6f8 100644
--- a/vcl/source/filter/graphicfilter.cxx
+++ b/vcl/source/filter/graphicfilter.cxx
@@ -107,6 +107,8 @@ public:
 ~ImpFilterOutputStream() {}
 };
 
+#ifndef DISABLE_EXPORT
+
 static sal_Bool DirEntryExists( const INetURLObject rObj )
 {
 sal_Bool bExists = sal_False;
@@ -157,6 +159,8 @@ static void KillDirEntry( const String rMainUrl )
 }
 }
 
+#endif // !DISABLE_EXPORT
+
 // 
 // - Helper functions -
 // 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PATCH] fdo#57950: Remove last chained appends from avmedia

2013-01-05 Thread Marcos Souza (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1548

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/48/1548/1

fdo#57950: Remove last chained appends from avmedia

Change-Id: I0906bf7493828c5923f3243c6849a2eca5f37bb0
Signed-off-by: Marcos Paulo de Souza marcos.souza@gmail.com
---
M avmedia/source/framework/mediaitem.cxx
1 file changed, 1 insertion(+), 5 deletions(-)



diff --git a/avmedia/source/framework/mediaitem.cxx 
b/avmedia/source/framework/mediaitem.cxx
index 2776809..05c29aa 100644
--- a/avmedia/source/framework/mediaitem.cxx
+++ b/avmedia/source/framework/mediaitem.cxx
@@ -470,11 +470,7 @@
 xTransaction-commit();
 }
 
-OUStringBuffer buf(vnd.sun.star.Package:);
-buf.append(media);
-buf.append(sal_Unicode('/'));
-buf.append(filename);
-o_rEmbeddedURL = buf.makeStringAndClear();
+o_rEmbeddedURL = vnd.sun.star.Package: + media + / + filename;
 return true;
 }
 catch (uno::Exception const)

-- 
To view, visit https://gerrit.libreoffice.org/1548
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I0906bf7493828c5923f3243c6849a2eca5f37bb0
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Marcos Souza marcos.souza@gmail.com

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


[PATCH] fdo#57950: Remove some chained appends in chart2 and more

2013-01-05 Thread Marcos Souza (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1549

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/49/1549/1

fdo#57950: Remove some chained appends in chart2 and more

Removed a not needed variable;
Removed some rt:: prefixes

Change-Id: I24a7a0c5adcee17eab4c9d6442b472a5992f261e
Signed-off-by: Marcos Paulo de Souza marcos.souza@gmail.com
---
M chart2/source/controller/accessibility/AccessibleBase.cxx
M chart2/source/controller/dialogs/tp_3D_SceneIllumination.cxx
M chart2/source/tools/DataSeriesHelper.cxx
M chart2/source/tools/MeanValueRegressionCurveCalculator.cxx
4 files changed, 17 insertions(+), 22 deletions(-)



diff --git a/chart2/source/controller/accessibility/AccessibleBase.cxx 
b/chart2/source/controller/accessibility/AccessibleBase.cxx
index 183945b..85907b0 100644
--- a/chart2/source/controller/accessibility/AccessibleBase.cxx
+++ b/chart2/source/controller/accessibility/AccessibleBase.cxx
@@ -583,13 +583,10 @@
 i  0 ||
 static_cast ChildListVectorType::size_type ( i ) = 
m_aChildList.size() )
 {
-OUStringBuffer aBuf;
-aBuf.appendAscii( RTL_CONSTASCII_STRINGPARAM( Index  ));
-aBuf.append( i );
-aBuf.appendAscii( RTL_CONSTASCII_STRINGPARAM(  is invalid for range [ 
0,  ));
-aBuf.append( static_cast sal_Int32 ( m_aChildList.size() - 1 ) );
-aBuf.appendAscii( RTL_CONSTASCII_STRINGPARAM(  ] ) );
-lang::IndexOutOfBoundsException aEx( aBuf.makeStringAndClear(),
+OUString aBuf = Index  + OUString::valueOf( i ) +  is invalid for 
range [ 0,  +
+OUString::valueOf( static_cast sal_Int32 ( 
m_aChildList.size() - 1 ) ) +
+ ];
+lang::IndexOutOfBoundsException aEx( aBuf,
  const_cast ::cppu::OWeakObject * 
(
  static_cast const 
::cppu::OWeakObject * ( this )));
 throw aEx;
diff --git a/chart2/source/controller/dialogs/tp_3D_SceneIllumination.cxx 
b/chart2/source/controller/dialogs/tp_3D_SceneIllumination.cxx
index a567530..6096442 100644
--- a/chart2/source/controller/dialogs/tp_3D_SceneIllumination.cxx
+++ b/chart2/source/controller/dialogs/tp_3D_SceneIllumination.cxx
@@ -149,17 +149,17 @@
 
 namespace
 {
-rtl::OUString lcl_makeColorName( Color rColor )
+OUString lcl_makeColorName( Color rColor )
 {
-rtl::OUStringBuffer aStr(SVX_RESSTR(RID_SVXFLOAT3D_FIX_R));
-aStr.append((sal_Int32)rColor.GetRed());
-aStr.append(' ');
-aStr.append(SVX_RESSTR(RID_SVXFLOAT3D_FIX_G));
-aStr.append((sal_Int32)rColor.GetGreen());
-aStr.append(' ');
-aStr.append(SVX_RESSTR(RID_SVXFLOAT3D_FIX_B));
-aStr.append((sal_Int32)rColor.GetBlue());
-return aStr.makeStringAndClear();
+OUString aStr = SVX_RESSTR(RID_SVXFLOAT3D_FIX_R) +
+OUString::valueOf((sal_Int32)rColor.GetRed()) +
+  +
+SVX_RESSTR(RID_SVXFLOAT3D_FIX_G) +
+OUString::valueOf((sal_Int32)rColor.GetGreen()) +
+  +
+SVX_RESSTR(RID_SVXFLOAT3D_FIX_B) +
+OUString::valueOf((sal_Int32)rColor.GetBlue());
+return aStr;
 }
 void lcl_selectColor( ColorListBox rListBox, const Color rColor )
 {
diff --git a/chart2/source/tools/DataSeriesHelper.cxx 
b/chart2/source/tools/DataSeriesHelper.cxx
index b5fa305..15ea915 100644
--- a/chart2/source/tools/DataSeriesHelper.cxx
+++ b/chart2/source/tools/DataSeriesHelper.cxx
@@ -273,7 +273,6 @@
 Sequence OUString  aSeq( xTextSeq-getTextualData());
 
 const sal_Int32 nMax = aSeq.getLength() - 1;
-OUString aVal;
 OUStringBuffer aBuf;
 
 for( sal_Int32 i = 0; i = nMax; ++i )
diff --git a/chart2/source/tools/MeanValueRegressionCurveCalculator.cxx 
b/chart2/source/tools/MeanValueRegressionCurveCalculator.cxx
index 3caef43..0551cbd 100644
--- a/chart2/source/tools/MeanValueRegressionCurveCalculator.cxx
+++ b/chart2/source/tools/MeanValueRegressionCurveCalculator.cxx
@@ -123,11 +123,10 @@
 const uno::Reference util::XNumberFormatter  xNumFormatter,
 ::sal_Int32 nNumberFormatKey ) const
 {
-OUStringBuffer aBuf( C2U( f(x) =  ));
+OUString aBuf = f(x) =  +
+getFormattedString( xNumFormatter, nNumberFormatKey, 
m_fMeanValue );
 
-aBuf.append( getFormattedString( xNumFormatter, nNumberFormatKey, 
m_fMeanValue ));
-
-return aBuf.makeStringAndClear();
+return aBuf;
 }
 
 } //  namespace chart

-- 
To view, visit https://gerrit.libreoffice.org/1549
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I24a7a0c5adcee17eab4c9d6442b472a5992f261e
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Marcos Souza 

[PATCH] Remove some RTL_* and some rtl:: prefixes in chart2

2013-01-05 Thread Marcos Souza (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1550

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/50/1550/1

Remove some RTL_* and some rtl:: prefixes in chart2

Change-Id: I47889319530d8f03bd7c78e937de55cf380d2d41
Signed-off-by: Marcos Paulo de Souza marcos.souza@gmail.com
---
M chart2/source/controller/accessibility/AccStatisticsObject.cxx
M chart2/source/controller/accessibility/AccessibleBase.cxx
M chart2/source/controller/accessibility/AccessibleChartElement.cxx
M chart2/source/controller/accessibility/AccessibleChartShape.cxx
M chart2/source/controller/chartapiwrapper/AreaWrapper.cxx
M chart2/source/controller/chartapiwrapper/AxisWrapper.cxx
M chart2/source/controller/chartapiwrapper/ChartDataWrapper.cxx
M chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx
M chart2/source/controller/chartapiwrapper/GridWrapper.cxx
M chart2/source/controller/chartapiwrapper/MinMaxLineWrapper.cxx
M chart2/source/controller/chartapiwrapper/WallFloorWrapper.cxx
M chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx
M chart2/source/controller/dialogs/dlg_CreationWizard_UNO.cxx
M chart2/source/controller/dialogs/tp_3D_SceneIllumination.cxx
14 files changed, 101 insertions(+), 135 deletions(-)



diff --git a/chart2/source/controller/accessibility/AccStatisticsObject.cxx 
b/chart2/source/controller/accessibility/AccStatisticsObject.cxx
index b5623de..0d4a1e3 100644
--- a/chart2/source/controller/accessibility/AccStatisticsObject.cxx
+++ b/chart2/source/controller/accessibility/AccStatisticsObject.cxx
@@ -22,8 +22,6 @@
 #include vcl/svapp.hxx
 #include svx/svditer.hxx
 
-using ::rtl::OUString;
-
 namespace chart
 {
 
@@ -47,7 +45,7 @@
 OUString SAL_CALL AccStatisticsObject::getImplementationName()
 throw (::com::sun::star::uno::RuntimeException)
 {
-return OUString( RTL_CONSTASCII_USTRINGPARAM( StatisticsObject ));
+return OUString( StatisticsObject );
 }
 
 }  // namespace chart
diff --git a/chart2/source/controller/accessibility/AccessibleBase.cxx 
b/chart2/source/controller/accessibility/AccessibleBase.cxx
index 85907b0..8671673 100644
--- a/chart2/source/controller/accessibility/AccessibleBase.cxx
+++ b/chart2/source/controller/accessibility/AccessibleBase.cxx
@@ -58,8 +58,6 @@
 using namespace ::com::sun::star::accessibility;
 
 using ::com::sun::star::uno::UNO_QUERY;
-using ::rtl::OUString;
-using ::rtl::OUStringBuffer;
 using ::com::sun::star::uno::Reference;
 using ::osl::MutexGuard;
 using ::osl::ClearableMutexGuard;
@@ -131,9 +129,8 @@
 BroadcastAccEvent( 
AccessibleEventId::VISIBLE_DATA_CHANGED, aEmpty, aEmpty );
 #if OSL_DEBUG_LEVEL  1
 OSL_TRACE(
-::rtl::OUStringToOString(
-OUString( RTL_CONSTASCII_USTRINGPARAM(
-  Visible data event sent by:  )) +
+OUStringToOString(
+OUString( Visible data event sent by:  ) +
 getAccessibleName(),
 RTL_TEXTENCODING_ASCII_US ).getStr() );
 #endif
@@ -150,9 +147,8 @@
 BroadcastAccEvent( AccessibleEventId::STATE_CHANGED, 
aSelected, aEmpty, true );
 #if OSL_DEBUG_LEVEL  1
 OSL_TRACE(
-::rtl::OUStringToOString(
-OUString( RTL_CONSTASCII_USTRINGPARAM(
-  Selection acquired by:  )) +
+OUStringToOString(
+OUString( Selection acquired by:  ) +
 getAccessibleName(),
 RTL_TEXTENCODING_ASCII_US ).getStr() );
 #endif
@@ -169,9 +165,8 @@
 BroadcastAccEvent( AccessibleEventId::STATE_CHANGED, 
aEmpty, aSelected, true );
 #if OSL_DEBUG_LEVEL  1
 OSL_TRACE(
-::rtl::OUStringToOString(
-OUString( RTL_CONSTASCII_USTRINGPARAM(
-  Selection lost by:  )) +
+OUStringToOString(
+OUString( Selection lost by:  ) +
 getAccessibleName(),
 RTL_TEXTENCODING_ASCII_US ).getStr() );
 #endif
@@ -910,7 +905,7 @@
 OUString SAL_CALL AccessibleBase::getImplementationName()
 throw (RuntimeException)
 {
-return OUString( RTL_CONSTASCII_USTRINGPARAM( AccessibleBase ));
+return OUString( AccessibleBase );
 }
 
 sal_Bool SAL_CALL AccessibleBase::supportsService( const OUString ServiceName 
)
@@ -922,10 +917,10 @@
 uno::Sequence OUString  SAL_CALL AccessibleBase::getSupportedServiceNames()
 throw (RuntimeException)
 {
-uno::Sequence ::rtl::OUString  aSeq( 2 );
-::rtl::OUString* pStr = aSeq.getArray();
-pStr[ 0 ] = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( 

[Libreoffice-commits] .: src/docrecord.py src/docstream.py

2013-01-05 Thread Miklos Vajna
 src/docrecord.py |   12 
 src/docstream.py |   13 +++--
 2 files changed, 15 insertions(+), 10 deletions(-)

New commits:
commit 3ffc1fe7dd9132e6bc55a3a26c9aa7c01eaeb7f0
Author: Miklos Vajna vmik...@suse.cz
Date:   Sat Jan 5 16:50:15 2013 +0100

doc: handle files with empty Fib.cswNew (LibreOffice produces these)

diff --git a/src/docrecord.py b/src/docrecord.py
index 71602de..fc041e5 100644
--- a/src/docrecord.py
+++ b/src/docrecord.py
@@ -1413,7 +1413,9 @@ class Dop(DOCDirStream):
 
 def dump(self):
 print 'dop type=Dop offset=%s size=%d bytes' % (self.pos, 
self.size)
-if self.fib.nFibNew == 0x0112:
+if self.fib.nFibNew == 0:
+Dop97(self).dump()
+elif self.fib.nFibNew == 0x0112:
 Dop2007(self).dump()
 else:
 print todo what=Dop.dump() doesn't know how to handle nFibNew 
= %s % hex(self.nFibNew)
@@ -1699,12 +1701,14 @@ class STSHI(DOCDirStream):
 
 def dump(self):
 print 'stshi type=STSHI offset=%d size=%d bytes' % (self.pos, 
self.size)
+posOrig = self.pos
 self.stshif = Stshif(self.bytes, self.mainStream, self.pos)
 self.stshif.dump()
 self.pos += self.stshif.size
-self.printAndSet(ftcBi, self.readuInt16())
-stshiLsd = StshiLsd(self.bytes, self, self.pos)
-stshiLsd.dump()
+if self.pos - posOrig  self.size:
+self.printAndSet(ftcBi, self.readuInt16())
+stshiLsd = StshiLsd(self.bytes, self, self.pos)
+stshiLsd.dump()
 print '/stshi'
 
 class LPStshi(DOCDirStream):
diff --git a/src/docstream.py b/src/docstream.py
index 47f8431..5d4f999 100644
--- a/src/docstream.py
+++ b/src/docstream.py
@@ -76,7 +76,7 @@ class WordDocumentStream(DOCDirStream):
 def __getFibNew(self):
 cswNew = self.getuInt16(pos = self.__getCswNewOffset())
 if cswNew == 0:
-raise Exception()
+return 0
 else:
 return self.getuInt16(pos = self.__getCswNewOffset() + 2)
 
@@ -399,10 +399,11 @@ class WordDocumentStream(DOCDirStream):
 needsHandling = i[0].startswith(lcb) and value != 0 and (not 
i[0] in needsIgnoring)
 self.printAndSet(i[0], value, end = ((not hasHandler) and (not 
needsHandling)), offset = True)
 if hasHandler or needsHandling:
-if hasHandler:
-i[1]()
-else:
-print 'todo what=value is non-zero and unhandled/'
+if needsHandling:
+if hasHandler:
+i[1]()
+else:
+print 'todo what=value is non-zero and unhandled/'
 print '/%s' % i[0]
 
 def handleDop(self):
@@ -598,7 +599,7 @@ class WordDocumentStream(DOCDirStream):
 self.printAndSet(i, self.readuInt32())
 
 def dumpFibRgFcLcb2002(self, name):
-print '%s type=dumpFibRgFcLcb2002 size=744 bytes' % name
+print '%s type=FibRgFcLcb2002 size=744 bytes' % name
 self.__dumpFibRgFcLcb2002()
 print '/%s' % name
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: dictionaries

2013-01-05 Thread Libreoffice Gerrit user
 dictionaries |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 16bac2ba920a2d04ef83e36299aec42ff0ac8c18
Author: Andras Timar ati...@suse.com
Date:   Sat Jan 5 19:29:09 2013 +0100

Updated core
Project: dictionaries  a84489515d2207b1c34646be7d6f532b84a37439

diff --git a/dictionaries b/dictionaries
index f0c914a..a844895 16
--- a/dictionaries
+++ b/dictionaries
@@ -1 +1 @@
-Subproject commit f0c914a43e7e6540300da25c935a77aebb672094
+Subproject commit a84489515d2207b1c34646be7d6f532b84a37439
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'libreoffice-4-0' - dictionaries

2013-01-05 Thread Libreoffice Gerrit user
 dictionaries |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9c6d86699fe67e0888baf038b54faa580de7f9f0
Author: Andras Timar ati...@suse.com
Date:   Sat Jan 5 19:29:09 2013 +0100

Updated core
Project: dictionaries  d4944decdf713cbbfa121f4f15699a7ccb96b3d5

diff --git a/dictionaries b/dictionaries
index 2b37950..d4944dec 16
--- a/dictionaries
+++ b/dictionaries
@@ -1 +1 @@
-Subproject commit 2b37950864e3257acab0c589afcd13fee2a3a441
+Subproject commit d4944decdf713cbbfa121f4f15699a7ccb96b3d5
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: LO 4.0 build fails in postprocess

2013-01-05 Thread Jean-Baptiste Faure
Hi David, all,

Le 05/01/2013 10:49, Jean-Baptiste Faure a écrit :
 Hi,
 
 I encounter the same problem as tinderboxes
 Linux-x86_10-Release-Configuration
 and
 Linux-x86_64_11-Release-Configuration
 
 My OS : Ubuntu 12.04 x86-64
 
 What is weird for me is that this issue occurs when I do a complete
 build (make clean  make dev-install). During the past days, and even
 this morning, I did only make dev-install and that worked well.
 
 Best regards.
 JBF
 

Extracted error message :

 Archive:  /home/jbf/LibO/master/solver/unxlngx6.pro/pck/driver_calc_qtz.zip
 packconfig: packing  ../unxlngx6.pro/bin/uiconfig_fr.zip finished.
 packconfig: ERROR: can't find any lang config files in 
 '/home/jbf/LibO/master/solver/unxlngx6.pro/xml/uiconfig'
 
 FAILURE: packconfig aborted.
 dmake:  Error code 3, while making '../unxlngx6.pro/bin/uiconfig.zip'

So the problem seems to be in one of these commits by D. Tardon which
rework UI packaging and seems to be linked to each other:

https://gerrit.libreoffice.org/gitweb?p=core.git;a=commit;h=afa240330b51fb3607cfa6390aeb4e085cd1c525
https://gerrit.libreoffice.org/gitweb?p=core.git;a=commit;h=7e1c81e53d436407cae7f8ac915650839ec6d069
https://gerrit.libreoffice.org/gitweb?p=core.git;a=commit;h=d250f6f5626056e94409cc0a6d64f5377bacfe84
https://gerrit.libreoffice.org/gitweb?p=core.git;a=commit;h=90c34cdfa0689167d9dee5df6459ed7449b76301
https://gerrit.libreoffice.org/gitweb?p=core.git;a=commit;h=743e16e71c5b623b3545f19a3ff5640c2ba43cd2

I reverted locally these commits starting from
https://gerrit.libreoffice.org/gitweb?p=core.git;a=commit;h=235aaeb596c3701373889535f8fd8e29c92d333e

and my build was successful.

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


[PATCH] Change public variables of class ImplFontAttributes to priva...

2013-01-05 Thread navin patidar (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1551

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/51/1551/1

Change public variables of class ImplFontAttributes to private.

Change-Id: I56ff5d7d2420c334c6fc9e4c552f8b5c4715d93f
---
M vcl/generic/fontmanager/fontconfig.cxx
M vcl/generic/fontmanager/fontsubst.cxx
M vcl/generic/glyphs/gcach_ftyp.cxx
M vcl/generic/glyphs/glyphcache.cxx
M vcl/generic/print/genpspgraphics.cxx
M vcl/inc/outfont.hxx
M vcl/source/gdi/font.cxx
M vcl/source/gdi/outdev3.cxx
M vcl/source/gdi/pdfwriter_impl.cxx
9 files changed, 163 insertions(+), 148 deletions(-)



diff --git a/vcl/generic/fontmanager/fontconfig.cxx 
b/vcl/generic/fontmanager/fontconfig.cxx
index b707b78..0efdbe4 100644
--- a/vcl/generic/fontmanager/fontconfig.cxx
+++ b/vcl/generic/fontmanager/fontconfig.cxx
@@ -946,8 +946,8 @@
FcCharSetDestroy(unicodes);
 }
 
-addtopattern(pPattern, rPattern.meItalic, rPattern.meWeight,
-rPattern.meWidthType, rPattern.mePitch);
+addtopattern(pPattern, rPattern.GetSlant(), rPattern.GetWeight(),
+rPattern.GetWidthType(), rPattern.GetPitch());
 
 // query fontconfig for a substitute
 FcConfigSubstitute(FcConfigGetCurrent(), pPattern, FcMatchPattern);
@@ -1017,13 +1017,13 @@
 {
 int val = 0;
 if (FcResultMatch == FcPatternGetInteger(pSet-fonts[0], 
FC_WEIGHT, 0, val))
-rPattern.meWeight = convertWeight(val);
+rPattern.SetWeight( convertWeight(val) );
 if (FcResultMatch == FcPatternGetInteger(pSet-fonts[0], 
FC_SLANT, 0, val))
-rPattern.meItalic = convertSlant(val);
+rPattern.SetItalic( convertSlant(val) );
 if (FcResultMatch == FcPatternGetInteger(pSet-fonts[0], 
FC_SPACING, 0, val))
-rPattern.mePitch = convertSpacing(val);
+rPattern.SetPitch ( convertSpacing(val) );
 if (FcResultMatch == FcPatternGetInteger(pSet-fonts[0], 
FC_WIDTH, 0, val))
-rPattern.meWidthType = convertWidth(val);
+rPattern.SetWidthType ( convertWidth(val) );
 FcBool bEmbolden;
 if (FcResultMatch == FcPatternGetBool(pSet-fonts[0], 
FC_EMBOLDEN, 0, bEmbolden))
 rPattern.mbEmbolden = bEmbolden;
diff --git a/vcl/generic/fontmanager/fontsubst.cxx 
b/vcl/generic/fontmanager/fontsubst.cxx
index 23ac968..a026ee9 100644
--- a/vcl/generic/fontmanager/fontsubst.cxx
+++ b/vcl/generic/fontmanager/fontsubst.cxx
@@ -132,10 +132,10 @@
 return
   (
 rOrig.maTargetName == rNew.maSearchName 
-rOrig.meWeight == rNew.meWeight 
-rOrig.meItalic == rNew.meItalic 
-rOrig.mePitch == rNew.mePitch 
-rOrig.meWidthType == rNew.meWidthType
+rOrig.GetWeight() == rNew.GetWeight() 
+rOrig.GetSlant() == rNew.GetSlant() 
+rOrig.GetPitch() == rNew.GetPitch() 
+rOrig.GetWidthType() == rNew.GetWidthType()
   );
 }
 
diff --git a/vcl/generic/glyphs/gcach_ftyp.cxx 
b/vcl/generic/glyphs/gcach_ftyp.cxx
index d7e693b..de44e31 100644
--- a/vcl/generic/glyphs/gcach_ftyp.cxx
+++ b/vcl/generic/glyphs/gcach_ftyp.cxx
@@ -788,8 +788,8 @@
 mnLoadFlags |= FT_LOAD_IGNORE_TRANSFORM;
 #endif
 
-mbArtItalic = (rFSD.meItalic != ITALIC_NONE  
pFI-GetFontAttributes().GetSlant() == ITALIC_NONE);
-mbArtBold = (rFSD.meWeight  WEIGHT_MEDIUM  
pFI-GetFontAttributes().GetWeight() = WEIGHT_MEDIUM);
+mbArtItalic = (rFSD.GetSlant() != ITALIC_NONE  
pFI-GetFontAttributes().GetSlant() == ITALIC_NONE);
+mbArtBold = (rFSD.GetWeight()  WEIGHT_MEDIUM  
pFI-GetFontAttributes().GetWeight() = WEIGHT_MEDIUM);
 mbUseGamma = false;
 if( mbArtBold )
 {
@@ -934,7 +934,7 @@
  (rTo.GetFamilyName().EqualsAscii(StarSymbol))
)
 {
-rTo.mbSymbolFlag = true;
+rTo.SetSymbolFlag( true );
 }
 
 if( maSizeFT )
@@ -964,11 +964,11 @@
 // map the panose info from the OS2 table to their VCL counterparts
 switch( pOS2-panose[0] )
 {
-case 1: rTo.meFamily = FAMILY_ROMAN; break;
-case 2: rTo.meFamily = FAMILY_SWISS; break;
-case 3: rTo.meFamily = FAMILY_MODERN; break;
-case 4: rTo.meFamily = FAMILY_SCRIPT; break;
-case 5: rTo.meFamily = FAMILY_DECORATIVE; break;
+case 1: rTo.SetFamilyType( FAMILY_ROMAN ); break;
+case 2: rTo.SetFamilyType( FAMILY_SWISS ); break;
+case 3: rTo.SetFamilyType( FAMILY_MODERN ); break;
+case 4: rTo.SetFamilyType( FAMILY_SCRIPT ); break;
+case 5: rTo.SetFamilyType( FAMILY_DECORATIVE ); break;
 // TODO: is it reasonable to override the attribute with DONTKNOW?
 case 0: // fall through
 

Re: GTK theming: oxygen-gtk support broken

2013-01-05 Thread Ruslan Kabatsayev
Hi Michael,

What about such a simple change, which will let us set LibO version
once and for all GTK theme calls:
---
diff --git a/vcl/unx/gtk/app/gtkdata.cxx b/vcl/unx/gtk/app/gtkdata.cxx
index 14a1949..ec11a8f 100644
--- a/vcl/unx/gtk/app/gtkdata.cxx
+++ b/vcl/unx/gtk/app/gtkdata.cxx
@@ -667,6 +667,7 @@ void GtkData::Init()

 // init gtk/gdk
 gtk_init_check( nParams, pCmdLineAry );
+g_setenv(LibreOffice_Version,4.0.0.0,true);
 gdk_error_trap_push();
 aOrigXIOErrorHandler = XSetIOErrorHandler(XIOErrorHdl);


Of course, 4.0.0.0 should be replaced by some variable, name of
which I currently don't know. But how do you like this idea? It seems
the easiest and most efficient compared to any g_object_set_data()
way.

Regards,
Ruslan

On Thu, Nov 22, 2012 at 4:19 PM, Michael Meeks michael.me...@suse.com wrote:

 On Wed, 2012-11-21 at 19:46 +0400, Ruslan Kabatsayev wrote:
 This doesn't seem to be a very easy thing. Oxygen-gtk gets application
 name via g_get_prgname() and also from PID reading /proc/$PID/cmdline.
 Not very extensible for versions.

 Right :-)

 Yeah, g_object_set_data with LibO version on widget passed to theme
 would be just fine.

 Drat - I added it to each gtk top-level; but now I recall that the
 widgets prolly behave somewhat oddly wrt. their parenting.

 Something like this:
 g_object_set_data(G_OBJECT(widget),LibreOfficeVersion,(gpointer)0xMAJVMINV).
 At least this will work for gtk2, not for gtk3 since no widgets are
 passed there. Though I don't think we really want to explicitely
 support LibO in oxygen-gtk3.

 I have:

 m_pWindow = gtk_widget_new( GTK_TYPE_WINDOW, type, eWinType,
 visible, FALSE, NULL );
 g_object_set_data( G_OBJECT( m_pWindow ), SalFrame, this );

 static char pVersion[16] = ;
 if( pVersion[0] == '\0' )
 g_sprintf( pVersion, %d, SUPD );
 g_object_set_data( G_OBJECT( m_pWindow ), libo-version, pVersion );

 If that helps; if not - a patch to
 vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx would be appreciated :-) [ I
 guess adding a helper and calling it in all those NWFooBaaEnsure methods
 would do it - they look like they could use some re-factoring love
 anyway ].

 Thanks !

 Michael.

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

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


[Libreoffice-commits] .: sal/osl

2013-01-05 Thread Libreoffice Gerrit user
 sal/osl/all/log.cxx |   17 ++---
 1 file changed, 14 insertions(+), 3 deletions(-)

New commits:
commit 60628799633ffde502cb105b98d3f254f93115aa
Author: Tor Lillqvist t...@iki.fi
Date:   Sat Jan 5 22:57:39 2013 +0200

Notice if SAL_LOG is changed while the process is running

It used to call getenv(SAL_LOG) just once and assume it never changed.

Sure, I don't expect that LO code will start changing SAL_LOG back and forth
all the time. But it is definitely useful in our Android (and iOS) apps to 
be
able to call for instance putenv(SAL_LOG=+WARN+INFO) as early as possible,
before explicitly using any LO code.

That used to work earlier, but not any more with the 
getEnvironmentVariable()
thing, as the new logging mechanism gets called while initialising some 
static
globals (i.e. before out app code had even started), and that then caused 
the
one and only call to getenv(SAL_LOG).

This meant that we didn't get any debugging logging from SAL_INFO and 
friends
in the Android app(s) any more.

Change-Id: I932facff4118e5f016c95a4c1461e871184d3fc6

diff --git a/sal/osl/all/log.cxx b/sal/osl/all/log.cxx
index 7e43082..6b98c04 100644
--- a/sal/osl/all/log.cxx
+++ b/sal/osl/all/log.cxx
@@ -56,6 +56,9 @@
 #define OSL_DETAIL_GETPID getpid()
 #endif
 
+#include android/log.h
+#define LOGI(...) ((void)__android_log_print(ANDROID_LOG_INFO, log.cxx, 
__VA_ARGS__))
+
 #ifdef HAVE_SYSLOG_H
 #include syslog.h
 // sal/osl/unx/salinit.cxx::sal_detail_initialize updates this:
@@ -91,15 +94,23 @@ char const * toString(sal_detail_LogLevel level) {
 
 // getenv is not thread safe, so minimize use of result:
 char const * getEnvironmentVariable() {
+static char const * cached_value = NULL;
 char const * p1 = std::getenv(SAL_LOG);
 if (p1 == 0) {
 return +WARN;
 }
-char const * p2 = strdup(p1); // leaked
+char * p2 = strdup(p1); // leaked whenever it has changed
 if (p2 == 0) {
 std::abort(); // cannot do much here
 }
-return p2;
+if (cached_value == NULL) {
+cached_value = p2;
+} else if (strcmp(cached_value, p2) == 0) {
+free(p2);
+} else {
+cached_value = p2;
+}
+return cached_value;
 }
 
 #ifdef HAVE_SYSLOG_H
@@ -122,7 +133,7 @@ bool report(sal_detail_LogLevel level, char const * area) {
 if (level == SAL_DETAIL_LOG_LEVEL_DEBUG)
 return true;
 assert(area != 0);
-static char const * env = getEnvironmentVariable();
+char const * env = getEnvironmentVariable();
 std::size_t areaLen = std::strlen(area);
 enum Sense { POSITIVE = 0, NEGATIVE = 1 };
 std::size_t senseLen[2] = { 0, 1 };
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: sal/osl

2013-01-05 Thread Libreoffice Gerrit user
 sal/osl/all/log.cxx |3 ---
 1 file changed, 3 deletions(-)

New commits:
commit 7f00e84f0a293b8662dd2a7fa57c654ebb37f556
Author: Tor Lillqvist t...@iki.fi
Date:   Sat Jan 5 23:16:22 2013 +0200

Remove accidentally committed logging code

Change-Id: I8dc055336d1577475282198528a57efc60508cef

diff --git a/sal/osl/all/log.cxx b/sal/osl/all/log.cxx
index 6b98c04..2b94f18 100644
--- a/sal/osl/all/log.cxx
+++ b/sal/osl/all/log.cxx
@@ -56,9 +56,6 @@
 #define OSL_DETAIL_GETPID getpid()
 #endif
 
-#include android/log.h
-#define LOGI(...) ((void)__android_log_print(ANDROID_LOG_INFO, log.cxx, 
__VA_ARGS__))
-
 #ifdef HAVE_SYSLOG_H
 #include syslog.h
 // sal/osl/unx/salinit.cxx::sal_detail_initialize updates this:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PATCH] fdo#57950: Remove some chained appends and more in dbaccess

2013-01-05 Thread Marcos Souza (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1552

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/52/1552/1

fdo#57950: Remove some chained appends and more in dbaccess

 - Sanitized some OUStringBuilder, avoiding creating a new one and after
make some appends
 - Removed some ::rtl prefixes
 - Remove RTL_* macro

Change-Id: Ide3d78f20c68774cd4864b82cb8d29784228d1cd
Signed-off-by: Marcos Paulo de Souza marcos.souza@gmail.com
---
M dbaccess/source/core/api/KeySet.cxx
1 file changed, 93 insertions(+), 118 deletions(-)



diff --git a/dbaccess/source/core/api/KeySet.cxx 
b/dbaccess/source/core/api/KeySet.cxx
index 21b897b..3b7ca89 100644
--- a/dbaccess/source/core/api/KeySet.cxx
+++ b/dbaccess/source/core/api/KeySet.cxx
@@ -105,7 +105,7 @@
 
 OKeySet::OKeySet(const connectivity::OSQLTable _xTable,
  const Reference XIndexAccess _xTableKeys,
- const ::rtl::OUString _rUpdateTableName,// this can be 
the alias or the full qualified name
+ const OUString _rUpdateTableName,// this can be the 
alias or the full qualified name
  const Reference XSingleSelectQueryAnalyzer  _xComposer,
  const ORowSetValueVector _aParameterValueForCache,
  sal_Int32 i_nMaxRows,
@@ -149,13 +149,13 @@
 
 SAL_WNODEPRECATED_DECLARATIONS_PUSH
 void OKeySet::findTableColumnsMatching_throw(   const Any i_aTable,
-const ::rtl::OUString 
i_rUpdateTableName,
+const OUString 
i_rUpdateTableName,
 const 
ReferenceXDatabaseMetaData i_xMeta,
 const ReferenceXNameAccess 
i_xQueryColumns,
 
::std::auto_ptrSelectColumnsMetaData o_pKeyColumnNames)
 {
 // first ask the database itself for the best columns which can be used
-Sequence ::rtl::OUString aBestColumnNames;
+Sequence OUString aBestColumnNames;
 ReferenceXNameAccess xKeyColumns  = getPrimaryKeyColumns_throw(i_aTable);
 if ( xKeyColumns.is() )
 aBestColumnNames = xKeyColumns-getElementNames();
@@ -166,14 +166,14 @@
 ReferenceXParametersSupplier xParaSup(m_xComposer,UNO_QUERY);
 ReferenceXIndexAccess xQueryParameters = xParaSup-getParameters();
 const sal_Int32 nParaCount = xQueryParameters-getCount();
-Sequence ::rtl::OUString aParameterColumns(nParaCount);
+Sequence OUString aParameterColumns(nParaCount);
 for(sal_Int32 i = 0; i nParaCount;++i)
 {
 ReferenceXPropertySet 
xPara(xQueryParameters-getByIndex(i),UNO_QUERY_THROW);
 xPara-getPropertyValue(PROPERTY_REALNAME) = aParameterColumns[i];
 }
 
-::rtl::OUString sUpdateTableName( i_rUpdateTableName );
+OUString sUpdateTableName( i_rUpdateTableName );
 if ( sUpdateTableName.isEmpty() )
 {
 OSL_FAIL( OKeySet::findTableColumnsMatching_throw: This is a fallback 
only - it won't work when the table has an alias name. );
@@ -186,7 +186,7 @@
 // by sUpdateTableName. Since the latter is table, but the columns 
only know that they belong to a table
 // named alias, there will be no matching - so getColumnPositions 
wouldn't find anything.
 
-::rtl::OUString sCatalog, sSchema, sTable;
+OUString sCatalog, sSchema, sTable;
 ReferenceXPropertySet xTableProp( i_aTable, UNO_QUERY_THROW );
 xTableProp-getPropertyValue( PROPERTY_CATALOGNAME )= sCatalog;
 xTableProp-getPropertyValue( PROPERTY_SCHEMANAME ) = sSchema;
@@ -200,7 +200,7 @@
 
 if ( o_pKeyColumnNames-empty() )
 {
-::dbtools::throwGenericSQLException( ::rtl::OUString( Could not find 
any key column.  ), *this );
+::dbtools::throwGenericSQLException( OUString( Could not find any key 
column.  ), *this );
 }
 
 for (   SelectColumnsMetaData::const_iterator keyColumn = 
o_pKeyColumnNames-begin();
@@ -221,21 +221,13 @@
 
 namespace
 {
-void appendOneKeyColumnClause( const ::rtl::OUString tblName, const 
::rtl::OUString colName, ::rtl::OUStringBuffer o_buf )
+void appendOneKeyColumnClause( const OUString tblName, const OUString 
colName, OUStringBuffer o_buf )
 {
-static ::rtl::OUString s_sDot(.);
-static ::rtl::OUString s_sParam0( ( 1 = ? AND );
-static ::rtl::OUString s_sParam1( = ? OR 1 = ? AND );
-static ::rtl::OUString s_sParam2( IS NULL ) );
-o_buf.append(s_sParam0);
-o_buf.append(tblName);
-o_buf.append(s_sDot);
-o_buf.append(colName);
-o_buf.append(s_sParam1);
-o_buf.append(tblName);
-o_buf.append(s_sDot);
-o_buf.append(colName);
-o_buf.append(s_sParam2);
+static OUString s_sDot(.);
+static OUString s_sParam0( ( 1 = ? AND );
+static OUString s_sParam1( = 

[Libreoffice-commits] .: compilerplugins/clang

2013-01-05 Thread Libreoffice Gerrit user
 compilerplugins/clang/plugin.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 428a815fbcdab7da1a4a9d47137340bf10893c6e
Author: Luboš Luňák l.lu...@suse.cz
Date:   Sat Jan 5 22:19:10 2013 +0100

I hate arbitrary integer types

Change-Id: I4c8edfc0ee0390d595c43e384bf6e5f595a7b84f

diff --git a/compilerplugins/clang/plugin.cxx b/compilerplugins/clang/plugin.cxx
index d6bc910..11791b1 100644
--- a/compilerplugins/clang/plugin.cxx
+++ b/compilerplugins/clang/plugin.cxx
@@ -239,7 +239,7 @@ class PluginHandler
 {
 string filename( e-getName());
 int modulePos = strlen( OUTDIR ) + strlen( /inc/ );
-int moduleEnd = filename.find( '/', modulePos );
+size_t moduleEnd = filename.find( '/', modulePos );
 if( moduleEnd != string::npos )
 {
 modifyFile = SRCDIR / + filename.substr( 
modulePos, moduleEnd - modulePos )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: 9 commits - src/docrecord.py src/docstream.py

2013-01-05 Thread Miklos Vajna
 src/docrecord.py |  116 ---
 src/docstream.py |   35 +---
 2 files changed, 106 insertions(+), 45 deletions(-)

New commits:
commit 123b9721a4b19f469051696b969542b961261392
Author: Miklos Vajna vmik...@suse.cz
Date:   Sat Jan 5 22:45:47 2013 +0100

ChpxFkp: properly transform non-compressed strings

diff --git a/src/docrecord.py b/src/docrecord.py
index 418d255..52dcfd4 100644
--- a/src/docrecord.py
+++ b/src/docrecord.py
@@ -30,16 +30,25 @@ class FcCompressed(DOCDirStream):
 self.printAndSet(r1, self.r1)
 print '/fcCompressed'
 
-def getTransformedValue(self, start, end, double = True):
+def getTransformedValue(self, start, end, full = True):
 if self.fCompressed:
 offset = self.fc/2
-return 
globals.encodeName(self.mainStream.bytes[offset:offset+end-start])
+if full:
+fro = offset
+to = offset+end-start
+else:
+fro = start
+to = end
+return globals.encodeName(self.mainStream.bytes[fro:to])
 else:
-l = end - start
-if double:
-l = l * 2
-offset = self.fc
-return 
globals.encodeName(self.mainStream.bytes[offset:offset+l].decode('utf-16'), 
lowOnly = True)
+if full:
+offset = self.fc
+fro = offset
+to = offset + (end - start) * 2
+else:
+fro = start
+to = end
+return 
globals.encodeName(self.mainStream.bytes[fro:to].decode('utf-16'), lowOnly = 
True)
 
 @staticmethod
 def getFCTransformedValue(bytes, start, end):
@@ -503,7 +512,7 @@ class ChpxFkp(DOCDirStream):
 start = self.getuInt32(pos = pos)
 end = self.getuInt32(pos = pos + 4)
 print 'rgfc index=%d start=%d end=%d' % (i, start, end)
-print 'transformed value=%s/' % 
FcCompressed.getFCTransformedValue(self.bytes, start, end)
+print 'transformed value=%s/' % 
self.pnFkpChpx.mainStream.retrieveText(start, end)
 pos += 4
 
 # rgbx
diff --git a/src/docstream.py b/src/docstream.py
index f56e27e..5197c40 100644
--- a/src/docstream.py
+++ b/src/docstream.py
@@ -424,9 +424,9 @@ class WordDocumentStream(DOCDirStream):
 def handleLcbClx(self, silent = False):
 offset = self.fcClx
 size = self.lcbClx
-clx = docrecord.Clx(self.doc.getDirectoryStreamByName(1Table).bytes, 
self, offset, size)
+self.clx = 
docrecord.Clx(self.doc.getDirectoryStreamByName(1Table).bytes, self, offset, 
size)
 if not silent:
-clx.dump()
+self.clx.dump()
 
 def handleLcbPlcfBteChpx(self):
 plcBteChpx = docrecord.PlcBteChpx(self)
@@ -624,6 +624,6 @@ class WordDocumentStream(DOCDirStream):
 def retrieveText(self, start, end):
 plcPcd = self.clx.pcdt.plcPcd
 idx = self.__findText(plcPcd, start)
-return plcPcd.aPcd[idx].fc.getTransformedValue(start, end, double = 
False)
+return plcPcd.aPcd[idx].fc.getTransformedValue(start, end, full = 
False)
 
 # vim:set filetype=python shiftwidth=4 softtabstop=4 expandtab:
commit 09f36ce62d691c288795cb35026a3c92cd8df429
Author: Miklos Vajna vmik...@suse.cz
Date:   Sat Jan 5 22:28:44 2013 +0100

PlcPcd: separate parse and dump

diff --git a/src/docrecord.py b/src/docrecord.py
index 25650d6..418d255 100644
--- a/src/docrecord.py
+++ b/src/docrecord.py
@@ -168,24 +168,28 @@ class PlcPcd(DOCDirStream, PLC):
 self.size = size
 self.aCp = []
 self.aPcd = []
+self.ranges = []
 
-def dump(self):
-print 'plcPcd type=PlcPcd offset=%d size=%d bytes' % 
(self.pos, self.size)
 pos = self.pos
 for i in range(self.getElements()):
 # aCp
 start = self.getuInt32(pos = pos)
 end = self.getuInt32(pos = pos + 4)
-print 'aCP index=%d start=%d end=%d' % (i, start, end)
+self.ranges.append((start, end))
 self.aCp.append(start)
 pos += 4
 
 # aPcd
 aPcd = Pcd(self.bytes, self.mainStream, self.getOffset(self.pos, 
i), 8)
-aPcd.dump()
 self.aPcd.append(aPcd)
 
-print 'transformed value=%s/' % 
aPcd.fc.getTransformedValue(start, end)
+def dump(self):
+print 'plcPcd type=PlcPcd offset=%d size=%d bytes' % 
(self.pos, self.size)
+for i in range(self.getElements()):
+start, end = self.ranges[i]
+print 'aCP index=%d start=%d end=%d' % (i, start, end)
+self.aPcd[i].dump()
+print 'transformed value=%s/' % 
self.aPcd[i].fc.getTransformedValue(start, end)
 print '/aCP'
 print '/plcPcd'
 
@@ -703,11 +707,15 @@ class Pcdt(DOCDirStream):
 self.pos = offset
 self.size = size
 
+  

[Libreoffice-commits] .: 2 commits - src/docrecord.py src/docstream.py

2013-01-05 Thread Miklos Vajna
 src/docrecord.py |   12 ++--
 src/docstream.py |4 ++--
 2 files changed, 8 insertions(+), 8 deletions(-)

New commits:
commit f390198dd8bac31f3e91193396ee80478d02f2e5
Author: Miklos Vajna vmik...@suse.cz
Date:   Sat Jan 5 22:58:53 2013 +0100

PapxFkp: properly transform non-compressed strings

diff --git a/src/docrecord.py b/src/docrecord.py
index 127d420..ade2ade 100644
--- a/src/docrecord.py
+++ b/src/docrecord.py
@@ -528,7 +528,7 @@ class ChpxFkp(DOCDirStream):
 class PapxFkp(DOCDirStream):
 The PapxFkp structure maps paragraphs, table rows, and table cells to 
their properties.
 def __init__(self, bytes, mainStream, offset, size):
-DOCDirStream.__init__(self, mainStream.bytes)
+DOCDirStream.__init__(self, mainStream.bytes, mainStream = mainStream)
 self.pos = offset
 self.size = size
 
@@ -541,7 +541,7 @@ class PapxFkp(DOCDirStream):
 start = self.getuInt32(pos = pos)
 end = self.getuInt32(pos = pos + 4)
 print 'rgfc index=%d start=%d end=%d' % (i, start, end)
-print 'transformed value=%s/' % 
FcCompressed.getFCTransformedValue(self.bytes, start, end)
+print 'transformed value=%s/' % 
self.mainStream.retrieveText(start, end)
 pos += 4
 
 # rgbx
commit 447ab07ba158296b99fd57fdab2dbe7b520e7fbf
Author: Miklos Vajna vmik...@suse.cz
Date:   Sat Jan 5 22:55:36 2013 +0100

PlcfSed: properly transform non-compressed strings

diff --git a/src/docrecord.py b/src/docrecord.py
index 52dcfd4..127d420 100644
--- a/src/docrecord.py
+++ b/src/docrecord.py
@@ -30,10 +30,10 @@ class FcCompressed(DOCDirStream):
 self.printAndSet(r1, self.r1)
 print '/fcCompressed'
 
-def getTransformedValue(self, start, end, full = True):
+def getTransformedValue(self, start, end, logical = True):
 if self.fCompressed:
 offset = self.fc/2
-if full:
+if logical:
 fro = offset
 to = offset+end-start
 else:
@@ -41,7 +41,7 @@ class FcCompressed(DOCDirStream):
 to = end
 return globals.encodeName(self.mainStream.bytes[fro:to])
 else:
-if full:
+if logical:
 offset = self.fc
 fro = offset
 to = offset + (end - start) * 2
@@ -258,7 +258,7 @@ class PlcfSed(DOCDirStream, PLC):
 aSed = Sed(self, self.getOffset(self.pos, i))
 aSed.dump()
 
-print 'transformed value=%s/' % 
FcCompressed.getFCTransformedValue(self.mainStream.bytes, offset + start, 
offset + end)
+print 'transformed value=%s/' % 
self.mainStream.retrieveText(start, end, logical = True)
 print '/aCP'
 print '/plcSed'
 
diff --git a/src/docstream.py b/src/docstream.py
index 5197c40..0eee1d2 100644
--- a/src/docstream.py
+++ b/src/docstream.py
@@ -621,9 +621,9 @@ class WordDocumentStream(DOCDirStream):
 index = i
 return index
 
-def retrieveText(self, start, end):
+def retrieveText(self, start, end, logical = False):
 plcPcd = self.clx.pcdt.plcPcd
 idx = self.__findText(plcPcd, start)
-return plcPcd.aPcd[idx].fc.getTransformedValue(start, end, full = 
False)
+return plcPcd.aPcd[idx].fc.getTransformedValue(start, end, logical = 
logical)
 
 # vim:set filetype=python shiftwidth=4 softtabstop=4 expandtab:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: test/doc

2013-01-05 Thread Miklos Vajna
 test/doc/nofibnew.doc |binary
 test/doc/test.py  |8 
 2 files changed, 8 insertions(+)

New commits:
commit ffbe5f25c9bd4c978c766f144487c53fc745eecf
Author: Miklos Vajna vmik...@suse.cz
Date:   Sat Jan 5 23:02:09 2013 +0100

doc: add testcase when Fib.cswNew is missing

diff --git a/test/doc/nofibnew.doc b/test/doc/nofibnew.doc
new file mode 100644
index 000..fe37a3c
Binary files /dev/null and b/test/doc/nofibnew.doc differ
diff --git a/test/doc/test.py b/test/doc/test.py
index 43c7f16..edd39c3 100755
--- a/test/doc/test.py
+++ b/test/doc/test.py
@@ -120,6 +120,14 @@ class Test(unittest.TestCase):
 # Zoom is 42%
 self.assertEqual('0x2a', 
dopBase.findall('pctWwdSaved')[0].attrib['value'])
 
+def test_nofibnew(self):
+self.dump('nofibnew')
+
+runs = self.getRuns()
+self.assertEqual(1, len(runs))
+
+self.assertEqual('Hello world!', 
runs[0].findall('transformed')[0].attrib['value'])
+
 if __name__ == '__main__':
 unittest.main()
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PATCH] fdo#54165: Allow localized shortcut names on Windows

2013-01-05 Thread via Code Review
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1553

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/53/1553/1

fdo#54165: Allow localized shortcut names on Windows

Change-Id: I2de53cd8d888ecf819271e96f8eb2cc4a90e554d
---
M vcl/Library_vcl.mk
M vcl/inc/win/salframe.h
A vcl/win/source/window/keynames.cxx
M vcl/win/source/window/salframe.cxx
4 files changed, 145 insertions(+), 13 deletions(-)



diff --git a/vcl/Library_vcl.mk b/vcl/Library_vcl.mk
index c3898bc..ed843bf 100644
--- a/vcl/Library_vcl.mk
+++ b/vcl/Library_vcl.mk
@@ -641,6 +641,7 @@
 vcl/win/source/gdi/winlayout \
 vcl/win/source/gdi/wntgdi \
 vcl/win/source/window/salframe \
+vcl/win/source/window/keynames \
 vcl/win/source/window/salmenu \
 vcl/win/source/window/salobj \
 ))
diff --git a/vcl/inc/win/salframe.h b/vcl/inc/win/salframe.h
index 4c0f63c..54e10bd 100644
--- a/vcl/inc/win/salframe.h
+++ b/vcl/inc/win/salframe.h
@@ -137,6 +137,13 @@
 
 void ImplSalGetWorkArea( HWND hWnd, RECT *pRect, const RECT *pParentRect );
 
+// get foreign key names
+namespace vcl_sal {
+rtl::OUString getKeysReplacementName(
+rtl::OUString pLang,
+LONG nSymbol );
+}
+
 #endif // _SV_SALFRAME_H
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/vcl/win/source/window/keynames.cxx 
b/vcl/win/source/window/keynames.cxx
new file mode 100755
index 000..153fc07
--- /dev/null
+++ b/vcl/win/source/window/keynames.cxx
@@ -0,0 +1,112 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the License); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+ */
+
+#include string.h
+#include rtl/ustring.hxx
+#include sal/macros.h
+
+#include windows.h
+
+#define KEY_ESC 0x1
+#define KEY_BACK0xE
+#define KEY_ENTER   0x1C
+#define KEY_SPACEBAR0x39
+#define KEY_HOME0x147
+#define KEY_UP  0x148
+#define KEY_PAGEUP  0x149
+#define KEY_LEFT0x14B
+#define KEY_RIGHT   0x14D
+#define KEY_END 0x14F
+#define KEY_DOWN0x150
+#define KEY_PAGEDOWN0x151
+#define KEY_INSERT  0x152
+#define KEY_DELETE  0x153
+#define KEY_CONTROL 0x21D
+#define KEY_SHIFT   0x22A
+#define KEY_ALT 0x238
+
+
+namespace vcl_sal {
+
+struct KeysNameReplacement
+{
+LONGaSymbol;
+const char* pName;
+};
+
+struct KeyboardReplacements
+{
+const char* pLangName;
+const KeysNameReplacement*  pReplacements;
+int nReplacements;
+};
+
+// 
+//
+// CAUTION CAUTION CAUTION
+// every string value in the replacements tables must be in UTF8
+// be careful with your editor !
+//
+// 
+
+static const struct KeysNameReplacement aImplReplacements_Catalan[] =
+{
+{ KEY_BACK, Retrocés },
+{ KEY_ENTER, Retorn },
+{ KEY_SPACEBAR, Espai },
+{ KEY_HOME, Inici },
+{ KEY_UP, Amunt },
+{ KEY_PAGEUP, Re Pàg },
+{ KEY_LEFT, Esquerra },
+{ KEY_RIGHT, Dreta },
+{ KEY_END, Fi },
+{ KEY_DOWN, Avall },
+{ KEY_PAGEDOWN, Av Pàg },
+{ KEY_INSERT, Ins },
+{ KEY_DELETE, Supr },
+{ KEY_SHIFT, Maj },
+};
+
+static const struct KeyboardReplacements aKeyboards[] =
+{
+{ ca, aImplReplacements_Catalan, 
SAL_N_ELEMENTS(aImplReplacements_Catalan) },
+};
+
+// translate keycodes, used within the displayed menu shortcuts
+rtl::OUString getKeysReplacementName( rtl::OUString pLang, LONG nSymbol )
+{
+for( unsigned int n = 0; n  SAL_N_ELEMENTS(aKeyboards); n++ )
+{
+if( pLang.equalsAscii( aKeyboards[n].pLangName ) )
+{
+const struct KeysNameReplacement* pRepl = 
aKeyboards[n].pReplacements;
+for( int m = aKeyboards[n].nReplacements ; m ; )
+{
+   

[PATCH] Change in core[libreoffice-4-0]: fdo#54165: Allow localized shortcut names on Windows

2013-01-05 Thread via Code Review
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1554

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/54/1554/1

fdo#54165: Allow localized shortcut names on Windows

Change-Id: I2de53cd8d888ecf819271e96f8eb2cc4a90e554d
---
M vcl/Library_vcl.mk
M vcl/inc/win/salframe.h
A vcl/win/source/window/keynames.cxx
M vcl/win/source/window/salframe.cxx
4 files changed, 145 insertions(+), 13 deletions(-)



diff --git a/vcl/Library_vcl.mk b/vcl/Library_vcl.mk
index c3898bc..ed843bf 100644
--- a/vcl/Library_vcl.mk
+++ b/vcl/Library_vcl.mk
@@ -641,6 +641,7 @@
 vcl/win/source/gdi/winlayout \
 vcl/win/source/gdi/wntgdi \
 vcl/win/source/window/salframe \
+vcl/win/source/window/keynames \
 vcl/win/source/window/salmenu \
 vcl/win/source/window/salobj \
 ))
diff --git a/vcl/inc/win/salframe.h b/vcl/inc/win/salframe.h
index 4c0f63c..54e10bd 100644
--- a/vcl/inc/win/salframe.h
+++ b/vcl/inc/win/salframe.h
@@ -137,6 +137,13 @@
 
 void ImplSalGetWorkArea( HWND hWnd, RECT *pRect, const RECT *pParentRect );
 
+// get foreign key names
+namespace vcl_sal {
+rtl::OUString getKeysReplacementName(
+rtl::OUString pLang,
+LONG nSymbol );
+}
+
 #endif // _SV_SALFRAME_H
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/vcl/win/source/window/keynames.cxx 
b/vcl/win/source/window/keynames.cxx
new file mode 100755
index 000..153fc07
--- /dev/null
+++ b/vcl/win/source/window/keynames.cxx
@@ -0,0 +1,112 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the License); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+ */
+
+#include string.h
+#include rtl/ustring.hxx
+#include sal/macros.h
+
+#include windows.h
+
+#define KEY_ESC 0x1
+#define KEY_BACK0xE
+#define KEY_ENTER   0x1C
+#define KEY_SPACEBAR0x39
+#define KEY_HOME0x147
+#define KEY_UP  0x148
+#define KEY_PAGEUP  0x149
+#define KEY_LEFT0x14B
+#define KEY_RIGHT   0x14D
+#define KEY_END 0x14F
+#define KEY_DOWN0x150
+#define KEY_PAGEDOWN0x151
+#define KEY_INSERT  0x152
+#define KEY_DELETE  0x153
+#define KEY_CONTROL 0x21D
+#define KEY_SHIFT   0x22A
+#define KEY_ALT 0x238
+
+
+namespace vcl_sal {
+
+struct KeysNameReplacement
+{
+LONGaSymbol;
+const char* pName;
+};
+
+struct KeyboardReplacements
+{
+const char* pLangName;
+const KeysNameReplacement*  pReplacements;
+int nReplacements;
+};
+
+// 
+//
+// CAUTION CAUTION CAUTION
+// every string value in the replacements tables must be in UTF8
+// be careful with your editor !
+//
+// 
+
+static const struct KeysNameReplacement aImplReplacements_Catalan[] =
+{
+{ KEY_BACK, Retrocés },
+{ KEY_ENTER, Retorn },
+{ KEY_SPACEBAR, Espai },
+{ KEY_HOME, Inici },
+{ KEY_UP, Amunt },
+{ KEY_PAGEUP, Re Pàg },
+{ KEY_LEFT, Esquerra },
+{ KEY_RIGHT, Dreta },
+{ KEY_END, Fi },
+{ KEY_DOWN, Avall },
+{ KEY_PAGEDOWN, Av Pàg },
+{ KEY_INSERT, Ins },
+{ KEY_DELETE, Supr },
+{ KEY_SHIFT, Maj },
+};
+
+static const struct KeyboardReplacements aKeyboards[] =
+{
+{ ca, aImplReplacements_Catalan, 
SAL_N_ELEMENTS(aImplReplacements_Catalan) },
+};
+
+// translate keycodes, used within the displayed menu shortcuts
+rtl::OUString getKeysReplacementName( rtl::OUString pLang, LONG nSymbol )
+{
+for( unsigned int n = 0; n  SAL_N_ELEMENTS(aKeyboards); n++ )
+{
+if( pLang.equalsAscii( aKeyboards[n].pLangName ) )
+{
+const struct KeysNameReplacement* pRepl = 
aKeyboards[n].pReplacements;
+for( int m = aKeyboards[n].nReplacements ; m ; )
+{
+   

Re: [Libreoffice-qa] French Bug

2013-01-05 Thread Sophie Gautier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi Rob,
On 05/01/2013 11:03, Rob Snelders wrote:
 Hi All,
 
 Can somebody triage this French Bug as I don't know French. 
 https://bugs.freedesktop.org/show_bug.cgi?id=58974

Rainer has managed it. When you find such a bug in French, could you
send it to the q...@fr.libreoffice.org list? our team will take care of it.
Thanks
Kind regards
Sophie

- -- 
Sophie Gautier sophie.gaut...@documentfoundation.org
Tel:+33683901545
Membership  Certification Committee Member - Co-founder
The Document Foundation
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://www.enigmail.net/

iQEcBAEBAgAGBQJQ6AMxAAoJEJRaC8j6sATNa2AH/25XDe3lTXf7WjPNlPP07bHc
ipfwzMZDmw1eiO15XWa7/0CpnnqFhr4kmHGuMtvHn6YsYI9c0jHaoiQuG+aW9Z3P
2WAUKX6j0tbYJxjMvNfe1wc2fLXb5orcHyCnt9dYICBFbAgb9AFQtG3b4qYYnGSY
3ZVICvfqGEm6jUN5uvwaWrHLrreYOyE9lcaezotimcMFsC7YOPiSBg/AGONY0WU3
HhLqYzkElRt1td1yn8MJ6wH9XjVLK5K8WM4es96f8gDJnun2bxNEBaXL2fvlLNr+
A3EkYMl6eTvbFKfSwylRY9/aJw2ELzDksxZKiSEZG6jhiAwb2jhzUs/xqGWLKhg=
=znU3
-END PGP SIGNATURE-
___
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] French Bug

2013-01-05 Thread Rob Snelders
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi Sophie,

Maybe it's good to add that to the wiki:
https://wiki.documentfoundation.org/BugTriage

Op 05-01-13 11:40, Sophie Gautier schreef:
 Hi Rob, On 05/01/2013 11:03, Rob Snelders wrote:
 Hi All,
 
 Can somebody triage this French Bug as I don't know French. 
 https://bugs.freedesktop.org/show_bug.cgi?id=58974
 
 Rainer has managed it. When you find such a bug in French, could
 you send it to the q...@fr.libreoffice.org list? our team will take
 care of it. Thanks Kind regards Sophie
 
 ___ 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/
 
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with undefined - http://www.enigmail.net/

iQEcBAEBAgAGBQJQ6AZeAAoJEGs78UIq7mKyxhwIAKKArGcwgZiXT3nxCj5DqeGJ
91Gg7ZmQWJoGqCNLVkpK7xAzTcN46R3pYJQpFUnam1yio4Wxnhwn7nEYyDc+eTcO
FHrPgU5I1GSNKs+RH8yLfnuydtRm+2bYzKYvT/b+XY0PDhpHTlzyabukFdljhffO
S+xCCqL/vWzuyJty8k7ITFXwH8kP23Y9ucbIkgwUYKvhewWMoeFu0lZqPpjEmv5x
CMSbRwqCYktKWYC40ZXOB+1/OC3rdeGvhjXYnsLYmMphlfNCl/ML4Hf+lhBMpZ2D
inNum6p5TiSPbM6i8HDZBoYYJ9evxQEkPAMwwxefFnaF8Zvid/lFrYqheMr2oPs=
=NilK
-END PGP SIGNATURE-
___
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] French Bug

2013-01-05 Thread Rainer Bielefeld

Rob Snelders schrieb:


Maybe it's good to add that to the wiki:


Hi Rob,

On Rapporter un problème sous LibreOffice 
https://wiki.documentfoundation.org/BugReport/fr we already have the 
recommendation to ask for assistance at us...@fr.libreoffice.org.


I think requests to q...@fr.libreoffice.org should be reserved to qa team, 
because subscription is required (?) and I believe it might cause too 
much traffic on that list if every users asks for help there. I will do 
so in future if I can't understand a report written in French language.


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


[Libreoffice-bugs] [Bug 59046] New: FILESAVE as .pptx (MSO2007) destroys self constructed shapes

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

  Priority: medium
Bug ID: 59046
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FILESAVE as .pptx (MSO2007) destroys self constructed
shapes
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: libreoff...@bielefeldundbuss.de
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.1.0.0.alpha0+ Master
 Component: Presentation
   Product: LibreOffice

Created attachment 72528
  -- https://bugs.freedesktop.org/attachment.cgi?id=72528action=edit
Test Kit

source_LO410.odp in attachment contains shapes created following Help
Combining Objects and Constructing Shapes, what will become cruelly damaged
when you save the document as .pptx. I did not test save as OOXML, but I
believe the result will be the same.

When you save the document as target_LO410_MSO2007.pptx, the combined
shapes will get some damages, what you can see when you close the document and
reopen it.
Every time you newly save the reopened .pptx (with an additional _MSO2007 in
file name) the result you see when close/reopen differs from the result before.

I do not think that this bug is a FILEOPEN problem. I compared view of created
.pptx in LibO (also shown in PDF Exports) and MS PPT Viewer, no obvious
differences!

target_LO410_MSO2007.pptx  can not be opened with PPT Viewer because of Bug
59019 - FILESAVE .odp with non primitive custom shape produces invalid .pptx

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


[Libreoffice-bugs] [Bug 49265] LibO will not launch, but CRASH with installed Report Builder

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

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

   What|Removed |Added

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

--- Comment #3 from Julien Nabet serval2...@yahoo.fr ---
Rainer: according to your last comment it seems ok now.
If I misinterpreted it, don't hesitate to reopen of course :-)

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


[Libreoffice-bugs] [Bug 59046] FILESAVE as .pptx (MSO2007) destroys self constructed shapes

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

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

   What|Removed |Added

 OS|All |Windows (All)
 CC||LibreOffice@bielefeldundbus
   ||s.de

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
I did my tests with server installation of  4.1.0.0.alpha0+ (Build ID:
6a393297ce6d99bbc4edefbf01ab9c5c6f0eff8) TinderBox: Win-x86@6, Branch:master,
Time: 2013-01-04_01:06:01  - ENGLISH UI / German Locale  on German WIN7 Home
Premium (64bit) with LO41 Masters User Profile.

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


[Libreoffice-bugs] [Bug 59046] FILESAVE as .pptx (MSO2007) destroys self constructed shapes

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

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

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 48225] crashes when opening an ODT - FILEOPEN

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

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

   What|Removed |Added

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

--- Comment #2 from Julien Nabet serval2...@yahoo.fr ---
No feedback since months, put it as INVALID.

Bert: don't hesitate to reopen this tracker if you can still reproduce this
with a newer LO version (last one is 3.6.4). In this case, it could help a lot
if you could answer to my previous comment.

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


[Libreoffice-bugs] [Bug 47683] Crash

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

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

   What|Removed |Added

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

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

lenwoodley: don't hesitate to reopen this tracker if you can still reproduce
this with a newer LO version (last one is 3.6.4). In this case, try to provide
extra information needed.

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


[Libreoffice-bugs] [Bug 47682] Immediate unrecoverable crash

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

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

   What|Removed |Added

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

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

Phillip: don't hesitate to reopen this tracker if you can still reproduce this
with a newer LO version (last one is 3.6.4).

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


[Libreoffice-bugs] [Bug 59047] New: Password demanded for editing .doc file that isn't locked

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

  Priority: medium
Bug ID: 59047
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Password demanded for editing .doc file that isn't
locked
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: hermannmuck...@gmail.com
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 3.6.4.3 release
 Component: Writer
   Product: LibreOffice

Created attachment 72529
  -- https://bugs.freedesktop.org/attachment.cgi?id=72529action=edit
Downloaded application form from the European Medicines Agency

The appended file, 01_Eudralink_Application_Form_110620.doc can be edited
(i.e.: filled in) w/o a hitch in MS Word 2003, but Writer opens it as read-only
and demands a password when editing is attempted. Copying the text into a new
Writer file makes it editable but destroys pulldown menus in the line Company
Position.

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


[Libreoffice-bugs] [Bug 47874] : No icons

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

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

   What|Removed |Added

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

--- Comment #2 from Julien Nabet serval2...@yahoo.fr ---
No feedback since months, put it as INVALID.

Maher: don't hesitate to reopen this tracker if you can still reproduce this
with a newer LO version (last one is 3.6.4).
Extra information needed in this case:
- do you have lo-menubar installed? If yes could you give a try after having
uninstalled it?
- did you try with a brand new LO profile (see
https://wiki.documentfoundation.org/UserProfile)?
- what's your Ubuntu version?
- did you give a try to LibreOffice ppa or LO packages from Libreoffice
website?

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


[Libreoffice-bugs] [Bug 59045] Shortcut (accelerators, mnemonic) doesn't match between English version and Japanese version.

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

KIRIHARA Masaharu mki_o...@yahoo.co.jp changed:

   What|Removed |Added

Version|3.6.4.3 release |4.0.0.0.beta2

--- Comment #1 from KIRIHARA Masaharu mki_o...@yahoo.co.jp ---
I've checked the shortcut of 4.0.0.0 beta2 is also unmatched in English and
Japanese user interface languages.

(I found the problem of unshown shortcut keys in Japanese user interface
language was solved in 4.0.0.0 beta2.)

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


[Libreoffice-bugs] [Bug 47401] crash when pressing f9

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

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

   What|Removed |Added

 Status|NEW |NEEDINFO
 CC||serval2...@yahoo.fr

--- Comment #2 from Julien Nabet serval2...@yahoo.fr ---
Jos: do you reproduce this with a newer LO version? (last one is 3.6.4)
If yes could you indicate your env?

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


[Libreoffice-bugs] [Bug 58990] EXTENSIONSWEBSITE: Enhanced localization selector required

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

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

   What|Removed |Added

 CC||gautier.sop...@gmail.com,
   ||tima...@gmail.com

--- Comment #4 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
@Rob:
There is no real problem, only some things I do not understand (or what are
unexpected)
So this one is more or less only still active because there might appear
unexpected (or difficult to handle) aspects aus you found and what might have
influence at many places (Website, LibO UI, LibO Localization, ...).

This pt-br problem is the same for Chinese (simplified), Chinese
(traditional) at international sites, and may be additional ones as we see in
Extension repository (it-it, es-es, hu-hu). We urgently need some unification
here.

@Sophie, @András:
Can you help with some advice?

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


[Libreoffice-bugs] [Bug 47095] EDITING

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

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

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME

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

Hans: don't hesitate to reopen this tracker if you can still reproduce this
with a newer LO version (last one is 3.6.4). On LibreOffice ppa, I don't think
you'll find 3.6.4 but you'll find 3.6 version. 3.3. is really too old.

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


[Libreoffice-bugs] [Bug 47112] : LOdev 3.5.2rc0+ and JRE 7.4

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

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

   What|Removed |Added

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

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

bugmenot: don't hesitate to reopen this tracker if you can still reproduce this
with a newer LO version (last one is 3.6.4) and last Java 7 updates.
It could help too to rename your LO directory profile (see
https://wiki.documentfoundation.org/UserProfile)

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


[Libreoffice-bugs] [Bug 46727] FILESAVE: Problem saving .doc files

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

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

   What|Removed |Added

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

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

adiazubierna: don't hesitate to reopen this tracker if you can still reproduce
this with a newer LO version (last one is 3.6.4).
In this case, try to reproduce after having renamed your LO directory profile
(see https://wiki.documentfoundation.org/UserProfile)
In this case, attach an example doc file so we can try to debug.

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


[Libreoffice-bugs] [Bug 52170] An extremely slow search/browse table in embedded HSQLDB

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

--- Comment #31 from Lionel Elie Mamane lio...@mamane.lu ---
(In reply to comment #29)

 just by the way. one thing came up while testing with forms:
 setting the list length within the preload-trigger did not work (within LO
 4):
 Sub PreOpenList( event as Object )
event.Source.FetchSize = 300
 End Sub

Could you please put this in a new bug, attach a reproduction example and put
me in CC? Thanks.

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


[Libreoffice-bugs] [Bug 46681] : crash in click on filewizards and need del+crl+alt and end task

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

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

   What|Removed |Added

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

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

dawoodiran: don't hesitate to reopen this tracker if you can still reproduce
this with a newer LO version (last one is 3.6.4).

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


[Libreoffice-bugs] [Bug 46334] LibreOffice crash copying a label on an edited basic dialog

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

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

   What|Removed |Added

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

--- Comment #2 from Julien Nabet serval2...@yahoo.fr ---
No feedback since months, put it as WFM since Cor doesn't reproduce this.

Péter: don't hesitate to reopen this tracker if you can still reproduce this
with a newer LO version (last one is 3.6.4).

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


[Libreoffice-bugs] [Bug 46280] CRASH when look for updates

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

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

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #4 from Julien Nabet serval2...@yahoo.fr ---
Alejandro: any update with last LO version 3.6.4?

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


[Libreoffice-bugs] [Bug 59048] New: Crash when undoing a conversion text to table

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

  Priority: medium
Bug ID: 59048
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Crash when undoing a conversion text to table
  Severity: critical
Classification: Unclassified
OS: Linux (All)
  Reporter: jbf.fa...@sud-ouest.org
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 4.0.0.0.beta2
 Component: Writer
   Product: LibreOffice

Created attachment 72531
  -- https://bugs.freedesktop.org/attachment.cgi?id=72531action=edit
bugdoc with particular text

Steps to reproduce:
1/ open the attached text document
2/ select the text
3/ menu Table  Convert  Text to table  OK
4/ click on undo button == CRASH (segmentation fault)

Note 1: LO does not crash if I do the same with only a text like:
A b
c d
e f
g h
So the crash has something to do with the text itself.

Note2: my bugdoc has been anonymized but the original file crashes LO too.

Found with Version 4.0.0.0.beta2+ (Build ID:
235aaeb596c3701373889535f8fd8e29c92d333) build under Ubuntu 12.04 x86-64

Best regards. JBF

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


[Libreoffice-bugs] [Bug 59048] Crash when undoing a conversion text to table

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

--- Comment #1 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
No crash with Version 4.0.0.0.beta2 (Build ID:
4104d660979c57e1160b5135634f732918460a0)
So will do a complete build (make clean  make dev-install) before to set
status to NEW.

Best regards. JBF

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


[Libreoffice-bugs] [Bug 59048] Crash when undoing a conversion text to table

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

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

   What|Removed |Added

  Attachment #72531|text/plain  |application/vnd.oasis.opend
  mime type||ocument.text

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


[Libreoffice-bugs] [Bug 59048] Crash when undoing a conversion text to table

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

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

   What|Removed |Added

 CC||LibreOffice@bielefeldundbus
   ||s.de

--- Comment #2 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
NOT reproducible with 
* parallel installation of  LOdev  4.0.0.0.beta2  - GERMAN UI / German Locale
[Build ID: 4104d660979c57e1160b5135634f732918460a0)]  {tinderbox: @6, pull
time 2012-12-20} on German WIN7 Home Premium (64bit) with separate /4 User
Profile for Master Branch.
* server installation of 4.1.0.0.alpha0+ (Build ID:
6a393297ce6d99bbc4edefbf01ab9c5c6f0eff8) TinderBox: Win-x86@6, Branch:master,
Time: 2013-01-04_01:06:01  - ENGLISH UI / German Locale  on German WIN7 Home
Premium (64bit) with LO41 Masters User Profile

Branch only or Linux only?

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


[Libreoffice-bugs] [Bug 59049] New: Не правильное отображение нумерации страниц в оглавлении

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

  Priority: medium
Bug ID: 59049
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Не правильное отображение нумерации страниц в
оглавлении
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: si...@mail.ru
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 3.5.4 release
 Component: Writer
   Product: LibreOffice

Created attachment 72532
  -- https://bugs.freedesktop.org/attachment.cgi?id=72532action=edit
Пример файла с неправильной нумерацией.

Если в колонтитул вствить автоматическую нумерацию страниц, а в свойствах
нумерации поставить смещение, например, что бы нумерация первой страницы
начиналась с цыфры 2. После всех выше указанных операций, вставить
автоматически составленное оглавление, то в нем первая страница будет под
номером один (1), хотя мы ставлили смещение на оду страницу.

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


[Libreoffice-bugs] [Bug 59048] Crash when undoing a conversion text to table

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

--- Comment #3 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
NOT reproducible with server installation of LOdev  4.0.0.0.beta2+  - ENGLISH
UI / German Locale  [Build ID: 6738ae52bd075dc6478dedfeddc60d1c25cffcb)] 
{tinderbox: Win-x86@6, pull time 2013-01-04 23:41:48} on German WIN7 Home
Premium (64bit) with own separate User Profile

So Linux only?

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


[Libreoffice-bugs] [Bug 58974] VIEWING: .pps

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

--- Comment #2 from pierre.lo...@orange.fr ---
Désolé, je ne pare que Français!
Ci-joints le fichier (mais tous les .pps ont le même problème sous 
Windows 8) et une capture d'écran
Cordialement. Pierre LOYON



J'ai annulé l'envoi du .pps (10,1 Mo) car l'envoi a été refusé:

This is the mail system at host mwinf5d06.orange.fr.
I'm sorry to have to inform you that your message could not
be delivered to one or more recipients.

   The mail system

bugzilla-dae...@freedesktop.org: host freedesktop.org[131.252.210.177] said:
552
5.3.4 Message size exceeds fixed limit

Un fichier plus petit est correctement ouvert par LibreOffiche!



Le 04/01/2013 17:41, bugzilla-dae...@freedesktop.org a écrit :
 Rob Snelders mailto:programm...@ertai.nl changed bug 58974 
 https://bugs.freedesktop.org/show_bug.cgi?id=58974
 What  Removed Added
 StatusUNCONFIRMED NEEDINFO
 CCprogramm...@ertai.nl
 Ever confirmed1

 *Comment # 1 https://bugs.freedesktop.org/show_bug.cgi?id=58974#c1 
 on bug 58974 https://bugs.freedesktop.org/show_bug.cgi?id=58974 from 
 Rob Snelders mailto:programm...@ertai.nl *
 Thank you for reporting this problem.

 Can you tell us what didn't work as .pps-files do work here. Can you maybe
 attach the pps-file that didn't work so I can test here.
 
 You are receiving this mail because:

   * You reported the bug.


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


[Libreoffice-bugs] [Bug 46334] LibreOffice crash copying a label on an edited basic dialog

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

--- Comment #3 from Cor Nouws c...@nouenoff.nl ---
@Julian - thanks for closing - I just fail to pay enough attention.
And it looks as if I make duplicates too. See this one: bug 51269 ;-)

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


[Libreoffice-bugs] [Bug 52170] An extremely slow search/browse table in embedded HSQLDB

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

--- Comment #32 from rob...@familiegrosskopf.de ---
Where do you get this new version. When I have had a look at
http://dev-builds.libreoffice.org/daily/libreoffice-4-0/Linux-x86_10-Release-Configuration/
the newest version is from 29.12.2012
- and this version is as slow as written before in my system. (Linux 32bit rpm)

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


[Libreoffice-bugs] [Bug 58266] calc looses/breaks diagrams/charts + fails @ cut and paste of diagrams EDITING VIEWING

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

--- Comment #3 from Hanspeter Schwob schwobhanspe...@gmail.com ---
I use Libre Office 3.5.7.2, the newest version for Win7/German. The error
happens since last update on 2012-11-18.

In my case, some of the diagrams have disappeared, when I save and reopen the
file. The file contains 16 sheets, nearly all with one diagram. Some diagrams
are still there, some shifted to the upper left corner, some disappear
completely. It might be, all diagrams created before the last update remain,
but the behaviour is not clear. Older files show the diagrams, until the
diagram is moved or changed.

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


[Libreoffice-bugs] [Bug 58974] VIEWING: .pps

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

Rob Snelders programm...@ertai.nl changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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


[Libreoffice-bugs] [Bug 58858] FILESAVE: can't save .xls test file as .ods after deleting cells

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

--- Comment #7 from vlb v...@xs4all.nl ---
 2 - delete a random cell in any sheet (issue appears in all of them, not
 just 2nd or 3rd)

By this file it isn't necesarry delete a random cell in any sheet. When the
file is save as .ods it give the error message.

In other file (*.ods) what i have give the error message after i delete cell in
any sheet.

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


[Libreoffice-bugs] [Bug 59048] Crash when undoing a conversion text to table

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

--- Comment #4 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
(In reply to comment #3)
 NOT reproducible with server installation of LOdev  4.0.0.0.beta2+  -
 ENGLISH UI / German Locale  [Build ID:
 6738ae52bd075dc6478dedfeddc60d1c25cffcb)]  {tinderbox: Win-x86@6, pull time
 2013-01-04 23:41:48} on German WIN7 Home Premium (64bit) with own separate
 User Profile
 
 So Linux only?

Perhaps, or only an artifact of partial build. ATM complete build fails as for
tinderboxes Linux-x86_10-Release-Configuration and
Linux-x86_64_11-Release-Configuration
http://tinderbox.libreoffice.org/libreoffice-4-0/status.html

Best regards. JBF

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


[Libreoffice-bugs] [Bug 58974] VIEWING: .pps

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

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

   What|Removed |Added

  Attachment #72533|0   |1
is obsolete||

--- Comment #5 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
Comment on attachment 72533
  -- https://bugs.freedesktop.org/attachment.cgi?id=72533
attachment-14555-0.html

Not a useful attachment!

@pierre.lo...@orange.fr:
Il vous faut démander pur aide us...@fr.libreoffice.org liste
Votre rapport est incompréhensible.

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


[Libreoffice-bugs] [Bug 58974] VIEWING: .pps

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

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

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||LibreOffice@bielefeldundbus
   ||s.de
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 58980] Bad font rendering for farsi

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

Rob Snelders programm...@ertai.nl changed:

   What|Removed |Added

  Attachment #72445|0   |1
is obsolete||

--- Comment #1 from Rob Snelders programm...@ertai.nl ---
Created attachment 72537
  -- https://bugs.freedesktop.org/attachment.cgi?id=72537action=edit
Persian font renderring difference between libreoffice (3.6.*) and (3.5.*)

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


[Libreoffice-bugs] [Bug 58980] Bad font rendering for farsi

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

Rob Snelders programm...@ertai.nl changed:

   What|Removed |Added

   Severity|normal  |major
   Keywords||l10n

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


[Libreoffice-bugs] [Bug 44446] LibreOffice 3.6 most annoying bugs

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

--- Comment #192 from choffardet pierre.choffar...@free.fr ---
May I suggest to add bug 58893 ?
https://bugs.freedesktop.org/show_bug.cgi?id=58893

[crash] filopen master document with linked template modified

because libo crash and it is a regression from libo 3.5.7

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


[Libreoffice-bugs] [Bug 59051] New: VIEWING: 32 bit PNG doesn't render at all

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

  Priority: medium
Bug ID: 59051
  Keywords: regression
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: VIEWING: 32 bit PNG doesn't render at all
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: gessos.p...@yahoo.gr
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.0.0.0.beta2
 Component: Writer
   Product: LibreOffice

RGBA PNG files doesn't appear in LibreOffice. But exported PDF has the image
correct rendered.

Steps to reproduce:
Insert a RGBA PNG image to a writer document.

Only the holder of image will appear.
Operating System: Windows 7
Version: 4.0.0.0.beta2
Last worked in: 3.6.4.3 release

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


[Libreoffice-bugs] [Bug 58266] calc looses/breaks diagrams/charts + fails @ cut and paste of diagrams EDITING VIEWING

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

--- Comment #4 from Hanspeter Schwob schwobhanspe...@gmail.com ---
Changed now to version 3.6.4 (LibO_3.6.4_Win_x86_install_multi.msi). (Search
for updates said I had installed actual version. Found newer version on
bugzilla!)

But problem still exists. One way, which is reproducible:
- copy one sheet with diagram to new document. This document shows diagram.
- Save this new document.
- Open new document: The diagram disappeared.

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


[Libreoffice-bugs] [Bug 58980] Bad font rendering for farsi

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

Eman AMini eman.am...@gmail.com changed:

   What|Removed |Added

   Severity|major   |normal

--- Comment #2 from Eman AMini eman.am...@gmail.com ---
This is the picture (on dropbox) of Persian font renderring difference between
libreoffice (3.6.*) and (3.5.*):
http://dl.dropbox.com/u/12670505/temp/Persian-Font-rendering.jpeg

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


[Libreoffice-bugs] [Bug 58954] command 'n'

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

--- Comment #6 from Teo matteomelo...@gmail.com ---
hi Mariosv, i try to change num in n, but don't function, (num is the 
same command in italian versione, n is for english version), for me is a 
bug, becouse don't function.

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


[Libreoffice-bugs] [Bug 58858] FILESAVE: can't save .xls test file as .ods after deleting cells

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

--- Comment #8 from vlb v...@xs4all.nl ---
Created attachment 72538
  -- https://bugs.freedesktop.org/attachment.cgi?id=72538action=edit
test file .ods where i can't delete cell and save

By this test file .ods when i delete cell and save i get the error message too.

steps:
1) open file Issue save ligger i.ods
2) delete cell B2 in sheet tabel 10
3) save file
4) error message

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


[Libreoffice-bugs] [Bug 47401] crash when pressing f9

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

--- Comment #3 from Jos van den Oever j...@vandenoever.info ---
With LibreOffice 3.6.4 only writer en-US installed, I cannot reproduce the bug
that LO is crashed when pressing F9.

However, the paragraph that should be hidden is not hidden.
When pressing F9 and then saving, the attribute
  text:condition=ooow:true
is changed to
  text:condition=ooow:0
.
When the attribute is
  text:condition=ooow:1
, pressing F9 and saving leads to
  text:condition=ooow:0
.
The ODF specification says about text:condition on text:section:
===
The text:condition attribute specifies the condition under which a section is
hidden. The condition is encoded as a string. If the value of text:display is
condition, the text:condition attribute shall be present.
===

So there is an error in the evaluation of the contents of text:condition in
text:section.

Should this problem stay in this bug or become a new bug?

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


[Libreoffice-bugs] [Bug 58995] [a11y] Accessibility - Java SE JRE 1.7 Java Accessibility API not fully supporting LibreOffice UNO Accessibility API via JAB bridge

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

--- Comment #4 from Michael Meeks michael.me...@novell.com ---
Thanks so much for the detailed testing and bug reports here guys ! :-)
It is interesting that this is isolated to a change in the JDK version; no
doubt the Java - UNO bridge for a11y is doing some suspect things - prolly
we'll need a Java expert here too.

http://cgit.freedesktop.org/libreoffice/core/tree/accessibility/bridge/org/openoffice/java/accessibility/Component.java

searching for Focus - seems to suggest that we -should- emit lots of Focus
events (as before) - which we do by queueing them:

case AccessibleStateType.FOCUSED:
getEventQueue().postEvent(new java.awt.event.FocusEvent(
Component.this, enable ?
java.awt.event.FocusEvent.FOCUS_GAINED :
java.awt.event.FocusEvent.FOCUS_LOST));
break;

It would be interesting to instrument the client too - clearly if the events
arrive in JDKold but not in JDKnew something is going wrong with that flow.
We seem to push to:

bridge/org/openoffice/java/accessibility/Component.java-return
java.awt.Toolkit.getDefaultToolkit().getSystemEventQueue();

in each case. Is there any reason that in new JDK's that doesn't work ? :-)

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


[Libreoffice-bugs] [Bug 58893] [CRASH] FILEOPEN : master document with linked template modified

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

--- Comment #4 from choffardet pierre.choffar...@free.fr ---
Same crash under libo 3.6.0 (XP)

I've build several virtual machines with libo 3.3, 3.4, 3.5

No problem with 3.3 to 3.5 (XP)

So the problem is between 3.5.7 and 3.6.0

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


[Libreoffice-bugs] [Bug 58098] FILEOPEN: Serious Performance Problem in LibreOffice Calc 3.6.3(and above) in regard to previous versions and OOo.org

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

--- Comment #8 from Zeki Bildirici kobz...@gmail.com ---
My laptop has:
AMD Turion X2 2,2 Ghz, 2GB ram, NVIDIA GeForce 8200M integrated 256 Mb graphics
memory.

My friends laptop is older than mine, a HP pavillion dv5000, which has:
AMD Turion 64, 2.00 GHz, 1GB (2x512) DDR2 RAM, ATI Radeon XPRESS 200M, 128MB.
He uses Windows verison.

My firend says, LibreOffice 3.5.7 has almot %50 better performance than
LibreOffice 3.6.4 while opening an working on this file.

Also i tried it on my wifes's laptop which is quite powerful Dell Inspiron 1545
Intel Core 2 Duo, 2 Ghz, 4 GB ram, Ati Radeon HD 4300 

Opening and updating the cells is fine with the Dell laptop, takes about 1 min.
However it is impossible to browse in the sheet and change to another sheet in
more than 5 minutes, every click makes Calc Not Responding and clicking to
another sheet tab does not apply and gots stacked in the first sheet.

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


[Libreoffice-bugs] [Bug 59048] Crash when undoing a conversion text to table

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

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #5 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
I reproduce the crash with Version 4.0.0.0.beta2+ (Build ID:
1d7287f8d7984eae98a577f60a8bc0a740fc5e9) which corresponds to the last daily
build for Linux-x86_10-Release-Configuration tinderbox.

So seems to be Linux only and perhaps x86-64 only.

Best regards. JBF

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


[Libreoffice-bugs] [Bug 47401] crash when pressing f9

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

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

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #4 from Julien Nabet serval2...@yahoo.fr ---
Jos: thank you for your feedback, I put this one to WFM. Since it's another
bug, it's better you submit a new bug
(https://www.libreoffice.org/get-help/bug/)

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


[Libreoffice-bugs] [Bug 58940] CONFIGURATION: Can not change paths used by LibreOffice

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

--- Comment #23 from Martin martin.mcdow...@gmail.com ---
Same thing happening to me. Fresh install of Ubuntu 12.10 with LO Version
3.6.2.2 (Build ID: 360m1(Build:2))

ls -l ~/.config/libreoffice/3/user
total 88
drwxrwxr-x 2 natasa natasa  4096 Jan  4 12:34 autocorr
drwxrwxr-x 2 natasa natasa  4096 Jan  4 12:34 autotext
drwxrwxr-x 2 natasa natasa  4096 Jan  5 12:36 backup
drwxrwxr-x 3 natasa natasa  4096 Jan  5 12:36 basic
drwxrwxr-x 3 natasa natasa  4096 Jan  4 12:34 config
drwxrwxr-x 3 natasa natasa  4096 Jan  4 12:34 database
drwxrwxr-x 4 natasa natasa  4096 Jan  4 12:34 extensions
drwxrwxr-x 2 natasa natasa  4096 Jan  4 12:34 gallery
drwxrwxr-x 4 natasa natasa  4096 Jan  4 12:34 psprint
-rw--- 1 natasa natasa 28477 Jan  5 12:36 registrymodifications.xcu
drwxrwxr-x 2 natasa natasa  4096 Jan  4 12:34 Scripts
drwxrwxr-x 2 natasa natasa  4096 Jan  4 12:34 store
drwxrwxr-x 2 natasa natasa  4096 Jan  4 12:34 temp
drwxrwxr-x 2 natasa natasa  4096 Jan  4 12:34 template
drwxrwxr-x 3 natasa natasa  4096 Jan  4 12:34 uno_packages
drwxrwxr-x 2 natasa natasa  4096 Jan  4 12:34 wordbook


Running LO from CLI produced the following output:

javaldx: Could not find a Java Runtime Environment! 
Please ensure that a JVM and the package libreoffice-java-common
is installed.
If it is already installed then try removing
~/.libreoffice/3/user/config/javasettings_Linux_*.xml
Warning: failed to read path from javaldx
Fontconfig warning: /usr/lib/libreoffice/share/fonts/truetype/fc_local.conf,
line 13: Having multiple family in alias isn't supported and may not works
as expected

By the way there seem to be some grammar issues here. This wasn't my typo ;-)

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


[Libreoffice-bugs] [Bug 59025] : Add-On 1 toolbar is displayed unexpectedly

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

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||jbf.fa...@sud-ouest.org,
   ||nem...@numbertext.org
 Ever confirmed|0   |1

--- Comment #1 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
This toolbar seems to be the LibreLogo toolbar.

Laszlo: something for you ?

Best regards. JBF

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


[Libreoffice-bugs] [Bug 59052] Macros: Runtime error

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

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

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID
 CC||LibreOffice@bielefeldundbus
   ||s.de

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
NOT reproducible as a general BASIC problem with LibreOffice 3.6.4.3 German
UI/ German Locale [Build-ID: 2ef5aff] {pull date 2012-11-28} on German WIN7
Home Premium (64bit). I am using lots of LibO Baisc macros and never saw such a
problem.

Not a valid bug report, without a test kit (document containing the macro what
works with an other LibO or OOo version) we can't do anything here.

@Stefano Bolognini:
Thank you for your feedback! Unfortunately you are wrong here, this is the Bug
tracking system, not a helpdesk! You can get assistance on
http://ask.libreoffice.org/questions/
or on the public users mailing list us...@libreoffice.org, a mailing list
from http://www.documentfoundation.org/contribution/#lists or
http://wiki.documentfoundation.org/Local_Mailing_Lists 

Please feel free to reopen this Bug if discussion with other users leaded to an
assessment that we have a LibO bug and a clear and comprehensible description
of the problem due to  http://wiki.documentfoundation.org/BugReport.

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


[Libreoffice-bugs] [Bug 58893] [CRASH] FILEOPEN : master document with linked template modified

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

choffardet pierre.choffar...@free.fr changed:

   What|Removed |Added

Version|3.6.3.2 release |3.6.0.3 rc

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


[Libreoffice-bugs] [Bug 59053] New: VIEWING: math formulas (equations) in .docx files are not viewed properly

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

  Priority: medium
Bug ID: 59053
  Keywords: regression
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: VIEWING: math formulas (equations) in .docx files are
not viewed properly
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: k...@o2.pl
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.0.0.0.beta2
 Component: Writer
   Product: LibreOffice

Problem description: 
The equations are ugly. The frame of equation seems to be shrank.
It is easy to repair, It's enough to double-click on formula and it gets a
proper shape and visualisation, but in 3.6.x the same documents opened well.
(in 3.4.x it was worse then it is now, there were invisible)

Steps to reproduce:
1. open a .docx file with math formula made in MS Word
2. watch the formula/equation


Current behavior:
Looks bad

Expected behavior:
Should look good

Operating System: Debian
Version: 4.0.0.0.beta2
Last worked in: 3.6.4.3 release

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


[Libreoffice-bugs] [Bug 58858] FILESAVE: can't save .xls test file as .ods after deleting cells

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

--- Comment #9 from tommy27 ba...@quipo.it ---
please upload your test files with correct extension...
it seems that you uploaded all those .ods and .xls as .html

anyway, I've noticed that if you delete all other sheets and leave the tabel
10 sheet alone, then you may delete any cell you want (even B2) and can save
the file with no issues.

maybe there's some link between multiple sheets that doesn't allow you to
delete cells... does this make any sense to you?

tested on Version 4.0.0.0.beta2+ (Build ID:
65deb382fb2bc45192f3b9224bf0fca00955ee7)

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


[Libreoffice-bugs] [Bug 58893] [CRASH] FILEOPEN : master document with linked template modified

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

choffardet pierre.choffar...@free.fr changed:

   What|Removed |Added

Version|3.6.0.3 rc  |3.6.0.0.beta3

--- Comment #5 from choffardet pierre.choffar...@free.fr ---
Further investigation

crash with libo 3.6.0b3

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


[Libreoffice-bugs] [Bug 59054] New: Form load event not firing (probably same cause as 42796)

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

  Priority: medium
Bug ID: 59054
CC: lio...@mamane.lu
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Form load event not firing (probably same cause as
42796)
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: reto_die...@bluewin.ch
  Hardware: x86 (IA32)
Status: UNCONFIRMED
   Version: 4.0.0.0.beta2
 Component: Database
   Product: LibreOffice

Created attachment 72541
  -- https://bugs.freedesktop.org/attachment.cgi?id=72541action=edit
one table, one form with one event trigger (as bug description)

Form load event is not called.
Everything is running fine with version 3.6.
See attached example db.

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


[Libreoffice-bugs] [Bug 59054] Form load event not firing (probably same cause as 42796)

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

Reto Diener reto_die...@bluewin.ch changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Reto Diener reto_die...@bluewin.ch ---
Meanwhile I made some more tests. 
It seems there is not one event-makro called.
At least none of these (additionally):
- button (on form): left mouse-click
- field: left mouse-click
.
regards
reto

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


[Libreoffice-bugs] [Bug 58858] FILESAVE: can't save .xls test file as .ods after deleting cells

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

--- Comment #10 from vlb v...@xs4all.nl ---
(In reply to comment #9)
 please upload your test files with correct extension...
 it seems that you uploaded all those .ods and .xls as .html
There is no way to upload where i can say it is .xls or .ods, only automtic
detect.


 anyway, I've noticed that if you delete all other sheets and leave the
 tabel 10 sheet alone, then you may delete any cell you want (even B2) and
 can save the file with no issues.
I know, but i don't know where this is come from.

 
 maybe there's some link between multiple sheets that doesn't allow you to
 delete cells... does this make any sense to you?
 
 tested on Version 4.0.0.0.beta2+ (Build ID:
 65deb382fb2bc45192f3b9224bf0fca00955ee7)
I didn't think this is the issue, because then there must by a message by
delete cell. By the way in 3.6.4 is there no problem when i delete cell.

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


[Libreoffice-bugs] [Bug 59055] New: : Font names in English, not target language (regression)

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

  Priority: medium
Bug ID: 59055
  Keywords: regression
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: : Font names in English, not target language
(regression)
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: webofht-libreofficebugs...@yahoo.com.hk
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.0.0.0.beta2
 Component: UI
   Product: LibreOffice

Created attachment 72542
  -- https://bugs.freedesktop.org/attachment.cgi?id=72542action=edit
Font names not in target language

Problem description: Font names are shown in the target language in LibreOffice
version  3.6.3.2 (Build ID: 58f22d5). In LibreOffice version 4.0.0.0.beta2
(Build ID: 4104d660979c57e1160b5135634f732918460a0), Chinese font names are not
shown in Chinese. Japanese font names are not shown in Japanese. This is a
software regression.

Steps to reproduce:
1. The operating system used is Linux debian 2.6.32-5-686 #1 SMP Sun Sep 23
09:49:36 UTC 2012 i686 GNU/Linux.
2. Start LibreOffice Writer or Calc.
3. Have a look at the font names.
4. Chinese font names are in English. Japanese font names are in English.

Current behavior: The font names are not shown in the target language.

Expected behavior: The font names should be shown in the target language.

I am submitting the screenshots.

Regards,
C. H. D.

Operating System: Debian
Version: 4.0.0.0.beta2
Last worked in: 3.6.3.2 release

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


[Libreoffice-bugs] [Bug 59056] New: Second graph on any page will be displayed on the last page.

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

  Priority: medium
Bug ID: 59056
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Second graph on any page will be displayed on the last
page.
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: hac...@scarlet-jade.com
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 4.0.0.0.beta2
 Component: Spreadsheet
   Product: LibreOffice

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


[Libreoffice-bugs] [Bug 58893] [CRASH] FILEOPEN : master document with linked template modified

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

choffardet pierre.choffar...@free.fr changed:

   What|Removed |Added

Version|3.6.0.0.beta3   |3.6.0.0.beta1

--- Comment #6 from choffardet pierre.choffar...@free.fr ---
crash with libo 3.6.0b1

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


[Libreoffice-bugs] [Bug 59056] Second graph on any page will be displayed on the last page.

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

--- Comment #1 from Graham P Davis hac...@scarlet-jade.com ---
Created attachment 72543
  -- https://bugs.freedesktop.org/attachment.cgi?id=72543action=edit
Multiple-sheet calc document. Final page (12-month) contains two charts moved
from other pages.

Calc documents with multiple pages and more than one graph per page will, when
reopened, have only one graph per page; all subsequent graphs will be displayed
on the final page. 

This example was originally created with earlier versions of LibreOffice up to
and including 3.5. After editing with 4.0 b-2, graphs were found to have been
moved when the document was opened for a second time.

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


[Libreoffice-bugs] [Bug 59056] Second graph on any page will be displayed on the last page.

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

--- Comment #2 from Graham P Davis hac...@scarlet-jade.com ---
Created attachment 72544
  -- https://bugs.freedesktop.org/attachment.cgi?id=72544action=edit
Earlier version of spreadsheets that have not been opened with 4.0 b-2.

This attachment shows how the original document looked before 4.0 shifted the
graphs.

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


[Libreoffice-bugs] [Bug 58954] command 'n'

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

--- Comment #7 from mariosv mari...@miguelangel.mobi ---
Ciao Teo,

Yes it is the same function, one in English the other in Italian.

But reading the help in both versions seems the change is intended. I guess to
avoid capture an error propagation with a non analyse error function.

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


[Libreoffice-bugs] [Bug 46246] crash/deadlock/conflict problems with old stdlibs

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

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

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #8 from Julien Nabet serval2...@yahoo.fr ---
Michael: any update about this?

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


[Libreoffice-bugs] [Bug 53320] LibreOffice 3.6 will not open on OS X 10.7.5 and Mountain Lion with unidentified developer error - GateKeeper

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

Emir Sarı emir_s...@msn.com changed:

   What|Removed |Added

Summary|LibreOffice 3.6 will not|LibreOffice 3.6 will not
   |open on Mountain Lion with  |open on OS X 10.7.5 and
   |unidentified developer|Mountain Lion with
   |error - GateKeeper  |unidentified developer
   ||error - GateKeeper

--- Comment #11 from Emir Sarı emir_s...@msn.com ---
Is there any info about when this will be resolved? Assuming many people will
try 4.0 release, which is a big release, it is essential to get rid of this
problem. 

And since this is a security issue, I think it is essential to get rid of all
issues which arises questions in mind. As Roman stated above, many people would
be suspicious about this error, therefore uninstall LibreOffice.

I'd like to remind that since OS X 10.7.5 also got the Gatekeeper feature, the
user base involving this problem has extended to cover the 10.7.5 users as
well. ;)

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


[Libreoffice-bugs] [Bug 58266] calc looses/breaks diagrams/charts + fails @ cut and paste of diagrams EDITING VIEWING

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

--- Comment #5 from Hanspeter Schwob schwobhanspe...@gmail.com ---
Additional Info to comment 3  4

I installed Apache-Open-Office 4.1 (actual version) and the problem is gone.
Also other problems with the diagrams are gone, also some nice features. I am
sad to leave LibreOffice, but I just cannot live with these problems.

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


[Libreoffice-bugs] [Bug 46407] Upgraded to most recent release and it won't open.

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

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

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME

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

Uli: don't hesitate to reopen this tracker if you can still reproduce this with
a newer LO version (last one is 3.6.4).

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


[Libreoffice-bugs] [Bug 46440] SIGSEGV in Application::IsInMain()

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

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

   What|Removed |Added

 Status|NEW |NEEDINFO
 CC||serval2...@yahoo.fr

--- Comment #4 from Julien Nabet serval2...@yahoo.fr ---
Christopher: Any update about this?
BTW after having reread description I don't know what you meant in your
previous comment.

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


[Libreoffice-bugs] [Bug 59058] New: FILEOPEN: Very short and all encompassing MRU - makes it almost useless.

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

  Priority: medium
Bug ID: 59058
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FILEOPEN: Very short and all encompassing MRU - makes
it almost useless.
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: manik_chand_patn...@yahoo.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: unspecified
 Component: UI
   Product: LibreOffice

Problem description: 

Libreoffice is a office suite and happens to be a frequently used one. There
are several components like Writer, Presentation, Calc etc. The Current MRU of
10 documents is not at all enough for all kind of documents recently used.

My use is limited to only three components Writer, Calc and Presentation and
still I find the MRU almost useless as I shuffle among documents, sheets,
slides. When I open Writer, MRU features items of type spreadsheet and
presentation and that's not expected.

A better MRU system can do great.

If you want to retain the solidarity look of the office suite as every
component does have all features, provide MRU for all in a hierarchical fashion
or still better a full screen MRU selector.

Steps to reproduce:
1. Open and close documents 
2. MRU will fill up
3. Older entries of all kinds will get replaced.

Current behavior:

Expected behavior:


Operating System: All
Version: unspecified

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


[Libreoffice-bugs] [Bug 56195] UI: Missing buttons in Format Text dialog

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

Joren De Cuyper joren.libreoff...@telenet.be changed:

   What|Removed |Added

 Whiteboard|bibisectrequest,|bibisected40,
   |(target:4.0.0.0.beta1)  |(target:4.0.0.0.beta1)
 CC||joren.libreoffice@telenet.b
   ||e

--- Comment #4 from Joren De Cuyper joren.libreoff...@telenet.be ---
(In reply to comment #3)
 Result from `git bisect good` ...
...
 HTH,
 Terry.

Because you already did a bibisect - change whiteboard 'bibisectrequest' to
'bibisected40'

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


[Libreoffice-bugs] [Bug 59053] VIEWING: math formulas (equations) in .docx files are not viewed properly

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

--- Comment #1 from ape os...@yandex.ru ---
It seems to me this is the duplicate of bug 58949.

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


[Libreoffice-bugs] [Bug 59059] New: text:condition on text:section is misinterpreted

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

  Priority: medium
Bug ID: 59059
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: text:condition on text:section is misinterpreted
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: j...@vandenoever.info
  Hardware: Other
Status: UNCONFIRMED
   Version: 3.6.4.3 release
 Component: Writer
   Product: LibreOffice

When a document has a section like this:
  text:section text:name=Section0 text:condition=ooow:true
text:display=condition

the section should be hidden. The ODF specification says about text:condition
on text:section:
===
The text:condition attribute specifies the condition under which a section is
hidden. The condition is encoded as a string. If the value of text:display is
condition, the text:condition attribute shall be present.
===

The expression ooow:true is specific to LibreOffice and not standardized. On
loading a document with the above fragment, the section is shown and not
hidden. Also pressing F9 to evaluate the text:condition expression does not
hide the paragraph. (Since this evaluation is cheap, it would be preferable
that pressing F9 is not needed).

This document demonstrates the issue and has the above fragment:
https://bugs.freedesktop.org/attachment.cgi?id=58546

When saving the document after pressing F9, ooow:true is replaced by ooow:0.
This is wrong and this is the bug. Also, when the initial string is ooow:1, it
evaluates to ooow:0 when pressing F9.

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


[Libreoffice-bugs] [Bug 59060] New: Wrong version number in AppUp

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

  Priority: medium
Bug ID: 59060
CC: webs...@global.libreoffice.org
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Wrong version number in AppUp
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: joren.libreoff...@telenet.be
  Hardware: Other
Status: NEW
   Version: unspecified
 Component: WWW
   Product: LibreOffice

How to reproduce (Windows OS):

* Go to https://www.libreoffice.org/download/
* Scroll down and look at the bottom of 'Packages'
* Text: AppUp install 130 MB Install LibreOffice 3.5.4 via the Intel AppUp
Center.

Current behavior: version is 3.5.4
Expected behavior: version is 3.6.4

How to reproduce (non-windows):

* go to
https://www.libreoffice.org/download/?type=win-x86lang=deversion=3.6.4 or a
windows version of another language
* See steps above

Thanks to 'Incarus' at IRC-channel #Libreoffice-dev

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


[Libreoffice-bugs] [Bug 58327] Paste Special cells As RTF from Calc immediately undone

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

Joren De Cuyper joren.libreoff...@telenet.be changed:

   What|Removed |Added

 Whiteboard|rtf_filter, bibisectrequest |rtf_filter, bibisected40

--- Comment #14 from Joren De Cuyper joren.libreoff...@telenet.be ---
Because Terrence Enger already bibisect it - whiteboard status to
'bibisected40'

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


  1   2   >