[Libreoffice-commits] core.git: Changes to 'feature/SfxShell_refcount'

2013-11-30 Thread Lionel Elie Mamane
New branch 'feature/SfxShell_refcount' available with the following commits:
commit e2039aa87abb11f6e971f4ff5e8b07c2fd9c0aed
Author: Lionel Elie Mamane lio...@mamane.lu
Date:   Sat Nov 30 09:17:56 2013 +0100

get started on refcount for SfxShell

cf https://bugs.freedesktop.org/show_bug.cgi?id=70703#c36

Change-Id: Ie1821abc561ff2d79be55a9336dadf10dff64537

___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-4.1' - include/svx svx/source

2013-11-30 Thread Armin Le Grand
 include/svx/svdoedge.hxx   |4 
 svx/source/svdraw/svdoedge.cxx |   39 ---
 2 files changed, 28 insertions(+), 15 deletions(-)

New commits:
commit 046de18a83f156fe66d7999486ee23c522ab321e
Author: Armin Le Grand a...@apache.org
Date:   Mon Sep 2 14:30:09 2013 +

Related: #i123048# Corrected connector layout after reload

(cherry picked from commit c7d96eed93415894c5ca4522bd32ca06acd88233)

Conflicts:
svx/inc/svx/svdoedge.hxx
svx/source/svdraw/svdoedge.cxx

Change-Id: Id388fa7396751a2e8b5908373ca57eceee1a1af1

diff --git a/include/svx/svdoedge.hxx b/include/svx/svdoedge.hxx
index ea0968c..180369f 100644
--- a/include/svx/svdoedge.hxx
+++ b/include/svx/svdoedge.hxx
@@ -182,6 +182,10 @@ protected:
 // is running, the flag is set, else it is always sal_False.
 unsignedmbBoundRectCalculationRunning : 1;
 
+// #i123048# need to remember if layouting was suppressed before to get
+// to a correct state for first real layouting
+unsignedmbSuppressed : 1;
+
 public:
 // #109007#
 // Interface to default connect suppression
diff --git a/svx/source/svdraw/svdoedge.cxx b/svx/source/svdraw/svdoedge.cxx
index d30350b..98c57f9 100644
--- a/svx/source/svdraw/svdoedge.cxx
+++ b/svx/source/svdraw/svdoedge.cxx
@@ -171,7 +171,8 @@ SdrEdgeObj::SdrEdgeObj()
 bEdgeTrackUserDefined(sal_False),
 // Default is to allow default connects
 mbSuppressDefaultConnect(sal_False),
