LibreOffice Gerrit News 2013-09-21

2013-09-21 Thread gerrit
Moin!

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

+ Add New Database button to DB setup dialog.
  in https://gerrit.libreoffice.org/6011 from Andrzej J.R. Hunt
+ startcenter: Hide template toggle button if no templates
  in https://gerrit.libreoffice.org/5913 from Krisztian Pinter
+ fdo#69536 - Moved Averageif(s)
  in https://gerrit.libreoffice.org/6010 from Joel Madero


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

+ fdo#39881 change Find All behaviour in Calc
  in https://gerrit.libreoffice.org/5886 from Matúš Kukan
+ New unit test to the DOMTree test suite
  in https://gerrit.libreoffice.org/6004 from Andres Gomez
+ fdo#64491: Move SmartArt test from import to export
  in https://gerrit.libreoffice.org/6006 from Andres Gomez
+ fdo#64491: Export theme file when saving
  in https://gerrit.libreoffice.org/6005 from Andres Gomez
+ indent: Just some indenting for better reading
  in https://gerrit.libreoffice.org/6001 from Andres Gomez
+ unoxml: avoid SIGSEV when xmlNsPtr prefix is NULL
  in https://gerrit.libreoffice.org/6003 from Andres Gomez
+ uno: new InteropGrabBag UNO prop in OfficeDocument
  in https://gerrit.libreoffice.org/6000 from Andres Gomez
+ writerfilter: OOXML theme saved in InteropGrabBag
  in https://gerrit.libreoffice.org/6002 from Andres Gomez
+ fdo#40594 Fix for chart missing issue in Writer (for docx)
  in https://gerrit.libreoffice.org/5976 from vinaya mandke


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

None

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

+ Simplify oslThreadIdentifier on Linux 32.
  in https://gerrit.libreoffice.org/5553 from Arnaud Versini
+ improve performance of copyArea in Ios
  in https://gerrit.libreoffice.org/5707 from Tsahi Glik @ CloudOn
+ Fix for IOS scroll by pixels, and pinch to zoom Change-Id: Ied6087a264f1c
  in https://gerrit.libreoffice.org/5742 from Ptyl
+ fix polygon rendering with clip area of one line only
  in https://gerrit.libreoffice.org/5709 from Tsahi Glik @ CloudOn
+ fix for text watermark
  in https://gerrit.libreoffice.org/5568 from Adam CloudOn
+ fdo#39468: Translate German comments (first part) in include/svl/filerec.
  in https://gerrit.libreoffice.org/5793 from Philipp Riemer
+ fdo#44689: fix for specific case restart value 0
  in https://gerrit.libreoffice.org/5681 from Adam CloudOn
+ Dynamically align toolbars in LibreOffice
  in https://gerrit.libreoffice.org/5655 from Prashant Pandey
+ fdo#36791 : fix for import of greeting card
  in https://gerrit.libreoffice.org/4240 from Adam CloudOn
+ fdo#66401: fix for combined characters
  in https://gerrit.libreoffice.org/5018 from Adam CloudOn
+ more debug logs, extra debug layer, file is not used in p3k
  in https://gerrit.libreoffice.org/5267 from James Michael Dupont
+ Remove old outdated gallery images and sounds
  in https://gerrit.libreoffice.org/4993 from Samuel Mehrbrodt
+ Positional Tab additions
  in https://gerrit.libreoffice.org/5387 from Adam CloudOn
+ fdo#64817 : fix for rectangle with image fill
  in https://gerrit.libreoffice.org/4718 from Adam CloudOn


Best,

Your friendly LibreOffice Gerrit Digest Mailer

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


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

2013-09-21 Thread Caolán McNamara
 sfx2/source/sidebar/SidebarController.cxx |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 8c0687f2d23ef8b5e55977968720ee93282de798
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Sep 21 10:07:49 2013 +0100

WaE: shadowed variable in higher debug level

Change-Id: I560e5559306277006a2b6dbeacad54ee60a182d0

