[Libreoffice-commits] .: solenv/gbuild

2011-11-09 Thread Fridrich Strba
 solenv/gbuild/SdiTarget.mk |2 --
 1 file changed, 2 deletions(-)

New commits:
commit 0a096fd9739088a4425cf66c774742aa095b98b0
Author: Michael Stahl mst...@redhat.com
Date:   Wed Nov 9 10:22:37 2011 +0100

Allow full deps on WNT since it seems that it works

diff --git a/solenv/gbuild/SdiTarget.mk b/solenv/gbuild/SdiTarget.mk
index 195e068..611ba9f 100644
--- a/solenv/gbuild/SdiTarget.mk
+++ b/solenv/gbuild/SdiTarget.mk
@@ -72,10 +72,8 @@ define gb_SdiTarget_SdiTarget
 $(call gb_SdiTarget_get_target,$(1)) : INCLUDE := $$(subst -I. ,-I$$(dir 
$(SRCDIR)/$(1)) ,$$(SOLARINC))
 $(call gb_SdiTarget_get_target,$(1)) : EXPORTS := $(SRCDIR)/$(2).sdi
 ifeq ($(gb_FULLDEPS),$(true))
-ifneq ($(OS),WNT)
 -include $(call gb_SdiTarget_get_dep_target,$(1))
 endif
-endif
 endef
 
 define gb_SdiTarget_set_include
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: extensions/source

2011-11-09 Thread Fridrich Strba
 extensions/source/nsplugin/source/npshell.cxx   |   19 --
 extensions/source/nsplugin/source/npshell.hxx   |4 +--
 extensions/source/plugin/inc/plugin/unx/plugcon.hxx |   21 
 extensions/source/plugin/unx/npnapi.cxx |6 ++---
 extensions/source/plugin/unx/nppapi.cxx |2 -
 5 files changed, 6 insertions(+), 46 deletions(-)

New commits:
commit 57091022781ac3d0509e417bf427d2edc723eed2
Author: Fridrich Å trba fridrich.st...@bluewin.ch
Date:   Wed Nov 9 11:53:28 2011 +0100

Getting completely rid of the int32 and whatever

diff --git a/extensions/source/nsplugin/source/npshell.cxx 
b/extensions/source/nsplugin/source/npshell.cxx
index 7d74dcc..fa0e0a2 100644
--- a/extensions/source/nsplugin/source/npshell.cxx
+++ b/extensions/source/nsplugin/source/npshell.cxx
@@ -71,25 +71,6 @@
 #include boost/scoped_array.hpp
 #include tools/pathutils.hxx
 
-//http://qa.openoffice.org/issues/show_bug.cgi?id=82545
-//https://bugzilla.mozilla.org/show_bug.cgi?id=241262
-#ifndef _UINT32
-#  if defined(__alpha) || defined(__LP64__) || defined(AIX) || defined(WNT)
- typedef unsigned int uint32;
-#  else  /* __alpha */
- typedef unsigned long uint32;
-#  endif
-#  define _UINT32
-#endif
-#ifndef _INT32
-#  if defined(__alpha) || defined(__LP64__) || defined(AIX) || defined(WNT)
- typedef int int32;
-#  else  /* __alpha */
- typedef long int32;
-#  endif
-#  define _INT32
-#endif
-
 #include npapi.h
 #include npshell.hxx
 #include so_env.hxx
diff --git a/extensions/source/nsplugin/source/npshell.hxx 
b/extensions/source/nsplugin/source/npshell.hxx
index c5821a0..a59175a 100644
--- a/extensions/source/nsplugin/source/npshell.hxx
+++ b/extensions/source/nsplugin/source/npshell.hxx
@@ -42,8 +42,8 @@ typedef struct _PluginInstance
 Window window;
 Display *display;
 #endif
-uint32 x, y;
-uint32 width, height;
+uint32_t x, y;
+uint32_t width, height;
 NPMIMEType type;
 char *message;
 
diff --git a/extensions/source/plugin/inc/plugin/unx/plugcon.hxx 
b/extensions/source/plugin/inc/plugin/unx/plugcon.hxx
index b98ba85..0574084 100644
--- a/extensions/source/plugin/inc/plugin/unx/plugcon.hxx
+++ b/extensions/source/plugin/inc/plugin/unx/plugcon.hxx
@@ -73,27 +73,6 @@ extern C {
 #define MOZ_X11
 #endif
 
-//http://qa.openoffice.org/issues/show_bug.cgi?id=82545
-//https://bugzilla.mozilla.org/show_bug.cgi?id=241262
-#ifdef UNIX
-#  ifndef _UINT32
-#if defined(__alpha) || defined(__LP64__) || defined(AIX)
-   typedef unsigned int uint32;
-#else  /* __alpha */
-   typedef unsigned long uint32;
-#endif
-#define _UINT32
-#  endif
-#  ifndef _INT32
-#if defined(__alpha) || defined(__LP64__) || defined(AIX)
-   typedef int int32;
-#else  /* __alpha */
-   typedef long int32;
-#endif
-#define _INT32
-#  endif
-#endif
-
 #if ! defined ( _NPAPI_H_)  ! defined (npapi_h_)
 extern C {
 #include npsdk/npupp.h
diff --git a/extensions/source/plugin/unx/npnapi.cxx 
b/extensions/source/plugin/unx/npnapi.cxx
index ceb79cc..6ca6ea8 100644
--- a/extensions/source/plugin/unx/npnapi.cxx
+++ b/extensions/source/plugin/unx/npnapi.cxx
@@ -811,7 +811,7 @@ IMPL_LINK( PluginConnector, WorkOnNewMessageHdl, Mediator*, 
/*pMediator*/ )
 NPP instance= m_aInstances[ nInstance ]-instance;
 sal_uInt32 nFileID  = pMessage-GetUINT32();
 NPStream* pStream   = m_aNPWrapStreams[ nFileID ];
-int32 nRet = aPluginFuncs.writeready( instance, pStream );
+int32_t nRet = aPluginFuncs.writeready( instance, pStream );
 
 medDebug( 1, pluginapp: NPP_WriteReady( %p, %p ) (stream id = 
%d) returns %d\n,
   instance, pStream, nFileID, nRet );
@@ -827,10 +827,10 @@ IMPL_LINK( PluginConnector, WorkOnNewMessageHdl, 
Mediator*, /*pMediator*/ )
 NPP instance= m_aInstances[ nInstance ]-instance;
 sal_uInt32 nFileID  = pMessage-GetUINT32();
 NPStream* pStream   = m_aNPWrapStreams[ nFileID ];
-int32 offset= pMessage-GetUINT32();
+int32_t offset= pMessage-GetUINT32();
 sal_uLong len;
 char* buffer= (char*)pMessage-GetBytes( len );
-int32 nRet = aPluginFuncs.write( instance, pStream, offset, 
len, buffer );
+int32_t nRet = aPluginFuncs.write( instance, pStream, offset, 
len, buffer );
 
 medDebug( 1,pluginapp: NPP_Write( %p, %p, %d, %d, %p ) 
returns %d\n
   stream = { pdata = %p, ndata = %p, url = %s, end = 
%d, lastmodified = %d, notifyData = %p }\n,
diff --git a/extensions/source/plugin/unx/nppapi.cxx 
b/extensions/source/plugin/unx/nppapi.cxx
index 87baa29..9826721 100644
--- a/extensions/source/plugin/unx/nppapi.cxx
+++ 

[Libreoffice-commits] .: 3 commits - desktop/inc desktop/source desktop/test instsetoo_native/util scp2/source

2011-11-09 Thread Stephan Bergmann
 desktop/inc/deployment.hrc|6 
 desktop/source/deployment/inc/dp_dependencies.hxx |   25 +--
 desktop/source/deployment/misc/dp_dependencies.cxx|  139 +-
 desktop/source/deployment/misc/dp_misc.src|   10 -
 desktop/test/deployment/dependencies/maxversion33.oxt |binary
 desktop/test/deployment/dependencies/maxversion34.oxt |binary
 desktop/test/deployment/dependencies/maxversion35.oxt |binary
 desktop/test/deployment/dependencies/maxversion36.oxt |binary
 desktop/test/deployment/dependencies/version34.oxt|binary
 desktop/test/deployment/dependencies/version35.oxt|binary
 instsetoo_native/util/openoffice.lst  |1 
 scp2/source/ooo/common_brand.scp  |8 +
 12 files changed, 97 insertions(+), 92 deletions(-)

New commits:
commit 4bfde371a893a3d6902c995d62a167e5c81ab0a2
Author: Stephan Bergmann sberg...@redhat.com
Date:   Wed Nov 9 13:31:13 2011 +0100

OOo reference version for extension dependencies is still at 3.4.

diff --git a/desktop/source/deployment/misc/dp_dependencies.cxx 
b/desktop/source/deployment/misc/dp_dependencies.cxx
index b168317..f2a997f 100644
--- a/desktop/source/deployment/misc/dp_dependencies.cxx
+++ b/desktop/source/deployment/misc/dp_dependencies.cxx
@@ -63,7 +63,7 @@ bool versionIsNot(dp_misc::Order order, rtl::OUString const  
version) {
 rtl::OUString oooVersion(
 RTL_CONSTASCII_USTRINGPARAM(
 ${$BRAND_BASE_DIR/program/ SAL_CONFIGFILE(version)
-:Version:OOOPackageVersion}));
+:Version:ReferenceOOoMajorMinor}));
 rtl::Bootstrap::expandMacros(oooVersion); //TODO: check for failure
 return dp_misc::compareVersions(oooVersion, version) != order;
 }
diff --git a/desktop/test/deployment/dependencies/maxversion33.oxt 
b/desktop/test/deployment/dependencies/maxversion33.oxt
new file mode 100644
index 000..fe0998c
Binary files /dev/null and 
b/desktop/test/deployment/dependencies/maxversion33.oxt differ
diff --git a/desktop/test/deployment/dependencies/maxversion34.oxt 
b/desktop/test/deployment/dependencies/maxversion34.oxt
new file mode 100644
index 000..0a284b3
Binary files /dev/null and 
b/desktop/test/deployment/dependencies/maxversion34.oxt differ
diff --git a/desktop/test/deployment/dependencies/maxversion35.oxt 
b/desktop/test/deployment/dependencies/maxversion35.oxt
new file mode 100644
index 000..e95b97c
Binary files /dev/null and 
b/desktop/test/deployment/dependencies/maxversion35.oxt differ
diff --git a/desktop/test/deployment/dependencies/maxversion36.oxt 
b/desktop/test/deployment/dependencies/maxversion36.oxt
new file mode 100644
index 000..786ed4c
Binary files /dev/null and 
b/desktop/test/deployment/dependencies/maxversion36.oxt differ
diff --git a/desktop/test/deployment/dependencies/version34.oxt 
b/desktop/test/deployment/dependencies/version34.oxt
new file mode 100644
index 000..ee2a82d
Binary files /dev/null and b/desktop/test/deployment/dependencies/version34.oxt 
differ
diff --git a/desktop/test/deployment/dependencies/version35.oxt 
b/desktop/test/deployment/dependencies/version35.oxt
new file mode 100644
index 000..6e99cf1
Binary files /dev/null and b/desktop/test/deployment/dependencies/version35.oxt 
differ
diff --git a/instsetoo_native/util/openoffice.lst 
b/instsetoo_native/util/openoffice.lst
index 1371634..b8e2ef7 100644
--- a/instsetoo_native/util/openoffice.lst
+++ b/instsetoo_native/util/openoffice.lst
@@ -8,6 +8,7 @@ Globals
OOOPACKAGEVERSION 3.5.0
UREPACKAGEVERSION 3.5.0
URELAYERVERSION 1
+REFERENCEOOOMAJORMINOR 3.4
UNIXBASISROOTNAME libreoffice3.5
SERVICETAG_PRODUCTNAME LibreOffice 3.5
SERVICETAG_PRODUCTVERSION 3.5
diff --git a/scp2/source/ooo/common_brand.scp b/scp2/source/ooo/common_brand.scp
index 794359c..71135b2 100644
--- a/scp2/source/ooo/common_brand.scp
+++ b/scp2/source/ooo/common_brand.scp
@@ -1099,6 +1099,14 @@ ProfileItem 
gid_Brand_Profileitem_Version_Extensionupdateurl
 Value = 
http://updateexte.libreoffice.org/ExtensionUpdateService/check.Update;;
 End
 
+ProfileItem gid_Brand_Profileitem_Version_ReferenceOOoMajorMinor
+ProfileID = gid_Brand_Profile_Version_Ini;
+ModuleID = gid_Module_Root_Brand;
+Section = Version;
+Key = ReferenceOOoMajorMinor;
+Value = ${REFERENCEOOOMAJORMINOR};
+End
+
 ProfileItem gid_Brand_Profileitem_Fundamental_Brand_Base_Dir
 ModuleID = gid_Module_Root_Brand;
 ProfileID = gid_Brand_Profile_Fundamental_Ini;
commit debc96051f15652bc8d1b8aa5406f7760c5feed7
Author: Stephan Bergmann sberg...@redhat.com
Date:   Wed Nov 9 12:20:28 2011 +0100

OpenOffice.org-minimal-version dependency is not branded.

diff --git a/desktop/source/deployment/misc/dp_dependencies.cxx 
b/desktop/source/deployment/misc/dp_dependencies.cxx
index 

[Libreoffice-commits] .: desktop/unx

2011-11-09 Thread Stephan Bergmann
 desktop/unx/source/args.c  |   33 ++---
 desktop/unx/source/args.h  |1 -
 desktop/unx/source/start.c |7 ---
 3 files changed, 14 insertions(+), 27 deletions(-)

New commits:
commit 5d4af26ae9bfa6f747bfd8a56067b783228033fd
Author: Stephan Bergmann sberg...@redhat.com
Date:   Wed Nov 9 13:48:21 2011 +0100

Revert oosplash - daemonize to help mutt users recover their sanity

For one, it leaves detached oosplash processes behind (the forked oosplash
instance waits for the soffice.bin child forked from the original oosplash
instance in vain).  For another, it makes unavailable the soffice.bin exit 
code.