-mbBoundRectCalculationRunning(sal_False)
+mbBoundRectCalculationRunning(sal_False),
+mbSuppressed(false)
 {
 bClosedObj=sal_False;
 bIsEdge=sal_True;
@@ -543,12 +544,20 @@ void SdrEdgeObj::ImpUndirtyEdgeTrack()
 
 void SdrEdgeObj::ImpRecalcEdgeTrack()
 {
-// #i120437# if bEdgeTrackUserDefined, do not recalculate. Also not when 
model locked
-if(bEdgeTrackUserDefined || !GetModel() || GetModel()-isLocked())
+// #i120437# if bEdgeTrackUserDefined, do not recalculate
+if(bEdgeTrackUserDefined)
 {
 return;
 }
 
+// #i120437# also not when model locked during import, but remember
+if(!GetModel() || GetModel()-isLocked())
+{
+mbSuppressed = true;
+return;
+}
+
+// #i110649#
 if(IsBoundRectCalculationRunning())
 {
 // This object is involved into another ImpRecalcEdgeTrack() call
@@ -556,20 +565,20 @@ void SdrEdgeObj::ImpRecalcEdgeTrack()
 // Also, do not change bEdgeTrackDirty so that it gets recalculated
 // later at the first non-looping call.
 }
-// #i43068#
-else if(GetModel()  GetModel()-isLocked())
-{
-// avoid re-layout during imports/API call sequences
-// #i45294# but calculate EdgeTrack and secure properties there
-mbBoundRectCalculationRunning = sal_True;
-*pEdgeTrack=ImpCalcEdgeTrack(*pEdgeTrack,aCon1,aCon2,aEdgeInfo);
-ImpSetAttrToEdgeInfo();
-bEdgeTrackDirty=sal_False;
-mbBoundRectCalculationRunning = sal_False;
-}
 else
 {
-// To not run in a depth loop, use a coloring algorithm on
+if(mbSuppressed)
+{
+// #i123048# If layouting was ever suppressed, it needs to be done 
once
+// and the attr need to be set at EdgeInfo, else these attr *will 
be lost*
+// in the following call to ImpSetEdgeInfoToAttr() sice they were 
never
+// set before (!)
+*pEdgeTrack=ImpCalcEdgeTrack(*pEdgeTrack,aCon1,aCon2,aEdgeInfo);
+ImpSetAttrToEdgeInfo();
+mbSuppressed = false;
+}
+
+// To not run in a depth loop, use a coloring algorythm on
 // SdrEdgeObj BoundRect calculations
 mbBoundRectCalculationRunning = sal_True;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - include/svx svx/source

2013-11-30 Thread Armin Le Grand
 include/svx/svdoedge.hxx   |4 
 svx/source/svdraw/svdoedge.cxx |   39 ---
 2 files changed, 28 insertions(+), 15 deletions(-)

New commits:
commit af75342373348f8a28ba57cfbd56fbe3a29ca365
Author: Armin Le Grand a...@apache.org
Date:   Mon Sep 2 14:30:09 2013 +

Related: #i123048# Corrected connector layout after reload

(cherry picked from commit c7d96eed93415894c5ca4522bd32ca06acd88233)

Signed-off-by: Andras Timar andras.ti...@collabora.com

Conflicts:
svx/inc/svx/svdoedge.hxx
svx/source/svdraw/svdoedge.cxx

Change-Id: Id388fa7396751a2e8b5908373ca57eceee1a1af1
Signed-off-by: Andras Timar andras.ti...@collabora.com

diff --git a/include/svx/svdoedge.hxx b/include/svx/svdoedge.hxx
index ea0968c..180369f 100644
--- a/include/svx/svdoedge.hxx
+++ b/include/svx/svdoedge.hxx
@@ -182,6 +182,10 @@ protected:
 // is running, the flag is set, else it is always sal_False.
 unsignedmbBoundRectCalculationRunning : 1;
 
+// #i123048# need to remember if layouting was suppressed before to get
+// to a correct state for first real layouting
+unsignedmbSuppressed : 1;
+
 public:
 // #109007#
 // Interface to default connect suppression
diff --git a/svx/source/svdraw/svdoedge.cxx b/svx/source/svdraw/svdoedge.cxx
index d30350b..98c57f9 100644
--- a/svx/source/svdraw/svdoedge.cxx
+++ b/svx/source/svdraw/svdoedge.cxx
@@ -171,7 +171,8 @@ SdrEdgeObj::SdrEdgeObj()
 bEdgeTrackUserDefined(sal_False),
 // Default is to allow default connects
 mbSuppressDefaultConnect(sal_False),
-mbBoundRectCalculationRunning(sal_False)
+mbBoundRectCalculationRunning(sal_False),
+mbSuppressed(false)
 {
 bClosedObj=sal_False;
 bIsEdge=sal_True;
@@ -543,12 +544,20 @@ void SdrEdgeObj::ImpUndirtyEdgeTrack()
 
 void SdrEdgeObj::ImpRecalcEdgeTrack()
 {
-// #i120437# if bEdgeTrackUserDefined, do not recalculate. Also not when 
model locked
-if(bEdgeTrackUserDefined || !GetModel() || GetModel()-isLocked())
+// #i120437# if bEdgeTrackUserDefined, do not recalculate
+if(bEdgeTrackUserDefined)
 {
 return;
 }
 
+// #i120437# also not when model locked during import, but remember
+if(!GetModel() || GetModel()-isLocked())
+{
+mbSuppressed = true;
+return;
+}
+
+// #i110649#
 if(IsBoundRectCalculationRunning())
 {
 // This object is involved into another ImpRecalcEdgeTrack() call
@@ -556,20 +565,20 @@ void SdrEdgeObj::ImpRecalcEdgeTrack()
 // Also, do not change bEdgeTrackDirty so that it gets recalculated
 // later at the first non-looping call.
 }
-// #i43068#
-else if(GetModel()  GetModel()-isLocked())
-{
-// avoid re-layout during imports/API call sequences
-// #i45294# but calculate EdgeTrack and secure properties there
-mbBoundRectCalculationRunning = sal_True;
-*pEdgeTrack=ImpCalcEdgeTrack(*pEdgeTrack,aCon1,aCon2,aEdgeInfo);
-ImpSetAttrToEdgeInfo();
-bEdgeTrackDirty=sal_False;
-mbBoundRectCalculationRunning = sal_False;
-}
 else
 {
-// To not run in a depth loop, use a coloring algorithm on
+if(mbSuppressed)
+{
+// #i123048# If layouting was ever suppressed, it needs to be done 
once
+// and the attr need to be set at EdgeInfo, else these attr *will 
be lost*
+// in the following call to ImpSetEdgeInfoToAttr() sice they were 
never
+// set before (!)
+*pEdgeTrack=ImpCalcEdgeTrack(*pEdgeTrack,aCon1,aCon2,aEdgeInfo);
+ImpSetAttrToEdgeInfo();
+mbSuppressed = false;
+}
+
+// To not run in a depth loop, use a coloring algorythm on
 // SdrEdgeObj BoundRect calculations
 mbBoundRectCalculationRunning = sal_True;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 4 commits - connectivity/source

2013-11-30 Thread Lionel Elie Mamane
 connectivity/source/drivers/file/FResultSet.cxx |6 -
 connectivity/source/drivers/flat/ETable.cxx |   26 +---
 connectivity/source/inc/flat/ETable.hxx |2 -
 3 files changed, 12 insertions(+), 22 deletions(-)

New commits:
commit 56ad826194d0b9b42ed8bde35836b0e59c46baa6
Author: Lionel Elie Mamane lio...@mamane.lu
Date:   Sat Nov 30 11:58:39 2013 +0100

flat text DB: fix move by bookmark

To test whether the range [a,b( is *before* e,
compare e to b, not to a.

This makes a difference when a==b, which happens for row 0 (header)
when there is no header.

Change-Id: I629b71936f82a468febe0360909264dd80304437

diff --git a/connectivity/source/drivers/flat/ETable.cxx 
b/connectivity/source/drivers/flat/ETable.cxx
index 2fefbaa..bcc866d 100644
--- a/connectivity/source/drivers/flat/ETable.cxx
+++ b/connectivity/source/drivers/flat/ETable.cxx
@@ -756,22 +756,13 @@ void OFlatTable::refreshHeader()
 // 
-
 namespace
 {
-template typename Tp, typename Te struct PairFirstLess
+template typename Tp, typename Te struct RangeBefore
 {
 bool operator() (const Tp p, const Te e)
 {
-return p.first  e;
+assert(p.first = p.second);
+return p.second = e;
 }
-#ifdef DBG_UTIL
-bool operator() (const Te e, const Tp p)
-{
-return e  p.first;
-}
-bool operator() (const Tp p1, const Tp p2)
-{
-return p1.first  p2.first;
-}
-#endif
 };
 }
 // 
-
@@ -910,7 +901,7 @@ sal_Bool OFlatTable::seekRow(IResultSetHelper::Movement 
eCursorPosition, sal_Int
 vector TRowPositionInFile ::const_iterator aFind = 
lower_bound(m_aRowPosToFilePos.begin(),

  m_aRowPosToFilePos.end(),

  nOffset,
-   
  PairFirstLess TRowPositionInFile, sal_Int32 ());
+   
  RangeBefore TRowPositionInFile, sal_Int32 ());
 
 if(aFind == m_aRowPosToFilePos.end() || aFind-first != 
nOffset)
 //invalid bookmark
commit 3a89da0b66b35e4ea322bbaea6b0dbcc183c3082
Author: Lionel Elie Mamane lio...@mamane.lu
Date:   Sat Nov 30 11:55:26 2013 +0100

debug mode is OSL_DEBUG_LEVEL  0, not  1

Change-Id: I39465b1b22a537de95db9f65b04ecf4bce667d0c

diff --git a/connectivity/source/inc/flat/ETable.hxx 
b/connectivity/source/inc/flat/ETable.hxx
index eb6e80a..09cbb59 100644
--- a/connectivity/source/inc/flat/ETable.hxx
+++ b/connectivity/source/inc/flat/ETable.hxx
@@ -65,7 +65,7 @@ namespace connectivity
  const sal_Unicode 
cDecimalDelimiter, const sal_Unicode cThousandDelimiter, const CharClass 
aCharClass);
 OFlatConnection* getFlatConnection()
 {
-#if OSL_DEBUG_LEVEL1
+#if OSL_DEBUG_LEVEL  0
 OFlatConnection* pConnection = 
dynamic_castOFlatConnection*(m_pConnection);
 assert(pConnection);
 #else
commit c0285abc4b3b128b0ab1cfc5689fef13e086db8e
Author: Lionel Elie Mamane lio...@mamane.lu
Date:   Sat Nov 30 11:55:03 2013 +0100

factorise code

Change-Id: Ifd1829843886b8c58669fd4ccf04bc35bf4a0e10

diff --git a/connectivity/source/drivers/flat/ETable.cxx 
b/connectivity/source/drivers/flat/ETable.cxx
index f30f467..2fefbaa 100644
--- a/connectivity/source/drivers/flat/ETable.cxx
+++ b/connectivity/source/drivers/flat/ETable.cxx
@@ -127,7 +127,6 @@ void OFlatTable::fillColumns(const 
::com::sun::star::lang::Locale _aLocale)
 // read description
 const sal_Unicode cDecimalDelimiter  = pConnection-getDecimalDelimiter();
 const sal_Unicode cThousandDelimiter = pConnection-getThousandDelimiter();
-OUString aColumnName;
 ::comphelper::UStringMixEqual aCase(bCase);
 vectorOUString aColumnNames;
 vectorOUString m_aTypeNames;
@@ -144,17 +143,13 @@ void OFlatTable::fillColumns(const 
::com::sun::star::lang::Locale _aLocale)
 {
 if ( nRowCount == 0)
 {
+OUString aColumnName;
 if ( bHasHeaderLine )
 {
 aColumnName = 
aHeaderLine.GetTokenSpecial(nStartPosHeaderLine,m_cFieldDelimiter,m_cStringDelimiter);
-if ( !aColumnName.getLength() )
-{
-aColumnName = C + OUString::number(i+1);
-}
 }
-else
+if ( aColumnName.isEmpty() )
 {
-// no column name so ...
   

[Libreoffice-commits] core.git: Branch 'libreoffice-4-2' - 2 commits - connectivity/source

2013-11-30 Thread Lionel Elie Mamane
 connectivity/source/drivers/file/FResultSet.cxx |6 +-
 connectivity/source/drivers/flat/ETable.cxx |   17 -
 2 files changed, 9 insertions(+), 14 deletions(-)

New commits:
commit 829621680b028909d58b0480a78a6aee7154f31a
Author: Lionel Elie Mamane lio...@mamane.lu
Date:   Sat Nov 30 11:58:39 2013 +0100

flat text DB: fix move by bookmark

To test whether the range [a,b( is *before* e,
compare e to b, not to a.

This makes a difference when a==b, which happens for row 0 (header)
when there is no header.

Change-Id: I629b71936f82a468febe0360909264dd80304437

diff --git a/connectivity/source/drivers/flat/ETable.cxx 
b/connectivity/source/drivers/flat/ETable.cxx
index f30f467..acf9812 100644
--- a/connectivity/source/drivers/flat/ETable.cxx
+++ b/connectivity/source/drivers/flat/ETable.cxx
@@ -761,22 +761,13 @@ void OFlatTable::refreshHeader()
 // 
-
 namespace
 {
-template typename Tp, typename Te struct PairFirstLess
+template typename Tp, typename Te struct RangeBefore
 {
 bool operator() (const Tp p, const Te e)
 {
-return p.first  e;
+assert(p.first = p.second);
+return p.second = e;
 }
-#ifdef DBG_UTIL
-bool operator() (const Te e, const Tp p)
-{
-return e  p.first;
-}
-bool operator() (const Tp p1, const Tp p2)
-{
-return p1.first  p2.first;
-}
-#endif
 };
 }
 // 
-
@@ -915,7 +906,7 @@ sal_Bool OFlatTable::seekRow(IResultSetHelper::Movement 
eCursorPosition, sal_Int
 vector TRowPositionInFile ::const_iterator aFind = 
lower_bound(m_aRowPosToFilePos.begin(),

  m_aRowPosToFilePos.end(),

  nOffset,
-   
  PairFirstLess TRowPositionInFile, sal_Int32 ());
+   
  RangeBefore TRowPositionInFile, sal_Int32 ());
 
 if(aFind == m_aRowPosToFilePos.end() || aFind-first != 
nOffset)
 //invalid bookmark
commit be6bed2ca4083039bfcbd62f9603efa3a0bdd3dc
Author: Lionel Elie Mamane lio...@mamane.lu
Date:   Sat Nov 30 11:54:20 2013 +0100

fdo#72148 if expecting table at begin, explicitly set it so

Change-Id: Ic876603e5860b987280b73726fd79a071a9c833c

diff --git a/connectivity/source/drivers/file/FResultSet.cxx 
b/connectivity/source/drivers/file/FResultSet.cxx
index 58aa810..63c77c7 100644
--- a/connectivity/source/drivers/file/FResultSet.cxx
+++ b/connectivity/source/drivers/file/FResultSet.cxx
@@ -1098,7 +1098,11 @@ sal_Bool OResultSet::Move(IResultSetHelper::Movement 
eCursorPosition, sal_Int32
 else // Index must be further constructed
 {
 // set first on the last known row
-if (!m_pFileSet-get().empty())
+if (m_pFileSet-get().empty())
+{
+m_pTable-seekRow(IResultSetHelper::ABSOLUTE, 0, 
m_nFilePos);
+}
+else
 {
 m_aFileSetIter = m_pFileSet-get().end()-1;
 m_pTable-seekRow(IResultSetHelper::BOOKMARK, 
*m_aFileSetIter, m_nFilePos);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Connection refused ooo.itc.hu

2013-11-30 Thread julien2412
Hello,

Perhaps an already known issue but ooo.itc.hu is unreachable.

I'm trying to build 4.2 sources and here's what I got (since several days):
cd /home/julien/compile-libreoffice/libo_4_2/src/tmp  wget
--progress=dot:mega -Q 0 -P . -l 0 -nd -nH -N
http://ooo.itc.hu/oxygenoffice/download/libreoffice/8d74685d41f8bffe8c3e71fe8deac09d-SmART_0.9.5.oxt
21 | tee -a /home/julien/compile-libreoffice/libo_4_2/src/fetch.log  [
$PIPESTATUS -eq 0 ]  SUM=`md5sum
8d74685d41f8bffe8c3e71fe8deac09d-SmART_0.9.5.oxt | sed s/ .*//`  if test
$SUM != 8d74685d41f8bffe8c3e71fe8deac09d; then echo ERROR: expected
checksum for 8d74685d41f8bffe8c3e71fe8deac09d-SmART_0.9.5.oxt is
8d74685d41f8bffe8c3e71fe8deac09d 21 | tee -a
/home/julien/compile-libreoffice/libo_4_2/src/fetch.log; false; fi  mv
8d74685d41f8bffe8c3e71fe8deac09d-SmART_0.9.5.oxt ../ 
--2013-11-30 12:28:45-- 
http://ooo.itc.hu/oxygenoffice/download/libreoffice/8d74685d41f8bffe8c3e71fe8deac09d-SmART_0.9.5.oxt
Resolving ooo.itc.hu (ooo.itc.hu)... 91.208.36.36
Connecting to ooo.itc.hu (ooo.itc.hu)|91.208.36.36|:80... failed: Connection
refused.
make: *** [/home/julien/compile-libreoffice/libo_4_2/workdir/download] Error
1

Julien



--
View this message in context: 
http://nabble.documentfoundation.org/Connection-refused-ooo-itc-hu-tp4085730.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[ANN] LibreOffice 4.1.4 RC1 available

2013-11-30 Thread Christian Lohmaier
Dear Community,

The Document Foundation is pleased to announce the first release
candidate of LibreOffice 4.1.4. The upcoming 4.1.4 will be the fourth
in a sequence of frequent bugfix releases for our feature-packed 4.1
line. Please be aware that LibreOffice 4.1.4 RC1 is not been flagged as ready
for production use yet, you should continue to use LibreOffice 4.1.3 for that.

The release is available for Windows, Linux and Mac OS X from our QA
builds download page at

  http://www.libreoffice.org/download/pre-releases/

Should you find bugs, please report them to the FreeDesktop Bugzilla:

  https://bugs.freedesktop.org

A good way to assess the release candidate quality is to run some
specific manual tests on it, our TCM wiki page has more details:

 
http://wiki.documentfoundation.org/QA/Testing/Regression_Tests#Full_Regression_Test

For other ways to get involved with this exciting project - you can
e.g. contribute code:

  http://www.libreoffice.org/get-involved/developers/

translate LibreOffice to your language:

  http://wiki.documentfoundation.org/LibreOffice_Localization_Guide

or help with funding our operations:

  http://donate.libreoffice.org/

A list of known issues and fixed bugs with 4.1.4 RC1 is available
from our wiki:

  http://wiki.documentfoundation.org/Releases/4.1.4/RC1

Let us close again with a BIG Thank You! to all of you having
contributed to the LibreOffice project - this release would not have
been possible without your help.

On behalf of the Community,

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


[Libreoffice-commits] core.git: 3 commits - sc/source

2013-11-30 Thread Markus Mohrhard
 sc/source/filter/excel/excdoc.cxx   |   14 +-
 sc/source/filter/excel/excrecds.cxx |2 +-
 sc/source/filter/excel/xestyle.cxx  |   12 ++--
 3 files changed, 16 insertions(+), 12 deletions(-)

New commits:
commit 9a339aedc84d75b7a5e0c2ec2ece0ba9bc344086
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sat Nov 30 18:40:39 2013 +0100

make the validation tool happy

This is just fucking awesome. The MSO implementers notes mention this
attribute and point to some extended information that is either missing
or does not mention this attribute. To make it more funny the MSO
validation complains about invalid values in this attribute for our
export.

Change-Id: Iacf1af9f6124106952ae19ae5d5866bc8cf1

diff --git a/sc/source/filter/excel/excrecds.cxx 
b/sc/source/filter/excel/excrecds.cxx
index 01b2432a..9be9bfe 100644
--- a/sc/source/filter/excel/excrecds.cxx
+++ b/sc/source/filter/excel/excrecds.cxx
@@ -519,7 +519,7 @@ void XclExpSheetProtection::SaveXml( XclExpXmlStream rStrm 
)
 sax_fastparser::FSHelperPtr rWorksheet = rStrm.GetCurrentStream();
 rWorksheet-singleElement( XML_sheetProtection,
 XML_sheet,  XclXmlUtils::ToPsz( true ),
-XML_password, sHash.getStr(),
+XML_password, sHash.isEmpty()? NULL : sHash.getStr(),
 XML_objects, pTabProtect-isOptionEnabled( 
ScTableProtection::OBJECTS ) ? NULL : XclXmlUtils::ToPsz( true ),
 XML_scenarios, pTabProtect-isOptionEnabled( 
ScTableProtection::SCENARIOS ) ? NULL : XclXmlUtils::ToPsz( true ),
 XML_formatCells, pTabProtect-isOptionEnabled( 
ScTableProtection::FORMAT_CELLS ) ? XclXmlUtils::ToPsz( false ) : NULL,
commit e361f6b81b09919c77995a85250c70b099389915
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sat Nov 30 18:19:40 2013 +0100

more OOXML export validation fixes, fdo#71971

Change-Id: Ic322d58817986887bbcd666ac3abc416609adf5c

diff --git a/sc/source/filter/excel/excdoc.cxx 
b/sc/source/filter/excel/excdoc.cxx
index 574dcbb..a8bfbf7 100644
--- a/sc/source/filter/excel/excdoc.cxx
+++ b/sc/source/filter/excel/excdoc.cxx
@@ -561,6 +561,7 @@ void ExcTable::FillAsXmlTable( SCTAB nCodeNameIdx )
 aRecList.AppendRecord( mxCellTable );
 
 // label ranges
+// missing SaveXML
 Add( new XclExpLabelranges( GetRoot() ) );
 
 // DFF not needed in MSOOXML export
@@ -572,15 +573,23 @@ void ExcTable::FillAsXmlTable( SCTAB nCodeNameIdx )
 //Add( rR.pObjRecs );
 
 // pivot tables
+// not in the worksheet file
 aRecList.AppendRecord( GetPivotTableManager().CreatePivotTablesRecord( 
mnScTab ) );
 
 // list of NOTE records, generated by the cell table
+// not in the worksheet file
 if( mxNoteList != 0  !mxNoteList-IsEmpty() )
 aRecList.AppendNewRecord( new XclExpComments( mnScTab, *mxNoteList ) );
 
 // web queries
+// missing SaveXML implementation
 Add( new XclExpWebQueryBuffer( GetRoot() ) );
 
+ScDocument rDoc = GetDoc();
+const ScTableProtection* pTabProtect = rDoc.GetTabProtection(mnScTab);
+if (pTabProtect  pTabProtect-isProtected())
+Add( new XclExpSheetProtection(true, mnScTab) );
+
 lcl_AddScenariosAndFilters( aRecList, GetRoot(), mnScTab );
 
 // MERGEDCELLS record, generated by the cell table
@@ -589,11 +598,6 @@ void ExcTable::FillAsXmlTable( SCTAB nCodeNameIdx )
 // conditional formats
 Add( new XclExpCondFormatBuffer( GetRoot(), xExtLst ) );
 
-ScDocument rDoc = GetDoc();
-const ScTableProtection* pTabProtect = rDoc.GetTabProtection(mnScTab);
-if (pTabProtect  pTabProtect-isProtected())
-Add( new XclExpSheetProtection(true, mnScTab) );
-
 if( HasVbaStorage() )
 if( nCodeNameIdx  GetExtDocOptions().GetCodeNameCount() )
 Add( new XclCodename( GetExtDocOptions().GetCodeName( nCodeNameIdx 
) ) );
commit 7415fc31f5cdf7ff3f78dd304b9576b931a82aeb
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sat Nov 30 06:50:50 2013 +0100

write valid dxf record, related fdo#71971

Change-Id: I99f4dfca78cc0fd5d9b947000a99f8414c2a899b

diff --git a/sc/source/filter/excel/xestyle.cxx 
b/sc/source/filter/excel/xestyle.cxx
index 0769ea3..59603eb 100644
--- a/sc/source/filter/excel/xestyle.cxx
+++ b/sc/source/filter/excel/xestyle.cxx
@@ -3021,18 +3021,18 @@ void XclExpDxf::SaveXml( XclExpXmlStream rStrm )
 sax_fastparser::FSHelperPtr rStyleSheet = rStrm.GetCurrentStream();
 rStyleSheet-startElement( XML_dxf, FSEND );
 
-if (mpAlign)
-mpAlign-SaveXml(rStrm);
-if (mpBorder)
-mpBorder-SaveXml(rStrm);
 if (mpFont)
 mpFont-SaveXml(rStrm);
 if (mpNumberFmt)
 mpNumberFmt-SaveXml(rStrm);
-if (mpProt)
-mpProt-SaveXml(rStrm);
 if (mpColor)
 mpColor-SaveXml(rStrm);
+if (mpAlign)
+mpAlign-SaveXml(rStrm);
+if (mpBorder)
+mpBorder-SaveXml(rStrm);

[Libreoffice-commits] core.git: scaddins/source

2013-11-30 Thread Andras Timar
 scaddins/source/pricing/pricing.src |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8e2d89197942c92da0f00b635c1a370c3adbac8a
Author: Andras Timar andras.ti...@collabora.com
Date:   Sat Nov 30 17:29:00 2013 +0100

typo: Tower - Lower

Change-Id: I3b6f69bdbf40d2578adef312e847f6a69e0e35fd

diff --git a/scaddins/source/pricing/pricing.src 
b/scaddins/source/pricing/pricing.src
index 4a82f0d..cc039c5 100644
--- a/scaddins/source/pricing/pricing.src
+++ b/scaddins/source/pricing/pricing.src
@@ -308,7 +308,7 @@ Resource RID_PRICING_FUNCTION_DESCRIPTIONS
 };
 String 11 // description of parameter 5
 {
-Text [ en-US ] = Tower barrier (set to 0 for no lower barrier);
+Text [ en-US ] = Lower barrier (set to 0 for no lower barrier);
 };
 
 String 12 // name of parameter 6
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-2' - scaddins/source

2013-11-30 Thread Andras Timar
 scaddins/source/pricing/pricing.src |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ca1dfd2119d97f949e76766b98d2917c40ccf92c
Author: Andras Timar andras.ti...@collabora.com
Date:   Sat Nov 30 17:29:00 2013 +0100

typo: Tower - Lower

Change-Id: I3b6f69bdbf40d2578adef312e847f6a69e0e35fd

diff --git a/scaddins/source/pricing/pricing.src 
b/scaddins/source/pricing/pricing.src
index 4a82f0d..cc039c5 100644
--- a/scaddins/source/pricing/pricing.src
+++ b/scaddins/source/pricing/pricing.src
@@ -308,7 +308,7 @@ Resource RID_PRICING_FUNCTION_DESCRIPTIONS
 };
 String 11 // description of parameter 5
 {
-Text [ en-US ] = Tower barrier (set to 0 for no lower barrier);
+Text [ en-US ] = Lower barrier (set to 0 for no lower barrier);
 };
 
 String 12 // name of parameter 6
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Connection refused ooo.itc.hu

2013-11-30 Thread Lionel Elie Mamane
On Sat, Nov 30, 2013 at 03:31:34AM -0800, julien2412 wrote:

 Perhaps an already known issue but ooo.itc.hu is unreachable.

Hit this today, too; seems fixed now.

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


[Bug 46200] [RFE] Use the Scroll Lock key as a toggling lock key like Excel

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46200

Kevin Durette kevinthen...@gmail.com changed:

   What|Removed |Added

   Assignee|kevinthen...@gmail.com  |libreoffice-b...@lists.free
   ||desktop.org

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


[SOLVED] Re: Connection refused ooo.itc.hu

2013-11-30 Thread Julien Nabet

On 30/11/2013 17:31, Lionel Elie Mamane wrote:

On Sat, Nov 30, 2013 at 03:31:34AM -0800, julien2412 wrote:


Perhaps an already known issue but ooo.itc.hu is unreachable.

Hit this today, too; seems fixed now.


Indeed, it's fixed now.

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


[Libreoffice-commits] core.git: officecfg/registry sc/inc sc/Library_sc.mk sc/sdi sc/source sc/uiconfig sc/UIConfig_scalc.mk

2013-11-30 Thread Tomaž Vajngerl
 officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu |8 
 sc/Library_sc.mk  |2 
 sc/UIConfig_scalc.mk  |1 
 sc/inc/sc.hrc |1 
 sc/sdi/cellsh.sdi |1 
 sc/sdi/scalc.sdi  |   24 
 sc/source/ui/StatisticsDialogs/StatisticsDialogs.hrc  |1 
 sc/source/ui/StatisticsDialogs/StatisticsDialogs.src  |5 
 sc/source/ui/StatisticsDialogs/StatisticsTwoVariableDialog.cxx|  257 

 sc/source/ui/StatisticsDialogs/TTestDialog.cxx|  194 ++
 sc/source/ui/StatisticsDialogs/TableFillingAndNavigationTools.cxx |   28 
 sc/source/ui/app/scdll.cxx|1 
 sc/source/ui/inc/StatisticsTwoVariableDialog.hxx  |   96 +++
 sc/source/ui/inc/TTestDialog.hxx  |   35 +
 sc/source/ui/inc/TableFillingAndNavigationTools.hxx   |   28 
 sc/source/ui/inc/reffact.hxx  |6 
 sc/source/ui/view/cellsh1.cxx |   10 
 sc/source/ui/view/tabvwsh.cxx |1 
 sc/source/ui/view/tabvwshc.cxx|7 
 sc/uiconfig/scalc/menubar/menubar.xml |1 
 sc/uiconfig/scalc/ui/ttestdialog.ui   |  308 
++
 21 files changed, 1007 insertions(+), 8 deletions(-)

New commits:
commit 88bece824dd012d9d9ec2812b5ba5ddd3311a5fe
Author: Tomaž Vajngerl qui...@gmail.com
Date:   Sat Nov 30 17:58:00 2013 +0100

Add t-test Statistics Dialog.

Change-Id: I6c2b478a4ce6976b5f8fe9cde3d8fbd309dff965

diff --git a/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
index f397ed9..e5d53f3 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
@@ -699,6 +699,14 @@
   value1/value
 /prop
   /node
+  node oor:name=.uno:TTestDialog oor:op=replace
+prop oor:name=Label oor:type=xs:string
+  value xml:lang=en-US~t-test.../value
+/prop
+prop oor:name=Properties oor:type=xs:int
+  value1/value
+/prop
+  /node
   node oor:name=.uno:EditHeaderAndFooter oor:op=replace
 prop oor:name=Label oor:type=xs:string
   value xml:lang=en-US~Headers amp; Footers.../value
diff --git a/sc/Library_sc.mk b/sc/Library_sc.mk
index fe2ddf8..23d5040 100644
--- a/sc/Library_sc.mk
+++ b/sc/Library_sc.mk
@@ -486,7 +486,9 @@ $(eval $(call gb_Library_add_exception_objects,sc,\
 sc/source/ui/StatisticsDialogs/RandomNumberGeneratorDialog \
 sc/source/ui/StatisticsDialogs/SamplingDialog \
 sc/source/ui/StatisticsDialogs/StatisticsInputOutputDialog \
+sc/source/ui/StatisticsDialogs/StatisticsTwoVariableDialog \
 sc/source/ui/StatisticsDialogs/TableFillingAndNavigationTools \
+sc/source/ui/StatisticsDialogs/TTestDialog \
 sc/source/ui/undo/areasave \
 sc/source/ui/undo/refundo \
 sc/source/ui/undo/target \
diff --git a/sc/UIConfig_scalc.mk b/sc/UIConfig_scalc.mk
index e87e0eb..033238b 100644
--- a/sc/UIConfig_scalc.mk
+++ b/sc/UIConfig_scalc.mk
@@ -137,6 +137,7 @@ $(eval $(call gb_UIConfig_add_uifiles,modules/scalc,\
sc/uiconfig/scalc/ui/textimportoptions \
sc/uiconfig/scalc/ui/textimportcsv \
sc/uiconfig/scalc/ui/tpviewpage \
+   sc/uiconfig/scalc/ui/ttestdialog \
sc/uiconfig/scalc/ui/ungroupdialog \
sc/uiconfig/scalc/ui/validationhelptabpage \
sc/uiconfig/scalc/ui/movecopysheet \
diff --git a/sc/inc/sc.hrc b/sc/inc/sc.hrc
index 49db89d..83f602c 100644
--- a/sc/inc/sc.hrc
+++ b/sc/inc/sc.hrc
@@ -267,6 +267,7 @@
 #define SID_COVARIANCE_DIALOG   (SC_MESSAGE_START + 75)
 #define SID_EXPONENTIAL_SMOOTHING_DIALOG(SC_MESSAGE_START + 76)
 #define SID_MOVING_AVERAGE_DIALOG   (SC_MESSAGE_START + 77)
+#define SID_TTEST_DIALOG(SC_MESSAGE_START + 78)
 
 // functions
 
diff --git a/sc/sdi/cellsh.sdi b/sc/sdi/cellsh.sdi
index 2fe1237..a9b35e2 100644
--- a/sc/sdi/cellsh.sdi
+++ b/sc/sdi/cellsh.sdi
@@ -158,6 +158,7 @@ interface CellSelection
 SID_COVARIANCE_DIALOG   [ ExecMethod = ExecuteEdit; 
StateMethod = GetBlockState; ]
 SID_EXPONENTIAL_SMOOTHING_DIALOG[ ExecMethod = ExecuteEdit; 
StateMethod = GetBlockState; ]
 SID_MOVING_AVERAGE_DIALOG   [ ExecMethod = ExecuteEdit; 
StateMethod = GetBlockState; ]
+SID_TTEST_DIALOG[ ExecMethod = ExecuteEdit; 
StateMethod = GetBlockState; ]
 SID_MARKDATAAREA[ ExecMethod = ExecuteMove; 

[Libreoffice-commits] core.git: scaddins/source

2013-11-30 Thread Julien Nabet
 scaddins/source/analysis/analysishelper.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c2dd0ef4b891a3d126dbe70ab5b76016b69d491c
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sat Nov 30 18:28:15 2013 +0100

Resolves: fdo#72174 convert_add from at or atm to Pa gives same answer

Change-Id: I76c1a0bd7cc93cf60ffa8da08200969a7315a8c3

diff --git a/scaddins/source/analysis/analysishelper.cxx 
b/scaddins/source/analysis/analysishelper.cxx
index 33c035f..1b8fa1b 100644
--- a/scaddins/source/analysis/analysishelper.cxx
+++ b/scaddins/source/analysis/analysishelper.cxx
@@ -2547,7 +2547,7 @@ ConvertDataList::ConvertDataList( void )
 // PRESSURE: 1 Pascal is...
 NEWDP( Pa,1.E00,  CDC_Pressure ); // Pascal
 NEWDP( atm,   9.869232819300E-06, CDC_Pressure ); // Atmosphere
-NEWDP( at,9.869232819300E-06, CDC_Pressure ); // Atmosphere also
+NEWDP( at,1.0197162129779000E-05, CDC_Pressure ); // Atmosphere also
 NEWDP( mmHg,  7.5006170799862700E-03, CDC_Pressure ); // mm Hg (Mercury)
 NEWD( Torr,   7.50063800E-03, CDC_Pressure ); // *** Torr
 NEWD( psi,1.45037700E-04, CDC_Pressure ); // *** Psi
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: vcl/source

2013-11-30 Thread Tomaž Vajngerl
 vcl/source/window/menu.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b99bee2b0c4e1a8e495d122d2c64c75b94e0026d
Author: Tomaž Vajngerl qui...@gmail.com
Date:   Sat Nov 30 18:38:39 2013 +0100

WaE: ‘nPos’ may be used uninitialized in this function

Change-Id: I993492fa3c3355eeb8d57b4262e176bc2f439f7e

diff --git a/vcl/source/window/menu.cxx b/vcl/source/window/menu.cxx
index 2a83c97..647f57c 100644
--- a/vcl/source/window/menu.cxx
+++ b/vcl/source/window/menu.cxx
@@ -3696,7 +3696,7 @@ sal_uInt16 PopupMenu::ImplExecute( Window* pW, const 
Rectangle rRect, sal_uLong
 OUString aTmpEntryText( ResId( 
SV_RESID_STRING_NOSELECTIONPOSSIBLE, *pResMgr ) );
 MenuItemData* pData = pItemList-Insert(
 0x, MENUITEM_STRING, 0, aTmpEntryText, Image(), NULL, 
0x, OString() );
-size_t nPos;
+size_t nPos = 0;
 pData = pItemList-GetData( pData-nId, nPos );
 pData-bIsTemporary = true;
 ImplCallEventListeners(VCLEVENT_MENU_SUBMENUCHANGED, nPos);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 2 commits - bin/ui-translatable.sh cui/uiconfig desktop/uiconfig sc/uiconfig sd/uiconfig sfx2/uiconfig starmath/uiconfig svtools/uiconfig svx/uiconfig sw/uiconfig

2013-11-30 Thread Andras Timar
 bin/ui-translatable.sh   |2 +-
 cui/uiconfig/ui/specialcharacters.ui |2 +-
 desktop/uiconfig/ui/cmdlinehelp.ui   |8 
 sc/uiconfig/scalc/ui/sidebarcellappearance.ui|8 
 sc/uiconfig/scalc/ui/sidebarnumberformat.ui  |   10 +-
 sd/uiconfig/simpress/ui/optimpressgeneralpage.ui |4 ++--
 sd/uiconfig/simpress/ui/slidedesigndialog.ui |2 +-
 sfx2/uiconfig/ui/alienwarndialog.ui  |2 +-
 starmath/uiconfig/smath/ui/spacingdialog.ui  |8 
 svtools/uiconfig/ui/addresstemplatedialog.ui |   20 ++--
 svx/uiconfig/ui/findreplacedialog.ui |6 +++---
 svx/uiconfig/ui/linkwarndialog.ui|2 +-
 sw/uiconfig/swriter/ui/exchangedatabases.ui  |2 +-
 sw/uiconfig/swriter/ui/mmoutputtypepage.ui   |2 +-
 sw/uiconfig/swriter/ui/opttestpage.ui|   22 +++---
 sw/uiconfig/swriter/ui/sidebarpage.ui|8 
 16 files changed, 54 insertions(+), 54 deletions(-)

New commits:
commit 8027780051da7758f722d1b5e003bd5aa7eee1cd
Author: Andras Timar andras.ti...@collabora.com
Date:   Sat Nov 30 19:04:43 2013 +0100

mark non-translatable .ui strings explicitely as such

so bin/ui-translatable.sh will not find false positives

Change-Id: I35e98ba22ba8c0cc9bbf0de40b31be421acc4c15

diff --git a/bin/ui-translatable.sh b/bin/ui-translatable.sh
index 34f3d08..affac56 100755
--- a/bin/ui-translatable.sh
+++ b/bin/ui-translatable.sh
@@ -10,7 +10,7 @@
 
 for i in `git ls-files *.ui`; do
 for j in label title text format copyright comments 
preview_text tooltip message ; do
-grep -s \property name\=\$j\ $i | grep -v translatable\=\yes | 
grep -v gtk\- | grep .*[A-Za-z].*;
+grep -s \property name\=\$j\ $i | grep -v translatable\=\yes | 
grep -v translatable\=\no | grep -v gtk\- | grep .*[A-Za-z].*;
 if [ $? -eq 0 ] ;
 then echo Source: $i^;
 fi
diff --git a/cui/uiconfig/ui/specialcharacters.ui 
b/cui/uiconfig/ui/specialcharacters.ui
index c634b25..961021f 100644
--- a/cui/uiconfig/ui/specialcharacters.ui
+++ b/cui/uiconfig/ui/specialcharacters.ui
@@ -190,7 +190,7 @@
 property name=visibleTrue/property
 property name=can_focusFalse/property
 property name=hexpandTrue/property
-property name=labelU+(65535)/property
+property name=label translatable=no
U+(65535)/property
   /object
   packing
 property name=left_attach0/property
diff --git a/desktop/uiconfig/ui/cmdlinehelp.ui 
b/desktop/uiconfig/ui/cmdlinehelp.ui
index 4c77147..62c61ac 100644
--- a/desktop/uiconfig/ui/cmdlinehelp.ui
+++ b/desktop/uiconfig/ui/cmdlinehelp.ui
@@ -24,7 +24,7 @@
 property name=halignstart/property
 property name=xalign0/property
 property name=xpad10/property
-property name=labelHEADER/property
+property name=label translatable=noHEADER/property
   /object
   packing
 property name=expandFalse/property
@@ -44,7 +44,7 @@
 property name=halignstart/property
 property name=xalign0/property
 property name=xpad10/property
-property name=labelLEFT/property
+property name=label translatable=noLEFT/property
   /object
   packing
 property name=left_attach0/property
@@ -60,7 +60,7 @@
 property name=halignstart/property
 property name=xalign0/property
 property name=xpad10/property
-property name=labelRIGHT/property
+property name=label translatable=noRIGHT/property
   /object
   packing
 property name=left_attach1/property
@@ -83,7 +83,7 @@
 property name=halignstart/property
 property name=xalign0/property
 property name=xpad10/property
-property name=labelBOTTOM/property
+property name=label translatable=noBOTTOM/property
   /object
   packing
 property name=expandFalse/property
diff --git a/sc/uiconfig/scalc/ui/sidebarcellappearance.ui 
b/sc/uiconfig/scalc/ui/sidebarcellappearance.ui
index 59e02ae..cdf59e1 100644
--- a/sc/uiconfig/scalc/ui/sidebarcellappearance.ui
+++ b/sc/uiconfig/scalc/ui/sidebarcellappearance.ui
@@ -48,7 +48,7 @@
 property name=halignstart/property
 property name=use_action_appearanceFalse/property
 property 
name=action_name.uno:BackgroundColor/property
-  

[Libreoffice-commits] core.git: Branch 'libreoffice-4-2' - 2 commits - bin/ui-translatable.sh cui/uiconfig desktop/uiconfig sc/uiconfig sd/uiconfig sfx2/uiconfig starmath/uiconfig svtools/uiconfig svx

2013-11-30 Thread Andras Timar
 bin/ui-translatable.sh   |2 +-
 cui/uiconfig/ui/specialcharacters.ui |2 +-
 desktop/uiconfig/ui/cmdlinehelp.ui   |8 
 sc/uiconfig/scalc/ui/sidebarcellappearance.ui|8 
 sc/uiconfig/scalc/ui/sidebarnumberformat.ui  |   10 +-
 sd/uiconfig/simpress/ui/optimpressgeneralpage.ui |4 ++--
 sd/uiconfig/simpress/ui/slidedesigndialog.ui |2 +-
 sfx2/uiconfig/ui/alienwarndialog.ui  |2 +-
 starmath/uiconfig/smath/ui/spacingdialog.ui  |8 
 svtools/uiconfig/ui/addresstemplatedialog.ui |   20 ++--
 svx/uiconfig/ui/findreplacedialog.ui |6 +++---
 sw/uiconfig/swriter/ui/exchangedatabases.ui  |2 +-
 sw/uiconfig/swriter/ui/mmoutputtypepage.ui   |2 +-
 sw/uiconfig/swriter/ui/opttestpage.ui|   22 +++---
 sw/uiconfig/swriter/ui/sidebarpage.ui|8 
 15 files changed, 53 insertions(+), 53 deletions(-)

New commits:
commit 642df5d716f858f1f6b3d6219132c3323032975a
Author: Andras Timar andras.ti...@collabora.com
Date:   Sat Nov 30 19:04:43 2013 +0100

mark non-translatable .ui strings explicitely as such

so bin/ui-translatable.sh will not find false positives

Change-Id: I35e98ba22ba8c0cc9bbf0de40b31be421acc4c15

diff --git a/bin/ui-translatable.sh b/bin/ui-translatable.sh
index 34f3d08..affac56 100755
--- a/bin/ui-translatable.sh
+++ b/bin/ui-translatable.sh
@@ -10,7 +10,7 @@
 
 for i in `git ls-files *.ui`; do
 for j in label title text format copyright comments 
preview_text tooltip message ; do
-grep -s \property name\=\$j\ $i | grep -v translatable\=\yes | 
grep -v gtk\- | grep .*[A-Za-z].*;
+grep -s \property name\=\$j\ $i | grep -v translatable\=\yes | 
grep -v translatable\=\no | grep -v gtk\- | grep .*[A-Za-z].*;
 if [ $? -eq 0 ] ;
 then echo Source: $i^;
 fi
diff --git a/cui/uiconfig/ui/specialcharacters.ui 
b/cui/uiconfig/ui/specialcharacters.ui
index c634b25..961021f 100644
--- a/cui/uiconfig/ui/specialcharacters.ui
+++ b/cui/uiconfig/ui/specialcharacters.ui
@@ -190,7 +190,7 @@
 property name=visibleTrue/property
 property name=can_focusFalse/property
 property name=hexpandTrue/property
-property name=labelU+(65535)/property
+property name=label translatable=no
U+(65535)/property
   /object
   packing
 property name=left_attach0/property
diff --git a/desktop/uiconfig/ui/cmdlinehelp.ui 
b/desktop/uiconfig/ui/cmdlinehelp.ui
index 4c77147..62c61ac 100644
--- a/desktop/uiconfig/ui/cmdlinehelp.ui
+++ b/desktop/uiconfig/ui/cmdlinehelp.ui
@@ -24,7 +24,7 @@
 property name=halignstart/property
 property name=xalign0/property
 property name=xpad10/property
-property name=labelHEADER/property
+property name=label translatable=noHEADER/property
   /object
   packing
 property name=expandFalse/property
@@ -44,7 +44,7 @@
 property name=halignstart/property
 property name=xalign0/property
 property name=xpad10/property
-property name=labelLEFT/property
+property name=label translatable=noLEFT/property
   /object
   packing
 property name=left_attach0/property
@@ -60,7 +60,7 @@
 property name=halignstart/property
 property name=xalign0/property
 property name=xpad10/property
-property name=labelRIGHT/property
+property name=label translatable=noRIGHT/property
   /object
   packing
 property name=left_attach1/property
@@ -83,7 +83,7 @@
 property name=halignstart/property
 property name=xalign0/property
 property name=xpad10/property
-property name=labelBOTTOM/property
+property name=label translatable=noBOTTOM/property
   /object
   packing
 property name=expandFalse/property
diff --git a/sc/uiconfig/scalc/ui/sidebarcellappearance.ui 
b/sc/uiconfig/scalc/ui/sidebarcellappearance.ui
index 59e02ae..cdf59e1 100644
--- a/sc/uiconfig/scalc/ui/sidebarcellappearance.ui
+++ b/sc/uiconfig/scalc/ui/sidebarcellappearance.ui
@@ -48,7 +48,7 @@
 property name=halignstart/property
 property name=use_action_appearanceFalse/property
 property 
name=action_name.uno:BackgroundColor/property
-property name=label 

Wizard use in Calc changes format

2013-11-30 Thread julien2412
Hello,

On pc Debian x86-64 with master sources updated today, I noticed that if I
use wizard (with any function) on Calc for a cell, the format of cell is:
- font Times New Roman
- size 6.8
(instead of Arial/10)
If I directly put the formula without using wizard, no problem.

Before filling a bug, I wanted to know if it was already known and taken
into account (I know that there a lot of changes in Calc part)

Any idea?

Julien



--
View this message in context: 
http://nabble.documentfoundation.org/Wizard-use-in-Calc-changes-format-tp4085804.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [LATE FEATURE] Regression curve / trendline custom name

2013-11-30 Thread Tomaž Vajngerl
Hi,

On Thu, Nov 28, 2013 at 4:20 PM, Markus Mohrhard
markus.mohrh...@googlemail.com wrote:
 Hey Tomaz,

 Has been discussed just now during the ESC. Thorsten and Bjoern volunteered
 to review it ;)

 Can you please push a patch for review to gerrit and post the link here for
 Bjoern and Thorsten?

Done..

https://gerrit.libreoffice.org/6871
https://gerrit.libreoffice.org/6872
https://gerrit.libreoffice.org/6873
https://gerrit.libreoffice.org/6874
https://gerrit.libreoffice.org/6875
https://gerrit.libreoffice.org/6876
https://gerrit.libreoffice.org/6877

 Thanks for the great work.

 Regards,
 Markus


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


Re: Fix sort order of Dockes

2013-11-30 Thread Robinson Tryon
On Tue, Nov 26, 2013 at 12:58 PM, Tae Wong seotaewon...@gmail.com wrote:
 In the D section of Development/Developers, there are sort errors:
 ...
 [...including sorting issues involving diacritics...]

MediaWiki tables include the ability to have sortable columns. We've
enabled this feature on the Development/Developers wiki page, however
1) People might not use these tools to check the sort order after
adding a new entry
2) IIRC, characters with diacritics sort on character value, not based
on how a human would sort names:

Human Sort:
Mlamo
Mládek
Mlzkek

MediaWiki Sort:
Mlamo
Mlzkek
Mládek

We could solve this problem by adding a 'sort order' column like this:
Meeks, Michael
Mladek, Petr
Tryon, Robinson
Wong, Tae

On Thu, Nov 28, 2013 at 2:37 AM, Michael Meeks
michael.me...@collabora.com wrote:
 Since we watch the history on Development/Developers quite carefully -
 please don't do any large re-orderings that also include adding /
 removing / changing any details.

Adding a new column would probably count as a large re-ordering, but
might be our best bet to fix the ordering...

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


[Libreoffice-commits] libcdr.git: src/conv

2013-11-30 Thread Fridrich Štrba
 src/conv/raw/cdr2raw.cpp |   12 
 src/conv/raw/cmx2raw.cpp |   12 
 2 files changed, 16 insertions(+), 8 deletions(-)

New commits:
commit 098016594ada45f56fb9777db723f98ec963fb14
Author: Fridrich Å trba fridrich.st...@bluewin.ch
Date:   Sat Nov 30 22:15:19 2013 +0100

Allow cdr/cmx2raw output callgraph

Change-Id: I62441d16abbcd7f51a223568f93ad9252398c2f1

diff --git a/src/conv/raw/cdr2raw.cpp b/src/conv/raw/cdr2raw.cpp
index 2e1c49e..687f86e 100644
--- a/src/conv/raw/cdr2raw.cpp
+++ b/src/conv/raw/cdr2raw.cpp
@@ -43,6 +43,7 @@ int printUsage()
   printf(Usage: cdr2raw [OPTION] Corel Draw Document\n);
   printf(\n);
   printf(Options:\n);
+  printf(--callgraph   Display the call graph nesting level\n);
   printf(--helpShows this help message\n);
   return -1;
 }
@@ -51,14 +52,17 @@ int printUsage()
 
 int main(int argc, char *argv[])
 {
+  bool printIndentLevel = false;
+  char *file = 0;
+
   if (argc  2)
 return printUsage();
 
-  char *file = 0;
-
   for (int i = 1; i  argc; i++)
   {
-if (!file  strncmp(argv[i], --, 2))
+if (!strcmp(argv[i], --callgraph))
+  printIndentLevel = true;
+else if (!file  strncmp(argv[i], --, 2))
   file = argv[i];
 else
   return printUsage();
@@ -75,7 +79,7 @@ int main(int argc, char *argv[])
 return 1;
   }
 
-  librevenge::RVNGRawDrawingGenerator painter;
+  librevenge::RVNGRawDrawingGenerator painter(printIndentLevel);
   libcdr::CDRDocument::parse(input, painter);
 
   return 0;
diff --git a/src/conv/raw/cmx2raw.cpp b/src/conv/raw/cmx2raw.cpp
index 7eab9e1..3b2a560 100644
--- a/src/conv/raw/cmx2raw.cpp
+++ b/src/conv/raw/cmx2raw.cpp
@@ -43,6 +43,7 @@ int printUsage()
   printf(Usage: cmx2raw [OPTION] Corel Binary Metafile\n);
   printf(\n);
   printf(Options:\n);
+  printf(--callgraph   Display the call graph nesting level\n);
   printf(--helpShows this help message\n);
   return -1;
 }
@@ -51,14 +52,17 @@ int printUsage()
 
 int main(int argc, char *argv[])
 {
+  bool printIndentLevel = false;
+  char *file = 0;
+
   if (argc  2)
 return printUsage();
 
-  char *file = 0;
-
   for (int i = 1; i  argc; i++)
   {
-if (!file  strncmp(argv[i], --, 2))
+if (!strcmp(argv[i], --callgraph))
+  printIndentLevel = true;
+else if (!file  strncmp(argv[i], --, 2))
   file = argv[i];
 else
   return printUsage();
@@ -75,7 +79,7 @@ int main(int argc, char *argv[])
 return 1;
   }
 
-  librevenge::RVNGRawDrawingGenerator painter;
+  librevenge::RVNGRawDrawingGenerator painter(printIndentLevel);
   libcdr::CMXDocument::parse(input, painter);
 
   return 0;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] libmspub.git: src/conv

2013-11-30 Thread Fridrich Štrba
 src/conv/raw/pub2raw.cpp |   12 
 1 file changed, 8 insertions(+), 4 deletions(-)

New commits:
commit 78cfbdf6bd95ba24f5f8990b28fabbe5aa9cbad5
Author: Fridrich Å trba fridrich.st...@bluewin.ch
Date:   Sat Nov 30 22:38:07 2013 +0100

Allow pub2raw output callgraph

Change-Id: I03482201ff551ddb5849cc29f844ba8271060485

diff --git a/src/conv/raw/pub2raw.cpp b/src/conv/raw/pub2raw.cpp
index dceb472..104c792 100644
--- a/src/conv/raw/pub2raw.cpp
+++ b/src/conv/raw/pub2raw.cpp
@@ -44,6 +44,7 @@ int printUsage()
   printf(Usage: pub2raw [OPTION] Microsoft Publisher Document\n);
   printf(\n);
   printf(Options:\n);
+  printf(--callgraph   Display the call graph nesting level\n);
   printf(--helpShows this help message\n);
   return -1;
 }
@@ -52,14 +53,17 @@ int printUsage()
 
 int main(int argc, char *argv[])
 {
+  bool printIndentLevel = false;
+  char *file = 0;
+
   if (argc  2)
 return printUsage();
 
-  char *file = 0;
-
   for (int i = 1; i  argc; i++)
   {
-if (!file  strncmp(argv[i], --, 2))
+if (!strcmp(argv[i], --callgraph))
+  printIndentLevel = true;
+else if (!file  strncmp(argv[i], --, 2))
   file = argv[i];
 else
   return printUsage();
@@ -76,7 +80,7 @@ int main(int argc, char *argv[])
 return 1;
   }
 
-  librevenge::RVNGRawDrawingGenerator painter;
+  librevenge::RVNGRawDrawingGenerator painter(printIndentLevel);
   libmspub::MSPUBDocument::parse(input, painter);
 
   return 0;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-2' - 2 commits - chart2/source

2013-11-30 Thread Laurent Balland-Poirier
 chart2/source/controller/dialogs/res_Trendline.cxx |   58 ++---
 chart2/source/controller/dialogs/res_Trendline.hxx |1 
 2 files changed, 53 insertions(+), 6 deletions(-)

New commits:
commit 1fee10725dbd62e78fd3ae14f0bd7872eabff3f9
Author: Laurent Balland-Poirier laurent.balland-poir...@laposte.net
Date:   Sun Nov 24 22:38:04 2013 +0100

fdo#40315 Improve UI for moving average trendline

If moving average trendline is selected, show equation is
uncheked, and all options disable

Change-Id: Ic25c09b8c8410a12ac9f14cb0ba7833f304053ee
Reviewed-on: https://gerrit.libreoffice.org/6796
Reviewed-by: Tomaž Vajngerl qui...@gmail.com
Tested-by: Tomaž Vajngerl qui...@gmail.com
Reviewed-on: https://gerrit.libreoffice.org/6856

diff --git a/chart2/source/controller/dialogs/res_Trendline.cxx 
b/chart2/source/controller/dialogs/res_Trendline.cxx
index 9c08a21..db83486 100644
--- a/chart2/source/controller/dialogs/res_Trendline.cxx
+++ b/chart2/source/controller/dialogs/res_Trendline.cxx
@@ -282,6 +282,18 @@ void TrendlineResources::FillValueSets()
 
 void TrendlineResources::UpdateControlStates()
 {
+bool bMovingAverage = ( m_eTrendLineType == CHREGRESS_MOVING_AVERAGE );
+m_pNF_ExtrapolateForward-Enable(!bMovingAverage);
+m_pNF_ExtrapolateBackward-Enable(!bMovingAverage);
+m_pCB_SetIntercept-Enable(!bMovingAverage);
+m_pNF_InterceptValue-Enable(!bMovingAverage);
+if(bMovingAverage)
+{
+m_pCB_ShowEquation-SetState( STATE_NOCHECK );
+m_pCB_ShowCorrelationCoeff-SetState( STATE_NOCHECK );
+}
+m_pCB_ShowEquation-Enable(!bMovingAverage);
+m_pCB_ShowCorrelationCoeff-Enable(!bMovingAverage);
 }
 
 IMPL_LINK( TrendlineResources, ChangeNumericField, NumericField *, 
pNumericField)
commit 78f227e1371ef4d11bc98e2116a3b95bb881b020
Author: Laurent Balland-Poirier laurent.balland-poir...@laposte.net
Date:   Sun Nov 24 22:11:56 2013 +0100

fdo#35712 fdo#40315 fdo#40314 Autoselect trendline type

Modification of Degree or Period select trendline type
Modification of Intercept select option

Change-Id: If3a212c381061e831ee4411c8e17fbaf8ca12895
Reviewed-on: https://gerrit.libreoffice.org/6815
Reviewed-by: Tomaž Vajngerl qui...@gmail.com
Tested-by: Tomaž Vajngerl qui...@gmail.com
Reviewed-on: https://gerrit.libreoffice.org/6855

diff --git a/chart2/source/controller/dialogs/res_Trendline.cxx 
b/chart2/source/controller/dialogs/res_Trendline.cxx
index f8ba0fa..9c08a21 100644
--- a/chart2/source/controller/dialogs/res_Trendline.cxx
+++ b/chart2/source/controller/dialogs/res_Trendline.cxx
@@ -58,12 +58,18 @@ TrendlineResources::TrendlineResources( Window * pParent, 
const SfxItemSet rInA
 ((SfxTabPage*)pParent)-get(m_pFI_MovingAverage,imageMovingAverage);
 FillValueSets();
 
-m_pRB_Linear-SetClickHdl( LINK(this, TrendlineResources, SelectTrendLine 
));
-m_pRB_Logarithmic-SetClickHdl( LINK(this, TrendlineResources, 
SelectTrendLine ));
-m_pRB_Exponential-SetClickHdl( LINK(this, TrendlineResources, 
SelectTrendLine ));
-m_pRB_Power-SetClickHdl( LINK(this, TrendlineResources, SelectTrendLine 
));
-m_pRB_Polynomial-SetClickHdl( LINK(this, TrendlineResources, 
SelectTrendLine ));
-m_pRB_MovingAverage-SetClickHdl( LINK(this, TrendlineResources, 
SelectTrendLine ));
+Link aLink = LINK(this, TrendlineResources, SelectTrendLine );
+m_pRB_Linear-SetClickHdl( aLink );
+m_pRB_Logarithmic-SetClickHdl( aLink );
+m_pRB_Exponential-SetClickHdl( aLink );
+m_pRB_Power-SetClickHdl( aLink );
+m_pRB_Polynomial-SetClickHdl( aLink );
+m_pRB_MovingAverage-SetClickHdl( aLink );
+
+aLink = LINK(this, TrendlineResources, ChangeNumericField );
+m_pNF_Degree-SetModifyHdl( aLink );
+m_pNF_Period-SetModifyHdl( aLink );
+m_pNF_InterceptValue-SetModifyHdl( aLink );
 
 m_pNF_ExtrapolateForward-SetMin( SAL_MIN_INT64 );
 m_pNF_ExtrapolateForward-SetMax( SAL_MAX_INT64 );
@@ -278,6 +284,34 @@ void TrendlineResources::UpdateControlStates()
 {
 }
 
+IMPL_LINK( TrendlineResources, ChangeNumericField, NumericField *, 
pNumericField)
+{
+if( pNumericField == m_pNF_Degree )
+{
+if( !m_pRB_Polynomial-IsChecked() )
+{
+m_pRB_Polynomial-Check();
+SelectTrendLine(m_pRB_Polynomial);
+}
+}
+else if( pNumericField == m_pNF_Period )
+{
+if( !m_pRB_MovingAverage-IsChecked() )
+{
+m_pRB_MovingAverage-Check();
+SelectTrendLine(m_pRB_MovingAverage);
+}
+}
+else if( pNumericField == m_pNF_InterceptValue )
+{
+if( !m_pCB_SetIntercept-IsChecked() )
+m_pCB_SetIntercept-Check();
+}
+UpdateControlStates();
+
+return 0;
+}
+
 } //  namespace chart
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/chart2/source/controller/dialogs/res_Trendline.hxx 

Re: Fix sort order of Dockes

2013-11-30 Thread Tae Wong
http://lists.freedesktop.org/archives/libreoffice/2013-November/057186.html
This is a spam post that has nothing at all to do with LibreOffice.

From the Blender mailing list info (see lists.blender.org for subscribing 
info):

http://lists.blender.org/mailman/listinfo/bf-committers
PLEASE SUBSCRIBE BEFORE MAILING TO THIS LIST!

http://lists.blender.org/mailman/listinfo/bf-funboard
PLEASE SUBSCRIBE BEFORE MAILING TO THIS LIST.

Both of these mailing lists are closed to postings from
non-subscribers. This notice is written in ALL CAPS.

Gerv from Mozilla Bugzilla wants to enable your account (seotaewong40)
from Mozilla Bugzilla.

The HTML file as an attachment is unrelated to LibreOffice.
Title: CSS Scrolling Credits






A short time ago in a list of individuals scrolling up...
The Mozilla, LibreOffice and Apache OpenOffice.org Development Team! With Document Foundation members. This list is repeating.





Agenda d.o.o.
Agile Interactions, Inc.
Centre for Development of Advanced Computing
Compaq Computer Corporation
Confucian Pro. Technology
Hungarian Linux Users, Association of
Infra-Resource
Kabrianis & Sia O.E. (Interzone)
Learning and Teaching Scotland
National Centre for Software Technology, India
Net Integration Technologies, Inc.
TK Open Systems Ltd.
Yellow iAB GmbH
Zuza Software Foundation
Jason Ackley
Carl Adams
Lucas Adamski
Tesfamicael Adhanom
Vaibhav Agarwal
Pablo Olmos De Aguilera
Masoud Ahmadzadeh
Taneem Ahmed
Volker Ahrendt
Christian Ahrenkiel
Ralph Aichinger
Gökşin Akdeniz
Sean Alamares
Jo Daniel Aleksandersen
Sam Allen
Warwick Allison
Florence Allizon-Juillet
Benoit Altenbourger
Ahmet Altin
Uwe Altmann
Pedro Alves
A. Ambrose
Nicholas Ambrose
Michal Ambroz
Brian M. Ames
Delali Amina
Jost Ammon
Paolo Amodio
Abdullah Anar
Gene Anaya
Allan Dreyer Andersen
Frank J. Andersen
Hans Christian Andersen
Jan Møller Andersen
Andrew Anderson
Harvey Anderson
Susanne Anderson
Ryota Ando
Markosyan Andranik
Mike Ang
Trần Đình Thục Anh
Pedro Antunes
Edwin Aoki
Artur Araújo
Carlos Araya
Michael Arbon
Magosanhi Ardho
Giuseppe Argento
Koichi Ariyoshi
Kevin Arnold
Sakari Aro
Takashi Asari
B.P. Ashwini
Marc Attinasi
Roberta Atzori
Ozan Ayten
Nattawat Palakawong Na Ayudhaya
Peter Babco
Natalia Babkina
Ariel Backenroth
Jeffrey G. Backes
Kai-Peter Backman
Leah Backus
Ryan Bacon
Monica Badia
Mauricio Baeza
Mitchell Baker
Rhian Baker
Rafael Pivetta Balbuena
Tomáš Balcíck
Michele Baldessari
Daniel Ferreira Balieiro
Jay Ball
Sascha Ballach
Miklos Banai (MultioRacio Ltd)
Claudio Bandaloukas
Rey Bango
Rodrigo Pedroso Barbosa
Gildecio E. Barboza
Omer Bar-or
Athur Barret
Túlio Miranda Barros
Andreas Bartel
Yvan Barthelemy
Hrega Basu
Ricardo Batista
German Bauer
Martin Baulig
Martin Bayer
Bo Bayles
Michael Bayne
Glen Beasley
Nick Beaudrot
Nicholas Bebout
Neal Bedard
Youssef Beghi
Kyle Begol
Stephen Beitzel
Artem Belevich
Andero Belov
Alexander Beluga
Boldizsar Bencsáth
Bracislav Bendik
Kurt-Rune Bergset
Mic Berman
Pete Bevin
Oliver Bietzer
Jatin Billimoria
Eric Bina
Seth Bindernagel
Marissa Bishop
Marlon Bishop
Torkil Bladt
Lukas Blakk
Martin Blapp
Garrett Blythe
Marco Boerries
Mark Bokil
Niousha Bolandzadeh
Myrzaliyer Bolat
Phillip Bond
Paul Booker
Alexander Bootman
Chris Booton
Dan Born
Gregor Bornemann
Maria Bosch
Eric Bosdonnat
Daniel Boss
Freddy Boswell (SIL International)
Mauro Botelho
Robert E. Boughner
Joey Bowles
Norris Boyd
Oisin Boydell
Catherine Brady
Cristovad Braga
Dave Bragsalla
Ryan Brase
Matthias Breuer
Marek Brezina
Daniel Brickley
Henning Brinkmann
Eric Broadbent
Sarah Broadwell
Tomas Brodsky
Alexander Brooks
Maarten Brouwers
Germaine Brown
Jeremy Browne
Erik Bruchez
Jörg Brunsmann
Alex Buchanan
Ronny Buelund
Edwin Burdak
Ariel Burone
Jonathan Buschmann
Grace Bush
Aidan Butler
Angela Butler-McDonald
Marc Byrd
Richard Bywater
Jeff Caldwell
Brian Cameron
Liselle Canham
Martin Cantieni
Guy Capra
Salvatore Cardali
Bjorn Carlson
Laurel Carlson
Anders Carlsson
Jan Carpenter
Christina L. Carr
Evan Carter
Pierangelo Casarotti
Regis Caspar
Andrew Cassin
Garrett Casto
Mauro Catarzi
Sergio Celani
Chakard Chalayut
Tak-Shing Chan of Aleph One Limited
Vicky Chan
Wan-Teh Chang
Luke Chastain
Andrew Chatham
Paul Chek
Emily Chen
Kimmy Chen
Leeing Chen
Ray Chen
Alan Cheng
Yu Aaron Cheng
M.L. Chethana
Troy Chevalier
Lisa Chiang
Noshre Chkhaidze
Jihiu Choi
Allan B. Christensen
Steen Christensen
Henrik R. Clausen
James Cleere
Bahtiyar Samet Çoban
David Cobb
Richard Cohn
Anders Colding-Jorgesen
Michael J. Cole
Mary Colvig
Karen Conatser
Alessandro Conte
Chris Cooper
Danese Cooper
Lee Corbin
Dietmar Cordes
Pavel Cornej
Catherine Corre
Martin Coxall
Tim Craycroft
Todd Crowe
Joszef Csongradi
Mariano Cuenze
J. Shane Culpepper
Alessandro Cumin
Alain Curt (Issendis)
Stacey Curtis

[Libreoffice-commits] dev-tools.git: scripts/esc-bug-stats.pl

2013-11-30 Thread Robinson Tryon
 scripts/esc-bug-stats.pl |   20 ++--
 1 file changed, 10 insertions(+), 10 deletions(-)

New commits:
commit e2343b142f422e1c2fec525693754c6e389c23fd
Author: Robinson Tryon qu...@runcibility.com
Date:   Sun Nov 17 00:53:39 2013 -0500

ESC-bug-stats: bugs.freedesktop.org - bugs.libreoffice.org

Bugzilla Migration

Change-Id: Ic94b41bf74f99dc4f4de9250c32a916cbb36f874
Reviewed-on: https://gerrit.libreoffice.org/6699
Reviewed-by: Michael Meeks michael.me...@collabora.com
Tested-by: Michael Meeks michael.me...@collabora.com

diff --git a/scripts/esc-bug-stats.pl b/scripts/esc-bug-stats.pl
index 313ddf6..4e9530c 100755
--- a/scripts/esc-bug-stats.pl
+++ b/scripts/esc-bug-stats.pl
@@ -161,7 +161,7 @@ sub crunch_bugstat_lines(@)
 sub build_overall_bugstats()
 {
 print STDERR Querying overall / top bug stats\n;
-my $url = 
'https://bugs.freedesktop.org/page.cgi?id=weekly-bug-summary.html';
+my $url = 
'https://bugs.libreoffice.org/page.cgi?id=weekly-bug-summary.html';
 
 print STDERR   + $url\n;
 crunch_bugstat_lines(get_url($url));
@@ -182,7 +182,7 @@ build_overall_bugstats();
 print STDERR Querying for open MABs:\n;
 for my $ver (sort keys %bug_to_ver) {
 my $bug = $bug_to_ver{$ver};
-my $base_url = https://bugs.freedesktop.org/showdependencytree.cgi?id=; . 
$bug;
+my $base_url = https://bugs.libreoffice.org/showdependencytree.cgi?id=; . 
$bug;
 my $all = get_deps($base_url);
 my $open = get_deps($base_url . hide_resolved=1);
 $percent = ($open * 100.0) / $all;
@@ -194,14 +194,14 @@ for my $ver (sort keys %bug_to_ver) {
 my ($reg_all, $reg_open);
 
 print STDERR Querying for regressions:\n;
-my 
$regression_query=https://bugs.freedesktop.org/buglist.cgi?columnlist=bug_severity%2Cpriority%2Ccomponent%2Cop_sys%2Cassigned_to%2Cbug_status%2Cresolution%2Cshort_desckeywords=regression%2C%20keywords_type=allwordslist_id=267671product=LibreOfficequery_format=advancedorder=bug_idlimit=0;;
-my 
$regression_open_query=https://bugs.freedesktop.org/buglist.cgi?keywords=regression%2C%20keywords_type=allwordslist_id=267687columnlist=bug_severity%2Cpriority%2Ccomponent%2Cop_sys%2Cassigned_to%2Cbug_status%2Cresolution%2Cshort_descresolution=---query_based_on=Regressionsquery_format=advancedproduct=LibreOfficeknown_name=Regressionslimit=0;;
+my 
$regression_query=https://bugs.libreoffice.org/buglist.cgi?columnlist=bug_severity%2Cpriority%2Ccomponent%2Cop_sys%2Cassigned_to%2Cbug_status%2Cresolution%2Cshort_desckeywords=regression%2C%20keywords_type=allwordslist_id=267671product=LibreOfficequery_format=advancedorder=bug_idlimit=0;;
+my 
$regression_open_query=https://bugs.libreoffice.org/buglist.cgi?keywords=regression%2C%20keywords_type=allwordslist_id=267687columnlist=bug_severity%2Cpriority%2Ccomponent%2Cop_sys%2Cassigned_to%2Cbug_status%2Cresolution%2Cshort_descresolution=---query_based_on=Regressionsquery_format=advancedproduct=LibreOfficeknown_name=Regressionslimit=0;;
 $reg_all = get_query($regression_query);
 $reg_open = get_query($regression_open_query);
 
 print STDERR Querying for bibisection:\n;
-my $bibisect_query = 
https://bugs.freedesktop.org/buglist.cgi?n2=1f1=status_whiteboardlist_id=267679o1=substringresolution=---resolution=FIXEDresolution=INVALIDresolution=WONTFIXresolution=DUPLICATEresolution=WORKSFORMEresolution=MOVEDresolution=NOTABUGresolution=NOTOURBUGquery_based_on=BibisectedAllo2=substringquery_format=advancedf2=status_whiteboardv1=bibisectedv2=bibisected35olderproduct=LibreOfficeknown_name=BibisectedAlllimit=0;;
-my $bibisect_open_query = 
https://bugs.freedesktop.org/buglist.cgi?n2=1f1=status_whiteboardlist_id=267685o1=substringresolution=---query_based_on=Bibisectedo2=substringquery_format=advancedf2=status_whiteboardv1=bibisectedv2=bibisected35olderproduct=LibreOfficeknown_name=Bibisectedlimit=0;;
+my $bibisect_query = 
https://bugs.libreoffice.org/buglist.cgi?n2=1f1=status_whiteboardlist_id=267679o1=substringresolution=---resolution=FIXEDresolution=INVALIDresolution=WONTFIXresolution=DUPLICATEresolution=WORKSFORMEresolution=MOVEDresolution=NOTABUGresolution=NOTOURBUGquery_based_on=BibisectedAllo2=substringquery_format=advancedf2=status_whiteboardv1=bibisectedv2=bibisected35olderproduct=LibreOfficeknown_name=BibisectedAlllimit=0;;
+my $bibisect_open_query = 
https://bugs.libreoffice.org/buglist.cgi?n2=1f1=status_whiteboardlist_id=267685o1=substringresolution=---query_based_on=Bibisectedo2=substringquery_format=advancedf2=status_whiteboardv1=bibisectedv2=bibisected35olderproduct=LibreOfficeknown_name=Bibisectedlimit=0;;
 
 my ($all, $open);
 $all = get_query($bibisect_query);
@@ -219,13 +219,13 @@ print STDERR \n;
 my %component_count;
 
 # custom pieces
-$component_count{'Migration'} = 
get_deps(https://bugs.freedesktop.org/showdependencytree.cgi?id=43489hide_resolved=1;);
-$component_count{'Crashes'} = 

[Bug 60270] LibreOffice 4.1 most annoying bugs

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60270

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Depends on||71423

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


debug symbols for current Windows TB-39 LODev 4.3.0.0 master build

2013-11-30 Thread V Stuart Foote
@Kendy,

Any chance of  putting up Windows debug symbols to go with the
--enable-debug configured debug build of master you're spinning on TB-39?

Have a crash  fdo#72185 https://bugs.freedesktop.org/show_bug.cgi?id=72185  
with limited log details when running on Windows XP with the IAccessible2
bridge active, hopping to tease out a stack trace.

Stuart






--
View this message in context: 
http://nabble.documentfoundation.org/debug-symbols-for-current-Windows-TB-39-LODev-4-3-0-0-master-build-tp4085869.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: Branch 'libreoffice-4-2' - 3 commits - sc/source

2013-11-30 Thread Markus Mohrhard
 sc/source/filter/excel/excdoc.cxx   |   14 +-
 sc/source/filter/excel/excrecds.cxx |2 +-
 sc/source/filter/excel/xestyle.cxx  |   12 ++--
 3 files changed, 16 insertions(+), 12 deletions(-)

New commits:
commit b9410131861af3a5f54d0585dfc47e5f512e0320
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sat Nov 30 18:40:39 2013 +0100

make the validation tool happy

This is just fucking awesome. The MSO implementers notes mention this
attribute and point to some extended information that is either missing
or does not mention this attribute. To make it more funny the MSO
validation complains about invalid values in this attribute for our
export.

Change-Id: Iacf1af9f6124106952ae19ae5d5866bc8cf1

diff --git a/sc/source/filter/excel/excrecds.cxx 
b/sc/source/filter/excel/excrecds.cxx
index 01b2432a..9be9bfe 100644
--- a/sc/source/filter/excel/excrecds.cxx
+++ b/sc/source/filter/excel/excrecds.cxx
@@ -519,7 +519,7 @@ void XclExpSheetProtection::SaveXml( XclExpXmlStream rStrm 
)
 sax_fastparser::FSHelperPtr rWorksheet = rStrm.GetCurrentStream();
 rWorksheet-singleElement( XML_sheetProtection,
 XML_sheet,  XclXmlUtils::ToPsz( true ),
-XML_password, sHash.getStr(),
+XML_password, sHash.isEmpty()? NULL : sHash.getStr(),
 XML_objects, pTabProtect-isOptionEnabled( 
ScTableProtection::OBJECTS ) ? NULL : XclXmlUtils::ToPsz( true ),
 XML_scenarios, pTabProtect-isOptionEnabled( 
ScTableProtection::SCENARIOS ) ? NULL : XclXmlUtils::ToPsz( true ),
 XML_formatCells, pTabProtect-isOptionEnabled( 
ScTableProtection::FORMAT_CELLS ) ? XclXmlUtils::ToPsz( false ) : NULL,
commit d0f664014d02e02fbcfa80c118a0950f45513ada
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sat Nov 30 18:19:40 2013 +0100

more OOXML export validation fixes, fdo#71971

Change-Id: Ic322d58817986887bbcd666ac3abc416609adf5c

diff --git a/sc/source/filter/excel/excdoc.cxx 
b/sc/source/filter/excel/excdoc.cxx
index 574dcbb..a8bfbf7 100644
--- a/sc/source/filter/excel/excdoc.cxx
+++ b/sc/source/filter/excel/excdoc.cxx
@@ -561,6 +561,7 @@ void ExcTable::FillAsXmlTable( SCTAB nCodeNameIdx )
 aRecList.AppendRecord( mxCellTable );
 
 // label ranges
+// missing SaveXML
 Add( new XclExpLabelranges( GetRoot() ) );
 
 // DFF not needed in MSOOXML export
@@ -572,15 +573,23 @@ void ExcTable::FillAsXmlTable( SCTAB nCodeNameIdx )
 //Add( rR.pObjRecs );
 
 // pivot tables
+// not in the worksheet file
 aRecList.AppendRecord( GetPivotTableManager().CreatePivotTablesRecord( 
mnScTab ) );
 
 // list of NOTE records, generated by the cell table
+// not in the worksheet file
 if( mxNoteList != 0  !mxNoteList-IsEmpty() )
 aRecList.AppendNewRecord( new XclExpComments( mnScTab, *mxNoteList ) );
 
 // web queries
+// missing SaveXML implementation
 Add( new XclExpWebQueryBuffer( GetRoot() ) );
 
+ScDocument rDoc = GetDoc();
+const ScTableProtection* pTabProtect = rDoc.GetTabProtection(mnScTab);
+if (pTabProtect  pTabProtect-isProtected())
+Add( new XclExpSheetProtection(true, mnScTab) );
+
 lcl_AddScenariosAndFilters( aRecList, GetRoot(), mnScTab );
 
 // MERGEDCELLS record, generated by the cell table
@@ -589,11 +598,6 @@ void ExcTable::FillAsXmlTable( SCTAB nCodeNameIdx )
 // conditional formats
 Add( new XclExpCondFormatBuffer( GetRoot(), xExtLst ) );
 
-ScDocument rDoc = GetDoc();
-const ScTableProtection* pTabProtect = rDoc.GetTabProtection(mnScTab);
-if (pTabProtect  pTabProtect-isProtected())
-Add( new XclExpSheetProtection(true, mnScTab) );
-
 if( HasVbaStorage() )
 if( nCodeNameIdx  GetExtDocOptions().GetCodeNameCount() )
 Add( new XclCodename( GetExtDocOptions().GetCodeName( nCodeNameIdx 
) ) );
commit 5ce4d7233fa3ea627cfbdc97a68d2b23e4abd057
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sat Nov 30 06:50:50 2013 +0100

write valid dxf record, related fdo#71971

Change-Id: I99f4dfca78cc0fd5d9b947000a99f8414c2a899b

diff --git a/sc/source/filter/excel/xestyle.cxx 
b/sc/source/filter/excel/xestyle.cxx
index 0769ea3..59603eb 100644
--- a/sc/source/filter/excel/xestyle.cxx
+++ b/sc/source/filter/excel/xestyle.cxx
@@ -3021,18 +3021,18 @@ void XclExpDxf::SaveXml( XclExpXmlStream rStrm )
 sax_fastparser::FSHelperPtr rStyleSheet = rStrm.GetCurrentStream();
 rStyleSheet-startElement( XML_dxf, FSEND );
 
-if (mpAlign)
-mpAlign-SaveXml(rStrm);
-if (mpBorder)
-mpBorder-SaveXml(rStrm);
 if (mpFont)
 mpFont-SaveXml(rStrm);
 if (mpNumberFmt)
 mpNumberFmt-SaveXml(rStrm);
-if (mpProt)
-mpProt-SaveXml(rStrm);
 if (mpColor)
 mpColor-SaveXml(rStrm);
+if (mpAlign)
+mpAlign-SaveXml(rStrm);
+if (mpBorder)
+mpBorder-SaveXml(rStrm);

[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - sc/source

2013-11-30 Thread Eike Rathke
 sc/source/filter/inc/formulabase.hxx |1 +
 sc/source/filter/oox/formulabase.cxx |   27 ---
 2 files changed, 17 insertions(+), 11 deletions(-)

New commits:
commit 80994001d563ffd51f008eae4eb88c6eb2b7d38b
Author: Eike Rathke er...@redhat.com
Date:   Sat Nov 2 21:03:17 2013 +0100

resolved fdo#67572 export add-in equivalents as internal to .xlsx

For OOXML .xlsx export the add-in functions that are equivalents of
known internal functions as those internal functions.

(cherry picked from commit da7c6092a644dc22f90fb8eef0c4f0df06ec204a)

Minus the DURATION change that was fixed on master (and 4.2) with
62e1a27dc757637223f5f18b1a340ba138e0cb82

Change-Id: Ic41f32b67902effa07c3d4db137be08dc5af7265
Reviewed-on: https://gerrit.libreoffice.org/6530
Reviewed-by: Markus Mohrhard markus.mohrh...@googlemail.com
Tested-by: Markus Mohrhard markus.mohrh...@googlemail.com

diff --git a/sc/source/filter/inc/formulabase.hxx 
b/sc/source/filter/inc/formulabase.hxx
index cb2785e..50948f7 100644
--- a/sc/source/filter/inc/formulabase.hxx
+++ b/sc/source/filter/inc/formulabase.hxx
@@ -499,6 +499,7 @@ struct FunctionInfo
 boolmbParamPairs;   /// True = optional parameters are 
expected to appear in pairs.
 boolmbVolatile; /// True = volatile function.
 boolmbExternal; /// True = external function in 
Calc.
+boolmbInternal; /// True = internal function in 
Calc. (Both can be true!)
 boolmbMacroFunc;/// True = macro sheet function or 
command.
 boolmbVarParam; /// True = use a tFuncVar token, 
also if min/max are equal.
 };
diff --git a/sc/source/filter/oox/formulabase.cxx 
b/sc/source/filter/oox/formulabase.cxx
index d0db2e7..c222e7e 100644
--- a/sc/source/filter/oox/formulabase.cxx
+++ b/sc/source/filter/oox/formulabase.cxx
@@ -212,6 +212,7 @@ const sal_uInt16 FUNCFLAG_MACROCALL_NEW = 
FUNCFLAG_MACROCALL | FUNCFLAG_MACR
 must exist. */
 const sal_uInt16 FUNCFLAG_BIFFIMPORTONLY= 0x0800;   /// Only used in BIFF 
binary import filter.
 const sal_uInt16 FUNCFLAG_BIFFEXPORTONLY= 0x1000;   /// Only used in BIFF 
binary export filter.
+const sal_uInt16 FUNCFLAG_INTERNAL  = 0x2000;   /// Function is 
internal in Calc.
 
 /// Converts a function library index (value of enum FunctionLibraryType) to 
function flags.
 #define FUNCLIB_TO_FUNCFLAGS( funclib_index ) static_cast sal_uInt16 ( 
static_cast sal_uInt8 ( funclib_index )  12 )
@@ -584,8 +585,8 @@ static const FunctionData saFuncTableBiff4[] =
 { QUOTIENT,   QUOTIENT, 417,NOID,   2,  2, 
 V, { RR }, FUNCFLAG_EXTERNAL },
 { DELTA,  DELTA,418,NOID,   1,  2, 
 V, { RR }, FUNCFLAG_EXTERNAL },
 { GESTEP, GESTEP,   419,NOID,   1,  2, 
 V, { RR }, FUNCFLAG_EXTERNAL },
-{ ISEVEN, ISEVEN,   420,NOID,   1,  1, 
 V, { RR }, FUNCFLAG_EXTERNAL },   // Calc: builtin and add-in
-{ ISODD,  ISODD,421,NOID,   1,  1, 
 V, { RR }, FUNCFLAG_EXTERNAL },   // Calc: builtin and add-in
+{ ISEVEN, ISEVEN,   420,NOID,   1,  1, 
 V, { RR }, FUNCFLAG_EXTERNAL | FUNCFLAG_INTERNAL }, // Calc: builtin and add-in
+{ ISODD,  ISODD,421,NOID,   1,  1, 
 V, { RR }, FUNCFLAG_EXTERNAL | FUNCFLAG_INTERNAL }, // Calc: builtin and add-in
 { MROUND, MROUND,   422,NOID,   2,  2, 
 V, { RR }, FUNCFLAG_EXTERNAL },
 { ERF,ERF,  423,NOID,   1,  2, 
 V, { RR }, FUNCFLAG_EXTERNAL },
 { ERFC,   ERFC, 424,NOID,   1,  1, 
 V, { RR }, FUNCFLAG_EXTERNAL },
@@ -609,10 +610,10 @@ static const FunctionData saFuncTableBiff4[] =
 { YIELD,  YIELD,442,NOID,   6,  7, 
 V, { RR }, FUNCFLAG_EXTERNAL },
 { DOLLARDE,   DOLLARDE, 443,NOID,   2,  2, 
 V, { RR }, FUNCFLAG_EXTERNAL },
 { DOLLARFR,   DOLLARFR, 444,NOID,   2,  2, 
 V, { RR }, FUNCFLAG_EXTERNAL },
-{ NOMINAL,NOMINAL,  445,NOID,   2,  2, 
 V, { RR }, FUNCFLAG_EXTERNAL },   // Calc: builtin and add-in
-{ EFFECT, EFFECT,   446,NOID,   2,  2, 
 V, { RR }, FUNCFLAG_EXTERNAL },   // Calc: builtin and add-in
-{ CUMPRINC,   CUMPRINC, 447,NOID,   6,  6, 
 V, { RR }, FUNCFLAG_EXTERNAL },   // Calc: builtin and add-in
-{ CUMIPMT,CUMIPMT,  448,NOID,   6,  6, 
 V, { RR }, FUNCFLAG_EXTERNAL },   // Calc: builtin and add-in
+{ NOMINAL,

[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - sc/source

2013-11-30 Thread Eike Rathke
 sc/source/core/data/table2.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 1aa9bae0ffea4b37392175197f58f26001c06c66
Author: Eike Rathke er...@redhat.com
Date:   Sat Nov 23 12:16:51 2013 +0100

resolved fdo#61946 use correct TabDelta for UpdateReference

The sheet delta was reverted resulting in the references not being
updated when conditional formats were copy-pasted between sheets. Saved
to .ods then was an identical calcext:target-range-address as for the
copied source range.

(cherry picked from commit ef8e0beba442f58abe3bc77f6f55fc6109025dd4)

Backported.

Change-Id: I038b58f20f71ff1393dccafa3021dac02cd69e4b
Reviewed-on: https://gerrit.libreoffice.org/6768
Tested-by: Markus Mohrhard markus.mohrh...@googlemail.com
Reviewed-by: Markus Mohrhard markus.mohrh...@googlemail.com

diff --git a/sc/source/core/data/table2.cxx b/sc/source/core/data/table2.cxx
index 220211c..6c530d3 100644
--- a/sc/source/core/data/table2.cxx
+++ b/sc/source/core/data/table2.cxx
@@ -712,7 +712,7 @@ void ScTable::CopyConditionalFormat( SCCOL nCol1, SCROW 
nRow1, SCCOL nCol2, SCRO
 ScConditionalFormat* pNewFormat = itr-Clone(pDocument);
 
 pNewFormat-AddRange(aIntersectedRange);
-pNewFormat-UpdateReference(URM_COPY, aNewRange, nDx, nDy, 
pTable-nTab - nTab, true);
+pNewFormat-UpdateReference(URM_COPY, aNewRange, nDx, nDy, nTab - 
pTable-nTab, true);
 
 sal_uLong nMax = 0;
 for(ScConditionalFormatList::const_iterator itrCond = 
mpCondFormatList-begin();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - sc/inc sc/source

2013-11-30 Thread Eike Rathke
 sc/inc/tablink.hxx |8 +++-
 sc/source/ui/docshell/arealink.cxx |2 +-
 sc/source/ui/docshell/tablink.cxx  |   18 --
 3 files changed, 20 insertions(+), 8 deletions(-)

New commits:
commit ea40b8b14d830f5025a3fe2e9da9163b83a843e5
Author: Eike Rathke er...@redhat.com
Date:   Wed Nov 27 00:04:44 2013 +0100

resolved fdo#53103 actually use the external data filter options

ScDocShell::ConvertFrom() queries the filter options from the SfxItemSet
at SfxMedium, which is fine when loading the data into the table
selector first, but the final load via ScAreaLink created a bare
SfxMedium without options set. Do so.

Additionally it may now even work that ScDocShell sets options at
SfxMedium, which the ScAreaLink code prepared for but previously the
SfxMedium did not have an SfxItemSet.

Change-Id: I45d6a24906dc3ba41654b8c0951dd84939d8af5e
(cherry picked from commit 513eadd422ff6a41cfe9a16f82cf32872d729652)
Reviewed-on: https://gerrit.libreoffice.org/6823
Reviewed-by: Markus Mohrhard markus.mohrh...@googlemail.com
Tested-by: Markus Mohrhard markus.mohrh...@googlemail.com

diff --git a/sc/inc/tablink.hxx b/sc/inc/tablink.hxx
index 068d87f..49833af 100644
--- a/sc/inc/tablink.hxx
+++ b/sc/inc/tablink.hxx
@@ -72,6 +72,7 @@ public:
 
 class ScDocument;
 class SfxMedium;
+class SfxFilter;
 
 class SC_DLLPUBLIC ScDocumentLoader
 {
@@ -96,7 +97,12 @@ public:
 
 voidReleaseDocRef();// without calling DoClose
 
-static OUString GetOptions( SfxMedium rMedium );
+/** Create SfxMedium for stream read with SfxFilter and filter options set
+at the medium's SfxItemSet.
+ */
+static SfxMedium*   CreateMedium( const OUString rFileName, const 
SfxFilter* pFilter, const OUString rOptions );
+
+static OUString GetOptions( SfxMedium rMedium );
 
 /** Returns the filter name and options from a file name.
 @param bWithContent
diff --git a/sc/source/ui/docshell/arealink.cxx 
b/sc/source/ui/docshell/arealink.cxx
index 6409fbd..f80c80a 100644
--- a/sc/source/ui/docshell/arealink.cxx
+++ b/sc/source/ui/docshell/arealink.cxx
@@ -253,7 +253,7 @@ sal_Bool ScAreaLink::Refresh( const String rNewFile, const 
String rNewFilter,
 if ( rNewFilter != aFilterName )
 aOptions.Erase();
 
-SfxMedium* pMed = new SfxMedium(aNewUrl, STREAM_STD_READ, pFilter);
+SfxMedium* pMed = ScDocumentLoader::CreateMedium( aNewUrl, pFilter, 
aOptions);
 
 // aRef-DoClose() will be closed explicitly, but it is still more safe to 
use SfxObjectShellLock here
 ScDocShell* pSrcShell = new ScDocShell(SFX_CREATE_MODE_INTERNAL);
diff --git a/sc/source/ui/docshell/tablink.cxx 
b/sc/source/ui/docshell/tablink.cxx
index ba1ed72..0164e27 100644
--- a/sc/source/ui/docshell/tablink.cxx
+++ b/sc/source/ui/docshell/tablink.cxx
@@ -519,6 +519,17 @@ void ScDocumentLoader::RemoveAppPrefix( OUString 
rFilterName )
 rFilterName = rFilterName.copy( aAppPrefix.getLength());
 }
 
+SfxMedium* ScDocumentLoader::CreateMedium( const OUString rFileName, const 
SfxFilter* pFilter,
+const OUString rOptions )
+{
+// Always create SfxItemSet so ScDocShell can set options.
+SfxItemSet* pSet = new SfxAllItemSet( SFX_APP()-GetPool() );
+if ( !rOptions.isEmpty() )
+pSet-Put( SfxStringItem( SID_FILE_FILTEROPTIONS, rOptions ) );
+
+return new SfxMedium( rFileName, STREAM_STD_READ, pFilter, pSet );
+}
+
 ScDocumentLoader::ScDocumentLoader( const OUString rFileName,
 OUString rFilterName, OUString rOptions,
 sal_uInt32 nRekCnt, bool bWithInteraction 
) :
@@ -530,12 +541,7 @@ ScDocumentLoader::ScDocumentLoader( const OUString 
rFileName,
 
 const SfxFilter* pFilter = 
ScDocShell::Factory().GetFilterContainer()-GetFilter4FilterName( rFilterName );
 
-//  ItemSet immer anlegen, damit die DocShell die Optionen setzen kann
-SfxItemSet* pSet = new SfxAllItemSet( SFX_APP()-GetPool() );
-if ( !rOptions.isEmpty() )
-pSet-Put( SfxStringItem( SID_FILE_FILTEROPTIONS, rOptions ) );
-
-pMedium = new SfxMedium( rFileName, STREAM_STD_READ, pFilter, pSet );
+pMedium = CreateMedium( rFileName, pFilter, rOptions);
 if ( pMedium-GetError() != ERRCODE_NONE )
 return ;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - sc/source

2013-11-30 Thread Eike Rathke
 sc/source/filter/excel/xeformula.cxx |   16 +---
 sc/source/filter/excel/xlformula.cxx |   24 +++-
 sc/source/filter/inc/xlformula.hxx   |   13 +++--
 3 files changed, 47 insertions(+), 6 deletions(-)

New commits:
commit db0d51e647e01d852ef95e46e12f1dba2d09be2b
Author: Eike Rathke er...@redhat.com
Date:   Sat Nov 2 16:25:42 2013 +0100

resolved fdo#67536 export internal equivalents as add-in to .xls

For BIFF .xls export the internal functions that are equivalents of
known add-in functions as those add-in functions.

(cherry picked from commit 06a5b1ecc39bb50dadc0bcb7378455500943ece3)

Conflicts:
sc/source/filter/inc/xlformula.hxx

Change-Id: If37f616a34fdabb3fa971fddad01da3dc1f28ee9
Reviewed-on: https://gerrit.libreoffice.org/6525
Reviewed-by: Markus Mohrhard markus.mohrh...@googlemail.com
Tested-by: Markus Mohrhard markus.mohrh...@googlemail.com

diff --git a/sc/source/filter/excel/xeformula.cxx 
b/sc/source/filter/excel/xeformula.cxx
index 5265bd1..d58e0ba 100644
--- a/sc/source/filter/excel/xeformula.cxx
+++ b/sc/source/filter/excel/xeformula.cxx
@@ -139,6 +139,7 @@ public:
 inline sal_uInt16   GetXclFuncIdx() const { return mrFuncInfo.mnXclFunc; }
 inline bool IsVolatile() const { return mrFuncInfo.IsVolatile(); }
 inline bool IsFixedParamCount() const { return 
mrFuncInfo.IsFixedParamCount(); }
+inline bool IsAddInEquivalent() const { return 
mrFuncInfo.IsAddInEquivalent(); }
 inline bool IsMacroFunc() const { return mrFuncInfo.IsMacroFunc(); 
}
 inline sal_uInt8GetSpaces() const { return mrTokData.mnSpaces; }
 inline const XclExpExtFuncData GetExtFuncData() const { return 
maExtFuncData; }
@@ -1360,8 +1361,11 @@ void XclExpFmlaCompImpl::ProcessFunction( const 
XclExpScToken rTokData )
 mxData-mbOk = pFuncInfo != 0;
 if( !mxData-mbOk ) return;
 
+// internal functions equivalent to an existing add-in
+if( pFuncInfo-IsAddInEquivalent() )
+aExtFuncData.Set( pFuncInfo-GetAddInEquivalentFuncName(), true, false 
);
 // functions simulated by a macro call in file format
-if( pFuncInfo-IsMacroFunc() )
+else if( pFuncInfo-IsMacroFunc() )
 aExtFuncData.Set( pFuncInfo-GetMacroFuncName(), false, true );
 
 XclExpFuncData aFuncData( rTokData, *pFuncInfo, aExtFuncData );
@@ -1643,8 +1647,11 @@ void XclExpFmlaCompImpl::AppendDefaultParam( 
XclExpFuncData rFuncData )
 break;
 default:
 {
-OSL_ENSURE( rFuncData.IsMacroFunc(), 
XclExpFmlaCompImpl::AppendDefaultParam - unknown opcode );
-if( rFuncData.IsMacroFunc() )
+if( rFuncData.IsAddInEquivalent() )
+{
+AppendAddInCallToken( rFuncData.GetExtFuncData() );
+}
+else if( rFuncData.IsMacroFunc() )
 {
 // Do not write the OOXML definedName element for new _xlfn.
 // prefixed functions.
@@ -1654,7 +1661,10 @@ void XclExpFmlaCompImpl::AppendDefaultParam( 
XclExpFuncData rFuncData )
 AppendMacroCallToken( rFuncData.GetExtFuncData() );
 }
 else
+{
+SAL_WARN( sc.filter, XclExpFmlaCompImpl::AppendDefaultParam 
- unknown opcode );
 AppendMissingToken();   // to keep parameter count valid
+}
 }
 }
 
diff --git a/sc/source/filter/excel/xlformula.cxx 
b/sc/source/filter/excel/xlformula.cxx
index d4bdc86..a04a101 100644
--- a/sc/source/filter/excel/xlformula.cxx
+++ b/sc/source/filter/excel/xlformula.cxx
@@ -40,6 +40,13 @@ String XclFunctionInfo::GetMacroFuncName() const
 return EMPTY_STRING;
 }
 
+String XclFunctionInfo::GetAddInEquivalentFuncName() const
+{
+if( IsAddInEquivalent() )
+return String( mpcMacroName, strlen(mpcMacroName), 
RTL_TEXTENCODING_UTF8 );
+return EMPTY_STRING;
+}
+
 // abbreviations for function return token class
 const sal_uInt8 R = EXC_TOKCLASS_REF;
 const sal_uInt8 V = EXC_TOKCLASS_VAL;
@@ -64,6 +71,7 @@ const sal_uInt8 MX= 30; /// Maximum 
parameter count.
 
 #define EXC_FUNCNAME( ascii )   _xlfn. ascii
 #define EXC_FUNCNAME_ODF( ascii )   _xlfnodf. ascii
+#define EXC_FUNCNAME_ADDIN( ascii )   com.sun.star.sheet.addin. ascii
 
 /** Functions new in BIFF2. */
 static const XclFunctionInfo saFuncTable_2[] =
@@ -309,7 +317,21 @@ static const XclFunctionInfo saFuncTable_4[] =
 { ocPercentrank,329,2,  3,  V, { RX, VR, VR_E }, 0, 0 },
 { ocModalValue, 330,1,  MX, V, { VA }, 0, 0 },
 { ocTrimMean,   331,2,  2,  V, { RX, VR }, 0, 0 },
-{ ocTInv,   332,2,  2,  V, { VR }, 0, 0 }
+{ ocTInv,   332,2,  2,  V, { VR }, 0, 0 },
+// Functions equivalent to add-in functions, use same parameters as
+// ocExternal but add programmatical function name (here 

New feature in LibreOffice Draw can automate diagrams in Seconds

2013-11-30 Thread -

Hello,
We have created a video showing a new cool feature, never seen before, 
that allow LibreOffice Draw to automate complex diagrams in seconds. The 
video is a feature demo, and it need coding, so people willing to create 
an add-on or the code to implement this feature in Draw, are really welcome.
The feature allows you to create extremely complex diagrams in seconds, 
increasing the productivity in a 79%
The work of 8 hours, can be done in only 2. We have created a full 
review of the feature request in video.


The video is available in Youtube here:

https://www.youtube.com/watch?v=LOBjTe-N_-I

Please, feel free to download the video, or share the link.

It is hidding, so only people knowing the link, can see it.
It is fully documented, and in High Definition (720p), so you can see it 
better.
The video is in English, but you can also understand the feature, 
watching the video.
If someone would like to start a team to implement this feature, it 
would be great.

This feature never have seen before in Office type packages.
Since a programmer's point of view, it should be easy to create it:
Basically, you only need to create a window, with 2 or 3 already 
toolbars existing in Draw, allow a simle data entry box, read the data 
entry, searching for the commas (,) as separators for the words, 
converting those words in metatags or simply tags, and then, flowchart 
all those words, creating automatically the flowchart.
Please, better watch the video, because you will see perfectly how the 
feature works.


Cheers,
Javier

PS. This feature has an important application for large corporations, 
researchers and universities, because allow to create very large 
diagrams, only typing text in a command line. Type, press Intro, 
flowchart. As easy as that.

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


[Libreoffice-commits] core.git: oox/source

2013-11-30 Thread Markus Mohrhard
 oox/source/export/chartexport.cxx |7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

New commits:
commit 4b0d5b7cb08148a53ff7f64c48f52a3291b7a0c3
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sun Dec 1 04:19:09 2013 +0100

fix validation error for OOXML chart export, related fdo#67300

Change-Id: I7d74439bba3b912fe9b81ebeca865298bc32d71e

diff --git a/oox/source/export/chartexport.cxx 
b/oox/source/export/chartexport.cxx
index 9c004e0..c372151 100644
--- a/oox/source/export/chartexport.cxx
+++ b/oox/source/export/chartexport.cxx
@@ -1278,8 +1278,11 @@ void ChartExport::exportPieChart( Reference 
chart2::XChartType  xChartType )
 sal_Int32 nAttachedAxis = AXIS_PRIMARY_Y;
 exportSeries( xChartType, nAttachedAxis );
 
-// firstSliceAng
-exportFirstSliceAng( );
+if( !mbIs3DChart )
+{
+// firstSliceAng
+exportFirstSliceAng( );
+}
 
 pFS-endElement( FSNS( XML_c, nTypeId ) );
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-2' - oox/source

2013-11-30 Thread Markus Mohrhard
 oox/source/export/chartexport.cxx |7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

New commits:
commit 666ef5425e4e7e1a01c3dddbd0d847fec193176a
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sun Dec 1 04:19:09 2013 +0100

fix validation error for OOXML chart export, related fdo#67300

Change-Id: I7d74439bba3b912fe9b81ebeca865298bc32d71e

diff --git a/oox/source/export/chartexport.cxx 
b/oox/source/export/chartexport.cxx
index 36412be..756f2ed 100644
--- a/oox/source/export/chartexport.cxx
+++ b/oox/source/export/chartexport.cxx
@@ -1278,8 +1278,11 @@ void ChartExport::exportPieChart( Reference 
chart2::XChartType  xChartType )
 sal_Int32 nAttachedAxis = AXIS_PRIMARY_Y;
 exportSeries( xChartType, nAttachedAxis );
 
-// firstSliceAng
-exportFirstSliceAng( );
+if( !mbIs3DChart )
+{
+// firstSliceAng
+exportFirstSliceAng( );
+}
 
 pFS-endElement( FSNS( XML_c, nTypeId ) );
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-2' - oox/source sc/source

2013-11-30 Thread Markus Mohrhard
 oox/source/drawingml/chart/typegroupconverter.cxx |4 ++--
 sc/source/filter/excel/xichart.cxx|4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 80373a6969fd8d3c19231041e465372cf03f53f2
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sun Dec 1 04:45:36 2013 +0100

fix 2D vs 3D coordinatesystem regression, fdo#67300

regression from 088e86b865062dd4cc5ba0c85c6068dea62238db

diff --git a/oox/source/drawingml/chart/typegroupconverter.cxx 
b/oox/source/drawingml/chart/typegroupconverter.cxx
index bf8e166..b87fc45 100644
--- a/oox/source/drawingml/chart/typegroupconverter.cxx
+++ b/oox/source/drawingml/chart/typegroupconverter.cxx
@@ -248,9 +248,9 @@ Reference XCoordinateSystem  
TypeGroupConverter::createCoordinateSystem()
 if( maTypeInfo.mbPolarCoordSystem )
 {
 if( mb3dChart )
-xCoordSystem = 
css::chart2::PolarCoordinateSystem2d::create(xContext);
-else
 xCoordSystem = 
css::chart2::PolarCoordinateSystem3d::create(xContext);
+else
+xCoordSystem = 
css::chart2::PolarCoordinateSystem2d::create(xContext);
 }
 else
 {
diff --git a/sc/source/filter/excel/xichart.cxx 
b/sc/source/filter/excel/xichart.cxx
index 51e00c1..060aa51 100644
--- a/sc/source/filter/excel/xichart.cxx
+++ b/sc/source/filter/excel/xichart.cxx
@@ -2335,9 +2335,9 @@ Reference XCoordinateSystem  
XclImpChType::CreateCoordSystem( bool b3dChart )
 if( maTypeInfo.mbPolarCoordSystem )
 {
 if( b3dChart )
-xCoordSystem = 
css::chart2::PolarCoordinateSystem2d::create(xContext);
-else
 xCoordSystem = 
css::chart2::PolarCoordinateSystem3d::create(xContext);
+else
+xCoordSystem = 
css::chart2::PolarCoordinateSystem2d::create(xContext);
 }
 else
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: oox/source sc/source

2013-11-30 Thread Markus Mohrhard
 oox/source/drawingml/chart/typegroupconverter.cxx |4 ++--
 sc/source/filter/excel/xichart.cxx|4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 120dca2608a23f70b7ab8fc658a10123eb08e58a
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sun Dec 1 04:45:36 2013 +0100

fix 2D vs 3D coordinatesystem regression, fdo#67300

regression from 088e86b865062dd4cc5ba0c85c6068dea62238db

diff --git a/oox/source/drawingml/chart/typegroupconverter.cxx 
b/oox/source/drawingml/chart/typegroupconverter.cxx
index bf8e166..b87fc45 100644
--- a/oox/source/drawingml/chart/typegroupconverter.cxx
+++ b/oox/source/drawingml/chart/typegroupconverter.cxx
@@ -248,9 +248,9 @@ Reference XCoordinateSystem  
TypeGroupConverter::createCoordinateSystem()
 if( maTypeInfo.mbPolarCoordSystem )
 {
 if( mb3dChart )
-xCoordSystem = 
css::chart2::PolarCoordinateSystem2d::create(xContext);
-else
 xCoordSystem = 
css::chart2::PolarCoordinateSystem3d::create(xContext);
+else
+xCoordSystem = 
css::chart2::PolarCoordinateSystem2d::create(xContext);
 }
 else
 {
diff --git a/sc/source/filter/excel/xichart.cxx 
b/sc/source/filter/excel/xichart.cxx
index a7103a2..34c5343 100644
--- a/sc/source/filter/excel/xichart.cxx
+++ b/sc/source/filter/excel/xichart.cxx
@@ -2339,9 +2339,9 @@ Reference XCoordinateSystem  
XclImpChType::CreateCoordSystem( bool b3dChart )
 if( maTypeInfo.mbPolarCoordSystem )
 {
 if( b3dChart )
-xCoordSystem = 
css::chart2::PolarCoordinateSystem2d::create(xContext);
-else
 xCoordSystem = 
css::chart2::PolarCoordinateSystem3d::create(xContext);
+else
+xCoordSystem = 
css::chart2::PolarCoordinateSystem2d::create(xContext);
 }
 else
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 60270] LibreOffice 4.1 most annoying bugs

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60270

Bug 60270 depends on bug 67300, which changed state.

Bug 67300 Summary: XLS and XLSX - 2D pie ends up as 3D
https://bugs.freedesktop.org/show_bug.cgi?id=67300

   What|Removed |Added

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

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


[Libreoffice-commits] core.git: oox/source

2013-11-30 Thread Markus Mohrhard
 oox/source/export/chartexport.cxx |7 +--
 1 file changed, 1 insertion(+), 6 deletions(-)

New commits:
commit fc65f952d794c96c630842f61b1c9a22c4bb23ec
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sun Dec 1 05:22:17 2013 +0100

small clean-up

diff --git a/oox/source/export/chartexport.cxx 
b/oox/source/export/chartexport.cxx
index c372151..680e19b 100644
--- a/oox/source/export/chartexport.cxx
+++ b/oox/source/export/chartexport.cxx
@@ -84,7 +84,6 @@
 #include xmloff/SchXMLSeriesHelper.hxx
 #include ColorPropertySet.hxx
 #include set
-#include time.h
 
 using namespace ::com::sun::star;
 using namespace ::com::sun::star::uno;
@@ -430,7 +429,6 @@ sal_Int32 lcl_getChartType( const OUString sChartType )
 sal_Int32 lcl_generateRandomValue()
 {
 static sal_Int32 MAX_NUMBER = 1;
-//srand( unsigned( time( NULL ) ));
 return sal_Int32( rand() % MAX_NUMBER );
 }
 
@@ -1667,8 +1665,6 @@ void ChartExport::exportCandleStickSeries(
 }
 }
 
-
-
 void ChartExport::exportSeriesText( const Reference 
chart2::data::XDataSequence   xValueSeq )
 {
 FSHelperPtr pFS = GetFS();
@@ -1811,7 +1807,7 @@ void ChartExport::exportShapeProps( Reference 
XPropertySet  xPropSet )
 
 void ChartExport::InitPlotArea( )
 {
-   Reference XPropertySet  xDiagramProperties (mxDiagram, 
uno::UNO_QUERY);
+Reference XPropertySet  xDiagramProperties (mxDiagram, uno::UNO_QUERY);
 
 //Check for supported services and then the properties provided by 
this service.
 Referencelang::XServiceInfo xServiceInfo (mxDiagram, uno::UNO_QUERY);
@@ -2427,7 +2423,6 @@ void ChartExport::exportDataPoints(
 }
 catch( const uno::Exception  rEx )
 {
-(void)rEx; // avoid warning for pro build
 SAL_WARN( oox, Exception caught during Export of data 
point:   rEx.Message );
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


LibreOffice Gerrit News for core on 2013-12-01

2013-11-30 Thread gerrit
Moin!

* Open changes on master for project core changed in the last 25 hours:

+ fdo#39956 Delete JAB
  in https://gerrit.libreoffice.org/6819 from David Ostrovsky
+ fdo#71987 :Fix for 2D Pie chart convert to 3D pie chart.
  in https://gerrit.libreoffice.org/6852 from Priyanka Gaikwad
+ Only run opencl unit tests with opencl enabled.
  in https://gerrit.libreoffice.org/6851 from Andrzej J.R. Hunt
+ fdo#70664 Use BlobHelper for Blobs.
  in https://gerrit.libreoffice.org/6868 from Andrzej J.R. Hunt
+ fdo#70664 Implement PreparedStatement::setBytes/setBlob (firebird-sdbc).
  in https://gerrit.libreoffice.org/6867 from Andrzej J.R. Hunt
+ Those AFM files are not used anymore
  in https://gerrit.libreoffice.org/6861 from Khaled Hosny
+ No more uses of printer built in fonts
  in https://gerrit.libreoffice.org/6860 from Khaled Hosny
+ Device-specific font substitution is not used
  in https://gerrit.libreoffice.org/6859 from Khaled Hosny
+ Don't perform printer font substitution
  in https://gerrit.libreoffice.org/6858 from Khaled Hosny
+ Drop font substitution tab page
  in https://gerrit.libreoffice.org/6857 from Khaled Hosny
+ Fix for LO crash during saving of file
  in https://gerrit.libreoffice.org/6854 from Rohit Deshmukh
+ Fix for LO crash while saving and corruption of file after roundtrip.
  in https://gerrit.libreoffice.org/6676 from Rohit Deshmukh


* Merged changes on master for project core changed in the last 25 hours:

None

* Abandoned changes on master for project core changed in the last 25 hours:

None

* Open changes needing tweaks, but being untouched for more than a week:

+ Code clean-up/consolidation task.
  in https://gerrit.libreoffice.org/5926 from Vishv Brahmbhatt
+ fdo#69407
  in https://gerrit.libreoffice.org/6316 from matthieu gay
+ fix for exporting of text watermark to DOCX
  in https://gerrit.libreoffice.org/5568 from Adam CloudOn
+ WIP: fdo#33980 Preserve selection across all slide sorters.
  in https://gerrit.libreoffice.org/6633 from Andrzej J.R. Hunt
+ fdo#71043 -  Use STACK lint tool to clean code
  in https://gerrit.libreoffice.org/6529 from José Guilherme Vanz
+ new cell-border handling in calc
  in https://gerrit.libreoffice.org/6093 from Viktor Varga
+ Increase number of remembered recent documents from 10 to 25
  in https://gerrit.libreoffice.org/6101 from Krisztian Pinter
+ startcenter: Make SC open faster by timeouting thumbnails
  in https://gerrit.libreoffice.org/6102 from Krisztian Pinter
+ Simplify oslThreadIdentifier on Linux 32.
  in https://gerrit.libreoffice.org/5553 from Arnaud Versini
+ Dynamically align toolbars in LibreOffice
  in https://gerrit.libreoffice.org/5655 from Prashant Pandey
+ fdo#36791 : fix for import of greeting card
  in https://gerrit.libreoffice.org/4240 from Adam CloudOn
+ more debug logs, extra debug layer, file is not used in p3k
  in https://gerrit.libreoffice.org/5267 from James Michael Dupont
+ Positional Tab additions
  in https://gerrit.libreoffice.org/5387 from Adam CloudOn
+ fdo#64817 : fix for rectangle with image fill
  in https://gerrit.libreoffice.org/4718 from Adam CloudOn


Best,

Your friendly LibreOffice Gerrit Digest Mailer

Note: The bot generating this message can be found and improved here:
   
https://gerrit.libreoffice.org/gitweb?p=dev-tools.git;a=blob;f=gerritbot/send-daily-digest
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice-qa] New Live Data Streams OLH links to empty wiki help page

2013-11-30 Thread Sophie
Hi Thomas,
Le 29/11/2013 19:37, Thomas Hackert a écrit :
 Hello Sophie, *,
 On Freitag, 29. November 2013 18:57 Sophie wrote:
 Le 29/11/2013 17:25, Thomas Hackert a écrit :
 as I try to translate the new Live Data Streams dialog, I
 wanted to read the OLH for it. But for some reason it tries to
 open

 http://help.libreoffice.org/sdatabase/modules/scalc/ui/datastreams/url.
 There is only the text quote
 Diese Seite enthält momentan noch keinen Text, du bist auch nicht
 berechtigt diese Seite zu erstellen. Du kannst ihren Titel auf
 anderen Seiten suchen oder die zugehörigen Logbücher betrachten.
 /quote
 (roughly) translated
 quote
 This site contains no text at the moment and you are not allowed
 to create this page. You can search its title at other sites or
 look at their corresponding log files.
 /quote
 . Is it intended? And where do I find the help page?

 This is the usual page when there is no help page on the wiki.
 
 yes, but ... I have installed the Germanophone version of LO with 
 the lang- as well as helppack. Why does LO opens a wiki page, when I 
 have installed the imbedded help? And especially in konqueror?

I don't know, may be it's a bug. I'll test once my l10n work is a bit
more advanced
 
 Which is normal as the version has not been released yet :) Did
 you check for your help files on Pootle, may be the help is there?
 
 I was translating the UI first, as there were more segments and also 
 I find it easier to translate the OLH files, when I have already 
 translated the UI ... ;) But a short search for Live Data Streams 
 (without the quotes) leads to no hit in Pootle ... :(

You're right to begin by UI, it's what I've been told when I begin l10n
some years ago :) May be there is a help button with no help file
appended to it... this has to be checked too.
 
 What I would like for us (l10n team) is at least an issue
 describing briefly what is intended with the feature, and that for
 each new feature, to help us figure out the best translation at
 the first shot.
 
 I fully agree with you :) It would really ease the translation ... 
 ;)

I hope some developers are already reading us ;) But I'll send a mail to
the dev list about that next week.

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

[Libreoffice-qa] [ANN] LibreOffice 4.1.4 RC1 available

2013-11-30 Thread Christian Lohmaier
Dear Community,

The Document Foundation is pleased to announce the first release
candidate of LibreOffice 4.1.4. The upcoming 4.1.4 will be the fourth
in a sequence of frequent bugfix releases for our feature-packed 4.1
line. Please be aware that LibreOffice 4.1.4 RC1 is not been flagged as ready
for production use yet, you should continue to use LibreOffice 4.1.3 for that.

The release is available for Windows, Linux and Mac OS X from our QA
builds download page at

  http://www.libreoffice.org/download/pre-releases/

Should you find bugs, please report them to the FreeDesktop Bugzilla:

  https://bugs.freedesktop.org

A good way to assess the release candidate quality is to run some
specific manual tests on it, our TCM wiki page has more details:

 
http://wiki.documentfoundation.org/QA/Testing/Regression_Tests#Full_Regression_Test

For other ways to get involved with this exciting project - you can
e.g. contribute code:

  http://www.libreoffice.org/get-involved/developers/

translate LibreOffice to your language:

  http://wiki.documentfoundation.org/LibreOffice_Localization_Guide

or help with funding our operations:

  http://donate.libreoffice.org/

A list of known issues and fixed bugs with 4.1.4 RC1 is available
from our wiki:

  http://wiki.documentfoundation.org/Releases/4.1.4/RC1

Let us close again with a BIG Thank You! to all of you having
contributed to the LibreOffice project - this release would not have
been possible without your help.

On behalf of the Community,

Christian
___
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] New Live Data Streams OLH links to empty wiki help page

2013-11-30 Thread Andras Timar
On Fri, Nov 29, 2013 at 5:25 PM, Thomas Hackert thack...@nexgo.de wrote:
 Hello @ll,
 as I try to translate the new Live Data Streams dialog, I wanted
 to read the OLH for it. But for some reason it tries to open
 http://help.libreoffice.org/sdatabase/modules/scalc/ui/datastreams/url.

LibreOffice could not resolve the help URL in local help, so it tried
online. Of course, it did not find anything, because this help page
simply does not exits. The sad fact is, that developers usually do not
write help pages for new feautures. There are a few exceptions of
course, I don't want to ignore anybody's work.

Live Data Streams can be used to load real time data from the internet
to Calc, for example stock prices, and you can create live charts, or
make calculations based on the live data.

Best regards,
Andras
___
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] Annouce: Bibisect for MACOSX

2013-11-30 Thread Robinson Tryon
On Sat, Nov 30, 2013 at 11:53 AM, Norbert Thiebaud nthieb...@gmail.com wrote:
 On Sat, Nov 30, 2013 at 1:03 AM, Robinson Tryon
 bishop.robin...@gmail.com wrote:
 Why not have the tb push builds directly into the bibisect repo?
 https://wiki.documentfoundation.org/Development/tb#Variables

 because...

 1/ keeping a local bibisect repo on each tb would be expensive in, if
 nothing else,  bandwidth

I don't know enough about the git sync algorithms to say much here --
I know that git does some de-duplication, but IIRC git doesn't always
minimize the amount of data transfered, especially if the repo has
been re-packed.

 2/ multiple tb upload stuff.. synchronizing htem can be difficult,
 especially with wide variation in upload bandwidth

I believe that the relationship would be 1 tb building into 1 bibisect
repo; I'm not sure what sync/bandwidth problems we'd run into (aside
from what I've mentioned above). Are you suggesting that we might have
2+ tb's feeding into a single bibisect repo?

 3/ the order of commit in the bibisect matter.

Right, but don't tb's usually build commits in order?

(assuming that we have 1 tb for 1 bibisect repo...)

 4/ experience shows that somethings things break for some minor
 details.. being able to fix things an recover using staged build is
 useful

Being able to curate the particular builds that go into a bibisect
repo sounds great to me, as long as we have someone with the time to
do that :-)

 5/ having some kind of control over the bibisect buidling as it build
 is good. it is easier to do when a centralized script do the job..
 then one can review the log and decide to re-do thing if need be,
 before the problem is buried too deep.

Again, hand-holding is nice, but I'm not expecting that we'll have the
engineering resources to do that with the GNU/Linux and Windows
bibisect repos.  My understanding is that we'll just add a new build
(or two) every day and hope that most of them aren't broken :-)

Speaking of which, once we do get daily builds feeding into the
bibisect repos, I'm going to try to get QA to test off of those repos
as much as possible. That should help us identify regressions much
more quickly and allow us to get regression bugs back to the Devs so
that they can be fixed before we push out a new release.

Cheers,
--R
___
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] Annouce: Bibisect for MACOSX

2013-11-30 Thread Norbert Thiebaud
On Sat, Nov 30, 2013 at 5:52 PM, Robinson Tryon
bishop.robin...@gmail.com wrote:

 I believe that the relationship would be 1 tb building into 1 bibisect
 repo;

Nope.
I intend to have the TDF tb box build a daily 'for bibisect' build
using a common config
once a day but at different time of the day...
They will upload their install-dir (tar.gz) in a staging area in tdf infra
and these will be stitched together later...
since they will not upload at the same speed and shit can happen... it
is safer to stage first... so that the stitching can be tweaked.
it is easier to script rebuilding a bibisect in part of in full using
the tar.gz of the build rather than /insert/delete/move some commit
after the fact

This will also allow.. in case a particular patch made the thing
unbuildable for a while... to retrospectively re-build that section of
the history using a 'patched' version at each step to avoid the the
bug the prevented the build to start with...
I have done this on master covering the 4-2 dev period... where some
patches broke the mac build for weeks at the time (on 10.6). the fixes
where often trivial so a simple git check-out + fix of a single file
was enough to still build... hence avoiding a 500+ commit range
without builds...

Norbert
___
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] Tinderbox builds

2013-11-30 Thread Pedro
Hi Christian, all


Christian Lohmaier-3 wrote
 The TDF labeled ones will follow shortly, I need to tweak the build
 scripts to work with multiple branches.

Excellent. I will wait for those then. 
I think I will ignore the 4.3 branch for now (until 4.2.0 RC1 is out, at
least) and stick with 4.2 dailies.


Christian Lohmaier-3 wrote
 Yes, all the TDF bots build with the release set of features, except that
 the builds are en-us only and identify as lo-dev.
 They aim to be as close to the public builds as possible.

My understanding now is that people should use the TDF daily builds (e.g.
from tinderbox #47 for the Windows OS). If the TDF builds fail, ping the
Tinderbox owner :)

Thanks!



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


[Libreoffice-bugs] [Bug 72151] Calc hangs while formatting more than one cell to a RTL currency

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72151

Gerry gerry.trep...@googlemail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Gerry gerry.trep...@googlemail.com ---
I can reproduce the hang with LibreOffice 4.2Beta1 on Ubuntu 13.04. Setting to
NEW. I also increase the severity to critical, because the only solution is to
kill the LibreOffice process, data are lost.

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


[Libreoffice-bugs] [Bug 72151] Calc hangs while formatting more than one cell to a RTL currency

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72151

Gerry gerry.trep...@googlemail.com changed:

   What|Removed |Added

   Severity|major   |critical

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


[Libreoffice-bugs] [Bug 59103] Problem with font dimensions.

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=59103

Owen Genat owen.ge...@gmail.com changed:

   What|Removed |Added

   Severity|critical|trivial

--- Comment #2 from Owen Genat owen.ge...@gmail.com ---
The problem in appearance with this bug seems to be with the Garamond (right
side text) rather than the provided Balloonist font (left side text). The
particular Garamond font used will need to be indicated in order for others to
replicate the problem.

Severity set to Trivial in keeping with QA guidelines (misaligned text):

https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Severity

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


[Libreoffice-bugs] [Bug 72166] Since 4.1.3 on OSX swriter, scalc and all others are gone

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72166

--- Comment #1 from Joop Lanting j.f.lant...@inter.nl.net ---
P.S.: On OSX I 'went' back to 4.0.4 which still had swriter a.s.o.
;JOOP!

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


[Libreoffice-bugs] [Bug 71229] CLI bridge - bootstrap not working

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=71229

--- Comment #3 from serg sergshe...@mail.ru ---
4.2.0.0 Beta1 - the bug is still there.

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


[Libreoffice-bugs] [Bug 72166] Since 4.1.3 on OSX swriter, scalc and all others are gone

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72166

Khaled Hosny khaledho...@eglug.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTABUG
 CC||khaledho...@eglug.org

--- Comment #2 from Khaled Hosny khaledho...@eglug.org ---
Use soffice --writer etc. Check soffice --help for a complete list.

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


[Libreoffice-bugs] [Bug 72166] Since 4.1.3 on OSX swriter, scalc and all others are gone

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72166

--- Comment #3 from Khaled Hosny khaledho...@eglug.org ---
And soffice will even load the proper component based on file type if you don’t
specify any.

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


[Libreoffice-bugs] [Bug 72166] Since 4.1.3 on OSX swriter, scalc and all others are gone

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72166

--- Comment #4 from Joop Lanting j.f.lant...@inter.nl.net ---
Thanks! That may make life a lot easier.
;JOOP!

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


[Libreoffice-bugs] [Bug 72148] flat text database (e.g. csv) with header lose one row at each refresh

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72148

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

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |lio...@mamane.lu
   |desktop.org |
Summary|Database from Typ Text  |flat text database (e.g.
   ||csv) with header lose one
   ||row at each refresh

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


[Libreoffice-bugs] [Bug 72168] New: EDITING: Double Image

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72168

  Priority: medium
Bug ID: 72168
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: EDITING: Double Image
  Severity: normal
Classification: Unclassified
OS: Mac OS X (All)
  Reporter: lourencoazev...@gmail.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.1.3.2 release
 Component: Presentation
   Product: LibreOffice

Problem description: 

Steps to reproduce:
1. I'm copying images from a PDF in the Preview from mac osx 10.6.8
2. When I paste them in it goes ok
3. When I re-size them using the mouse on the corners and pressing shift+cmd
the image is re-sized but it leaves the small one there. It creates another
with the new size.
4. If I re-size it again it again leave the old one there and creates another.

Current behavior:

Expected behavior:
I should expect that another image is not created every time I re-size it 

Just to note when I re-size it without using the key combination above it does
not create another image. 


Operating System: Mac OS X
Version: 4.1.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 51468] RTF: tables look distorted in 3.5.4

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51468

--- Comment #4 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
Created attachment 90016
  -- https://bugs.freedesktop.org/attachment.cgi?id=90016action=edit
bugdoc opened with version 4.0.6

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


[Libreoffice-bugs] [Bug 51468] RTF: tables look distorted in 3.5.4

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51468

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

   What|Removed |Added

 CC||jbf.fa...@sud-ouest.org

--- Comment #3 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
Hi Jesus,
Not sure if the document is still distorted with version 4.2.0.0.beta1.
Without a pdf or a screenshot showing how the document should look like, it is
not possible to decide.
I tried with 4.0.6, 4.1.5.0.0+ and 4.2.0.0.beta1 and the document looks
distorted only with 4.0.6.

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 51468] RTF: tables look distorted in 3.5.4

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51468

--- Comment #5 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
Created attachment 90017
  -- https://bugs.freedesktop.org/attachment.cgi?id=90017action=edit
bugdoc opened with version 4.1.5.0.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 51468] RTF: tables look distorted in 3.5.4

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51468

--- Comment #6 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
Created attachment 90018
  -- https://bugs.freedesktop.org/attachment.cgi?id=90018action=edit
bugdoc opened with version 4.2.0.0beta1

I did my tests under Ubuntu 13.10 x86-64

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


[Libreoffice-bugs] [Bug 51294] FILESAVE: 3.5.5.3 chapter numbers missing in .fodt

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51294

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

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME
 CC||jbf.fa...@sud-ouest.org

--- Comment #5 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
I reproduce the problem with the bugdoc with version 4.2.0.0beta1 under Ubuntu
13.10 64 bits: if I correct the file by adding the chapters numbering and
resave the file, the numbering is not there when reopening the file.
But, if I convert a file .odt with chapters numbering under fodt format, then
the numbering is still there when I reopen the file.

More, if, with version 4.2.0.0beta1, I create from scratch a new document with
chapters numbering, then save under fodt file format, close and reopen, the
chapters numbering is still there. If I modify the document with LO 4.1.x, save
again (still under fodt format) and reopen with 4.1.x and 4.2.0.0.beta1, the
chapters numbering is still there.

So I will close this bug report as WorksForMe. Please, feel free to reopen, if
you can provide a clear scenario to reproduce the problem under a current
active branch (4.1, 4.2 or master).

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 51264] Validation of signed documents against CRL takes too long when in Linux behind a proxy

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51264

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

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||jbf.fa...@sud-ouest.org
 Ever confirmed|0   |1

--- Comment #3 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
Hi all commenters,

Do you still experience this behavior with current stable and active version
(4.0.6, 4.1.x) or 4.2.0.0.beta1 ?

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 51241] VIEWING/UI: Page-by-page navigation needs love

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51241

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

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID
 CC||jbf.fa...@sud-ouest.org

--- Comment #3 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
The status of this bug report is still UNCONFIRMED because it does not describe
a clear scenario to reproduce the offending behavior(s). As it stands its
description is unusable.

I will close this bug report as INVALID. If you are still convinced that, in
the current active branches, there is something that goes wrong in this area,
please file another bug report for each individual behavior with a scenario
describing step by step how to reproduce it.

Another way, is to discuss this question on the UX-advise mailing-list.

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 72170] New: FILEOPEN: incorrect text presentation in .ppt

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72170

  Priority: medium
Bug ID: 72170
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FILEOPEN: incorrect text presentation in .ppt
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: rssde...@gmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: (See in Summary)
 Component: Presentation
   Product: LibreOffice

Created attachment 90019
  -- https://bugs.freedesktop.org/attachment.cgi?id=90019action=edit
ppt example

Incorrect presentation of ppt file in all versions of LibreOffice 4. 
LibreOffice 3.6 shows the attached file correctly like MS PowerPoint.

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


[Libreoffice-bugs] [Bug 31191] Data to fields operation is not reversible

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=31191

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

   What|Removed |Added

 CC||jbf.fa...@sud-ouest.org,
   ||spa...@gmx.net

--- Comment #4 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
I have just tried with LO 4.2.0.0.beta1+ following these steps:
1/ create a new empty text document
2/ type some text
3/ menu Insert  Fields  Other - Database tab
4/ select Mail merge fields and choose the database you want, for example
bibliography
5/ select a field in the database, for example Author in biblio table of
bibliography
6/ validate (OK)
7/ open the database: press F4 key
8/ go to biblio table and select the record you want then click on the button
Data to Fields; the author of this record appears in the text document.
9/ click in the text document and then click on the Undo button or hit ctrl+Z

Current behavior:  the field is removed as the last action in Writer was to
insert the field.
But:
10/ click on Redo button or press ctrl+Y -- the field is restored in empty
state.

For me it is not a too bad behavior. What do you think ?

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 72171] New: Other: Regression: LO Formulas cannot be broken in their components

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72171

  Priority: medium
Bug ID: 72171
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Other: Regression: LO Formulas cannot be broken in
their components
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: sergio.calleg...@gmail.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: unspecified
 Component: Formula Editor
   Product: LibreOffice

Problem description:

In AOO (and in older versions of LO) it was possible to insert a formula and
then to select it and break it into its textual components. In current LO this
is not possible anymore. Once a formula is selected (e.g. in draw or impress)
it is possible to open a contextual menu that includes the entry 'break'.
However, breaking does not work. After break one still has an embedded formula
object in the document. In AOO the formula can be broken into its textual
elements.  Similarly, in current LO, formulas cannot be converted to polygons,
even if the conversion entry appears in the contextual menu. In current AOO,
this works.

Being able to break formulas is quite useful to apply colors or modifications
to formula elements, or to design formulas and then to be able to use their
parts as 'shapes' to build complex graphics.

Recently this functionality has been broken in LO, even if I would not be able
to say when this regression has been introduced.  This means that to manipulate
formula elements as shapes, one needs to use AOO (or at least to have AOO
installed in parallel to LO).

Steps to reproduce:

1. start libreoffice draw or libreoffice impress
2. use insert - object - formula to open the formula editor and insert a
formula (any formula can be used here)
3. exit the formula editor and select the formula
4. right click to open the contextual menu. Select 'break'

Current behavior:

Nothing happens. The formula object is still a formula object.  This is quite
evident by double clicking on it. The formula editor opens.

Expected behavior (and AOO behavior)

The formula is broken into its textual and graphical components.
After the break the individual parts of text can be selected, converted to
curves or polygons, etc.
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 33154] Interaction (Execute) is generally buggy

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=33154

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

   What|Removed |Added

 Status|NEEDINFO|NEW
 CC||jbf.fa...@sud-ouest.org

--- Comment #4 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
I have just tried with version 4.2.0.0.beta1+ under Ubuntu 13.10 64 bits. The
result is that the interaction opens the file in gedit if the program is a
script, idem if the program is .desktop. If the program is an executable (build
with gcc) nothing happens.
But if I insert the name of a pdf file, then the file is opened by its default
application. It is consistent with the tooltip (file://...) which appears when
the mouse passes over the area supposed to be linked to the program.

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 33692] Drag and drop copying

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=33692

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

   What|Removed |Added

  Attachment #55324|application/vnd.openofficeo |application/vnd.oasis.opend
  mime type|rg.extension|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 33692] Drag and drop copying

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=33692

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

   What|Removed |Added

 Status|NEEDINFO|NEW
 CC||jbf.fa...@sud-ouest.org

--- Comment #6 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
Still reproducible with version 4.2.0.0.beta1 under Ubuntu 13.10 x86-64.
Showing the preview make the copy visible and it is still visible when returned
in the edit view.
So this bug seems to be a problem in updating the edit view after the copy.

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 34850] incorrect positioning when dragging newly-created frame (editing formatting ui)

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=34850

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

   What|Removed |Added

 Status|NEEDINFO|NEW
 CC||jbf.fa...@sud-ouest.org

--- Comment #5 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
Bug still reproducible with versions 4.1.5.0.0+ and 4.2.0.0.beta1.
The problem comes from the anchor parameters:

A/ steps to reproduce:
1- open a new empty text document
2- menu Insert  Frame
3- in the dialog choose anchor to page and validate (OK)
4- drag the frame southward
5- release the left button of the mouse
Current behavior: the frame moves northward the height of the top margin.

B/ How to _not_ reproduce: replace step 3- by
3a- in the dialog choose anchor to page
3b- in Position / Vertical choose Entire page instead of Page text area
3c- validate (OK)

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 71971] FILESAVE: FILESAVE As XSLX -- Conditional Formatting not translating

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=71971

Commit Notification libreoffice-comm...@lists.freedesktop.org changed:

   What|Removed |Added

 Whiteboard|BSA |BSA target:4.3.0

--- Comment #5 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Markus Mohrhard committed a patch related to this issue.
It has been pushed to master:

http://cgit.freedesktop.org/libreoffice/core/commit/?id=7415fc31f5cdf7ff3f78dd304b9576b931a82aeb

write valid dxf record, related fdo#71971



The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds
Affected users are encouraged to test the fix and report feedback.

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


[Libreoffice-bugs] [Bug 71971] FILESAVE: FILESAVE As XSLX -- Conditional Formatting not translating

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=71971

--- Comment #6 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Markus Mohrhard committed a patch related to this issue.
It has been pushed to master:

http://cgit.freedesktop.org/libreoffice/core/commit/?id=e361f6b81b09919c77995a85250c70b099389915

more OOXML export validation fixes, fdo#71971



The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds
Affected users are encouraged to test the fix and report feedback.

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


[Libreoffice-bugs] [Bug 72174] New: convert_add() from at or atm to Pa gives the same answer.

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72174

  Priority: medium
Bug ID: 72174
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: convert_add() from at or atm to Pa gives the
same answer.
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: rak...@wp.pl
  Hardware: x86 (IA32)
Status: UNCONFIRMED
   Version: 4.2.0.0.beta1
 Component: Spreadsheet
   Product: LibreOffice

Calc gives:
convert_add(1;at;Pa) = 101325
convert_add(1;atm;Pa) = 101325

but correct is:
convert_add(1;at;Pa) = 98066,5 technical atmosphere
convert_add(1;atm;Pa) = 101325 normal atmosphere

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


[Libreoffice-bugs] [Bug 72174] convert_add() from at and atm to Pa gives the same answer.

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72174

Konrad rak...@wp.pl changed:

   What|Removed |Added

Summary|convert_add() from at or  |convert_add() from at and
   |atm to Pa gives the |atm to Pa gives the
   |same answer.|same answer.

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


[Libreoffice-bugs] [Bug 72175] New: [german] Pinsel formatieren sounds strange

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72175

  Priority: medium
Bug ID: 72175
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: [german] Pinsel formatieren sounds strange
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: freedesk...@cboltz.de
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.1.3.2 release
 Component: Localization
   Product: LibreOffice

The button to copy formatting from one paragraph or cell to another has the
german tooltip Pinsel formatieren (Doppelklick für Mehrfachauswahl). 

This sounds quite strange, and doesn't really explain what it does.
The more common (and also more helpful) wording is Format übertragen.

Also, Mehrfachauswahl should be mehrfache Anwendung because it allows to
_apply_ the copied formatting multiple times.


Note: I don't know what text is used in other languages - if this is a general
problem, please reassign to someone who can change the english tooltip ;-)

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


[Libreoffice-bugs] [Bug 72170] FILEOPEN: incorrect text presentation in .ppt

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72170

Urmas davian...@gmail.com changed:

   What|Removed |Added

  Attachment #90019|text/plain  |application/vnd.ms-powerpoi
  mime type||nt

--- Comment #1 from Urmas davian...@gmail.com ---
Comment on attachment 90019
  -- https://bugs.freedesktop.org/attachment.cgi?id=90019
ppt example

Confirmed. Opens fine in AOO 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 72170] FILEOPEN: incorrect text presentation in .ppt

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72170

Urmas davian...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 72147] EDITING: Double clicking and dragging to select multiple words does not work

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72147

--- Comment #4 from cjds...@yahoo.co.uk ---
Odd. For me it works in Writer under OS X 10.9 and Windows 8.1, but doesn't
work in Calc under the same OSs

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


[Libreoffice-bugs] [Bug 72071] Web services info could need an update

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72071

Jean Spiteri beimaginativeegr...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |ASSIGNED
   Assignee|libreoffice-b...@lists.free |beimaginativeegroup@gmail.c
   |desktop.org |om
 CC||beimaginativeegroup@gmail.c
   ||om
 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 70664] EDITING: Embedded Firebird - Fieldtype BLOB in table-creating-module doesn't save pictures

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=70664

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

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |andr...@ahunt.org
   |desktop.org |

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


[Libreoffice-bugs] [Bug 69612] EDITING: Impossible to change all fonts

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69612

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

   What|Removed |Added

   Hardware|Other   |All
 Status|NEEDINFO|NEW
   Severity|normal  |enhancement

--- Comment #2 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
Answer sent only to me: the idea is to have a function replace all for the
fonts.
Not a bug but valid request for enhancement.

Not sure if Drawing is the right component.

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 34913] FILEOPEN Writer display different margins than kword

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=34913

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

   What|Removed |Added

   Hardware|Other   |All
 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME
 CC||jbf.fa...@sud-ouest.org

--- Comment #3 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
For me this bug has been fixed, all margins of the bugdoc are 1 cm in versions
4.2.0.0.beta1+, 4.1.5.0.0+ and 4.0.6.
Because we do not know which commit fixed that, set status to WorksForMe.

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 72037] LO 4.2: Wizards Document Converter and Euro Converter not working.

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72037

Qubit qu...@runcibility.com changed:

   What|Removed |Added

 Whiteboard||Confirmed:4.2.0.0.beta1:OSX
 CC||qu...@runcibility.com

--- Comment #6 from Qubit qu...@runcibility.com ---
Add repro note to whiteboard.

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


[Libreoffice-bugs] [Bug 46200] [RFE] Use the Scroll Lock key as a toggling lock key like Excel

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46200

Kevin Durette kevinthen...@gmail.com changed:

   What|Removed |Added

   Assignee|kevinthen...@gmail.com  |libreoffice-b...@lists.free
   ||desktop.org

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


[Libreoffice-bugs] [Bug 70645] : Sudden erasure of partially completed letter

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=70645

Michael Parker mspwooda...@talktalk.net changed:

   What|Removed |Added

 QA Contact||jbf.fa...@sud-ouest.org

--- Comment #11 from Michael Parker mspwooda...@talktalk.net ---
Regarding your recent comment No.10
 No connection to USB key was used in the production of the original
letter.
 I assume the update software x.y.3 will be advised, as and when it
beomes available...Thanks Mike Parker

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


[Libreoffice-bugs] [Bug 72125] Expert config dialog takes too much time to come up

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72125

Qubit qu...@runcibility.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Whiteboard||perf PossibleRegression
   ||Confirmed:4.2.0.0.beta1:Ubu
   ||ntu
 CC||qu...@runcibility.com
 Ever confirmed|0   |1

--- Comment #1 from Qubit qu...@runcibility.com ---
CONFIRMED on LO 4.2.0.0.beta1 + Ubuntu 12.04.3

(In reply to comment #0)
 Tools - Options... - LibreOffice - Advanced - Expert Config Page
 
 ...and wait several seconds ;-)

I waited for 2 minutes, and finally killed the process.

 
 Need to profile that, and ideally fix the most offending pieces there.

When was this feature introduced? I checked 4.1.2.3 to see if I could track
down the regression point, but it appears that it post-dates that build.

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


[Libreoffice-bugs] [Bug 72147] EDITING: Double clicking and dragging to select multiple words does not work

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72147

--- Comment #5 from cjds...@yahoo.co.uk ---
Created attachment 90031
  -- https://bugs.freedesktop.org/attachment.cgi?id=90031action=edit
Video illustrating expected behaviour in Writer and bug in Calc

Just so we're sure we're all talking about the same thing, this video shows:

Expected behaviour (in Writer)
Selection expands as the mouse drags, snapping to word boundaries

Bug behaviour (in Calc)
Selection remains just on the initial word selected

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


[Libreoffice-bugs] [Bug 72147] EDITING: Double clicking and dragging to select multiple words does not work

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72147

--- Comment #6 from cjds...@yahoo.co.uk ---
And here's a Dropbox link for those who don't like downloading attachments
https://www.dropbox.com/s/s4u78w0trz56u3u/Libreoffice%20double%20clicking.flv

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


[Libreoffice-bugs] [Bug 72176] New: Calc default zoom level is too high, could use more screen estate

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72176

  Priority: medium
Bug ID: 72176
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Calc default zoom level is too high, could use more
screen estate
  Severity: enhancement
Classification: Unclassified
OS: All
  Reporter: bitig...@openmailbox.org
  Hardware: Other
Status: NEW
   Version: Inherited From OOo
 Component: Spreadsheet
   Product: LibreOffice

Hello,

Default zoom level on Calc (100%) is too high, and displays less cells than it
could. 

My suggestion would be setting the zoom level to (80%), so that the screen
could display more cells, but it would be still readable. 

Attaching screenshots for comparison.

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


[Libreoffice-bugs] [Bug 72175] [german] Pinsel formatieren sounds strange

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72175

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

   What|Removed |Added

 CC||andre.schna...@gmx.net,
   ||serval2...@yahoo.fr

--- Comment #1 from Julien Nabet serval2...@yahoo.fr ---
A search on Opengrok gives this:
http://opengrok.libreoffice.org/xref/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po#15903
   15896 #: GenericCommands.xcu
   15897 msgctxt 
   15898 GenericCommands.xcu\n
   15899 ..GenericCommands.UserInterface.Commands..uno:FormatPaintbrush\n
   15900 Label\n
   15901 value.text
   15902 msgid Format Paintbrush (double click for multi-selection)
   15903 msgstr Pinsel formatieren (Doppelklick für Mehrfachauswahl)

Andre: Any idea?

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


[Libreoffice-bugs] [Bug 72176] Calc default zoom level is too high, could use more screen estate

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72176

Emir Sarı bitig...@openmailbox.org changed:

   What|Removed |Added

 QA Contact||bitig...@openmailbox.org
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org

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


[Libreoffice-bugs] [Bug 72176] Calc default zoom level is too high, could use more screen estate

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72176

--- Comment #1 from Emir Sarı bitig...@openmailbox.org ---
Created attachment 90032
  -- https://bugs.freedesktop.org/attachment.cgi?id=90032action=edit
100% Zoom Level

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


[Libreoffice-bugs] [Bug 72176] Calc default zoom level is too high, could use more screen estate

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72176

--- Comment #2 from Emir Sarı bitig...@openmailbox.org ---
Created attachment 90033
  -- https://bugs.freedesktop.org/attachment.cgi?id=90033action=edit
80% Zoom Level

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


[Libreoffice-bugs] [Bug 72174] convert_add() from at and atm to Pa gives the same answer.

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72174

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

   What|Removed |Added

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

--- Comment #1 from Julien Nabet serval2...@yahoo.fr ---
On pc Debian x86-64 with master sources updated today, I can reproduce 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 72174] convert_add() from at and atm to Pa gives the same answer.

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72174

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

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |serval2...@yahoo.fr
   |desktop.org |

--- Comment #2 from Julien Nabet serval2...@yahoo.fr ---
It must be there:
http://opengrok.libreoffice.org/xref/core/scaddins/source/analysis/analysishelper.cxx#2549
I take it.

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


[Libreoffice-bugs] [Bug 37382] EDITING LO can paste data via third/middle click if Edit File is turned off

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37382

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

   What|Removed |Added

 Status|NEEDINFO|NEW
 CC||jbf.fa...@sud-ouest.org

--- Comment #7 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
I can confirm this behavior on Ubuntu 13.10 x86-64 with upstream versions
4.0.6, 4.1.5.0.0+ and 4.2.0.0.beta1.

Set status back 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 71423] Impress frequently crashes when editing tables in slides

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=71423

