[Libreoffice-commits] dev-tools.git: ciabot/run-libreoffice-ciabot.pl

2013-11-24 Thread Miklos Vajna
 ciabot/run-libreoffice-ciabot.pl |4 
 1 file changed, 4 insertions(+)

New commits:
commit 5b30f5e312860994ed60a622cd9f249afb6cfa07
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sun Nov 24 11:24:37 2013 +

ciabot: log stdout / stderr (instead of running in screen)

diff --git a/ciabot/run-libreoffice-ciabot.pl b/ciabot/run-libreoffice-ciabot.pl
index 351b828..689cb36 100755
--- a/ciabot/run-libreoffice-ciabot.pl
+++ b/ciabot/run-libreoffice-ciabot.pl
@@ -1,6 +1,10 @@
 #!/usr/bin/perl -w
 
 use POSIX;
+use File::Basename;
+
+open STDOUT, '', dirname($0) . /ciabot.out;
+open STDERR, '', dirname($0) . /ciabot.err;
 
 my $suffix = ;
 my $cwd;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2013-11-24 Thread Miklos Vajna
 writerfilter/source/doctok/WW8Table.cxx  |   14 --
 writerfilter/source/doctok/resources.xmi |6 --
 2 files changed, 20 deletions(-)

New commits:
commit 6ab3148d965be12592e8927b4c7868634e714932
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sun Nov 24 12:27:49 2013 +0100

Remove unused writerfilter::doctok::WW8sprmTCellShadow

Change-Id: I2fd573407ca53b96728608755cb0defa9283edec

diff --git a/writerfilter/source/doctok/WW8Table.cxx 
b/writerfilter/source/doctok/WW8Table.cxx
index f3fa7c3..c1d2201 100644
--- a/writerfilter/source/doctok/WW8Table.cxx
+++ b/writerfilter/source/doctok/WW8Table.cxx
@@ -137,20 +137,6 @@ WW8sprmTCellShd::get_shd(sal_uInt32 pos)
 (new WW8CellShd(*this, 0x3 + pos * WW8CellShd::getSize()));
 }
 
-/* WW8sprmTCellShadow */
-
-sal_uInt32 WW8sprmTCellShadow::get_cellShadow_count()
-{
-return getU8(0x2) / WW8CellShd::getSize();
-}
-
-writerfilter::ReferenceProperties::Pointer_t
-WW8sprmTCellShadow::get_cellShadow(sal_uInt32 pos)
-{
-return writerfilter::ReferenceProperties::Pointer_t
-(new WW8CellShd(*this, 0x3 + pos * WW8CellShd::getSize()));
-}
-
 }}
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/writerfilter/source/doctok/resources.xmi 
b/writerfilter/source/doctok/resources.xmi
index 5765779..bc99009 100644
--- a/writerfilter/source/doctok/resources.xmi
+++ b/writerfilter/source/doctok/resources.xmi
@@ -38519,14 +38519,8 @@
 !--SPRM sprmTCellShadow--
 UML:Class xmi.id=sprmTCellShadow name=sprmTCellShadow
   UML:ModelElement.stereotype
-UML:Stereotype xmi.idref=ww8resource/
-  /UML:ModelElement.stereotype
-  UML:ModelElement.stereotype
 UML:Stereotype xmi.idref=ww8sprm/
   /UML:ModelElement.stereotype
-  UML:ModelElement.stereotype
-UML:Stereotype xmi.idref=ww8nocalcsize/
-  /UML:ModelElement.stereotype
   UML:ModelElement.taggedValue
 UML:TaggedValue
   UML:TaggedValue.dataValue0xd670/UML:TaggedValue.dataValue
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] dev-tools.git: ciabot/setup

2013-11-24 Thread Miklos Vajna
 ciabot/setup/install |   34 ++
 1 file changed, 34 insertions(+)

New commits:
commit 8c0dc4ad41c89d3e680dea0b61ca6a539e18cc94
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sun Nov 24 11:32:46 2013 +

ciabot: add install script

diff --git a/ciabot/setup/install b/ciabot/setup/install
new file mode 100755
index 000..6044e40
--- /dev/null
+++ b/ciabot/setup/install
@@ -0,0 +1,34 @@
+#!/bin/bash
+
+# Invoke this script as '/home/$username/git/dev-tools/ciabot/setup/install' or
+# so, and it'll handle the update of the code from git to prod.
+#
+# When cloning new repos, use 'git clone --no-checkout 
git://gerrit.libreoffice.org/foo.git'
+#
+# After update, use /sbin/initctl list | grep irkerd (or loircbot), sudo 
/sbin/start irkerd or sudo /sbin/stop irkerd
+# NOTE: it's enough to start/stop irkerd, it'll automatically start/stop 
loircbot as well, as they are linked.
+
+if [ $(whoami) != ciabot ]; then
+   echo forgot 'sudo -u ciabot /bin/bash'?
+   exit 1
+fi
+
+origin=$(dirname $0)
+prefix=/home/ciabot/prod
+
+for i in $origin/../../../irker-cia-proxy/irker-cia-proxy.py \
+$origin/../libreoffice-bugzilla.pl \
+$origin/../libreoffice-ciabot.pl \
+$origin/../projmap.json \
+$origin/../run-libreoffice-ciabot.pl \
+$origin/../sigui-bugzilla.pl
+do
+to=$prefix/$(basename $i)
+if ! diff -q -u $i $to; then
+cat $i  $to
+else
+echo $to is up to date
+fi
+done
+
+# vim:set shiftwidth=4 softtabstop=4 expandtab:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2013-11-24 Thread Miklos Vajna
 writerfilter/source/doctok/WW8Table.cxx  |   14 --
 writerfilter/source/doctok/resources.xmi |3 ---
 2 files changed, 17 deletions(-)

New commits:
commit 6b607e8a532097f407432a55762676416e6dd724
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sun Nov 24 12:35:24 2013 +0100

unused WW8sprmTCellShd

Change-Id: Ia25c4616bff0faacb04e8d44056f63cb03ababb8

diff --git a/writerfilter/source/doctok/WW8Table.cxx 
b/writerfilter/source/doctok/WW8Table.cxx
index c1d2201..abc3cb4 100644
--- a/writerfilter/source/doctok/WW8Table.cxx
+++ b/writerfilter/source/doctok/WW8Table.cxx
@@ -123,20 +123,6 @@ WW8sprmTDefTableShd::get_shd(sal_uInt32 pos)
 (new WW8SHD(*this, 0x3 + pos * WW8SHD::getSize()));
 }
 
-/* WW8sprmTCellShd */
-
-sal_uInt32 WW8sprmTCellShd::get_shd_count()
-{
-return getU8(0x2) / WW8CellShd::getSize();
-}
-
-writerfilter::ReferenceProperties::Pointer_t
-WW8sprmTCellShd::get_shd(sal_uInt32 pos)
-{
-return writerfilter::ReferenceProperties::Pointer_t
-(new WW8CellShd(*this, 0x3 + pos * WW8CellShd::getSize()));
-}
-
 }}
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/writerfilter/source/doctok/resources.xmi 
b/writerfilter/source/doctok/resources.xmi
index bc99009..1d21370 100644
--- a/writerfilter/source/doctok/resources.xmi
+++ b/writerfilter/source/doctok/resources.xmi
@@ -36470,9 +36470,6 @@
   UML:ModelElement.stereotype
 UML:Stereotype xmi.idref=ww8sprm/
   /UML:ModelElement.stereotype
-  UML:ModelElement.stereotype
-UML:Stereotype xmi.idref=ww8resource/
-  /UML:ModelElement.stereotype
   UML:ModelElement.taggedValue
 UML:TaggedValue
   UML:TaggedValue.dataValue0xD612/UML:TaggedValue.dataValue
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: LibreOffice Gerrit News for core on 2013-11-24

2013-11-24 Thread bjoern
On Sun, Nov 24, 2013 at 08:02:18AM +0100, Jonathan Aquilina wrote:
 I am just wondering shouldnt it say changes in the last 24 hours instead of
 25 hours?
No.

Best,

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


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

2013-11-24 Thread Julien Nabet
 winaccessibility/source/service/AccObjectWinManager.cxx |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 3f23236dbd3fbfa4fdedde4b8867772d4330a87f
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sun Nov 24 14:42:43 2013 +0100

cppcheck: Prefer prefix ++/-- operators for non-primitive types

Change-Id: I53a7773ed76d5a38301b4f9378c56698e4df7e8b

diff --git a/winaccessibility/source/service/AccObjectWinManager.cxx 
b/winaccessibility/source/service/AccObjectWinManager.cxx
index 0e9c165..b17bc81 100644
--- a/winaccessibility/source/service/AccObjectWinManager.cxx
+++ b/winaccessibility/source/service/AccObjectWinManager.cxx
@@ -185,7 +185,7 @@ XAccessible* 
AccObjectWinManager::GetXAccByAccObj(AccObject* pAccObj)
 AccObject* tmp = (iter-second);
 if(tmp== pAccObj)
 return (XAccessible*)(iter-first);
-iter++;
+++iter;
 }
 return NULL;
 }
@@ -517,7 +517,7 @@ int AccObjectWinManager::UpdateAccSelection(XAccessible* 
pXAcc)
 pAccChildObj = (AccObject*)(iter-second);
 if(pAccChildObj != NULL)
 
NotifyWinEvent(EVENT_OBJECT_SELECTIONREMOVE,pAccObj-GetParentHWND(), 
OBJID_CLIENT,pAccChildObj-GetResID());
-iter++;
+++iter;
 }
 return 0;
 
@@ -550,7 +550,7 @@ void AccObjectWinManager::DeleteFromHwndXAcc(XAccessible* 
pXAcc )
 HwndXAcc.erase(iter);
 return;
 }
-iter++;
+++iter;
 }
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 10 commits - sw/source

2013-11-24 Thread Matteo Casalin
 sw/source/core/access/accportions.cxx |6 +--
 sw/source/core/crsr/callnk.cxx|   54 +++---
 sw/source/core/doc/docbm.cxx  |   22 +
 sw/source/core/doc/doccorr.cxx|2 -
 sw/source/core/doc/docedt.cxx |   12 +++
 sw/source/core/docnode/ndcopy.cxx |4 +-
 sw/source/core/docnode/ndsect.cxx |   10 +++---
 sw/source/core/fields/ddefld.cxx  |3 -
 sw/source/core/inc/UndoTable.hxx  |2 -
 sw/source/core/inc/mvsave.hxx |   12 +++
 sw/source/core/txtnode/ndtxt.cxx  |4 +-
 sw/source/core/undo/untbl.cxx |   12 +++
 sw/source/filter/ascii/ascatr.cxx |   17 +-
 13 files changed, 72 insertions(+), 88 deletions(-)

New commits:
commit 5cad3ba0bf5cb2e77ac565ca855ccf39626297d7
Author: Matteo Casalin matteo.casa...@yahoo.com
Date:   Sun Nov 24 14:34:45 2013 +0100

Remove temporary and update assertion condition

Change-Id: I0714b21cfda04bbaee0a7bd9ec485b3569a7ea4d

diff --git a/sw/source/core/access/accportions.cxx 
b/sw/source/core/access/accportions.cxx
index 102fb4d..2d0c6a4 100644
--- a/sw/source/core/access/accportions.cxx
+++ b/sw/source/core/access/accportions.cxx
@@ -354,13 +354,11 @@ sal_Int32 SwAccessiblePortionData::GetModelPosition( 
sal_Int32 nPos ) const
   aAccessiblePositions[nPortionNo] ),
 accesability portion disagrees with text model );
 
-sal_Int32 nWithinPortion = nPos - aAccessiblePositions[nPortionNo];
-nStartPos += nWithinPortion;
+nStartPos += nPos - aAccessiblePositions[nPortionNo];
 }
 // else: return nStartPos unmodified
 
-OSL_ENSURE( (nStartPos = 0)  (nStartPos  USHRT_MAX),
-How can the SwTxtNode have so many characters? );
+OSL_ENSURE( nStartPos = 0, There's something weird in number of 
characters of SwTxtNode );
 return nStartPos;
 }
 
commit 77768f585af39029fb2ec9df4f976b31593f447a
Author: Matteo Casalin matteo.casa...@yahoo.com
Date:   Sun Nov 24 14:18:40 2013 +0100

Bail out early

Change-Id: Ic0bb06e3d64933df4887ce1402f62c16e917fdbd