This reverts commits aacf55dbe004ae3cad720002d40dc0e408107fd3 and
62ebb119cfb42adc5e007fb77f68d56b40de2a85.

diff --git a/desktop/unx/source/args.c b/desktop/unx/source/args.c
index c889e6c..367bac2 100644
--- a/desktop/unx/source/args.c
+++ b/desktop/unx/source/args.c
@@ -48,33 +48,29 @@ static struct {
 unsigned int  bInhibitSplash : 1;
 unsigned int  bInhibitPagein : 1;
 unsigned int  bInhibitJavaLdx : 1;
-unsigned int  bInhibitDemon : 1;
 const char   *pPageinType;
 } pArgDescr[] = {
 /* have a trailing argument */
-{ pt, 1, 0, 0, 0, 0, NULL },
-{ display,1, 0, 0, 0, 0, NULL },
+{ pt, 1, 0, 0, 0, NULL },
+{ display,1, 0, 0, 0, NULL },
 
 /* no splash */
-{ nologo, 0, 1, 0, 0, 0, NULL },
-{ headless,   0, 1, 0, 0, 0, NULL },
-{ invisible,  0, 1, 0, 0, 0, NULL },
-{ minimized,  0, 1, 0, 0, 0, NULL },
+{ nologo, 0, 1, 0, 0, NULL },
+{ headless,   0, 1, 0, 0, NULL },
+{ invisible,  0, 1, 0, 0, NULL },
+{ minimized,  0, 1, 0, 0, NULL },
 
 /* pagein bits */
-{ writer, 0, 0, 0, 0, 0, pagein-writer  },
-{ calc,   0, 0, 0, 0, 0, pagein-calc},
-{ draw,   0, 0, 0, 0, 0, pagein-draw},
-{ impress,0, 0, 0, 0, 0, pagein-impress },
+{ writer, 0, 0, 0, 0, pagein-writer  },
+{ calc,   0, 0, 0, 0, pagein-calc},
+{ draw,   0, 0, 0, 0, pagein-draw},
+{ impress,0, 0, 0, 0, pagein-impress },
 
 /* nothing much */
-{ version,0, 1, 1, 1, 0, NULL },
-{ help,   0, 1, 1, 1, 0, NULL },
-{ h,  0, 1, 1, 1, 0, NULL },
-{ ?,  0, 1, 1, 1, 0, NULL },
-
-/* UNO remote controlled process */
-{ accept, 0, 0, 0, 0, 1, NULL },
+{ version,0, 1, 1, 1, NULL },
+{ help,   0, 1, 1, 1, NULL },
+{ h,  0, 1, 1, 1, NULL },
+{ ?,  0, 1, 1, 1, NULL },
 };
 
 Args *args_parse (void)
@@ -135,7 +131,6 @@ Args *args_parse (void)
 args-bInhibitSplash  |= pArgDescr[j].bInhibitSplash;
 args-bInhibitPagein  |= pArgDescr[j].bInhibitPagein;
 args-bInhibitJavaLdx |= pArgDescr[j].bInhibitJavaLdx;
-args-bInhibitDemon   |= pArgDescr[j].bInhibitDemon;
 if (pArgDescr[j].pPageinType)
 args-pPageinType = pArgDescr[j].pPageinType;
 }
diff --git a/desktop/unx/source/args.h b/desktop/unx/source/args.h
index 0f1f114..4a0cb55 100644
--- a/desktop/unx/source/args.h
+++ b/desktop/unx/source/args.h
@@ -38,7 +38,6 @@ typedef struct {
   sal_Bool bInhibitSplash;  // should we show a splash screen
   sal_Bool bInhibitPagein;  // should we run pagein ?
   sal_Bool bInhibitJavaLdx; // should we run javaldx ?
-  sal_Bool bInhibitDemon;   // we want to match the lifecycle of 
soffice.bin
 
   sal_uInt32   nArgsEnv;// number of -env: style args
   sal_uInt32   nArgsTotal;  // number of -env: as well as -writer style 
args
diff --git a/desktop/unx/source/start.c b/desktop/unx/source/start.c
index b30efdc..940a997 100644
--- a/desktop/unx/source/start.c
+++ b/desktop/unx/source/start.c
@@ -882,13 +882,6 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS( argc, argv )
 splash_destroy(splash);
 splash = NULL;
 bShortWait = sal_False;
-
-if (!args-bInhibitDemon)
-{
-/* Since a client can't distinguish between a 
first-start and
-   a factory re-use, we return control to them here. */
-daemon( 1 /* don't chdir */, 1 /* don't re-direct 
output */ );
-}
 }
 
 #if OSL_DEBUG_LEVEL  1
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: scp2/source

2011-11-09 Thread Stephan Bergmann
 scp2/source/ooo/ure.scp |   57 
 1 file changed, 57 deletions(-)

New commits:
commit de56b0f22d774bb44419560376ba8029bb4cc661
Author: Stephan Bergmann sberg...@redhat.com
Date:   Wed Nov 9 14:46:30 2011 +0100

Removed unused URE version ini file.

diff --git a/scp2/source/ooo/ure.scp b/scp2/source/ooo/ure.scp
index 6b30619..50298ab 100644
--- a/scp2/source/ooo/ure.scp
+++ b/scp2/source/ooo/ure.scp
@@ -1165,63 +1165,6 @@ Module gid_Module_Root_Ure_Hidden
  gid_Unixlink_File_Dl_Libxml2);
 End
 
-// Profile version.ini
-
-Profile gid_Profile_Version_Ini_Ure
-ModuleID = gid_Module_Root_Ure_Hidden;
-Name = PROFILENAME(version);
-Dir = gid_Dir_Ure_Bin;
-Styles = ();
-End
-
-ProfileItem gid_Ure_Profileitem_Version_Buildid
-ProfileID = gid_Profile_Version_Ini_Ure;
-ModuleID = gid_Module_Root_Ure_Hidden;
-Section = Version;
-Key = buildid;
-Value = buildid;
-End
-
-ProfileItem gid_Ure_Profileitem_Version_Productsource
-ProfileID = gid_Profile_Version_Ini_Ure;
-ModuleID = gid_Module_Root_Ure_Hidden;
-Section = Version;
-Key = ProductSource;
-Value = sourceid;
-End
-
-ProfileItem gid_Ure_Profileitem_Version_Productmajor
-ProfileID = gid_Profile_Version_Ini_Ure;
-ModuleID = gid_Module_Root_Ure_Hidden;
-Section = Version;
-Key = ProductMajor;
-Value = productmajor;
-End
-
-ProfileItem gid_Ure_Profileitem_Version_Productminor
-ProfileID = gid_Profile_Version_Ini_Ure;
-ModuleID = gid_Module_Root_Ure_Hidden;
-Section = Version;
-Key = ProductMinor;
-Value = productminor;
-End
-
-ProfileItem gid_Ure_Profileitem_Version_Productbuildid
-ProfileID = gid_Profile_Version_Ini_Ure;
-ModuleID = gid_Module_Root_Ure_Hidden;
-Section = Version;
-Key = ProductBuildid;
-Value = productbuildid;
-End
-
-ProfileItem gid_Ure_Profileitem_Version_Ooobaseversion
-ProfileID = gid_Profile_Version_Ini_Ure;
-ModuleID = gid_Module_Root_Ure_Hidden;
-Section = Version;
-Key = OOOBaseVersion;
-Value = ${OOOBASEVERSION};
-End
-
 // Windows Registry:
 
 RegistryItem gid_Regitem_Path
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: writerfilter/source

2011-11-09 Thread Noel Power
 writerfilter/source/rtftok/rtfdocumentimpl.cxx |9 +
 1 file changed, 9 insertions(+)

New commits:
commit 02c6f5c74b346f1e3a095d99a36ece6b603bc26b
Author: Noel Power noel.po...@novell.com
Date:   Wed Nov 9 14:36:28 2011 +

fix rtf image import ( causing wrong image sometimes displayed ) fdo#42640

diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.cxx 
b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
index 50664df..96c0add 100644
--- a/writerfilter/source/rtftok/rtfdocumentimpl.cxx
+++ b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
@@ -44,6 +44,8 @@
 #include svl/lngmisc.hxx
 #include unotools/ucbstreamhelper.hxx
 #include unotools/streamwrap.hxx
+#include com/sun/star/drawing/XDrawPageSupplier.hpp
+#include com/sun/star/drawing/XDrawPage.hpp
 
 #include doctok/sprmids.hxx // NS_sprm namespace
 #include doctok/resourceids.hxx // NS_rtf namespace
@@ -590,6 +592,13 @@ int RTFDocumentImpl::resolvePict(bool bInline)
 if (m_xModelFactory.is())
 xShape.set(m_xModelFactory-createInstance(aService), uno::UNO_QUERY);
 uno::Referencebeans::XPropertySet xPropertySet(xShape, uno::UNO_QUERY);