--- Comment #11 from choffardet pierre.choffar...@free.fr ---
I can confirm frequent crashes when using tables in Impress.
This behaviour began in LO 4.1 branch and 4.0.5.
I've never been able to have steps to reproduce the crashes but working with
tables is now a problem. This afternoon again, with LO 4.1.4.1.

The crashes came at the same time with this bug :

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

(witch is a very annoying 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 72178] New: Impress Freeze when EDITING partial table style via right-clic

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72178

  Priority: medium
Bug ID: 72178
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Impress Freeze when EDITING partial table style via
right-clic
  Severity: major
Classification: Unclassified
OS: Windows (All)
  Reporter: pierre.choffar...@free.fr
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: unspecified
 Component: Presentation
   Product: LibreOffice

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

Step to reproduce :
1 - open attachment
2 - select a few cells
3 - right-clic on the selected cells et choose 'Edit Object Style' (or
something like this Editer le style de l'objet in french)

-- Freeze 

You can't do a lot of things, but you can navigate to different slide, save
your doc

Pierre

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


[Libreoffice-bugs] [Bug 72178] Impress Freeze when EDITING partial table style via right-clic

2013-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72178

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

   What|Removed |Added

  Attachment #90034|text/plain  |application/vnd.sun.xml.imp
  mime type||ress

-- 
You are receiving this mail because:
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   >