diff --git a/sw/source/core/crsr/callnk.cxx b/sw/source/core/crsr/callnk.cxx
index 690c501..65eb900 100644
--- a/sw/source/core/crsr/callnk.cxx
+++ b/sw/source/core/crsr/callnk.cxx
@@ -74,32 +74,30 @@ SwCallLink::SwCallLink( SwCrsrShell  rSh )
 
 static void lcl_notifyRow(const SwCntntNode* pNode, SwCrsrShell rShell)
 {
-if ( pNode != NULL )
+if ( !pNode )
+return;
+
+SwFrm *const pMyFrm = pNode-getLayoutFrm( rShell.GetLayout() );
+if ( !pMyFrm )
+return;
+
+// We need to emulated a change of the row height in order
+// to have the complete row redrawn
+SwRowFrm *const pRow = pMyFrm-FindRowFrm();
+if ( !pRow )
+return;
+
+const SwTableLine* pLine = pRow-GetTabLine( );
+// Avoid redrawing the complete row if there are no nested tables
+for (SwFrm *pCell = pRow-GetLower(); pCell; pCell = pCell-GetNext())
 {
-SwFrm *myFrm = pNode-getLayoutFrm( rShell.GetLayout() );
-if (myFrm!=NULL)
+for (SwFrm *pContent = pCell-GetLower(); pContent; pContent = 
pContent-GetNext())
 {
-// We need to emulated a change of the row height in order
-// to have the complete row redrawn
-SwRowFrm* pRow = myFrm-FindRowFrm();
-if ( pRow )
+if (pContent-GetType() == FRM_TAB)
 {
-const SwTableLine* pLine = pRow-GetTabLine( );
-// Avoid redrawing the complete row if there are no nested 
tables
-bool bHasTable = false;
-SwFrm *pCell = pRow-GetLower();
-for (; pCell  !bHasTable; pCell = pCell-GetNext())
-{
-SwFrm *pContent = pCell-GetLower();
-for (; pContent  !bHasTable; pContent = 
pContent-GetNext())
-if (pContent-GetType() == FRM_TAB)
-bHasTable = true;
-}
-if (bHasTable)
-{
-SwFmtFrmSize pSize = pLine-GetFrmFmt()-GetFrmSize();
-pRow-ModifyNotification(NULL, pSize);
-}
+SwFmtFrmSize pSize = pLine-GetFrmFmt()-GetFrmSize();
+pRow-ModifyNotification(NULL, pSize);
+return;
 }
 }
 }
commit 9236d8242386965a9cd744fb64193d4e909e3519
Author: Matteo Casalin matteo.casa...@yahoo.com
Date:   Sun Nov 24 13:12:40 2013 +0100

Reduce scope of some variables

Change-Id: I2e2b10f95582c2c155ca78d4c7818ac38faa7a61

diff --git a/sw/source/core/crsr/callnk.cxx b/sw/source/core/crsr/callnk.cxx
index 44c84b3..690c501 100644
--- a/sw/source/core/crsr/callnk.cxx
+++ b/sw/source/core/crsr/callnk.cxx
@@ -164,15 +164,12 @@ SwCallLink::~SwCallLink()
 if ( ((SwTxtNode*)pCNd)-HasHints() )
  

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

2013-11-24 Thread Julien Nabet
 sax/source/tools/converter.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 87cce82dbc0ae24b207c45dc3f27c8f51c0fbb8b
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sun Nov 24 15:07:07 2013 +0100

cppcheck: fix same expression on both sides

Change-Id: I3de69e2ae186ea1ae8f792588c04b4e799ce1331

diff --git a/sax/source/tools/converter.cxx b/sax/source/tools/converter.cxx
index a2b3dd0..c77e02a 100644
--- a/sax/source/tools/converter.cxx
+++ b/sax/source/tools/converter.cxx
@@ -2330,7 +2330,7 @@ sal_Int16 Converter::GetUnitFromString(const OUString 
rString, sal_Int16 nDefau
 case sal_Unicode('I'):
 {
 if(nPos+1  nLen  (rString[nPos+1] == 'n'
-|| rString[nPos+1] == 'n'))
+|| rString[nPos+1] == 'N'))
 nRetUnit = MeasureUnit::INCH;
 break;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] dev-tools.git: ciabot/libreoffice-bugzilla.pl

2013-11-24 Thread Miklos Vajna
 ciabot/libreoffice-bugzilla.pl |6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

New commits:
commit 01856483add4a3417a4e507245beebf7030157f7
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sun Nov 24 14:10:07 2013 +

ciabot: no longer assume config.pl in ~/bin for bugzilla notification

diff --git a/ciabot/libreoffice-bugzilla.pl b/ciabot/libreoffice-bugzilla.pl
index 4823c44..5e93464 100755
--- a/ciabot/libreoffice-bugzilla.pl
+++ b/ciabot/libreoffice-bugzilla.pl
@@ -21,7 +21,11 @@ use strict;
 
 our $bugzilla = {};
 
-do $ENV{'HOME'} . /bin/config.pl;
+use File::Basename;
+
+my $config = dirname($0) . /config.pl;
+
+do $config;
 
 # The bug_regex should extract the bug id from the commit message and place
 # it in $1
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2013-11-24 Thread Julien Nabet
 winaccessibility/source/service/AccComponentEventListener.cxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit f5292779291b5938aec5d9a65f4c603b2b88eb23
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sun Nov 24 15:09:15 2013 +0100

cppcheck: consecutive break

Change-Id: I7e53fa77aada1433f3b311f51e82342bac127b3c

diff --git a/winaccessibility/source/service/AccComponentEventListener.cxx 
b/winaccessibility/source/service/AccComponentEventListener.cxx
index 0374572..1672c20 100644
--- a/winaccessibility/source/service/AccComponentEventListener.cxx
+++ b/winaccessibility/source/service/AccComponentEventListener.cxx
@@ -167,7 +167,6 @@ void AccComponentEventListener::SetComponentState(short 
state, bool enable)
 FireStatePropertyChange(state, enable);
 }
 break;
-break;
 case AccessibleStateType::FOCUSED:
 FireStateFocusedChange(enable);
 break;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] dev-tools.git: ciabot/INSTALL

2013-11-24 Thread Miklos Vajna
 ciabot/INSTALL |9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

New commits:
commit 97c85105f103c0863779c1c8e3a6cdfb0acfa658
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sun Nov 24 14:18:37 2013 +

ciabot: document libclass-methodmaker-perl dependency

diff --git a/ciabot/INSTALL b/ciabot/INSTALL
index cf9cc05..a991185 100644
--- a/ciabot/INSTALL
+++ b/ciabot/INSTALL
@@ -1,6 +1,7 @@
 The following steps are needed to use this code:
 
-- have this directory as ~/bin
-- git clone git://gitorious.org/irker/irker.git ~/bin/irker
-- git clone git://github.com/vmiklos/irker-cia-proxy.git ~/bin/irker-cia-proxy
-- cd ~/bin/irker-cia-proxy; ln -s ../projmap.json
+- have this directory as e.g. ~/prod
+- git clone git://gitorious.org/irker/irker.git ~/git/irker
+- git clone git://github.com/vmiklos/irker-cia-proxy.git ~/git/irker-cia-proxy
+- ~/git/dev-tools/ciabot/setup/install
+- Class::MethodMaker perl module: perl-Class-MethodMaker or 
libclass-methodmaker-perl package
___
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' - writerfilter/source

2013-11-24 Thread Miklos Vajna
 writerfilter/source/dmapper/DomainMapper_Impl.cxx |4 
 1 file changed, 4 insertions(+)

New commits:
commit aac5c47f45bed2c8a6376280f9b524826500
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Fri Nov 22 16:34:18 2013 +0100

cp#116 DOCX/RTF import: fix RemoveLastParagraph() on Windows

(cherry picked from commit a56bfe734a7bed40a175e0eeb7e86e7006a83f83)

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

Conflicts:
sw/qa/extras/rtfimport/rtfimport.cxx
writerfilter/source/dmapper/DomainMapper_Impl.cxx

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

diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx 
b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index 45cc5fe..ded106d 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -313,7 +313,11 @@ void DomainMapper_Impl::RemoveLastParagraph( )
 xCursor-goLeft( 1, true );
 // If this is a text on a shape, possibly the text has the trailing
 // newline removed already.
+#if defined(UNX)
 if (xCursor-getString() == \n)
+#else
+if (xCursor-getString() == \r\n)
+#endif
 xCursor-setString(OUString());
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Questions about Domain Mapper

2013-11-24 Thread Adam Fyne
Hi Miklos,


On Thu, Nov 21, 2013 at 10:55 AM, Miklos Vajna vmik...@collabora.co.ukwrote:

 Hi Adam,

  When I look at the code that processes these nodes - I see that all of
  these parameters
  are being processed here
 
 http://opengrok.libreoffice.org/xref/core/writerfilter/source/dmapper/DomainMapper.cxx#2114
  and all are being inserted to the 'rContext' or used with
 'appendGrabBag'.
  So it seems like I should add a flag that is turned on when 'rPrChange'
 is
  entered,
  and add a lot of 'if-else' statements in the code that processes all the
  'italic', 'bold' etc
  to check - if the flag is 'on' - insert the property to the
 'RedlineParams'
  structure,
  otherwise - insert the property to the 'rContext'.
  Is this the right approach? It will dirty the code...

 You don't have to deal with each property individually, you can just
 handle the collected properties. Have a look at text::XRedline, its
 makeRedline() method takes a beans::PropertyValues, which is a
 string-any map in practice. You can add a new RedlineOldformat (or
 similar) key to that map, and the value of that key can be your property
 list. When you handle that property in sw core, you can convert that to
 an SfxItemset. (Have a look at how to code handles the property list
 - SfxItemSet conversion when you append a new text portion with a given
 set of properties.)


I think I was misunderstood.
I think you thought I was asking : I need to add each property like
bold\italic\underline separatly to the RedlineParams.
What I actually meant to ask was:
Currently there are a lot of XML nodes that might appear under 'rPr' node
(that is under the 'rPrChange').
For example: 'bold', 'boldbidi', 'italic', 'italicbidi', language, etc.
Currently each of these XML nodes is handled by different code in the
'DomainMapper.cxx' file
(here is some of it:
http://opengrok.libreoffice.org/xref/core/writerfilter/source/dmapper/DomainMapper.cxx#2100
)

So I am asking - do I have to go node-by-node and add it to the
'property-list' that will be in the 'RedlineParams'?
Or is there any smart way of turning on some flag when the 'rPrChange-rPr'
tag is entered,
and checking at the end of the 'rPrChange-rPr' tag which properties were
inserted to the 'rContext' and add those properties to the 'RedlineParams'.

Best,
Adam

-- 

[image: appicon.png]


*Adam Fyne*

Twitter http://www.twitter.com/cloudoninc |
LinkedInhttp://www.linkedin.com/company/cloudon
 | Facebook http://www.facebook.com/cloudoninc |
Bloghttp://site.cloudon.com/blog
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Questions about Domain Mapper

2013-11-24 Thread Adam Fyne
*And some more elaboration on that:*
I just checked a simple DOCX that had some text in 'bold' and 'italic'. I
then turned ON the 'track changes' and removed the 'bold' and 'italic'.
When I round-tripped the DOCX through LO - the outputted file *had* the
'bold' and 'italic' turned on.
This means that the nodes that were inside the 'r-rPrChange-rPr' were
treated as if they were simply inside the 'r'-'rPr' (which is wrong).
This ephasises the need to detect when 'r-rPrChange-rPr' are being
analyzed in the importer - and to *not* analyze them normally on the run
itself, but to store them in the 'RedlineParams' somehow.


On Sun, Nov 24, 2013 at 6:06 PM, Adam Fyne adam.f...@cloudon.com wrote:

 Hi Miklos,


 On Thu, Nov 21, 2013 at 10:55 AM, Miklos Vajna vmik...@collabora.co.ukwrote:

 Hi Adam,

  When I look at the code that processes these nodes - I see that all of
  these parameters
  are being processed here
 
 http://opengrok.libreoffice.org/xref/core/writerfilter/source/dmapper/DomainMapper.cxx#2114
  and all are being inserted to the 'rContext' or used with
 'appendGrabBag'.
  So it seems like I should add a flag that is turned on when 'rPrChange'
 is
  entered,
  and add a lot of 'if-else' statements in the code that processes all the
  'italic', 'bold' etc
  to check - if the flag is 'on' - insert the property to the
 'RedlineParams'
  structure,
  otherwise - insert the property to the 'rContext'.
  Is this the right approach? It will dirty the code...

 You don't have to deal with each property individually, you can just
 handle the collected properties. Have a look at text::XRedline, its
 makeRedline() method takes a beans::PropertyValues, which is a
 string-any map in practice. You can add a new RedlineOldformat (or
 similar) key to that map, and the value of that key can be your property
 list. When you handle that property in sw core, you can convert that to
 an SfxItemset. (Have a look at how to code handles the property list
 - SfxItemSet conversion when you append a new text portion with a given
 set of properties.)


 I think I was misunderstood.
 I think you thought I was asking : I need to add each property like
 bold\italic\underline separatly to the RedlineParams.
 What I actually meant to ask was:
 Currently there are a lot of XML nodes that might appear under 'rPr' node
 (that is under the 'rPrChange').
 For example: 'bold', 'boldbidi', 'italic', 'italicbidi', language, etc.
 Currently each of these XML nodes is handled by different code in the
 'DomainMapper.cxx' file
 (here is some of it:
 http://opengrok.libreoffice.org/xref/core/writerfilter/source/dmapper/DomainMapper.cxx#2100
 )

 So I am asking - do I have to go node-by-node and add it to the
 'property-list' that will be in the 'RedlineParams'?
 Or is there any smart way of turning on some flag when the
 'rPrChange-rPr' tag is entered,
 and checking at the end of the 'rPrChange-rPr' tag which properties were
 inserted to the 'rContext' and add those properties to the 'RedlineParams'.


-- 

[image: appicon.png]


*Adam Fyne*

Twitter http://www.twitter.com/cloudoninc |
LinkedInhttp://www.linkedin.com/company/cloudon
 | Facebook http://www.facebook.com/cloudoninc |
Bloghttp://site.cloudon.com/blog
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 60270] LibreOffice 4.1 most annoying bugs

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

Bug 60270 depends on bug 70499, which changed state.

Bug 70499 Summary: FILEOPEN Cannot select unprotected cells in XSLX sheet with 
worksheet protection
https://bugs.freedesktop.org/show_bug.cgi?id=70499

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

-- 
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: 4 commits - wizards/com wizards/Pyuno_web.mk