+uno::Referencedrawing::XDrawPageSupplier xDrawSupplier( m_xDstDoc, 
uno::UNO_QUERY);
+if ( xDrawSupplier.is() )
+{
+uno::Reference drawing::XShapes  xShapes( 
xDrawSupplier-getDrawPage(), uno::UNO_QUERY );
+if ( xShapes.is() )
+xShapes-add( xShape );
+}
 if (m_bObject)
 {
 // Set bitmap
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: cui/source sfx2/inc sw/source

2011-11-09 Thread Caolán McNamara
 cui/source/tabpages/border.cxx   |   11 ---
 cui/source/tabpages/swpossizetabpage.cxx |5 -
 sfx2/inc/sfx2/htmlmode.hxx   |1 -
 sw/source/ui/config/viewopt.cxx  |4 ++--
 sw/source/ui/frmdlg/frmpage.cxx  |7 ---
 sw/source/ui/frmdlg/wrap.cxx |   21 -
 6 files changed, 2 insertions(+), 47 deletions(-)

New commits:
commit 090454c4c99498a79d87c55e1903132bd068d810
Author: Harri Pitkänen hatap...@iki.fi
Date:   Tue Nov 8 19:36:21 2011 +0200

Enable features behind HTMLMODE_FULL_ABS_POS for all HTML export modes

HTMLMODE_FULL_ABS_POS appears to have been used for enabling accurate
margin settings for absolutely positioned graphics objects. If it was
disabled one could not set (in HTML editor mode) separate margins for
left and right (or bottom/top) sides of the image. The setting was
disabled for Netscape and enabled for other browsers.

This patch removes the setting and unconditionally enables the feature
in HTML editor mode. All modern browsers support
margin-{left,right,bottom,top} CSS properties.

diff --git a/cui/source/tabpages/border.cxx b/cui/source/tabpages/border.cxx
index 98d62e9..d6c474f 100644
--- a/cui/source/tabpages/border.cxx
+++ b/cui/source/tabpages/border.cxx
@@ -559,17 +559,6 @@ void SvxBorderTabPage::Reset( const SfxItemSet rSet )
 aLbShadowColor.Disable();
 aFlShadow .Disable();
 
-sal_uInt16 nLBCount = aLbLineStyle.GetEntryCount();
-// ist es ein Absatzdialog, dann alle Linien fuer
-// Sw-Export, sonst ist die Page nicht da
-if(!(mbHorEnabled || mbVerEnabled)
-  0 == (nHtmlMode  HTMLMODE_FULL_ABS_POS) 
-SFX_ITEM_AVAILABLE  rSet.GetItemState(GetWhich( 
SID_ATTR_PARA_LINESPACE )))
-{
-for( sal_uInt16 i = nLBCount - 1; i  LINESTYLE_HTML_MAX; --i)
-aLbLineStyle.RemoveEntry(i);
-}
-
 if( !(nSWMode  SW_BORDER_MODE_TABLE) )
 {
 aUserDefFT.Disable();
diff --git a/cui/source/tabpages/swpossizetabpage.cxx 
b/cui/source/tabpages/swpossizetabpage.cxx
index 2d08ded..7874eaa 100644
--- a/cui/source/tabpages/swpossizetabpage.cxx
+++ b/cui/source/tabpages/swpossizetabpage.cxx
@@ -895,11 +895,6 @@ void SvxSwPosSizeTabPage::Reset( const SfxItemSet rSet)
 
 if(m_bHtmlMode)
 {
-if( 0 == (m_nHtmlMode  HTMLMODE_FULL_ABS_POS))
-{
-m_aHeightFT .Enable( sal_False );
-m_aHeightMF .Enable( sal_False );
-}
 if( 0 == (m_nHtmlMode  HTMLMODE_SOME_ABS_POS))
 {
 if(GetAnchorType() == TextContentAnchorType_AT_PAGE)
diff --git a/sfx2/inc/sfx2/htmlmode.hxx b/sfx2/inc/sfx2/htmlmode.hxx
index ce1af6f..65e41f6 100644
--- a/sfx2/inc/sfx2/htmlmode.hxx
+++ b/sfx2/inc/sfx2/htmlmode.hxx
@@ -37,7 +37,6 @@
 #define HTMLMODE_PARA_BLOCK 0x0100
 #define HTMLMODE_DROPCAPS   0x0200
 #define HTMLMODE_FIRSTLINE  0x0400 /* First-line intent with Spacer == 
NS 3.0 */
-#define HTMLMODE_FULL_ABS_POS   0x1000
 #define HTMLMODE_SOME_ABS_POS   0x2000
 #define HTMLMODE_RESERVED1  0x4000
 #define HTMLMODE_RESERVED0  0x8000
diff --git a/sw/source/ui/config/viewopt.cxx b/sw/source/ui/config/viewopt.cxx
index a34679c..32093ab 100644
--- a/sw/source/ui/config/viewopt.cxx
+++ b/sw/source/ui/config/viewopt.cxx
@@ -340,7 +340,7 @@ sal_uInt16  GetHtmlMode(const SwDocShell* pShell)
 {
 case HTML_CFG_MSIE:
 nRet |= HTMLMODE_FULL_STYLES|
-HTMLMODE_FULL_ABS_POS|HTMLMODE_SOME_ABS_POS;
+HTMLMODE_SOME_ABS_POS;
 break;
 case HTML_CFG_NS40:
 nRet |= HTMLMODE_FRM_COLUMNS|
@@ -349,7 +349,7 @@ sal_uInt16  GetHtmlMode(const SwDocShell* pShell)
 case HTML_CFG_WRITER:
 nRet |= HTMLMODE_FRM_COLUMNS|HTMLMODE_FULL_STYLES|
 HTMLMODE_DROPCAPS|
-HTMLMODE_FULL_ABS_POS|HTMLMODE_SOME_ABS_POS;
+HTMLMODE_SOME_ABS_POS;
 break;
 }
 }
diff --git a/sw/source/ui/frmdlg/frmpage.cxx b/sw/source/ui/frmdlg/frmpage.cxx
index b321d49..744ab01 100644
--- a/sw/source/ui/frmdlg/frmpage.cxx
+++ b/sw/source/ui/frmdlg/frmpage.cxx
@@ -908,13 +908,6 @@ void SwFrmPage::Reset( const SfxItemSet rSet )
 
 if(bHtmlMode)
 {
-if(nDlgType == DLG_FRM_STD 
-0 == (nHtmlMode  HTMLMODE_FULL_ABS_POS))
-{
-aHeightFT   .Enable( sal_False );
-aHeightED   .Enable( sal_False );
-aRelHeightCB.Enable( sal_False );
-}
 if( 0 == (nHtmlMode  HTMLMODE_SOME_ABS_POS))
 {
 if (GetAnchor() == FLY_AT_PAGE)
diff --git a/sw/source/ui/frmdlg/wrap.cxx b/sw/source/ui/frmdlg/wrap.cxx
index 

[Libreoffice-commits] .: sc/source svl/inc svl/source sw/source unusedcode.easy

2011-11-09 Thread Caolán McNamara
 sc/source/filter/html/htmlexp.cxx  |   35 +++---
 sc/source/filter/inc/htmlexp.hxx   |5 +---
 svl/inc/svl/svstdarr.hxx   |5 
 svl/source/memtools/svarray.cxx|1 
 sw/source/filter/writer/writer.cxx |   38 ++---
 unusedcode.easy|5 
 6 files changed, 29 insertions(+), 60 deletions(-)

New commits:
commit ff9fab243bb8f746077dbbc2d7d3a76616647839
Author: Daisuke Nishino niboshi...@gmail.com
Date:   Wed Nov 9 22:16:38 2011 +0900

Removed SvStringsSortDtor

diff --git a/sc/source/filter/html/htmlexp.cxx 
b/sc/source/filter/html/htmlexp.cxx
index 8510edf..25f967b 100644
--- a/sc/source/filter/html/htmlexp.cxx
+++ b/sc/source/filter/html/htmlexp.cxx
@@ -243,8 +243,6 @@ ScHTMLExport::ScHTMLExport( SvStream rStrmP, const String 
rBaseURL, ScDocument
 aBaseURL( rBaseURL ),
 aStreamPath( rStreamPathP ),
 pAppWin( Application::GetDefaultDevice() ),
-pSrcArr( NULL ),
-pDestArr( NULL ),
 nUsedTables( 0 ),
 nIndent( 0 ),
 bAll( bAllP ),
@@ -294,8 +292,6 @@ ScHTMLExport::ScHTMLExport( SvStream rStrmP, const String 
rBaseURL, ScDocument
 ScHTMLExport::~ScHTMLExport()
 {
 aGraphList.clear();
-delete pSrcArr;
-delete pDestArr;
 }
 
 
@@ -1313,31 +1309,30 @@ sal_Bool ScHTMLExport::CopyLocalFileToINet( String 
rFileNm,
INET_PROT_FTP = aTargetUrl.GetProtocol() 
INET_PROT_NEWS = aTargetUrl.GetProtocol()) ) )
 {
-if( pSrcArr )
+if( pFileNameMap )
 {
 // wurde die Datei schon verschoben
-sal_uInt16 nPos;
-if( pSrcArr-Seek_Entry( rFileNm, nPos ))
+std::mapString, String::iterator it = pFileNameMap-find( 
rFileNm );
+if( it != pFileNameMap-end() )
 {
-rFileNm = *(*pDestArr)[ nPos ];
+rFileNm = it-second;
 return sal_True;
 }
 }
 else
 {
-pSrcArr = new SvStringsSortDtor( 4, 4 );
-pDestArr = new SvStringsSortDtor( 4, 4 );
+pFileNameMap.reset( new std::mapString, String() );
 }
 
-String* pSrc = new String( rFileNm );
 SvFileStream aTmp( aFileUrl.PathToFileName(), STREAM_READ );
 
-String* pDest = new String( aTargetUrl.GetPartBeforeLastName() );
-*pDest += String(aFileUrl.GetName());
+String aSrc = rFileNm;
+String aDest = aTargetUrl.GetPartBeforeLastName();
+aDest += String(aFileUrl.GetName());
 
 if( bFileToFile )
 {
-INetURLObject aCpyURL( *pDest );
+INetURLObject aCpyURL( aDest );
 SvFileStream aCpy( aCpyURL.PathToFileName(), STREAM_WRITE );
 aCpy  aTmp;
 
@@ -1346,7 +1341,7 @@ sal_Bool ScHTMLExport::CopyLocalFileToINet( String 
rFileNm,
 }
 else
 {
-SfxMedium aMedium( *pDest, STREAM_WRITE | STREAM_SHARE_DENYNONE,
+SfxMedium aMedium( aDest, STREAM_WRITE | STREAM_SHARE_DENYNONE,
 false );
 
 {
@@ -1363,14 +1358,8 @@ sal_Bool ScHTMLExport::CopyLocalFileToINet( String 
rFileNm,
 
 if( bRet )
 {
-pSrcArr-Insert( pSrc );
-pDestArr-Insert( pDest );
-rFileNm = *pDest;
-}
-else
-{
-delete pSrc;
-delete pDest;
+pFileNameMap-insert( std::make_pair( aSrc, aDest ) );
+rFileNm = aDest;
 }
 }
 
diff --git a/sc/source/filter/inc/htmlexp.hxx b/sc/source/filter/inc/htmlexp.hxx
index 286997e..ecf90b4 100644
--- a/sc/source/filter/inc/htmlexp.hxx
+++ b/sc/source/filter/inc/htmlexp.hxx
@@ -34,6 +34,7 @@
 #include tools/gen.hxx
 #include tools/color.hxx
 #include boost/ptr_container/ptr_vector.hpp
+#include boost/scoped_ptr.hpp
 
 #include expbase.hxx
 
@@ -45,7 +46,6 @@ class Graphic;
 class SdrObject;
 class OutputDevice;
 class ScDrawLayer;
-class SvStringsSortDtor;
 class ScEditCell;
 
 namespace editeng { class SvxBorderLine; }
@@ -109,8 +109,7 @@ class ScHTMLExport : public ScExportBase
 String  aStreamPath;
 String  aCId;   // Content-Id fuer Mail-Export
 OutputDevice*   pAppWin;// fuer Pixelei
-SvStringsSortDtor*  pSrcArr;// fuer CopyLocalFileToINet
-SvStringsSortDtor*  pDestArr;
+boost::scoped_ptr std::mapString, String   pFileNameMap;// 
fuer CopyLocalFileToINet
 String  aNonConvertibleChars;   // collect nonconvertible 
characters
 rtl_TextEncodingeDestEnc;
 SCTAB   nUsedTables;
diff --git a/svl/inc/svl/svstdarr.hxx b/svl/inc/svl/svstdarr.hxx
index 3d3cc80..79c95c1 100644
--- a/svl/inc/svl/svstdarr.hxx
+++ b/svl/inc/svl/svstdarr.hxx
@@ -57,11 +57,6 @@ SV_DECL_PTRARR_DEL_VISIBILITY( SvStringsDtor, StringPtr, 1, 
1, SVL_DLLPUBLIC )
 #define 

[Libreoffice-commits] .: editeng/source

2011-11-09 Thread Caolán McNamara
 editeng/source/editeng/impedit3.cxx |3 ---
 1 file changed, 3 deletions(-)

New commits:
commit 3f9df85defed04730fda2c862810b505579fb958
Author: Christina Rossmanith chrrossman...@web.de
Date:   Wed Nov 9 16:59:47 2011 +

_SVSTDARR_sal_uIt16S is a typo and doesn't do anything

diff --git a/editeng/source/editeng/impedit3.cxx 
b/editeng/source/editeng/impedit3.cxx
index 83695cf..bdf1bbd 100644
--- a/editeng/source/editeng/impedit3.cxx
+++ b/editeng/source/editeng/impedit3.cxx
@@ -36,9 +36,6 @@
 #include vcl/metaact.hxx
 #include vcl/gdimtf.hxx
 
-#define _SVSTDARR_sal_uIt16S
-#include svl/svstdarr.hxx
-
 #include vcl/wrkwin.hxx
 #include editeng/adjitem.hxx
 #include editeng/tstpitem.hxx
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: readlicense_oo/docs

2011-11-09 Thread Andras Timar
 readlicense_oo/docs/readme/readme.xrm |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 05a28af29272c73f7789f7c7548a44fa34aa3116
Author: Andras Timar ati...@suse.com
Date:   Wed Nov 9 23:57:07 2011 +0100

JRE is _not_ part of LibreOffice install packages

diff --git a/readlicense_oo/docs/readme/readme.xrm 
b/readlicense_oo/docs/readme/readme.xrm
index 8bcf7ca..71e6214 100755
--- a/readlicense_oo/docs/readme/readme.xrm
+++ b/readlicense_oo/docs/readme/readme.xrm
@@ -29,7 +29,7 @@
 
div id=Installation
h2 id=rr3fgf42r xml:lang=en-USNotes on 
Installation/h2
-   p class=note id=javaneeded 
xml:lang=en-US${PRODUCTNAME} requires a recent version of JAVA for full 
functionality which is part of the ${PRODUCTNAME} installation package./p
+   p class=note id=javaneeded 
xml:lang=en-US${PRODUCTNAME} requires a recent version of Java Runtime 
Environment (JRE) for full functionality. JRE is not part of the ${PRODUCTNAME} 
installation package, it should be installed separately./p
h3 id=sdfsdfgf42r xml:lang=en-USSystem 
Requirements/h3
div class=MAC id=SystemRequirements_OSX
ul
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: 7 commits - cppunit/android.patch cppunit/makefile.mk cppunit/prj curl/curl-android.patch curl/makefile.mk libxml2/libxml2-android.patch libxml2/makefile.mk libxml2/prj libxsl

2011-11-09 Thread Tor Lillqvist
 README.cross  |   14 +++---
 cppunit/android.patch |1 -
 cppunit/makefile.mk   |8 +++-
 cppunit/prj/d.lst |3 +++
 curl/curl-android.patch   |   15 +++
 curl/makefile.mk  |5 +
 libxml2/libxml2-android.patch |   15 +++
 libxml2/makefile.mk   |4 
 libxml2/prj/d.lst |1 +
 libxslt/libxslt-android.patch |   15 +++
 libxslt/makefile.mk   |4 
 libxslt/prj/d.lst |2 ++
 sal/prj/d.lst |1 +
 solenv/inc/_tg_shl.mk |   40 
 solenv/inc/tg_shl.mk  |4 ++--
 solenv/inc/unx.mk |2 +-
 16 files changed, 102 insertions(+), 32 deletions(-)

New commits:
commit 12fea3754acabadb5f6e267497cbc9ab9e3da274
Author: Tor Lillqvist tlillqv...@suse.com
Date:   Thu Nov 10 01:22:03 2011 +0200

Make also the libxslt library file names end in .so for Android

diff --git a/libxslt/libxslt-android.patch b/libxslt/libxslt-android.patch
new file mode 100644
index 000..68069d6
--- /dev/null
+++ b/libxslt/libxslt-android.patch
@@ -0,0 +1,15 @@
+--- misc/libxslt-1.1.26/ltmain.sh
 misc/build/libxslt-1.1.26/ltmain.sh
+@@ -3228,6 +3228,12 @@
+ func_warning \`-release' is ignored for convenience libraries
+   else
+ 
++  # Force no versioning suffix for Android thanks to silly
++  # apkbuilder which doesn't add extra native libs unless their
++  # name ends with .so
++
++  version_type=none
++
+   # Parse the version information argument.
+   save_ifs=$IFS; IFS=':'
+   set dummy $vinfo 0 0 0
diff --git a/libxslt/makefile.mk b/libxslt/makefile.mk
index f884c35..2bec8bd 100644
--- a/libxslt/makefile.mk
+++ b/libxslt/makefile.mk
@@ -59,6 +59,10 @@ PATCH_FILES=libxslt-configure.patch \
 libxslt-aix.patch \
 libxslt-vc10.patch
 
+.IF $(OS)==ANDROID
+PATCH_FILES+= libxslt-android.patch
+.ENDIF
+
 # This is only for UNX environment now
 .IF $(OS)==WNT
 .IF $(COM)==GCC
diff --git a/libxslt/prj/d.lst b/libxslt/prj/d.lst
index 74f759e..0627cc1 100644
--- a/libxslt/prj/d.lst
+++ b/libxslt/prj/d.lst
@@ -2,8 +2,10 @@ mkdir: %_DEST%\inc\external\libxslt
 ..\%__SRC%\inc\*.h %_DEST%\inc\external\libxslt\*.h
 ..\%__SRC%\lib\libxslt.so.1 %_DEST%\lib\libxslt.so.1
 symlink: %_DEST%\lib\libxslt.so.1 %_DEST%\lib\libxslt.so
+..\%__SRC%\lib\libxslt.so %_DEST%\lib\libxslt.so
 ..\%__SRC%\lib\libexslt.so.0 %_DEST%\lib\libexslt.so.0
 symlink: %_DEST%\lib\libexslt.so.0 %_DEST%\lib\libexslt.so
+..\%__SRC%\lib\libexslt.so %_DEST%\lib\libexslt.so
 ..\%__SRC%\lib\libxslt*.* %_DEST%\lib\libxslt*.*
 ..\%__SRC%\lib\lib*.dll.a %_DEST%\lib\*.a
 ..\%__SRC%\bin\lib*.dll %_DEST%\bin
commit 90324ccc737805cd5adc3da0e1b078847cfa998d
Author: Tor Lillqvist tlillqv...@suse.com
Date:   Thu Nov 10 01:17:25 2011 +0200

Make also the libxml2 library file name end in .so for Android

diff --git a/libxml2/libxml2-android.patch b/libxml2/libxml2-android.patch
new file mode 100644
index 000..cbc9ff4
--- /dev/null
+++ b/libxml2/libxml2-android.patch
@@ -0,0 +1,15 @@
+--- misc/libxml2-2.7.6/ltmain.sh
 misc/build/libxml2-2.7.6/ltmain.sh
+@@ -3228,6 +3228,12 @@
+ func_warning \`-release' is ignored for convenience libraries
+   else
+ 
++  # Force no versioning suffix for Android thanks to silly
++  # apkbuilder which doesn't add extra native libs unless their
++  # name ends with .so
++
++  version_type=none
++
+   # Parse the version information argument.
+   save_ifs=$IFS; IFS=':'
+   set dummy $vinfo 0 0 0
diff --git a/libxml2/makefile.mk b/libxml2/makefile.mk
index 098d30b..1d125c1 100644
--- a/libxml2/makefile.mk
+++ b/libxml2/makefile.mk
@@ -63,6 +63,10 @@ PATCH_FILES+= libxml2-mingw.patch
 .ENDIF
 .ENDIF
 
+.IF $(OS)==ANDROID
+PATCH_FILES+= libxml2-android.patch
+.ENDIF
+
 # This is only for UNX environment now
 
 .IF $(OS)==WNT
diff --git a/libxml2/prj/d.lst b/libxml2/prj/d.lst
index e28c52e..6e7bbb4 100644
--- a/libxml2/prj/d.lst
+++ b/libxml2/prj/d.lst
@@ -2,6 +2,7 @@ mkdir: %_DEST%\inc\external\libxml
 ..\%__SRC%\inc\libxml\*.h %_DEST%\inc\external\libxml\*.h
 ..\%__SRC%\lib\libxml2.so.2 %_DEST%\lib\libxml2.so.2
 symlink: %_DEST%\lib\libxml2.so.2 %_DEST%\lib\libxml2.so
+..\%__SRC%\lib\libxml2.so %_DEST%\lib\libxml2.so
 ..\%__SRC%\lib\*.lib %_DEST%\lib
 ..\%__SRC%\lib\libxml2.dll.a %_DEST%\lib\libxml2.dll.a
 ..\%__SRC%\lib\libxml2.a %_DEST%\lib\libxml2.a
commit f52415847cd253af7e8b768ea945daeed8b6
Author: Tor Lillqvist tlillqv...@suse.com
Date:   Thu Nov 10 01:10:19 2011 +0200

Make also the libcurl library end in .so for Android

diff --git a/curl/curl-android.patch b/curl/curl-android.patch
new file mode 100644
index 000..130c88d
--- /dev/null
+++ b/curl/curl-android.patch
@@ -0,0 +1,15 @@
+--- misc/curl-7.19.7/ltmain.sh
 misc/build/curl-7.19.7/ltmain.sh
+@@ -3228,6 

Re: [Libreoffice] Extension dependencies

2011-11-09 Thread Stephan Bergmann

On 11/04/2011 01:33 PM, Eike Rathke wrote:

On Friday, 2011-11-04 13:02:02 +0100, Thorsten Behrens wrote:

I'd tend to give the fine-grained dependencies a try.


That won't work in practice, unless those can be
(semi-)automatically generated. Experience shows that all
programmers are lazy, and seldomly go extra miles.


Seconded, but some do, if it's achievable without a hyper-duper
incomprehensible framework.. Would it be possible to have both, a simple
version dependency, and if fine grained dependencies are present use
those as well?


Not sure if that's not starting to become overengineered, then.  The 
past has shown that most extension writers (even including core 
developers from inside HH that would have benefited from short and 
direct communication channels) are rather happy with quick and dirty 
dependencies (in some cases, it even looks like they are simply copied 
over from some other extension blueprint), so---if both a coarse grained 
and fine grained dependencies were available---would probably only 
bother to use the coarse grained, anyway.


Its true that this past experience looks counter to my enthusiasm to 
give the fine-grained dependencies a try---maybe I was too enthusiastic 
indeed.  Its also true that some mechanism to mechanically compute 
fine-grained dependencies for a given extension would be helpful, but 
I'm not sure the work is worth it.  (But volunteers are surely welcome!)


The good thing about those dependencies is that we could in principle 
wait until some extension developer expresses demand for one, either 
fine or coarse grained, and only then implement it.  Again in practice, 
however, that's not how it has turned out to work.  Extension developers 
make use of the dependencies they find available and rarely bother to 
ask for additional ones.  (And I don't blame them; this is surely 
tedious stuff where everybody is happy taking the easy way out.)


So, I think I will just introduce a new LibreOffice-minimal-version 
dependency after all.


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


Re: [Libreoffice] Windows Tinderbox

2011-11-09 Thread Michael Meeks
Hi Fridrich,

On Wed, 2011-11-09 at 09:42 +0100, Fridrich Strba wrote:
 So the Windows (MSVC) tinderbox produced a build second time in a row. I
 know that you were annoyed by its message every day or so during the
 ~two months. Just to avoid that anew, please, start to pay attention to
 it again, because if you are spammed by it now, you might actually have
 been the one who broke it.

Whoot ;-) now if we could get past the extensions/ npapi issues perhaps
we'd only have a broken android tinderbox ;-)

An encouraging milestone - can you please use the:

./g --set-last-working
./g --push-notes

thing so that we've got this milestone tagged ? :-)

Thanks,

Michael.

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

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


[Libreoffice] Language dependent testing coverage you are interested.

2011-11-09 Thread Yifan Jiang
Hi all,

I was create more Language Dependent Testing Cases in our Litmus manual test
cases management tool, and the items appended are some fields I ever
concerned. Would you help share your ideas and the areas you are concerning
which has a need of regression testing :) Thanks!

- Spellcheck, Grammarcheck and Thesaurus

- Hyphenation check

- Templates

- Help content

- Eastern Asian language support

- RTL specific problems

Best wishes,
Yifan
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice] [PUSHED] 'clean writer' ... Change ANKER to ANCHOR (fdo#42455)

2011-11-09 Thread Michael Meeks
Hi Michael,

On Tue, 2011-11-08 at 19:20 +0100, Michael Stahl wrote:
 they are not pre-processed in any usual way it seems, so i hacked svidl 
 to write out GNU make dependencies, which turned out to be surprisingly 
 simple.

Awesome - you rock ;-) thanks for that, gnumake makes the incremental
build experience simply amazingly pleasant compared to the past, and
ridding us of this wrinkle makes it that much more perfect.

Thanks !

Michael.

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

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


[Libreoffice] Importing StarMath component in an import filter

2011-11-09 Thread Lubos Lunak

 Hello,

 I'm trying to implement importing of formulas and I'm seriously struggling to 
find out how to insert the StarMath component into the Writer document. I 
tried to look at other filters but, quite frankly, I find it so 
overcomplicated that I just don't get it. To add to the problem the import 
filter is writerfilter (which presents me with the additional problem of 
dealing with UNO) and the formula is stored as a part of the xml file and not 
as a separate storage (which seems to be the common case).

 Does somebody know how this stuff works or can at least point me to the right 
places in the code? Thanks.

-- 
 Lubos Lunak
 l.lu...@suse.cz
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice] Proofing API Performance

2011-11-09 Thread Tino Didriksen
I am making spelling/grammar/hyphenation extensions that query a remote
service, and have some performance issues that I hope there are existing
solutions for. In all cases, the extensions must work with check
spelling/grammar as you type enabled.

- How can I limit the request rate or make it smarter?
Currently, LO seems to call the API for every word (or even letter) typed,
which is incredibly wasteful as grammar checking only makes sense at
sentence level. I also don't really want the whole paragraph at each call;
just the last finished sentence.

- Why doesn't LO remember the results?
It draws the squigglies, but it then calls the checker again when
right-clicking on an error, even if no changes are made in the interim. I
can cache this in the extension, but it feels like something that should be
handled in LO itself.

In general, it feels like as you type incurs 50x more calls than needed.
So if I missed some obvious option toggle or existing solution, I'd love to
know.

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


Re: [Libreoffice] Windows Tinderbox

2011-11-09 Thread Rainer Bielefeld

Fridrich Strba schrieb:


So the Windows (MSVC) tinderbox produced a build second time in a row.


Hi,

http://upload.wikimedia.org/wikipedia/de/f/f4/Armstrong_Small_Step.wav

:-)

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


[Libreoffice] [Bug 35673] LibreOffice 3.4 most annoying bugs

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35673

vitriol vitriol_vitr...@katamail.com changed:

   What|Removed |Added

 Depends on||42723

--- Comment #230 from vitriol vitriol_vitr...@katamail.com 2011-11-08 
22:45:18 PST ---
Nominating Bug 42723. A nasty UI regression bug.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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] [Bug 35673] LibreOffice 3.4 most annoying bugs

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35673

vitriol vitriol_vitr...@katamail.com changed:

   What|Removed |Added

 Depends on|42723   |40948

--- Comment #231 from vitriol vitriol_vitr...@katamail.com 2011-11-08 
22:48:57 UTC ---
(In reply to comment #230)

 Bug 42723

Sorry, is Bug 40948

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice] [PUSHED-3-4-4] Background image missing in 3.4.4rc1 Mac OSX DMG

2011-11-09 Thread Uwe Altmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi

Am 01.11.11 14:38, schrieb Thorsten Behrens:
 Thanks guys, with your approvals  the feedback I got on irc,
 pushed to -3-4-4.

Bad news: The langpacks (at least
LibO_3.4.4_MacOS_x86_langpack_de.dmg) are affected too :-(

- -- 
Mit freundlichen Grüßen
Uwe Altmann
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (Darwin)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk66d9wACgkQOTVzivhNo0IQSwCfaBz78UJzNJWqN05l5qZtFkev
GLQAoNP1MFH0Izb1hCoNyjB5cthS7UtF
=yPqW
-END PGP SIGNATURE-
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice] SDK LibreOffice How to get document as object?

2011-11-09 Thread MarcinGutman
 I want to develop an addon...
 ...
 I already have some  converter-methods...
 ...
 The only thing I need is to get access
 to the opened document in some Java object(s).

For me it sounds like you have some advanced things but you lack the
L/OOo basics. Also I don't now how skilled you are so forgive me if
these things are obvious to you:

Use search on:
http://api.openoffice.org/
(which really is a google wrapper via site: tag,
i.e. google: get writer document java site:openoffice.org

In java you start with the office context to get the office desktop then
you can go deeper. In generally you take an object then query an
interface to obtain a deeper object:

Destkop:
=
   XMultiComponentFactory xmcf = m_xContext.getServiceManager();
   Object desktopFrame = xmcf.createInstanceWithContext(
   com.sun.star.frame.Desktop, m_xContext);
   desktop = (XDesktop) UnoRuntime.queryInterface(XDesktop.class,
   desktopFrame);

I don't have an example of a text document so instead you have a
spreadsheet example:

Active sheet:
=
   XDesktop desk = ...
   XComponent currCompon = desk.getCurrentComponent();
   XModel model =
   (XModel) UnoRuntime.queryInterface(XModel.class, currCompon);
   XController spreadshCtrl = model.getCurrentController();
   XSpreadsheetView spreadshView =
   (XSpreadsheetView) UnoRuntime.queryInterface(
   XSpreadsheetView.class, spreadshCtrl);
   XSpreadsheet sheet = spreadshView.getActiveSheet();

I don't know how skilled you are but I suggest to start with macro in
basic using MRI:
http://extensions.services.openoffice.org/project/MRI

With MRI you can figure out which interface you can obtain from which
object and vice versa. (Notice that MRI generates a code, use bottom
splitter to show a window with a code).

Also you can use:
http://api.openoffice.org/
e.g.
http://api.openoffice.org/docs/common/ref/com/sun/star/sheet/XSpreadsheet.html

Previous java code reflects this line in basic:
   ThisComponent.CurrentController.ActiveSheet

So, we can say that every dot is replaced by, more or less:
   XNextObject nextObject =
  (XNextObject) UnoRuntime.queryInterface(
  XNextObject.class, previousObject);

Finally, a tricky part is to know which interface can be queried from
which object and on what object you can cast an obtained interface.

 I'd strongly recommend doing it as native C++ in the core - it'll be
 very substantially faster, and of course we can then ship it with the
 core product.

As I mentioned before it depends on programming skills. I suggest to
start with a macro in basic to find all needed objects an interfaces.
Then translate it into java. Finally if then extension hits at least
10.000 downloads then rewrite it in C++ to merge it with the core
product.
Everybody are talking about speed but the truth is that in 90% of cases
the slowest part of the system is a user which uses only one finger to
write and must look at the keyboard to do this ;)

 Hope this will help you to better understand my requirements. I even 
 donot know if it IS possible or not? Perhaps there is no interface for
 this kind of data-processing.

Think about what data do you want to export e.g. do you want to get only
pure text or a text with paragraphs or even with tables. Does an export
format supports paragraphs and tables? If yes then you need to write a
function that maps paragraphs between formats. I.e.:
- get Writer document
- get all paragraphs
- create paragraphs in an export format
- loop over Writer document paragraphs to get text
- fill paragraphs in an export format using obtained text

At the beginning don't try to map all information from Writer document.
First try to get pure text from the first page and put it into exported
document. Then try to loop over all Writer pages. Then add paragraphs
and so on..

Of course at the very beginning you should write a macro in basic that
lists all pages from Writer document.

Best Regards,
Marcin

PS
Here
http://extensions.services.openoffice.org
find some extensions with available source code that export L/OOo
documents e.g.
http://extensions.services.openoffice.org/en/project/ooo2gd


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


[Libreoffice] [PATCH] Removed SvStringsSortDtor

2011-11-09 Thread Daisuke Nishino
Caolán,

Thank you for your comments.
Here is the patch.

Cheers,

On Wed, Nov 9, 2011 at 12:01 AM, Caolán McNamara caol...@redhat.com wrote:

 On Tue, 2011-11-08 at 22:43 +0900, Daisuke Nishino wrote:
  Hi all,
 
  I removed some uses of SvStringsSortDtor, which is listed in
  http://wiki.documentfoundation.org/Easy_Hacks#Easy_Hacks

 Looks good (Initially I thought there was a few vectors with potential
 dups in them before I scrolled down a bit to see the sort, unique,
 erase :-)). So pushed, thanks for these.

  Looking at htmlexp.cxx:1320, pSrcArr is used to lookup for an index of
  a string, and then the index is applied to pDstArr.
  In my understanding indices of two arrays are unrelated, because
  arrays are sorted by their respective contents.

 Yeah, it's puzzling. Original code doesn't look right at all.

  I guess what is intended here is mapping of strings, from pSrcArr to
  pDstArr (with incorrect implementation).

 The intent seems fairly clear anyway, so it looks like a std::map
 identifier-filename is what's wanted.

 C.




-- 
Daisuke Nishino


0001-Removed-SvStringsSortDtor.core.patch
Description: Binary data
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice] [Bug 35673] LibreOffice 3.4 most annoying bugs

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35673

Bug 35673 depends on bug 42714, which changed state.

Bug 42714 Summary: [EDITING] report builder: copy/paste of control - segfault
https://bugs.freedesktop.org/show_bug.cgi?id=42714

   What|Old Value   |New Value

 Resolution||DUPLICATE
 Status|UNCONFIRMED |RESOLVED

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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] [Bug 37361] LibreOffice 3.5 most annoying bugs

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

Bug 37361 depends on bug 42640, which changed state.

Bug 42640 Summary: FILEOPEN: Impress shows a picture different from the image 
stored in the file
https://bugs.freedesktop.org/show_bug.cgi?id=42640

   What|Old Value   |New Value

 Resolution||FIXED
 Status|NEW |RESOLVED

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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] [Bug 35673] LibreOffice 3.4 most annoying bugs

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35673

Bug 35673 depends on bug 39928, which changed state.

Bug 39928 Summary: VIEWING: pictures in particular .doc shown wrong, picture 
size correct, but contents shrunken and surrounded by white margin.
https://bugs.freedesktop.org/show_bug.cgi?id=39928

   What|Old Value   |New Value

 Resolution||FIXED
 Status|NEW |RESOLVED

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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] [Bug 35673] LibreOffice 3.4 most annoying bugs

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35673

Bug 35673 depends on bug 39928, which changed state.

Bug 39928 Summary: VIEWING: pictures in particular .doc shown wrong, picture 
size correct, but contents shrunken and surrounded by white margin.
https://bugs.freedesktop.org/show_bug.cgi?id=39928

   What|Old Value   |New Value

 Resolution|FIXED   |
 Status|RESOLVED|REOPENED

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice] [PUSHED-3-4-4] Background image missing in 3.4.4rc1 Mac OSX DMG

2011-11-09 Thread Thorsten Behrens
Uwe Altmann wrote:
 Bad news: The langpacks (at least
 LibO_3.4.4_MacOS_x86_langpack_de.dmg) are affected too :-(
 
Ah, pity. 3.4.5 then...

Cheers,

-- Thorsten


pgpSVMNWIxz5H.pgp
Description: PGP signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice] [PUSHED][PATCH] Enable features behind HTMLMODE_FULL_ABS_POS for all HTML export modes

2011-11-09 Thread Caolán McNamara
On Tue, 2011-11-08 at 19:52 +0200, Harri Pitkänen wrote:
 This patch removes the setting and unconditionally enables the feature
 in HTML editor mode. All modern browsers support
 margin-{left,right,bottom,top} CSS properties.

Seems reasonable, we have quite a few things in html land which refer to
obsolete old html constraints.

Pushed now, thanks for these.

C.

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


Re: [Libreoffice] [PATCH] make STR_MERGE_NOTEMPTY more understandable

2011-11-09 Thread Eike Rathke
Hi Maxime,

On Monday, 2011-11-07 10:58:13 +0100, Maxime de Roucy wrote:

 I think the STR_MERGE_NOTEMPTY (in sc/source/ui/src/globstr.src ; used
 in Calc when merging cells) is not very understandable for common
 users : Should the contents of the hidden cells be moved into the first
 cell?
 
 I think Would you like to merge the contents of all cells? would be 
 better.

I agree that the dialog's current message maybe isn't the best. A new
string however should somehow describe that when the question is
answered with yes then
* all content of to be merged cells will be removed
* all content will be concatenated
* this new concatenated content will be placed into the first cell of
  the merged cells

merge contents of all cells lacks information, my suggestion would be

Should the contents of all merged cells be concatenated and moved into the 
first cell?

What do you think?

  Eike

-- 
LibreOffice Calc developer. Number formatter stricken i18n transpositionizer.
GnuPG key 0x293C05FD : 997A 4C60 CE41 0149 0DB3  9E96 2F1A D073 293C 05FD


pgpKAFkQRwhoH.pgp
Description: PGP signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice] [PUSHED][PATCH] Removed SvStringsSortDtor

2011-11-09 Thread Caolán McNamara
On Wed, 2011-11-09 at 22:24 +0900, Daisuke Nishino wrote:
 Caolán,
 
 Thank you for your comments.
 Here is the patch.

Looks good to me on a once-over anyway. So that's the end of
SvStringsSortDtor as well. Good to see the back of that as well,
excellent. Pushed.

C.

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


[Libreoffice] [PUSHED] #define never used

2011-11-09 Thread Caolán McNamara
On Mon, 2011-11-07 at 10:52 +0100, Chr. Rossmanith wrote:
 Hi,
 
 I guess,
 
 #define _SVSTDARR_sal_uIt16S( - note the missing 
 'n' in uInt )
 
 which is unique in the code base according to git-grep can be removed?

Pushed the removal of this now, attributed it to you :-)

C.

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


Re: [Libreoffice] Proofing API Performance

2011-11-09 Thread Michael Meeks

On Wed, 2011-11-09 at 14:04 +0200, Tor Lillqvist wrote:
  Currently, LO seems to call the API for every word (or even letter) typed,
  which is incredibly wasteful as grammar checking only makes sense at
  sentence level.

Heh :-) sounds like a beast. Also it's (no doubt) rather annoying for
the Java / LanguageTool use case I suspect.

  I also don't really want the whole paragraph at each call;
  just the last finished sentence.

Right - an interesting concept.

 But what if you have an already finished sentence that has existed
 in the document as such for long, but then go back into it and add or
 delete one character, that changes its grammatical correctness in
 either direction? (For instance, change it's to its.)

Then we need to re-emit that sentence for grammar checking I imagine.
It seems do-able, we'd need to track cursor movement and typing a little
more cleverly (if we're not doing that already).

Would you be interested in improving that in the core? and/or need some
code pointers for that ? presumably it'd enable heavier-duty, more
intelligent grammar checking with the same performance, which'd be
cool ?

All the best,

Michael.

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

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


Re: [Libreoffice] SolidMarkHandles - [PATCH] removed leftovers of the Simple Handles option

2011-11-09 Thread Tim Hardeck
Hi,

I have created a patch to remove the leftovers mentioned here and some
additional I have found.

Tim

On 11/08/2011 10:29 PM, Stephan Bergmann wrote:
 Hi all,

 Looks like
 http://cgit.freedesktop.org/libreoffice/core/commit/?id=ec4f69493b50c15861b0cdcc290ecedd00efb51d
 removed Simple Handles option removed support for SolidMarkHandles
 property from sw/source/ui/uno/unomod.cxx while it is still listed in
 offapi/com/sun/star/text/ViewSettings.idl and checked in qadevOOo
 (mentioned in
 qadevOOo/objdsc/sw/com.sun.star.comp.office.SwXViewSettings.csv,
 qadevOOo/tests/basic/ifc/text/ViewSettings/test_ViewSettings.xba, and
 qadevOOo/tests/java/ifc/text/_ViewSettings.java), and so broke
 sw_unoapi subsequenttest:

 Creating: sw.SwXViewSettings
 [...]
 LOG Execute: SolidMarkHandles
 LOG Tested XPropertySet does not contain'SolidMarkHandles' property
 Method SolidMarkHandles finished with state FAILED
 LOG SolidMarkHandles: PASSED.FAILED
 [...]
 * State for
 sw.SwXViewSettings::com::sun::star::text::ViewSettings **
 [sw.SwXViewSettings::com::sun::star::text::ViewSettings::SolidMarkHandles]
 is testcode: [SolidMarkHandles] - PASSED.FAILED

 Given that SolidMarkHandles is listed in
 com.sun.star.text.ViewSettings, it is unclear to me whether it should
 indeed be removed?

 (Btw, SolidMarkHandles is also still mentioned in
 sw/source/core/unocore/unoprnms.cxx,
 binfilter/bf_sw/source/core/unocore/sw_unoprnms.cxx, and
 binfilter/bf_sw/source/ui/uno/sw_unomod.cxx.)

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


-- 
SUSE LINUX Products GmbH, GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer, HRB 
16746 (AG Nürnberg)
Maxfeldstr. 5, 90409 Nürnberg, Germany
T: +49 (0) 911 74053-0  F: +49 (0) 911 74053-483
http://www.suse.de/

From 1d07fcbd6b3db376b0baa01817bea1c93cea07bb Mon Sep 17 00:00:00 2001
From: Tim Hardeck thard...@suse.com
Date: Wed, 9 Nov 2011 17:50:55 +0100
Subject: [PATCH] removed leftovers of the Simple Handles option

Removed leftovers of the Simple Handles option which weren't
delete by the previous patch.
---
 .../com/sun/star/sheet/SpreadsheetViewSettings.idl |7 --
 offapi/com/sun/star/text/ViewSettings.idl  |6 -
 .../sc/com.sun.star.comp.office.ScTabViewObj.csv   |1 -
 .../com.sun.star.comp.office.SwXViewSettings.csv   |1 -
 .../sheet_SpreadsheetViewSettings.xba  |2 -
 .../ifc/text/ViewSettings/text_ViewSettings.xba|2 -
 .../java/ifc/sheet/_SpreadsheetViewSettings.java   |1 -
 qadevOOo/tests/java/ifc/text/_ViewSettings.java|1 -
 sc/source/ui/inc/optdlg.hrc|1 -
 sc/source/ui/src/optdlg.src|7 --
 svx/inc/svx/svdhdl.hxx |3 --
 svx/inc/svx/svdstr.hrc |4 ---
 svx/source/svdraw/svdhdl.cxx   |   17 ---
 svx/source/svdraw/svdmrkv.cxx  |   22 
 sw/inc/unoprnms.hxx|1 -
 sw/inc/viewopt.hxx |1 -
 sw/source/core/unocore/unoprnms.cxx|1 -
 sw/source/ui/config/optpage.cxx|3 --
 sw/source/ui/config/viewopt.cxx|2 +-
 sw/source/ui/inc/optpage.hxx   |1 -
 .../OpenOffice.org_help_topics_en-US.txt   |8 ---
 .../Oracle_Open_Office_help_topics_en-US.txt   |8 ---
 testautomation/global/win/tab_h_o.win  |1 -
 23 files changed, 1 insertions(+), 100 deletions(-)

diff --git a/offapi/com/sun/star/sheet/SpreadsheetViewSettings.idl b/offapi/com/sun/star/sheet/SpreadsheetViewSettings.idl
index 208d7ac..a967568 100644
--- a/offapi/com/sun/star/sheet/SpreadsheetViewSettings.idl
+++ b/offapi/com/sun/star/sheet/SpreadsheetViewSettings.idl
@@ -137,13 +137,6 @@ published service SpreadsheetViewSettings
 
 //-
 
-/** enables solid (colored) handles when drawing
-objects are selected.
- */
-[property] boolean SolidHandles;
-
-//-
-
 /** enables display of embedded objects in the view.
 
 @see SpreadsheetViewObjectsMode
diff --git a/offapi/com/sun/star/text/ViewSettings.idl b/offapi/com/sun/star/text/ViewSettings.idl
index 3ffa73d..7b15794 100644
--- a/offapi/com/sun/star/text/ViewSettings.idl
+++ b/offapi/com/sun/star/text/ViewSettings.idl
@@ -215,12 +215,6 @@ published service ViewSettings
 [property] boolean SmoothScrolling;
 
 //-
-
-// DocMerge from xml: property com::sun::star::text::ViewSettings::SolidMarkHandles
-/** If this property is TRUE/, handles of drawing 

[Libreoffice] [REVIEW 3.4] image import regression most annoying fdo#39928

2011-11-09 Thread Noel Power

fix is here

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

and is pretty trivial


Noel

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


[Libreoffice] [Bug 35673] LibreOffice 3.4 most annoying bugs

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35673

Bug 35673 depends on bug 37488, which changed state.

Bug 37488 Summary: PRINTING table borders in Writer not printed if there are 
also images in the document, DRAW object printed crippled
https://bugs.freedesktop.org/show_bug.cgi?id=37488

   What|Old Value   |New Value

 Resolution|WORKSFORME  |
 Status|RESOLVED|REOPENED

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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] [PATCH] Added line numbers to the basic ide

2011-11-09 Thread August Sodora
Hello,

I've attached a patch that attempts to add line numbers to the basic
ide. I believe it is mostly correct, although I am seeing a couple of
rendering issues that I haven't been able to track down yet. First,
the scrollbar seems to jump around and flicker a lot more than it does
without this patch. Second, typing so that the window has to scroll
horizontally causes the vertical scrollbar to move to a nonsensical
position. If anybody has a moment to take a look at this I would
really appreciate it! This has been bugging me for a while.

August Sodora
aug...@gmail.com
(201) 280-8138
From ae17befde6bf4173dd01edbff30464e841687591 Mon Sep 17 00:00:00 2001
From: August Sodora aug...@gmail.com
Date: Wed, 9 Nov 2011 21:28:55 -0500
Subject: [PATCH] Add line numbers to basic ide

---
 basctl/Library_basctl.mk|1 +
 basctl/source/basicide/baside2.hxx  |6 +++
 basctl/source/basicide/baside2b.cxx |   29 ++
 basctl/source/basicide/linenumberwindow.cxx |   58 +++
 basctl/source/basicide/linenumberwindow.hxx |   26 
 5 files changed, 112 insertions(+), 8 deletions(-)
 create mode 100644 basctl/source/basicide/linenumberwindow.cxx
 create mode 100644 basctl/source/basicide/linenumberwindow.hxx

diff --git a/basctl/Library_basctl.mk b/basctl/Library_basctl.mk
index c806980..b1badf4 100644
--- a/basctl/Library_basctl.mk
+++ b/basctl/Library_basctl.mk
@@ -94,6 +94,7 @@ $(eval $(call gb_Library_add_exception_objects,basctl,\
 	basctl/source/basicide/docsignature \
 	basctl/source/basicide/documentenumeration \
 	basctl/source/basicide/iderdll \
+	basctl/source/basicide/linenumberwindow \
 	basctl/source/basicide/localizationmgr \
 	basctl/source/basicide/macrodlg \
 	basctl/source/basicide/moduldl2 \
diff --git a/basctl/source/basicide/baside2.hxx b/basctl/source/basicide/baside2.hxx
index 6af6c06..1de34d7 100644
--- a/basctl/source/basicide/baside2.hxx
+++ b/basctl/source/basicide/baside2.hxx
@@ -42,6 +42,7 @@ class SvxSearchItem;
 #include svtools/headbar.hxx
 
 #include vcl/button.hxx
+#include basic/sbstar.hxx
 #include basic/sbmod.hxx
 #include vcl/split.hxx
 #include svl/lstner.hxx
@@ -50,6 +51,8 @@ class SvxSearchItem;
 #include sfx2/progress.hxx
 #include svtools/syntaxhighlight.hxx
 
+#include linenumberwindow.hxx
+
 DBG_NAMEEX( ModulWindow )
 
 #define MARKER_NOMARKER 0x
@@ -284,6 +287,7 @@ class ComplexEditorWindow : public Window
 {
 private:
 BreakPointWindowaBrkWindow;
+LineNumberWindowaLineNumberWindow;
 EditorWindowaEdtWindow;
 ScrollBar   aEWVScrollBar;
 
@@ -297,6 +301,7 @@ public:
 ComplexEditorWindow( ModulWindow* pParent );
 
 BreakPointWindow   GetBrkWindow()  { return aBrkWindow; }
+LineNumberWindow   GetLineNumberWindow() { return aLineNumberWindow; }
 EditorWindow   GetEdtWindow()  { return aEdtWindow; }
 ScrollBar  GetEWVScrollBar()   { return aEWVScrollBar; }
 };
@@ -402,6 +407,7 @@ public:
 
 EditorWindow   GetEditorWindow()   { return aXEditorWindow.GetEdtWindow(); }
 BreakPointWindow   GetBreakPointWindow()   { return aXEditorWindow.GetBrkWindow(); }
+LineNumberWindow   GetLineNumberWindow()   { return aXEditorWindow.GetLineNumberWindow(); }
 ScrollBar  GetEditVScrollBar() { return aXEditorWindow.GetEWVScrollBar(); }
 ExtTextEngine*  GetEditEngine() { return GetEditorWindow().GetEditEngine(); }
 ExtTextView*GetEditView()   { return GetEditorWindow().GetEditView(); }
diff --git a/basctl/source/basicide/baside2b.cxx b/basctl/source/basicide/baside2b.cxx
index 8f348d2..21b0f76 100644
--- a/basctl/source/basicide/baside2b.cxx
+++ b/basctl/source/basicide/baside2b.cxx
@@ -580,6 +580,7 @@ void EditorWindow::CreateEditEngine()
 pModulWindow-GetLayout()-GetWatchWindow().Update();
 pModulWindow-GetLayout()-GetStackWindow().Update();
 pModulWindow-GetBreakPointWindow().Update();
+pModulWindow-GetLineNumberWindow().Update();
 
 pEditView-ShowCursor( sal_True, sal_True );
 
@@ -660,6 +661,7 @@ void EditorWindow::Notify( SfxBroadcaster /*rBC*/, const SfxHint rHint )
 pModulWindow-GetEditVScrollBar().SetThumbPos( pEditView-GetStartDocPos().Y() );
 pModulWindow-GetBreakPointWindow().DoScroll
 ( 0, pModulWindow-GetBreakPointWindow().GetCurYOffset() - pEditView-GetStartDocPos().Y() );
+pModulWindow-GetLineNumberWindow().Invalidate();
 }
 else if( rTextHint.GetId() == TEXT_HINT_TEXTHEIGHTCHANGED )
 {
@@ -669,6 +671,8 @@ void EditorWindow::Notify( SfxBroadcaster /*rBC*/, const SfxHint rHint )
 long nTextHeight = pEditEngine-GetTextHeight();
 if ( nTextHeight  nOutHeight )
 pEditView-Scroll( 0, pEditView-GetStartDocPos().Y() );
+
+pModulWindow-GetLineNumberWindow().Invalidate();
 

Re: [Libreoffice] About errors of Windows Tinderbox (pb about PYTHONPATH ?)

2011-11-09 Thread julien2412
Just for my information, what was the pb ? and above all what was the element
which had allowed to solve the pb ?

Julien.

--
View this message in context: 
http://nabble.documentfoundation.org/About-errors-of-Windows-Tinderbox-pb-about-PYTHONPATH-tp3483391p3495823.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice] About errors of Windows Tinderbox (pb about PYTHONPATH ?)

2011-11-09 Thread Andras Timar
Hi Julien,

2011/11/10 julien2412 serval2...@yahoo.fr:
 Just for my information, what was the pb ? and above all what was the element
 which had allowed to solve the pb ?


The root cause is unknown to me. It worked well before. I fixed them,
see f58c4f0439d53bc3116d5321fc89d89bab26cb1d and
2a112a9830e1816bc9a51d64a3fc0ad804528a98 (makefile.mk in translations
module). A day later Michael Meeks also patched that file, he added
even more elements to PYTHONPATH.

Best regards,
Andras
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice] [Bug 35673] LibreOffice 3.4 most annoying bugs

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35673

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

   What|Removed |Added

 Depends on||37003, 39006, 42762

--- Comment #232 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-11-09 23:08:51 PST ---
Nominate Bug 42762 - FILEOPEN particular document with Math Formula object
will CRASH
Nominate Bug 37003 - FILEOPEN particular .odt with formula object crashes
Nominate Bug 39006 - FILEOPEN: LibreOffice hangs with 100% CPU usage on
specific .doc file
Might all have the same or similar roots.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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] [Bug 35673] LibreOffice 3.4 most annoying bugs

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35673

Bug 35673 depends on bug 37488, which changed state.

Bug 37488 Summary: PRINTING table borders in Writer not printed if there are 
also images in the document, DRAW object printed crippled
https://bugs.freedesktop.org/show_bug.cgi?id=37488

   What|Old Value   |New Value

 Resolution||WORKSFORME
 Status|REOPENED|RESOLVED

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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-bugs] [Bug 42730] FILEOPEN: particular .rtf locked after having been opened

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42730

Noel Power nopo...@novell.com changed:

   What|Removed |Added

 AssignedTo|nopo...@novell.com  |libreoffice-b...@lists.free
   ||desktop.org

--- Comment #1 from Noel Power nopo...@novell.com 2011-11-09 01:17:18 PST ---
(In reply to comment #0)
 @Noel:
 I assigned to you because you also are active in Bug 42640 and I have a very
 very vague suspect that the bugs might be related.
 Please feel free to reassign (or reset Assignee to default) if it’s not your
 area or if provided information is not sufficient. Please set Status to
 ASSIGNED if you accept this Bug.

I doubt this is related, in anycase I know nothing about file locking and it
would seem this is rtf specific ? Anyway, I will reassign to the default for
now ( of course if I find when investigating the other bug it is related then
we can reassess )

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42736] New: undefined: PyUno document.Text.getString() returns empty text but there is text in document

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42736

 Bug #: 42736
   Summary: undefined: PyUno document.Text.getString() returns
empty text but there is text in document
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.3 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Libreoffice
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: a.vostrja...@gmail.com


Created attachment 53318
  -- https://bugs.freedesktop.org/attachment.cgi?id=53318
test document to reproduce a bug

Problem description:
When I open document using PyUNO: document.Text.getString() returns empty
string when in document there is only one table with some text inside. See
attached document and code below to reproduce the bug. Interesting moment: if I
type any text before table 'getString()' will return text from table correctly.

Steps to reproduce:
1. Start libreoffice in terminal without gui using following command:
libreoffice
--accept=socket,host=localhost,port=2002;urp;StarOffice.ServiceManager
--norestore --nofirststartwizard --nologo --headless
2. In second terminal I starts python code to open some file, get plain text

Expected behavior:
Return all text from table in document.

Minimum python code to reproduce problem:
--
import uno

local = uno.getComponentContext()
resolver = local.ServiceManager.createInstanceWithContext(
  com.sun.star.bridge.UnoUrlResolver, local)
context = resolver.resolve(

'uno:socket,host=localhost,port=2002;urp;StarOffice.ComponentContext')
desktop = context.ServiceManager.createInstanceWithContext(
com.sun.star.frame.Desktop, context)

doc = desktop.loadComponentFromURL('table_text.docx', _blank, 0, ())
plain_text = doc.Text.getString()
doc.dispose()
doc.close(False)
del doc
-

plain_text is equal to u'' but there is text in a table.

Platform (if different from the browser): Mac OS X 10.6, Ubuntu 10.10,
LibreOffice 3.4.3, python-uno + python 2.7.1

Browser: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/535.2
(KHTML, like Gecko) Chrome/15.0.874.106 Safari/535.2

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42736] undefined: PyUno document.Text.getString() returns empty text but there is text in document

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42736

Anatoly a.vostrja...@gmail.com changed:

   What|Removed |Added

   Priority|medium  |high

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42584] FILEOPEN: Parser errors and blank spreadsheet when opening XLS file

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42584

--- Comment #1 from Pål Nilsen paal.nil...@gmail.com 2011-11-09 02:13:01 PST 
---
Created attachment 53319
  -- https://bugs.freedesktop.org/attachment.cgi?id=53319
XLSX file that crashes LibreOffice 3.4.3

Attached an XLSX file that causes Calc to just close without any output.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42584] FILEOPEN: Parser errors and blank spreadsheet when opening XLS file

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42584

--- Comment #2 from Pål Nilsen paal.nil...@gmail.com 2011-11-09 02:14:52 PST 
---
(In reply to comment #1)
 Created attachment 53319 [details]
 XLSX file that crashes LibreOffice 3.4.3
 
 Attached an XLSX file that causes Calc to just close without any output.

This file works fine on 3.3.4 by the way.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42714] [EDITING] report builder: copy/paste of control - segfault

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42714

--- Comment #1 from Lionel Elie Mamane lio...@mamane.lu 2011-11-09 02:18:35 
PST ---
LO 3.4.3 (Debian package) also crashes when drag'n dropping a control across
section boundaries. E.g. from detail section to page header.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42738] Horizontal Scrollbar in Calc unusable

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42738

--- Comment #1 from Johannes Georgi libobugs.9.grmbl...@spamgourmet.com 
2011-11-09 04:37:29 PST ---
Created attachment 53326
  -- https://bugs.freedesktop.org/attachment.cgi?id=53326
Calc Import Window with bug

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42738] Horizontal Scrollbar in Calc unusable

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42738

--- Comment #2 from Johannes Georgi libobugs.9.grmbl...@spamgourmet.com 
2011-11-09 04:38:36 PST ---
Created attachment 53327
  -- https://bugs.freedesktop.org/attachment.cgi?id=53327
Calc Window without bug

set Widget Style to GTK+ via 'kcmshell4 style'

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 34438] feature request FORMATTING group not works with raster images

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=34438

sasha.libreoff...@gmail.com changed:

   What|Removed |Added

 CC||sasha.libreoff...@gmail.com

--- Comment #2 from sasha.libreoff...@gmail.com 2011-11-09 04:48:31 UTC ---
Yes

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 41559] : LibreOffice crashes when disconnecting an RDP session.

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=41559

--- Comment #1 from zde...@zdvorak.eu 2011-11-09 05:39:57 PST ---
Confirm same behavior on Libre Office 3.4.3 (Build 302), Czech.
It may not be open any document.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 41643] EDITING: No simple way to remove links: suggestion to add Remove button at format character dialog

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=41643

Cor Nouws c...@nouenoff.nl changed:

   What|Removed |Added

 CC||c...@nouenoff.nl
Summary|EDITING: No simple way to   |EDITING: No simple way to
   |remove links|remove links: suggestion to
   ||add Remove button at format
   ||character dialog

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42457] Missing hyperlinks in hyperlink() function when exporting to HTML

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42457

Cor Nouws c...@nouenoff.nl changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||DUPLICATE
 CC||c...@nouenoff.nl

--- Comment #1 from Cor Nouws c...@nouenoff.nl 2011-11-09 06:10:28 PST ---


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

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 40728] Missing hyperlinks when exporting to XHTML (FILESAFE)

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40728

Cor Nouws c...@nouenoff.nl changed:

   What|Removed |Added

 CC||xzo...@gmail.com

--- Comment #1 from Cor Nouws c...@nouenoff.nl 2011-11-09 06:10:28 PST ---
*** Bug 42457 has been marked as a duplicate of this bug. ***

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42714] [EDITING] report builder: copy/paste of control - segfault

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42714

Alex Thurgood alex.thurg...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||DUPLICATE

--- Comment #2 from Alex Thurgood alex.thurg...@gmail.com 2011-11-09 06:15:40 
PST ---


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

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 39950] Libreoffice Base crashes when trying to drag and drop fields in report builder.

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39950

Alex Thurgood alex.thurg...@gmail.com changed:

   What|Removed |Added

 CC||lio...@mamane.lu

--- Comment #10 from Alex Thurgood alex.thurg...@gmail.com 2011-11-09 
06:15:40 PST ---
*** Bug 42714 has been marked as a duplicate of this bug. ***

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 35673] LibreOffice 3.4 most annoying bugs

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35673

Bug 35673 depends on bug 42714, which changed state.

Bug 42714 Summary: [EDITING] report builder: copy/paste of control - segfault
https://bugs.freedesktop.org/show_bug.cgi?id=42714

   What|Old Value   |New Value

 Resolution||DUPLICATE
 Status|UNCONFIRMED |RESOLVED

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 39950] Libreoffice Base crashes when trying to drag and drop fields in report builder.

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39950

Alex Thurgood alex.thurg...@gmail.com changed:

   What|Removed |Added

   Severity|critical|blocker

--- Comment #11 from Alex Thurgood alex.thurg...@gmail.com 2011-11-09 
06:17:44 PST ---
I would like to set this as a blocker for 3.5 also.


Alex

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42740] Can't finish install, windows installer msiexec.exe error

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42740

bruno warfare...@gmail.com changed:

   What|Removed |Added

   Priority|medium  |highest

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 37361] LibreOffice 3.5 most annoying bugs

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

Bug 37361 depends on bug 42640, which changed state.

Bug 42640 Summary: FILEOPEN: Impress shows a picture different from the image 
stored in the file
https://bugs.freedesktop.org/show_bug.cgi?id=42640

   What|Old Value   |New Value

 Resolution||FIXED
 Status|NEW |RESOLVED

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 37175] Setup: Data Execution Prevention on Select All Additional Language Packs

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37175

Scott M. Sanders scottmitchellsand...@gmail.com changed:

   What|Removed |Added

Version|LibO 3.4.2 release  |LibO 3.4.4 release

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42741] New: : Installation

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42741

 Bug #: 42741
   Summary: : Installation
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.3.4 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Installation
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: warfare...@gmail.com


Created attachment 53330
  -- https://bugs.freedesktop.org/attachment.cgi?id=53330
Print screen of the error

Problem description: 
Can't complete the installation. Even as ADMIN and unchecking protected
install.

Steps to reproduce:
1. Follow install instructions on website.
2. Pushing next.
3. Report error to MS.

Current behavior:
Can't install.
Expected behavior:
Install.
Platform (if different from the browser): 
MS Windows XP SP3  
Browser: Mozilla/5.0 (Windows NT 5.1; rv:8.0) Gecko/20100101 Firefox/8.0

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 35673] LibreOffice 3.4 most annoying bugs

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35673

Bug 35673 depends on bug 39928, which changed state.

Bug 39928 Summary: VIEWING: pictures in particular .doc shown wrong, picture 
size correct, but contents shrunken and surrounded by white margin.
https://bugs.freedesktop.org/show_bug.cgi?id=39928

   What|Old Value   |New Value

 Resolution||FIXED
 Status|NEW |RESOLVED

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 41643] EDITING: No simple way to remove more hyperlinks at once: suggestion to add Remove button at dialog Format Character

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=41643

Cor Nouws c...@nouenoff.nl changed:

   What|Removed |Added

Summary|EDITING: No simple way to   |EDITING: No simple way to
   |remove links: suggestion to |remove more hyperlinks at
   |add Remove button at format |once: suggestion to add
   |character dialog|Remove button at dialog
   ||Format Character

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 35673] LibreOffice 3.4 most annoying bugs

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35673

Bug 35673 depends on bug 39928, which changed state.

Bug 39928 Summary: VIEWING: pictures in particular .doc shown wrong, picture 
size correct, but contents shrunken and surrounded by white margin.
https://bugs.freedesktop.org/show_bug.cgi?id=39928

   What|Old Value   |New Value

 Resolution|FIXED   |
 Status|RESOLVED|REOPENED

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42744] New: VIEWING: 3.4.4Release: not in bug tracker.

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42744

 Bug #: 42744
   Summary: VIEWING: 3.4.4Release: not in bug tracker.
Classification: Unclassified
   Product: LibreOffice
   Version: unspecified
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: ccr_m...@hotmail.com


3.4.4 Release: not in bug tracker.

Steps to reproduce:
1.  https://www.libreoffice.org/get-help/bug/
2.  Choose Sub Component, then Version
3.  3.4.4 Release is missing from menu choice.

Current behavior:3.4.4 Release is missing from menu choice.

Expected behavior: Menu should have this since 3.4.4 is released.

Platform (if different from the browser): 

Browser: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.23)
Gecko/20110920 Firefox/3.6.23

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42307] FORMATTING: Crash when pasting GUI Octave formatted text

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42307

patheticcockro...@patheticcockroach.com changed:

   What|Removed |Added

Version|LibO 3.4.3 release  |LibO 3.4.4 release

--- Comment #1 from patheticcockro...@patheticcockroach.com 2011-11-09 07:47:16 
PST ---
Update: still occurring in version 3.4.4

GUI Octave is that thing, btw: http://guioctave.com/?page_id=2

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42745] New: Part of fix for bug 40590 not included in 3.4.4. Formulas in defined names messed up again.

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42745

 Bug #: 42745
   Summary: Part of fix for bug 40590 not included in 3.4.4.
Formulas in defined names messed up again.
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: x86 (IA32)
OS/Version: All
Status: UNCONFIRMED
  Severity: critical
  Priority: medium
 Component: Spreadsheet
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: b.bugs.freedesk...@learyfamily.net


Bug 40590 was written against 3.4.3.  When I tested the first fix that was
approved it did not correct the problem.  A subsequent additional change was
made that did fix the problem.  

The secondary problem had something to do with needing to have a second pass to
resolve forward reference names.  In other words name b referenced name c
and c has not been resolved yet.  Where possible, changing the names such
that all references to other names are reverse in collating sequence instead of
forward avoids the problem.  In other words, change name b to name d and
the problem is avoided.

The notes on 40590 should be helpful.

I'm going back to 3.4.3.  I cannot understand the poor quality control that
exists within the LibreOffice development organization.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 37883] LO 3.4 (final) Writer, Calc, Impress crash at startup

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37883

Scott M. Sanders scottmitchellsand...@gmail.com changed:

   What|Removed |Added

 CC||scottmitchellsanders@gmail.
   ||com
Version|LibO 3.4.3 release  |LibO 3.4.4 release

--- Comment #21 from Scott M. Sanders scottmitchellsand...@gmail.com 
2011-11-09 08:02:26 PST ---
I am now getting this exact issue in 3.4.4. It did not occur for me in 3.4.3.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42745] Part of fix for bug 40590 not included in 3.4.4. Formulas in defined names messed up again.

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42745

Bruce Leary b.bugs.freedesk...@learyfamily.net changed:

   What|Removed |Added

   Priority|medium  |highest

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42324] When editing in Writer, the cursor ignores diacritical characters added to the letters in RTL languages.

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42324

--- Comment #5 from dovijac...@yahoo.com 2011-11-09 08:29:39 PST ---
Thanks Caolán for the additional information.

What was most interesting to me was d). I tried out alt+cursor and it does
indeed move one code-point at a time. That is already very helpful for editing
in LO. It would be nice if there was a way to make people aware of this
feature, because there seems to be no indication of it for the user and no one
(even LO programmers) seems to be aware of it when asked...

From trying it out, however, what alt+cursor does *not* seem to allow is
selection of an individual code point. If you move along at alt+cursor but
simultaneously press shift in order to select the text, the cursor doesn't even
move and the code point cannot be selected to be pasted elsewhere. This is a
very real lack in functionality.

Regarding the way the cursor moves graphically in Word and Google Docs: It
approximates how far it has moved through the full grapheme, appearing half-way
through in the middle, or 1/3 or 2/3 through. The visual representation isn't
perfect, but it is functional enough and the user gets a sense as to where the
cursor is actually standing. When you select one code-point within the
grapheme (including the letter itself without the additional code-points), only
part of the width is colored as selected. As an example, I will now attach a
screenshot of an example in Google Docs where a letter was followed by two
code-points, and the first of these code points (i.e. the middle of the three
total characters) is selected, the picture showing the selection as the middle
third of the full grapheme highlighted.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42746] New: EDITING: Incorrect LOOKUP Function

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42746

 Bug #: 42746
   Summary: EDITING: Incorrect LOOKUP Function
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.3.2 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Spreadsheet
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: jakenve...@yahoo.com


Created attachment 53331
  -- https://bugs.freedesktop.org/attachment.cgi?id=53331
The attachment is the specific spreadsheet with the specific set of data for
which LOOKUP is malfunctioning

Problem description:

In the attached spreadsheet, the LOOKUP Functions in Columns B and C are
failing to lookup correctly. The first errored result occurs in Row 9. The
value in A9 should be matched to the value in G9, causing the values in H9 and
I9 to be pushed to B9 and C9, respectively. Instead the LOOKUP function is
matching A9 to G37, and pulling from H37 and I37. This makes no sense as the
values in A9 and G37 clearly do not match. In the spreadsheet, I have even
copied the column G directly to column A, to ensure that the values are exactly
the same, regardless of formatting, and the same result occurs. I have also
tried formatting columns A and G as both numbers, and as plain text, and
re-entering all the values accordingly. Whether the columns are numbers or
text, the exact same result occurs. I have additionally checked that the
function =(A9=A37) returns FALSE for all of these circumstances.

Browser: Mozilla/5.0 (X11; Linux x86_64; rv:7.0.1) Gecko/20100101 Firefox/7.0.1

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42747] New: EDITING VIEWING max/min values in currency field columns of table controls in db forms are wrongly interpretated

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42747

 Bug #: 42747
   Summary: EDITING VIEWING max/min values in currency field
columns of table controls in db forms are wrongly
interpretated
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Database
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: cluste...@web.de


Created attachment 5
  -- https://bugs.freedesktop.org/attachment.cgi?id=5
test case database caontaining currecny field wrongly interpretated

When you create a database form, which contains a table control in which a
column is of type currency field, the value max. of the column is
effectively divided by 10^n where n is the number corresponding to its decimal
accuracy property.

As an example :  

Value max.|Decimal accuracy|Actual max value|Expected max value  
100.00  2  1.001000.00  
100.000 3  1000.0001000.000  

The same happens to minimum values correspondingly. 

This does not happen to normal numeric fields inside the table control.  

This does not happen for currency fields outside of a table control.  

Tested under Linux/Mac OS 10.6 with postgresql as backend (via jdbc) and also
using the HSQL backend (see below for test database). OpenOffice suffers from
the same bug und the following additional OSs Windows XP/Vista (32bit) 

Attached is a test database containing one table and 3 forms (using the HSQL
backend): 

The database table contains 6 columns of type double. 

The forms:

Form test_simple_fields:

contains currency fields for the corresponding db-table columns with the
following max./min values:

real1 : 100.00/-100.00
real2 : 12345,67/-12345,67
real3 : 100.00/-100.00
real4 : 12345,67/-12345,67
real5 : 100.000/-100.000
real6 : 100.000/-100.000

Form test_table_control:
contains currency fields for the corresponding db-table columns with the
following max./min values:

real1 : 100.00/-100.00
real2 : 12345,67/-12345,67
real3 : 1.00/-1.00
real4 : 1234567,00/-1234567,00
real5 : 100.000/-100.000
real6 : 10.000/-10.000

Form test_combined 

contains both controls in one form 

In the table control multiplying the min/max values by 10^n (where n is the
number of its decimal accuracy property) provides the correct behaviour but
does _not_ constitute a valid workaround in my eyes. This was done in the
columns real3 real4 and real6 of the table controls in the test database to
check whether the decimal accuracy actually works (like for 12345.67 etc). 

Depending on via which control you use to change/enter the data the values in
the database table may or may not be correct. If the table control only
displays values exceeding its limits, the database entries are still correct,
but incorrectly displayed. Only after changing the values via the table control
the lower limits are enforced. 

Please play around with the forms and data. 

NOTE: Exceeding the max/min value leads to a rather silent change of the value
in the database entries (no warning no flashing, I admit the change is visible
in the control) I am not certain, that this is wise

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42324] When editing in Writer, the cursor ignores diacritical characters added to the letters in RTL languages.

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42324

--- Comment #7 from Caolán McNamara caol...@redhat.com 2011-11-09 08:43:35 
PST ---
uh huh, not great either in e.g. google-docs

a) Might be that we haven't implemented alt+shift+arrow, or that its eaten by
the windowmanager before it gets to us. That needs looking at anyway.
b) Maybe we can come up with some better scheme to visually indicate selection
of part of the underlying codepoints that make up a glyph. graphite has some
awesome stuff there, but that needs graphite fonts anyway I think, so still
need a general case solution
c) Maybe word-of-mouth will be sufficient to get alt+cursor known now :-)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 38831] [EasyHack] Get rid of SV_DECL_VARARR, SV_DECL_VARARR_PLAIN, SV_DECL_VARARR_SORT ....

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38831

--- Comment #3 from Caolán McNamara caol...@redhat.com 2011-11-09 08:55:51 
PST ---
SvStringsSortDtor gone now with Daisuke Nishino's last patch

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42324] When editing in Writer, the cursor ignores diacritical characters added to the letters in RTL languages.

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42324

--- Comment #8 from dovijac...@yahoo.com 2011-11-09 09:09:00 PST ---
uh huh, not great either in e.g. google-docs

Actually it works great in Google Docs. Try it out at the link below, which I
made open to editing:

https://docs.google.com/document/d/10Yt7Jn12EaZ0Hmk8Q_Z5S1xm9nfUbAURoSAhh-SI0nk/edit

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42295] File Recent Documents command lists ALL file types, not just the relevant file type

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42295

manj_k courrier.oou.fr@googlemail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever Confirmed|0   |1

--- Comment #3 from manj_k courrier.oou.fr@googlemail.com 2011-11-09 
09:23:21 PST ---
Modified to NEEDINFO

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 39673] [EasyHack] Remove obsolete product pieces

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39673

--- Comment #2 from Björn Michaelsen bjoern.michael...@canonical.com 
2011-11-09 09:26:27 PST ---
Any progress on this?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42100] EasyHack: calc sheet tab widget screen space usage

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42100

Björn Michaelsen bjoern.michael...@canonical.com changed:

   What|Removed |Added

Summary|EasyHack: calc sheet tab|EasyHack: calc sheet tab
   |widget ...  |widget screen space usage

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42329] EDITING: Spell check is complete

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42329

manj_k courrier.oou.fr@googlemail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
  Status Whiteboard|BSA |BSA;
   ||infoprovider:angelogia@gmai
   ||l.com
 CC||courrier.oou.fr.mjk@googlem
   ||ail.com
 Ever Confirmed|0   |1

--- Comment #3 from manj_k courrier.oou.fr@googlemail.com 2011-11-09 
09:46:47 PST ---
@angelo...@gmail.com:
A friendly reminder ;) –
we need some more informative results regarding comment #2 ...

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 39753] [EasyHack] Improving EasyHacks Bugzilla-Wiki integration

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39753

Björn Michaelsen bjoern.michael...@canonical.com changed:

   What|Removed |Added

Summary|[EasyHack] Script for   |[EasyHack] Improving
   |creating|EasyHacks Bugzilla-Wiki
   |EasyHacks-from-Feed-pages   |integration

--- Comment #1 from Björn Michaelsen bjoern.michael...@canonical.com 
2011-11-09 10:27:09 PST ---
We are using a homebrew RSS-feed extension based on simplepie modified from
http://www.mediawiki.org/wiki/Extension:SimpleFeed

It would be cool instead of having to write a huge feed-URL like:
feed
url=https://bugs.freedesktop.org/buglist.cgi?bug_status=NEWbug_status=ASSIGNEDbug_status=REOPENEDproduct=LibreOfficequery_format=advancedstatus_whiteboard=EasyHack%20DifficultyBeginner%20SkillCppstatus_whiteboard_type=allwordssubstrctype=atom;
entries=200 [{ID} {TITLE} /feed

to be modify the extension to trigger on something like:
bugzilla-feed status_whiteboard=EasyHack DifficultyBeginner SkillCpp[{ID}
{TITLE}
bugzilla-feed

'''Skills:''' PHP

@cloph: Is our current modified extension available in our repos?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 35673] LibreOffice 3.4 most annoying bugs

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35673

Bug 35673 depends on bug 37488, which changed state.

Bug 37488 Summary: PRINTING table borders in Writer not printed if there are 
also images in the document, DRAW object printed crippled
https://bugs.freedesktop.org/show_bug.cgi?id=37488

   What|Old Value   |New Value

 Resolution|WORKSFORME  |
 Status|RESOLVED|REOPENED

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 38993] [TASK]: Bugfixes required for enterprise deployment LibO 3.4.2

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38993

Bug 38993 depends on bug 37488, which changed state.

Bug 37488 Summary: PRINTING table borders in Writer not printed if there are 
also images in the document, DRAW object printed crippled
https://bugs.freedesktop.org/show_bug.cgi?id=37488

   What|Old Value   |New Value

 Resolution|WORKSFORME  |
 Status|RESOLVED|REOPENED

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 39753] [EasyHack] Improving EasyHacks Bugzilla-Wiki integration

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39753

Björn Michaelsen bjoern.michael...@canonical.com changed:

   What|Removed |Added

  Component|contrib |WWW

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42416] standard.dic contains relation to OOo

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42416

manj_k courrier.oou.fr@googlemail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||INVALID
 CC||courrier.oou.fr.mjk@googlem
   ||ail.com
  Component|Localisation|Linguistic component

--- Comment #1 from manj_k courrier.oou.fr@googlemail.com 2011-11-09 
10:43:38 PST ---
'OOoUserDict1' is the file format (encoding, 'magic string') for user-readable
and user-editable custom dictionaries [introduced with OOo].

See, e.g.:
https://issues.apache.org/ooo/show_bug.cgi?id=60698#c15
https://issues.apache.org/ooo/show_bug.cgi?id=91392

IMHO: RESOLVED INVALID.

Feel free to reopen that bug, if you did not agree with this decision.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42748] New: EDITING: Tracking changes not totally consistent

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42748

 Bug #: 42748
   Summary: EDITING: Tracking changes not totally consistent
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.3 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: johannesdenb...@gmail.com


Created attachment 53337
  -- https://bugs.freedesktop.org/attachment.cgi?id=53337
Behavior of track changes as it is working now, It would be nice if the number
also gets a strike through and the list doesn't count the deleted number.

Problem description: Mayby it is more like a feature request than a bug report.
Tracking changes delivers for deleted text an line through. But when editing a
numbered list the deletion of the number cannot be tracked.

Steps to reproduce:
1. create a document with a numbered list
2. enable track changes
3. delete a rule with its number

Current behavior:
The deleted rule gets a strike through, but the number keeps normal or totally
deleted without notion of its deletion

Expected behavior:
The nicest behavior would be that the number gets a strike through and the next
number is the same, so that when the changes are accepted the numbering doesn't
change any more

Platform (if different from the browser): 

Browser: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:7.0.1) Gecko/20111002
Firefox/7.0.1 PaleMoon/7.0.1

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 35372] FILEOPEN Master slide text shows up on actual slides

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35372

Michael J Kaye mjk-nos...@cuttingfree.info changed:

   What|Removed |Added

 OS/Version|Linux (All) |All
Version|LibO 3.3.1 release  |LibO 3.4.3 release

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42417] Crash reporter does not appear during document recovery process

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42417

manj_k courrier.oou.fr@googlemail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||DUPLICATE
 CC||courrier.oou.fr.mjk@googlem
   ||ail.com

--- Comment #2 from manj_k courrier.oou.fr@googlemail.com 2011-11-09 
11:07:18 PST ---
Duplicate of 'Bug 37206 - Recovery window shows error report text'.

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

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42750] New: Table, border line style double line still broken: old bug 38542

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42750

 Bug #: 42750
   Summary: Table, border line style double line still broken: old
bug 38542
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: x86-64 (AMD64)
OS/Version: Linux (All)
Status: UNCONFIRMED
  Severity: critical
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: gomadtr...@gmail.com


New release 3.4.4, update bug.

The new feature introduce in the 3.4.x series changed the way 'Table
FormatBordersLine' is configured. All my double line borders are very wide,
hiding content in some cases.

 The new Line configuration is done  by 'style'  'width' neither which seem to
produce a readable double line border.

This is a feature that has worked here since OOv. 1.02, quite a large archive
of documents affected, as are all my templates.

Thank You  for your consideration

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42751] New: [sample] Wrong parsing of some docx document with drawings

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42751

 Bug #: 42751
   Summary: [sample] Wrong parsing of some docx document with
drawings
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.3 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: nekoh...@gmail.com


Created attachment 53338
  -- https://bugs.freedesktop.org/attachment.cgi?id=53338
sample

Attached is a sample document that renders completely incorrectly when you try
to open the .docx file in Writer.

The .odt was created by Excel 2007 (the irony!) and renders mostly fine.
A PDF (generated by Office 2007) and screenshot are provided for comparison.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42019] Crash while editing a presentation

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42019

--- Comment #4 from Dennis bijwa...@gmail.com 2011-11-09 11:42:56 PST ---
I couldn't reproduce the bug in the 3.4.3 version yet, it certainly feels more
stable. Maybe it has already been fixed.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42753] [sample] incorrect pptx diagrams import in Impress

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42753

--- Comment #1 from Jean-François Fortin Tam nekoh...@gmail.com 2011-11-09 
11:48:27 PST ---
Created attachment 53343
  -- https://bugs.freedesktop.org/attachment.cgi?id=53343
reference PDF output from Office 2007

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42754] New: LibO 3.4.4 and Java7u1 causes crash

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42754

 Bug #: 42754
   Summary: LibO 3.4.4 and Java7u1 causes crash
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: Other
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Libreoffice
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: jochen.bla...@gmail.com


I installed the latest LibreOffice 3.4.4 release and am facing some problems
with Java now ...

LibO 3.4.3, which was installed before, worked perfectly.

What I did:
- Uninstalled LibreOffice 3.4.3
- Ran CCleaner and did some manual registry cleaning
- Installed LibreOffice 3.4.4
* I customized the installation path to read C:\Program Files
(x86)\LibreOffice and I deselected the Quickstarter - left the rest at its
defaults.

Upon starting LibO 3.4.4 I experienced an application fault.

I moved %APPDATA%\LibreOffice to %APPDATA%\LibreOffice.backup and started LibO
anew - this time it fully loaded up with tons of requires a JRE warnings.

I did some tinkering and found out that deleting
%APPDATA%\LibreOffice\3\user\config\javasettings_Windows_x86.xml resolved the
application fault - it loaded up again with several requires a JRE warnings.

In the Java preferences LibO does NOT recognize the already installed Java
JRE.

Now, this problem happens on ...

Windows 7 x64 Professional with Java JDK 7u1 (also contains the JRE)
Windows 7 Home Premium (x86) with Java JDK 7u1 (also contains the JRE)

The problem did NOT exist on the previous LibreOffice 3.4.3 install.

Note that I can NOT switch to JDK/JRE6 as I need JDK7 installed for the Android
SDK.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42019] Crash while editing a presentation

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42019

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

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||WORKSFORME
   Keywords|NEEDINFO|

--- Comment #5 from Julien Nabet serval2...@yahoo.fr 2011-11-09 12:04:37 PST 
---
Since the crash hasn't been reproduced on 3.4.3 by the reporter, I would put
this case to RESOLVED/WORKSFORME (here for the reporter).

Dennis: Thank you for having retry with 3.4.3 (BTW 3.4.4 has been released
today). If the pb reappears,don't hesitate to reopen this case.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42756] New: : formulas in LibreOffice calc don't behave like OpenOffice cal

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42756

 Bug #: 42756
   Summary: : formulas in LibreOffice calc don't behave like
OpenOffice cal
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.3.4 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Spreadsheet
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: franky.chamb...@gmail.com


Created attachment 53345
  -- https://bugs.freedesktop.org/attachment.cgi?id=53345
SpreadSheet for calcuation of differents parameter of Electric Vehicles

Problem description: 
The same spreadsheet in LibreOffice and OpenOffice don't behave the same way.
Testing empty cell, or null cell don't give the same result

Steps to reproduce:
1. load the attached spreadsheet
2. test it with OpenOffice
3. test it with LibreOffice.

Current behavior:
Lot of cells in sheet Tables have error code : type de donnée incorrect

Expected behavior:
This error is not observed with OpenOffice

Platform (if different from the browser): 

Browser: Mozilla/5.0 (X11; Linux x86_64; rv:7.0.1) Gecko/20100101 Firefox/7.0.1

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42324] When editing in Writer, the cursor ignores diacritical characters added to the letters in RTL languages.

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42324

--- Comment #9 from Caolán McNamara caol...@redhat.com 2011-11-09 12:11:59 
PST ---
I added ক্ট্র which is Bengali KA+HALANT+TTA+HALANT+RA, i.e. 5 codepoints
that make up one glyph/grapheme. For that it seems to end up with the extra
cursor positions well outside the glyph.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42746] EDITING: Incorrect LOOKUP Function

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42746

GerardF gerard.farg...@orange.fr changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||NOTABUG
 CC||gerard.farg...@orange.fr

--- Comment #1 from GerardF gerard.farg...@orange.fr 2011-11-09 12:42:40 UTC 
---
Please read the help :
http://help.libreoffice.org/Calc/Spreadsheet_Functions#LOOKUP

Additionally, the search vector for the LOOKUP must be sorted ascending,
otherwise the search will not return any usable results.

I closed this bug.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42759] New: Messed up printing of simple text document

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42759

 Bug #: 42759
   Summary: Messed up printing of simple text document
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: x86 (IA32)
OS/Version: Linux (All)
Status: UNCONFIRMED
  Severity: blocker
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: zza...@gmail.com


Created attachment 53347
  -- https://bugs.freedesktop.org/attachment.cgi?id=53347
Document that doesn't print well

I have a problem with messed-up printing on Ubuntu 11.10 32-bit with
LibreOffice 3.4.2 and 3.4.4. It is a simple text-only document, created in
LibreOffice. The result of printing is far from usable - almost one in 10 words
is wrongly printed. If I export document to PDF, and print it, everything looks
OK. I also tried the latest 3.4.4 from LibreOffice PPA, but that one prints the
same as 3.4.2. Interestingly, if I open the same document in OpenOfice 3.3, and
print from it, it looks fine. I also took a look at content.xml onside odt
file, and the text inside looks normal to me (no special symbols or anything).

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42759] Messed up printing of simple text document

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42759

--- Comment #1 from Zarko Zivanov zza...@gmail.com 2011-11-09 13:42:52 PST ---
Created attachment 53348
  -- https://bugs.freedesktop.org/attachment.cgi?id=53348
Printing results

Inside the archive there are 4 pictures:
LO342   - printing from LibreOffice 3.4.2
LO344   - printing from LibreOffice 3.4.4
LO342-B - printing from LibreOffice 3.4.2, but after applying bitstream vera
sans font to all text (very weird)
OO33- printing from OpenOffice 3.3 (the same is from PDF generated in
LibreOffice 3.4)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42612] EDITING: double-click on a table entry when table preview mode switched on opens table data window behind main application window

2011-11-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42612

--- Comment #22 from Lionel Elie Mamane lio...@mamane.lu 2011-11-09 14:32:38 
PST ---
Here's my theory. One or both of the symptoms is due to the fact that events
happen in this order:

1) Double-click - open table data view
2) Change of selection - refresh preview

The refresh preview handling brings the database window back to the
forefront, but that's after the new table data view window has been opened.
Maybe it somehow also closes the other window in 3.4.4, not sure.

Maybe if we could switch the order of these two events? But the second event
seems to be delayed by 900ms pretty much on purpose, with a timer. I'm not sure
why, but that's probably for performance reasons, so that when one changes the
selection often (e.g. with the down/up arrow on the keyboard), things are not
too horribly slow.

I disabled the delay and confirmed it fixes (on master) the table data view
opened behind main application window symptom. Could someone please check
whether it also fixes (in 3.4.4rc2 with mysql, see comment 12) the table data
view closes after a second symptom? I don't have access to that setup right
now.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
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   >