[Libreoffice-commits] .: basic/source

2012-11-18 Thread Libreoffice Gerrit user
 basic/source/runtime/methods.cxx |   13 -
 1 file changed, 12 insertions(+), 1 deletion(-)

New commits:
commit e3e7dfa01119b5f5ab7abc3c6e26049de5d3cc45
Author: Norbert Thiebaud nthieb...@gmail.com
Date:   Sun Nov 18 02:49:27 2012 -0600

basic: fix OUString copy overrun in Mid()

Change-Id: I91cdd3a52917b89ab2a452e0eeb7a9e00dc35e8b
Reported-by: vmik...@suse.cz

diff --git a/basic/source/runtime/methods.cxx b/basic/source/runtime/methods.cxx
index 08d6699..18da6ae 100644
--- a/basic/source/runtime/methods.cxx
+++ b/basic/source/runtime/methods.cxx
@@ -1267,7 +1267,18 @@ RTLFUNC(Mid)
 else
 {
 OUString aResultStr;
-aResultStr = aArgStr.copy( nStartPos, nLen );
+if(nLen  0)
+{
+aResultStr = aArgStr.copy( nStartPos);
+}
+else
+{
+if(nStartPos + nLen  aArgStr.getLength())
+{
+nLen = aArgStr.getLength() - nStartPos;
+}
+aResultStr = aArgStr.copy( nStartPos, nLen );
+}
 rPar.Get(0)-PutString( aResultStr );
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: sw/CppunitTest_sw_subsequent_odfexport.mk sw/CppunitTest_sw_subsequent_odfimport.mk sw/CppunitTest_sw_subsequent_ooxmlexport.mk sw/CppunitTest_sw_subsequent_rtfexport.mk sw/Cp

2012-11-18 Thread Libreoffice Gerrit user
 sw/CppunitTest_sw_subsequent_odfexport.mk   |1 
 sw/CppunitTest_sw_subsequent_odfimport.mk   |1 
 sw/CppunitTest_sw_subsequent_ooxmlexport.mk |1 
 sw/CppunitTest_sw_subsequent_rtfexport.mk   |1 
 sw/CppunitTest_sw_subsequent_ww8export.mk   |1 
 sw/qa/extras/inc/swmodeltestbase.hxx|  238 
 sw/qa/extras/odfexport/odfexport.cxx|3 
 sw/qa/extras/odfimport/odfimport.cxx|2 
 sw/qa/extras/ooxmlexport/ooxmlexport.cxx|3 
 sw/qa/extras/ooxmlimport/ooxmlimport.cxx|7 
 sw/qa/extras/rtfexport/rtfexport.cxx|5 
 sw/qa/extras/rtfimport/rtfimport.cxx|6 
 sw/qa/extras/swmodeltestbase.hxx|  238 
 sw/qa/extras/ww8export/ww8export.cxx|4 
 sw/qa/extras/ww8import/ww8import.cxx|6 
 15 files changed, 258 insertions(+), 259 deletions(-)

New commits:
commit 66d3da3505ef4964be9a4dbe0363af8f0c519270
Author: Miklos Vajna vmik...@suse.cz
Date:   Sun Nov 18 11:07:45 2012 +0100

sw: move swmodeltestbase.hxx to qa/extras/inc/

If we already have such an include dir, let's have all headers there.

Change-Id: I2100b5308e7fdad9d98cfde76434ff485aca20c7

diff --git a/sw/CppunitTest_sw_subsequent_odfexport.mk 
b/sw/CppunitTest_sw_subsequent_odfexport.mk
index 5149659..64e6318 100644
--- a/sw/CppunitTest_sw_subsequent_odfexport.mk
+++ b/sw/CppunitTest_sw_subsequent_odfexport.mk
@@ -54,6 +54,7 @@ $(eval $(call 
gb_CppunitTest_use_externals,sw_subsequent_odfexport,\
 $(eval $(call gb_CppunitTest_set_include,sw_subsequent_odfexport,\
 -I$(SRCDIR)/sw/inc \
 -I$(SRCDIR)/sw/source/core/inc \
+-I$(SRCDIR)/sw/qa/extras/inc \
 $$(INCLUDE) \
 ))
 
diff --git a/sw/CppunitTest_sw_subsequent_odfimport.mk 
b/sw/CppunitTest_sw_subsequent_odfimport.mk
index 189817e..f7ad4eb 100644
--- a/sw/CppunitTest_sw_subsequent_odfimport.mk
+++ b/sw/CppunitTest_sw_subsequent_odfimport.mk
@@ -53,6 +53,7 @@ $(eval $(call 
gb_CppunitTest_use_externals,sw_subsequent_odfimport,\
 $(eval $(call gb_CppunitTest_set_include,sw_subsequent_odfimport,\
 -I$(SRCDIR)/sw/inc \
 -I$(SRCDIR)/sw/source/core/inc \
+   -I$(SRCDIR)/sw/qa/extras/inc \
 $$(INCLUDE) \
 ))
 
diff --git a/sw/CppunitTest_sw_subsequent_ooxmlexport.mk 
b/sw/CppunitTest_sw_subsequent_ooxmlexport.mk
index 288795e..576bb5a 100644
--- a/sw/CppunitTest_sw_subsequent_ooxmlexport.mk
+++ b/sw/CppunitTest_sw_subsequent_ooxmlexport.mk
@@ -54,6 +54,7 @@ $(eval $(call 
gb_CppunitTest_use_externals,sw_subsequent_ooxmlexport,\
 $(eval $(call gb_CppunitTest_set_include,sw_subsequent_ooxmlexport,\
 -I$(SRCDIR)/sw/inc \
 -I$(SRCDIR)/sw/source/core/inc \
+   -I$(SRCDIR)/sw/qa/extras/inc \
 $$(INCLUDE) \
 ))
 
diff --git a/sw/CppunitTest_sw_subsequent_rtfexport.mk 
b/sw/CppunitTest_sw_subsequent_rtfexport.mk
index f5ac911..a214830 100644
--- a/sw/CppunitTest_sw_subsequent_rtfexport.mk
+++ b/sw/CppunitTest_sw_subsequent_rtfexport.mk
@@ -53,6 +53,7 @@ $(eval $(call 
gb_CppunitTest_use_externals,sw_subsequent_rtfexport,\
 $(eval $(call gb_CppunitTest_set_include,sw_subsequent_rtfexport,\
 -I$(SRCDIR)/sw/inc \
 -I$(SRCDIR)/sw/source/core/inc \
+   -I$(SRCDIR)/sw/qa/extras/inc \
 $$(INCLUDE) \
 ))
 
diff --git a/sw/CppunitTest_sw_subsequent_ww8export.mk 
b/sw/CppunitTest_sw_subsequent_ww8export.mk
index 68fd485..340afec 100644
--- a/sw/CppunitTest_sw_subsequent_ww8export.mk
+++ b/sw/CppunitTest_sw_subsequent_ww8export.mk
@@ -54,6 +54,7 @@ $(eval $(call 
gb_CppunitTest_use_externals,sw_subsequent_ww8export,\
 $(eval $(call gb_CppunitTest_set_include,sw_subsequent_ww8export,\
 -I$(SRCDIR)/sw/inc \
 -I$(SRCDIR)/sw/source/core/inc \
+   -I$(SRCDIR)/sw/qa/extras/inc \
 $$(INCLUDE) \
 ))
 
diff --git a/sw/qa/extras/inc/swmodeltestbase.hxx 
b/sw/qa/extras/inc/swmodeltestbase.hxx
new file mode 100644
index 000..2a7f4d6
--- /dev/null
+++ b/sw/qa/extras/inc/swmodeltestbase.hxx
@@ -0,0 +1,238 @@
+/*
+ * Version: MPL 1.1 / GPLv3+ / LGPLv3+
+ *
+ * The contents of this file are subject to the Mozilla Public License Version
+ * 1.1 (the License); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ * http://www.mozilla.org/MPL/
+ *
+ * Software distributed under the License is distributed on an AS IS basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+ * for the specific language governing rights and limitations under the
+ * License.
+ *
+ * The Initial Developer of the Original Code is
+ *   Miklos Vajna vmik...@suse.cz (SUSE, Inc.)
+ * Portions created by the Initial Developer are Copyright (C) 2012 the
+ * Initial Developer. All Rights Reserved.
+ *
+ * Contributor(s):
+ *
+ * Alternatively, the contents of this file may be used under the terms of
+ * either the GNU General Public License Version 3 or later (the GPLv3+), or
+ * the GNU Lesser General Public License Version 3 

[Libreoffice-commits] .: basegfx/inc basegfx/source svtools/inc vcl/inc

2012-11-18 Thread Libreoffice Gerrit user
 basegfx/inc/basegfx/polygon/b2dpolygontriangulator.hxx |1 -
 basegfx/inc/basegfx/polygon/b2dpolypolygon.hxx |1 +
 basegfx/source/polygon/b2dpolypolygon.cxx  |1 -
 svtools/inc/svtools/borderhelper.hxx   |1 -
 vcl/inc/sallayout.hxx  |1 -
 5 files changed, 1 insertion(+), 4 deletions(-)

New commits:
commit 3322f0d2f8ee593948ade983d2a24db6bfbf23c7
Author: Takeshi Abe t...@fixedpoint.jp
Date:   Sun Nov 18 17:32:57 2012 +0900

Move #include to appropriate header

Change-Id: I58c33b91f205641f9cc8cdfcd9ecfadc77341b82

diff --git a/basegfx/inc/basegfx/polygon/b2dpolygontriangulator.hxx 
b/basegfx/inc/basegfx/polygon/b2dpolygontriangulator.hxx
index f6e4f02..5af34ae 100644
--- a/basegfx/inc/basegfx/polygon/b2dpolygontriangulator.hxx
+++ b/basegfx/inc/basegfx/polygon/b2dpolygontriangulator.hxx
@@ -21,7 +21,6 @@
 #define _BGFX_POLYGON_B2DPOLYGONTRIANGULATOR_HXX
 
 #include basegfx/polygon/b2dpolypolygon.hxx
-#include vector
 #include basegfx/basegfxdllapi.h
 
 //
diff --git a/basegfx/inc/basegfx/polygon/b2dpolypolygon.hxx 
b/basegfx/inc/basegfx/polygon/b2dpolypolygon.hxx
index c22fc98..cd22644 100644
--- a/basegfx/inc/basegfx/polygon/b2dpolypolygon.hxx
+++ b/basegfx/inc/basegfx/polygon/b2dpolypolygon.hxx
@@ -24,6 +24,7 @@
 #include o3tl/cow_wrapper.hxx
 #include basegfx/range/b2drange.hxx
 #include basegfx/basegfxdllapi.h
+#include vector
 
 // predeclarations
 class ImplB2DPolyPolygon;
diff --git a/basegfx/source/polygon/b2dpolypolygon.cxx 
b/basegfx/source/polygon/b2dpolypolygon.cxx
index a8eb1bc..7075782 100644
--- a/basegfx/source/polygon/b2dpolypolygon.cxx
+++ b/basegfx/source/polygon/b2dpolypolygon.cxx
@@ -25,7 +25,6 @@
 #include basegfx/matrix/b2dhommatrix.hxx
 
 #include functional
-#include vector
 #include algorithm
 
 //
diff --git a/svtools/inc/svtools/borderhelper.hxx 
b/svtools/inc/svtools/borderhelper.hxx
index 486eaef..e095fce 100644
--- a/svtools/inc/svtools/borderhelper.hxx
+++ b/svtools/inc/svtools/borderhelper.hxx
@@ -35,7 +35,6 @@
 #include basegfx/polygon/b2dpolygon.hxx
 #include basegfx/point/b2dpoint.hxx
 #include vcl/outdev.hxx
-#include vector
 
 namespace svtools
 {
diff --git a/vcl/inc/sallayout.hxx b/vcl/inc/sallayout.hxx
index 711e994..bef64af 100644
--- a/vcl/inc/sallayout.hxx
+++ b/vcl/inc/sallayout.hxx
@@ -21,7 +21,6 @@
 #define _SV_SALLAYOUT_HXX
 
 #include tools/gen.hxx
-#include vector
 #include basegfx/polygon/b2dpolypolygon.hxx
 
 #ifndef _TOOLS_LANG_HXX
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'feature/killsdf' - l10ntools/source

2012-11-18 Thread Libreoffice Gerrit user
 l10ntools/source/po.cxx |   11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

New commits:
commit 889574a50c8f5bdffed9f3eb70426cedae0a589c
Author: Andras Timar ati...@suse.com
Date:   Sun Nov 18 12:47:54 2012 +0100

put filename into msgctxt, because po entries must be unique

Change-Id: I700b668863c2b20cdf60fa672a994b8ae4dc613a

diff --git a/l10ntools/source/po.cxx b/l10ntools/source/po.cxx
index df9efe3..2ccaed6 100644
--- a/l10ntools/source/po.cxx
+++ b/l10ntools/source/po.cxx
@@ -452,7 +452,8 @@ PoEntry::PoEntry(const OString rSDFLine, const TYPE eType)
 copy(vParts[SOURCEFILE].lastIndexOf(\\)+1));
 
 OString sMsgCtxt =
-vParts[GROUPID] + \n +
+vParts[SOURCEFILE].copy(vParts[SOURCEFILE].lastIndexOf(\\)+1) +
+\n + vParts[GROUPID] + \n +
 (vParts[LOCALID].isEmpty() ?  : vParts[LOCALID] + \n) +
 vParts[RESOURCETYPE];
 switch(eType){
@@ -527,7 +528,7 @@ OString PoEntry::getSourceFile() const
 OString PoEntry::getGroupId() const
 {
 assert( m_bIsInitialized );
-return m_pGenPo-getMsgCtxt().getToken(0,'\n');
+return m_pGenPo-getMsgCtxt().getToken(1,'\n');
 }
 
 //Get localid
@@ -538,7 +539,7 @@ OString PoEntry::getLocalId() const
 if (sMsgCtxt.indexOf('\n')==sMsgCtxt.lastIndexOf('\n'))
 return OString();
 else
-return sMsgCtxt.getToken(1,'\n');
+return sMsgCtxt.getToken(2,'\n');
 }
 
 //Get the type of component from which entry is extracted
@@ -547,9 +548,9 @@ OString PoEntry::getResourceType() const
 assert( m_bIsInitialized );
 const OString sMsgCtxt = m_pGenPo-getMsgCtxt();
 if (sMsgCtxt.indexOf('\n')==sMsgCtxt.lastIndexOf('\n'))
-return sMsgCtxt.getToken(1,'\n').getToken(0,'.');
-else
 return sMsgCtxt.getToken(2,'\n').getToken(0,'.');
+else
+return sMsgCtxt.getToken(3,'\n').getToken(0,'.');
 }
 
 //Get the type of entry
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'feature/killsdf' - l10ntools/source

2012-11-18 Thread Libreoffice Gerrit user
 l10ntools/source/po.cxx |   11 +--
 1 file changed, 5 insertions(+), 6 deletions(-)

New commits:
commit 124dc60e5519ee4d1c2454050b6f54a7b020905d
Author: Andras Timar ati...@suse.com
Date:   Sun Nov 18 13:04:33 2012 +0100

Revert put filename into msgctxt, because po entries must be unique

This reverts commit 889574a50c8f5bdffed9f3eb70426cedae0a589c.

diff --git a/l10ntools/source/po.cxx b/l10ntools/source/po.cxx
index 2ccaed6..df9efe3 100644
--- a/l10ntools/source/po.cxx
+++ b/l10ntools/source/po.cxx
@@ -452,8 +452,7 @@ PoEntry::PoEntry(const OString rSDFLine, const TYPE eType)
 copy(vParts[SOURCEFILE].lastIndexOf(\\)+1));
 
 OString sMsgCtxt =
-vParts[SOURCEFILE].copy(vParts[SOURCEFILE].lastIndexOf(\\)+1) +
-\n + vParts[GROUPID] + \n +
+vParts[GROUPID] + \n +
 (vParts[LOCALID].isEmpty() ?  : vParts[LOCALID] + \n) +
 vParts[RESOURCETYPE];
 switch(eType){
@@ -528,7 +527,7 @@ OString PoEntry::getSourceFile() const
 OString PoEntry::getGroupId() const
 {
 assert( m_bIsInitialized );
-return m_pGenPo-getMsgCtxt().getToken(1,'\n');
+return m_pGenPo-getMsgCtxt().getToken(0,'\n');
 }
 
 //Get localid
@@ -539,7 +538,7 @@ OString PoEntry::getLocalId() const
 if (sMsgCtxt.indexOf('\n')==sMsgCtxt.lastIndexOf('\n'))
 return OString();
 else
-return sMsgCtxt.getToken(2,'\n');
+return sMsgCtxt.getToken(1,'\n');
 }
 
 //Get the type of component from which entry is extracted
@@ -548,9 +547,9 @@ OString PoEntry::getResourceType() const
 assert( m_bIsInitialized );
 const OString sMsgCtxt = m_pGenPo-getMsgCtxt();
 if (sMsgCtxt.indexOf('\n')==sMsgCtxt.lastIndexOf('\n'))
-return sMsgCtxt.getToken(2,'\n').getToken(0,'.');
+return sMsgCtxt.getToken(1,'\n').getToken(0,'.');
 else
-return sMsgCtxt.getToken(3,'\n').getToken(0,'.');
+return sMsgCtxt.getToken(2,'\n').getToken(0,'.');
 }
 
 //Get the type of entry
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'feature/killsdf' - l10ntools/source

2012-11-18 Thread Libreoffice Gerrit user
 l10ntools/source/po.cxx |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

New commits:
commit b0f07bbbc4f179d442ff96471669f02e82686657
Author: Ztamas zolnaitamas20...@gmail.com
Date:   Sun Nov 18 12:07:58 2012 +0100

Write source file into po entries' msgctxt

So (msgctxt, msgid) pair is unique in one po file

Change-Id: I64635dd7a6352300ed5fb6949a1b78c2a070c660

diff --git a/l10ntools/source/po.cxx b/l10ntools/source/po.cxx
index df9efe3..ce71207 100644
--- a/l10ntools/source/po.cxx
+++ b/l10ntools/source/po.cxx
@@ -255,7 +255,10 @@ void GenPoEntry::readFromFile(std::ifstream rIFStream)
 else if (sLine.startsWith(\)  pLastMsg 
(pLastMsg != m_sMsgCtxt || sLine != \ + m_sReference + \) )
 {
-*pLastMsg += lcl_GenNormString(sLine);
+if ( pLastMsg != m_sMsgCtxt || sLine != \ + m_sReference + 
\\n\ )
+{
+*pLastMsg += lcl_GenNormString(sLine);
+}
 }
 else
 break;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'feature/killsdf' - l10ntools/source

2012-11-18 Thread Libreoffice Gerrit user
 l10ntools/source/po.cxx |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit 7f81bbb1c7f090d9e962e5c2cb7b694298bfe1c8
Author: Ztamas zolnaitamas20...@gmail.com
Date:   Sun Nov 18 12:07:58 2012 +0100

Correct skiping source file line of  msgctxt

Change-Id: I64635dd7a6352300ed5fb6949a1b78c2a070c660

diff --git a/l10ntools/source/po.cxx b/l10ntools/source/po.cxx
index ce71207..e59db11 100644
--- a/l10ntools/source/po.cxx
+++ b/l10ntools/source/po.cxx
@@ -252,8 +252,7 @@ void GenPoEntry::readFromFile(std::ifstream rIFStream)
 m_sMsgStr = lcl_GenNormString(sLine.copy(7));
 pLastMsg = m_sMsgStr;
 }
-else if (sLine.startsWith(\)  pLastMsg 
-   (pLastMsg != m_sMsgCtxt || sLine != \ + m_sReference + \) )
+else if (sLine.startsWith(\)  pLastMsg)
 {
 if ( pLastMsg != m_sMsgCtxt || sLine != \ + m_sReference + 
\\n\ )
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'feature/killsdf' - 3 commits - l10ntools/source

2012-11-18 Thread Libreoffice Gerrit user
 l10ntools/source/po.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c48c4ace3630451c771afa20080f9bfb7ba05c03
Author: Zolnai Tamás zolnaitamas20...@gmail.com
Date:   Sun Nov 18 14:42:04 2012 +0100

Correct skipping source file line of msgctxt

Change-Id: I7aed7a75c6e9b36efca9837c0137075065bcd1e6

diff --git a/l10ntools/source/po.cxx b/l10ntools/source/po.cxx
index df9efe3..648634c 100644
--- a/l10ntools/source/po.cxx
+++ b/l10ntools/source/po.cxx
@@ -252,10 +252,12 @@ void GenPoEntry::readFromFile(std::ifstream rIFStream)
 m_sMsgStr = lcl_GenNormString(sLine.copy(7));
 pLastMsg = m_sMsgStr;
 }
-else if (sLine.startsWith(\)  pLastMsg 
-   (pLastMsg != m_sMsgCtxt || sLine != \ + m_sReference + \) )
+else if (sLine.startsWith(\)  pLastMsg)
 {
-*pLastMsg += lcl_GenNormString(sLine);
+if (pLastMsg != m_sMsgCtxt || sLine != \ + m_sReference + 
\\n\)
+{
+*pLastMsg += lcl_GenNormString(sLine);
+}
 }
 else
 break;
commit d15706ec0ac0e1eaec1b95fe0271d17393915e32
Author: Zolnai Tamás zolnaitamas20...@gmail.com
Date:   Sun Nov 18 14:39:17 2012 +0100

Revert Write source file into po entries' msgctxt

This reverts commit b0f07bbbc4f179d442ff96471669f02e82686657.

diff --git a/l10ntools/source/po.cxx b/l10ntools/source/po.cxx
index ce71207..df9efe3 100644
--- a/l10ntools/source/po.cxx
+++ b/l10ntools/source/po.cxx
@@ -255,10 +255,7 @@ void GenPoEntry::readFromFile(std::ifstream rIFStream)
 else if (sLine.startsWith(\)  pLastMsg 
(pLastMsg != m_sMsgCtxt || sLine != \ + m_sReference + \) )
 {
-if ( pLastMsg != m_sMsgCtxt || sLine != \ + m_sReference + 
\\n\ )
-{
-*pLastMsg += lcl_GenNormString(sLine);
-}
+*pLastMsg += lcl_GenNormString(sLine);
 }
 else
 break;
commit ce48aa1488652ba8b24ada4d62b75aacf3ef6717
Author: Zolnai Tamás zolnaitamas20...@gmail.com
Date:   Sun Nov 18 14:38:47 2012 +0100

Revert Correct skiping source file line of  msgctxt

This reverts commit 7f81bbb1c7f090d9e962e5c2cb7b694298bfe1c8.

diff --git a/l10ntools/source/po.cxx b/l10ntools/source/po.cxx
index e59db11..ce71207 100644
--- a/l10ntools/source/po.cxx
+++ b/l10ntools/source/po.cxx
@@ -252,7 +252,8 @@ void GenPoEntry::readFromFile(std::ifstream rIFStream)
 m_sMsgStr = lcl_GenNormString(sLine.copy(7));
 pLastMsg = m_sMsgStr;
 }
-else if (sLine.startsWith(\)  pLastMsg)
+else if (sLine.startsWith(\)  pLastMsg 
+   (pLastMsg != m_sMsgCtxt || sLine != \ + m_sReference + \) )
 {
 if ( pLastMsg != m_sMsgCtxt || sLine != \ + m_sReference + 
\\n\ )
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: translations

2012-11-18 Thread Libreoffice Gerrit user
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit cee02eb76c2ff4db16b31a6500cb1820c84ec18a
Author: David Tardon dtar...@redhat.com
Date:   Sun Nov 18 14:12:05 2012 +0100

Updated core
Project: translations  de54a2fcdee6bd2d8005a819d4a3a822b2a8043f
glib is gone

diff --git a/translations b/translations
index e56b8e6..de54a2f 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit e56b8e6646a90ecd054fae9d09ea4b0cbc6c66eb
+Subproject commit de54a2fcdee6bd2d8005a819d4a3a822b2a8043f
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: prj/build.lst

2012-11-18 Thread Libreoffice Gerrit user
 prj/build.lst |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit de54a2fcdee6bd2d8005a819d4a3a822b2a8043f
Author: David Tardon dtar...@redhat.com
Date:   Sun Nov 18 14:12:05 2012 +0100

glib is gone

diff --git a/prj/build.lst b/prj/build.lst
index 3937bc2..85acb03 100644
--- a/prj/build.lst
+++ b/prj/build.lst
@@ -1,2 +1,2 @@
-translations translations  : l10ntools PYTHON:python GLIB:glib NULL
+translations translations  : l10ntools PYTHON:python NULL
 translations translations\prj nmake - all translations_prj NULL
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Broken commits in our repo

2012-11-18 Thread Enrico Weigelt
Hi folks,

while trying to push to github, I've encountered trouble with
broken commits: github always runs fsck on post-receive,
which fails due to broken commit metadata, and upload will
be rejected. See commit

144c7a2e1d711e13422a5c84b34ac33b1d940034

Optimally, we should correct this, but unfortunately that would
would conflict existing tags. So how can we do that ?

My idea would be writing some git-filter-branch based script
which runs through all branches and tags and stores the new 
ones with some suffix, eg. .FILTERED, additionally add the
old ones (which have been rewritten) with suffix .BACKUP.
Then we would rename the (active) filtered branches to the
official names (eg. master.FILTERED to master) and rebase the
unfiltered ones ontop the filtered ones in case of someting
was forgotten. The really tricky point is concurrent writes: 
we need some maintenance downtime window where no new pushes
are allowed, so nothing gets lost in the process.

When everything's done, we'd do an announcement that people
should drop their copies of the tags (and do necessary steps
for potentially _local_ tags) and rebase their downstream
branches.

What do you think about this ?


cu
-- 
Mit freundlichen Grüßen / Kind regards 

Enrico Weigelt 
VNC - Virtual Network Consult GmbH 
Head Of Development 

Pariser Platz 4a, D-10117 Berlin
Tel.: +49 (30) 3464615-20
Fax: +49 (30) 3464615-59

enrico.weig...@vnc.biz; www.vnc.de 
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: what's the problem with system cairo ?

2012-11-18 Thread Enrico Weigelt
Hi,

 [1] used in:
 - vcl/Library_vclplug_svp : ifeq ($(GUIBASE),unx)
 - vcl/Library_vclplug_gtk : ENABLE_GTK
 - canvas/Library_cairocanvas : ENABLE_CAIRO_CANVAS
 e.g. for Library_cairocanvas there are also WNT... conditionals in
 the
 makefile but configure says:
 if test $_os = Darwin -o $_os = WINNT; then
 if test $enable_cairo_canvas = yes; then
 AC_MSG_ERROR([The cairo canvas should not be used for this
 platform])

I'd guess the WINNT conditionals are old leftovers, maybe there
was some unfinished WINNT-cairo code, maybe limitation of cairo
to unix-only was done later.

IMHO, we should drop the WINNT-conditionals in cairo as first step.


By the way: could we use Gtk on WINNT too ?
Not sure about the real implications of that, but from an toplevel
architecture view, I'd really prefer that approach to reduce amount
of code and complexity.

At that point, I'd also raise the question whether we really need
different widget toolkits (even on the same platform). Can't we,
at least on *nix, choose one crossplatform widget toolkit (I'd
personally would prefer Gtk over Qt) and drop all others ?
That, IMHO, should reduce the code (source) size and complexity
and so maintenance and testing efforts.


cu
-- 
Mit freundlichen Grüßen / Kind regards 

Enrico Weigelt 
VNC - Virtual Network Consult GmbH 
Head Of Development 

Pariser Platz 4a, D-10117 Berlin
Tel.: +49 (30) 3464615-20
Fax: +49 (30) 3464615-59

enrico.weig...@vnc.biz; www.vnc.de 
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Extension Manager: Link to further Extensions

2012-11-18 Thread Enrico Weigelt

 Should we move this link to
 http://extensions.libreoffice.org/extension-center where our users
 could
 search for further extensions? What do you think?

Seems plausible to me.

By the way: is there some detailed description on the actual (technical)
extension deployment process ?

From an operators view, I've got a very bad feeling about an application
downloading and deploying its own code - instead I'd like to do these
things completely via package management.


cu
-- 
Mit freundlichen Grüßen / Kind regards 

Enrico Weigelt 
VNC - Virtual Network Consult GmbH 
Head Of Development 

Pariser Platz 4a, D-10117 Berlin
Tel.: +49 (30) 3464615-20
Fax: +49 (30) 3464615-59

enrico.weig...@vnc.biz; www.vnc.de 
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Broken commits in our repo

2012-11-18 Thread Norbert Thiebaud
On Sun, Nov 18, 2012 at 10:24 AM, Enrico Weigelt enrico.weig...@vnc.biz wrote:
 Hi folks,

 while trying to push to github, I've encountered trouble with
 broken commits: github always runs fsck on post-receive,
 which fails due to broken commit metadata, and upload will
 be rejected. See commit

 144c7a2e1d711e13422a5c84b34ac33b1d940034

The problem is that fdo is not a symetric mirror of gerrit. it
contains more stuff... either stuff that was left behind during the
initial setup of gerrit's core repo or stuff that was later deleted
from core and the deletion is not propagated to fdo

The reason for the later was to be able to catch branches that were
mistakenly not migrated to gerrit.
If you found such branch, let us know which branch it is and we'll see
how to correct the situation... but the corection will be either:
1/ ignore it because it is not a branch we care about anymore
2/ re-establish that branch (and the commit associated) in he gerrit
version of core.

In general you want to make sure to base close on gerrit and not on fdo

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


Daily builds x86_32bits Linux debs from master available again

2012-11-18 Thread Cor Nouws

http://dev-builds.libreoffice.org/daily/Linux-x86_10-Release-Configuration/master/

thanks :-)


--
 - Cor
 - http://nl.libreoffice.org
 - www.librelex.org

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


Re: what's the problem with system cairo ?

2012-11-18 Thread Norbert Thiebaud
On Sun, Nov 18, 2012 at 10:46 AM, Enrico Weigelt enrico.weig...@vnc.biz wrote:
 At that point, I'd also raise the question whether we really need
 different widget toolkits (even on the same platform). Can't we,
 at least on *nix, choose one crossplatform widget toolkit (I'd
 personally would prefer Gtk over Qt) and drop all others ?

and kde user would have gtk widget when using LO ?

Why would you consider that kde and gtk are the same 'platform' and
Mac and Windows are not  from a UI perspective ?
Mac is also a unix... with a different gui slapped on to of it... same
difference than kde vs gtk

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


Re: Daily builds x86_32bits Linux debs from master available again

2012-11-18 Thread Enrico Weigelt


 http://dev-builds.libreoffice.org/daily/Linux-x86_10-Release-Configuration/master/

Cool. Where can I find the corresponding ./debian/* files ?


cu
-- 
Mit freundlichen Grüßen / Kind regards 

Enrico Weigelt 
VNC - Virtual Network Consult GmbH 
Head Of Development 

Pariser Platz 4a, D-10117 Berlin
Tel.: +49 (30) 3464615-20
Fax: +49 (30) 3464615-59

enrico.weig...@vnc.biz; www.vnc.de 
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] .: Branch 'feature/killsdf' - librelogo/Extension_librelogo.mk

2012-11-18 Thread Libreoffice Gerrit user
 librelogo/Extension_librelogo.mk |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit fedd4a578e8e22f8a40990a3272056f5b7572110
Author: Andras Timar ati...@suse.com
Date:   Sun Nov 18 18:32:47 2012 +0100

fix makefile

Change-Id: I148f01cb77548b600a799f5eda5970ab236d9663

diff --git a/librelogo/Extension_librelogo.mk b/librelogo/Extension_librelogo.mk
index 1c80e9d..8f525c3 100644
--- a/librelogo/Extension_librelogo.mk
+++ b/librelogo/Extension_librelogo.mk
@@ -41,6 +41,6 @@ $(eval $(call 
gb_Extension_localize_properties,librelogo,pythonpath/LibreLogo_en
 
 $(eval $(call 
gb_Extension_add_helpfile,librelogo,$(SRCDIR)/librelogo/source/help/en-US,org.openoffice.comp.pyuno.LibreLogo/LibreLogo.xhp,LibreLogo.xhp))
 
-$(eval $(call 
gb_Extension_add_helptreefile,librelogo,$(SRCDIR)/librelogo/source/help/en-US,/help.tree,/help.tree,org.openoffice.comp.pyuno.LibreLogo))
+$(eval $(call 
gb_Extension_add_helptreefile,librelogo,$(SRCDIR)/librelogo/source/help/en-US,help.tree,help.tree,org.openoffice.comp.pyuno.LibreLogo))
 
 # 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] .: Branch 'feature/killsdf' - 2 commits - helpcontent2 l10ntools/inc l10ntools/source solenv/inc

2012-11-18 Thread Libreoffice Gerrit user
 helpcontent2   |2 -
 l10ntools/inc/helpmerge.hxx|2 -
 l10ntools/source/helpex.cxx|   80 +
 l10ntools/source/helpmerge.cxx |   45 ---
 l10ntools/source/merge.cxx |   13 +++---
 l10ntools/source/treemerge.cxx |5 +-
 solenv/inc/tg_help.mk  |5 ++
 solenv/inc/unitools.mk |1 
 8 files changed, 88 insertions(+), 65 deletions(-)

New commits:
commit 06d5579c9291b6061ee89eed8f505f436375e15d
Author: Zolnai Tamás zolnaitamas20...@gmail.com
Date:   Sun Nov 18 18:20:38 2012 +0100

Localize tree files in help

-Treex works well when po is not exist, send a
 warning but make en-US tree-s.

Change-Id: Ib2b790742c022211a8d250b66891cef045941398

diff --git a/helpcontent2 b/helpcontent2
index 23d7515..7bb6ef6 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 23d7515757534fca7d50e1201745586adde4b8f6
+Subproject commit 7bb6ef60f6486e143fda08cc1527f5eb71c86b09
diff --git a/l10ntools/source/treemerge.cxx b/l10ntools/source/treemerge.cxx
index 12e931c..8555c8f 100644
--- a/l10ntools/source/treemerge.cxx
+++ b/l10ntools/source/treemerge.cxx
@@ -279,8 +279,8 @@ void TreeParser::Merge(
 {
 MergeDataFile aMergeDataFile(
 rMergeSrc, static_castOString( m_pSource-name ), false );
-
-if( aMergeDataFile.GetLanguages()[0] != m_sLang )
+const std::vectorOString vLanguages = aMergeDataFile.GetLanguages();
+if( !vLanguages.empty()  vLanguages[0] != m_sLang )
 {
 std::cerr
  Treex error: given language conflicts with 
@@ -288,7 +288,6 @@ void TreeParser::Merge(
  m_sLang.getStr()   -   rMergeSrc.getStr()  
std::endl;
 return;
 }
-
 lcl_MergeLevel(
 m_pSource, pRootNode, (const xmlChar *)(help_section),
 aMergeDataFile, m_sLang, rXhpRoot );
diff --git a/solenv/inc/unitools.mk b/solenv/inc/unitools.mk
index 863c4ad..bbd51bf 100644
--- a/solenv/inc/unitools.mk
+++ b/solenv/inc/unitools.mk
@@ -33,6 +33,7 @@ CFGEX*=$(AUGMENT_LIBRARY_PATH) $(SOLARBINDIR)/cfgex
 AUTODOC*=$(AUGMENT_LIBRARY_PATH) $(SOLARBINDIR)/autodoc
 LOCALIZE*=$(AUGMENT_LIBRARY_PATH) $(SOLARBINDIR)/localize
 GSICHECK*=$(AUGMENT_LIBRARY_PATH) $(SOLARBINDIR)/gsicheck
+TREEX*=$(AUGMENT_LIBRARY_PATH) $(SOLARBINDIR)/treex
 
 .IF $(XSLTPROC)==
 .IF $(SYSTEM_LIBXSLT)!=YES
commit 5d84ae59e70b8b1017959a68934ac1f455ce2b13
Author: Zolnai Tamás zolnaitamas20...@gmail.com
Date:   Sun Nov 18 15:24:44 2012 +0100

Localize xhp files in help

Make helpex to be able to work with more xhp files at one time
 - Add new input flag -mi which means multiinput
 - Input is a file include pathes to xhp files
   (these are in the same directory so their strings
   are in the same po file)
 - Output is a file include pathes to dest xhp files
 - Merge reads all po entry from the specified po file
   if MergeDataFile ctor's second parameter is empty

Rewrite makefiles to work with new syntax
Plus Delete some unused code

Change-Id: I5eb12d7a6f5e9cda378788410d3c50052eb752b8

diff --git a/l10ntools/inc/helpmerge.hxx b/l10ntools/inc/helpmerge.hxx
index 34dfdc7..401f839 100644
--- a/l10ntools/inc/helpmerge.hxx
+++ b/l10ntools/inc/helpmerge.hxx
@@ -55,8 +55,6 @@ public:
 /// point to existing files.
 bool Merge( const rtl::OString rSDFFile_in, const rtl::OString 
rDestinationFile_in ,
 const rtl::OString sLanguage , MergeDataFile aMergeDataFile );
-bool Merge( const rtl::OString rSDFFile, const rtl::OString rPathX , 
const rtl::OString rPathY , bool bISO
-, const std::vectorrtl::OString aLanguages , MergeDataFile 
aMergeDataFile , bool bCreateDir );
 
 private:
 rtl::OString GetOutpath( const rtl::OString rPathX , const rtl::OString 
sCur , const rtl::OString rPathY );
diff --git a/l10ntools/source/helpex.cxx b/l10ntools/source/helpex.cxx
index 8dca205..7ab581a 100644
--- a/l10ntools/source/helpex.cxx
+++ b/l10ntools/source/helpex.cxx
@@ -20,6 +20,9 @@
 #include sal/config.h
 
 #include iostream
+#include fstream
+#include string
+#include cstring
 
 #include stdio.h
 #include stdlib.h
@@ -30,24 +33,87 @@
 
 #ifndef TESTDRIVER
 
+void WriteUsage()
+{
+std::cout
+ Syntax: Helpex [-p Prj] [-r Root] -[m]i FileIn -o FileOut
+  [-m DataBase] [-l l1,l2,...]\n
+  Prj: Project\n
+  Root: Path to project root (../.. etc.)\n
+  FileIn + i:   Source file (*.xhp)\n
+  FileIn + -mi: File including pathes of source files
+  (only for merge)
+  FileOut:  Destination file (*.*) or files (in case of -mi)\n
+  DataBase: Mergedata (*.po)\n
+  -l: Restrict the handled languages; l1, l2, ... are elements of
+  (de, en-US, ...)\n;
+}
+
 SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv) {
+
+bool bMultiMerge = false;
+for (int nIndex = 1; 

[Libreoffice-commits] .: Branch 'feature/killsdf' - solenv/gbuild

2012-11-18 Thread Libreoffice Gerrit user
 solenv/gbuild/Configuration.mk |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8d1775f2e581119812b2e0a04d5f1441cc47b969
Author: Andras Timar ati...@suse.com
Date:   Sun Nov 18 19:44:00 2012 +0100

fix makefile

Change-Id: I72de89aed6ac8901ee2b633c0236191ef3cfb7c1

diff --git a/solenv/gbuild/Configuration.mk b/solenv/gbuild/Configuration.mk
index 1d9ceac..95f20e3 100644
--- a/solenv/gbuild/Configuration.mk
+++ b/solenv/gbuild/Configuration.mk
@@ -257,7 +257,7 @@ $(call gb_Helper_abbreviate_dirs,\
mkdir -p $(dir $(1))  \
$(gb_XcuMergeTarget_CFGEXCOMMAND) \
-p $(firstword $(subst /, ,$(2))) \
-   -i $(call gb_Helper_symlinked_native,$(3)) \
+   -i $(3) \
-o $(1) \
-m $${MERGEINPUT} \
-l all)  \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Daily builds x86_32bits Linux debs from master available again

2012-11-18 Thread Cor Nouws

Enrico Weigelt wrote (18-11-12 18:30)


http://dev-builds.libreoffice.org/daily/Linux-x86_10-Release-Configuration/master/


Cool. Where can I find the corresponding ./debian/* files ?


http://dev-builds.libreoffice.org/daily/Linux-x86_10-Release-Configuration/master/2012-11-17_13.55.33/ 

Download the general installer and the lang pack and help pack for e.g. 
German.



--
 - Cor
 - http://nl.libreoffice.org
 - www.librelex.org

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


[Libreoffice-commits] .: Branch 'feature/killsdf' - helpcontent2

2012-11-18 Thread Libreoffice Gerrit user
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4a91105b826dea43a43ec03a64a8c28f1aa72155
Author: Ztamas zolnaitamas20...@gmail.com
Date:   Sun Nov 18 16:21:51 2012 +0100

Updated core
Project: help  c96494d43ebda1848c55a31ef187646783dead00
Localize tree files in help

diff --git a/helpcontent2 b/helpcontent2
index 7bb6ef6..c96494d 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 7bb6ef60f6486e143fda08cc1527f5eb71c86b09
+Subproject commit c96494d43ebda1848c55a31ef187646783dead00
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 54157] LibreOffice 3.7/4.0 most annoying bugs

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

Bug 54157 depends on bug 56460, which changed state.

Bug 56460 Summary: CRASH when closing specific .odg files
https://bugs.freedesktop.org/show_bug.cgi?id=56460

   What|Removed |Added

 Status|VERIFIED|REOPENED
 Resolution|FIXED   |---

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


[Libreoffice-commits] .: Branch 'feature/killsdf' - helpcontent2

2012-11-18 Thread Libreoffice Gerrit user
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b4cbfaa0d84513415d39965dc300b454e6fedd08
Author: Andras Timar ati...@suse.com
Date:   Sun Nov 18 22:29:58 2012 +0100

Updated core
Project: help  55742016f74d1ec3a8f6f146457b34db675dac15
remove obsoleted part from makefile

diff --git a/helpcontent2 b/helpcontent2
index c96494d..5574201 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit c96494d43ebda1848c55a31ef187646783dead00
+Subproject commit 55742016f74d1ec3a8f6f146457b34db675dac15
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'feature/killsdf' - source/text

2012-11-18 Thread Libreoffice Gerrit user
 source/text/makefile.mk |   14 +-
 1 file changed, 1 insertion(+), 13 deletions(-)

New commits:
commit 55742016f74d1ec3a8f6f146457b34db675dac15
Author: Andras Timar ati...@suse.com
Date:   Sun Nov 18 22:29:58 2012 +0100

remove obsoleted part from makefile

Change-Id: Idc7ef636deffe2397bf2d88c4be088ea4c7bbcf2

diff --git a/source/text/makefile.mk b/source/text/makefile.mk
index fbc8fe1..1567277 100644
--- a/source/text/makefile.mk
+++ b/source/text/makefile.mk
@@ -30,6 +30,7 @@ PRJ   = ..$/..
 PRJNAME = helpcontent2
 TARGET  = text
 
+
 # --- Settings -
 
 .INCLUDE : settings.mk
@@ -73,16 +74,3 @@ $(COMMONMISC)$/treefiles.done : $(LOCTREEFILES)
 $(LOCTREEFILES) : $(foreach,tree,$(TREEFILES) ../auxiliary/$(tree)) 
$$(@:d)$/dir.created
 @$(TOUCH) $@
 
-.IF $(WITH_LANG)!=
-.IF $(LOCALIZATION_FOUND)==YES
-$(LOCTREEFILES) : $(TRYSDF:d:d:d:d)$/text$/shared/localize.sdf
-.ELSE  # $(LOCALIZATION_FOUND)==YES
-$(COMMONMISC)/unpack.done : $(SOLARCOMMONSDFDIR)$/$(PRJNAME).zip
-@@-$(MKDIRHIER) $(COMMONMISC)$/$(PRJNAME)_$(TARGET)
-unzip -o -d $(COMMONMISC)$/$(PRJNAME) $(SOLARCOMMONSDFDIR)$/$(PRJNAME).zip 
-$(TOUCH) $@
-
-$(LOCTREEFILES) : $(COMMONMISC)/unpack.done
-
-.ENDIF # $(LOCALIZATION_FOUND)==YES
-.ENDIF # $(WITH_LANG)!=
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: helpcontent2

2012-11-18 Thread Libreoffice Gerrit user
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d7c69b2e9dd0986ad82a615d22447a223244096c
Author: Andras Timar ati...@suse.com
Date:   Sun Nov 18 22:46:20 2012 +0100

Updated core
Project: help  c3cfcf7098787f11ca987ef8db65fbb670d8da6e
do not localize a single non-breaking space

diff --git a/helpcontent2 b/helpcontent2
index 23d7515..c3cfcf7 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 23d7515757534fca7d50e1201745586adde4b8f6
+Subproject commit c3cfcf7098787f11ca987ef8db65fbb670d8da6e
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: source/text

2012-11-18 Thread Libreoffice Gerrit user
 source/text/schart/01/choose_chart_type.xhp |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit c3cfcf7098787f11ca987ef8db65fbb670d8da6e
Author: Andras Timar ati...@suse.com
Date:   Sun Nov 18 22:46:20 2012 +0100

do not localize a single non-breaking space

diff --git a/source/text/schart/01/choose_chart_type.xhp 
b/source/text/schart/01/choose_chart_type.xhp
index 8ebd4e6..e61c45d 100644
--- a/source/text/schart/01/choose_chart_type.xhp
+++ b/source/text/schart/01/choose_chart_type.xhp
@@ -141,7 +141,7 @@
  /tablerow
   /table
 
-  paragraph xml-lang=en-US id=par_id8174687 role=paragraph 
l10n=NEW /paragraph
+  paragraph localize=false xml-lang=en-US id=par_id8174687 
role=paragraph l10n=NEW /paragraph
   section id=relatedtopics
  embed href=text/shared/guide/chart_insert.xhp#chart_insert/
  embed href=text/schart/01/wiz_chart_type.xhp#wiz_chart_type/
@@ -150,4 +150,4 @@
  embed 
href=text/schart/01/wiz_chart_elements.xhp#wiz_chart_elements/
   /section
/body
-/helpdocument
\ No newline at end of file
+/helpdocument
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'feature/killsdf' - l10ntools/source

2012-11-18 Thread Libreoffice Gerrit user
 l10ntools/source/treemerge.cxx |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 3f469dd69c2eb9d8f193da7f88d05719762b600c
Author: Zolnai Tamás zolnaitamas20...@gmail.com
Date:   Sun Nov 18 22:49:36 2012 +0100

Fix some encoding problem in treemerge

Change-Id: I275ccba8f07ccaba1ead0ad83a382d3ad19c722a

diff --git a/l10ntools/source/treemerge.cxx b/l10ntools/source/treemerge.cxx
index 8555c8f..622564c 100644
--- a/l10ntools/source/treemerge.cxx
+++ b/l10ntools/source/treemerge.cxx
@@ -146,7 +146,9 @@ namespace
 
replaceAll($[officeversion],%PRODUCTVERSION);
 xmlNodeSetContent(
 pReturn,
-reinterpret_castconst xmlChar*( sNewTitle.getStr() 
));
+xmlEncodeSpecialChars( NULL,
+reinterpret_castconst xmlChar*(
+sNewTitle.getStr() )));
 xmlFree( sTitle );
 break;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: what's the problem with system cairo ?

2012-11-18 Thread Enrico Weigelt
Hi,

 and kde user would have gtk widget when using LO ?

Why not ? There are so many gtk-applications running fine in KDE.
IMHO (not an KDE-user so didn't check it), the l+f will be just
like Qt. 

 Why would you consider that kde and gtk are the same 'platform' and
 Mac and Windows are not from a UI perspective ?

I'm not just looking at the UI only, but the whole operating system.
To be more correct, replace kde by qt. 

On *nix, we've got a pretty clean separation between operating system
(kernel+userland tools), display system (wg. X11 or DirectFB, etc),
widget toolkits (qt, gtk, wxwin, ...) and (optional) user desktop
environments (gnome, kde, xfce, ...). OTOH, Windows doesn't have that
clean separation - it's pretty much one big bundle. (MacOSX is somewhere
in the middle).

The really fine thing on *nix is that it's completely up to the
individual application which widget toolkit to choose, and applications
normally dont depend on specific desktop environments (well, mostly ;-o).

My idea was, consolidating to one crossplatform widget toolkit for
*nix as the first step, which should be pretty easy. Later also
consolidate the other platforms (not sure how complex that would be).

By the way: anybody working on porting the gtk or qt vcl to win32 or mac ?


cu
-- 
Mit freundlichen Grüßen / Kind regards 

Enrico Weigelt 
VNC - Virtual Network Consult GmbH 
Head Of Development 

Pariser Platz 4a, D-10117 Berlin
Tel.: +49 (30) 3464615-20
Fax: +49 (30) 3464615-59

enrico.weig...@vnc.biz; www.vnc.de 
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Daily builds x86_32bits Linux debs from master available again

2012-11-18 Thread Enrico Weigelt

  http://dev-builds.libreoffice.org/daily/Linux-x86_10-Release-Configuration/master/
 
  Cool. Where can I find the corresponding ./debian/* files ?
 
 http://dev-builds.libreoffice.org/daily/Linux-x86_10-Release-Configuration/master/2012-11-17_13.55.33/
 
 Download the general installer and the lang pack and help pack for
 e.g.
 German.

Seems we're talking about different things. My question is about the debian 
control files
for generating the .deb packages.


cu
-- 
Mit freundlichen Grüßen / Kind regards 

Enrico Weigelt 
VNC - Virtual Network Consult GmbH 
Head Of Development 

Pariser Platz 4a, D-10117 Berlin
Tel.: +49 (30) 3464615-20
Fax: +49 (30) 3464615-59

enrico.weig...@vnc.biz; www.vnc.de 
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Broken commits in our repo

2012-11-18 Thread Enrico Weigelt
snip

Did a little bit more research:

git fsck on a fresh clone spits out long list of broken commit errors:
(far more than 50 lines)

error in commit edc18425b8c2455c5f0d172126156d90e7c06eb2: invalid 
author/committer line - missing space before email
error in commit 10ab5aa3953d58f3430819a990250741aff25d4e: invalid 
author/committer line - missing space before email
error in commit d76f5aa618f4484b97e9c3846d8fc6d717a306bb: invalid 
author/committer line - missing space before email
error in commit d73c47726d83afc4196c49f6e2cd4d7f2f435637: invalid 
author/committer line - missing space before email
error in commit 41c42f2d98dd50a95268dc1091f6c8e21c3e6667: invalid 
author/committer line - missing space before email
error in commit 436416a6320037855846fce127a0cfa77ac45270: invalid 
author/committer line - missing space before email
error in commit 11ce307732218d59f8132eb0a0fb4b08a4048c3f: invalid 
author/committer line - missing space before email
error in commit 5ad79ff63008de36accc910d474f2e85b4d8d9e1: invalid 
author/committer line - missing space before email

Inspecting a few of them showed up, they're not commits at all, but tree 
objects.



cu
-- 
Mit freundlichen Grüßen / Kind regards 

Enrico Weigelt 
VNC - Virtual Network Consult GmbH 
Head Of Development 

Pariser Platz 4a, D-10117 Berlin
Tel.: +49 (30) 3464615-20
Fax: +49 (30) 3464615-59

enrico.weig...@vnc.biz; www.vnc.de 
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: what's the problem with system cairo ?

2012-11-18 Thread khagaroth
On Sun, Nov 18, 2012 at 10:55 PM, Enrico Weigelt enrico.weig...@vnc.biz wrote:

 By the way: anybody working on porting the gtk or qt vcl to win32 or mac ?


If you mean if gtk/qt programs run on Windows, yes, they do and look
pretty native. The only problem with GTK is that the newest official
GTK version for windows is 2.24.10 as they seriously lack Windows
developers, so there is no one to make a 3.x version.
On Mac, GTK was really buggy, can't check if that is already fixed as
I don't have access to a Mac anymore.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: what's the problem with system cairo ?

2012-11-18 Thread Enrico Weigelt
Hi,

 If you mean if gtk/qt programs run on Windows, yes, they do and look
 pretty native. The only problem with GTK is that the newest official
 GTK version for windows is 2.24.10 as they seriously lack Windows
 developers, so there is no one to make a 3.x version.
 On Mac, GTK was really buggy, can't check if that is already fixed as
 I don't have access to a Mac anymore.

hmm, thats sad. how's the situation w/ other toolkits, eg. qt ?


cu 
-- 
Mit freundlichen Grüßen / Kind regards 

Enrico Weigelt 
VNC - Virtual Network Consult GmbH 
Head Of Development 

Pariser Platz 4a, D-10117 Berlin
Tel.: +49 (30) 3464615-20
Fax: +49 (30) 3464615-59

enrico.weig...@vnc.biz; www.vnc.de 
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


visualize module dependencies

2012-11-18 Thread David Ostrovsky

Hi,

modules_dep utility can produce graphviz output now (thank you Norbert 
for not writing it in perl ;-).


This command generates the dependency graph of all LO modules:
find $SRC_DIR -name build.lst | sed 's/prj.*//' | xargs 
$DEV_TOOLS_DIR/modules_dep/modules_dep.bin -s -c solenv -g | grep -v 
tail_build | dot -Tpng -o lo_modules.png


Deep pink are modules that still not migrated to gbuild:
http://ostrovsky.org/libo/lo_modules.png

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


Re: visualize module dependencies

2012-11-18 Thread Enrico Weigelt

 modules_dep utility can produce graphviz output now (thank you
 Norbert
 for not writing it in perl ;-).
 
 This command generates the dependency graph of all LO modules:
 find $SRC_DIR -name build.lst | sed 's/prj.*//' | xargs
 $DEV_TOOLS_DIR/modules_dep/modules_dep.bin -s -c solenv -g | grep -v
 tail_build | dot -Tpng -o lo_modules.png
 
 Deep pink are modules that still not migrated to gbuild:
 http://ostrovsky.org/libo/lo_modules.png

cool. does that also work for external dependencies ?
and perhaps also basen on the current build onfiguration ?

this could be helpful to find out whether certain libs are
unnecessarily linked in. for example, a few days ago, i was working
on --enable-dbus+friends and found out that this is just an dependency
for other optional features and is completely useless if they're
switched off.


cu
-- 
Mit freundlichen Grüßen / Kind regards 

Enrico Weigelt 
VNC - Virtual Network Consult GmbH 
Head Of Development 

Pariser Platz 4a, D-10117 Berlin
Tel.: +49 (30) 3464615-20
Fax: +49 (30) 3464615-59

enrico.weig...@vnc.biz; www.vnc.de 
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] .: sw/source

2012-11-18 Thread Libreoffice Gerrit user
 sw/source/core/doc/tblrwcl.cxx  |  352 
 sw/source/core/inc/tblrwcl.hxx  |2 
 sw/source/core/undo/untbl.cxx   |2 
 sw/source/filter/rtf/rtftbl.cxx |4 
 4 files changed, 180 insertions(+), 180 deletions(-)

New commits:
commit 52c492ca729295ab53b110edf525a3eed25872f7
Author: Takeshi Abe t...@fixedpoint.jp
Date:   Sun Nov 18 21:44:44 2012 +0900

sal_Bool to bool

Change-Id: Ia6a4cd46b3bda875baeb9fcdda98a1964aedf841

diff --git a/sw/source/core/doc/tblrwcl.cxx b/sw/source/core/doc/tblrwcl.cxx
index 6e065ae..1007871 100644
--- a/sw/source/core/doc/tblrwcl.cxx
+++ b/sw/source/core/doc/tblrwcl.cxx
@@ -95,9 +95,9 @@ struct _CpyTabFrm
 
 _CpyTabFrm operator=( const _CpyTabFrm );
 
-sal_Bool operator==( const _CpyTabFrm rCpyTabFrm ) const
+bool operator==( const _CpyTabFrm rCpyTabFrm ) const
 { return  (sal_uLong)Value.nSize == (sal_uLong)rCpyTabFrm.Value.nSize; 
}
-sal_Bool operator( const _CpyTabFrm rCpyTabFrm ) const
+bool operator( const _CpyTabFrm rCpyTabFrm ) const
 { return  (sal_uLong)Value.nSize  (sal_uLong)rCpyTabFrm.Value.nSize; }
 };
 
@@ -111,14 +111,14 @@ struct CR_SetBoxWidth
 SwTwips nDiff, nSide, nMaxSize, nLowerDiff;
 TblChgMode nMode;
 sal_uInt16 nTblWidth, nRemainWidth, nBoxWidth;
-sal_Bool bBigger, bLeft, bSplittBox, bAnyBoxFnd;
+bool bBigger, bLeft, bSplittBox, bAnyBoxFnd;
 
 CR_SetBoxWidth( sal_uInt16 eType, SwTwips nDif, SwTwips nSid, SwTwips 
nTblW,
 SwTwips nMax, SwTableNode* pTNd )
 : pTblNd( pTNd ),
 nDiff( nDif ), nSide( nSid ), nMaxSize( nMax ), nLowerDiff( 0 ),
 nTblWidth( (sal_uInt16)nTblW ), nRemainWidth( 0 ), nBoxWidth( 0 ),
-bSplittBox( sal_False ), bAnyBoxFnd( sal_False )
+bSplittBox( false ), bAnyBoxFnd( false )
 {
 bLeft = nsTblChgWidthHeightType::WH_COL_LEFT == ( eType  0xff ) ||
 nsTblChgWidthHeightType::WH_CELL_LEFT == ( eType  0xff );
@@ -168,20 +168,20 @@ struct CR_SetBoxWidth
 }
 };
 
-static sal_Bool lcl_SetSelBoxWidth( SwTableLine* pLine, CR_SetBoxWidth rParam,
- SwTwips nDist, sal_Bool bCheck );
-static sal_Bool lcl_SetOtherBoxWidth( SwTableLine* pLine, CR_SetBoxWidth 
rParam,
-SwTwips nDist, sal_Bool bCheck );
-static sal_Bool lcl_InsSelBox( SwTableLine* pLine, CR_SetBoxWidth rParam,
-SwTwips nDist, sal_Bool bCheck );
-static sal_Bool lcl_InsOtherBox( SwTableLine* pLine, CR_SetBoxWidth rParam,
-SwTwips nDist, sal_Bool bCheck );
-static sal_Bool lcl_DelSelBox( SwTableLine* pLine, CR_SetBoxWidth rParam,
-SwTwips nDist, sal_Bool bCheck );
-static sal_Bool lcl_DelOtherBox( SwTableLine* pLine, CR_SetBoxWidth rParam,
-SwTwips nDist, sal_Bool bCheck );
-
-typedef sal_Bool (*FN_lcl_SetBoxWidth)(SwTableLine*, CR_SetBoxWidth, SwTwips, 
sal_Bool );
+static bool lcl_SetSelBoxWidth( SwTableLine* pLine, CR_SetBoxWidth rParam,
+ SwTwips nDist, bool bCheck );
+static bool lcl_SetOtherBoxWidth( SwTableLine* pLine, CR_SetBoxWidth rParam,
+SwTwips nDist, bool bCheck );
+static bool lcl_InsSelBox( SwTableLine* pLine, CR_SetBoxWidth rParam,
+SwTwips nDist, bool bCheck );
+static bool lcl_InsOtherBox( SwTableLine* pLine, CR_SetBoxWidth rParam,
+SwTwips nDist, bool bCheck );
+static bool lcl_DelSelBox( SwTableLine* pLine, CR_SetBoxWidth rParam,
+SwTwips nDist, bool bCheck );
+static bool lcl_DelOtherBox( SwTableLine* pLine, CR_SetBoxWidth rParam,
+SwTwips nDist, bool bCheck );
+
+typedef bool (*FN_lcl_SetBoxWidth)(SwTableLine*, CR_SetBoxWidth, SwTwips, 
bool );
 
 #ifdef DBG_UTIL
 
@@ -227,12 +227,12 @@ struct CR_SetLineHeight
 SwTwips nMaxSpace, nMaxHeight;
 TblChgMode nMode;
 sal_uInt16 nLines;
-sal_Bool bBigger, bTop, bSplittBox, bAnyBoxFnd;
+bool bBigger, bTop, bSplittBox, bAnyBoxFnd;
 
 CR_SetLineHeight( sal_uInt16 eType, SwTableNode* pTNd )
 : pTblNd( pTNd ), pUndo( 0 ),
 nMaxSpace( 0 ), nMaxHeight( 0 ), nLines( 0 ),
-bSplittBox( sal_False ), bAnyBoxFnd( sal_False )
+bSplittBox( false ), bAnyBoxFnd( false )
 {
 bTop = nsTblChgWidthHeightType::WH_ROW_TOP == ( eType  0xff ) || 
nsTblChgWidthHeightType::WH_CELL_TOP == ( eType  0xff );
 bBigger = 0 != (eType  nsTblChgWidthHeightType::WH_FLAG_BIGGER );
@@ -254,14 +254,14 @@ struct CR_SetLineHeight
 }
 };
 
-static sal_Bool lcl_SetSelLineHeight( SwTableLine* pLine, CR_SetLineHeight 
rParam,
- SwTwips nDist, sal_Bool bCheck );
-static sal_Bool lcl_SetOtherLineHeight( SwTableLine* pLine, CR_SetLineHeight 
rParam,
-SwTwips nDist, 

Re: Broken commits in our repo

2012-11-18 Thread Norbert Thiebaud
On Sun, Nov 18, 2012 at 4:34 PM, Enrico Weigelt enrico.weig...@vnc.biz wrote:
 snip

 Did a little bit more research:

 git fsck on a fresh clone spits out long list of broken commit errors:
 (far more than 50 lines)

 error in commit edc18425b8c2455c5f0d172126156d90e7c06eb2: invalid 
 author/committer line - missing space before email

$ git cat-file -p edc18425b8c2455c5f0d172126156d90e7c06eb2
tree 706ac10fbe9afecbe294b6d021500804223845b6
parent d73c47726d83afc4196c49f6e2cd4d7f2f435637
author Andre Fischerandre.f.fischer Andre
Fischerandre.f.fisc...@oracle.com 1279813514 +0200
committer Andre Fischerandre.f.fischer Andre
Fischerandre.f.fisc...@oracle.com 1279813514 +0200

renaissance1: #i107215# Replaced unhide text button by icon button.

So no, it is not a tree but indeed a commit... and the 'problem' is
that the email fo the committer is bad.. that came from a poor email
config or so hg-to-git or svn-to-git conversion issue
in any case:
1/ this is harmless
2/ this certainly is not worth the extreme pain of a git-rewrite

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


[PATCH] Better handling of well-know prerequisites under windows

2012-11-18 Thread Mathias M (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1100

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/00/1100/1

Better handling of well-know prerequisites under windows

Add moz prebuilt  msvcrt80 copy

Change-Id: I335c25904c16db534a4878ff6a17db202eaef4f5
---
M configure.ac
M moz/makefile.mk
M ooo.lst.in
3 files changed, 51 insertions(+), 27 deletions(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I335c25904c16db534a4878ff6a17db202eaef4f5
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Mathias M m...@gmx.fr

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


[Libreoffice-commits] .: sc/source

2012-11-18 Thread Libreoffice Gerrit user
 sc/source/ui/view/output2.cxx |   13 +++--
 1 file changed, 7 insertions(+), 6 deletions(-)

New commits:
commit 30fa6e86a5bc4e8553f353ecbc17d4ae67874c9b
Author: Norbert Thiebaud nthieb...@gmail.com
Date:   Sun Nov 18 21:05:45 2012 -0600

WaE : shadow variable

Change-Id: I394817653afa738e7e3d19a1d82f892fb3b35c19

diff --git a/sc/source/ui/view/output2.cxx b/sc/source/ui/view/output2.cxx
index 7146cd2..ac6365c 100644
--- a/sc/source/ui/view/output2.cxx
+++ b/sc/source/ui/view/output2.cxx
@@ -626,15 +626,16 @@ void ScDrawStringsVars::SetTextToWidthOrHash( ScBaseCell* 
pCell, long nWidth )
 
 long nMaxDigit = GetMaxDigitWidth();
 sal_uInt16 nNumDigits = static_castsal_uInt16(nWidth / nMaxDigit);
-OUString sTempOut(aString);
-if (!pNumFormat-GetOutputString(fVal, nNumDigits, sTempOut))
 {
+OUString sTempOut(aString);
+if (!pNumFormat-GetOutputString(fVal, nNumDigits, sTempOut))
+{
+aString = sTempOut;
+// Failed to get output string.  Bail out.
+return;
+}
 aString = sTempOut;
-// Failed to get output string.  Bail out.
-return;
 }
-aString = sTempOut;
-
 sal_uInt8 nSignCount = 0, nDecimalCount = 0, nExpCount = 0;
 xub_StrLen nLen = aString.Len();
 sal_Unicode cDecSep = 
ScGlobal::GetpLocaleData()-getLocaleItem().decimalSeparator.getStr()[0];
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 37361] LibreOffice 3.5 most annoying bugs

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

Bug 37361 depends on bug 42720, which changed state.

Bug 42720 Summary: FILESAVE as .doc changes Form Controls Textbox background to 
black
https://bugs.freedesktop.org/show_bug.cgi?id=42720

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

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

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

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

   What|Removed |Added

 Depends on||57259

--- Comment #31 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
I add Bug 57259 - UI: Master pages styles change view to Default instead of
being applied, because a very basic function is broken what makes impress more
or less unusable for creation of new presentations.

-- 
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: [Libreoffice-qa] Daily builds x86_32bits Linux debs from master available again

2012-11-18 Thread Cor Nouws

Enrico Weigelt wrote (18-11-12 18:30)


http://dev-builds.libreoffice.org/daily/Linux-x86_10-Release-Configuration/master/


Cool. Where can I find the corresponding ./debian/* files ?


http://dev-builds.libreoffice.org/daily/Linux-x86_10-Release-Configuration/master/2012-11-17_13.55.33/ 

Download the general installer and the lang pack and help pack for e.g. 
German.



--
 - Cor
 - http://nl.libreoffice.org
 - www.librelex.org

___
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] Daily builds x86_32bits Linux debs from master available again

2012-11-18 Thread Enrico Weigelt

  http://dev-builds.libreoffice.org/daily/Linux-x86_10-Release-Configuration/master/
 
  Cool. Where can I find the corresponding ./debian/* files ?
 
 http://dev-builds.libreoffice.org/daily/Linux-x86_10-Release-Configuration/master/2012-11-17_13.55.33/
 
 Download the general installer and the lang pack and help pack for
 e.g.
 German.

Seems we're talking about different things. My question is about the debian 
control files
for generating the .deb packages.


cu
-- 
Mit freundlichen Grüßen / Kind regards 

Enrico Weigelt 
VNC - Virtual Network Consult GmbH 
Head Of Development 

Pariser Platz 4a, D-10117 Berlin
Tel.: +49 (30) 3464615-20
Fax: +49 (30) 3464615-59

enrico.weig...@vnc.biz; www.vnc.de 
___
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 57218] Calc - Import data from Notepad

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

--- Comment #2 from Iztok iko...@gmail.com ---
Yes I did. The same bug.

2012/11/18 bugzilla-dae...@freedesktop.org

   *Comment # 1 https://bugs.freedesktop.org/show_bug.cgi?id=57218#c1 on bug
 57218 https://bugs.freedesktop.org/show_bug.cgi?id=57218 from 
 mariosvmari...@miguelangel.mobi
 *

 Have you try with Paste-special unformatted text, select the column clicking 
 on
 the column head and after select the column type?

  --
 You are receiving this mail because:

- You are on the CC list for the bug.
- You reported the bug.



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


[Libreoffice-bugs] [Bug 34629] MediaWiki Publish - URL not saved correctly

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

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

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |INVALID
 CC||LibreOffice@bielefeldundbus
   ||s.de
Version|3.6.0.4 release |3.3.1 release

--- Comment #9 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
@Reporter:
Please consider:
http://wiki.documentfoundation.org/BugReport_Details#Version

This still is not a valid bug report, so closed again INVALID:

Please feel free to reopen this bug if you find out that the problem still
exists with LibreOffice version 3.6 and if you can contribute additional
information how the problem can be reproduced by a reviewer (public Wikimedia
server where port is allowed) due to
http://wiki.documentfoundation.org/BugReport (especially BugReport Details)!

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


[Libreoffice-bugs] [Bug 53909] : Importing doc-files from pages doesn't work and icloud.com

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

--- Comment #9 from Toon t...@hout.vanvergehaald.nl ---
Hi, I would like to confirm this problem.
Appearently Apple iWork creates DOC files in the 97-2003 binary Word format.
This is the output of the 'file' command:

factuur 20120829.doc: Composite Document File V2 Document, Little Endian, Os:
Windows, Version 5.0, Code page: 0

I'm running Libreoffice on Gentoo Linux (I compile it myself).
6 weeks ago I could successfully open this type of documents, but now I can't
anymore.

Below is the recent upgrade-history on my desktop machine:

 Fri Aug 31 22:06:02 2012  app-office/libreoffice-3.5.5.3
 Fri Aug 31 22:06:23 2012  app-office/libreoffice-l10n-3.5.5
 Sat Oct 13 17:49:50 2012  app-office/libreoffice-3.5.6.2
 Sat Oct 13 17:50:10 2012  app-office/libreoffice-l10n-3.5.6
 Sat Oct 27 20:02:22 2012  app-office/libreoffice-l10n-3.5.7
 Wed Nov 14 16:19:30 2012  app-office/libreoffice-3.5.7.2

Version 3.5.5.3 could certainly open the 'pages'.
I'm not sure whether I ever opened such a file with version 3.5.6.2
Version 3.5.7.2 doesn't work. When opening a binary 97-2003 Word file the ASCII
filter dialog box is presented.

So it appears to be a regression indeed.
I hope this helps.
Regards,
Toon.

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


[Libreoffice-bugs] [Bug 57245] New: In OS X Calc hangs if save button used. Both Cmd-G and menu File-Save works OK.

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

  Priority: highest
Bug ID: 57245
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: In OS X Calc hangs if save button used. Both Cmd-G and
menu File-Save works OK.
  Severity: blocker
Classification: Unclassified
OS: Mac OS X (All)
  Reporter: paco.cruz.iesbe...@gmail.com
  Hardware: Other
Status: NEW
   Version: 3.6.4.1 rc
 Component: Spreadsheet
   Product: LibreOffice

Version: Libreoffice 3.6.41 rc ID a9a0717

System: Mac OS X Server Lion 10.7.5 (11G63)

Description: Calc hangs if save button used. Both Cmd-G and menu File-Save
works OK.  

Steps to reproduce:
1. Open Libreoffice
2. Choose new spreadsheet (or open an existing one)
3. Put something in it (or add new values)
4. Use save button in the toolbar
5. Calc hangs with 100% cpu. Need a kill to stop it. 


What additional information can I provide to help fix this?

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


[Libreoffice-bugs] [Bug 32491] PDF Export does not set rights correctly

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

--- Comment #12 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
Created attachment 70212
  -- https://bugs.freedesktop.org/attachment.cgi?id=70212action=edit
Sample from Ubuntu12 LibO 3.5

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


[Libreoffice-bugs] [Bug 32491] PDF Export does not set rights correctly

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

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

   What|Removed |Added

 Status|REOPENED|NEEDINFO
Version|3.6.0.4 release |3.3.0 release

--- Comment #13 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
Please consider:
http://wiki.documentfoundation.org/BugReport_Details#Version
I modify Version due to Comment 1

This is not a valid bug report:
- No sample.pdf showing the problem
- No source document showing the problem

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


[Libreoffice-bugs] [Bug 32491] PDF Export does not set rights correctly

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

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

   What|Removed |Added

  Attachment #70212|Sample from Ubuntu12 LibO   |Sample from Ubuntu12 LibO
description|3.5 |3.5 works fine

--- Comment #14 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
Comment on attachment 70212
  -- https://bugs.freedesktop.org/attachment.cgi?id=70212
Sample from Ubuntu12 LibO 3.5 works fine

I created that document from LigO 3.5.4.2 on Ubuntu 12.04 64 bit 
With AR X on WIN7 I see comments: allowed

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


[Libreoffice-bugs] [Bug 32491] Comments not allowed contrary to PDF export settings

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

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

   What|Removed |Added

Summary|PDF Export does not set |Comments not allowed
   |rights correctly|contrary to PDF export
   ||settings

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


[Libreoffice-bugs] [Bug 47065] Advanced Easy Hack: Notification about document closure

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

benoit.doli...@gmail.com changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |benoit.doli...@gmail.com
   |desktop.org |
 CC||benoit.doli...@gmail.com

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


[Libreoffice-bugs] [Bug 43601] Background of main menu inherits previous window contents

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

--- Comment #2 from David Burleigh david.burle...@gmx.com ---
Since I switched to Kubuntu, this problem doesn't occur. Whether it still
happens under Mint/Cinnamon I can't say. Perhaps this bug should just be
closed.

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


[Libreoffice-bugs] [Bug 56393] first page has different width (by default)

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

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

   What|Removed |Added

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

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
@Lior
I think it might be interesting to check 'Format - Page' for both pages in
your document. Can you see any differences?
Can you attach the default Writer Template here?

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


[Libreoffice-bugs] [Bug 57246] New: Errors in conditional formatting

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

  Priority: medium
Bug ID: 57246
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Errors in conditional formatting
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: vallo...@gmail.com
  Hardware: x86 (IA32)
Status: UNCONFIRMED
   Version: 3.6.0.2 rc
 Component: Formula Editor
   Product: LibreOffice

Created attachment 70213
  -- https://bugs.freedesktop.org/attachment.cgi?id=70213action=edit
screenshot

I can not use conditional formatting in Calc. If the condition is vested in the
older version of LibreOffice, so when you save the document, the conditional
formatting does not work in version 3.6.0.2. Creating conditional formatting in
version 3.6.0.2. for Linux can be used.

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


[Libreoffice-bugs] [Bug 56393] first page has different width (by default)

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

--- Comment #2 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
I should have mentioned: NOT Steps how to reproduce reproducible with parallel
installation of Master LOdev  4.0.0.0.alpha0+   -  ENGLISH UI / German Locale 
[Build ID: a2b3ee)]  {tinderbox: @6, pull time 2012-11-13 06:07:28} on German
WIN7 Home Premium (64bit) with separate /4 User Profile for Master Branch

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


[Libreoffice-bugs] [Bug 57246] Errors in conditional formatting

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

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

   What|Removed |Added

  Attachment #70213|text/plain  |application/x-zip
  mime type||

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


[Libreoffice-bugs] [Bug 57246] Errors in conditional formatting

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

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

   What|Removed |Added

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

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
There were quite a lot of CF problems with 3.6. very most of them already
fixed. 

This one might be a DUP of Bug 51507 - FILEOPEN 3.5 document: conditional
formatting of type Formula is not recognized correctly, lost after saved,
but report is too unspecific to decide.

@reporter:
Please feel free to reopen this bug if you 
- find out that the problem still exists with 3.6.4 can contribute requested 
- additional information due to http://wiki.documentfoundation.org/BugReport 
 (especially BugReport Details)!

Please also feel free to mar this one as DUP of an other bug if you find that
that other bug matches better with your observations.

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

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


[Libreoffice-bugs] [Bug 56393] first page has different width (by default)

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

--- Comment #3 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
g, danmned copy / past - please strike Steps how to in comment above

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


[Libreoffice-bugs] [Bug 56847] VIEWING: Playing .avi videos with Impress video player (Mac OS X)

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

--- Comment #6 from Julien Nabet serval2...@yahoo.fr ---
(In reply to comment #4)
 can you please try to reproduce this issue on Linux/Windows? It would be
 nice to know if this bug is limited to Mac OS X, or a general issue ...
Hi Roman, I'm not at home this week-end, will give a try in the next days.

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


[Libreoffice-bugs] [Bug 56985] EDITING: crash when clicking a shape often and holding until program wants to , , drag''

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

--- Comment #5 from Lennard Wasserthal wassert...@nefkom.net ---
Are you sure you truely reproduced it?
Tested with right arrow shape.
It is the fourth time of clicking the shape. And you _hold_ the mouse button
util the cursor changes.

I rewinded to state:
31.October.2012
last commit: 
ddd44eb48fa03ea36fe32a3f7c9023828c1e449c

Kohei Yoshida:
Fix crash on closing beanshell dialog and the macro window.

and still get the problem!

My tests are as well prior as later than yours. So I will have to look earlier
for the point when the bug wasn't there.

My System: Linux Mint 13 - AMD K_64 Mate

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


[Libreoffice-bugs] [Bug 56772] FILTER: CALC moves some column content to another cell with some HTML file - Regression

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

--- Comment #2 from Markus Mohrhard markus.mohrh...@googlemail.com ---
So after spending one night trying to understand our HTML parser I still have
no clue.

The problem is the td element without content which is stripped at some point
either in the editengine or in ScHTMLParser. Sadly this is code is so complex
that it is nearly impossible to follow the flow of the execution.

I'm quite sure that the problem is already during the parsing and not later
after setting the column.

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


[Libreoffice-bugs] [Bug 56460] CRASH when closing specific .odg files

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

luk...@gmail.com changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED
 CC||luk...@gmail.com

--- Comment #12 from luk...@gmail.com ---
Worls fine without crashing for Version 4.0.0.0.alpha0+ (Build ID: 04f2f0).

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


[Libreoffice-bugs] [Bug 53909] FILEOPEN Word 97-2003 DOC structure is not recognized

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

Urmas davian...@gmail.com changed:

   What|Removed |Added

Summary|: Importing doc-files from  |FILEOPEN Word 97-2003 DOC
   |pages doesn't work and  |structure is not recognized
   |icloud.com  |
Version|3.7.0.0.alpha0+ Master  |3.6.0.1 rc

--- Comment #10 from Urmas davian...@gmail.com ---
Setting version back to the one apparently causing this regression.

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


[Libreoffice-bugs] [Bug 56882] Font list is unsorted in 'insert special character' dialog

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

--- Comment #5 from Julien Nabet serval2...@yahoo.fr ---
It could be the commit
http://cgit.freedesktop.org/libreoffice/core/commit/?id=2f6e8daf883fe67a1cebc2cdf9d54e41b064a55c

I noticed this in the removed part:
- ListBox LB_FONT
- {
- HelpID = cui:ListBox:RID_SVXDLG_CHARMAP:LB_FONT;
- Pos = MAP_APPFONT ( 42 , 6 ) ;
- Size = MAP_APPFONT ( 70 , 58 ) ;
- Sort = TRUE ;
- TabStop = TRUE ;
- DropDown = TRUE ;
- };

LB_FONT was linked to aFontLB and has been replaced by m_pFontLB. This one is
ListBox* type. Then I suppose the new code uses InsertEntry( const XubString
rStr, sal_uInt16 nPos = LISTBOX_APPEND );
Now perhaps GetDevFont should be investigated or perhaps a new function should
be created to retrieve fonts in alphabetical order.

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


[Libreoffice-bugs] [Bug 57249] New: labelling axes with superscript is not formatting properly

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

  Priority: medium
Bug ID: 57249
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: labelling axes with superscript is not formatting
properly
  Severity: normal
Classification: Unclassified
OS: Mac OS X (All)
  Reporter: kloss.mail...@gmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 3.6.3.2 release
 Component: Spreadsheet
   Product: LibreOffice

Created attachment 70215
  -- https://bugs.freedesktop.org/attachment.cgi?id=70215action=edit
labelling of axes with superscript bad format

Both WRITER and CALC 
graph from chart and labelling axes with superscript like 10 power -9
Type of character is lucida grande which cannot be changed

Inserting superscript for exponents produces different types of characters
See attachment

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


[Libreoffice-bugs] [Bug 57236] CRASH when FILESAVE .doc as .html

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

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

   What|Removed |Added

   Severity|normal  |major
 CC||LibreOffice@bielefeldundbus
   ||s.de
Summary|Writer crashes when |CRASH when FILESAVE .doc as
   |exporting a certain file to |.html
   |html|

--- Comment #4 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
[Reproducible] with  Lior's sample document and parallel installation of Master
LOdev  4.0.0.0.alpha0+   -  ENGLISH UI / German Locale  [Build ID: a2b3ee)] 
{tinderbox: @6, pull time 2012-11-13 06:07:28} on German WIN7 Home Premium
(64bit) with separate /4 User Profile for Master Branch

Seems to be a a very general problem. Steps how to reproduce:
1. creat a new WRITER document from LibO Start center
2. type xyz into document
3. save it as xyz.doc (MSO97)
4. Close document (without exiting LibO)
5. Reopen xyz.doc from menu 'File - Recent Documents'
6. 'File - Save as - xyz.html' save
   CRASH

Also crashes if xyz.doc is in WORD 6 format or is a xyz.docx (OOXML)

It really is a problem during the save process, no crash saving the same
xyz.doc from LibO 3.6.4.1 as .html

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


[Libreoffice-bugs] [Bug 57236] CRASH when FILESAVE .doc as .html

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

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
Version|4.0.0.0.alpha0+ Master  |3.7.0.0.alpha0+ Master
 Ever confirmed|0   |1

--- Comment #5 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
Already [Reproducible] with Server-installation of Master 3.7.0.alpha0+  –
ENGLISH UI [Build ID: f2e622] {tinderbox: Win-x86@16, pull time 2012-10-06
09:31:39} on German WIN7 Home Premium (64bit)
UserInstallation=$SYSUSERCONFIG/LOdev/3

Still worked fine with server-installation of Master 3.7.0alpha0+  – WIN7 Home
Premium (64bit) ENGLISH UI [Build ID: b255de8] (tinderbox: Win-x86@6-fast,
pull time 2012-06-05 23:16:58)

Unfortunately I do not have many Master Versions installed between those 2, but
if necessary I can reactivate some to narrow down the commit what causes the
crash

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


[Libreoffice-bugs] [Bug 57250] New: Bande sonore sur un Diaporama

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

  Priority: medium
Bug ID: 57250
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Bande sonore sur un Diaporama
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: jmcoiff...@gmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: unspecified
 Component: Presentation
   Product: LibreOffice

Est il possible d'ajouter une bande sonore continue pour la présentation d'un
diaporama ? si oui, comment faut il procéder ?

Merci

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


[Libreoffice-bugs] [Bug 46748] UI: enhancement - Sheet Tabs Options

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

luk...@gmail.com changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED
 CC||luk...@gmail.com

--- Comment #3 from luk...@gmail.com ---
Verified for Version 4.0.0.0.alpha0+ (Build ID: 04f2f0)

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


[Libreoffice-bugs] [Bug 57250] Bande sonore sur un Diaporama

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

jmcoiff...@gmail.com changed:

   What|Removed |Added

Version|unspecified |3.6.3.2 release

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


[Libreoffice-bugs] [Bug 56937] EDITING: freeze when drag and drop from top input field to anywhere

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

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

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
   Severity|normal  |major
Summary|EDITING: crash when drag|EDITING: freeze when drag
   |and drop from top input|and drop from top input
   |field to anywhere  |field to anywhere
 Ever confirmed|0   |1

--- Comment #5 from Roman Eisele b...@eikota.de ---
Thank you very much for your bug report --

and especially for the “sampling” of the LibreOffice process during the freeze,
because it gives us an important hint about the nature of this freeze!

The “sampling”/stack trace contains many references to accessibility stuff:
ScAccessibleTableBase, hitTestRunner, accessibility etc. This means that the
freeze is related to the use of the Mac OS Accessibility API. We have some
long-standing bugs in LibreOffice accessibility stuff which were inherited from
OpenOffice and which become visible only when the Mac OS Accessibility API is
used (see the comments in bug 55571 etc.) ... and it seems that your report is
just about another one of these nasty issues.


Therefore, to confirm this observation and to find out what exactly triggers
the bug, please check and answer the following questions:

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

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

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

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

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


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

Thank you very much!

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


[Libreoffice-bugs] [Bug 55571] [Task] Tracking bug for important bugs related to the Mac OS X Accessibility API

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

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

   What|Removed |Added

 Depends on||56937

--- Comment #14 from Roman Eisele b...@eikota.de ---
Added bug 56937 - “EDITING: freeze when drag and drop from ‘top input field’ to
anywhere”. Not yet reproduced, but according to the process sampling definitely
yet another issue related to Mac OS accessibility stuff.

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


[Libreoffice-bugs] [Bug 56937] EDITING: freeze when drag and drop from top input field to anywhere

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

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

   What|Removed |Added

 Blocks||55571

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


[Libreoffice-bugs] [Bug 46107] UI: Voiceover not announcing cell content or position

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

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

   What|Removed |Added

 CC||ipla...@yahoo.co.uk

--- Comment #2 from Roman Eisele b...@eikota.de ---
@ Alex Thurgood:

Hi Alex -- IIRC you have some experience with the MAC AT accessibility problems
(you have filed bug 49576 - “Accessibility - MAC AT accessibility problems”
;-).
Could you please take a look at *this* bug?

According to my tests, it is already fixed in LibreOffice 3.5.7.1 and 3.6.3 or
better, so we could close this bug as RESOLVED/WORKSFORME. But it would be very
nice if you could double-check if my results are correct. (The original
reporter did not answer to my question about the state of this bug, therefore I
ask you to get a second opinion before closing the bug.)

Thank you very much!

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


[Libreoffice-bugs] [Bug 57230] LibreOffice does not print all pages

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

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

   What|Removed |Added

 CC||ipla...@yahoo.co.uk

--- Comment #1 from Roman Eisele b...@eikota.de ---
@ Bernd Kloss:

Thank you for your bug report!


@ Alex Thurgood:

As you are our QA expert for printing problems on Mac OS X, could you please
take a look at this new bug report and try to reproduce it? (I still can’t
print from my machine, therefore I can’t help here :-(

Thank you very much!

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


[Libreoffice-bugs] [Bug 57249] labelling axes with superscript is not formatting properly

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

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

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 57249] labelling axes with superscript is not formatting properly

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

--- Comment #2 from Roman Eisele b...@eikota.de ---
Created attachment 70218
  -- https://bugs.freedesktop.org/attachment.cgi?id=70218action=edit
Screenshot shows that the wrong font is used for superscript text in axis
labels

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


[Libreoffice-bugs] [Bug 53126] VIEWING: Base scrolling malfunctioning

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

--- Comment #4 from narea92 aren...@videotron.ca ---
Created attachment 70219
  -- https://bugs.freedesktop.org/attachment.cgi?id=70219action=edit
Confirming Bug with Mint 13 Mate also

I am experiencing the same bug with Linux Mint 13 Mate.
The only additional informations that I am capable to give to you are:
The Base is a database created with the wizard.
The Disply is the the disply of the saved records when I open the Base file.
Yours,
Gaetano Arena

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


[Libreoffice-bugs] [Bug 36117] Bug/Feature Request: Libre Office cannot Vertically Center Text without Frames

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

--- Comment #12 from Will Maynard wlmayn...@eldergnome.com ---
Talk about inconvient. Format/Alignment gives you horizontal center choices,
but the vertical choices are grayed out. Even WP for DOS made verticle
centering easier that using frames. Libre Office stands out for this
ackwardness. And no, I'm not capable of programming for you. I'w just trying to
vertical center a title page for a story I'm working on.

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


[Libreoffice-bugs] [Bug 57249] labelling axes with superscript is not formatting properly

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

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||b...@eikota.de
  Component|Spreadsheet |Chart
 Ever confirmed|0   |1

--- Comment #3 from Roman Eisele b...@eikota.de ---
Thank you very much for your bug report!

REPRODUCIBLE with LibreOffice 3.6.4.1 (Build ID: a9a0717), German langpack
installed, on Mac OS X 10.6.8 (Intel). As my screenshot shows, LibreOffice uses
for the superscript figures and letters in the axis labels another font
(family) than elsewhere in the chart and axis labels.

While the font family used elsewhere in the chart is Lucida Grande (a Mac OS X
system font), the superscript figures appear
* in Lucida Grande: only superscript 2 and 3 
* in some other font (in my case: Alegreya): superscript 0, 4, 5, 6, 7, 8, 9,
i.

The difference between these two groups of figures is that the superscript 2
and 3 are part of the basic ISO Latin 1 character set, and therefore are
located in the “Latin-1 Supplement” section of Unicode at U+00B2 and U+00B3,
but the other “superscript figures and the superscript i are located in the
“Superscript and Subscript” Unicode section at U+2070 and following.

It seems that LibreOffice takes the superscript 2 and 3 from the main text font
(here: Lucida Grande), but what regards the extended superscript letters (which
are missing from many simple fonts) it searches for another font which contains
these special characters, and then takes the glyphes for these letters from the
1st font which contains glyphs for them -- in my case, this is Alegreya.

This behaviour would be entierly correct *if* the extended superscript letters
0, 4, ..., 9, i would be missing from Lucida Grande, just like they are missing
from many simple fonts. Then LibreOffice would *need* to take these letters
from some other font. But -- and this is IMHO the real bug -- Lucida Grande
*does* actually contain glyphs for the superscript 0, 4, , 9 and i. So
LibreOffice does change the font without any necessity. And this is a bug.

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


[Libreoffice-bugs] [Bug 57249] labelling axes with superscript is not formatting properly

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

--- Comment #4 from Bernd Kloss kloss.mail...@gmail.com ---
Thank you for your quick response.

The character 1 is also not correct. The fontset Lucida Grande produces i
instead of 1. Probably due to missing characters in fontset as you described
above.

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


[Libreoffice-bugs] [Bug 57249] labelling axes with superscript is not formatting properly

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

--- Comment #5 from Roman Eisele b...@eikota.de ---
Created attachment 70220
  -- https://bugs.freedesktop.org/attachment.cgi?id=70220action=edit
A detail screenshot, showing the font substitution better

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


[Libreoffice-bugs] [Bug 57249] labelling axes with superscript is not formatting properly

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

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

   What|Removed |Added

Version|3.6.3.2 release |3.3.0 release

--- Comment #6 from Roman Eisele b...@eikota.de ---
About versions:

The bug is still REPRODUCIBLE with a current master build, e.g.
LOdev 4.0.0.0.alpha0+ (Build ID: ed8067; pull time: 2012-11-15 03:54:19).

The bug is already REPRODUCIBLE with identical results in
LibreOffice 3.3.0, OOO330m19 (Build:6), tag libreoffice-3.3.0.4.
Probably inherited from OOo (or GoOO).
→ Adapting Version field to the first version which is known to contain the bug
(as usual).

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


[Libreoffice-bugs] [Bug 57251] New: IRC: not all LibreOffice channels listed for freenode

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

  Priority: medium
Bug ID: 57251
CC: webs...@global.libreoffice.org
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: IRC: not all LibreOffice channels listed for freenode
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: libreoff...@bielefeldundbuss.de
  Hardware: Other
Status: UNCONFIRMED
   Version: unspecified
 Component: WWW
   Product: LibreOffice

Created attachment 70221
  -- https://bugs.freedesktop.org/attachment.cgi?id=70221action=edit
screenshot with offered channels

Searching available channels for libreoffice on freenode with ChatZilla does
not show all exisitng channels (see screenshot), at least libreoffice-de and
libreoffice-qa are missing. Intended or something wrong with freenode
settings or ChatZilla problem?

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


[Libreoffice-bugs] [Bug 57245] In OS X Calc hangs if save button used. Both Cmd-G and menu File-Save works OK.

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

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

   What|Removed |Added

 Status|NEW |NEEDINFO

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


[Libreoffice-bugs] [Bug 57245] In OS X Calc hangs if save button used. Both Cmd-G and menu File-Save works OK.

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

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

   What|Removed |Added

 CC||b...@eikota.de

--- Comment #1 from Roman Eisele b...@eikota.de ---
Thank you very much for your bug report!

However, on a quick test, I can NOT reproduce it with LibreOffice 3.6.4.1
(Build ID: a9a0717), German langpack installed, on Mac OS X 10.6.8 (Intel). For
me, the  “save” button works as expected (saves the document, if there are any
changes).

 Both Cmd-G and menu File-Save works OK.
Hint: I suppose that Cmd-G is the same as Cmd-S on other localizations.

 What additional information can I provide to help fix this?
When you need to “kill” the application to make it stop -- does Mac OS X
provide some crash information to you after killing the application? It shold
do so; see
http://wiki.documentfoundation.org/BugReport#How_to_get_debug_information_.28on_Mac_OS_X.29

If yes, please attach the log file/information provided by Apple to this bug
report. With this information, we can say a bit more about this problem ...

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


[Libreoffice-bugs] [Bug 57161] Numbering captions by chapters doesn't work

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

Olivier Diotte vhann3000+freedesk...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 57158] It is impossible to use the same page style for more than 1 page unless they are the last pages of the document

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

Olivier Diotte vhann3000+freedesk...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 57105] Caption numbering is reset under certain conditions (see attached document)

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

Olivier Diotte vhann3000+freedesk...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 57251] IRC: not all LibreOffice channels listed for freenode

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

--- Comment #1 from Jonathan Aquilina eagles051...@gmail.com ---
Question is are those sites officially registered by the TDF with freenode?
I can confirm though wiht my irc client on mac I am not seeing those
channels.

On Sun, Nov 18, 2012 at 5:22 PM, bugzilla-dae...@freedesktop.org wrote:

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

   Priority: medium
 Bug ID: 57251
 CC: webs...@global.libreoffice.org
   Assignee: libreoffice-bugs@lists.freedesktop.org
Summary: IRC: not all LibreOffice channels listed for freenode
   Severity: normal
 Classification: Unclassified
 OS: All
   Reporter: libreoff...@bielefeldundbuss.de
   Hardware: Other
 Status: UNCONFIRMED
Version: unspecified
  Component: WWW
Product: LibreOffice

 Created attachment 70221
   -- https://bugs.freedesktop.org/attachment.cgi?id=70221action=edit
 screenshot with offered channels

 Searching available channels for libreoffice on freenode with ChatZilla
 does
 not show all exisitng channels (see screenshot), at least libreoffice-de
 and
 libreoffice-qa are missing. Intended or something wrong with freenode
 settings or ChatZilla problem?

 --
 You are receiving this mail because:
 You are on the CC list for the bug.

 --
 Unsubscribe instructions: E-mail to website+h...@global.libreoffice.org
 Problems?
 http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
 Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
 List archive: http://listarchives.libreoffice.org/global/website/
 All messages sent to this list will be publicly archived and cannot be
 deleted


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


[Libreoffice-bugs] [Bug 57231] FILEOPEN: Impress Crashes on opening old odp file

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

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

   What|Removed |Added

 OS|All |Mac OS X (All)
   Severity|normal  |major
 CC||LibreOffice@bielefeldundbus
   ||s.de

--- Comment #2 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
NOT Reproducible with LibreOffice 3.6.4.1 rc German UI/ German Locale
[Build-ID: a9a0717] on German WIN7 Home Premium (64bit) 

MAC related

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


[Libreoffice-bugs] [Bug 57253] New: FILEOPEN RTF - Writer freezes during opening of attached RTF file

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

  Priority: medium
Bug ID: 57253
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FILEOPEN RTF - Writer freezes during opening of
attached RTF file
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: mdun...@math.uwaterloo.ca
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 3.4.6 release
 Component: Writer
   Product: LibreOffice

Created attachment 70222
  -- https://bugs.freedesktop.org/attachment.cgi?id=70222action=edit
The RTF file that locks up Writer

The attached RTF file causes Writer to get stuck in 100% cpu usage during
opening, requiring a hard kill.

I'm running Fedora 16, with Writer package
libreoffice-writer-3.4.6.2-1.fc16.x86_64

The file opens in AbiWord without a lockup (but it looks misformatted), and it
successfully opens in Microsoft's Wordpad, where it looks to be correct.

My friend received this file as part of an economics course in 2010 and it
failed to open in the same manner with OpenOffice. I submitted this bug to
their tracker, it did not get fixed, but they did some triage on it:

https://issues.apache.org/ooo/show_bug.cgi?id=110854

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


[Libreoffice-bugs] [Bug 57231] CRASH when FILEOPEN particular old .odp

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

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

   What|Removed |Added

Summary|FILEOPEN: Impress Crashes   |CRASH when FILEOPEN
   |on opening old  odp file|particular old .odp

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


[Libreoffice-bugs] [Bug 57253] FILEOPEN RTF - Writer freezes during opening of attached RTF file

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

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

   What|Removed |Added

  Attachment #70222|text/plain  |application/rtf
  mime type||

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


[Libreoffice-bugs] [Bug 57253] CRASH when FILEOPEN paticular .RTF

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

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

   What|Removed |Added

 OS|Linux (All) |All
 Status|UNCONFIRMED |RESOLVED
 Whiteboard||(target:3.5.7)
 Resolution|--- |WORKSFORME
 CC||LibreOffice@bielefeldundbus
   ||s.de
Summary|FILEOPEN RTF - Writer   |CRASH when FILEOPEN
   |freezes during opening of   |paticular .RTF
   |attached RTF file   |

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
Freeze is [Reproducible] with Server Installation of  LibreOffice 3.4.5 German
UI [Build ID: OOO340m1 (Build:502)] parallel Server installation on German
WIN7 Home Premium (64bit); LibO stops responding.

But no problem with LibreOffice 3.5.7.2 rc German UI/Locale [Build-ID:
3215f89-f603614-ab984f2-7348103-1225a5b] on German WIN7 Home Premium (64bit) 
and
LibO 3.6.4.1. so WFM

@reporter:
Please feel free to reopen this bug if you find out that the problem still
exists with the current stable LibreOffice version for your Operating System.

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


[Libreoffice-bugs] [Bug 54726] SOLVED-SLIDESHOW: impress doesn't play video

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

alfredolopezhie...@gmail.com changed:

   What|Removed |Added

Summary|SLIDESHOW: impress doesn't  |SOLVED-SLIDESHOW: impress
   |play video  |doesn't play video

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


[Libreoffice-bugs] [Bug 57254] New: FILESAVE: hidden text visible in xhtml export

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

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

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

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


[Libreoffice-bugs] [Bug 51827] FORMATTING: Operators set in wrong font (OpenSymbol)

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

--- Comment #5 from Madis Kalme madis.ka...@mail.ee ---
Adding to this bug. It seems that there are inconsistency depending on OS. For
example on a Server 2008 LibO versions 3.5.1.2 and 3.6.3.2 show a nice square
root sign, but versions 3.6.2.2 and 3.6.4.1 on a Windows 8 machine show
broken square root sign. It stays this way even when exporting to PDF. PDF
fonts show that in addition to Times it uses OpenSymbol. + and - signs also
trigger usage of OpenSymbol font, but they don't look off.

I guess its because it consists of √ and a — symbol and they don't match
exactly in some cases.

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


[Libreoffice-bugs] [Bug 53126] VIEWING: Base scrolling malfunctioning

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

rob...@familiegrosskopf.de changed:

   What|Removed |Added

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

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