2013-11-24 Thread Xisco Fauli
 wizards/Pyuno_web.mk  |1 
 wizards/com/sun/star/wizards/agenda/AgendaDocument.py |   11 --
 wizards/com/sun/star/wizards/agenda/AgendaWizardDialogImpl.py |8 -
 wizards/com/sun/star/wizards/agenda/CGTopic.py|1 
 wizards/com/sun/star/wizards/agenda/TopicsControl.py  |7 -
 wizards/com/sun/star/wizards/common/ConfigGroup.py|1 
 wizards/com/sun/star/wizards/common/ConfigSet.py  |1 
 wizards/com/sun/star/wizards/common/Desktop.py|2 
 wizards/com/sun/star/wizards/common/NumberFormatter.py|2 
 wizards/com/sun/star/wizards/common/Resource.py   |1 
 wizards/com/sun/star/wizards/document/OfficeDocument.py   |1 
 wizards/com/sun/star/wizards/fax/FaxWizardDialogImpl.py   |1 
 wizards/com/sun/star/wizards/letter/LetterWizardDialogImpl.py |7 -
 wizards/com/sun/star/wizards/text/TextDocument.py |2 
 wizards/com/sun/star/wizards/text/TextElement.py  |1 
 wizards/com/sun/star/wizards/ui/ControlScroller.py|2 
 wizards/com/sun/star/wizards/ui/WizardDialog.py   |3 
 wizards/com/sun/star/wizards/ui/event/DataAware.py|1 
 wizards/com/sun/star/wizards/ui/event/ListDataEvent.py|2 
 wizards/com/sun/star/wizards/ui/event/ListDataListener.py |1 
 wizards/com/sun/star/wizards/ui/event/RadioDataAware.py   |1 
 wizards/com/sun/star/wizards/ui/event/TaskEvent.py|2 
 wizards/com/sun/star/wizards/ui/event/UnoDataAware.py |5 -
 wizards/com/sun/star/wizards/web/AbstractErrorHandler.py  |8 -
 wizards/com/sun/star/wizards/web/BackgroundsDialog.py |1 
 wizards/com/sun/star/wizards/web/ErrorHandler.py  |2 
 wizards/com/sun/star/wizards/web/FTPDialog.py |   16 ---
 wizards/com/sun/star/wizards/web/LogTaskListener.py   |   49 --
 wizards/com/sun/star/wizards/web/Process.py   |5 -
 wizards/com/sun/star/wizards/web/StatusDialog.py  |4 
 wizards/com/sun/star/wizards/web/TOCPreview.py|2 
 wizards/com/sun/star/wizards/web/WWD_Events.py|   11 +-
 wizards/com/sun/star/wizards/web/WWD_General.py   |2 
 wizards/com/sun/star/wizards/web/WWD_Startup.py   |6 -
 wizards/com/sun/star/wizards/web/WebConfigSet.py  |3 
 wizards/com/sun/star/wizards/web/WebWizardDialog.py   |2 
 wizards/com/sun/star/wizards/web/data/CGDocument.py   |3 
 wizards/com/sun/star/wizards/web/data/CGLayout.py |2 
 wizards/com/sun/star/wizards/web/data/CGSession.py|2 
 wizards/com/sun/star/wizards/web/data/CGSettings.py   |2 
 wizards/com/sun/star/wizards/web/export/AbstractExporter.py   |1 
 wizards/com/sun/star/wizards/web/export/ConfiguredExporter.py |1 
 wizards/com/sun/star/wizards/web/export/FilterExporter.py |1 
 43 files changed, 27 insertions(+), 160 deletions(-)

New commits:
commit 233d247f40dd5069451204f3c3ef2c298e2cad74
Author: Xisco Fauli aniste...@gmail.com
Date:   Sun Nov 24 18:22:01 2013 +0100

pyweb: update makefile

Change-Id: I69953716656446ab26a9d97d0a6921f87e8b8995

diff --git a/wizards/Pyuno_web.mk b/wizards/Pyuno_web.mk
index 3933b27..6b56a4d 100644
--- a/wizards/Pyuno_web.mk
+++ b/wizards/Pyuno_web.mk
@@ -18,7 +18,6 @@ $(eval $(call gb_Pyuno_add_files,web,wizards/web,\
FTPDialogResources.py \
IconsDialog.py \
ImageListDialog.py \
-   LogTaskListener.py \
Process.py \
ProcessErrorHandler.py \
ProcessErrors.py \
commit 76ee4517c1b153a4b6f1065dff596118f6b563fc
Author: Xisco Fauli aniste...@gmail.com
Date:   Sun Nov 24 18:16:22 2013 +0100

pywizards: Some more pyflakes love

Change-Id: I3da78c004068cd7306ef79f5d019ab5bf07cac0b

diff --git a/wizards/com/sun/star/wizards/agenda/AgendaDocument.py 
b/wizards/com/sun/star/wizards/agenda/AgendaDocument.py
index d9013ba..180b83f 100644
--- a/wizards/com/sun/star/wizards/agenda/AgendaDocument.py
+++ b/wizards/com/sun/star/wizards/agenda/AgendaDocument.py
@@ -571,15 +571,6 @@ class AgendaDocument(TextDocument):
 rows = table.Rows
 rows.insertByIndex(start, count)
 
-'''returns the row index for this cell name.
-@param cellName
-@return the row index for this cell name.
-'''
-
-@classmethod
-def getRowIndex(self, cellName):
-return int(cellName.RangeName[1:])
-
 '''
 returns the rows count of this table, assuming
 there is no vertical merged cells.
@@ -699,8 +690,6 @@ class ItemsTable(object):
 if cellName == cursor.RangeName:
 return
 
-rowIndex = AgendaDocument.getRowIndex(cursor)
-rowsCount = AgendaDocument.getRowCount(ItemsTable.table)
 '''
 now before 

[Bug 60270] LibreOffice 4.1 most annoying bugs

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

Bug 60270 depends on bug 70842, which changed state.

Bug 70842 Summary: EDITING: Large document with many pictures causes freezing 
in Writer when scrolling with scroll bar
https://bugs.freedesktop.org/show_bug.cgi?id=70842

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

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


[Bug 36104] [FILESAVE] National symbols corrupted when saved in the MS Excel 5.0 format

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

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

   What|Removed |Added

  Attachment #45443|application/octet-stream|application/vnd.ms-excel
  mime type||

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

2013-11-24 Thread Robert M Campbell
 dictionaries |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2e317523c9224853d44ba9e47c321b680652f469
Author: Robert M Campbell robert.rcampb...@gmail.com
Date:   Sun Nov 24 20:41:21 2013 +0700

Updated core
Project: dictionaries  8e87e3eb166047de9359e13d3472fbe4248545d1

diff --git a/dictionaries b/dictionaries
index 8d1a0d8..8e87e3e 16
--- a/dictionaries
+++ b/dictionaries
@@ -1 +1 @@
-Subproject commit 8d1a0d88df029906968a3bb12da5f7a832e9b8a1
+Subproject commit 8e87e3eb166047de9359e13d3472fbe4248545d1
___
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' - dictionaries

2013-11-24 Thread Robert M Campbell
 dictionaries |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 0c09f9ce9838c73b2db5b8c6bada06a8b95e427c
Author: Robert M Campbell robert.rcampb...@gmail.com
Date:   Sun Nov 24 20:41:21 2013 +0700

Updated core
Project: dictionaries  c4659a9bbbe9a35cedcf29c11631d78ec09ebd17

diff --git a/dictionaries b/dictionaries
index 2880261..c4659a9 16
--- a/dictionaries
+++ b/dictionaries
@@ -1 +1 @@
-Subproject commit 2880261a84026e535806c98ec8fdd9a48e32aac8
+Subproject commit c4659a9bbbe9a35cedcf29c11631d78ec09ebd17
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 2 commits - connectivity/registry qadevOOo/runner qadevOOo/tests

2013-11-24 Thread Stephan Bergmann
 connectivity/registry/dbase/org/openoffice/Office/DataAccess/Drivers.xcu |
2 
 qadevOOo/runner/convwatch/MSOfficePrint.java |
2 
 qadevOOo/runner/convwatch/ReportDesignerTest.java|
2 
 qadevOOo/runner/graphical/MSOfficePostscriptCreator.java |
2 
 qadevOOo/runner/helper/ContextMenuInterceptor.java   |   
26 +-
 qadevOOo/tests/java/ifc/presentation/_Presentation.java  |
4 -
 qadevOOo/tests/java/ifc/sheet/_XCellRangeData.java   |
2 
 qadevOOo/tests/java/ifc/style/_CharacterProperties.java  |
2 
 qadevOOo/tests/java/mod/_dbaccess/OQueryDesign.java  |
2 
 qadevOOo/tests/java/mod/_dbaccess/OSingleSelectQueryComposer.java|
2 
 qadevOOo/tests/java/mod/_forms/ODatabaseForm.java|
2 
 qadevOOo/tests/java/mod/_svx/AccessibleEditableTextPara.java |
4 -
 qadevOOo/tests/java/mod/_toolkit/UnoControlDialogModel.java  |
8 +--
 13 files changed, 29 insertions(+), 31 deletions(-)

New commits:
commit 718de51eb9f567fa433ac216114f5e6f16236209
Author: Stephan Bergmann sberg...@redhat.com
Date:   Sun Nov 24 20:58:56 2013 +0100

Some Java String clean-up

Change-Id: I6728720a13f4b66edc6c5cd0b7a9bcb036e86ff2

diff --git a/qadevOOo/runner/convwatch/MSOfficePrint.java 
b/qadevOOo/runner/convwatch/MSOfficePrint.java
index aa881b5..3b3ed46 100644
--- a/qadevOOo/runner/convwatch/MSOfficePrint.java
+++ b/qadevOOo/runner/convwatch/MSOfficePrint.java
@@ -258,7 +258,7 @@ public class MSOfficePrint
 {
 aStr = \\;
 }
-aList[i] = new String(aStr);
+aList[i] = aStr;
 }
 
 // This is really the latest point where we can check if we 
are running within windows environment
diff --git a/qadevOOo/runner/convwatch/ReportDesignerTest.java 
b/qadevOOo/runner/convwatch/ReportDesignerTest.java
index ea1a2d8..36b513e 100644
--- a/qadevOOo/runner/convwatch/ReportDesignerTest.java
+++ b/qadevOOo/runner/convwatch/ReportDesignerTest.java
@@ -314,7 +314,7 @@ public class ReportDesignerTest extends ComplexTestCase {
 // sAppExecutionCommand = 
utils.replaceAll13(sAppExecutionCommand, ${USERNAME}, sUser);
 
 checkIfOfficeExists(sAppExecutionCommand);
-param.put(AppExecutionCommand, new 
String(sAppExecutionCommand));
+param.put(AppExecutionCommand, sAppExecutionCommand);
 
 // System.exit(1);
 
diff --git a/qadevOOo/runner/graphical/MSOfficePostscriptCreator.java 
b/qadevOOo/runner/graphical/MSOfficePostscriptCreator.java
index 8206f8e..a64c047 100644
--- a/qadevOOo/runner/graphical/MSOfficePostscriptCreator.java
+++ b/qadevOOo/runner/graphical/MSOfficePostscriptCreator.java
@@ -341,7 +341,7 @@ public class MSOfficePostscriptCreator implements IOffice
 {
 aStr = \\;
 }
-aList[i] = new String(aStr);
+aList[i] = aStr;
 }
 
 // This is really the latest point where we can check if we 
are running within windows environment
diff --git a/qadevOOo/runner/helper/ContextMenuInterceptor.java 
b/qadevOOo/runner/helper/ContextMenuInterceptor.java
index 9ff3898..8784452 100644
--- a/qadevOOo/runner/helper/ContextMenuInterceptor.java
+++ b/qadevOOo/runner/helper/ContextMenuInterceptor.java
@@ -63,9 +63,9 @@ public class ContextMenuInterceptor implements 
XContextMenuInterceptor {
 
xMenuElementFactory.createInstance(com.sun.star.ui.ActionTriggerContainer ));
 
 // intialize root menu entry Help
-xRootMenuEntry.setPropertyValue( Text, new String( Help ));
-xRootMenuEntry.setPropertyValue( CommandURL, new String( 
slot:5410 ));
-xRootMenuEntry.setPropertyValue( HelpURL, new String( 5410 
));
+xRootMenuEntry.setPropertyValue( Text, Help );
+xRootMenuEntry.setPropertyValue( CommandURL, slot:5410 );
+xRootMenuEntry.setPropertyValue( HelpURL, 5410 );
 xRootMenuEntry.setPropertyValue( SubContainer, 
xSubMenuContainer );
 
 // create menu entries for the new sub menu
@@ -74,9 +74,9 @@ public class ContextMenuInterceptor implements 
XContextMenuInterceptor {
 XPropertySet xMenuEntry = UnoRuntime.queryInterface(
 XPropertySet.class, xMenuElementFactory.createInstance(
 com.sun.star.ui.ActionTrigger ));
-xMenuEntry.setPropertyValue( Text, new String( Content ));
-xMenuEntry.setPropertyValue( CommandURL, new String( 
slot:5401 ));
-xMenuEntry.setPropertyValue( HelpURL, new String( 5401 ));
+   

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

2013-11-24 Thread Markus Mohrhard
 sc/inc/document.hxx  |1 +
 sc/inc/table.hxx |1 +
 sc/source/core/data/document.cxx |   16 
 sc/source/core/data/table2.cxx   |   14 ++
 sc/source/ui/view/cellsh.cxx |   17 +
 5 files changed, 33 insertions(+), 16 deletions(-)

New commits:
commit 288be67406110dc5e0f957d79fcf775076ee513c
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sun Nov 24 21:22:20 2013 +0100

checking every cell on a sheet is expensive, related fdo#71934

This is only the first of two places that does this.

Change-Id: I57fe1eb07630ecd86b112e88b7ad32c16e9f793a

diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx
index 49fd571..b9e3dc3 100644
--- a/sc/inc/document.hxx
+++ b/sc/inc/document.hxx
@@ -909,6 +909,7 @@ public:
 SCROW GetNotePosition( SCTAB nTab, SCCOL nCol, size_t nIndex ) const;
 
 SC_DLLPUBLIC void GetAllNoteEntries( std::vectorsc::NoteEntry rNotes ) 
const;
+bool ContainsNotesInRange( const ScRangeList rRange ) const;
 
 SC_DLLPUBLIC voidSetDrawPageSize(SCTAB nTab);
 
diff --git a/sc/inc/table.hxx b/sc/inc/table.hxx
index 8eb75be..5938dcb 100644
--- a/sc/inc/table.hxx
+++ b/sc/inc/table.hxx
@@ -382,6 +382,7 @@ public:
 SCROW GetNotePosition( SCCOL nCol, size_t nIndex ) const;
 
 void GetAllNoteEntries( std::vectorsc::NoteEntry rNotes ) const;
+bool ContainsNotesInRange( const ScRange rRange ) const;
 
 bool TestInsertRow( SCCOL nStartCol, SCCOL nEndCol, SCROW nStartRow, 
SCSIZE nSize ) const;
 voidInsertRow( SCCOL nStartCol, SCCOL nEndCol, SCROW nStartRow, 
SCSIZE nSize );
diff --git a/sc/source/core/data/document.cxx b/sc/source/core/data/document.cxx
index 80696e4..708300e 100644
--- a/sc/source/core/data/document.cxx
+++ b/sc/source/core/data/document.cxx
@@ -6226,6 +6226,22 @@ void ScDocument::GetAllNoteEntries( 
std::vectorsc::NoteEntry rNotes ) const
 }
 }
 