diff --git a/sfx2/source/sidebar/SidebarController.cxx 
b/sfx2/source/sidebar/SidebarController.cxx
index cdfa06c..9dbb178 100644
--- a/sfx2/source/sidebar/SidebarController.cxx
+++ b/sfx2/source/sidebar/SidebarController.cxx
@@ -588,9 +588,9 @@ void SidebarController::SwitchToDeck (
 
 #ifdef DEBUG
 // Show the context name in the deck title bar.
-DeckTitleBar* pTitleBar = mpCurrentDeck-GetTitleBar();
-if (pTitleBar != NULL)
-pTitleBar-SetTitle(rDeckDescriptor.msTitle+A2S( 
()+maCurrentContext.msContext+A2S()));
+DeckTitleBar* pDebugTitleBar = mpCurrentDeck-GetTitleBar();
+if (pDebugTitleBar != NULL)
+pDebugTitleBar-SetTitle(rDeckDescriptor.msTitle +  ( + 
maCurrentContext.msContext + ));
 #endif
 
 // Update the panel list.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


About SwTable::CheckConsistency() (sw module)

2013-09-21 Thread julien2412
Hi,

I noticed some weird things in SwTable::CheckConsistency(), eg:
   2102 std::list RowSpanCheck  aRowSpanCells;
   2103 std::list RowSpanCheck ::iterator aIter = aRowSpanCells.end();

then I see ++aIter several times some lines later.
How can it work since:
aRowSpanCells isn't initialized
aIter is at the end of aRowSpanCells
?
Just nitpicking but I think that this part:
   2128 std::list RowSpanCheck ::iterator aEraseIter =
aIter;
   2129 ++aIter;
   2130 aRowSpanCells.erase( aEraseIter );
could be replaced by:
aIter = aRowSpanCells.erase(aIter);
since erase returns an iterator even before C++11 standard (see
http://www.cplusplus.com/reference/list/list/erase/)

See
http://opengrok.libreoffice.org/xref/core/sw/source/core/table/swnewtable.cxx#2095

Julien



--
View this message in context: 
http://nabble.documentfoundation.org/About-SwTable-CheckConsistency-sw-module-tp4074960.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: 2 commits - sd/inc sd/source sw/source unotools/source

2013-09-21 Thread Caolán McNamara
 sd/inc/CustomAnimationEffect.hxx |1 -
 sd/inc/cusshow.hxx   |1 -
 sd/inc/sdabstdlg.hxx |1 -
 sd/source/ui/inc/TemplateScanner.hxx |1 -
 sd/source/ui/inc/taskpane/TitleBar.hxx   |1 -
 sd/source/ui/inc/taskpane/TitledControl.hxx  |1 -
 sd/source/ui/inc/tmplctrl.hxx|1 -
 sd/source/ui/sidebar/MasterPageContainer.hxx |1 -
 sw/source/core/doc/docfmt.cxx|   10 +-
 unotools/source/config/lingucfg.cxx  |1 -
 unotools/source/config/syslocaleoptions.cxx  |1 -
 11 files changed, 9 insertions(+), 11 deletions(-)

New commits:
commit fe9cce9453ca0e1aac77834af8160f0d11887a55
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Sep 21 12:28:48 2013 +0100

CID#1000697 out of bounds access

Change-Id: I59f80463aa13e3c28695112165343f93366cfec4

diff --git a/sw/source/core/doc/docfmt.cxx b/sw/source/core/doc/docfmt.cxx
index a9d9f04..7d4a809 100644
--- a/sw/source/core/doc/docfmt.cxx
+++ b/sw/source/core/doc/docfmt.cxx
@@ -585,7 +585,15 @@ lcl_InsAttr(SwDoc *const pDoc, const SwPaM rRg, const 
SfxItemSet rChgSet,
 return false;
 }
 
-SwNumFmt aNumFmt = 
pNumRule-Get(static_castsal_uInt16(pTxtNd-GetActualListLevel()));
+int nLevel = pTxtNd-GetActualListLevel();
+
+if (nLevel  0)
+nLevel = 0;
+
+if (nLevel = MAXLEVEL)
+nLevel = MAXLEVEL - 1;
+
+SwNumFmt aNumFmt = pNumRule-Get(static_castsal_uInt16(nLevel));
 SwCharFmt * pCharFmt =
 pDoc-FindCharFmtByName(aNumFmt.GetCharFmtName());
 
commit 74441e736edfd20621af71de22b2e92cbc4f7f3c
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Sep 21 12:28:16 2013 +0100

drop various tools/string.hxx include

Change-Id: If4271c97025a56922c4f0b143cc3af214218a153

diff --git a/sd/inc/CustomAnimationEffect.hxx b/sd/inc/CustomAnimationEffect.hxx
index 3931d62..6237945 100644
--- a/sd/inc/CustomAnimationEffect.hxx
+++ b/sd/inc/CustomAnimationEffect.hxx
@@ -25,7 +25,6 @@
 #include com/sun/star/animations/XAudio.hpp
 #include com/sun/star/drawing/XShape.hpp
 #include com/sun/star/util/XChangesListener.hpp
-#include tools/string.hxx
 
 #include boost/shared_ptr.hpp
 
diff --git a/sd/inc/cusshow.hxx b/sd/inc/cusshow.hxx
index 8129364..c80cb1d 100644
--- a/sd/inc/cusshow.hxx
+++ b/sd/inc/cusshow.hxx
@@ -22,7 +22,6 @@
 
 #include vector
 #include tools/stream.hxx
-#include tools/string.hxx
 #include cppuhelper/weakref.hxx
 #include sddllapi.h
 
diff --git a/sd/inc/sdabstdlg.hxx b/sd/inc/sdabstdlg.hxx
index e63aa0d..68142c8 100644
--- a/sd/inc/sdabstdlg.hxx
+++ b/sd/inc/sdabstdlg.hxx
@@ -24,7 +24,6 @@
 #include rtl/ref.hxx
 #include rtl/string.hxx
 #include tools/solar.h
-#include tools/string.hxx
 #include sfx2/sfxdlg.hxx
 #include com/sun/star/uno/Sequence.h
 #include com/sun/star/beans/NamedValue.hpp
diff --git a/sd/source/ui/inc/TemplateScanner.hxx 
b/sd/source/ui/inc/TemplateScanner.hxx
index 2bc3ace..a93d1b9 100644
--- a/sd/source/ui/inc/TemplateScanner.hxx
+++ b/sd/source/ui/inc/TemplateScanner.hxx
@@ -23,7 +23,6 @@
 #include tools/AsynchronousTask.hxx
 #include sddllapi.h
 #include ucbhelper/content.hxx
-#include tools/string.hxx
 #include com/sun/star/uno/Reference.hxx
 
 #include vector
diff --git a/sd/source/ui/inc/taskpane/TitleBar.hxx 
b/sd/source/ui/inc/taskpane/TitleBar.hxx
index f00ba4a..c518b7e 100644
--- a/sd/source/ui/inc/taskpane/TitleBar.hxx
+++ b/sd/source/ui/inc/taskpane/TitleBar.hxx
@@ -22,7 +22,6 @@
 
 #include taskpane/TaskPaneTreeNode.hxx
 #include vcl/image.hxx
-#include tools/string.hxx
 #include vcl/window.hxx
 #include memory
 
diff --git a/sd/source/ui/inc/taskpane/TitledControl.hxx 
b/sd/source/ui/inc/taskpane/TitledControl.hxx
index 4cd6896..f8d1f8f 100644
--- a/sd/source/ui/inc/taskpane/TitledControl.hxx
+++ b/sd/source/ui/inc/taskpane/TitledControl.hxx
@@ -24,7 +24,6 @@
 #include taskpane/ControlContainer.hxx
 #include TitleBar.hxx
 #include com/sun/star/drawing/framework/XResourceId.hpp
-#include tools/string.hxx
 #include tools/gen.hxx
 #include vcl/window.hxx
 #include memory
diff --git a/sd/source/ui/inc/tmplctrl.hxx b/sd/source/ui/inc/tmplctrl.hxx
index 20a79a4..e7bda12 100644
--- a/sd/source/ui/inc/tmplctrl.hxx
+++ b/sd/source/ui/inc/tmplctrl.hxx
@@ -20,7 +20,6 @@
 #define _SD_TMPLCTRL_HXX
 
 #include sfx2/stbitem.hxx
-#include tools/string.hxx
 
 class SdTemplateControl : public SfxStatusBarControl
 {
diff --git a/sd/source/ui/sidebar/MasterPageContainer.hxx 
b/sd/source/ui/sidebar/MasterPageContainer.hxx
index 762b52c..007dced 100644
--- a/sd/source/ui/sidebar/MasterPageContainer.hxx
+++ b/sd/source/ui/sidebar/MasterPageContainer.hxx
@@ -23,7 +23,6 @@
 #include MasterPageContainerProviders.hxx
 
 #include osl/mutex.hxx
-#include tools/string.hxx
 #include vcl/image.hxx
 #include memory
 #include PreviewRenderer.hxx
diff 

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

2013-09-21 Thread Caolán McNamara
 xmlhelp/source/treeview/tvread.cxx |1 +
 1 file changed, 1 insertion(+)

New commits:
commit ebfa1e6c86037c4143d2ced2da5b5431e8e7e7db
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Sep 21 12:36:43 2013 +0100

CID#707598 uninitialized scalar values

Change-Id: Id3c6488cfda25ab809bf554216bf2e5161456be0

diff --git a/xmlhelp/source/treeview/tvread.cxx 
b/xmlhelp/source/treeview/tvread.cxx
index 0066281..c0c62fc 100644
--- a/xmlhelp/source/treeview/tvread.cxx
+++ b/xmlhelp/source/treeview/tvread.cxx
@@ -183,6 +183,7 @@ ConfigData::ConfigData()
   vendVersion(%VENDORVERSION),
   vendShort(%VENDORSHORT)
 {
+memset(m_vAdd, 0, sizeof(m_vAdd));
 }
 
 void SAL_CALL ConfigData::replaceName( OUString oustring ) const
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2013-09-21 Thread Caolán McNamara
 sw/source/filter/ww8/ww8atr.cxx |   10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

New commits:
commit 60aea4b2cadf367736605b09604a0818b7ae571b
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Sep 21 12:42:38 2013 +0100

CID#736208 out of bounds access

Change-Id: I7f428106a4d64e2ee8990b2ddbe1a40a9ddd0a3e

diff --git a/sw/source/filter/ww8/ww8atr.cxx b/sw/source/filter/ww8/ww8atr.cxx
index c0a34c8..bc49164 100644
--- a/sw/source/filter/ww8/ww8atr.cxx
+++ b/sw/source/filter/ww8/ww8atr.cxx
@@ -3317,7 +3317,15 @@ void AttributeOutputBase::ParaNumRule( const 
SwNumRuleItem rNumRule )
 
 if( pTxtNd-IsCountedInList())
 {
-nLvl = static_cast sal_uInt8 
(pTxtNd-GetActualListLevel());
+int nLevel = pTxtNd-GetActualListLevel();
+
+if (nLevel  0)
+nLevel = 0;
+
+if (nLevel = MAXLEVEL)
+nLevel = MAXLEVEL - 1;
+
+nLvl = static_cast sal_uInt8 (nLevel);
 
 if ( pTxtNd-IsListRestart() )
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2013-09-21 Thread Miklos Vajna
 sw/inc/edimp.hxx |2 +-
 sw/source/core/doc/docbm.cxx |   10 +-
 sw/source/core/doc/doccorr.cxx   |   11 +--
 sw/source/core/edit/autofmt.cxx  |2 +-
 sw/source/core/edit/edatmisc.cxx |4 ++--
 sw/source/core/edit/edattr.cxx   |4 ++--
 sw/source/core/edit/eddel.cxx|8 
 sw/source/core/edit/edfcol.cxx   |2 +-
 sw/source/core/edit/edfld.cxx|4 ++--
 sw/source/core/edit/edglss.cxx   |2 +-
 sw/source/core/edit/editsh.cxx   |   12 ++--
 sw/source/core/edit/edredln.cxx  |2 +-
 sw/source/core/edit/edsect.cxx   |6 +++---
 sw/source/core/edit/edtab.cxx|4 ++--
 sw/source/core/edit/edtox.cxx|2 +-
 sw/source/core/fields/fldlst.cxx |2 +-
 sw/source/core/frmedt/fecopy.cxx |2 +-
 sw/source/core/frmedt/fedesc.cxx |2 +-
 sw/source/core/frmedt/fefly1.cxx |2 +-
 sw/source/core/frmedt/fews.cxx   |2 +-
 20 files changed, 34 insertions(+), 51 deletions(-)

New commits:
commit 815c6758727abf7adef5d1a962a36fb3d102000c
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sat Sep 21 13:57:41 2013 +0200

sw: unify PCURCRSR / FOREACHPAM_START / FOREACHPAM_END macros

Change-Id: I10ab2d0ba10178ba2d37db2632349215341612f4

diff --git a/sw/inc/edimp.hxx b/sw/inc/edimp.hxx
index b6ec277..8e251ff 100644
--- a/sw/inc/edimp.hxx
+++ b/sw/inc/edimp.hxx
@@ -31,7 +31,7 @@ class SwNodeIndex;
 
 #define FOREACHPAM_START(pCURSH) \
 {\
-SwPaM *_pStartCrsr = (pCURSH)-GetCrsr(), *__pStartCrsr = _pStartCrsr; 
\
+SwPaM *_pStartCrsr = (pCURSH), *__pStartCrsr = _pStartCrsr; \
 do {
 
 #define FOREACHPAM_END() \
diff --git a/sw/source/core/doc/docbm.cxx b/sw/source/core/doc/docbm.cxx
index ae066c7..c9e7684 100644
--- a/sw/source/core/doc/docbm.cxx
+++ b/sw/source/core/doc/docbm.cxx
@@ -46,6 +46,7 @@
 #include swundo.hxx
 #include unocrsr.hxx
 #include viscrs.hxx
+#include edimp.hxx
 #include stdio.h
 
 using namespace ::std;
@@ -874,15 +875,6 @@ namespace sw { namespace mark
 
 }} // namespace ::sw::mark
 
-#define PCURCRSR (_pCurrCrsr)
-#define FOREACHPAM_START(pSttCrsr) \
-{\
-SwPaM *_pStartCrsr = pSttCrsr, *_pCurrCrsr = pSttCrsr; \
-do {
-
-#define FOREACHPAM_END() \
-} while( (_pCurrCrsr=(SwPaM *)_pCurrCrsr-GetNext()) != _pStartCrsr ); 
\
-}
 #define PCURSH ((SwCrsrShell*)_pStartShell)
 #define FOREACHSHELL_START( pEShell ) \
 {\
diff --git a/sw/source/core/doc/doccorr.cxx b/sw/source/core/doc/doccorr.cxx
index d6cf7b0..9c57fd5 100644
--- a/sw/source/core/doc/doccorr.cxx
+++ b/sw/source/core/doc/doccorr.cxx
@@ -30,6 +30,7 @@
 #include unocrsr.hxx
 #include swundo.hxx
 #include hints.hxx
+#include edimp.hxx
 
 /*
  * Macros to iterate over all CrsrShells
@@ -47,16 +48,6 @@
 } while((_pStartShell=(ViewShell*)_pStartShell-GetNext())!= pEShell 
); \
 }
 
-#define PCURCRSR (_pCurrCrsr)
-#define FOREACHPAM_START(pSttCrsr) \
-{\
-SwPaM *_pStartCrsr = pSttCrsr, *_pCurrCrsr = pSttCrsr; \
-do {
-
-#define FOREACHPAM_END() \
-} while( (_pCurrCrsr=(SwPaM *)_pCurrCrsr-GetNext()) != _pStartCrsr ); 
\
-}
-
 namespace
 {
 /// find the relevant section in which the SwUnoCrsr may wander.
diff --git a/sw/source/core/edit/autofmt.cxx b/sw/source/core/edit/autofmt.cxx
index 8d4571a..2ad6483 100644
--- a/sw/source/core/edit/autofmt.cxx
+++ b/sw/source/core/edit/autofmt.cxx
@@ -2556,7 +2556,7 @@ void SwEditShell::AutoFormat( const SvxSwAutoFmtFlags* 
pAFlags )
 // There are more than one or a selection is open
 if( pCrsr-GetNext() != pCrsr || pCrsr-HasMark() )
 {
-FOREACHPAM_START(this)
+FOREACHPAM_START(GetCrsr())
 if( PCURCRSR-HasMark() )
 {
 SwAutoFormat aFmt( this, aAFFlags, PCURCRSR-Start()-nNode,
diff --git a/sw/source/core/edit/edatmisc.cxx b/sw/source/core/edit/edatmisc.cxx
index 5c3fc19..94218ac 100644
--- a/sw/source/core/edit/edatmisc.cxx
+++ b/sw/source/core/edit/edatmisc.cxx
@@ -56,7 +56,7 @@ void SwEditShell::ResetAttr( const std::setsal_uInt16 
attrs, SwPaM* pPaM )
 
 void SwEditShell::GCAttr()
 {
-FOREACHPAM_START(this)
+FOREACHPAM_START(GetCrsr())
 if ( !PCURCRSR-HasMark() )
 {
 SwTxtNode *const pTxtNode =
@@ -106,7 +106,7 @@ void SwEditShell::SetAttr( const SfxPoolItem rHint, 
sal_uInt16 nFlags )
 sal_Bool bIsTblMode = IsTableMode();
 GetDoc()-GetIDocumentUndoRedo().StartUndo(UNDO_INSATTR, NULL);
 
-FOREACHPAM_START(this)
+FOREACHPAM_START(GetCrsr())
 if( PCURCRSR-HasMark()  ( bIsTblMode ||
 *PCURCRSR-GetPoint() != *PCURCRSR-GetMark() ))
 {
diff --git a/sw/source/core/edit/edattr.cxx b/sw/source/core/edit/edattr.cxx
index 1133863..4306fb5 100644
--- a/sw/source/core/edit/edattr.cxx
+++ b/sw/source/core/edit/edattr.cxx
@@ -373,7 +373,7 @@ bool SwEditShell::IsMoveLeftMargin( bool bRight, bool 
bModulus ) const
 if( !nDefDist )

[Libreoffice-commits] core.git: 7 commits - i18nlangtag/source include/i18nlangtag

2013-09-21 Thread Eike Rathke
 i18nlangtag/source/languagetag/languagetag.cxx |  116 +++--
 include/i18nlangtag/languagetag.hxx|   19 +++-
 2 files changed, 123 insertions(+), 12 deletions(-)

New commits:
commit dafd27829359201cab45462bae43baf19b369a14
Author: Eike Rathke er...@redhat.com
Date:   Sat Sep 21 14:57:40 2013 +0200

register separate theSystemLocale for faster access

Change-Id: I0fc5938bd2c0157471539217806ad7844d765e8d

diff --git a/i18nlangtag/source/languagetag/languagetag.cxx 
b/i18nlangtag/source/languagetag/languagetag.cxx
index 4a3ba4d..9ad4155 100644
--- a/i18nlangtag/source/languagetag/languagetag.cxx
+++ b/i18nlangtag/source/languagetag/languagetag.cxx
@@ -95,6 +95,7 @@ typedef ::std::map LanguageType, LanguageTag::ImplPtr  
MapLangID;
 struct theMapBcp47 : public rtl::Static MapBcp47, theMapBcp47  {};
 struct theMapLangID : public rtl::Static MapLangID, theMapLangID  {};
 struct theDontKnow : public rtl::Static LanguageTag::ImplPtr, theDontKnow  
{};
+struct theSystemLocale : public rtl::Static LanguageTag::ImplPtr, 
theSystemLocale  {};
 }
 
 
@@ -665,19 +666,49 @@ LanguageTag::ImplPtr LanguageTag::registerImpl() const
 // methods as they may create temporary LanguageTag instances. Only
 // LanguageTagImpl::convertToBcp47(Locale) is ok.
 
+ImplPtr pImpl;
+
 #if OSL_DEBUG_LEVEL  0
-static size_t nAccesses = 0;
-++nAccesses;
-SAL_INFO( i18nlangtag, LanguageTagImpl::registerImpl:   nAccesses  
 calls);
+static size_t nCalls = 0;
+++nCalls;
+SAL_INFO( i18nlangtag, LanguageTag::registerImpl:   nCalls   
calls);
 #endif
 
-ImplPtr pImpl;
+// Do not register unresolved system locale, also force LangID if system
+// and take the system locale shortcut if possible.
+if (mbSystemLocale)
+{
+pImpl = theSystemLocale::get();
+if (pImpl)
+{
+#if OSL_DEBUG_LEVEL  0
+static size_t nCallsSystem = 0;
+++nCallsSystem;
+SAL_INFO( i18nlangtag, LanguageTag::registerImpl:   
nCallsSystem   system calls);
+#endif
+return pImpl;
+}
+if (!mbInitializedLangID)
+{
+mnLangID = MsLangId::getRealLanguage( LANGUAGE_SYSTEM);
+mbInitializedLangID = (mnLangID != LANGUAGE_SYSTEM);
+SAL_WARN_IF( !mbInitializedLangID, i18nlangtag, 
LanguageTag::registerImpl: can't resolve system!);
+}
+}
 
-// Do not register unresolved system locale, also force LangID if system.
-if (mbSystemLocale  !mbInitializedLangID)
+if (mbInitializedLangID)
 {
-mnLangID = MsLangId::getRealLanguage( LANGUAGE_SYSTEM);
-mbInitializedLangID = true;
+// A great share are calls for a system equal locale.
+pImpl = theSystemLocale::get();
+if (pImpl  pImpl-mnLangID == mnLangID)
+{
+#if OSL_DEBUG_LEVEL  0
+static size_t nCallsSystemEqual = 0;
+++nCallsSystemEqual;
+SAL_INFO( i18nlangtag, LanguageTag::registerImpl:   
nCallsSystemEqual   system equal LangID calls);
+#endif
+return pImpl;
+}
 }
 
 // Force Bcp47 if not LangID.
@@ -687,6 +718,27 @@ LanguageTag::ImplPtr LanguageTag::registerImpl() const
 mbInitializedBcp47 = !maBcp47.isEmpty();
 }
 
+if (mbInitializedBcp47)
+{
+// A great share are calls for a system equal locale.
+pImpl = theSystemLocale::get();
+if (pImpl  pImpl-maBcp47 == maBcp47)
+{
+#if OSL_DEBUG_LEVEL  0
+static size_t nCallsSystemEqual = 0;
+++nCallsSystemEqual;
+SAL_INFO( i18nlangtag, LanguageTag::registerImpl:   
nCallsSystemEqual   system equal BCP47 calls);
+#endif
+return pImpl;
+}
+}
+
+#if OSL_DEBUG_LEVEL  0
+static size_t nCallsNonSystem = 0;
+++nCallsNonSystem;
+SAL_INFO( i18nlangtag, LanguageTag::registerImpl:   nCallsNonSystem 
  non-system calls);
+#endif
+
 osl::MutexGuard aGuard( theMutex::get());
 
 #if OSL_DEBUG_LEVEL  0
@@ -820,12 +872,27 @@ LanguageTag::ImplPtr LanguageTag::registerImpl() const
 if (!rDontKnow)
 rDontKnow.reset( new LanguageTagImpl( *this));
 pImpl = rDontKnow;
+#if OSL_DEBUG_LEVEL  0
+static size_t nCallsDontKnow = 0;
+++nCallsDontKnow;
+SAL_INFO( i18nlangtag, LanguageTag::registerImpl:   
nCallsDontKnow   DontKnow calls);
+#endif
 }
 else
 {
 SAL_WARN( i18nlangtag, LanguageTag::registerImpl: can't register 
for 0x  ::std::hex  mnLangID );
 pImpl.reset( new LanguageTagImpl( *this));
 }
+
+// If we reach here for mbSystemLocale we didn't have theSystemLocale
+// above, so add it.
+if (mbSystemLocale  mbInitializedLangID)
+{
+theSystemLocale::get() = pImpl;
+SAL_INFO( i18nlangtag, LanguageTag::registerImpl: added system 
locale 0x
+ ::std::hex  pImpl-mnLangID   '  pImpl-maBcp47  
');
+}
+
 return 

[Libreoffice-commits] core.git: editeng/qa editeng/source include/editeng sw/source

2013-09-21 Thread Eike Rathke
 editeng/qa/unit/core-test.cxx   |3 
 editeng/source/editeng/edtspell.cxx |5 -
 editeng/source/misc/svxacorr.cxx|  158 +---
 include/editeng/svxacorr.hxx|   12 +-
 sw/source/core/edit/acorrect.cxx|5 -
 5 files changed, 107 insertions(+), 76 deletions(-)

New commits:
commit a641bbff59cdd55cfc9757e6a43e732a3c8867be
Author: Eike Rathke er...@redhat.com
Date:   Sat Sep 21 15:20:49 2013 +0200

map autocorrection files with LanguageTag key

... as several tags (i.e. renamed) may map to the same LangID.

Change-Id: I8202b18ea0dc8034522017be59bb104b3d06c0f4

diff --git a/editeng/qa/unit/core-test.cxx b/editeng/qa/unit/core-test.cxx
index 57c62c3..d0437f4 100644
--- a/editeng/qa/unit/core-test.cxx
+++ b/editeng/qa/unit/core-test.cxx
@@ -281,8 +281,9 @@ private:
 if (m_rText.isEmpty())
 return false;
 
+LanguageTag aLanguageTag( m_eLang);
 const SvxAutocorrWord* pFnd = rACorrect.SearchWordsInList(
-m_rText, rSttPos, nEndPos, *this, m_eLang);
+m_rText, rSttPos, nEndPos, *this, aLanguageTag);
 if (pFnd  pFnd-IsTextOnly())
 {
 m_rText = m_rText.replaceAt(rSttPos, nEndPos, pFnd-GetLong());
diff --git a/editeng/source/editeng/edtspell.cxx 
b/editeng/source/editeng/edtspell.cxx
index 6787981..f9eb356 100644
--- a/editeng/source/editeng/edtspell.cxx
+++ b/editeng/source/editeng/edtspell.cxx
@@ -741,8 +741,9 @@ bool EdtAutoCorrDoc::ChgAutoCorrWord( sal_Int32 rSttPos,
 if( aShort.isEmpty() )
 return bRet;
 
-LanguageType eLang = mpEditEngine-GetLanguage( EditPaM( pCurNode, 
rSttPos+1 ) );
-const SvxAutocorrWord* pFnd = 
rACorrect.SearchWordsInList(pCurNode-GetString(), rSttPos, nEndPos, *this, 
eLang);
+LanguageTag aLanguageTag( mpEditEngine-GetLanguage( EditPaM( pCurNode, 
rSttPos+1 ) ));
+const SvxAutocorrWord* pFnd = rACorrect.SearchWordsInList(
+pCurNode-GetString(), rSttPos, nEndPos, *this, aLanguageTag);
 if( pFnd  pFnd-IsTextOnly() )
 {
 // then replace
diff --git a/editeng/source/misc/svxacorr.cxx b/editeng/source/misc/svxacorr.cxx
index 14d3de7..1c65aea 100644
--- a/editeng/source/misc/svxacorr.cxx
+++ b/editeng/source/misc/svxacorr.cxx
@@ -223,7 +223,7 @@ static CollatorWrapper GetCollatorWrapper()
 return aCollWrp;
 }
 
-static void lcl_ClearTable(boost::ptr_mapLanguageType, 
SvxAutoCorrectLanguageLists rLangTable)
+static void lcl_ClearTable(boost::ptr_mapLanguageTag, 
SvxAutoCorrectLanguageLists rLangTable)
 {
 rLangTable.clear();
 }
@@ -282,7 +282,7 @@ SvxAutoCorrect::SvxAutoCorrect( const OUString 
rShareAutocorrFile,
 const OUString rUserAutocorrFile )
 : sShareAutoCorrFile( rShareAutocorrFile ),
 sUserAutoCorrFile( rUserAutocorrFile ),
-pLangTable( new boost::ptr_mapLanguageType, SvxAutoCorrectLanguageLists 
),
+pLangTable( new boost::ptr_mapLanguageTag, SvxAutoCorrectLanguageLists ),
 pCharClass( 0 ), bRunNext( false ),
 cStartDQuote( 0 ), cEndDQuote( 0 ), cStartSQuote( 0 ), cEndSQuote( 0 )
 {
@@ -298,7 +298,7 @@ SvxAutoCorrect::SvxAutoCorrect( const SvxAutoCorrect rCpy )
 
 aSwFlags( rCpy.aSwFlags ),
 
-pLangTable( new boost::ptr_mapLanguageType, SvxAutoCorrectLanguageLists 
),
+pLangTable( new boost::ptr_mapLanguageTag, SvxAutoCorrectLanguageLists ),
 pCharClass( 0 ), bRunNext( false ),
 
 nFlags( rCpy.nFlags  ~(ChgWordLstLoad|CplSttLstLoad|WrdSttLstLoad)),
@@ -319,7 +319,7 @@ SvxAutoCorrect::~SvxAutoCorrect()
 void SvxAutoCorrect::_GetCharClass( LanguageType eLang )
 {
 delete pCharClass;
-pCharClass = new CharClass( LanguageTag( eLang ));
+pCharClass = new CharClass( LanguageTag( eLang));
 eCharClassLang = eLang;
 }
 
@@ -1441,14 +1441,15 @@ SvxAutoCorrect::DoAutoCorrect( SvxAutoCorrDoc rDoc, 
const OUString rTxt,
 SvxAutoCorrectLanguageLists SvxAutoCorrect::_GetLanguageList(
 LanguageType eLang )
 {
-if(pLangTable-find(eLang) == pLangTable-end())
-CreateLanguageFile(eLang, sal_True);
-return *(pLangTable-find(eLang)-second);
+LanguageTag aLanguageTag( eLang);
+if(pLangTable-find(aLanguageTag) == pLangTable-end())
+CreateLanguageFile(aLanguageTag, sal_True);
+return *(pLangTable-find(aLanguageTag)-second);
 }
 
 void SvxAutoCorrect::SaveCplSttExceptList( LanguageType eLang )
 {
-boost::ptr_mapLanguageType, SvxAutoCorrectLanguageLists::iterator 
nTmpVal = pLangTable-find(eLang);
+boost::ptr_mapLanguageTag, SvxAutoCorrectLanguageLists::iterator nTmpVal 
= pLangTable-find(LanguageTag(eLang));
 if(nTmpVal != pLangTable-end()  nTmpVal-second)
 nTmpVal-second-SaveCplSttExceptList();
 #ifdef DBG_UTIL
@@ -1461,7 +1462,7 @@ void SvxAutoCorrect::SaveCplSttExceptList( LanguageType 
eLang )
 
 void SvxAutoCorrect::SaveWrdSttExceptList(LanguageType eLang)
 {
-

[Libreoffice-commits] libvisio.git: src/lib

2013-09-21 Thread David Tardon
 src/lib/VSDXTheme.cpp |   29 +
 src/lib/VSDXTheme.h   |4 
 2 files changed, 33 insertions(+)

New commits:
commit 1cd13d6b94c8cc432cce2d2811a79bfe58d57275
Author: David Tardon dtar...@redhat.com
Date:   Sat Sep 21 16:23:38 2013 +0200

WaE: ... should be initialized in the member init. list

Change-Id: I6c0d63b47f361b030481f58a6788b2ff4b0ee5be

diff --git a/src/lib/VSDXTheme.cpp b/src/lib/VSDXTheme.cpp
index 97be35d..8ea6cf6 100644
--- a/src/lib/VSDXTheme.cpp
+++ b/src/lib/VSDXTheme.cpp
@@ -31,7 +31,36 @@
 #include VSDXMLTokenMap.h
 #include libvisio_utils.h
 
+libvisio::VSDXVariationClrScheme::VSDXVariationClrScheme()
+  : m_varColor1()
+  , m_varColor2()
+  , m_varColor3()
+  , m_varColor4()
+  , m_varColor5()
+  , m_varColor6()
+  , m_varColor7()
+{
+}
+
+libvisio::VSDXClrScheme::VSDXClrScheme()
+  : m_dk1()
+  , m_lt1()
+  , m_dk2()
+  , m_lt2()
+  , m_accent1()
+  , m_accent2()
+  , m_accent3()
+  , m_accent4()
+  , m_accent5()
+  , m_accent6()
+  , m_hlink()
+  , m_folHlink()
+  , m_variationClrSchemeLst()
+{
+}
+
 libvisio::VSDXTheme::VSDXTheme()
+  : m_clrScheme()
 {
 }
 
diff --git a/src/lib/VSDXTheme.h b/src/lib/VSDXTheme.h
index bb8b7e9..15d152f 100644
--- a/src/lib/VSDXTheme.h
+++ b/src/lib/VSDXTheme.h
@@ -49,6 +49,8 @@ struct VSDXVariationClrScheme
   Colour m_varColor5;
   Colour m_varColor6;
   Colour m_varColor7;
+
+  VSDXVariationClrScheme();
 };
 
 struct VSDXClrScheme
@@ -66,6 +68,8 @@ struct VSDXClrScheme
   Colour m_hlink;
   Colour m_folHlink;
   std::vectorVSDXVariationClrScheme m_variationClrSchemeLst;
+
+  VSDXClrScheme();
 };
 
 class VSDXTheme
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [Libreoffice-qa] minutes of ESC call ...

2013-09-21 Thread Cor Nouws

Hi Michael,

Michael Meeks wrote (19-09-13 17:16)


* Completed Action Items
 [...]
 + come up with a proposal on what still needs improving in sidebar land 
(Cor)
 [ in discussion on the list ]


I missed that it was set as an AI, but OK ;)
However, when it ís there... I would rather keep it open on the to do 
list, and only mark it completed when there is a (more or less) 
comprehensive proposal.



The same applies for the topic Template Manager: where there was an AI 
for designs. That AI was marked as Completed at the moment that there 
was just the fist step in the process. But the whole task is still 
stalled and incomplete..


[from previous thread]
Cor Nouws wrote (22-05-13 23:30)

Michael Meeks wrote (16-05-13 17:25)

* Pending Action Items



 + need design for copying styles between templates (Astron/UX)
 + either in that dialog or a new dialog
 + also issue with only editing templates that are in
the mgr


FYI: there is some work on this:

http://www.mail-archive.com/libreoffice-ux-advise@lists.freedesktop.org/msg01658.html
+ responses!
  (and this split thread

http://www.mail-archive.com/libreoffice-ux-advise@lists.freedesktop.org/msg01663.html
)

State as per now:
  - one issue (editing templates) looks solved
  - ideas for second (copying styles) looks promising
(but code difficulties for 'copying' what works in sw to sc may be
there ;) )
  - input for third (visibility of various) still welcome



Cheers,
Cor

--
 - Cor Nouws
 - http://nl.libreoffice.org
 - The Document Foundation Membership Committee Member
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


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

2013-09-21 Thread Eike Rathke
 i18nlangtag/source/languagetag/languagetag.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f814795ac9e90414a00bdff754f9dd7810382e63
Author: Eike Rathke er...@redhat.com
Date:   Sat Sep 21 17:23:04 2013 +0200

default ctor LangID acutally is initialized

So make registerImpl() use theDontKnow instead of creating temporary
instances.

Change-Id: Ibd10a80da5dd4355c33cf525b21158ec56a1360e

diff --git a/i18nlangtag/source/languagetag/languagetag.cxx 
b/i18nlangtag/source/languagetag/languagetag.cxx
index 9ad4155..a194f4f 100644
--- a/i18nlangtag/source/languagetag/languagetag.cxx
+++ b/i18nlangtag/source/languagetag/languagetag.cxx
@@ -499,7 +499,7 @@ LanguageTag::LanguageTag()
 mbSystemLocale( false),
 mbInitializedBcp47( false),
 mbInitializedLocale( false),
-mbInitializedLangID( false),
+mbInitializedLangID( true),
 mbIsFallback( false)
 {
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: include/sfx2 sfx2/source

2013-09-21 Thread Michael Stahl
 include/sfx2/app.hxx   |6 ++
 include/sfx2/sidebar/Theme.hxx |6 +++---
 sfx2/source/appl/app.cxx   |   11 +++
 sfx2/source/appl/appdata.cxx   |1 +
 sfx2/source/inc/appdata.hxx|6 +-
 sfx2/source/sidebar/Theme.cxx  |   19 ---
 6 files changed, 30 insertions(+), 19 deletions(-)

New commits:
commit ca0169340c94adc791061e3fb098fa656f22a8c5
Author: Michael Stahl mst...@redhat.com
Date:   Sat Sep 21 18:01:36 2013 +0200

sfx2: fix sfx2::sidebar::Theme lifecycle

It's a horrible idea to have global VCL Images, since that will
inevitably crash on shutdown when the static dtor runs after
DeInitVCL, which breaks ~every JunitTest now.

0x2af6750d2d51 in rtl::Referencesfx2::sidebar::Theme::~Reference 
(this=0x2af6756ceb28 sfx2::sidebar::Theme::mpInstance, __in_chrg=optimized 
out)

Try to fix that by moving the global sidebar::Theme instance to
SfxApplication where it can hopefully be deleted before shutdown.

Change-Id: Ia78f1e458699335b53a741b6463ce48af69584a7

diff --git a/include/sfx2/app.hxx b/include/sfx2/app.hxx
index f8361f2..d24b40a 100644
--- a/include/sfx2/app.hxx
+++ b/include/sfx2/app.hxx
@@ -94,6 +94,9 @@ typedef ::std::vector SfxMedium*  SfxMediumList;
 namespace sfx2
 {
 class SvLinkSource;
+namespace sidebar {
+class Theme;
+}
 }
 
 //
@@ -260,6 +263,9 @@ public:
 
 /** loads the application logo as used in the impress slideshow pause 
screen */
 static BitmapEx GetApplicationLogo(long nWidth);
+
+/** this Theme contains Images so must be deleted before DeInitVCL */
+sfx2::sidebar::Theme  GetSidebarTheme();
 };
 
 #define SFX_APP() SfxGetpApp()
diff --git a/include/sfx2/sidebar/Theme.hxx b/include/sfx2/sidebar/Theme.hxx
index ae1e6a6..098b63d 100644
--- a/include/sfx2/sidebar/Theme.hxx
+++ b/include/sfx2/sidebar/Theme.hxx
@@ -154,6 +154,8 @@ public:
 
 static void HandleDataChange (void);
 
+void InitializeTheme();
+
 Theme (void);
 virtual ~Theme (void);
 
@@ -208,8 +210,7 @@ public:
 throw(cssu::RuntimeException);
 
 private:
-static ::rtl::ReferenceTheme mpInstance;
-static Theme GetCurrentTheme (void);
+static Theme GetCurrentTheme();
 
 ::std::vectorImage maImages;
 ::std::vectorColor maColors;
@@ -246,7 +247,6 @@ private:
 };
 
 void SetupPropertyMaps (void);
-void InitializeTheme (void);
 void UpdateTheme (void);
 static PropertyType GetPropertyType (const ThemeItem eItem);
 static cssu::Type GetCppuType (const PropertyType eType);
diff --git a/sfx2/source/appl/app.cxx b/sfx2/source/appl/app.cxx
index c668842..fb84391 100644
--- a/sfx2/source/appl/app.cxx
+++ b/sfx2/source/appl/app.cxx
@@ -88,6 +88,7 @@
 #include sfx2/event.hxx
 #include imestatuswindow.hxx
 #include workwin.hxx
+#include sfx2/sidebar/Theme.hxx
 #include sfx2/tbxctrl.hxx
 #include sfx2/sfxdlg.hxx
 #include sfx2/stbitem.hxx
@@ -636,4 +637,14 @@ ErrCode SfxApplication::CallBasic( const OUString rCode, 
BasicManager* pMgr, Sb
 #endif
 }
 
+sfx2::sidebar::Theme  SfxApplication::GetSidebarTheme()
+{
+if (!pAppData_Impl-m_pSidebarTheme.is())
+{
+pAppData_Impl-m_pSidebarTheme.set(new sfx2::sidebar::Theme);
+pAppData_Impl-m_pSidebarTheme-InitializeTheme();
+}
+return *pAppData_Impl-m_pSidebarTheme;
+}
+
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sfx2/source/appl/appdata.cxx b/sfx2/source/appl/appdata.cxx
index a2c79ca..d031fbc 100644
--- a/sfx2/source/appl/appdata.cxx
+++ b/sfx2/source/appl/appdata.cxx
@@ -38,6 +38,7 @@
 #include sfx2/docfac.hxx
 #include sfx2/docfile.hxx
 #include sfx2/request.hxx
+#include sfx2/sidebar/Theme.hxx
 #include referers.hxx
 #include app.hrc
 #include sfx2/sfxresid.hxx
diff --git a/sfx2/source/inc/appdata.hxx b/sfx2/source/inc/appdata.hxx
index 00bf7b4..cdd6680 100644
--- a/sfx2/source/inc/appdata.hxx
+++ b/sfx2/source/inc/appdata.hxx
@@ -62,7 +62,10 @@ class BasicManager;
 class SfxBasicManagerHolder;
 class SfxBasicManagerCreationListener;
 
-namespace sfx2 { namespace appl { class ImeStatusWindow; } }
+namespace sfx2 {
+namespace appl { class ImeStatusWindow; }
+namespace sidebar { class Theme; }
+}
 
 typedef Link* LinkPtr;
 
@@ -130,6 +133,7 @@ public:
 SfxSlotPool*pSlotPool;
 SfxDispatcher*  pAppDispat; // Dispatcher if no document
 SfxInterface**  pInterfaces;
+::rtl::Referencesfx2::sidebar::Theme m_pSidebarTheme;
 
 sal_uInt16  nDocNo; // current Doc-Number 
(AutoName)
 sal_uInt16  nInterfaces;
diff --git a/sfx2/source/sidebar/Theme.cxx b/sfx2/source/sidebar/Theme.cxx
index d6d95d7..bd191bb 100644
--- a/sfx2/source/sidebar/Theme.cxx
+++ b/sfx2/source/sidebar/Theme.cxx
@@ -20,6 +20,7 @@
 #include Paint.hxx
 #include SidebarResource.hxx
 

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

2013-09-21 Thread Harri Pitkänen
 sw/source/ui/chrdlg/pardlg.cxx |   11 +++
 1 file changed, 3 insertions(+), 8 deletions(-)

New commits:
commit 745f594556f690b57918bc32579157acc5598336
Author: Harri Pitkänen hatap...@iki.fi
Date:   Sat Sep 21 11:01:56 2013 +0300

Enable Drop Caps for Firefox HTML compatibility mode

Drop Caps tab was disabled in paragraph options when Firefox was
selected in HTML compatibility options and Writer was in HTML
editor mode. There is no need to do that. Firefox and all modern
browsers will display drop caps correctly if they are exported
from LibreOffice.

Change-Id: I9ee0d9647b8e8ed7c57c4b08dc4995ef1b8f91f3
Reviewed-on: https://gerrit.libreoffice.org/6013
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com

diff --git a/sw/source/ui/chrdlg/pardlg.cxx b/sw/source/ui/chrdlg/pardlg.cxx
index 3106894..a964eb0 100644
--- a/sw/source/ui/chrdlg/pardlg.cxx
+++ b/sw/source/ui/chrdlg/pardlg.cxx
@@ -134,14 +134,9 @@ SwParaDlg::SwParaDlg(Window *pParent,
 m_nParaNumPara = AddTabPage(labelTP_NUMPARA, 
SwParagraphNumTabPage::Create, SwParagraphNumTabPage::GetRanges);
 else
 RemoveTabPage(labelTP_NUMPARA);
-if(!bHtmlMode || (nHtmlMode  HTMLMODE_FULL_STYLES))
-{
-m_nParaDrpCps = AddTabPage(labelTP_DROPCAPS,  
SwDropCapsPage::Create, SwDropCapsPage::GetRanges);
-}
-else
-{
-RemoveTabPage(labelTP_DROPCAPS);
-}
+
+m_nParaDrpCps = AddTabPage(labelTP_DROPCAPS,  
SwDropCapsPage::Create, SwDropCapsPage::GetRanges);
+
 if(!bHtmlMode || (nHtmlMode  
(HTMLMODE_SOME_STYLES|HTMLMODE_FULL_STYLES)))
 {
 OSL_ENSURE(pFact-GetTabPageCreatorFunc( RID_SVXPAGE_BACKGROUND ), 
GetTabPageCreatorFunc fail!);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2013-09-21 Thread Eike Rathke
 i18nlangtag/source/languagetag/languagetag.cxx |   50 +
 1 file changed, 27 insertions(+), 23 deletions(-)

New commits:
commit 3acc0cc1e527d3389c329d36744da76b10c83be6
Author: Eike Rathke er...@redhat.com
Date:   Sat Sep 21 19:54:05 2013 +0200

moved LANGUAGE_DONTKNOW impl detection up

Change-Id: Iba2c7f03420a709c5ee6338c1504b1133a8cb643

diff --git a/i18nlangtag/source/languagetag/languagetag.cxx 
b/i18nlangtag/source/languagetag/languagetag.cxx
index a194f4f..03c4e05 100644
--- a/i18nlangtag/source/languagetag/languagetag.cxx
+++ b/i18nlangtag/source/languagetag/languagetag.cxx
@@ -698,17 +698,37 @@ LanguageTag::ImplPtr LanguageTag::registerImpl() const
 
 if (mbInitializedLangID)
 {
-// A great share are calls for a system equal locale.
-pImpl = theSystemLocale::get();
-if (pImpl  pImpl-mnLangID == mnLangID)
+if (mnLangID == LANGUAGE_DONTKNOW)
 {
+// Heavy usage of LANGUAGE_DONTKNOW, make it an own Impl for all 
the
+// conversion attempts. At the same time provide a central 
breakpoint
+// to inspect such places.
+LanguageTag::ImplPtr rDontKnow = theDontKnow::get();
+if (!rDontKnow)
+rDontKnow.reset( new LanguageTagImpl( *this));
+pImpl = rDontKnow;
 #if OSL_DEBUG_LEVEL  0
-static size_t nCallsSystemEqual = 0;
-++nCallsSystemEqual;
-SAL_INFO( i18nlangtag, LanguageTag::registerImpl:   
nCallsSystemEqual   system equal LangID calls);
+static size_t nCallsDontKnow = 0;
+++nCallsDontKnow;
+SAL_INFO( i18nlangtag, LanguageTag::registerImpl:   
nCallsDontKnow   DontKnow calls);
 #endif
 return pImpl;
 }
+else
+{
+// A great share are calls for a system equal locale.
+pImpl = theSystemLocale::get();
+if (pImpl  pImpl-mnLangID == mnLangID)
+{
+#if OSL_DEBUG_LEVEL  0
+static size_t nCallsSystemEqual = 0;
+++nCallsSystemEqual;
+SAL_INFO( i18nlangtag, LanguageTag::registerImpl:   
nCallsSystemEqual
+  system equal LangID calls);
+#endif
+return pImpl;
+}
+}
 }
 
 // Force Bcp47 if not LangID.
@@ -752,8 +772,7 @@ LanguageTag::ImplPtr LanguageTag::registerImpl() const
 #endif
 
 // Prefer LangID map as find+insert needs less comparison work.
-// Never insert LANGUAGE_DONTKNOW
-if (mbInitializedLangID  mnLangID != LANGUAGE_DONTKNOW)
+if (mbInitializedLangID)
 {
 MapLangID rMap = theMapLangID::get();
 MapLangID::const_iterator it( rMap.find( mnLangID));
@@ -863,21 +882,6 @@ LanguageTag::ImplPtr LanguageTag::registerImpl() const
 }
 }
 }
-else if (mbInitializedLangID  mnLangID == LANGUAGE_DONTKNOW)
-{
-// Heavy usage of LANGUAGE_DONTKNOW, make it an own Impl for all the
-// conversion attempts. At the same time provide a central breakpoint
-// to inspect such places.
-LanguageTag::ImplPtr rDontKnow = theDontKnow::get();
-if (!rDontKnow)
-rDontKnow.reset( new LanguageTagImpl( *this));
-pImpl = rDontKnow;
-#if OSL_DEBUG_LEVEL  0
-static size_t nCallsDontKnow = 0;
-++nCallsDontKnow;
-SAL_INFO( i18nlangtag, LanguageTag::registerImpl:   
nCallsDontKnow   DontKnow calls);
-#endif
-}
 else
 {
 SAL_WARN( i18nlangtag, LanguageTag::registerImpl: can't register 
for 0x  ::std::hex  mnLangID );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] dev-tools.git: 4 commits - prettyprint/formatrtf prettyprint/formatxml.cpp prettyprint/Makefile prettyprint/prettyprint

2013-09-21 Thread Miklos Vajna
 prettyprint/Makefile  |2 
 prettyprint/formatrtf |   60 ++
 prettyprint/formatxml.cpp |  263 ++
 prettyprint/prettyprint   |   19 +++
 4 files changed, 344 insertions(+)

New commits:
commit 9c7dbe3d46107225f35097fbfa5edc08f69f070b
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sat Sep 21 20:26:12 2013 +0200

prettyprint: add shell wrapper that invokes the right sub-tool

Change-Id: Ifa52d88697fe87b42f31c5878e1a68c6d36b5935

diff --git a/prettyprint/prettyprint b/prettyprint/prettyprint
new file mode 100755
index 000..0f3e698
--- /dev/null
+++ b/prettyprint/prettyprint
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+file=$(mktemp)
+cat  $file
+kind=$(file -i $file |sed 's/.*: \(.*\); .*/\1/')
+
+mydir=$(dirname $0)
+[ -h $0 ]  mydir=$(dirname $(readlink $0))
+
+if [ $kind == text/rtf ]; then
+   $mydir/formatrtf $file
+elif [ $kind == application/xml ]; then
+   #xmllint --format --recover $file 2/dev/null
+   $mydir/formatxml $file
+else
+   echo unknown type: $kind
+fi
+
+rm -f $file
commit 9d8b7bea29769971db1f7f02de85855186aa866d
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sat Sep 21 20:20:54 2013 +0200

prettyprint: add formatrtf tool

This was hosted as

http://cgit.freedesktop.org/~vmiklos/lo-test-files/plain/writer/prettyprint.py
previously.

Change-Id: I97c28caf71d65b0b03bfacb36644e34af599afb4

diff --git a/prettyprint/formatrtf b/prettyprint/formatrtf
new file mode 100755
index 000..95e2efe
--- /dev/null
+++ b/prettyprint/formatrtf
@@ -0,0 +1,60 @@
+#!/usr/bin/env python
+
+import sys, getopt
+
+def usage(code):
+   print(Usage: %s [-i|--inline] input.rtf % sys.argv[0])
+   print()
+   print(The pretty-printer acts as a filter: it just inserts newlines\n 
+ \
+   around '{' and '}' characters for better readability.\n\n + \
+   The -i switch makes the filter in-place, instead of just\n + \
+   reading the input and outputting the result to stdout.)
+   sys.exit(code)
+
+# opt parsing
+inline = False
+argv = sys.argv[1:]
+try:
+   opts, args = getopt.getopt(argv, i, [inline])
+except getopt.GetoptError:
+   usage(1)
+optind = 0
+for opt, arg in opts:
+   if opt in (-i, --inline):
+   inline = True
+   optind += 1
+
+if optind  len(argv):
+   input = argv[optind]
+else:
+   usage(0)
+
+sock = open(input)
+
+out = []
+
+while True:
+   char = sock.read(1)
+   after = None
+   if not len(char):
+   break
+   if ord(char) == 0x0d:
+   continue
+   if char == { and len(out) and out[-1][-1] not in (\n, \\):
+   out.append(\n)
+   elif char == } and out[-1][-1] != \\:
+   after = \n
+   if char == \n and len(out) and out[-1][-1] == \n:
+   pass
+   else:
+   out.append(char)
+   if after:
+   out.append(after)
+
+if not inline:
+   sys.stdout.write(.join(out))
+else:
+   sock.close()
+   sock = open(input, w)
+   sock.write(.join(out))
+   sock.close()
commit 3bf9eb695d48a64624c0e47fc70cbc9610e69c19
Author: Miklos Vajna vmik...@suse.cz
Date:   Wed Nov 14 15:20:51 2012 +0100

formatxml: always write to stdout

diff --git a/prettyprint/Makefile b/prettyprint/Makefile
new file mode 100644
index 000..04cbd23
--- /dev/null
+++ b/prettyprint/Makefile
@@ -0,0 +1,2 @@
+formatxml: formatxml.cpp
+   g++ -Wall -I/usr/include/QtCore -I/usr/include formatxml.cpp -lQtCore 
-L/usr/lib -o formatxml
diff --git a/prettyprint/formatxml.cpp b/prettyprint/formatxml.cpp
index d514d94..938cc32 100644
--- a/prettyprint/formatxml.cpp
+++ b/prettyprint/formatxml.cpp
@@ -255,18 +255,7 @@ int main( int argc, char* argv[] )
 }
 QTextStream in( fin );
 QFile fout;
-if( !isatty( 1 ))
-fout.open( stdout, QIODevice::WriteOnly );
-else
-{
-QString fname( QString( argv[ 1 ] ) + .format.xml );
-fout.setFileName( fname );
-if( !fout.open( QIODevice::WriteOnly ))
-{
-QTextStream( stderr )  Cannot write to   fname  endl;
-return 4;
-}
-}
+fout.open( stdout, QIODevice::WriteOnly );
 QTextStream out( fout );
 in.setCodec( UTF-8 );
 out.setCodec( UTF-8 );
commit e403bd8ceb1b058a1176b5f169e083a884b20d2d
Author: Miklos Vajna vmik...@suse.cz
Date:   Wed Nov 14 15:18:59 2012 +0100

add Lubos' formatxml that fails to build ATM

diff --git a/prettyprint/formatxml.cpp b/prettyprint/formatxml.cpp
new file mode 100644
index 000..d514d94
--- /dev/null
+++ b/prettyprint/formatxml.cpp
@@ -0,0 +1,274 @@
+/*
+
+Copyright (C) 2010 Lubos Lunak l.lu...@suse.cz
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the 

[Libreoffice-commits] core.git: Branch 'feature/instdirlinktargets' - 2 commits - solenv/gbuild sw/Module_sw.mk unotest/source

2013-09-21 Thread Michael Stahl
Rebased ref, commits from common ancestor:
commit e88bfee12219d8f5ccfd500f06dc2d4eb92730f6
Author: Michael Stahl mst...@redhat.com
Date:   Sat Sep 21 14:25:39 2013 +0200

make the PythonTest run on WNT

- fix the PATH
- file url needs to start with file:///X:/ (three slashes, literal :)

Change-Id: I0d16d1e946fd06ba5523961c23c3b46872c0c050

diff --git a/solenv/gbuild/platform/com_MSC_class.mk 
b/solenv/gbuild/platform/com_MSC_class.mk
index 73f4a23..187bc31 100644
--- a/solenv/gbuild/platform/com_MSC_class.mk
+++ b/solenv/gbuild/platform/com_MSC_class.mk
@@ -440,7 +440,7 @@ endef
 
 # PythonTest class
 
-gb_PythonTest_PRECOMMAND := 
$(gb_Helper_LIBRARY_PATH_VAR)=$${$(gb_Helper_LIBRARY_PATH_VAR):+$$$(gb_Helper_LIBRARY_PATH_VAR):}$(gb_DEVINSTALLROOT)/URE/bin:$(gb_DEVINSTALLROOT)/program:$(OUTDIR)/bin
+gb_PythonTest_PRECOMMAND := $(gb_Helper_set_ld_path)
 
 # SrsPartTarget class
 
diff --git a/sw/Module_sw.mk b/sw/Module_sw.mk
index 202c67c..7048d8e 100644
--- a/sw/Module_sw.mk
+++ b/sw/Module_sw.mk
@@ -72,11 +72,9 @@ $(eval $(call gb_Module_add_subsequentcheck_targets,sw,\
 endif
 
 ifneq ($(DISABLE_PYTHON),TRUE)
-ifneq ($(OS),WNT)
 $(eval $(call gb_Module_add_subsequentcheck_targets,sw,\
PythonTest_sw_python \
 ))
 endif
-endif
 
 # vim: set noet sw=4 ts=4:
diff --git a/unotest/source/python/org/libreoffice/unotest.py 
b/unotest/source/python/org/libreoffice/unotest.py
index 883d3a4..3da77ff 100644
--- a/unotest/source/python/org/libreoffice/unotest.py
+++ b/unotest/source/python/org/libreoffice/unotest.py
@@ -193,7 +193,11 @@ class UnoInProcess:
 props = [(Hidden, True), (ReadOnly, False), (AsTemplate, True)]
 loadProps = tuple([mkPropertyValue(name, value) for (name, value) in 
props])
 path = os.getenv(TDOC)
-url = file:// + quote(path) + / + quote(file)
+if os.name == nt:
+# do not quote drive letter - it must be X:
+url = file:/// + path + / + quote(file)
+else:
+url = file:// + quote(path) + / + quote(file)
 self.xDoc = desktop.loadComponentFromURL(url, _blank, 0, loadProps)
 assert(self.xDoc)
 return self.xDoc
commit 48e7fbe828562cfd0a6b27a044a2ddaf6355756b
Author: Michael Stahl mst...@redhat.com
Date:   Sat Sep 21 11:55:51 2013 +0200

gbuild: clean up naming of PDB files for MSVC

There are 2 of these, one is written to by cl.exe and read by link.exe
and the second one written by link.exe.  Name the second one as the
linktargetname with .pdb appended, no need to substitue 5 different
crazy suffixes.

Change-Id: I2decad898ed1292b069bdda3124ce6f6c3667108

diff --git a/solenv/gbuild/platform/com_MSC_class.mk 
b/solenv/gbuild/platform/com_MSC_class.mk
index fda55f6..73f4a23 100644
--- a/solenv/gbuild/platform/com_MSC_class.mk
+++ b/solenv/gbuild/platform/com_MSC_class.mk
@@ -136,13 +136,12 @@ gb_LinkTarget_INCLUDE :=\
$(foreach inc,$(subst ;, ,$(JDKINC)),-I$(inc)) \
-I$(BUILDDIR)/config_$(gb_Side) \
 
-gb_LinkTarget_get_pdbfile = \
- $(WORKDIR)/LinkTarget/pdb/$(call 
gb_LinkTarget__get_workdir_linktargetname,$(1)).pdb
-# substitute .pyd here because pyuno has to follow python's crazy conventions
-gb_LinkTarget_get_pdbfile2 = \
- $(WORKDIR)/LinkTarget/$(patsubst %.dll,%.pdb,$(patsubst %.pyd,%.dll,$(call 
gb_LinkTarget__get_workdir_linktargetname,$(1
+gb_LinkTarget_get_pdbfile_in = \
+ $(WORKDIR)/LinkTarget/$(call 
gb_LinkTarget__get_workdir_linktargetname,$(1)).objects.pdb
+gb_LinkTarget_get_pdbfile_out = \
+ $(WORKDIR)/LinkTarget/$(call 
gb_LinkTarget__get_workdir_linktargetname,$(1)).pdb
 gb_LinkTarget_get_ilkfile = \
- $(WORKDIR)/LinkTarget/$(patsubst %.dll,%.ilk,$(patsubst %.pyd,%.dll,$(call 
gb_LinkTarget__get_workdir_linktargetname,$(1
+ $(WORKDIR)/LinkTarget/$(call 
gb_LinkTarget__get_workdir_linktargetname,$(1)).ilk
 gb_LinkTarget_get_manifestfile = \
  $(WORKDIR)/LinkTarget/$(call 
gb_LinkTarget__get_workdir_linktargetname,$(1)).manifest
 
@@ -299,8 +298,8 @@ $(call gb_LinkTarget_set_ilibtarget,$(2),$(3))
 $(call gb_LinkTarget_add_auxtargets,$(2),\
$(patsubst %.lib,%.exp,$(3)) \
$(call gb_LinkTarget_get_manifestfile,$(2)) \
-   $(call gb_LinkTarget_get_pdbfile,$(2)) \
-   $(call gb_LinkTarget_get_pdbfile2,$(2)) \
+   $(call gb_LinkTarget_get_pdbfile_in,$(2)) \
+   $(call gb_LinkTarget_get_pdbfile_out,$(2)) \
$(call gb_LinkTarget_get_ilkfile,$(2)) \
 )
 
@@ -309,7 +308,7 @@ $(call gb_Library_add_default_nativeres,$(1),$(1)/default)
 $(call gb_Deliver_add_deliverable,$(OUTDIR)/lib/$(notdir $(3)),$(3),$(1))
 
 $(call gb_LinkTarget_get_target,$(2)) \
-$(call gb_LinkTarget_get_headers_target,$(2)) : PDBFILE = $(call 
gb_LinkTarget_get_pdbfile,$(2))
+$(call gb_LinkTarget_get_headers_target,$(2)) : PDBFILE = $(call 
gb_LinkTarget_get_pdbfile_in,$(2))
 
 endef
 
@@ -354,10 +353,10 @@ gb_StaticLibrary_PLAINEXT := .lib
 
 define gb_StaticLibrary_StaticLibrary_platform
 

[Libreoffice-commits] core.git: Branch 'feature/instdirlinktargets' - 3 commits - solenv/gbuild sw/Module_sw.mk unotest/source

2013-09-21 Thread Michael Stahl
Rebased ref, commits from common ancestor:
commit e6c20482a69934cdd3e77a61f4a71869da88727c
Author: Michael Stahl mst...@redhat.com
Date:   Sat Sep 21 14:25:39 2013 +0200

make the PythonTest run on WNT

- fix the PATH
- file url needs to start with file:///X:/ (three slashes, literal :)

Change-Id: I0d16d1e946fd06ba5523961c23c3b46872c0c050

diff --git a/solenv/gbuild/platform/com_MSC_class.mk 
b/solenv/gbuild/platform/com_MSC_class.mk
index beb8266..2269d33 100644
--- a/solenv/gbuild/platform/com_MSC_class.mk
+++ b/solenv/gbuild/platform/com_MSC_class.mk
@@ -439,7 +439,7 @@ endef
 
 # PythonTest class
 
-gb_PythonTest_PRECOMMAND := 
$(gb_Helper_LIBRARY_PATH_VAR)=$${$(gb_Helper_LIBRARY_PATH_VAR):+$$$(gb_Helper_LIBRARY_PATH_VAR):}$(gb_DEVINSTALLROOT)/URE/bin:$(gb_DEVINSTALLROOT)/program:$(OUTDIR)/bin
+gb_PythonTest_PRECOMMAND := $(gb_Helper_set_ld_path)
 
 # SrsPartTarget class
 
diff --git a/sw/Module_sw.mk b/sw/Module_sw.mk
index 202c67c..7048d8e 100644
--- a/sw/Module_sw.mk
+++ b/sw/Module_sw.mk
@@ -72,11 +72,9 @@ $(eval $(call gb_Module_add_subsequentcheck_targets,sw,\
 endif
 
 ifneq ($(DISABLE_PYTHON),TRUE)
-ifneq ($(OS),WNT)
 $(eval $(call gb_Module_add_subsequentcheck_targets,sw,\
PythonTest_sw_python \
 ))
 endif
-endif
 
 # vim: set noet sw=4 ts=4:
diff --git a/unotest/source/python/org/libreoffice/unotest.py 
b/unotest/source/python/org/libreoffice/unotest.py
index 883d3a4..3da77ff 100644
--- a/unotest/source/python/org/libreoffice/unotest.py
+++ b/unotest/source/python/org/libreoffice/unotest.py
@@ -193,7 +193,11 @@ class UnoInProcess:
 props = [(Hidden, True), (ReadOnly, False), (AsTemplate, True)]
 loadProps = tuple([mkPropertyValue(name, value) for (name, value) in 
props])
 path = os.getenv(TDOC)
-url = file:// + quote(path) + / + quote(file)
+if os.name == nt:
+# do not quote drive letter - it must be X:
+url = file:/// + path + / + quote(file)
+else:
+url = file:// + quote(path) + / + quote(file)
 self.xDoc = desktop.loadComponentFromURL(url, _blank, 0, loadProps)
 assert(self.xDoc)
 return self.xDoc
commit 84507ad26b70061bd1e46b5b7c458ad61ec2cd96
Author: Michael Stahl mst...@redhat.com
Date:   Sat Sep 21 22:30:23 2013 +0200

gbuild: drop mkdir -p calls from gb_LinkTarget__command

... should be obsoleted by previous commit.

Change-Id: I378de1465d293a60dc20c545770f029c8f71bd50

diff --git a/solenv/gbuild/platform/IOS_ARM_GCC.mk 
b/solenv/gbuild/platform/IOS_ARM_GCC.mk
index 57c695c..bb661b3 100644
--- a/solenv/gbuild/platform/IOS_ARM_GCC.mk
+++ b/solenv/gbuild/platform/IOS_ARM_GCC.mk
@@ -105,7 +105,6 @@ endef
 
 define gb_LinkTarget__command_dynamiclink
$(if $(filter Library CppunitTest,$(TARGETTYPE)),@echo No dynamic 
libraries should be built for iOS  exit 1, \
-   mkdir -p $(dir $(1))  \
$(if 
$(CXXOBJECTS)$(OBJCXXOBJECTS)$(GENCXXOBJECTS)$(EXTRAOBJECTLISTS),$(gb_CXX),$(gb_CC))
 \
$(gb_Executable_TARGETTYPEFLAGS) \
$(subst \d,$$,$(RPATH)) \
@@ -129,7 +128,6 @@ endef
 # parameters: 1-linktarget 2-cobjects 3-cxxobjects
 define gb_LinkTarget__command_staticlink
 $(call gb_Helper_abbreviate_dirs,\
-   mkdir -p $(dir $(1))  \
rm -f $(1)  \
$(gb_AR) -rsu $(1) \
$(foreach object,$(COBJECTS),$(call 
gb_CObject_get_target,$(object))) \
diff --git a/solenv/gbuild/platform/android.mk 
b/solenv/gbuild/platform/android.mk
index 23839b1..b3ed340 100644
--- a/solenv/gbuild/platform/android.mk
+++ b/solenv/gbuild/platform/android.mk
@@ -35,7 +35,6 @@ gb_LinkTarget_LDFLAGS += \
 
 define gb_LinkTarget__command_dynamiclink
 $(call gb_Helper_abbreviate_dirs,\
-   mkdir -p $(dir $(1))  \
$(if 
$(CXXOBJECTS)$(GENCXXOBJECTS)$(EXTRAOBJECTLISTS),$(gb_CXX),$(gb_CC)) \
-shared \
$(if $(filter Library 
CppunitTest,$(TARGETTYPE)),$(gb_Library_TARGETTYPEFLAGS)) \
@@ -110,7 +109,7 @@ gb_CppunitTest_get_filename = libtest_$(1).a
 define gb_LinkTarget__command
 $(call gb_Output_announce,$(2),$(true),LNK,4)
 $(if $(filter CppunitTest,$(TARGETTYPE)), \
-   mkdir -p $(dir $(1))  touch $(1), \
+   touch $(1), \
$(call gb_LinkTarget__command_staticlink,$(1)))
 endef
 
diff --git a/solenv/gbuild/platform/com_MSC_class.mk 
b/solenv/gbuild/platform/com_MSC_class.mk
index 73f4a23..beb8266 100644
--- a/solenv/gbuild/platform/com_MSC_class.mk
+++ b/solenv/gbuild/platform/com_MSC_class.mk
@@ -168,7 +168,6 @@ endif
 define gb_LinkTarget__command
 $(call gb_Output_announce,$(2),$(true),LNK,4)
 $(call gb_Helper_abbreviate_dirs,\
-   mkdir -p $(dir $(1))  \
rm -f $(1)  \
RESPONSEFILE=$(call var2file,$(shell $(gb_MKTEMP)),100, \
$(foreach object,$(CXXOBJECTS),$(call 
gb_CxxObject_get_target,$(object))) \
diff --git a/solenv/gbuild/platform/macosx.mk b/solenv/gbuild/platform/macosx.mk
index 

[Libreoffice-commits] core.git: instsetoo_native/inc_ooohelppack instsetoo_native/inc_openoffice instsetoo_native/inc_sdkoo

2013-09-21 Thread Andras Timar
 instsetoo_native/inc_ooohelppack/windows/msi_templates/CustomAc.idt |1 +
 instsetoo_native/inc_ooohelppack/windows/msi_templates/InstallE.idt |1 +
 instsetoo_native/inc_openoffice/windows/msi_templates/CustomAc.idt  |1 +
 instsetoo_native/inc_openoffice/windows/msi_templates/InstallE.idt  |1 +
 instsetoo_native/inc_sdkoo/windows/msi_templates/CustomAc.idt   |1 +
 instsetoo_native/inc_sdkoo/windows/msi_templates/InstallE.idt   |1 +
 6 files changed, 6 insertions(+)

New commits:
commit d5295408b1f69b8fd694dabca00e0a923c3e959f
Author: Andras Timar andras.ti...@collabora.com
Date:   Sat Sep 21 23:09:45 2013 +0200

fdo#58144 - disable the ARP 'Remove' button on Windows XP

Windows installer on Windows XP cannot display messages, when the
installer database is encoded in UTF-8 and support for CTL languages
is not installed. This patch is a workaround, it disables the 'Remove'
button in Control Panel's Add or Remove Programs applet, so the user
has to choose 'Change', and has to uninstall LibreOffice with the
Wizard, which does not exhibit the problem.

Initially this bug was not expected, when we changed the enconding
from legacy codepages to UTF-8 - I would say irreversibly.
Then the severity of the bug was underestimated, because usually
uninstallation needs no user interaction, so it does not matter,
if the text is unreadable. However, in some circumstances
uninstallation needs to reboot the computer, and the user needs
to understand the question, whether to reboot now or later.

Change-Id: I7d6b4e82cbe4142d23c29313e43a90fa43944b2f

diff --git 
a/instsetoo_native/inc_ooohelppack/windows/msi_templates/CustomAc.idt 
b/instsetoo_native/inc_ooohelppack/windows/msi_templates/CustomAc.idt
index 997515a..aaf07ca 100644
--- a/instsetoo_native/inc_ooohelppack/windows/msi_templates/CustomAc.idt
+++ b/instsetoo_native/inc_ooohelppack/windows/msi_templates/CustomAc.idt
@@ -5,5 +5,6 @@ setAllUsersProfile2K51  ALLUSERSPROFILE 
[%ALLUSERSPROFILE]
 SetAllUsersProfileNT   51  ALLUSERSPROFILE [%SystemRoot]\Profiles\All Users
 setUserProfileNT   51  USERPROFILE [%USERPROFILE]
 SetARPInstallLocation  51  ARPINSTALLLOCATION  [INSTALLLOCATION]
+SetARPNoRemove 51  ARPNOREMOVE 1
 NewProductFound19  OOO_CUSTOMACTION_1
 SameProductFound   19  OOO_CUSTOMACTION_2
diff --git 
a/instsetoo_native/inc_ooohelppack/windows/msi_templates/InstallE.idt 
b/instsetoo_native/inc_ooohelppack/windows/msi_templates/InstallE.idt
index 3d29abe..b30ebc2 100644
--- a/instsetoo_native/inc_ooohelppack/windows/msi_templates/InstallE.idt
+++ b/instsetoo_native/inc_ooohelppack/windows/msi_templates/InstallE.idt
@@ -53,6 +53,7 @@ RMCCPSearch   Not CCP_SUCCESS And CCP_TEST250
 SameProductFound   SAMEPRODUCTS120
 ScheduleReboot ISSCHEDULEREBOOT3125
 SetARPInstallLocation  990
+SetARPNoRemove VersionNT  600 995
 SetODBCFolders 550
 StartServices  VersionNT   2800
 StopServices   VersionNT   950
diff --git a/instsetoo_native/inc_openoffice/windows/msi_templates/CustomAc.idt 
b/instsetoo_native/inc_openoffice/windows/msi_templates/CustomAc.idt
index d582840..9372705 100644
--- a/instsetoo_native/inc_openoffice/windows/msi_templates/CustomAc.idt
+++ b/instsetoo_native/inc_openoffice/windows/msi_templates/CustomAc.idt
@@ -5,6 +5,7 @@ ISInitAllUsers  307 ALLUSERS1
 setAllUsersProfile 51  ALLUSERSPROFILE [%ALLUSERSPROFILE]
 setUserProfile 51  USERPROFILE [%USERPROFILE]
 SetARPInstallLocation  51  ARPINSTALLLOCATION  [INSTALLLOCATION]
+SetARPNoRemove 51  ARPNOREMOVE 1
 NewProductFound19  OOO_CUSTOMACTION_1
 SameProductFound   19  OOO_CUSTOMACTION_2
 WrongWindowsVersion19  OOO_CUSTOMACTION_4
diff --git a/instsetoo_native/inc_openoffice/windows/msi_templates/InstallE.idt 
b/instsetoo_native/inc_openoffice/windows/msi_templates/InstallE.idt
index 62cb174..6dd5ede 100644
--- a/instsetoo_native/inc_openoffice/windows/msi_templates/InstallE.idt
+++ b/instsetoo_native/inc_openoffice/windows/msi_templates/InstallE.idt
@@ -54,6 +54,7 @@ RMCCPSearch   Not CCP_SUCCESS And CCP_TEST250
 SameProductFound   SAMEPRODUCTS120
 ScheduleReboot ISSCHEDULEREBOOT3125
 SetARPInstallLocation  990
+SetARPNoRemove VersionNT  600 995
 SetODBCFolders 550
 StartServices  VersionNT   2800
 StopServices   VersionNT   950
diff --git a/instsetoo_native/inc_sdkoo/windows/msi_templates/CustomAc.idt 
b/instsetoo_native/inc_sdkoo/windows/msi_templates/CustomAc.idt
index e787b93..04cde2a 100644
--- a/instsetoo_native/inc_sdkoo/windows/msi_templates/CustomAc.idt
+++ b/instsetoo_native/inc_sdkoo/windows/msi_templates/CustomAc.idt
@@ -6,3 +6,4 @@ setAllUsersProfile2K51  ALLUSERSPROFILE 
[%ALLUSERSPROFILE]
 SetAllUsersProfileNT   51  

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

2013-09-21 Thread Eike Rathke
 i18nlangtag/source/languagetag/languagetag.cxx |  124 +++--
 1 file changed, 79 insertions(+), 45 deletions(-)

New commits:
commit 0b80ff00259cdd09297474461ad16044ea432d08
Author: Eike Rathke er...@redhat.com
Date:   Sun Sep 22 00:02:20 2013 +0200

handle canonicalization better and share impl

Change-Id: I82c1b899f88e348cfa798558b63b2264d997c33b

diff --git a/i18nlangtag/source/languagetag/languagetag.cxx 
b/i18nlangtag/source/languagetag/languagetag.cxx
index 03c4e05..82e55e7 100644
--- a/i18nlangtag/source/languagetag/languagetag.cxx
+++ b/i18nlangtag/source/languagetag/languagetag.cxx
@@ -610,27 +610,25 @@ LanguageTag::ImplPtr LanguageTagImpl::registerOnTheFly()
 return pImpl;
 }
 
-LanguageType nLang = getNextOnTheFlyLanguage();
-if (!nLang)
-{
-// out of IDs, nothing to register
-return pImpl;
-}
-mnLangID = nLang;
-mbInitializedLangID = true;
-
 osl::MutexGuard aGuard( theMutex::get());
 
 MapBcp47 rMap = theMapBcp47::get();
 MapBcp47::const_iterator it( rMap.find( maBcp47));
+bool bOtherImpl = false;
 if (it != rMap.end())
 {
 SAL_INFO( i18nlangtag, LanguageTag::registerOnTheFly: found impl 
for '  maBcp47  ');
 pImpl = (*it).second;
 if (pImpl.get() != this)
 {
-SAL_WARN( i18nlangtag, LanguageTag::registerOnTheFly: impl 
should be this for '  maBcp47  ');
-*pImpl = *this; // ensure consistency
+// Could happen for example if during registerImpl() the tag was
+// changed via canonicalize() and the result was already present in
+// the map before, for example 'bn-Beng' = 'bn'. This specific
+// case is now taken care of in registerImpl() and doesn't reach
+// here. However, use the already existing impl if it matches.
+SAL_WARN( i18nlangtag, LanguageTag::registerOnTheFly: using 
other impl for this '  maBcp47  ');
+*this = *pImpl; // ensure consistency
+bOtherImpl = true;
 }
 }
 else
@@ -640,6 +638,23 @@ LanguageTag::ImplPtr LanguageTagImpl::registerOnTheFly()
 rMap.insert( ::std::make_pair( maBcp47, pImpl));
 }
 
+if (!bOtherImpl || !pImpl-mbInitializedLangID)
+{
+LanguageType nLang = getNextOnTheFlyLanguage();
+if (!nLang)
+{
+// out of IDs, nothing to register
+return pImpl;
+}
+pImpl-mnLangID = nLang;
+pImpl-mbInitializedLangID = true;
+if (pImpl.get() != this)
+{
+mnLangID = nLang;
+mbInitializedLangID = true;
+}
+}
+
 ::std::pair MapLangID::const_iterator, bool  res(
 theMapLangID::get().insert( ::std::make_pair( pImpl-mnLangID, 
pImpl)));
 if (res.second)
@@ -831,55 +846,74 @@ LanguageTag::ImplPtr LanguageTag::registerImpl() const
 {
 SAL_INFO( i18nlangtag, LanguageTag::registerImpl: new impl for 
'  maBcp47  ');
 pImpl.reset( new LanguageTagImpl( *this));
-rMap.insert( ::std::make_pair( maBcp47, pImpl));
-// If changed after canonicalize() also add the resulting tag to 
map.
+::std::pair MapBcp47::iterator, bool  insOrig( rMap.insert( 
::std::make_pair( maBcp47, pImpl)));
+// If changed after canonicalize() also add the resulting tag to
+// the map.
 if (pImpl-synCanonicalize())
 {
 SAL_INFO( i18nlangtag, LanguageTag::registerImpl: 
canonicalized to '  pImpl-maBcp47  ');
-bool bInserted = rMap.insert( ::std::make_pair( 
pImpl-maBcp47, pImpl)).second;
-SAL_INFO( i18nlangtag, LanguageTag::registerImpl:   
(bInserted ?  : not )  inserted '
- pImpl-maBcp47  ');
+::std::pair MapBcp47::const_iterator, bool  insCanon(
+rMap.insert( ::std::make_pair( pImpl-maBcp47, 
pImpl)));
+SAL_INFO( i18nlangtag, LanguageTag::registerImpl:   
(insCanon.second ?  : not )
+ inserted '  pImpl-maBcp47  ');
+// If the canonicalized tag already existed (was not inserted)
+// and impls are different, make this impl that impl and skip
+// the rest if that LangID is present as well. The existing
+// entry may or may not be different, it may even be strictly
+// identical to this if it differs only in case (e.g. ko-kr =
+// ko-KR) which was corrected in canonicalize() hence also in
+// the map entry but comparison is case insensitive and found
+// it again.
+if (!insCanon.second  (*insCanon.first).second != pImpl)
+{
+(*insOrig.first).second = pImpl = (*insCanon.first).second;
+SAL_INFO( i18nlangtag, 

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

2013-09-21 Thread Eike Rathke
 i18nlangtag/source/languagetag/languagetag.cxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit c316097af8a9ec39e1cc520a5045eedda97951df
Author: Eike Rathke er...@redhat.com
Date:   Sun Sep 22 00:09:00 2013 +0200

don't copy twice

Change-Id: I664f4fed663ee41ae8f5b857401fbc4a24d02ba5

diff --git a/i18nlangtag/source/languagetag/languagetag.cxx 
b/i18nlangtag/source/languagetag/languagetag.cxx
index 82e55e7..7ceb37b 100644
--- a/i18nlangtag/source/languagetag/languagetag.cxx
+++ b/i18nlangtag/source/languagetag/languagetag.cxx
@@ -415,7 +415,6 @@ LanguageTagImpl LanguageTagImpl::operator=( const 
LanguageTagImpl  rLanguageTa
 maCachedScript  = rLanguageTagImpl.maCachedScript;
 maCachedCountry = rLanguageTagImpl.maCachedCountry;
 maCachedVariants= rLanguageTagImpl.maCachedVariants;
-mpImplLangtag   = rLanguageTagImpl.mpImplLangtag;
 mpImplLangtag   = rLanguageTagImpl.mpImplLangtag ?
 lt_tag_copy( rLanguageTagImpl.mpImplLangtag) : 
NULL;
 mnLangID= rLanguageTagImpl.mnLangID;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 4 commits - android/sdremote

2013-09-21 Thread Artur Dryomov
 android/sdremote/res/values/dimens.xml 
|2 
 
android/sdremote/src/org/libreoffice/impressremote/activity/ComputersActivity.java
 |   65 ++
 
android/sdremote/src/org/libreoffice/impressremote/communication/CommunicationService.java
 |   31 
 
android/sdremote/src/org/libreoffice/impressremote/communication/TcpServersFinder.java
 |7 -
 android/sdremote/src/org/libreoffice/impressremote/util/BluetoothOperator.java 
|   24 ---
 android/sdremote/src/org/libreoffice/impressremote/util/SavedStates.java   
|1 
 6 files changed, 70 insertions(+), 60 deletions(-)

New commits:
commit 036cf17cac1d4e8843cb49b67d3c588362d190ca
Author: Artur Dryomov artur.dryo...@gmail.com
Date:   Sun Sep 22 00:19:55 2013 +0300

Change TCP servers search blocking delay.

Change-Id: Ia25d064aa5ad030d08a4095e92c3a35fb9b2e68f

diff --git 
a/android/sdremote/src/org/libreoffice/impressremote/communication/TcpServersFinder.java
 
b/android/sdremote/src/org/libreoffice/impressremote/communication/TcpServersFinder.java
index ed0c4c3..40b7553 100644
--- 
a/android/sdremote/src/org/libreoffice/impressremote/communication/TcpServersFinder.java
+++ 
b/android/sdremote/src/org/libreoffice/impressremote/communication/TcpServersFinder.java
@@ -33,7 +33,7 @@ import org.libreoffice.impressremote.util.Intents;
 
 class TcpServersFinder implements ServersFinder, Runnable {
 private static final int SEARCH_DELAY_IN_SECONDS = 5;
-private static final int BLOCKING_TIMEOUT_IN_SECONDS = 10;
+private static final int BLOCKING_TIMEOUT_IN_SECONDS = 5;
 
 private static final int SEARCH_RESULT_BUFFER_SIZE = 1024;
 
commit 7d70990265ec18e01d59898d31d5eabca4a1f2f9
Author: Artur Dryomov artur.dryo...@gmail.com
Date:   Sat Sep 21 23:55:46 2013 +0300

Fix possible unexpected search stop.

An executor stops working when a single task got an exception. This
change prevents only one exception from being uncaught, if this will not
help probably everything should be caught.

Change-Id: I76a57fc0b1c759cb66bf13b5cdec7223c384bfa3

diff --git 
a/android/sdremote/src/org/libreoffice/impressremote/communication/TcpServersFinder.java
 
b/android/sdremote/src/org/libreoffice/impressremote/communication/TcpServersFinder.java
index a35c1d6..ed0c4c3 100644
--- 
a/android/sdremote/src/org/libreoffice/impressremote/communication/TcpServersFinder.java
+++ 
b/android/sdremote/src/org/libreoffice/impressremote/communication/TcpServersFinder.java
@@ -133,8 +133,7 @@ class TcpServersFinder implements ServersFinder, Runnable {
 private DatagramPacket buildSearchResultPacket() {
 byte[] aSearchResultBuffer = new byte[SEARCH_RESULT_BUFFER_SIZE];
 
-return new DatagramPacket(
-aSearchResultBuffer, aSearchResultBuffer.length);
+return new DatagramPacket(aSearchResultBuffer, 
aSearchResultBuffer.length);
 }
 
 private String receiveSearchResult(DatagramPacket aSearchResultPacket) {
@@ -145,7 +144,7 @@ class TcpServersFinder implements ServersFinder, Runnable {
 } catch (SocketTimeoutException e) {
 return ;
 } catch (IOException e) {
-throw new RuntimeException(Unable to receive search result.);
+return ;
 }
 }
 
commit 13cf8f2599a9888f2a6f1b9dd8938978b4a0274f
Author: Artur Dryomov artur.dryo...@gmail.com
Date:   Sat Sep 21 22:17:34 2013 +0300

Change way of saving Bluetooth state one more time.

Read a comment at the ComputersActivity.

Change-Id: I4a933d262c28a08c1e2227a2eabec54ad2cfd16e

diff --git 
a/android/sdremote/src/org/libreoffice/impressremote/activity/ComputersActivity.java
 
b/android/sdremote/src/org/libreoffice/impressremote/activity/ComputersActivity.java
index 7b085e7..7ccd18e 100644
--- 
a/android/sdremote/src/org/libreoffice/impressremote/activity/ComputersActivity.java
+++ 
b/android/sdremote/src/org/libreoffice/impressremote/activity/ComputersActivity.java
@@ -26,6 +26,7 @@ import org.libreoffice.impressremote.util.Fragments;
 import org.libreoffice.impressremote.util.Intents;
 import org.libreoffice.impressremote.R;
 import org.libreoffice.impressremote.util.Preferences;
+import org.libreoffice.impressremote.util.SavedStates;
 
 public class ComputersActivity extends SherlockFragmentActivity implements 
ActionBar.TabListener, ViewPager.OnPageChangeListener {
 private static final class TabsIndices {
@@ -36,14 +37,44 @@ public class ComputersActivity extends 
SherlockFragmentActivity implements Actio
 public static final int WIFI = 1;
 }
 
+private boolean mBluetoothWasEnabled;
+
 @Override
 protected void onCreate(Bundle aSavedInstanceState) {
 super.onCreate(aSavedInstanceState);
 
+saveBluetoothState(aSavedInstanceState);
+enableBluetooth();
+
 setUpTitle();
 setUpContent();
 }
 
+private void 

[Libreoffice-commits] core.git: 2 commits - i18nlangtag/source svx/source

2013-09-21 Thread Eike Rathke
 i18nlangtag/source/languagetag/languagetag.cxx |2 +-
 svx/source/dialog/langbox.cxx  |3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)

New commits:
commit a727e93d10e7514bf9d962059fb91e36e362e0cc
Author: Eike Rathke er...@redhat.com
Date:   Sun Sep 22 02:53:10 2013 +0200

insert on-the-fly-ID if select requested

Change-Id: I2935b211aaee345827d89c63de207c7e4fbc78f4

diff --git a/svx/source/dialog/langbox.cxx b/svx/source/dialog/langbox.cxx
index e24bb80..3b3eca6 100644
--- a/svx/source/dialog/langbox.cxx
+++ b/svx/source/dialog/langbox.cxx
@@ -456,6 +456,9 @@ void SvxLanguageBox::SelectLanguage( const LanguageType 
eLangType, sal_Bool bSel
 
 sal_uInt16 nAt = TypeToPos_Impl( nLang, *this );
 
+if ( nAt == LISTBOX_ENTRY_NOTFOUND )
+nAt = InsertLanguage( nLang );  // on-the-fly-ID
+
 if ( nAt != LISTBOX_ENTRY_NOTFOUND )
 SelectEntryPos( nAt, bSelect );
 }
commit 6fa84d196834e041550ec4de426865b8a6038cfa
Author: Eike Rathke er...@redhat.com
Date:   Sun Sep 22 02:21:52 2013 +0200

in canonicalize() an unknown LangID is temporary

Change-Id: I4ae0f04f6ba5d6d0f9668595adf0b6865a34d6ef

diff --git a/i18nlangtag/source/languagetag/languagetag.cxx 
b/i18nlangtag/source/languagetag/languagetag.cxx
index 7ceb37b..fd14889 100644
--- a/i18nlangtag/source/languagetag/languagetag.cxx
+++ b/i18nlangtag/source/languagetag/languagetag.cxx
@@ -1103,7 +1103,7 @@ bool LanguageTagImpl::canonicalize()
 if (!mbInitializedLangID)
 {
 convertLocaleToLang( false);
-if (bTemporaryLocale)
+if (bTemporaryLocale || mnLangID == LANGUAGE_DONTKNOW)
 bTemporaryLangID = true;
 }
 if (mnLangID != LANGUAGE_DONTKNOW  mnLangID != 
LANGUAGE_SYSTEM)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 65675] LibreOffice 4.2 most annoying bugs

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65675

ape os...@yandex.ru changed:

   What|Removed |Added

 Depends on||69517

--- Comment #10 from ape os...@yandex.ru ---
@kendy:
 Adding error 69517 LibreOfficeDev-4.2.0.0 (Win-x86@39) cannot start under
Windows XP because it is not possible testing program on Windows XP 32\64-bit,
which are supported (look at readme.txt file).
--
ape

-- 
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 65675] LibreOffice 4.2 most annoying bugs

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65675

--- Comment #11 from ape os...@yandex.ru ---
(In reply to comment #10)
 @kendy:
  Adding error 69517
--
Sorry, bug 69517

-- 
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 65675] LibreOffice 4.2 most annoying bugs

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65675

Bug 65675 depends on bug 69517, which changed state.

Bug 69517 Summary: LibreOfficeDev-4.2.0.0 (Win-x86@39) cannot start under 
Windows XP
https://bugs.freedesktop.org/show_bug.cgi?id=69517

   What|Removed |Added

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

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


[Bug 65675] LibreOffice 4.2 most annoying bugs

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65675

--- Comment #12 from ape os...@yandex.ru ---
@kendy:

Sorry, that's my confusion.
 I found the Assembly log file, which specifies to use MSVCR-2012u1. The
LibreOfficeDev-4.2.0.0_ Win-x86@39 runs on Windows XP 32\64-bit after
installing MSVCR-2012 update3.
 So is FIXED.
--
ape

-- 
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-qa] BSA

2013-09-21 Thread Jean Spiteri
I am working on an update for the LibreOffice Bug Submission Assistant. As
you know,  I need to test the update to be sure it works good. I have
already contacted Rob Snelders about this and he checked it out and
recommended that I set up a provisional one to check for some errors I got
in the code. Can someone tell me how can I install this? Thanks. 



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


Re: [Libreoffice-qa] Hiding of thinderboxes

2013-09-21 Thread Cor Nouws

Pedro wrote (20-09-13 16:57)


I hope there are more builds available in the future...


Me too. 32bits Linux is not available as daily already for a long time 
.. :-\



--
 - Cor Nouws
 - http://nl.libreoffice.org
 - The Document Foundation Membership Committee Member
___
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] BSA

2013-09-21 Thread Rob Snelders

hi Jean,

Sorry for my slow responses.

Do you work in Windows, Linux or Mac? I only ever tried in Linux. But 
you need the packages xsltproc, tidy, make, perl and curl afaik. But 
many linux-distro's already have perl and curl.
When you have all that installed then it should work with a simple make 
all in the root of the project.
After the make open de file bug/bugs.html?skin=login for the english BSA 
in dev-mode (you can view the BSA but can't submit, and there is a 
dev-bar at the top)


If you are on another system the linux we should see what needs to be done.

--
Greetings,
Rob Snelders

On 21-09-13 11:41, Jean Spiteri wrote:

I am working on an update for the LibreOffice Bug Submission Assistant. As
you know,  I need to test the update to be sure it works good. I have
already contacted Rob Snelders about this and he checked it out and
recommended that I set up a provisional one to check for some errors I got
in the code. Can someone tell me how can I install this? Thanks.



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


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


[Libreoffice-qa] 3.5.x versions cleanup on FDO

2013-09-21 Thread Tommy
I think it's time to remove all the 3.5.x betas and rc from the  
freedesktop versions dropdown menu, like it was already done for 3.3.x and  
3.4.x




--
Using Opera's revolutionary email client: http://www.opera.com/mail/

___
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 58144] unreadable text used during installation on Windows XP

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58144

--- Comment #25 from Tor Lillqvist t...@iki.fi ---
Pedro, WONTFIX is a valid bug resolution. But if you prefer a bug to be open
but ignored, whatever.

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


[Libreoffice-bugs] [Bug 58144] unreadable text used during installation on Windows XP

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58144

--- Comment #26 from Tor Lillqvist t...@iki.fi ---
Michael, the unreadable output during uninstallation shows up even in a very
plain Latin script -using Windows XP installation. I have seen it myself and I
used a Swedish XP, and I certainly don't know Syriac or other complex script
languages and had not set XP to use any such.

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


[Libreoffice-bugs] [Bug 69627] FORMATTING: Calc Version 4.0.2.2 (Build ID: 400m0(Build:2)) find and replace not detecting tick mark

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69627

Foss f...@openmailbox.org changed:

   What|Removed |Added

 Resolution|FIXED   |NOTABUG

--- Comment #2 from Foss f...@openmailbox.org ---
So NOTABUG. Fixed would be if an actual code change fixed this.

Thanks for updating this report and keeping us in the loop.

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


[Libreoffice-bugs] [Bug 69633] New: V. 1.0.6: Impress Remote keep screen start presentation despite having started

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69633

  Priority: medium
Bug ID: 69633
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: V. 1.0.6: Impress Remote keep screen start
presentation despite having started
  Severity: normal
Classification: Unclassified
OS: other
  Reporter: diaz.bast...@ymail.com
  Hardware: ARM
Status: UNCONFIRMED
   Version: 4.1.1.2 release
 Component: Android Impress Remote
   Product: LibreOffice

Description of problem:
The problem occurs when you start a presentation from the android application. 

After selecting the computer, a screen appears showing a button, start
presentation. When you press that button, the presentation starts in full
screen mode on the computer, but the application still shows the screen with
the button start presentation. To fix this, you have to go back and select
again the computer. Then appears the slides in the presentation.

Version-Release number of selected component:
fedora 19 32 bits (GNOME 3.8.4)
LibreOffice 4.1.1.2 (4.1.1.2-5.fc19)
Android 2.3.6 (Gingerbread on Samsung GT-S5570L)
LO Impress Remote 1.0.6

How reproducible:
Always

Steps to Reproduce: (tested under bluetooth connection)
1.Open a presentation in LO Impress on computer
2.Start Impress on your smartphone, select the connected computer
3.Start slideshow from the application (button start presentation)

Actual results:
The slideshow starts, but the screen is kept with the start presentation
button on Impress Remote

Expected results:
After pressing the button start presentation displays the slide switcher in
Impress Remote

Thanks

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


[Libreoffice-bugs] [Bug 69359] Can't print in Landscape format

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69359

--- Comment #3 from tommy27 ba...@quipo.it ---
take a look at Bug 68032. are you experiencing the same issue?

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


[Libreoffice-bugs] [Bug 69359] Can't print in Landscape format

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69359

tommy27 ba...@quipo.it changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 68032] Landscape printing prints as portrait with content turned at 90 degree

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=68032

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 CC||ba...@quipo.it
   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=69359

--- Comment #1 from tommy27 ba...@quipo.it ---
do you still see this in 4.0.5 or 4.1.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 68032] Landscape printing prints as portrait with content turned at 90 degree

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=68032

--- Comment #2 from Ruslan Kabatsayev b7.10110...@gmail.com ---
I saw it in 4.1.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 69634] New: V. 1.0.6: Receive calls in the background to use Impress Remote

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69634

  Priority: medium
Bug ID: 69634
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: V. 1.0.6: Receive calls in the background to use
Impress Remote
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: diaz.bast...@ymail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: (See in Summary)
 Component: Android Impress Remote
   Product: LibreOffice

Description of problem:

Impress Remote currently not mute incoming calls or messages, however, the user
can set Silent mode before starting a slide show.
Although mute incoming calls when a call is received, it occupies the first
plane and you can follow the slideshow until the call is stopped by the user
(which disrupts exposure similarly as if the phone rang).

The idea is that incoming calls or messages are received in the background
without interrupting the use of the application and therefore, not disrupting
the slideshow.

Version-Release number of selected component:
Impress Remote 1.0.6
Android 2.3.6

How reproducible:
Always

Steps to Reproduce:
1.Perform a test slideshow with Impress Remote
2.Ask a friend that I made a call to the smart phone as a remote control
handles

Actual results:
The incoming call is superimposed over Impress Remote

Expected results:
The incoming call is received as a notification, while you can still use
Impress Remote

Additional info:
I use Impress since its launch, and on more than one occasion I have unfocused
to cancel a call or answer accidentally (by use of gestures).

This enhancement request is related to:
https://bugs.freedesktop.org/show_bug.cgi?id=61570

Thanks

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


[Libreoffice-bugs] [Bug 69634] V. 1.0.6: Receive calls in the background to use Impress Remote

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69634

Bastián Díaz diaz.bast...@ymail.com changed:

   What|Removed |Added

   Hardware|Other   |ARM
 OS|All |other
   Severity|normal  |enhancement
   Priority|medium  |high
   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=61570

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


[Libreoffice-bugs] [Bug 61570] V 1.0.2: Automatic silent profile smartphone to start a slideshow

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61570

Bastián Díaz diaz.bast...@ymail.com changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 60472] No overlay controls displayed in the slides sidebar

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60472

--- Comment #7 from Bastián Díaz diaz.bast...@ymail.com ---
In version 4.1.1.2, this feature is absent.

There any plans to resolve this bug for 4.2?

Thanks

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


[Libreoffice-bugs] [Bug 56709] UI: Cell formatting dialog shows characters as squares for some languages

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56709

Korrawit Pruegsanusak detective.conan.1...@gmail.com changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #23 from Korrawit Pruegsanusak detective.conan.1...@gmail.com ---
Sorry for very late reply. :(

Anyway, for a record, I've just VERIFIED that this bug is WORKSFORME on the
same computer with same Windows 7 that I found and report this bug. I checked
with the version that I found buggy, but now the bug vanished! I also checked
with 4.1.0.4 and there was no bug, either.

In conclusion, IMHO this is some environment problem that coincidentally come
and gone, not really LibreOffice 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 58144] unreadable text used during installation on Windows XP

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58144

--- Comment #27 from Pedro pedl...@gmail.com ---
(In reply to comment #25)
 Pedro, WONTFIX is a valid bug resolution. But if you prefer a bug to be
 open but ignored, whatever.

Tor, of course it is a valid resolution. But I believe it applies to some
absurd request (like Make function SUM calculate an AVERAGE) and the
developer replies WONTFIX meaning We won't fix that

In this case RESOLVED as WONTFIX means no one else will even try because it is
RESOLVED. This is still a real problem that can cause DATA LOSS.

If it is OPEN you can ignore it but someone else can give it a try.

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


[Libreoffice-bugs] [Bug 64817] FILEOPEN: DOCX containing shape with picture fill opens as empty shape

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64817

--- Comment #3 from Adam CloudOn rattles2...@gmail.com ---
Created attachment 86228
  -- https://bugs.freedesktop.org/attachment.cgi?id=86228action=edit
DOCX exported by LO with shape that has no fill to it

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


[Libreoffice-bugs] [Bug 64817] FILEOPEN: DOCX containing shape with picture fill opens as empty shape

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64817

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

   What|Removed |Added

  Attachment #86228|0   |1
is obsolete||

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


[Libreoffice-bugs] [Bug 64817] FILEOPEN: DOCX containing shape with picture fill opens as empty shape

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64817

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

   What|Removed |Added

  Attachment #79609|0   |1
is obsolete||

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


[Libreoffice-bugs] [Bug 64817] FILEOPEN: DOCX containing shape with picture fill opens as empty shape

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64817

--- Comment #5 from Adam CloudOn rattles2...@gmail.com ---
Created attachment 86230
  -- https://bugs.freedesktop.org/attachment.cgi?id=86230action=edit
DOCX exported by LO with shape that has no fill to it

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


[Libreoffice-bugs] [Bug 64817] FILEOPEN: DOCX containing shape with picture fill opens as empty shape

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64817

--- Comment #4 from Adam CloudOn rattles2...@gmail.com ---
Created attachment 86229
  -- https://bugs.freedesktop.org/attachment.cgi?id=86229action=edit
DOCX containing shape with image fill

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


[Libreoffice-bugs] [Bug 64817] FILEOPEN: DOCX containing shape with picture fill opens as empty shape

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64817

--- Comment #6 from Adam CloudOn rattles2...@gmail.com ---
Created attachment 86231
  -- https://bugs.freedesktop.org/attachment.cgi?id=86231action=edit
Screenshot comparison between original DOCX and exported DOCX

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


[Libreoffice-bugs] [Bug 58144] unreadable text used during installation on Windows XP

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58144

--- Comment #28 from Andras Timar tima...@gmail.com ---
I found a workaround. We can disable the Remove button on Add or Remove
Programs Control Panel applet - only when VersionNT  600 (XP, 2003 Server). So
the user will not encounter the corrupted characters. If the user wants to
uninstall LibreOffice, it is possible with the Change button, and LibreOffice
can be uninstalled by the Wizard, where characters are not corrupted. Update is
not affected, a newer version silently removes the older version. Is it
acceptable?

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


[Libreoffice-bugs] [Bug 66401] FILESAVE: DOCX exporting a document with 'Combined Characters' loses them

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66401

--- Comment #2 from Adam CloudOn rattles2...@gmail.com ---
Created attachment 86232
  -- https://bugs.freedesktop.org/attachment.cgi?id=86232action=edit
DOCX exported by LO with combined characters lost

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


[Libreoffice-bugs] [Bug 66401] FILESAVE: DOCX exporting a document with 'Combined Characters' loses them

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66401

--- Comment #3 from Adam CloudOn rattles2...@gmail.com ---
Created attachment 86233
  -- https://bugs.freedesktop.org/attachment.cgi?id=86233action=edit
Screenshot comparison between original DOCX and exported DOCX

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


[Libreoffice-bugs] [Bug 69635] New: FILESAVE: DOCX Export loses hidden 'first' and 'even' header footer

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69635

  Priority: medium
Bug ID: 69635
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FILESAVE: DOCX Export loses hidden 'first' and 'even'
header  footer
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: rattles2...@gmail.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.2.0.0.alpha0+ Master
 Component: Writer
   Product: LibreOffice

Created attachment 86234
  -- https://bugs.freedesktop.org/attachment.cgi?id=86234action=edit
DOCX containing headers  footers for 'first', 'even'  'odd' pages - but
'first' and 'even' are turned off

Problem description: 
LO does not preserve headers  footers if they are not being shown in the
document.
Meaning - if a DOCX contains a 'first-page' header, but the 'show different
first page' is turned OFF, than LibreOffice will not even import that header
and lose it.
However, in Word - you can still turn on  off the 'first-page' header without
losing it.

Steps to reproduce:
1. Load the attached DOCX in LO
2. Save as NEW.DOCX
3. Load the NEW.DOCX in Word
4. Turn on the 'Different First Page' flag - the original 'first page' header 
footer are lost and are shown blank.
5. Turn on the 'Different Odd  Even pages' flag - the original 'even page'
header  footer are lost and are shown blank.

Current behavior:
LO does not preserve 'first page' \ 'even page' headers and footers if they are
not shown.

Expected behavior:
LO does should preserve 'first page' \ 'even page' headers and footers even if
they are shown.

Operating System: All
Version: 4.2.0.0.alpha0+ Master

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


[Libreoffice-bugs] [Bug 69635] FILESAVE: DOCX Export loses hidden 'first' and 'even' header footer

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69635

--- Comment #1 from Adam CloudOn rattles2...@gmail.com ---
Created attachment 86235
  -- https://bugs.freedesktop.org/attachment.cgi?id=86235action=edit
DOCX exported by LO with empty 'first' and 'even' page headers and footers

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


[Libreoffice-bugs] [Bug 58144] unreadable text used during installation on Windows XP

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58144

--- Comment #29 from Pedro pedl...@gmail.com ---
(In reply to comment #28)
 I found a workaround. We can disable the Remove button on Add or Remove
 Programs Control Panel applet - only when VersionNT  600 (XP, 2003 Server).
 So the user will not encounter the corrupted characters. If the user wants
 to uninstall LibreOffice, it is possible with the Change button, and
 LibreOffice can be uninstalled by the Wizard, where characters are not
 corrupted. Update is not affected, a newer version silently removes the
 older version. Is it acceptable?

Hi Andras

I tested uninstalling using Remove and did not come across the Reboot message
(but then again it doesn't show everytime). 
It seems a much better option than WONTFIX :)
Can you add that change and I will test it as soon as it's available in a daily
build?

Thanks!

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


[Libreoffice-bugs] [Bug 69558] FILEOPEN: Data corruption for cells containing line-break inside

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69558

--- Comment #4 from Cor Nouws c...@nouenoff.nl ---
Hi Serge,

Checked in various 4.1.0.x versions. The problem doesn't exist there.

4.1.1.2 is the only 4.1.1.x I have to test.
In any case the problem is introduced in the 4.1.1-branche.
Cor

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


[Libreoffice-bugs] [Bug 69636] New: FILESAVE: DOCX Export of vertical text-box turns to normal text-box

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69636

  Priority: medium
Bug ID: 69636
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FILESAVE: DOCX Export of vertical text-box turns to
normal text-box
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: rattles2...@gmail.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.2.0.0.alpha0+ Master
 Component: Writer
   Product: LibreOffice

Created attachment 86236
  -- https://bugs.freedesktop.org/attachment.cgi?id=86236action=edit
DOCX containing vertical text-box

Problem description: 
When you load a DOCX that contains a vertical text-box, LO exports it back to
DOCX as a horizontal text-box.

Steps to reproduce:
1. Load attached DOCX in LO
2. Save as NEW.DOCX
3. Load NEW.DOCX in Word
4. Vertical text-box is now horizontal text-box

Current behavior:
LO exports vertical text-box as horizontal text-box

Expected behavior:
LO should export vertical text-box correctly

Operating System: All
Version: 4.2.0.0.alpha0+ Master

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


[Libreoffice-bugs] [Bug 69636] FILESAVE: DOCX Export of vertical text-box turns to normal text-box

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69636

--- Comment #1 from Adam CloudOn rattles2...@gmail.com ---
Created attachment 86237
  -- https://bugs.freedesktop.org/attachment.cgi?id=86237action=edit
DOCX exported by LO with horizontal text-box

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


[Libreoffice-bugs] [Bug 69636] FILESAVE: DOCX Export of vertical text-box turns to normal text-box

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69636

--- Comment #2 from Adam CloudOn rattles2...@gmail.com ---
Created attachment 86238
  -- https://bugs.freedesktop.org/attachment.cgi?id=86238action=edit
Screenshot comparison between original DOCX and exported DOCX

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


[Libreoffice-bugs] [Bug 69637] New: FORMATTING: Einfügen in Zelle

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69637

  Priority: medium
Bug ID: 69637
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FORMATTING: Einfügen in Zelle
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: tej...@googlemail.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.1.2.2 rc
 Component: Spreadsheet
   Product: LibreOffice

Beim Einfügen in Zelle wird trotz nur „Daten einFügen“ die Hintergrund Farbe
gelöscht.

Operating System: openSUSE
Version: 4.1.2.2 rc

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


[Libreoffice-bugs] [Bug 69637] FORMATTING: Einfügen in Zelle

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69637

tej...@googlemail.com changed:

   What|Removed |Added

   Hardware|Other   |All
   Priority|medium  |high

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


[Libreoffice-bugs] [Bug 69611] Formula

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69611

mariosv mari...@miguelangel.mobi changed:

   What|Removed |Added

 CC||mari...@miguelangel.mobi

--- Comment #3 from mariosv mari...@miguelangel.mobi ---
Please Jorge, what is your LibreOffice version?

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


[Libreoffice-bugs] [Bug 58144] unreadable text used during installation on Windows XP

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58144

--- Comment #30 from Klaus ta...@gmx.de ---
Two strange observations that might help:

The texts removing old versions and preparing to remove old versions are
always readable, what is different with these texts?

Sometimes the upper lines of the broken texts can be made visible by moving
another window across the installer window.

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


[Libreoffice-bugs] [Bug 58144] unreadable text used during installation on Windows XP

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58144

--- Comment #31 from Klaus ta...@gmx.de ---
Created attachment 86239
  -- https://bugs.freedesktop.org/attachment.cgi?id=86239action=edit
sample of partially visible text, see comment 30

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


[Libreoffice-bugs] [Bug 58144] unreadable text used during installation on Windows XP

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58144

Klaus ta...@gmx.de changed:

   What|Removed |Added

  Attachment #86239|sample of partially visible |sample of partially
description|text, see comment 30|readable text, see comment
   ||30

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


[Libreoffice-bugs] [Bug 69638] New: Text is missing when converting from SVG

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69638

  Priority: medium
Bug ID: 69638
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Text is missing when converting from SVG
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: ofirr@gmail.com
  Hardware: All
Status: UNCONFIRMED
   Version: 4.1.1.2 release
 Component: Presentation
   Product: LibreOffice

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


[Libreoffice-bugs] [Bug 69638] Text is missing when converting from SVG

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69638

--- Comment #1 from Ofir ofirr@gmail.com ---
Created attachment 86240
  -- https://bugs.freedesktop.org/attachment.cgi?id=86240action=edit
Taken from http://commons.wikimedia.org/wiki/File:Periodic_table_large.svg

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


[Libreoffice-bugs] [Bug 69638] Text is missing when converting from SVG

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69638

--- Comment #2 from Ofir ofirr@gmail.com ---
When converting the attached SVG to PDF from the command line the text is
missing.
This is the command I'm using:
libreoffice --headless -–invisible --convert-to pdf:writer_pdf_Export

When dragging the SVG file to Impress or Draw it seems to import with the text.
When Dragging the SVG file to the main LO window, it opens Impress but the text
is missing.

Thanks

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


[Libreoffice-bugs] [Bug 69639] New: VIEWING: with microsoft word, i have 11 pages, with writer i have 3

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69639

  Priority: medium
Bug ID: 69639
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: VIEWING: with microsoft word, i have 11 pages,with
writer i have 3
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: heberj...@hotmail.fr
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: unspecified
 Component: Writer
   Product: LibreOffice

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

Problem description: 

with microsoft word, i have 11 pages,with writer i have 3 and photo not exist,i
use 3.6 version and the last version 4.1.2.2 and others i have the same problem
(in ubuntu 12.04,13.04 and windows xp)
Operating System: All
Version: unspecified

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


[Libreoffice-bugs] [Bug 69640] New: VIEWING: i have 11 pages with word and 3 with writer

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69640

  Priority: medium
Bug ID: 69640
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: VIEWING: i have 11 pages with word and 3 with writer
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: heberj...@hotmail.fr
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: unspecified
 Component: Writer
   Product: LibreOffice

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

Problem description: 

i test writer 3.6,4.1, ubuntu 12.04,13.04,xp the same problem


Operating System: All
Version: unspecified

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


[Libreoffice-bugs] [Bug 69611] Formula

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69611

--- Comment #4 from Jorge profesorba...@gmail.com ---
(In reply to comment #3)
 Please Jorge, what is your LibreOffice version?

Version 4.0.2.2.

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


[Libreoffice-bugs] [Bug 69640] VIEWING: i have 11 pages with word and 3 with writer

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69640

heberj...@hotmail.fr changed:

   What|Removed |Added

   Hardware|Other   |All
   Severity|normal  |major

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


[Libreoffice-bugs] [Bug 69640] VIEWING: i have 11 pages with word and 3 with writer

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69640

heberj...@hotmail.fr changed:

   What|Removed |Added

   Priority|medium  |highest

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


[Libreoffice-bugs] [Bug 69640] VIEWING: i have 11 pages with word and 3 with writer

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69640

--- Comment #1 from heberj...@hotmail.fr ---
Created attachment 86243
  -- https://bugs.freedesktop.org/attachment.cgi?id=86243action=edit
in writer

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


[Libreoffice-bugs] [Bug 62345] EDITING: spell check -- no way to get to spell check dialogue if no errors detected.

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62345

Brenda Granados bgra...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #1 from Brenda Granados bgra...@gmail.com ---
Hi, thanks for taking the time to report this!

This is an existing bug. Please refer to bug 42935. I agree that as is, it is
not very user-friendly.

Closing as a duplicate.

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

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


[Libreoffice-bugs] [Bug 69640] VIEWING: i have 11 pages with word and 3 with writer

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69640

--- Comment #2 from heberj...@hotmail.fr ---
Created attachment 86244
  -- https://bugs.freedesktop.org/attachment.cgi?id=86244action=edit
in word

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


[Libreoffice-bugs] [Bug 42935] Ease to open spelling options while editing a document with no misspelled words.

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42935

Brenda Granados bgra...@gmail.com changed:

   What|Removed |Added

 CC||sam...@bcgreen.com

--- Comment #6 from Brenda Granados bgra...@gmail.com ---
*** Bug 62345 has been marked as a duplicate of this 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 69361] scmatrix.cxx problems with mdds (compilation)

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69361

Toni Ballesta mustela...@yahoo.es changed:

   What|Removed |Added

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

--- Comment #3 from Toni Ballesta mustela...@yahoo.es ---
I don't understand. I recompile mdds and the problem continue, but installing
old version (0.6.1) and returning to 0.9.0, plus installing other packages,
then it works well.

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


[Libreoffice-bugs] [Bug 69641] New: Other: Draw crashes when pressing F7

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69641

  Priority: medium
Bug ID: 69641
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Other: Draw crashes when pressing F7
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: funtimesch...@rocketmail.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.1.1.2 release
 Component: Drawing
   Product: LibreOffice

Created attachment 86245
  -- https://bugs.freedesktop.org/attachment.cgi?id=86245action=edit
File causing this error

Problem description: 
Libreoffice CTDs when F7 is pressed (or go to Tools - Spelling) in attached
file

Steps to reproduce:
1. Download attached file
2. Open it
3. Press F7 (or Tools - Spelling)

Current behavior:
Crashes to desktop

Expected behavior:
Does not crash

Operating System: Debian
Version: 4.1.1.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 69611] Formula

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69611

--- Comment #5 from Jorge profesorba...@gmail.com ---
(In reply to comment #4)
 (In reply to comment #3)
  Please Jorge, what is your LibreOffice version?
 
 Version 4.0.2.2 running on Ubuntu 13.04. I delete the program, re install it 
 and the problem continue.

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


[Libreoffice-bugs] [Bug 69227] FILESAVE RTF adds extra page breaks, 1 section, and adds headers to some endnotes

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69227

--- Comment #3 from Jacob Boerema jgboer...@gmail.com ---
My OS is Windows 7 Home Premium 64 bits.

I was previously using I think 4.0.3 (not 100% sure about the 3) and upgraded
to see if it fixed another bug I encountered in that version.
The bug I'm reporting here was not in 4.0.3 and also not in the version I
reverted to now:
Version 4.0.5.2 .5.2 (Build-id: 5464147a081647a250913f19c0715bca595af2f)

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


[Libreoffice-bugs] [Bug 69642] New: Other: Android LibreOffice master hangs on Samsung Galaxy Tab 10.1 with Android 4.0.4

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69642

  Priority: medium
Bug ID: 69642
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Other: Android LibreOffice master hangs on Samsung
Galaxy Tab 10.1 with Android 4.0.4
  Severity: normal
Classification: Unclassified
OS: other
  Reporter: tobbi.b...@googlemail.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.2.0.0.alpha0+ Master
 Component: Libreoffice
   Product: LibreOffice

Problem description: 
Android LibreOffice hangs on my Samsung Galaxy Tab 10.1. I used the latest
master build from the FTP server. The only error message that I got is
LibreOfficeUI angehalten, which translates to LibreOfficeUI halted. I am
using Android version 4.0.4 (the latest version available for my device).


Steps to reproduce:
1. Download latest libreoffice master from ftp server
2. Install it.
3. Try to start it.

Current behavior:
Error message LibreOffice UI halted

Expected behavior:
-

Operating System: other
Version: 4.2.0.0.alpha0+ Master

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


[Libreoffice-bugs] [Bug 69611] Formula

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69611

--- Comment #6 from mariosv mari...@miguelangel.mobi ---
Hola Jorge,

I can not reproduce the issue with:
Win7x64
4.0.5.2 / 4.1.3.0 / 4.2.0

The only I have found is Q7 has a different font Liberation serif, Ctrl*M
(Menu/Format/Clear direct formatting) restore default format.

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


[Libreoffice-bugs] [Bug 69632] V. 1.0.6: Porting LibreOffice Impress remote to Firefox OS platform

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69632

Adolfo (fitoschido) f...@libreoffice.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Adolfo (fitoschido) f...@libreoffice.org ---
A basic backend for Firefox OS has already been created, but its development is
stalled for now.
http://www.ahunt.org/2013/04/impress-remote-for-firefox-os-proof-of-concept/

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


[Libreoffice-bugs] [Bug 69641] Other: Draw crashes when pressing F7

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69641

sophie gautier.sop...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||gautier.sop...@gmail.com
 Ever confirmed|0   |1

--- Comment #1 from sophie gautier.sop...@gmail.com ---
Reproduced with Version: 4.1.2.2
Build ID: 281b75f427729060b6446ddb3777b32f957a8fb Debian. 
Note that if the object frame is selected there is no crash, but if you select
nothing or the text box inside the object, then LO crashes. Set as New, no
duplicate found - Sophie

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


[Libreoffice-bugs] [Bug 69644] New: FILESAVE: DOCX Export loses deleted cells from table (table now has no deleted cells)

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69644

  Priority: medium
Bug ID: 69644
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FILESAVE: DOCX Export loses deleted cells from table
(table now has no deleted cells)
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: rattles2...@gmail.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.2.0.0.alpha0+ Master
 Component: Writer
   Product: LibreOffice

Created attachment 86247
  -- https://bugs.freedesktop.org/attachment.cgi?id=86247action=edit
DOCX containing a table with deleted cells

Problem description: 
When loading the attached DOCX into LO and exporting back to DOCX - the deleted
cells in the original DOCX's table become 'merged' cells in the exported DOCX.

Steps to reproduce:
1. Load the attached DOCX in LO
2. Save as NEW.DOCX
3. Load the NEW.DOCX in Word
4. Table contains no deleted cells

Current behavior:
LO exports the table with no deleted cells (deleted cells are turned to merged
cells in the table).

Expected behavior:
LO should export the table with the deleted cells.

Operating System: All
Version: 4.2.0.0.alpha0+ Master

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


[Libreoffice-bugs] [Bug 69644] FILESAVE: DOCX Export loses deleted cells from table (table now has no deleted cells)

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69644

--- Comment #1 from Adam CloudOn rattles2...@gmail.com ---
Created attachment 86248
  -- https://bugs.freedesktop.org/attachment.cgi?id=86248action=edit
DOCX exported by LO with no deleted cells

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


[Libreoffice-bugs] [Bug 69644] FILESAVE: DOCX Export loses deleted cells from table (table now has no deleted cells)

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69644

--- Comment #2 from Adam CloudOn rattles2...@gmail.com ---
Created attachment 86249
  -- https://bugs.freedesktop.org/attachment.cgi?id=86249action=edit
Screenshot comparison between original DOCX and exported DOCX

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


[Libreoffice-bugs] [Bug 69645] New: EDITING: Impress crashes adding a animation with random effects on multiples objects

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69645

  Priority: medium
Bug ID: 69645
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: EDITING: Impress crashes adding a animation with
random effects on multiples objects
  Severity: critical
Classification: Unclassified
OS: Windows (All)
  Reporter: ed...@pk25.com
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 4.1.1.2 release
 Component: Presentation
   Product: LibreOffice

Created attachment 86250
  -- https://bugs.freedesktop.org/attachment.cgi?id=86250action=edit
Test file with objects

for reproduce, select like 20 objects and try to animate with random efects.

press F5 to play.

the Impress crashes.

Version: 4.1.1.2
Build ID: 7e4286b58adc75a14f6d83f53a03b6c11fa2903

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


[Libreoffice-bugs] [Bug 69646] FILESAVE: DOCX Export of table with auto-width and at least one column with auto-width is wrong

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69646

--- Comment #1 from Adam CloudOn rattles2...@gmail.com ---
Created attachment 86252
  -- https://bugs.freedesktop.org/attachment.cgi?id=86252action=edit
DOCX exported by LO with table that spans the entire page's width

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


[Libreoffice-bugs] [Bug 69646] New: FILESAVE: DOCX Export of table with auto-width and at least one column with auto-width is wrong

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69646

  Priority: medium
Bug ID: 69646
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FILESAVE: DOCX Export of table with auto-width and at
least one column with auto-width is wrong
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: rattles2...@gmail.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.2.0.0.alpha0+ Master
 Component: Writer
   Product: LibreOffice

Created attachment 86251
  -- https://bugs.freedesktop.org/attachment.cgi?id=86251action=edit
DOCX containing a table with auto-width and at least one column with auto-width

Problem description: 
When loading the attached DOCX into LO, and saving it back to DOCX - the table
width spans the page, instead of staying in the original width like in the
original DOCX.

Note!
This is a special case where the table's width is set to 'Auto' and also there
is at least one column in the table that has it's width set to 'Auto'.

Steps to reproduce:
1. Load the attached DOCX in LO
2. Save as NEW.DOCX
3. Load NEW.DOCX in Word
4. Table width is wrong

Current behavior:
LO exports the table with a width of all the page

Expected behavior:
LO exports the table with a width of 'Auto' and keep that 'auto-width' column
also.

Operating System: All
Version: 4.2.0.0.alpha0+ Master

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


[Libreoffice-bugs] [Bug 69646] FILESAVE: DOCX Export of table with auto-width and at least one column with auto-width is wrong

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69646

--- Comment #2 from Adam CloudOn rattles2...@gmail.com ---
Created attachment 86253
  -- https://bugs.freedesktop.org/attachment.cgi?id=86253action=edit
Screenshot comparison between original DOCX and exported DOCX

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


[Libreoffice-bugs] [Bug 65857] FILESAVE: DOCX export - excel inside document is exported as a picture

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65857

--- Comment #2 from Adam CloudOn rattles2...@gmail.com ---
Created attachment 86254
  -- https://bugs.freedesktop.org/attachment.cgi?id=86254action=edit
DOCX exported by LO with 2 pictures instead of embedded Excel

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


[Libreoffice-bugs] [Bug 65857] FILESAVE: DOCX export - excel inside document is exported as a picture

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65857

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

   What|Removed |Added

  Attachment #80949|0   |1
is obsolete||

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


[Libreoffice-bugs] [Bug 65857] FILESAVE: DOCX export - excel inside document is exported as a picture

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65857

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

   What|Removed |Added

  Attachment #86254|0   |1
is obsolete||

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


[Libreoffice-bugs] [Bug 65857] FILESAVE: DOCX export - excel inside document is exported as a picture

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65857

--- Comment #3 from Adam CloudOn rattles2...@gmail.com ---
Created attachment 86255
  -- https://bugs.freedesktop.org/attachment.cgi?id=86255action=edit
DOCX containing excel spreadsheet

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


[Libreoffice-bugs] [Bug 65857] FILESAVE: DOCX export - excel inside document is exported as a picture

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65857

--- Comment #4 from Adam CloudOn rattles2...@gmail.com ---
Created attachment 86256
  -- https://bugs.freedesktop.org/attachment.cgi?id=86256action=edit
DOCX exported by LO with 2 pictures instead of embedded Excel

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


[Libreoffice-bugs] [Bug 65857] FILESAVE: DOCX export - excel inside document is exported as a picture

2013-09-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65857

--- Comment #5 from Adam CloudOn rattles2...@gmail.com ---
Created attachment 86257
  -- https://bugs.freedesktop.org/attachment.cgi?id=86257action=edit
Screenshot comparison between original DOCX and exported DOCX

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


  1   2   3   >