+bool ScDocument::ContainsNotesInRange( const ScRangeList rRange ) const
+{
+for( size_t i = 0; i  rRange.size(); ++i)
+{
+const ScRange* pRange = rRange[i];
+for( SCTAB nTab = pRange-aStart.Tab(); nTab  pRange-aEnd.Tab(); 
++nTab )
+{
+bool bContainsNote = maTabs[nTab]-ContainsNotesInRange( *pRange );
+if(bContainsNote)
+return true;
+}
+}
+
+return false;
+}
+
 void ScDocument::SetAutoNameCache(  ScAutoNameCache* pCache )
 {
 delete pAutoNameCache;
diff --git a/sc/source/core/data/table2.cxx b/sc/source/core/data/table2.cxx
index 29e10c9..c0d41d1 100644
--- a/sc/source/core/data/table2.cxx
+++ b/sc/source/core/data/table2.cxx
@@ -1516,6 +1516,20 @@ void ScTable::GetAllNoteEntries( 
std::vectorsc::NoteEntry rNotes ) const
 aCol[nCol].GetAllNoteEntries(rNotes);
 }
 
+bool ScTable::ContainsNotesInRange( const ScRange rRange ) const
+{
+SCROW nStartRow = rRange.aStart.Row();
+SCROW nEndRow = rRange.aEnd.Row();
+for (SCCOL nCol = rRange.aStart.Col(); nCol = rRange.aEnd.Col(); ++nCol)
+{
+bool bContainsNote = !aCol[nCol].IsNotesEmptyBlock(nStartRow, nEndRow);
+if(bContainsNote)
+return true;
+}
+
+return false;
+}
+
 CellType ScTable::GetCellType( SCCOL nCol, SCROW nRow ) const
 {
 if (ValidColRow( nCol, nRow ))
diff --git a/sc/source/ui/view/cellsh.cxx b/sc/source/ui/view/cellsh.cxx
index 943379f..8895f96 100644
--- a/sc/source/ui/view/cellsh.cxx
+++ b/sc/source/ui/view/cellsh.cxx
@@ -979,22 +979,7 @@ void ScCellShell::GetState(SfxItemSet rSet)
 // look for at least one note in selection
 ScRangeList aRanges;
 rMark.FillRangeListWithMarks( aRanges, false );
-size_t nCount = aRanges.size();
-for (size_t nPos = 0; nPos  nCount  !bEnable; 
++nPos)
-{
-SCTAB aTab = aRanges[nPos]-aStart.Tab();
-for (SCCOL aCol=aRanges[nPos]-aStart.Col(); 
aCol = aRanges[nPos]-aEnd.Col()  !bEnable; aCol++)
-{
-for (SCROW 
aRow=aRanges[nPos]-aStart.Row(); aRow = aRanges[nPos]-aEnd.Row(); aRow++)
-{
-if (pDoc-HasNote(aCol, aRow, aTab))
-{
-bEnable = true;
-break;
-}
-}
-}
-}
+bEnable = pDoc-ContainsNotesInRange( aRanges );
 }
 }
 else
___
Libreoffice-commits mailing list

[Libreoffice-commits] core.git: Repository.mk scp2/source

2013-11-24 Thread Marcos Paulo de Souza
 Repository.mk |   20 +--
 scp2/source/ooo/file_library_ooo.scp  |   44 --
 scp2/source/ooo/module_hidden_ooo.scp |8 --
 3 files changed, 13 insertions(+), 59 deletions(-)

New commits:
commit 24426c98a8c5ac410872df5a2b8e509f080365f8
Author: Marcos Paulo de Souza marcos.souza@gmail.com
Date:   Fri Nov 22 17:20:57 2013 -0200

fdo#60924 autoinstall - gbuild/scp2: Move more libs to OOO

Change-Id: I0de4b88eb076e53792aa6d16092dcbcbb548246c
Reviewed-on: https://gerrit.libreoffice.org/6763
Reviewed-by: David Tardon dtar...@redhat.com
Tested-by: David Tardon dtar...@redhat.com

diff --git a/Repository.mk b/Repository.mk
index a4aeca0..a35da37 100644
--- a/Repository.mk
+++ b/Repository.mk
@@ -307,6 +307,7 @@ $(eval $(call 
gb_Helper_register_libraries_for_install,OOOLIBS,ooo, \
odbcbase \
odfflatxml \
offacc \
+   oox \
passwordcontainer \
pcr \
$(if $(ENABLE_NPAPI_FROM_BROWSER),pl) \
@@ -325,6 +326,9 @@ $(eval $(call 
gb_Helper_register_libraries_for_install,OOOLIBS,ooo, \
simplecanvas \
slideshow \
sot \
+   $(if $(and $(filter unx,$(GUIBASE)),$(filter-out MACOSX,$(OS))), \
+   $(if $(ENABLE_HEADLESS),,spa) \
+   ) \
spell \
$(if $(ENABLE_HEADLESS),,spl) \
$(if $(DISABLE_SCRIPTING),,stringresource) \
@@ -354,7 +358,13 @@ $(eval $(call 
gb_Helper_register_libraries_for_install,OOOLIBS,ooo, \
$(if $(DISABLE_SCRIPTING),,vbahelper) \
vcl \
vclcanvas \
-   $(if $(and $(filter unx,$(GUIBASE)),$(filter-out 
MACOSX,$(OS))),vclplug_gen) \
+   $(if $(and $(filter unx,$(GUIBASE)),$(filter-out MACOSX,$(OS))), \
+   vclplug_gen \
+   $(if $(ENABLE_TDE),vclplug_tde) \
+   $(if $(ENABLE_KDE),vclplug_kde) \
+   $(if $(ENABLE_KDE4),vclplug_kde4) \
+   $(if $(ENABLE_HEADLESS),,vclplug_svp) \
+   ) \
xmlscript \
xmlfa \
xmlfd \
@@ -406,7 +416,6 @@ $(eval $(call gb_Helper_register_libraries,OOOLIBS, \
basebmp \
) \
communi \
-   oox \
ooxml \
sdbc \
avmediaQuickTime \
@@ -415,12 +424,7 @@ $(eval $(call gb_Helper_register_libraries,OOOLIBS, \
rptui \
rptxml \
simplecm \
-   spa \
sts \
-   vclplug_tde \
-   vclplug_kde \
-   vclplug_kde4 \
-   vclplug_svp \
 ))
 
 ifneq (,$(filter ANDROID IOS,$(OS)))
@@ -522,6 +526,7 @@ $(eval $(call 
gb_Helper_register_libraries_for_install,PLAINLIBS_OOO,ooo, \
) \
$(if $(filter WNT-TRUE,$(OS)-$(DISABLE_ATL)),,emboleobj) \
package2 \
+   $(if $(and $(filter unx,$(GUIBASE)),$(filter-out 
MACOSX,$(OS))),recentfile) \
$(if $(DISABLE_SCRIPTING),,scriptframe) \
sdbc2 \
sofficeapp \
@@ -561,7 +566,6 @@ $(eval $(call 
gb_Helper_register_libraries_for_install,PLAINLIBS_OOO,ooo, \
 $(eval $(call gb_Helper_register_libraries,PLAINLIBS_OOO, \
pyuno \
pyuno_wrapper \
-   recentfile \
ucpdav1 \
xsec_xmlsec \
$(if $(filter $(OS),ANDROID), \
diff --git a/scp2/source/ooo/file_library_ooo.scp 
b/scp2/source/ooo/file_library_ooo.scp
index 557e152..40b4e75 100644
--- a/scp2/source/ooo/file_library_ooo.scp
+++ b/scp2/source/ooo/file_library_ooo.scp
@@ -232,27 +232,6 @@ End
 
 #endif
 
-#if defined(UNX)  ! defined(MACOSX)
-#ifdef ENABLE_TDE
-File gid_File_Lib_Vclplug_Tde
-Name = LIBNAME(vclplug_tde);
-PACKED_LIB_FILE_BODY;
-End
-#endif
-#ifdef ENABLE_KDE
-File gid_File_Lib_Vclplug_Kde
-Name = LIBNAME(vclplug_kde);
-PACKED_LIB_FILE_BODY;
-End
-#endif
-#ifdef ENABLE_KDE4
-File gid_File_Lib_Vclplug_Kde4
-Name = LIBNAME(vclplug_kde4);
-PACKED_LIB_FILE_BODY;
-End
-#endif
-#endif
-
 #if defined(MACOSX)
 File gid_File_Lib_Basebmp
 Name = LIBNAME(basebmp);
@@ -261,32 +240,9 @@ End
 #endif
 
 #if defined UNX  ! defined MACOSX
-#if ! defined LIBO_HEADLESS
-STD_LIB_FILE( gid_File_Lib_Vclplug_Svp, vclplug_svp )
-#endif
 STD_LIB_FILE( gid_File_Lib_BaseBmp, basebmp )
 #endif
 
-#if defined UNX  ! defined MACOSX
-
-File gid_File_Lib_Recentfile
-PACKED_LIB_FILE_BODY;
-Name = STRING(CONCAT2(librecentfile,UNXSUFFIX));
-End
-
-#endif
-
-STD_LIB_FILE( gid_File_Lib_Oox , oox)
-
-#if defined(UNX)  !defined(MACOSX)  !defined(LIBO_HEADLESS)
-
-File gid_File_Lib_Spa
-Name = LIBNAME(spa);
-PACKED_LIB_FILE_BODY;
-End
-
-#endif
-
 #if ! defined UNX
 File gid_File_Lib_Sysdtrans
 PACKED_LIB_FILE_BODY;
diff --git a/scp2/source/ooo/module_hidden_ooo.scp 
b/scp2/source/ooo/module_hidden_ooo.scp
index df6de8e..0881652 100644
--- a/scp2/source/ooo/module_hidden_ooo.scp
+++ b/scp2/source/ooo/module_hidden_ooo.scp
@@ -142,15 +142,9 @@ Module gid_Module_Root_Files_4
auto_ooobinarytable_ALL,
gid_File_Lib_Bib,
gid_File_Lib_J,
-   

[Bug 60924] move libraries to autoinstallation in scp2

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

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

   What|Removed |Added

 Whiteboard|EasyHack DifficultyBeginner |EasyHack DifficultyBeginner
   |SkillScript target:4.1.0|SkillScript target:4.1.0
   |target:4.2.0|target:4.2.0 target:4.3.0

--- Comment #61 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Marcos Paulo de Souza committed a patch related to this issue.
It has been pushed to master:

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

fdo#60924 autoinstall - gbuild/scp2: Move more libs to OOO



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 on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 60270] LibreOffice 4.1 most annoying bugs

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

Bug 60270 depends on bug 66988, which changed state.

Bug 66988 Summary: Lost formating during document previewing and printing
https://bugs.freedesktop.org/show_bug.cgi?id=66988

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

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


[Bug 60270] LibreOffice 4.1 most annoying bugs

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

Andras Timar tima...@gmail.com changed:

   What|Removed |Added

 Depends on||68148

--- Comment #117 from Andras Timar tima...@gmail.com ---
Bug 66988 was a dupe of bug 68148.

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


Re: mso-dumper: utf16 conversion

2013-11-24 Thread Thorsten Behrens
j...@dockes.org wrote:
 While doing this, I found that the routine used to convert utf-16 text out
 of the TextChars Atoms was not working for me.
 
Great stuff there, just pushed both your patches - thanks a lot! :)

For consolidation there, would you give us the two patches under our
standard LibreOffice project license, which is MPL/LGPLv3+ ?

You can find license statements of other people linked from this page:

  https://wiki.documentfoundation.org/Developers

Cheers,

-- Thorsten


signature.asc
Description: Digital signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: mso-dumper: making a PPT text extractor

2013-11-24 Thread Thorsten Behrens
j...@dockes.org wrote:
 The modifications to mso-dumper would be as follows:
 
  - Make sure that all current output goes through the output() method
inside glob.py instead of using direct print() calls
  - Add a command-line option to suppress printing from output()
  - Add a command-line option to accumulate and print the text from the
String() and UniString() classes inside pptrecord.py: this would be the
text extractor proper.
 
All very useful IMO.

 A quick test of the approach based on commenting and changing the
 appropriate statements shows that the text extraction work very well (after
 the charset conversion fixes posted earlier).
 
 However this would need small changes to the code (print statements mostly)
 in many places, so I would appreciate some kind of pre-approval from the
 code owners before going to work.
 
Go for it! Just one small wish, could you sort potential output into
~fitting classes of stuff, such that people could control output
verbosity, by e.g. requesting only 'Atom output', 'Text output' etc?

Just stick one extra parameter with the output class into all output()
method calls.

 It would also be useful to rename the src directory to something like
 msodump so that the code can be installed as a Python package in a more
 standard way (this would also need a change to the import statements in the
 top level utilities).

Hah. Yeah, totally. And feel free to add whatever idiomatic code for
easy installation / packaging / testing to the toplevel dir.

Thanks a lot for your work there,

-- Thorsten


signature.asc
Description: Digital signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 54157] LibreOffice 4.0 most annoying bugs

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

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 Depends on||63433

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


[Bug 54157] LibreOffice 4.0 most annoying bugs

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

tommy27 ba...@quipo.it changed:

   What|Removed |Added

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

--- Comment #184 from tommy27 ba...@quipo.it ---
added Bug 63433 - EDITING: Frequent freezes when scrolling large document with
many pictures

regression of the 4.0.x branch. works fine in 3.6.7

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


LibreOffice Gerrit News for core on 2013-11-25

2013-11-24 Thread gerrit
Moin!

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

+ fdo#40315 Improve UI for moving average trendline
  in https://gerrit.libreoffice.org/6796 from Laurent BP
+ Add missing keyboard shortcut to dialog
  in https://gerrit.libreoffice.org/6795 from Olivier Hallot
+ fdo#71936 Add Excel 2010 functions GAMMA.DIST, GAMMA.INV, GAMMALN.PRECISE
  in https://gerrit.libreoffice.org/6775 from Winfried Donkers


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

+ fdo#60924 autoinstall - gbuild/scp2: Move more libs to OOO
  in https://gerrit.libreoffice.org/6763 from Marcos Souza


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

+ 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


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

2013-11-24 Thread Laurent Balland-Poirier
 chart2/source/controller/dialogs/res_Trendline.cxx |   12 
 1 file changed, 12 insertions(+)

New commits:
commit 382ceea544b612b20946c8bf8a85e8abed7b4c60
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

diff --git a/chart2/source/controller/dialogs/res_Trendline.cxx 
b/chart2/source/controller/dialogs/res_Trendline.cxx
index 7a4c495..36a79db 100644
--- a/chart2/source/controller/dialogs/res_Trendline.cxx
+++ b/chart2/source/controller/dialogs/res_Trendline.cxx
@@ -292,6 +292,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);
 }
 
 } //  namespace chart
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2013-11-24 Thread Ray
 sc/qa/unit/data/xls/opencl/math/sumproductTest.xls |binary
 sc/qa/unit/opencl-test.cxx |   26 ++
 sc/source/core/opencl/formulagroupcl.cxx   |   52 ++---
 3 files changed, 72 insertions(+), 6 deletions(-)

New commits:
commit 01a977486f050bf61b2c8592426e26cfe4f8
Author: I-Jui (Ray) Sung r...@multicorewareinc.com
Date:   Mon Nov 25 01:10:04 2013 -0600

GPU Calc: a test case for unrolling SumOfProduct

AMLOEXT-245 BUG

Change-Id: Ia8756af26c765820a04137a87f6681447dd18efd

diff --git a/sc/qa/unit/data/xls/opencl/math/sumproductTest.xls 
b/sc/qa/unit/data/xls/opencl/math/sumproductTest.xls
new file mode 100644
index 000..28eaebf
Binary files /dev/null and b/sc/qa/unit/data/xls/opencl/math/sumproductTest.xls 
differ
diff --git a/sc/qa/unit/opencl-test.cxx b/sc/qa/unit/opencl-test.cxx
index faf2ddb..833d9c0 100644
--- a/sc/qa/unit/opencl-test.cxx
+++ b/sc/qa/unit/opencl-test.cxx
@@ -242,6 +242,7 @@ public:
 void testStatisticalFormulaCovar();
 void testLogicalFormulaAnd();
 void testMathFormulaSumProduct();
+void testMathFormulaSumProduct2();
 void testStatisticalParallelCountBug();
 CPPUNIT_TEST_SUITE(ScOpenclTest);
 CPPUNIT_TEST(testSharedFormulaXLS);
@@ -416,6 +417,7 @@ public:
 CPPUNIT_TEST(testStatisticalFormulaCovar);
 CPPUNIT_TEST(testLogicalFormulaAnd);
 CPPUNIT_TEST(testMathFormulaSumProduct);
+CPPUNIT_TEST(testMathFormulaSumProduct2);
 CPPUNIT_TEST(testStatisticalParallelCountBug);
 CPPUNIT_TEST_SUITE_END();
 
@@ -4792,6 +4794,30 @@ void ScOpenclTest::testMathFormulaSumProduct()
 xDocSh-DoClose();
 xDocShRes-DoClose();
 }
+//[AMLOEXT-245]
+void ScOpenclTest::testMathFormulaSumProduct2()
+{
+if (!detectOpenCLDevice())
+return;
+ScDocShellRef xDocSh = loadDoc(opencl/math/sumproductTest., XLS);
+ScDocument* pDoc = xDocSh-GetDocument();
+CPPUNIT_ASSERT(pDoc);
+enableOpenCL();
+pDoc-CalcAll();
+ScDocShellRef xDocShRes = loadDoc(opencl/math/sumproductTest., XLS);
+ScDocument* pDocRes = xDocShRes-GetDocument();
+CPPUNIT_ASSERT(pDocRes);
+// Check the results of formula cells in the shared formula range.
+for (SCROW i = 2; i = 12; ++i)
+{
+double fLibre = pDoc-GetValue(ScAddress(4,i,1));
+double fExcel = pDocRes-GetValue(ScAddress(4,i,1));
+CPPUNIT_ASSERT_DOUBLES_EQUAL(fExcel,  fLibre, fabs(0.0001*fExcel));
+}
+xDocSh-DoClose();
+xDocShRes-DoClose();
+}
+
 //[AMLOEXT-217]
 void ScOpenclTest:: testLogicalFormulaAnd()
 {
commit 7e3d93e763770c7759555cfe7441573a97d276c1
Author: I-Jui (Ray) Sung r...@multicorewareinc.com
Date:   Mon Nov 25 01:13:44 2013 -0600

GPU Calc: fixed a SUMPRODUCT problem

ALMOEXT-245

Change-Id: Iedbbdc612232a939b2270e373313c872de831c20

diff --git a/sc/source/core/opencl/formulagroupcl.cxx 
b/sc/source/core/opencl/formulagroupcl.cxx
index 3405459..bee159b 100644
--- a/sc/source/core/opencl/formulagroupcl.cxx
+++ b/sc/source/core/opencl/formulagroupcl.cxx
@@ -1103,10 +1103,30 @@ public:
 ss  for(int outLoop=0; outLoop 
 nCurWindowSize/outLoopSize ; outLoop++){\n\t;
 for(int count=0; count  outLoopSize; count++){
-ss  i = outLoop*outLoopSize+count;\n\t;
+ss  i = outLoop*outLoopSize+count;\n;
 if(count==0){
-temp3  currentCount0 = i+gid0+1;\n\t;
-temp3  currentCount1 = i+1;\n\t;
+for (unsigned i = 0; i  vSubArguments.size(); i++)
+{
+tmpCur = vSubArguments[i]-GetFormulaToken();
+if(ocPush==tmpCur-GetOpCode())
+{
+pCurDVR= dynamic_cast
+const formula::DoubleVectorRefToken *(tmpCur);
+if(!pCurDVR-IsStartFixed()  
!pCurDVR-IsEndFixed())
+{
+temp3  currentCount;
+temp3  i;
+temp3  =i+gid0+1;\n;
+}
+else
+{
+temp3  currentCount;
+temp3  i;
+temp3   =i+1;\n;
+}
+}
+}
+
 temp3  tmp = fsum(;
 for (unsigned i = 0; i  vSubArguments.size(); i++){
 if (i)
@@ -1149,10 +1169,30 @@ public:
 for(unsigned int count=nCurWindowSize/outLoopSize*outLoopSize;
 count  nCurWindowSize; count++)
 {
-ss  i = count;\n\t;
+ss  i = count;\n;
 if(count==nCurWindowSize/outLoopSize*outLoopSize){
-temp4  currentCount0 = 

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

2013-11-24 Thread Ray
 sc/qa/unit/data/xls/opencl/math/sumproductTest.xls |binary
 sc/qa/unit/opencl-test.cxx |   26 ++
 sc/source/core/opencl/formulagroupcl.cxx   |   52 ++---
 3 files changed, 72 insertions(+), 6 deletions(-)

New commits:
commit 4e90af55242f59f6050611efd2b849a1e3a679e3
Author: I-Jui (Ray) Sung r...@multicorewareinc.com
Date:   Mon Nov 25 01:10:04 2013 -0600

GPU Calc: a test case for unrolling SumOfProduct

AMLOEXT-245 BUG

Change-Id: Ia8756af26c765820a04137a87f6681447dd18efd

diff --git a/sc/qa/unit/data/xls/opencl/math/sumproductTest.xls 
b/sc/qa/unit/data/xls/opencl/math/sumproductTest.xls
new file mode 100644
index 000..28eaebf
Binary files /dev/null and b/sc/qa/unit/data/xls/opencl/math/sumproductTest.xls 
differ
diff --git a/sc/qa/unit/opencl-test.cxx b/sc/qa/unit/opencl-test.cxx
index faf2ddb..833d9c0 100644
--- a/sc/qa/unit/opencl-test.cxx
+++ b/sc/qa/unit/opencl-test.cxx
@@ -242,6 +242,7 @@ public:
 void testStatisticalFormulaCovar();
 void testLogicalFormulaAnd();
 void testMathFormulaSumProduct();
+void testMathFormulaSumProduct2();
 void testStatisticalParallelCountBug();
 CPPUNIT_TEST_SUITE(ScOpenclTest);
 CPPUNIT_TEST(testSharedFormulaXLS);
@@ -416,6 +417,7 @@ public:
 CPPUNIT_TEST(testStatisticalFormulaCovar);
 CPPUNIT_TEST(testLogicalFormulaAnd);
 CPPUNIT_TEST(testMathFormulaSumProduct);
+CPPUNIT_TEST(testMathFormulaSumProduct2);
 CPPUNIT_TEST(testStatisticalParallelCountBug);
 CPPUNIT_TEST_SUITE_END();
 
@@ -4792,6 +4794,30 @@ void ScOpenclTest::testMathFormulaSumProduct()
 xDocSh-DoClose();
 xDocShRes-DoClose();
 }
+//[AMLOEXT-245]
+void ScOpenclTest::testMathFormulaSumProduct2()
+{
+if (!detectOpenCLDevice())
+return;
+ScDocShellRef xDocSh = loadDoc(opencl/math/sumproductTest., XLS);
+ScDocument* pDoc = xDocSh-GetDocument();
+CPPUNIT_ASSERT(pDoc);
+enableOpenCL();
+pDoc-CalcAll();
+ScDocShellRef xDocShRes = loadDoc(opencl/math/sumproductTest., XLS);
+ScDocument* pDocRes = xDocShRes-GetDocument();
+CPPUNIT_ASSERT(pDocRes);
+// Check the results of formula cells in the shared formula range.
+for (SCROW i = 2; i = 12; ++i)
+{
+double fLibre = pDoc-GetValue(ScAddress(4,i,1));
+double fExcel = pDocRes-GetValue(ScAddress(4,i,1));
+CPPUNIT_ASSERT_DOUBLES_EQUAL(fExcel,  fLibre, fabs(0.0001*fExcel));
+}
+xDocSh-DoClose();
+xDocShRes-DoClose();
+}
+
 //[AMLOEXT-217]
 void ScOpenclTest:: testLogicalFormulaAnd()
 {
commit 70cb6b4f6a417527998b33b2d5a407434495651a
Author: I-Jui (Ray) Sung r...@multicorewareinc.com
Date:   Mon Nov 25 01:13:44 2013 -0600

GPU Calc: fixed a SUMPRODUCT problem

ALMOEXT-245

Change-Id: Iedbbdc612232a939b2270e373313c872de831c20

diff --git a/sc/source/core/opencl/formulagroupcl.cxx 
b/sc/source/core/opencl/formulagroupcl.cxx
index 3405459..bee159b 100644
--- a/sc/source/core/opencl/formulagroupcl.cxx
+++ b/sc/source/core/opencl/formulagroupcl.cxx
@@ -1103,10 +1103,30 @@ public:
 ss  for(int outLoop=0; outLoop 
 nCurWindowSize/outLoopSize ; outLoop++){\n\t;
 for(int count=0; count  outLoopSize; count++){
-ss  i = outLoop*outLoopSize+count;\n\t;
+ss  i = outLoop*outLoopSize+count;\n;
 if(count==0){
-temp3  currentCount0 = i+gid0+1;\n\t;
-temp3  currentCount1 = i+1;\n\t;
+for (unsigned i = 0; i  vSubArguments.size(); i++)
+{
+tmpCur = vSubArguments[i]-GetFormulaToken();
+if(ocPush==tmpCur-GetOpCode())
+{
+pCurDVR= dynamic_cast
+const formula::DoubleVectorRefToken *(tmpCur);
+if(!pCurDVR-IsStartFixed()  
!pCurDVR-IsEndFixed())
+{
+temp3  currentCount;
+temp3  i;
+temp3  =i+gid0+1;\n;
+}
+else
+{
+temp3  currentCount;
+temp3  i;
+temp3   =i+1;\n;
+}
+}
+}
+
 temp3  tmp = fsum(;
 for (unsigned i = 0; i  vSubArguments.size(); i++){
 if (i)
@@ -1149,10 +1169,30 @@ public:
 for(unsigned int count=nCurWindowSize/outLoopSize*outLoopSize;
 count  nCurWindowSize; count++)
 {
-ss  i = count;\n\t;
+ss  i = count;\n;
 if(count==nCurWindowSize/outLoopSize*outLoopSize){
-temp4  currentCount0 = 

[Libreoffice-commits] core.git: Branch 'feature/calc-group-interpreter-4' - 2 commits - sc/qa sc/source

2013-11-24 Thread Ray
 sc/qa/unit/data/xls/opencl/math/sumproductTest.xls |binary
 sc/qa/unit/opencl-test.cxx |   26 ++
 sc/source/core/opencl/formulagroupcl.cxx   |   52 ++---
 3 files changed, 72 insertions(+), 6 deletions(-)

New commits:
commit cb699c576c91f7c1de98036a01c369402eee073e
Author: I-Jui (Ray) Sung r...@multicorewareinc.com
Date:   Mon Nov 25 01:10:04 2013 -0600

GPU Calc: a test case for unrolling SumOfProduct

AMLOEXT-245 BUG

Change-Id: Ia8756af26c765820a04137a87f6681447dd18efd

diff --git a/sc/qa/unit/data/xls/opencl/math/sumproductTest.xls 
b/sc/qa/unit/data/xls/opencl/math/sumproductTest.xls
new file mode 100644
index 000..28eaebf
Binary files /dev/null and b/sc/qa/unit/data/xls/opencl/math/sumproductTest.xls 
differ
diff --git a/sc/qa/unit/opencl-test.cxx b/sc/qa/unit/opencl-test.cxx
index 6fabd98..f1ab881 100644
--- a/sc/qa/unit/opencl-test.cxx
+++ b/sc/qa/unit/opencl-test.cxx
@@ -244,6 +244,7 @@ public:
 void testStatisticalFormulaCovar();
 void testLogicalFormulaAnd();
 void testMathFormulaSumProduct();
+void testMathFormulaSumProduct2();
 void testStatisticalParallelCountBug();
 CPPUNIT_TEST_SUITE(ScOpenclTest);
 CPPUNIT_TEST(testSharedFormulaXLS);
@@ -418,6 +419,7 @@ public:
 CPPUNIT_TEST(testStatisticalFormulaCovar);
 CPPUNIT_TEST(testLogicalFormulaAnd);
 CPPUNIT_TEST(testMathFormulaSumProduct);
+CPPUNIT_TEST(testMathFormulaSumProduct2);
 CPPUNIT_TEST(testStatisticalParallelCountBug);
 CPPUNIT_TEST_SUITE_END();
 
@@ -4792,6 +4794,30 @@ void ScOpenclTest::testMathFormulaSumProduct()
 xDocSh-DoClose();
 xDocShRes-DoClose();
 }
+//[AMLOEXT-245]
+void ScOpenclTest::testMathFormulaSumProduct2()
+{
+if (!detectOpenCLDevice())
+return;
+ScDocShellRef xDocSh = loadDoc(opencl/math/sumproductTest., XLS);
+ScDocument* pDoc = xDocSh-GetDocument();
+CPPUNIT_ASSERT(pDoc);
+enableOpenCL();
+pDoc-CalcAll();
+ScDocShellRef xDocShRes = loadDoc(opencl/math/sumproductTest., XLS);
+ScDocument* pDocRes = xDocShRes-GetDocument();
+CPPUNIT_ASSERT(pDocRes);
+// Check the results of formula cells in the shared formula range.
+for (SCROW i = 2; i = 12; ++i)
+{
+double fLibre = pDoc-GetValue(ScAddress(4,i,1));
+double fExcel = pDocRes-GetValue(ScAddress(4,i,1));
+CPPUNIT_ASSERT_DOUBLES_EQUAL(fExcel,  fLibre, fabs(0.0001*fExcel));
+}
+xDocSh-DoClose();
+xDocShRes-DoClose();
+}
+
 //[AMLOEXT-217]
 void ScOpenclTest:: testLogicalFormulaAnd()
 {
commit fecc3486633d9a83e5c1f501fbd8c2256d65cbf7
Author: I-Jui (Ray) Sung r...@multicorewareinc.com
Date:   Mon Nov 25 01:13:44 2013 -0600

GPU Calc: fixed a SUMPRODUCT problem

ALMOEXT-245

Change-Id: Iedbbdc612232a939b2270e373313c872de831c20

diff --git a/sc/source/core/opencl/formulagroupcl.cxx 
b/sc/source/core/opencl/formulagroupcl.cxx
index ad6ccc1..515fc89 100644
--- a/sc/source/core/opencl/formulagroupcl.cxx
+++ b/sc/source/core/opencl/formulagroupcl.cxx
@@ -1107,10 +1107,30 @@ public:
 ss  for(int outLoop=0; outLoop 
 nCurWindowSize/outLoopSize ; outLoop++){\n\t;
 for(int count=0; count  outLoopSize; count++){
-ss  i = outLoop*outLoopSize+count;\n\t;
+ss  i = outLoop*outLoopSize+count;\n;
 if(count==0){
-temp3  currentCount0 = i+gid0+1;\n\t;
-temp3  currentCount1 = i+1;\n\t;
+for (unsigned i = 0; i  vSubArguments.size(); i++)
+{
+tmpCur = vSubArguments[i]-GetFormulaToken();
+if(ocPush==tmpCur-GetOpCode())
+{
+pCurDVR= dynamic_cast
+const formula::DoubleVectorRefToken *(tmpCur);
+if(!pCurDVR-IsStartFixed()  
!pCurDVR-IsEndFixed())
+{
+temp3  currentCount;
+temp3  i;
+temp3  =i+gid0+1;\n;
+}
+else
+{
+temp3  currentCount;
+temp3  i;
+temp3   =i+1;\n;
+}
+}
+}
+
 temp3  tmp = fsum(;
 for (unsigned i = 0; i  vSubArguments.size(); i++){
 if (i)
@@ -1153,10 +1173,30 @@ public:
 for(unsigned int count=nCurWindowSize/outLoopSize*outLoopSize;
 count  nCurWindowSize; count++)
 {
-ss  i = count;\n\t;
+ss  i = count;\n;
 if(count==nCurWindowSize/outLoopSize*outLoopSize){
-temp4  currentCount0 = 

Re: Installation failures

2013-11-24 Thread Stephan Bergmann

On 11/23/2013 08:58 AM, Tor Lillqvist wrote:

Could you pastebin also your config.log file, and the config_host.mk
file, thanks!


...and the binaryurp/log.txt generated by


cd binaryurp  make -r CppunitTest_binaryurp_test-cache log.txt 21


please.

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


Re: [Libreoffice-qa] [ANN] LibreOffice 4.2.0 beta1 test builds available

2013-11-24 Thread Robinson Tryon
On Sat, Nov 23, 2013 at 11:47 AM, Christian Lohmaier
lohma...@googlemail.com wrote:
 Hi *,

 for the upcoming new version 4.2.0, the builds for beta1 are now
 available on pre-releases

 It is the first of two betas  (and thus a LibreOfficeDev build) and
 can be installed alongside the stable version.

Repro table for 4.2 MAB is here:
http://testing.eagleeyet.net/~qubit/mab-mockup/?MAB=4.2

With proper tags in the whiteboard (see the page for syntax), we can
easily track the status of all bugs in the 4.2 MAB list as tested
against individual build/OS tuples.

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/


[Libreoffice-qa] Wrong naming under Format - Conditional Formatting - Condition...

2013-11-24 Thread Thomas Hackert
Hello @ll,
I need someone with an other UI language than German or English 
(where this problem does not exist ... ;) ), who may can confirm the 
following:

When I open Calc and go toFormat - Conditional Formatting - 
Condition..., select All Cells, Icon Set and choose 4 Circles 
Red and Black, I see in the English UI, what it says (circles in 
red and black). But if I switch the UI to German, use the translated 
menu items (Format - Bedingte Formatierung - Bedingung, then Alle 
Zellen, Symbolstil and 4 Kreise rot  schwarz), I see arrows 
here (one red down, two yellow slanting, one green up) ... :( Can 
someone confirm it with an other language/OS/architecture/else? And 
is it intended or a bug (if so, does anyone know, if it is already 
reported)?

OS: Debian Testing AMD64
LO: Version: 4.2.0.0.beta1 Build-ID: 
f4ca7b35f580827ad2c69ea6d29f7c9b48ebbac7

TIA
Thomas.

-- 
I am a computer. I am dumber than any human and smarter than any 
administrator.

___
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] Despite of installed OLH, LO opens help in OS's default browser?

2013-11-24 Thread Thomas Hackert
Hello @ll,
I found another bug with LO Version: 4.2.0.0.beta1 Build-ID: 
f4ca7b35f580827ad2c69ea6d29f7c9b48ebbac7 (parallel installed, 
following the instructions on 
https://wiki.documentfoundation.org/Installing_in_parallel, and with 
Germanophone help- as well as langpack): After starting LO and 
pressing F1 to open the installed help, LO always starts konqueror 
(and where I only see an OK, as if it has called Apache's default 
website, I think) ... :( Is this intended or is it really a bug 
(what I think)?
Discovered with
OS: Debian Testing AMD64
LO: LO Version: 4.2.0.0.beta1 Build-ID:  
f4ca7b35f580827ad2c69ea6d29f7c9b48ebbac7

TIA for testing
Thomas.

-- 
Real Users never know what they want, but they always know when your 
program doesn't deliver it.

___
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] UNCONFIRMED bug count below 1000

2013-11-24 Thread Tommy

as you all can see here (scroll to bottom of the page):
http://snipurl.com/287u2ky

the UNCONFIRMED bug count is again below 1000.
many thanks to all the QA volunteers who helped reaching this goal.

I think that the QA team should monitor all the other figures of the first  
column (which is about all open bugs).


actually the situation is:

UNCONFIRMED --  996
NEW -- 6089
ASSIGNED -  169
REOPENED -  347
NEEDINFO -  910
TOTAL- 8511

___
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] Wrong naming under Format - Conditional Formatting - Condition...

2013-11-24 Thread Thomas Hackert
Hello Markus, *,
On Sonntag, 24. November 2013 14:00 Markus Mohrhard wrote:
 2013/11/24 Thomas Hackert thack...@nexgo.de
 I need someone with an other UI language than German or English
 (where this problem does not exist ... ;) ), who may can confirm
 the following:

 When I open Calc and go toFormat - Conditional Formatting -
 Condition..., select All Cells, Icon Set and choose 4
 Circles Red and Black, I see in the English UI, what it says
 (circles in red and black). But if I switch the UI to German, use
 the translated menu items (Format - Bedingte Formatierung -
 Bedingung, then Alle Zellen, Symbolstil and 4 Kreise rot 
 schwarz), I see arrows here (one red down, two yellow slanting,
 one green up) ... :( Can someone confirm it with an other
 language/OS/architecture/else? And is it intended or a bug (if
 so, does anyone know, if it is already reported)?

 If it only happens in non EN-US builds it is just a missing
 translation for the new icon sets. I added a few new icon sets
 which might have moved translations.

O.K.

 Please keep that in mind and check it in the release build after
 all new strings have been translated. In general I think that such
 problems should not require a report yet. If you can't reproduce
 such or similar bugs in en_US I would always wait a bit until the
 translations catch up with the development work.

Well, I prefer to ask here first to see, if it is only a problem 
with the German UI/help or is it in other languages as well (or 
maybe some Win vs. GNU/Linux, 32bit vs. 64bit etc. only stuff ... ;) 
).
Thank you for your answer
Thomas.

-- 
Maybe we should think of this as one perfect week... where we found 
each other, and loved each other... and then let each other go 
before anyone had to seek professional help.

___
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] 4.2 beta1 please install and test :)

2013-11-24 Thread Joel Madero

Hi All,

So 4.2 beta 1 is packaged and ready to go. I hope everyone in QA will 
take the time it install it and play around with it - this is the only 
way we'll catch any nasty bugs before release.


http://dev-builds.libreoffice.org/pre-releases/


Thanks all for the help, truly this is a great team of people :-D



Warmest Regards,
Joel
___
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] Fantastic Work QA Team :)

2013-11-24 Thread Joel Madero

Hi All,

Last week I sent out an email congratulating the team for getting the 
bug count down to 1,1,24 unconfirmed bugs (this was down nearly 100 in 
just a couple weeks).


Well, thanks to some incredible effort by members of the team, we're now 
down to 987 bugs - in just 3 days (yes, 3) we've dropped the number by 
nearly 150 bugs. We've also handled a ton of the really old unconfirmed 
bugs which is great.


This being said, we're always looking for new volunteers - a few new 
people have joined in the last month or so and we could still use 
another 20 probably. So if you're on the fence and thinking I'd like to 
contribute -- really now's the time, and just to reiterate -- _no 
programming skills are needed_ :)



Warmest Regards,
Joel

___
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] Fantastic Work QA Team :)

2013-11-24 Thread Thomas Hackert
Hello Joel, *,
On Sonntag, 24. November 2013 18:04 Joel Madero wrote:
 Last week I sent out an email congratulating the team for getting
 the bug count down to 1,1,24 unconfirmed bugs (this was down
 nearly 100 in just a couple weeks).
 
 Well, thanks to some incredible effort by members of the team,
 we're now down to 987 bugs - in just 3 days (yes, 3) we've dropped
 the number by nearly 150 bugs. We've also handled a ton of the
 really old unconfirmed bugs which is great.

cool, that sounds great :) Thanks to you all, who have done this 
work :)

 This being said, we're always looking for new volunteers - a few
 new people have joined in the last month or so and we could still
 use another 20 probably. So if you're on the fence and thinking
 I'd like to contribute -- really now's the time, and just to
 reiterate -- _no programming skills are needed_ :)

We need to finish the Germanophone translation first (where I 
already found some bugs, and not only translation-related ones ... 
;) ), but I will join QA, when it is finished ... ;)
Thanks again for your work
Thomas.

-- 
sic transit discus mundi
(From the System Administrator's Guide, by Lars Wirzenius)

___
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] Fantastic Work QA Team :)

2013-11-24 Thread Tommy
On Sun, 24 Nov 2013 18:04:10 +0100, Joel Madero jmadero@gmail.com  
wrote:



Hi All,

Last week I sent out an email congratulating the team for getting the
bug count down to 1,1,24 unconfirmed bugs (this was down nearly 100 in
just a couple weeks).

Well, thanks to some incredible effort by members of the team, we're now
down to 987 bugs - in just 3 days (yes, 3) we've dropped the number by
nearly 150 bugs. We've also handled a ton of the really old unconfirmed
bugs which is great.

This being said, we're always looking for new volunteers - a few new
people have joined in the last month or so and we could still use
another 20 probably. So if you're on the fence and thinking I'd like to
contribute -- really now's the time, and just to reiterate -- _no
programming skills are needed_ :)


Warmest Regards,
Joel



as said in a previous mail to the list:

open this link and scroll to bottom of the page):
http://snipurl.com/287u2ky

the UNCONFIRMED bug count is again below 1000.
many thanks to all the QA volunteers who helped reaching this goal.

I think that the QA team should monitor all the other figures of the first  
column (which is about all open bugs).


actually the situation is:

UNCONFIRMED --  987
NEW -- 6095
ASSIGNED -  168
REOPENED -  350
NEEDINFO -  913
TOTAL- 8513

___
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] Fantastic Work QA Team :)

2013-11-24 Thread Joren DC
Joel Madero schreef op 24/11/13 18:04:
 Hi All,

 Last week I sent out an email congratulating the team for getting the
 bug count down to 1,1,24 unconfirmed bugs (this was down nearly 100 in
 just a couple weeks).

 Well, thanks to some incredible effort by members of the team, we're
 now down to 987 bugs - in just 3 days (yes, 3) we've dropped the
 number by nearly 150 bugs. We've also handled a ton of the really old
 unconfirmed bugs which is great.
To visualize this spectacular drop:
https://bugs.freedesktop.org/reports.cgi?product=LibreOfficedatasets=UNCONFIRMED

Nice work team!

Kind regards,
Joren

___
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-24 Thread Thorsten Behrens
Pedro wrote:
 State of daily Master builds (for Windows) on the 22nd of November 2013:
 
Thx for the overview!

 Comments:
 
 1) Tinderbox (alias TB) #39 and #42 don't provide the needed txt
 file

Seems to be related to the different tinderbox scripts (both use
buildbot/tb/tb). Currently lack the cycles to have a deeper look,
maybe someone else could port that over from tb2?

 2) TB #39 and #42 are building Master builds for the upcoming 4.3 branch (as
 expected) but there are no 4.2 branch daily builds

Good point, let me add that.

 3) Build names for TB #42 are still different from the other TBs

Let me attempt to fix that, too.

Cheers,

-- Thorsten


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

Re: [Libreoffice-qa] [MozTrap] need info

2013-11-24 Thread Sophie
Hi Marina,
Le 21/11/2013 18:35, Marina Latini a écrit :
 Hi all! I'm a newbe tester and I'm searching for informations.

Welcome to the group!
 
 I'm using LibreOffice with Italian locale but I can't find Italian in
 the section SET YOUR ENVIRONMENT. How can I proceed?

Currently, Moztrap is only in English and can't run in your locale. If
you see other locales it's because we have tried some localization but
it didn't work well. We hope in the future to be able to add translation
of Moztrap UI and tests.
We will run a session on the 4.2.0 beta2 version, the tests and
environment will be in English, but you can apply them to your localized
version if you wish.

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


Re: [Libreoffice-qa] QA-event ??

2013-11-24 Thread Sophie
Hi Cor,
Le 18/11/2013 22:32, Cor Nouws a écrit :
 Sophie wrote (17-11-13 19:23)
 
 May be we could include the manual tests I'm preparing for the beta too?
 
 Yes, good idea!
 (And great to read that you are working on this :) )

So I've prepared the wiki page, are you ok with it? Should I ask the
marketing project to make some announcements about it?

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/


Re: [Libreoffice-qa] Improving UI Accessibility

2013-11-24 Thread Sophie
Hi Robinson,
Le 21/11/2013 20:25, Robinson Tryon a écrit :
 Hi QA,
 
 Per our discussion at the QA Meeting on Monday[1], I talked to the ESC
 about our concerns with keyboard a11y issues in new/converted UIs.
 
 ESC was helpful in suggesting several steps to remedy these shorfalls 
 including
 * Turning bugs into EasyHacks that can be more easily addressed
 * Providing documentation on a11y testing/dev tools
 
 Stuart/Florian R. - Thank you for bringing these problems up at the QA
 Meeting. A11y is really important for us as a project, and it's great
 to have people ensuring that we're not regressing as we improve
 LibreOffice's UI. I'd like you two to take the lead on addressing
 these bugs and providing feedback in a format that's actionable by the
 devs.
 
 Regarding testing, perhaps there are specific things that we could do
 with MozTrap to identify a11y-relevant changes early-on. Sophie -
 thoughts? :-)

It would be possible to design special testing cases using Orca under
Linux for example. It's also possible to check for the information that
are passed to the screen reader with Accerciser [1], I used to test OOo
that way some time ago.

[1]https://developer.gnome.org/accerciser/stable/

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/


Re: [Libreoffice-qa] [MozTrap] need info

2013-11-24 Thread Marina Latini
Thank you Sophie!

I can download and execute the tests in English.

JFYI... In the page [1], LibreOffice is written Libreoffice with the first 
o in lowercase instead of uppercase :)

[1] http://manual-test.libreoffice.org/runtests/

have a nice day!
Marina


Marina Latini 
mar...@studiostorti.com

Studio Storti Srl
Viale Leonardo da Vinci, 18
36100 - Vicenza (VI)
http://www.studiostorti.com


- Messaggio originale -
Da: Sophie gautier.sop...@gmail.com
A: libreoffice-qa@lists.freedesktop.org
Inviato: Lunedì, 25 novembre 2013 8:23:38
Oggetto: Re: [Libreoffice-qa] [MozTrap] need info

We will run a session on the 4.2.0 beta2 version, the tests and
environment will be in English, but you can apply them to your localized
version if you wish.

Kind regards
Sophie
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/
___
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] [MozTrap] need info

2013-11-24 Thread Sophie
Le 25/11/2013 08:48, Marina Latini a écrit :
 Thank you Sophie!
 
 I can download and execute the tests in English.

Great, and thanks a lot for your participation! I've still some
update/corrections on the tests to make, I'll set a new run of tests for
4.2.0 beta2 by the end of the week.
 
 JFYI... In the page [1], LibreOffice is written Libreoffice with
 the first o in lowercase instead of uppercase :)
 
 [1] http://manual-test.libreoffice.org/runtests/

This is now corrected, thank you for your feedback.
 
 have a nice day! Marina

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

[Libreoffice-bugs] [Bug 71953] Other: Lentitud

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

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||ba...@quipo.it,
   ||f...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #1 from tommy27 ba...@quipo.it ---
please rewrite your report in English which is the official language of the
bug-tracker. otherwise it will be hard to help you.

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


[Libreoffice-bugs] [Bug 71939] Lao Spellcheck

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

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 CC||ba...@quipo.it,
   ||tima...@gmail.com

--- Comment #1 from tommy27 ba...@quipo.it ---
I add Andras Timar to CC list. maybe he can help.

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


[Libreoffice-bugs] [Bug 59284] FORMATTING: Make it easier to apply borders to cells

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

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||ba...@quipo.it
 Ever confirmed|0   |1

--- Comment #1 from tommy27 ba...@quipo.it ---
I change status of this useful meta-bug to NEW to remove it from the list of
UNCONFIRMED bugs.

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


[Libreoffice-bugs] [Bug 71957] New: StartCenter: single click or double-click to open a recent file should be consistent with file manager configuration

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

  Priority: medium
Bug ID: 71957
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: StartCenter: single click or double-click to open a
recent file should be consistent with file manager
configuration
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: jbf.fa...@sud-ouest.org
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.1.3.2 release
 Component: UI
   Product: LibreOffice

The choice to open a recent file with a single click or a double click should
not be hard coded in LibreOffice but taken from the File Manager configuration
For example, if I configured Nautilus to use a double click, it is not
consistent to use a single click in LibreOffice. 

Another possibility is to make this choice configurable.

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 71957] StartCenter: single click or double-click to open a recent file should be consistent with file manager configuration

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

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

   What|Removed |Added

   Hardware|Other   |All
Version|4.1.3.2 release |4.2.0.0.beta1

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


[Libreoffice-bugs] [Bug 46705] CDBL truncates the mantissa

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

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||ba...@quipo.it
 Ever confirmed|0   |1

--- Comment #8 from tommy27 ba...@quipo.it ---
I move this to NEEDINFO

@Noel
please reply Joel's answer in Comment 5

@Christopher Yeleighton
is the issue you described still present in recent LibO 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 70376] RTL file names do not display properly on the window bar

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

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #8 from Ahmad Harthi aalhar...@kacst.edu.sa ---
I can reproduce this bug, marked as NEW

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


[Libreoffice-bugs] [Bug 70222] VIEWING: empty diagrams are minimized

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

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Severity|normal  |minor
 Ever confirmed|0   |1

--- Comment #3 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
Reproducible.

Set importance to Low / Minor because there no easy way to create an empty
diagram and because I do not know an use case for that.

If you need a template to be printed and completed by hand, you should do that
by using Draw.


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 70416] Other: Errors in descriptions in the Debian packaging

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

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

   What|Removed |Added

   Priority|medium  |low

--- Comment #4 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
Confirmed with version 4.1.4.0.0+ and 4.2.0.0.beta1.

Set importance to Low because it never caused problem in installation process.

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 66543] FILESAVE: DOCX exporting line numbers changes the values

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

Adam CloudOn rattles2...@gmail.com changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

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


[Libreoffice-bugs] [Bug 66543] FILESAVE: DOCX exporting line numbers changes the values

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

Adam CloudOn rattles2...@gmail.com changed:

   What|Removed |Added

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

--- Comment #5 from Adam CloudOn rattles2...@gmail.com ---
(In reply to comment #4)
 So, is it fixed or not :)? /me don't know.

Just checked - fixed! :-)

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


[Libreoffice-bugs] [Bug 69687] FORMATTING: Character spacing problem

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

--- Comment #15 from Foss f...@openmailbox.org ---
Confirming that third paragraph has 6 lines in LO Version: 4.3.0.0.alpha0+
Build ID: 73342dbb82ba074d01962359dac50fb2aa36cbeb
TinderBox: MacOSX-x86@49-TDF, Branch:master, Time: 2013-11-22_07:09:14

But is this really  a bug? Maybe LO just handles text slightly different than
in previous versions? What leads you to the conclusion that what LO 4.0.x does
is correct and LO 4.1.x behaves incorrect?

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


[Libreoffice-bugs] [Bug 54265] cannot get uno environments critical startup error after update 3.5.5.3-3.6.1

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

Foss f...@openmailbox.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WONTFIX

--- Comment #3 from Foss f...@openmailbox.org ---
Is this bug still valid / reproducible with the latest LO release?  Currently
4.1.3.2: http://www.libreoffice.org/download/

If it was a glitch between 3.5 and 3.6 let's close this as won't fix. 4.2 is
about to be released in a few months. Please re-open if you disagree. 3.6 is no
longer offered as a download.

Should this be still reproducible for you with the latest LO release please
re-open this bug and we’ll go from 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 67870] Writer doesn't remember page width scale in .doc files

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

--- Comment #12 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
Ah, I understand, you mean the zoom setting page width (second choice in the
zoom options) is not saved or honored by LibreOffice. Indeed when opening your
attachment, it opens with zoom at 100% while page width gives 111% on my
screen. This value depends on the configuration of the LibreOffice window
(maximized or not, sidebar or not, etc.).

Only Miklos can say if that is a bug or not. :-)

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 70637] StartCenter: select a recent used file and hit Enter ...

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

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

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 71957] StartCenter: single click or double-click to open a recent file should be consistent with file manager configuration

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

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

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 67895] Frequent crashes with a config file

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

Foss f...@openmailbox.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #4 from Foss f...@openmailbox.org ---
Ok, so this bug exists on all os? How can I reproduce it on OS X?

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


[Libreoffice-bugs] [Bug 70121] FILESAVE: formatting of csv-file has changed when saving the second time

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

--- Comment #3 from rob...@familiegrosskopf.de ---
(In reply to comment #2)
 Not reproducible for me with version 4.1.4.0.0+ under Linux / Ubuntu 64 bits.
 
 Did you try with the current stable version ?

I have tried it with LO 4.1.1.2. Have now tested it with LO 4.1.3.2 - the same
behavior. Fist saved with  around the text and a comma as separator, second
with a tabulator as separator and nothing around the text.

Can't reproduce it with 4.2.0.0.beta1. If it isn't reproducable with 4.1.4 for
you let us hope the bug has gone - but what has been changed? Let us wait for
the first 4.1.4-Version available for me - don't know where to get one now for
Linux-64bit-rpm-systems.

Regards

Robert

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


[Libreoffice-bugs] [Bug 64161] PDF: EPS images don't get exported when writing a PDF file

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

Foss f...@openmailbox.org changed:

   What|Removed |Added

 Status|REOPENED|NEEDINFO

--- Comment #12 from Foss f...@openmailbox.org ---
Can you please provide a test document so this can be tested on newer LO
versions?

Setting to NEEDINFO until more detail is provided.

After providing the requested info, please reset this bug to UNCONFIRMED.
Thanks :)

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


[Libreoffice-bugs] [Bug 70479] Extra line appeared after copy a worksheet with comments unhide

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

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||arnaud.vers...@gmail.com,
   ||jbf.fa...@sud-ouest.org
 Ever confirmed|0   |1

--- Comment #3 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
Confirming Dominique's comment.

Step to reproduce: right click on the tab of the worksheet and choose
Move/Copy the Sheet.

Hi Arnaud, something for you ? Possibly some pointer not well nullified or
modified? :-)

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 69687] FORMATTING: Character spacing problem

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

--- Comment #16 from Evgeniy kame...@gmail.com ---
The test file is part of large text document with 440 pages. I deal with
problem when open my file in the latest versions of the LO (445 pages instead).
You can check the view of the third paragraph in case you change the character
to condensed 1.9 (have a look at the top of the third paragraph (it has
normal view) and check the tail of the paragraph - something terrible) or to
standard (there is just no any effect). Is it normal behaviour? Really, I can't
agree with that. There is no the problems in latest OpenOffice and previous LO
versions.

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


[Libreoffice-bugs] [Bug 69687] FORMATTING: Character spacing problem

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

--- Comment #17 from Evgeniy kame...@gmail.com ---
The best way to check is to compare behaviour of some versions of the text
processor using the test file enclosed.

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


[Libreoffice-bugs] [Bug 48164] VIEWING: in PPS presentation slide transition looks wrong on Linux

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

Foss f...@openmailbox.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #7 from Foss f...@openmailbox.org ---
Ubuntu 13.10 LO 4.1.2.3 worksforme.

Presentation shows fine.

If this this bug is still valid / reproducible with the latest LO release,
please re-open this bug. Currently 4.1.3.2:
http://www.libreoffice.org/download/

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


[Libreoffice-bugs] [Bug 70498] VIEWING: graphic file wmf image is not displayed correctly

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

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

   What|Removed |Added

   Hardware|x86-64 (AMD64)  |All
 OS|Windows (All)   |All

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


[Libreoffice-bugs] [Bug 70498] VIEWING: graphic file wmf image is not displayed correctly

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

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

   What|Removed |Added

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

--- Comment #10 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
Reproducible with version 4.1.4.0.0+ and 4.2.0.0.beta1+ under Linux/Ubuntu.
These versions work as if they add a white bar at the bottom of the graphics.
No problem with version 4.0.6, so set keyword regression.

Thank you for the bug report.
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 45603] LO Misreporting Works 7.0 Chart Template

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

Foss f...@openmailbox.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID

--- Comment #10 from Foss f...@openmailbox.org ---
1) Works has been discontinued 2007 (almost 7 years ago).
2) No actual file to even confirm this bug.
3) Not sure that even if this bug was confirmed it would not be a WONTFIX case,
since developer time is somewhat rare. This bug might probably be laying around
for years and then get set to wontfix once Works has been dead for 10 years or
so.

Setting to INVALID. If you have any chance of attaching a document and exact
reproduce steps please re-open this bug and we'll try to confirm 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 71954] EDITING: drag and drop text into database form fields will not get stored

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

rob...@familiegrosskopf.de changed:

   What|Removed |Added

   Hardware|x86-64 (AMD64)  |All
 OS|Windows (All)   |All
 Status|UNCONFIRMED |NEW
 CC||rob...@familiegrosskopf.de
Version|4.1.3.2 release |Inherited From OOo
 Ever confirmed|0   |1

--- Comment #1 from rob...@familiegrosskopf.de ---
I can confirm this buggy behavior. When I look at the Save-button of the
navigationbar of the form it seems to recognize the changed text (the button
appears colored, isn't greyed out any more). But it doesn't save anything of
the field when you press the button Save Record. You have to set the cursor
in the field manually to save the content of the field.

Have tried it with different versions, LO 4.2.0.0 beta1, LO 4.1.3.2, LO 3.3.4
and also LO 3.3.0 beta1. Drag and drop has never worked into the fields of a
form, when you didn't set the cursor inside the fields after dropping the
content in this fields.

I set this bug to New and the version to the first Inherited From OOo. Set
the platform to all, because I have tested with OpenSUSE 12.3 64bit rpm Linux.

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


[Libreoffice-bugs] [Bug 71841] Button Shading is misaligned in base

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

rob...@familiegrosskopf.de changed:

   What|Removed |Added

 CC||rob...@familiegrosskopf.de

--- Comment #1 from rob...@familiegrosskopf.de ---
Can't confirm this behavior. I have tested 4.2.0.0beta1, but also many
alpha-versions of 4.2 with base. Never seen such a shading.

Which system do you use?

Which windowmanager?

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


[Libreoffice-bugs] [Bug 70535] DATALOSS: paste undo result in irrecoverable loss of previous document data

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

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 ---
I do not reproduce with version 4.1.4.0.0+ under Linux/Ubuntu 64 bits.

Please, could you try again with the current stable release provided by TDF
(generic Linux version)?

There is keyboard shortcut for paste unformatted text : Ctrl+Maj+Alt+V

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 48343] Chinese - : character not displayed in odt, visible in exported PDF

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

Foss f...@openmailbox.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #6 from Foss f...@openmailbox.org ---
Dear bug reporter, is this bug still valid / reproducible with the latest LO
release?  Currently 4.1.3.2: http://www.libreoffice.org/download/

Setting to NEEDINFO until more detail is provided.

After providing the requested info, please reset this bug to UNCONFIRMED.
Thanks :)

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


[Libreoffice-bugs] [Bug 71957] StartCenter: single click or double-click to open a recent file should be consistent with file manager configuration

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

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Priority|medium  |high
 CC||bitig...@openmailbox.org
 Ever confirmed|0   |1

--- Comment #1 from Emir Sarı bitig...@openmailbox.org ---
+1 from me. I always find myself double clicking on Start Center recent items,
and it is very non-native. 

If it is going to be there should be some mouse-on-hover background or
something that implies single click. 

Recent files area should mimick the file manager, if possible use the same api
or services, not rediscover the America.

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


[Libreoffice-bugs] [Bug 65481] LibreOffice Drawing work very slow when I try scroll or zoom scheme in attached document

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

Alexandr alexpik...@gmail.com changed:

   What|Removed |Added

 OS|All |Linux (All)
 CC||alexpik...@gmail.com

--- Comment #6 from Alexandr alexpik...@gmail.com ---
In LibreOffice Draw on Windows 7 everything is OK, but I can not even open the
document with LibreOffice 4.1.2.3 from Debian backports. When I try to open the
file, all LibreOffice applications close without any messages (even in
terminal).

Mikhail, please, check you memory/CPU usage. When I open the file on Windows 7,
LibreOffice uses about 200 Mbytes of memory.

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


[Libreoffice-bugs] [Bug 47183] Line scroll too slow when editing to replace 0x0A with 0x0D0A at end of justified paragraph.

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

Foss f...@openmailbox.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #6 from Foss f...@openmailbox.org ---
Setting to WFM as of comment #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 70535] DATALOSS: paste undo result in irrecoverable loss of previous document data

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

Foss f...@openmailbox.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #4 from Foss f...@openmailbox.org ---
Setting to NEEDINFO as of comment #3 until more detail is provided.

After providing the requested info, please reset this bug to UNCONFIRMED.
Thanks :)

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


[Libreoffice-bugs] [Bug 70549] plots of dependent data are not updated on undo

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

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

   What|Removed |Added

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

--- Comment #1 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
Not reproducible with version 4.1.4.0.0+ under Linux/Ubuntu 64 bits

Closing as WorksForMe. Please, feel free to reopen if you can provide
information for specific case which triggers this behavior: type of plots, OS,
etc.

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 71933] LO crashes with a SIGSEGV on scrolling through an xls

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

Foss f...@openmailbox.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #2 from Foss f...@openmailbox.org ---
Can you please provide a test document so this can be tested against and
subsequently be confirmed. If your document contains sensitive data, please
clear that or replace it with random information.

A step-by-step description of how to reproduce the issue is most helpful and
will help to speed up the processing of this problem a lot.

Setting to NEEDINFO until more detail is provided.

After providing the requested info, please reset this bug to UNCONFIRMED.
Thanks :)

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


[Libreoffice-bugs] [Bug 60064] [Feature request] define positional origin for tab stops

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

ajlittoz page74010...@yahoo.fr changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
   Assignee|libreoffice-b...@lists.free |page74010...@yahoo.fr
   |desktop.org |
 Ever confirmed|1   |0

--- Comment #2 from ajlittoz page74010...@yahoo.fr ---
Created attachment 89707
  -- https://bugs.freedesktop.org/attachment.cgi?id=89707action=edit
Writer sample document with word flushed at right margin when A4 portait

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


[Libreoffice-bugs] [Bug 60064] [Feature request] define positional origin for tab stops

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

ajlittoz page74010...@yahoo.fr changed:

   What|Removed |Added

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

--- Comment #3 from ajlittoz page74010...@yahoo.fr ---
What kind of test document do you need?

This is an enhancement request for a feature which is not presently offered by
Writer.

A sample document could be built like this:

- create a new A4 portrait document
- insert a line containing A (tab) B
- give this line a named style, e.g. Custom based on Default
- modify tabs in Custom style: create one right-aligned tab at right margin

Result:
A is flushed at left margin, B at right margin.

Save document, re-open it. Format-Page, change to A4 landscape.

Result:
B is no longer at right margin and stays 17cm from left margin, as per
definition.

My intent was to keep B flushed at right margin, but this is not possible in
the present implementation since ALL tabs are relative to left margin. This
requires to attach a new property to a tab definition (its coordinate origin).

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


[Libreoffice-bugs] [Bug 70595] Other: Table of Contents displays wrong numbers in Web Layout view

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

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

   What|Removed |Added

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

--- Comment #1 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
Not reproducible for me with version 4.1.4.0.0+ under Linux/Ubuntu 64 bits.

That said the concept of page number does not make sense in the case of web
layout view. Indeed in that case you have only one page, unless your document
is very long. I guess each page in web layout view has 64K lines or something
like that. And the number of lines depends on the window width and the zoom
factor.

So closing as 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 71728] Writer crashes when merging cells

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

Foss f...@openmailbox.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #8 from Foss f...@openmailbox.org ---
Ubuntu 13.10, LO 4.1.2.3. Merging of yellow cells in test document works fine.

After installing 4.1.3.2 in 13.10 tested again. Works fine too.

Pavel: please use the deb from LO page.

WORKSFORME.

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


[Libreoffice-bugs] [Bug 71295] Cannot Open office files on smb network drives

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

Maxim momonas...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME
 CC||momonas...@gmail.com
Summary|Cannot Open office files on |Cannot Open office files on
   |ntfs network drives |smb network drives

--- Comment #2 from Maxim momonas...@gmail.com ---
Hi,

I can't reproduce with LMDE MATE 64-bit fully updated, MATE desktop 1.6,
LibreOffice 4.0.3.3. Tried with and without 'gvfs-fuse' package installed.
Please make sure your installation is up to date, and you have 'gvfs-backends'
and 'libreoffice-gnome' packages installed. If you still have troubles, try to
remove 'gvfs-fuse' package (or wait for your distribution to update to 4.1,
which should ignore 'gvfs-fuse' mount).

-- 
You are receiving this mail because:
You are the 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-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=71423

Foss f...@openmailbox.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #8 from Foss f...@openmailbox.org ---
Gerry: Can you please provide a test document so this can be tested against and
subsequently be confirmed. If your document contains sensitive data, please
clear that or replace it with random information.

A step-by-step description of how to reproduce the issue is most helpful and
will help to speed up the processing of this problem a lot.

Setting to NEEDINFO until more detail is provided.

After providing the requested info, please reset this bug to UNCONFIRMED.
Thanks :)

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


[Libreoffice-bugs] [Bug 71856] FILEOPEN: DOC import severe table duplication

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

Foss f...@openmailbox.org changed:

   What|Removed |Added

 OS|Linux (All) |All
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #6 from Foss f...@openmailbox.org ---
Test document is crashing LO badly in Ubuntu 13.10 (4.1.3.2) and OS X 10.9
latest nightly.

Test doc file does open fine with Word 2011 on OS X.

Setting OS to ALL and bug to NEW. Let's hope a dev can look into this soon.

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


[Libreoffice-bugs] [Bug 62484] EDITING: Embedded Image As Link in Template (win only)

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

Foss f...@openmailbox.org changed:

   What|Removed |Added

Summary|EDITING: Embedded Image As  |EDITING: Embedded Image As
   |Link in Template|Link in Template (win only)

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


[Libreoffice-bugs] [Bug 53231] pictures in full screen are not saved

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

Foss f...@openmailbox.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #10 from Foss f...@openmailbox.org ---
Does 4.1.3.2 change anything for the better?

Setting to NEEDINFO until more detail is provided.

After providing the requested info, please reset this bug to UNCONFIRMED.
Thanks :)

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


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

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

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

   What|Removed |Added

  Attachment #88310|0   |1
is obsolete||

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


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

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

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

   What|Removed |Added

  Attachment #88309|0   |1
is obsolete||

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


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

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

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

   What|Removed |Added

  Attachment #88313|0   |1
is obsolete||

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


  1   2   3   4   5   6   >