Re: Cppcheck report in vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx

2012-10-21 Thread Ivan Timofeev
On 20.10.2012 22:23, julien2412 wrote:
 Hello,
 
 Just noticed this with cppcheck:
 [gdi/salnativewidgets-gtk.cxx:3452] - [gdi/salnativewidgets-gtk.cxx:3462]:
 (performance) Variable 'eState' is reassigned a value before the old one has
 been used.
 Here are the lines:
3452 GtkStateType eState = (nState  CTRL_STATE_ENABLED) ?
 GTK_STATE_ACTIVE : GTK_STATE_INSENSITIVE;
3453 gint slider_width = 10;
3454 gint slider_length = 10;
3455 gint trough_border = 0;
3456 gtk_widget_style_get( pWidget,
3457   slider-width, slider_width,
3458   slider-length, slider_length,
3459   trough-border, trough_border,
3460   NULL);
3461 
3462 eState = (nState  CTRL_STATE_ENABLED) ? GTK_STATE_NORMAL :
 GTK_STATE_INSENSITIVE;
3463 if( nPart == PART_TRACK_HORZ_AREA )
3464 {
3465 gtk_paint_box( pWidget-style,
3466pixDrawable,
3467eState,
3468GTK_SHADOW_IN,
3469NULL,
3470pWidget,
3471trough,
34720, (h-slider_width-2*trough_border)/2, w,
 slider_width + 2*trough_border);
 
 Is the line 3452 could just be removed or should this part be a little
 reworked?

Hi Julien,

I think the line 3452 can be removed. GTK_STATE_ACTIVE is for pressed
controls, i.e. CTRL_STATE_PRESSED, and the Slider control does not even
use this CTRL_STATE_PRESSED flag.
http://opengrok.libreoffice.org/xref/core/vcl/source/control/slider.cxx

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


[Libreoffice-commits] .: configure.ac gdk-pixbuf/prj glib/prj libcroco/prj libgsf/prj pango/prj

2012-10-21 Thread Libreoffice Gerrit user
 configure.ac |  259 +--
 gdk-pixbuf/prj/build.lst |2 
 glib/prj/build.lst   |2 
 libcroco/prj/build.lst   |2 
 libgsf/prj/build.lst |2 
 pango/prj/build.lst  |2 
 6 files changed, 144 insertions(+), 125 deletions(-)

New commits:
commit de6b1a30995c206a186231e5f6fe849c19f1c765
Author: David Tardon dtar...@redhat.com
Date:   Sun Oct 21 11:38:18 2012 +0200

only build librsvg deps if librsvg itself is built

gdk-pixbuf, gettext, glib, libcroco, libgsf and pango are only deps of
librsvg, which means they do not have to be configured/built in a build
without librsvg. In effect, this generalizes the previous exception for
Android and iOS.

Change-Id: Ia0bd5e1c2bfa27842d8806886cd5774a420a973f

diff --git a/configure.ac b/configure.ac
index 1ef16ff..b48aa5d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -11453,7 +11453,7 @@ dnl 
===
 dnl Checks for librsvg
 dnl ===
 
-dnl ENABLE_LIBRSVG is set to  (for NO), SYSTEM or INTERNAL. The
+dnl ENABLE_LIBRSVG is set to NO, SYSTEM or INTERNAL. The
 dnl SYSTEM_LIBRSVG, SYSTEM_GDKPIXBUF etc are redundant.
 
 dnl FIXME: RSVG is a hard dependency now as the impress masterpages use it
@@ -11626,33 +11626,36 @@ dnl 
===
 dnl Test whether to build gdk-pixbuf or rely on the system version
 dnl ===
 
-AC_MSG_CHECKING([whether to use the system gdk-pixbuf])
+if test $ENABLE_LIBRSVG != NO; then
+AC_MSG_CHECKING([whether to use the system gdk-pixbuf])
 
-dnl As long as the only thing we need gdk-pixbuf for is below
-dnl librsvg, use the same --enable-librsvg (possibly implied
-dnl by --with-system-libs) to override this.
+dnl As long as the only thing we need gdk-pixbuf for is below
+dnl librsvg, use the same --enable-librsvg (possibly implied
+dnl by --with-system-libs) to override this.
 
-if test $SYSTEM_LIBRSVG = YES; then
-SYSTEM_GDKPIXBUF=YES
-AC_MSG_RESULT([yes])
-elif test $enable_librsvg = fully-internal; then
-SYSTEM_GDKPIXBUF=NO
-BUILD_TYPE=$BUILD_TYPE GDK_PIXBUF
-AC_MSG_RESULT([no])
-else
-case $_os in
-WINNT|Darwin|iOS|Android)
-SYSTEM_GDKPIXBUF=NO
-if test $_os != iOS -a $_os != Android; then
-BUILD_TYPE=$BUILD_TYPE GDK_PIXBUF
-fi
-AC_MSG_RESULT([no])
-;;
-*)
+if test $SYSTEM_LIBRSVG = YES; then
 SYSTEM_GDKPIXBUF=YES
+elif test $enable_librsvg = fully-internal; then
+SYSTEM_GDKPIXBUF=NO
+else
+case $_os in
+WINNT|Darwin|iOS|Android)
+SYSTEM_GDKPIXBUF=NO
+;;
+*)
+SYSTEM_GDKPIXBUF=YES
+;;
+esac
+fi
+
+if test $SYSTEM_GDKPIXBUF = YES; then
 AC_MSG_RESULT([yes])
-;;
-esac
+else
+AC_MSG_RESULT([no])
+BUILD_TYPE=$BUILD_TYPE GDK_PIXBUF
+fi
+else
+SYSTEM_GDKPIXBUF=NO
 fi
 AC_SUBST(SYSTEM_GDKPIXBUF)
 
@@ -11660,37 +11663,41 @@ dnl 
===
 dnl Test whether to build GLib or rely on the system version
 dnl ===
 
-AC_MSG_CHECKING([whether to use the system GLib])
+if test $ENABLE_LIBRSVG != NO; then
+AC_MSG_CHECKING([whether to use the system GLib])
 
-dnl As long as the only thing we need GLib for is below
-dnl librsvg, use the same --enable-librsvg (possibly implied
-dnl by --with-system-libs) to override this.
+dnl As long as the only thing we need GLib for is below
+dnl librsvg, use the same --enable-librsvg (possibly implied
+dnl by --with-system-libs) to override this.
 
-if test $SYSTEM_LIBRSVG = YES; then
-SYSTEM_GLIB=YES
-AC_MSG_RESULT([yes])
-elif test $enable_librsvg = fully-internal; then
-SYSTEM_GLIB=NO
-AC_MSG_RESULT([no])
-else
-case $_os in
-WINNT|Darwin|iOS|Android)
-SYSTEM_GLIB=NO
-AC_MSG_RESULT([no])
-;;
-*)
+if test $SYSTEM_LIBRSVG = YES; then
 SYSTEM_GLIB=YES
+elif test $enable_librsvg = fully-internal; then
+SYSTEM_GLIB=NO
+else
+case $_os in
+WINNT|Darwin|iOS|Android)
+SYSTEM_GLIB=NO
+;;
+*)
+SYSTEM_GLIB=YES
+;;
+esac
+fi
+
+if test $SYSTEM_GLIB = YES; then
 AC_MSG_RESULT([yes])
-;;
-esac
+PKG_CHECK_MODULES( GLIB, glib-2.0 )
+else
+AC_MSG_RESULT([no])
+BUILD_TYPE=$BUILD_TYPE GLIB
+fi
+else
+GLIB_CFLAGS=
+GLIB_LIBS=
+SYSTEM_GLIB=NO
 fi
 AC_SUBST(SYSTEM_GLIB)
-
-if test $SYSTEM_GLIB = YES; then
-PKG_CHECK_MODULES( GLIB, glib-2.0 )
-elif test $_os != iOS -a $_os 

extensions down

2012-10-21 Thread Anton Meixome
Hi,

From yesterday I want upload a new dictionary extensión but I can't because
the site is down

http://extensions.libreoffice.org/

Can somebody ping to person responsible?



-- 
Antón Méixome - Galician Native Lang Coordination
Galician community LibO  AOO
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] .: 2 commits - vcl/unx

2012-10-21 Thread Libreoffice Gerrit user
 vcl/unx/gtk/app/gtksys.cxx   |3 +--
 vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx |6 ++
 vcl/unx/gtk/window/gtkframe.cxx  |6 ++
 3 files changed, 5 insertions(+), 10 deletions(-)

New commits:
commit ba99a88511e5b0b5140837fde69dfa139d7aeb7a
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sat Oct 20 20:37:46 2012 +0200

Some cppcheck cleaning

Change-Id: I5c119795077f9fbb84c32bc6ca95533d689998b9

diff --git a/vcl/unx/gtk/app/gtksys.cxx b/vcl/unx/gtk/app/gtksys.cxx
index cc921b8..5342130 100644
--- a/vcl/unx/gtk/app/gtksys.cxx
+++ b/vcl/unx/gtk/app/gtksys.cxx
@@ -118,9 +118,8 @@ SalX11Screen
 GtkSalSystem::getXScreenFromDisplayScreen(unsigned int nScreen)
 {
 gint nMonitor;
-GdkScreen *pScreen = NULL;
 
-pScreen = getScreenMonitorFromIdx (nScreen, nMonitor);
+GdkScreen *pScreen = getScreenMonitorFromIdx (nScreen, nMonitor);
 if (!pScreen)
 return SalX11Screen (0);
 #if GTK_CHECK_VERSION(3,0,0)
diff --git a/vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx 
b/vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx
index 4985c43..5870070 100644
--- a/vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx
+++ b/vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx
@@ -2846,7 +2846,6 @@ sal_Bool GtkSalGraphics::NWPaintGTKToolbar(
 GtkShadowTypeshadowType;
 gintx, y, w, h;
 gintg_x=0, g_y=0, g_w=10, g_h=10;
-boolbPaintButton = true;
 GtkWidget*  pButtonWidget = 
gWidgetData[m_nXScreen].gToolbarButtonWidget;
 GdkRectangleclipRect;
 
@@ -2898,7 +2897,7 @@ sal_Bool GtkSalGraphics::NWPaintGTKToolbar(
 // handle button
 else if( nPart == PART_BUTTON )
 {
-bPaintButton = (nState  CTRL_STATE_PRESSED)
+bool bPaintButton = (nState  CTRL_STATE_PRESSED)
 || (nState  CTRL_STATE_ROLLOVER);
 if( aValue.getTristateVal() == BUTTONVALUE_ON )
 {
commit 0a2eb9cfd667c1f3186cdeb9f7375aad81c66c0e
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sat Oct 20 20:25:57 2012 +0200

Fix some Variable X is reassigned a value before the old one has been used

Change-Id: I2fbdf26441f64183676035692391e65db0efe069

diff --git a/vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx 
b/vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx
index 8c603ed..4985c43 100644
--- a/vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx
+++ b/vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx
@@ -4025,13 +4025,12 @@ void GtkSalGraphics::updateSettings( AllSettings 
rSettings )
 
 aStyleSet.SetToolbarIconSize( STYLE_TOOLBAR_ICONSIZE_LARGE );
 
-const cairo_font_options_t* pNewOptions = NULL;
 #if !GTK_CHECK_VERSION(2,9,0)
 static cairo_font_options_t* (*gdk_screen_get_font_options)(GdkScreen*) =
 (cairo_font_options_t*(*)(GdkScreen*))osl_getAsciiFunctionSymbol( 
GetSalData()-m_pPlugin, gdk_screen_get_font_options );
 if( gdk_screen_get_font_options != NULL )
 #endif
-pNewOptions = gdk_screen_get_font_options( pScreen );
+const cairo_font_options_t* pNewOptions = gdk_screen_get_font_options( 
pScreen );
 aStyleSet.SetCairoFontOptions( pNewOptions );
 
 // finally update the collected settings
diff --git a/vcl/unx/gtk/window/gtkframe.cxx b/vcl/unx/gtk/window/gtkframe.cxx
index d749b6d..1d65ffb 100644
--- a/vcl/unx/gtk/window/gtkframe.cxx
+++ b/vcl/unx/gtk/window/gtkframe.cxx
@@ -1853,8 +1853,7 @@ void GtkSalFrame::SetScreen( unsigned int nNewScreen, int 
eType, Rectangle *pSiz
 return;
 
 gint nMonitor;
-GdkScreen *pScreen = NULL;
-pScreen = getDisplay()-getSystem()-getScreenMonitorFromIdx( nNewScreen, 
nMonitor );
+GdkScreen *pScreen = getDisplay()-getSystem()-getScreenMonitorFromIdx( 
nNewScreen, nMonitor );
 
 // Heavy lifting, need to move screen ...
 if( pScreen != gtk_widget_get_screen( m_pWindow ))
@@ -2047,10 +2046,9 @@ dbus_inhibit_gsm (const gchar *appname,
 guintcookie;
 GError  *error = NULL;
 DBusGProxy  *proxy = NULL;
-DBusGConnection *session_connection = NULL;
 
 /* get the DBUS session connection */
-session_connection = dbus_g_bus_get (DBUS_BUS_SESSION, error);
+DBusGConnection *session_connection = dbus_g_bus_get 
(DBUS_BUS_SESSION, error);
 if (error != NULL) {
 g_debug (DBUS cannot connect : %s, error-message);
 g_error_free (error);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: vcl/unx

2012-10-21 Thread Libreoffice Gerrit user
 vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit b339e4e2ba2b833903956cbcebf64a2a99dba176
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sun Oct 21 12:29:58 2012 +0200

Fix Variable 'eState' is reassigned a value before the old one has been used

See 
http://nabble.documentfoundation.org/Cppcheck-report-in-vcl-unx-gtk-gdi-salnativewidgets-gtk-cxx-td4014513.html

Change-Id: I9f59ed1fa0cd325d65f5574332b19625b27f8900

diff --git a/vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx 
b/vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx
index 5870070..56a9b0a 100644
--- a/vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx
+++ b/vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx
@@ -3448,7 +3448,6 @@ sal_Bool GtkSalGraphics::NWPaintGTKSlider(
  : GTK_WIDGET(gWidgetData[m_nXScreen].gVScale);
 const gchar* pDetail = (nPart == PART_TRACK_HORZ_AREA) ? hscale : 
vscale;
 GtkOrientation eOri = (nPart == PART_TRACK_HORZ_AREA) ? 
GTK_ORIENTATION_HORIZONTAL : GTK_ORIENTATION_VERTICAL;
-GtkStateType eState = (nState  CTRL_STATE_ENABLED) ? GTK_STATE_ACTIVE : 
GTK_STATE_INSENSITIVE;
 gint slider_width = 10;
 gint slider_length = 10;
 gint trough_border = 0;
@@ -3458,7 +3457,7 @@ sal_Bool GtkSalGraphics::NWPaintGTKSlider(
   trough-border, trough_border,
   NULL);
 
-eState = (nState  CTRL_STATE_ENABLED) ? GTK_STATE_NORMAL : 
GTK_STATE_INSENSITIVE;
+GtkStateType eState = (nState  CTRL_STATE_ENABLED) ? GTK_STATE_NORMAL : 
GTK_STATE_INSENSITIVE;
 if( nPart == PART_TRACK_HORZ_AREA )
 {
 gtk_paint_box( pWidget-style,
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Cppcheck report in vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx

2012-10-21 Thread julien2412
Ivan Timofeev wrote
 On 20.10.2012 22:23, julien2412 wrote:
 [gdi/salnativewidgets-gtk.cxx:3452] -
 [gdi/salnativewidgets-gtk.cxx:3462]:
 (performance) Variable 'eState' is reassigned a value before the old one
 has
 been used.
 Is the line 3452 could just be removed or should this part be a little
 reworked?
 I think the line 3452 can be removed. GTK_STATE_ACTIVE is for pressed
 controls, i.e. CTRL_STATE_PRESSED, and the Slider control does not even
 use this CTRL_STATE_PRESSED flag.
 http://opengrok.libreoffice.org/xref/core/vcl/source/control/slider.cxx

Hi Ivan,

Thank you for your feedback Ivan, I pushed this removal on master (see
http://cgit.freedesktop.org/libreoffice/core/commit/?id=b339e4e2ba2b833903956cbcebf64a2a99dba176)

Julien



--
View this message in context: 
http://nabble.documentfoundation.org/Cppcheck-report-in-vcl-unx-gtk-gdi-salnativewidgets-gtk-cxx-tp4014513p4014579.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


Windows installer issue

2012-10-21 Thread Mat M

Hello,

I tried to  build an msi with all the 109 languages. It failed  
(surprisingly ?).
Actually, they may be other issues, but the makecab failed with this  
error: Data-size or file-count exceeded CAB format limits

which I could understand, but that's not my point.

In the log, I saw many warnings about mis-named variables (mainly typos)  
which I can't fix because I didn't manage to know where they come from  
(lost in all .mk files :-/ ).

Any pointer welcome.

Also it tries to:
Removing for this language  
en-US_af_am_ar_as_ast_be_bg_bn_bn-IN_bo_br_brx_bs_ca_ca-XV_cs_cy_da_de_dgo_dz_el_en-GB_en-ZA_eo_es_et_eu_fa_fi_fr_ga_gd_gl_gu_he_hi_hr_hu_id_is_it_ja_ka_kk_km_kn_ko_kok_ks_ku_lb_lo_lt_lv_mai_mk_ml_mn_mni_mr_my_nb_ne_nl_nn_nr_nso_oc_om_or_pa-IN_pl_pt_pt-BR_qtz_ro_ru_rw_sa-IN_sat_sd_sh_si_sk_sl_sq_sr_ss_st_sv_sw-TZ_ta_te_tg_th_tn_tr_ts_tt_ug_uk_uz_ve_vi_xh_zh-CN_zh-TW_zu:


Comes from installer.pm, it somehow replaces spaces by _ in the whole  
language list. Maybe an issue related to last fixes related to languages ?


HTH

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


Re: Windows installer issue

2012-10-21 Thread Andras Timar
Hello,

On Sun, Oct 21, 2012 at 2:20 PM, Mat M m...@gmx.fr wrote:
 Hello,

 I tried to  build an msi with all the 109 languages. It failed (surprisingly
 ?).
 Actually, they may be other issues, but the makecab failed with this error:
 Data-size or file-count exceeded CAB format limits
 which I could understand, but that's not my point.


Probably you tried to package a debug build. Luckily we have never met
this limitation in release builds and/or in en-US debug builds.

 In the log, I saw many warnings about mis-named variables (mainly typos)
 which I can't fix because I didn't manage to know where they come from (lost
 in all .mk files :-/ ).
 Any pointer welcome.

I don't know, I can only give general pointers, such as 'git grep' or
opengrok.libreoffice.org. If you sent your build log, I could have
been more specific. I have not built master on Windows for 2 weeks,
maybe something has gone wrong since then. Now I'm away from my
Windows box, I cannot try it now. Your input/bugreports/patches are
welcome.

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


Re: extensions down

2012-10-21 Thread Christian Lohmaier
Hi *,

On Sun, Oct 21, 2012 at 12:04 PM, Anton Meixome meix...@certima.net wrote:

 From yesterday I want upload a new dictionary extensión but I can't because
 the site is down

 http://extensions.libreoffice.org/

 Can somebody ping to person responsible?

Wiki was misbehvaving, and on top of that the quota-limit was reached.
Should be fine again now.

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


Mark rtl_*memory as deprecated

2012-10-21 Thread Arnaud Versini (via Code Review)
Arnaud Versini has abandoned this change.

Change subject: Mark rtl_*memory as deprecated
..


Patch Set 1: Abandoned

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

Gerrit-MessageType: abandon
Gerrit-Change-Id: I0e5e85d6b23961baa9ef3ed4247e39497bb063d7
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Arnaud Versini arnaud.vers...@gmail.com
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com

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


[PATCH] More efficient way to initialize SwDoc

2012-10-21 Thread Arnaud Versini (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/894

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/94/894/1

More efficient way to initialize SwDoc

Change-Id: Icde740ea12e8839b0a4c8e0317143dbe2157a964
---
M sw/source/core/doc/docnew.cxx
1 file changed, 68 insertions(+), 66 deletions(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Icde740ea12e8839b0a4c8e0317143dbe2157a964
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Arnaud Versini arnaud.vers...@gmail.com

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


[Libreoffice-commits] .: config_host.mk.in configure.ac connectivity/Library_postgresql-sdbc-impl.mk Makefile.top Module_tail_build.mk ooo.lst.in postgresql/ExternalPackage_postgresql.mk postgresql/Ex

2012-10-21 Thread Libreoffice Gerrit user
 Makefile.top |2 
 Module_tail_build.mk |1 
 RepositoryModule_ooo.mk  |1 
 config_host.mk.in|1 
 configure.ac |2 
 connectivity/Library_postgresql-sdbc-impl.mk |6 +
 ooo.lst.in   |2 
 postgresql/ExternalPackage_postgresql.mk |   32 +
 postgresql/ExternalProject_postgresql.mk |   41 
 postgresql/Makefile  |7 ++
 postgresql/Module_postgresql.mk  |   22 ++
 postgresql/UnpackedTarball_postgresql.mk |   24 +++
 postgresql/makefile.mk   |   92 ---
 postgresql/prj/d.lst |8 --
 solenv/gbuild/Library.mk |2 
 solenv/gbuild/LinkTarget.mk  |   11 +++
 tail_build/prj/build.lst |2 
 17 files changed, 152 insertions(+), 104 deletions(-)

New commits:
commit ffcaa7651f5761c884b57e1c0f0ff0f92b803194
Author: Peter Foley pefol...@verizon.net
Date:   Sun Oct 21 09:15:12 2012 -0400

convert postgresql to gbuild

Change-Id: Ia1345904a819d8edfad53c8882be35b398e8bc6e

diff --git a/Makefile.top b/Makefile.top
index 0e85de6..a37dc0b 100644
--- a/Makefile.top
+++ b/Makefile.top
@@ -122,6 +122,7 @@ oox\
 package\
 packimages\
 padmin\
+postgresql\
 psprint_config\
 pyuno\
 qadevOOo\
@@ -241,7 +242,6 @@ odk\
 openldap\
 openssl\
 pango\
-postgresql\
 postprocess\
 python\
 redland\
diff --git a/Module_tail_build.mk b/Module_tail_build.mk
index b6c6512..9ee18e2 100644
--- a/Module_tail_build.mk
+++ b/Module_tail_build.mk
@@ -112,6 +112,7 @@ $(eval $(call gb_Module_add_moduledirs,tail_end,\
oox \
package \
padmin \
+   $(call gb_Helper_optional,POSTGRESQL,postgresql) \
psprint_config \
$(call gb_Helper_optional,PYUNO,pyuno) \
$(call gb_Helper_optional,QADEVOOO,qadevOOo) \
diff --git a/RepositoryModule_ooo.mk b/RepositoryModule_ooo.mk
index acdb736..a9e3b2f 100644
--- a/RepositoryModule_ooo.mk
+++ b/RepositoryModule_ooo.mk
@@ -121,6 +121,7 @@ $(eval $(call gb_Module_add_moduledirs,ooo,\
 package \
 packimages \
 padmin \
+$(call gb_Helper_optional,POSTGRESQL,postgresql) \
 psprint_config \
$(call gb_Helper_optional,PYUNO,pyuno) \
$(if $(strip $(OOO_JUNIT_JAR)),\
diff --git a/config_host.mk.in b/config_host.mk.in
index 7aca33b..503d4ae 100644
--- a/config_host.mk.in
+++ b/config_host.mk.in
@@ -463,6 +463,7 @@ export POPPLER_CFLAGS=@POPPLER_CFLAGS@
 export POPPLER_LIBS=@POPPLER_LIBS@
 export POSTGRESQL_INC=@POSTGRESQL_INC@
 export POSTGRESQL_LIB=@POSTGRESQL_LIB@
+export POSTGRESQL_TARBALL=@POSTGRESQL_TARBALL@
 export PREBUILD_MOZAB=@PREBUILD_MOZAB@
 export PREFIXDIR=@PREFIXDIR@
 export PRODUCT=@PRODUCT@
diff --git a/configure.ac b/configure.ac
index b48aa5d..6521130 100644
--- a/configure.ac
+++ b/configure.ac
@@ -7780,6 +7780,7 @@ if test x$enable_postgresql_sdbc != xno; then
 POSTGRESQL_LIB=
 POSTGRESQL_INC=%OVERRIDE_ME%
 BUILD_TYPE=$BUILD_TYPE POSTGRESQL
+   
POSTGRESQL_TARBALL=061a9f17323117c9358ed60f33ecff78-postgresql-9.1.1.tar.bz2
 fi
 fi
 if test ${SYSTEM_POSTGRESQL} = YES; then
@@ -7804,6 +7805,7 @@ AC_SUBST(BUILD_POSTGRESQL_SDBC)
 AC_SUBST(SYSTEM_POSTGRESQL)
 AC_SUBST(POSTGRESQL_INC)
 AC_SUBST(POSTGRESQL_LIB)
+AC_SUBST(POSTGRESQL_TARBALL)
 
 
 dnl ===
diff --git a/connectivity/Library_postgresql-sdbc-impl.mk 
b/connectivity/Library_postgresql-sdbc-impl.mk
index 7e525a9..b5094cb 100644
--- a/connectivity/Library_postgresql-sdbc-impl.mk
+++ b/connectivity/Library_postgresql-sdbc-impl.mk
@@ -64,7 +64,11 @@ $(eval $(call gb_Library_use_externals,postgresql-sdbc-impl,\
 ifneq ($(SYSTEM_POSTGRESQL),YES)
 ifneq ($(GUI)$(COM),WNTMSC)
 
-include $(OUTDIR)/inc/postgresql/libpq-flags.mk
+$(eval $(call gb_Library_use_external_package,postgresql-sdbc-impl,\
+   postgresql \
+))
+
+-include $(OUTDIR)/inc/postgresql/libpq-flags.mk
 
 $(eval $(call gb_Library_add_libs,postgresql-sdbc-impl,\
$(if $(filter-out MACOSX,$(OS)),-Wl$(COMMA)--as-needed) \
diff --git a/ooo.lst.in b/ooo.lst.in
index f3cfcc2..0b64496 100644
--- a/ooo.lst.in
+++ b/ooo.lst.in
@@ -33,7 +33,7 @@ dd7dab7a5fea97d2a6a43f511449b7cd-expat-2.1.0.tar.gz
 fb7ba5c2182be4e73748859967455455-README_stax-api-1.0-2-sources.txt
 fca8706f2c4619e2fa3f8f42f8fc1e9d-rasqal-0.9.16.tar.gz
 0981bda6548a8c8233ffce2b6e4b2a23-mysql-connector-c++-1.1.0.tar.gz
-061a9f17323117c9358ed60f33ecff78-postgresql-9.1.1.tar.bz2
+@POSTGRESQL_TARBALL@
 46e92b68e31e858512b680b3b61dc4c1-mythes-1.2.3.tar.gz
 3dd55b952826d2b32f51308f2f91aa89-gettext-0.18.1.1.tar.gz
 9f6e85e1e38490c3956f4415bcd33e6e-glib-2.28.1.tar.gz
diff --git a/postgresql/ExternalPackage_postgresql.mk 

[Libreoffice-commits] .: sw/qa

2012-10-21 Thread Libreoffice Gerrit user
 sw/qa/extras/odfimport/odfimport.cxx |   24 +--
 sw/qa/extras/ooxmlimport/ooxmlimport.cxx |  170 +++--
 sw/qa/extras/rtfimport/rtfimport.cxx |  246 ++-
 sw/qa/extras/ww8import/ww8import.cxx |   41 ++---
 4 files changed, 175 insertions(+), 306 deletions(-)

New commits:
commit 9b53538a076a2370df975655c8579dfe09cff09b
Author: Miklos Vajna vmik...@suse.cz
Date:   Sun Oct 21 14:46:21 2012 +0200

sw: rework import tests to match the syntax of export tests

As a side-effect, this reduces the length of the code as well.

Change-Id: I83da39968ab7629548dd3c469ea8e648c4574653

diff --git a/sw/qa/extras/odfimport/odfimport.cxx 
b/sw/qa/extras/odfimport/odfimport.cxx
index d7a6c0e..2332826 100644
--- a/sw/qa/extras/odfimport/odfimport.cxx
+++ b/sw/qa/extras/odfimport/odfimport.cxx
@@ -42,32 +42,37 @@ public:
 
 CPPUNIT_TEST_SUITE(Test);
 #if !defined(MACOSX)  !defined(WNT)
-CPPUNIT_TEST(testEmptySvgFamilyName);
-CPPUNIT_TEST(testHideAllSections);
-CPPUNIT_TEST(testOdtBorders);
+CPPUNIT_TEST(run);
 #endif
 CPPUNIT_TEST_SUITE_END();
 
 private:
-/// Load an ODF file and make the document available via mxComponent.
-void load(const OUString rURL);
+void run();
 };
 
-void Test::load(const OUString rFilename)
+void Test::run()
 {
-mxComponent = 
loadFromDesktop(getURLFromSrc(/sw/qa/extras/odfimport/data/) + rFilename);
+MethodEntryTest aMethods[] = {
+{empty-svg-family-name.odt, Test::testEmptySvgFamilyName},
+{fdo53210.odt, Test::testHideAllSections},
+{borders_ooo33.odt, Test::testOdtBorders},
+};
+for (unsigned int i = 0; i  SAL_N_ELEMENTS(aMethods); ++i)
+{
+MethodEntryTest rEntry = aMethods[i];
+mxComponent = 
loadFromDesktop(getURLFromSrc(/sw/qa/extras/odfimport/data/) + 
OUString::createFromAscii(rEntry.pName));
+(this-*rEntry.pMethod)();
+}
 }
 
 void Test::testEmptySvgFamilyName()
 {
 // .odt import did crash on the empty font list (which I think is valid 
according SVG spec)
-load( empty-svg-family-name.odt );
 }
 
 void Test::testHideAllSections()
 {
 // This document has a section that is conditionally hidden, but has no 
empty paragraph after it.
-load(fdo53210.odt);
 uno::Referencetext::XTextFieldsSupplier xTextFieldsSupplier(mxComponent, 
uno::UNO_QUERY);
 uno::Referencecontainer::XNameAccess xMasters = 
xTextFieldsSupplier-getTextFieldMasters();
 // Set _CS_Allgemein to 0
@@ -79,7 +84,6 @@ void Test::testHideAllSections()
 
 void Test::testOdtBorders()
 {
-load(borders_ooo33.odt);
 AllBordersMap map;
 uno::Sequence table::BorderLine  tempSequence(4);
 
diff --git a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx 
b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
index f30c0f1..7a1a4c7 100644
--- a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
+++ b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
@@ -109,68 +109,73 @@ public:
 
 CPPUNIT_TEST_SUITE(Test);
 #if !defined(MACOSX)  !defined(WNT)
-CPPUNIT_TEST(testN751054);
-CPPUNIT_TEST(testN751117);
-CPPUNIT_TEST(testN751017);
-CPPUNIT_TEST(testN750935);
-CPPUNIT_TEST(testN757890);
-CPPUNIT_TEST(testFdo49940);
-CPPUNIT_TEST(testN751077);
-CPPUNIT_TEST(testN705956_1);
-CPPUNIT_TEST(testN705956_2);
-CPPUNIT_TEST(testN747461);
-CPPUNIT_TEST(testN750255);
-CPPUNIT_TEST(testN652364);
-CPPUNIT_TEST(testN760764);
-CPPUNIT_TEST(testN764005);
-CPPUNIT_TEST(testSmartart);
-CPPUNIT_TEST(testN764745);
-CPPUNIT_TEST(testN766477);
-CPPUNIT_TEST(testN758883);
-CPPUNIT_TEST(testN766481);
-CPPUNIT_TEST(testN766487);
-CPPUNIT_TEST(testN693238);
-CPPUNIT_TEST(testNumbering1);
-CPPUNIT_TEST(testBnc773061);
-CPPUNIT_TEST(testAllGapsWord);
-CPPUNIT_TEST(testN775906);
-CPPUNIT_TEST(testN775899);
-CPPUNIT_TEST(testN777345);
-CPPUNIT_TEST(testN777337);
-CPPUNIT_TEST(testN778836);
-CPPUNIT_TEST(testN778140);
-CPPUNIT_TEST(testN778828);
-CPPUNIT_TEST(testInk);
-CPPUNIT_TEST(testN779834);
-CPPUNIT_TEST(testN779627);
-CPPUNIT_TEST(testN779941);
-CPPUNIT_TEST(testN779957);
-CPPUNIT_TEST(testFdo55187);
-CPPUNIT_TEST(testN780563);
-CPPUNIT_TEST(testN780853);
-CPPUNIT_TEST(testN780843);
-CPPUNIT_TEST(testShadow);
-CPPUNIT_TEST(testN782061);
-CPPUNIT_TEST(testN782345);
-CPPUNIT_TEST(testN783638);
-CPPUNIT_TEST(testFdo52208);
+CPPUNIT_TEST(run);
 #endif
 CPPUNIT_TEST_SUITE_END();
 
 private:
-/// Load an OOXML file and make the document available via mxComponent.
-void load(const OUString rURL);
+void run();
 };
 
-void Test::load(const OUString rFilename)
+void Test::run()
 {
-mxComponent = 
loadFromDesktop(getURLFromSrc(/sw/qa/extras/ooxmlimport/data/) + rFilename);
+MethodEntryTest aMethods[] = {
+{n751054.docx, Test::testN751054},
+{n751117.docx, Test::testN751117},
+

[Libreoffice-commits] .: sw/source

2012-10-21 Thread Libreoffice Gerrit user
 sw/source/core/layout/findfrm.cxx |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 4d837ff3d0a4121216800eb88e7f48c336a5fb03
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sun Oct 21 16:36:51 2012 +0200

Fix  Variable X is reassigned a value before the old one has been used

Change-Id: I293b42d075d9c680a781a3bb993f05f4d7d62208

diff --git a/sw/source/core/layout/findfrm.cxx 
b/sw/source/core/layout/findfrm.cxx
index 555ac8a..fa07f8f 100644
--- a/sw/source/core/layout/findfrm.cxx
+++ b/sw/source/core/layout/findfrm.cxx
@@ -334,9 +334,9 @@ const SwLayoutFrm *SwFrm::ImplGetNextLayoutLeaf( bool bFwd 
) const
 bool bGoingUp = !bFwd;  // false for forward, true for backward
 do {
 
- bool bGoingFwdOrBwd = false, bGoingDown = false;
+ bool bGoingFwdOrBwd = false;
 
- bGoingDown = ( !bGoingUp  ( 0 != (p = lcl_GetLower( pFrm, bFwd ) ) 
) );
+ bool bGoingDown = ( !bGoingUp  ( 0 != (p = lcl_GetLower( pFrm, bFwd 
) ) ) );
  if ( !bGoingDown )
  {
  // I cannot go down, because either I'm currently going up or
@@ -394,9 +394,9 @@ const SwCntntFrm* SwCntntFrm::ImplGetNextCntntFrm( bool 
bFwd ) const
 sal_Bool bGoingUp = sal_False;
 do {
 const SwFrm *p = 0;
-sal_Bool bGoingFwdOrBwd = sal_False, bGoingDown = sal_False;
+sal_Bool bGoingFwdOrBwd = sal_False;
 
-bGoingDown = ( !bGoingUp  ( 0 != ( p = lcl_GetLower( pFrm, true ) ) 
) );
+sal_Bool bGoingDown = ( !bGoingUp  ( 0 != ( p = lcl_GetLower( pFrm, 
true ) ) ) );
 if ( !bGoingDown )
 {
 bGoingFwdOrBwd = ( 0 != ( p = lcl_FindLayoutFrame( pFrm, bFwd ) ) 
);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: sw/source

2012-10-21 Thread Libreoffice Gerrit user
 sw/source/core/layout/ftnfrm.cxx  |3 +--
 sw/source/core/layout/sectfrm.cxx |4 ++--
 sw/source/core/layout/tabfrm.cxx  |3 +--
 3 files changed, 4 insertions(+), 6 deletions(-)

New commits:
commit 5e56827888797f80d35ed71536b81b9854bb5ce7
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sun Oct 21 16:47:37 2012 +0200

Fix some Variable X is reassigned a value before the old one has been used

Change-Id: I6df132f670c771f18b3aa7ae87b14adf266b64a4

diff --git a/sw/source/core/layout/ftnfrm.cxx b/sw/source/core/layout/ftnfrm.cxx
index ad5ae9e..baa7be1 100644
--- a/sw/source/core/layout/ftnfrm.cxx
+++ b/sw/source/core/layout/ftnfrm.cxx
@@ -795,9 +795,8 @@ SwLayoutFrm *SwFrm::GetPrevFtnLeaf( MakePageType eMakeFtn )
 {
 //Der Vorgaenger fuer eine Fussnote ist falls moeglich der Master
 //in der Fussnoteneigenen Verkettung.
-SwLayoutFrm *pRet = 0;
 SwFtnFrm *pFtn = FindFtnFrm();
-pRet = pFtn-GetMaster();
+SwLayoutFrm *pRet = pFtn-GetMaster();
 
 SwFtnBossFrm* pOldBoss = FindFtnBossFrm();
 SwPageFrm *pOldPage = pOldBoss-FindPageFrm();
diff --git a/sw/source/core/layout/sectfrm.cxx 
b/sw/source/core/layout/sectfrm.cxx
index a0f1413..e9df733 100644
--- a/sw/source/core/layout/sectfrm.cxx
+++ b/sw/source/core/layout/sectfrm.cxx
@@ -612,9 +612,9 @@ static SwCntntFrm* lcl_GetNextCntntFrm( const SwLayoutFrm* 
pLay, bool bFwd )
 sal_Bool bGoingUp = sal_True;
 do {
 const SwFrm *p = 0;
-sal_Bool bGoingFwdOrBwd = sal_False, bGoingDown = sal_False;
+sal_Bool bGoingFwdOrBwd = sal_False;
 
-bGoingDown = !bGoingUp  ( 0 !=  ( p = pFrm-IsLayoutFrm() ? 
((SwLayoutFrm*)pFrm)-Lower() : 0 ) );
+sal_Bool bGoingDown = !bGoingUp  ( 0 !=  ( p = pFrm-IsLayoutFrm() ? 
((SwLayoutFrm*)pFrm)-Lower() : 0 ) );
 if ( !bGoingDown )
 {
 bGoingFwdOrBwd = ( 0 != ( p = pFrm-IsFlyFrm() ?
diff --git a/sw/source/core/layout/tabfrm.cxx b/sw/source/core/layout/tabfrm.cxx
index 57b8801..af3373a 100644
--- a/sw/source/core/layout/tabfrm.cxx
+++ b/sw/source/core/layout/tabfrm.cxx
@@ -5524,10 +5524,9 @@ SwTwips SwTabFrm::CalcHeightOfFirstContentLine() const
 return (Frm().*fnRect-fnGetHeight)();
 }
 
-SwRowFrm* pFirstRow = 0;
 SwTwips nTmpHeight = 0;
 
-pFirstRow = GetFirstNonHeadlineRow();
+SwRowFrm* pFirstRow = GetFirstNonHeadlineRow();
 OSL_ENSURE( !IsFollow() || pFirstRow, FollowTable without Lower );
 
 // NEW TABLES
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: postgresql/ExternalPackage_postgresql.mk postgresql/ExternalProject_postgresql.mk

2012-10-21 Thread Libreoffice Gerrit user
 postgresql/ExternalPackage_postgresql.mk |7 +++
 postgresql/ExternalProject_postgresql.mk |3 ++-
 2 files changed, 5 insertions(+), 5 deletions(-)

New commits:
commit f9735c65aaad195c1e6a4586d173ee30ad08e685
Author: Peter Foley pefol...@verizon.net
Date:   Sun Oct 21 12:08:39 2012 -0400

fix postgresql on win

Change-Id: I15da34e09b74d9b97b64327ab46282c4f33e4118

diff --git a/postgresql/ExternalPackage_postgresql.mk 
b/postgresql/ExternalPackage_postgresql.mk
index d86c105..ace19d0 100644
--- a/postgresql/ExternalPackage_postgresql.mk
+++ b/postgresql/ExternalPackage_postgresql.mk
@@ -16,10 +16,6 @@ $(eval $(call 
gb_ExternalPackage_add_unpacked_files,postgresql,inc/postgresql,\
src/interfaces/libpq/libpq-fe.h \
 ))
 
-$(eval $(call gb_ExternalPackage_add_files,postgresql,inc/postgresql,\
-   src/interfaces/libpq/libpq-flags.mk \
-))
-
 ifeq ($(OS),WNT)
 $(eval $(call gb_ExternalPackage_add_files,postgresql,lib,\
src/interfaces/libpq/libpq.lib \
@@ -28,5 +24,8 @@ else
 $(eval $(call gb_ExternalPackage_add_files,postgresql,lib,\
src/interfaces/libpq/libpq.a \
 ))
+$(eval $(call gb_ExternalPackage_add_files,postgresql,inc/postgresql,\
+   src/interfaces/libpq/libpq-flags.mk \
+))
 endif
 # vim: set noet sw=4 ts=4:
diff --git a/postgresql/ExternalProject_postgresql.mk 
b/postgresql/ExternalProject_postgresql.mk
index db1deb2..283b11b 100644
--- a/postgresql/ExternalProject_postgresql.mk
+++ b/postgresql/ExternalProject_postgresql.mk
@@ -19,7 +19,8 @@ ifeq ($(OS)$(COM),WNTMSC)
 
 $(call gb_ExternalProject_get_state_target,postgresql,build) :
cd $(EXTERNAL_WORKDIR)/src \
-nmake -f win32.mk USE_SSL=1 USE_LDAP=1 USE_MICROSOFT_LDAP=1 \
+unset MAKEFLAGS \
+nmake -f win32.mak USE_SSL=1 USE_LDAP=1 \
 touch $@
 else
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: configure.ac

2012-10-21 Thread Libreoffice Gerrit user
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit cd5fd07207d2096787ecf34a7f1b837887a3fecd
Author: Peter Foley pefol...@verizon.net
Date:   Sun Oct 21 12:41:10 2012 -0400

translations dir always exists with submodules

Change-Id: I7d6e671f45355eb03fb9e1a49d7123e2f1699e80

diff --git a/configure.ac b/configure.ac
index 6521130..6d9817e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -12242,7 +12242,7 @@ AC_SUBST(GIT_NEEDED_SUBMODULES)
 PathFormat $SRC_ROOT/translations
 L10N_MODULE=$formatted_path
 WITH_POOR_HELP_LOCALIZATIONS=
-if test -d ./translations; then
+if test -d ./translations/source; then
 for l in `ls -1 translations/source`; do
 if test ! -d translations/source/$l/helpcontent2; then
 WITH_POOR_HELP_LOCALIZATIONS=$WITH_POOR_HELP_LOCALIZATIONS $l
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: can we drop rdbmaker ?

2012-10-21 Thread David Tardon
Hi,

On Sat, Oct 20, 2012 at 06:53:10PM +0200, Matúš Kukan wrote:
 Hi,
 
 maybe after 
 http://cgit.freedesktop.org/libreoffice/core/commit/?id=3a282cc97cb846efd065983aa17f9b1875fbef66
 drop rdbmaker support from UnoApiTarget
 we could completely remove module rdbmaker/ ?
 Or is it used in odk or somewhere ?

I assumed it is a part of URE, but that turns out not to be true. As far
as I can see, it is not even part of any installation set. Drop it, I
say!

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


[Libreoffice-commits] .: 2 commits - boost/boost.6397.warnings.patch framework/source

2012-10-21 Thread Libreoffice Gerrit user
 boost/boost.6397.warnings.patch|   66 +
 framework/source/services/autorecovery.cxx |   12 +
 2 files changed, 70 insertions(+), 8 deletions(-)

New commits:
commit 22238981b9f271d75f4d4c8b39b56cbc3616bff2
Author: Caolán McNamara caol...@redhat.com
Date:   Sun Oct 21 17:14:53 2012 +0100

some additional clang warnings

Change-Id: I7ba4a6cb9ad8cb75282553d486e48c00e19cc0c2

diff --git a/boost/boost.6397.warnings.patch b/boost/boost.6397.warnings.patch
index 9c4c1ec..380dfbc 100644
--- a/boost/boost.6397.warnings.patch
+++ b/boost/boost.6397.warnings.patch
@@ -257,6 +257,72 @@
  
 --- misc/boost_1_44_0/boost/multi_array.hpp2012-09-28 13:06:44.796521371 
+0100
 +++ misc/build/boost_1_44_0/boost/multi_array.hpp  2012-09-28 
13:07:25.119002500 +0100
+@@ -139,20 +139,20 @@
+ 
+   explicit multi_array() :
+ super_type((T*)initial_base_,c_storage_order(),
+-   /*index_bases=*/0, /*extents=*/0) {
++   /*index_bases=*/0, /*extents_=*/0) {
+ allocate_space(); 
+   }
+ 
+   template class ExtentList
+   explicit multi_array(
+-  ExtentList const extents
++  ExtentList const extents_
+ #ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
+   , typename mpl::if_
+   detail::multi_array::is_multi_array_implExtentList,
+   int,int::type* = 0
+ #endif
+   ) :
+-super_type((T*)initial_base_,extents) {
++super_type((T*)initial_base_,extents_) {
+ boost::function_requires
+   detail::multi_array::CollectionConceptExtentList ();
+ allocate_space();
+@@ -160,19 +160,19 @@
+ 
+ 
+   template class ExtentList
+-  explicit multi_array(ExtentList const extents,
++  explicit multi_array(ExtentList const extents_,
+const general_storage_orderNumDims so) :
+-super_type((T*)initial_base_,extents,so) {
++super_type((T*)initial_base_,extents_,so) {
+ boost::function_requires
+   detail::multi_array::CollectionConceptExtentList ();
+ allocate_space();
+   }
+ 
+   template class ExtentList
+-  explicit multi_array(ExtentList const extents,
++  explicit multi_array(ExtentList const extents_,
+const general_storage_orderNumDims so,
+Allocator const alloc) :
+-super_type((T*)initial_base_,extents,so), allocator_(alloc) {
++super_type((T*)initial_base_,extents_,so), allocator_(alloc) {
+ boost::function_requires
+   detail::multi_array::CollectionConceptExtentList ();
+ allocate_space();
+@@ -381,7 +381,7 @@
+ 
+ 
+   template typename ExtentList
+-  multi_array resize(const ExtentList extents) {
++  multi_array resize(const ExtentList extents_) {
+ boost::function_requires
+   detail::multi_array::CollectionConceptExtentList ();
+ 
+@@ -390,7 +390,7 @@
+ 
+ for (int i=0; i != NumDims; ++i) {
+   typedef typename gen_type::range range_type;
+-  ranges.ranges_[i] = range_type(0,extents[i]);
++  ranges.ranges_[i] = range_type(0,extents_[i]);
+ }
+ 
+ return this-resize(ranges);
 @@ -423,9 +423,9 @@
  // Build index_gen objects to create views with the same shape
  
commit 3b76773b0e38830ac16cbbb54848d75c5fea4f1c
Author: Caolán McNamara caol...@redhat.com
Date:   Sun Oct 21 17:07:58 2012 +0100

loplugin: misleading else if indent

diff --git a/framework/source/services/autorecovery.cxx 
b/framework/source/services/autorecovery.cxx
index 43fd47c..a5efae1 100644
--- a/framework/source/services/autorecovery.cxx
+++ b/framework/source/services/autorecovery.cxx
@@ -2534,8 +2534,7 @@ AutoRecovery::ETimerType 
AutoRecovery::implts_openDocs(const DispatchParams aPa
 rInfo.DocumentState |= AutoRecovery::E_TRY_LOAD_BACKUP;
 lDescriptor[::comphelper::MediaDescriptor::PROP_SALVAGEDFILE()] 
= sLoadOriginalURL;
 }
-else
-if (!sLoadOriginalURL.isEmpty())
+else if (!sLoadOriginalURL.isEmpty())
 {
 sURL = sLoadOriginalURL;
 rInfo.DocumentState |= AutoRecovery::E_TRY_LOAD_ORIGINAL;
@@ -2780,8 +2779,7 @@ void AutoRecovery::implts_generateNewTempURL(const 
::rtl::OUString
 xParser-parseStrict(aURL);
 sUniqueName.append(aURL.Name);
 }
-else
-if (!rInfo.FactoryURL.isEmpty())
+else if (!rInfo.FactoryURL.isEmpty())
 sUniqueName.appendAscii(untitled);
 sUniqueName.appendAscii(_);
 
@@ -3168,11 +3166,9 @@ void AutoRecovery::implts_backupWorkingEntry(const 
DispatchParams aParams)
 // Prefer temp file. It contains the changes against the original 
document!
 if (!rInfo.OldTempURL.isEmpty())
 sSourceURL = rInfo.OldTempURL;
-else
-if (!rInfo.NewTempURL.isEmpty())
+else if (!rInfo.NewTempURL.isEmpty())
 sSourceURL = rInfo.NewTempURL;
-else
-if (!rInfo.OrgURL.isEmpty())
+else if (!rInfo.OrgURL.isEmpty())
 sSourceURL = rInfo.OrgURL;
 else
 

Gradient data structure

2012-10-21 Thread Christina Roßmanith

Hi,

there is some progress in svg:linearGradient import. But that gradient 
type is more flexible than the existing draw:gradient.


That rises the question: Should I extend the existing data structure or 
add a SvgGradient data structure?


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


Re: extensions down

2012-10-21 Thread Anton Meixome
2012/10/21 Christian Lohmaier lohmaier+libreoff...@googlemail.com

 Hi *,

 On Sun, Oct 21, 2012 at 12:04 PM, Anton Meixome meix...@certima.net
 wrote:
 
  From yesterday I want upload a new dictionary extensión but I can't
 because
  the site is down
 
  http://extensions.libreoffice.org/
 
  Can somebody ping to person responsible?

 Wiki was misbehvaving, and on top of that the quota-limit was reached.
 Should be fine again now.

 ciao
 Christian


Hi, Christian,

Unfortunately no. I was editing de spellchecker project for galician but in
certain moment it was irresponsible. Changes is not been saving. Now is
inrreachable again.

:-(

Note: galician interface is not available but it is available in Pootle a
lot of time ago. Can you take this matter in consideration?

-- 
Antón Méixome - Galician Native Lang Coordination
Galician community LibO  AOO
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] .: config_host.mk.in configure.ac sd/Library_sd.mk sd/Library_sdui.mk sd/source

2012-10-21 Thread Libreoffice Gerrit user
 config_host.mk.in |1 
 configure.ac  |   45 ++
 sd/Library_sd.mk  |   11 +++-
 sd/Library_sdui.mk|7 +
 sd/source/ui/dlg/RemoteDialog.cxx |8 --
 sd/source/ui/remotecontrol/Server.cxx |8 ++
 6 files changed, 62 insertions(+), 18 deletions(-)

New commits:
commit 7c8c73dd5cf84050a8a2c51b04d7f5278b409fd7
Author: Rene Engelhard r...@debian.org
Date:   Sun Oct 21 14:54:53 2012 +0200

fix sdremote related configure switches

sdremote itself apparently works also over IP (WLAN), so we don't need to
disable it when we just don't want/have bluetooth. And also dbus is also
needed in the bluez case

Change-Id: I55ba07cd715d1e9bd641ef28e2391e4fe85b85e0

diff --git a/config_host.mk.in b/config_host.mk.in
index 503d4ae..8e328d2 100644
--- a/config_host.mk.in
+++ b/config_host.mk.in
@@ -160,6 +160,7 @@ export ENABLE_QUICKSTART_LIBPNG=@ENABLE_QUICKSTART_LIBPNG@
 export ENABLE_RANDR=@ENABLE_RANDR@
 export ENABLE_RELEASE_BUILD=@ENABLE_RELEASE_BUILD@
 export ENABLE_SDREMOTE=@ENABLE_SDREMOTE@
+export ENABLE_BLUETOOTH=@ENABLE_BLUETOOTH@
 export ENABLE_REPORTBUILDER=@ENABLE_REPORTBUILDER@
 export ENABLE_SCRIPTING_BEANSHELL=@ENABLE_SCRIPTING_BEANSHELL@
 export ENABLE_SCRIPTING_JAVASCRIPT=@ENABLE_SCRIPTING_JAVASCRIPT@
diff --git a/configure.ac b/configure.ac
index 6d9817e..90bc25e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -879,10 +879,15 @@ AC_ARG_ENABLE(packagekit,
 
 AC_ARG_ENABLE(sdremote,
 AS_HELP_STRING([--disable-sdremote],
-[Determines whether to enable Impress remote control.
- Uses dbus and bluetooth (bluez).]),
+[Determines whether to enable Impress remote control.]),
 ,enable_sdremote=yes)
 
+AC_ARG_ENABLE(bluetooth,
+AS_HELP_STRING([--disable-bluetooth],
+[Determines whether to build sdremote sith bluetooth support
+(via dbus)]),
+,enable_bluetooth=yes)
+
 AC_ARG_ENABLE(gconf,
 AS_HELP_STRING([--disable-gconf],
 [Determines whether to use the GConf support.]),
@@ -9597,32 +9602,42 @@ fi
 AC_SUBST(ENABLE_PACKAGEKIT)
 
 AC_MSG_CHECKING([whether to enable sd remotecontrol])
-if test $ENABLE_DBUS = TRUE; then
-if test -n $enable_sdremote -a $enable_sdremote != no; then
-AC_MSG_RESULT([yes])
-ENABLE_SDREMOTE=YES
+if test -n $enable_sdremote -a $enable_sdremote != no; then
+AC_MSG_RESULT([yes])
+ENABLE_SDREMOTE=YES
+AC_MSG_CHECKING([whether to enable bluetooth support])
+if test -n $enable_bluetooth -a $enable_bluetooth != no; then
+   AC_MSG_RESULT([yes])
+ENABLE_BLUETOOTH=YES
 if test $OS = LINUX; then
-dnl 
===
-dnl Check for system bluez
-dnl 
===
-AC_MSG_CHECKING([which bluetooth header to use])
-if test $with_system_bluez = yes; then
+if test $ENABLE_DBUS = TRUE; then
+dnl 
===
+dnl Check for system bluez
+dnl 
===
+AC_MSG_CHECKING([which bluetooth header to use])
+if test $with_system_bluez = yes; then
 AC_MSG_RESULT([external])
 AC_CHECK_HEADER(bluetooth/bluetooth.h, [],
 [AC_MSG_ERROR(bluetooth.h not found. install bluez)], 
[])
-else
+else
 AC_MSG_RESULT([internal])
 BUILD_TYPE=$BUILD_TYPE BLUEZ
+fi
 fi
+else
+AC_MSG_RESULT([no, dbus disabled])
+ENABLE_BLUETOOTH=NO
 fi
 else
-ENABLE_SDREMOTE=NO
-AC_MSG_RESULT([no])
+   AC_MSG_RESULT([no])
+ENABLE_BLUETOOTH=NO
 fi
 else
-AC_MSG_RESULT([no, dbus disabled.])
+ENABLE_SDREMOTE=NO
+AC_MSG_RESULT([no])
 fi
 AC_SUBST(ENABLE_SDREMOTE)
+AC_SUBST(ENABLE_BLUETOOTH)
 
 dnl ===
 dnl Check whether the gtk 2.0 libraries are available.
diff --git a/sd/Library_sd.mk b/sd/Library_sd.mk
index ba2fe9e..ae4b8a5 100644
--- a/sd/Library_sd.mk
+++ b/sd/Library_sd.mk
@@ -513,7 +513,6 @@ $(eval $(call gb_Library_add_exception_objects,sd,\
 
 ifeq ($(ENABLE_SDREMOTE),YES)
 $(eval $(call gb_Library_add_exception_objects,sd,\
-sd/source/ui/remotecontrol/BluetoothServer \
 sd/source/ui/remotecontrol/BufferedStreamSocket \
 sd/source/ui/remotecontrol/Communicator \
 sd/source/ui/remotecontrol/DiscoveryService \
@@ -528,6 +527,16 @@ $(eval $(call gb_Library_add_defs,sd,\
 -DENABLE_SDREMOTE \
 ))
 
+ifeq ($(ENABLE_BLUETOOTH),YES)
+$(eval $(call 

[Libreoffice-commits] .: configure.ac

2012-10-21 Thread Libreoffice Gerrit user
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 13a9b71d3af1f93523a1f58444f0dbbadeb10db9
Author: Peter Foley pefol...@verizon.net
Date:   Sun Oct 21 17:41:20 2012 -0400

fix typo

Change-Id: I10ac442d9be4f592d79d8b2fbd824d94852781d9

diff --git a/configure.ac b/configure.ac
index 90bc25e..da5d5a7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -884,7 +884,7 @@ AC_ARG_ENABLE(sdremote,
 
 AC_ARG_ENABLE(bluetooth,
 AS_HELP_STRING([--disable-bluetooth],
-[Determines whether to build sdremote sith bluetooth support
+[Determines whether to build sdremote with bluetooth support
 (via dbus)]),
 ,enable_bluetooth=yes)
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 44446] LibreOffice 3.6 most annoying bugs

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=6

rossni...@gmail.com changed:

   What|Removed |Added

 Depends on||55181

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


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

2012-10-21 Thread Libreoffice Gerrit user
 sw/inc/doc.hxx  |   10 ++---
 sw/inc/fesh.hxx |4 +-
 sw/source/core/doc/docfld.cxx   |   62 ++--
 sw/source/core/doc/docfly.cxx   |   26 +++
 sw/source/core/doc/doclay.cxx   |6 +--
 sw/source/core/docnode/nodes.cxx|2 -
 sw/source/core/frmedt/fefly1.cxx|8 ++--
 sw/source/core/inc/docfld.hxx   |   14 
 sw/source/core/text/txtfrm.cxx  |2 -
 sw/source/core/txtnode/thints.cxx   |6 +--
 sw/source/core/unocore/unoframe.cxx |4 +-
 sw/source/ui/app/docst.cxx  |2 -
 sw/source/ui/docvw/edtwin.cxx   |2 -
 13 files changed, 74 insertions(+), 74 deletions(-)

New commits:
commit ec9e661988c81b0424d4e848d24c745a7dc9e5ad
Author: Takeshi Abe t...@fixedpoint.jp
Date:   Mon Oct 22 12:53:09 2012 +0900

sal_Bool to bool

Change-Id: I71842ace16eb65b3269754cc36408fe52843b2ea

diff --git a/sw/inc/doc.hxx b/sw/inc/doc.hxx
index 740659a..88f13a8 100644
--- a/sw/inc/doc.hxx
+++ b/sw/inc/doc.hxx
@@ -635,7 +635,7 @@ private:
 const xub_StrLen nEndContentIndex,
 const SwNodeIndex rStartIdx,
 const bool bCopyFlyAtFly = false ) const;
-sal_Int8 SetFlyFrmAnchor( SwFrmFmt rFlyFmt, SfxItemSet rSet, sal_Bool 
bNewFrms );
+sal_Int8 SetFlyFrmAnchor( SwFrmFmt rFlyFmt, SfxItemSet rSet, bool 
bNewFrms );
 
 typedef SwFmt* (SwDoc:: *FNCopyFmt)( const String, SwFmt*, sal_Bool, 
sal_Bool );
 SwFmt* CopyFmt( const SwFmt rFmt, const SwFmtsBase rFmtArr,
@@ -665,7 +665,7 @@ private:
 void AddUsedDBToList( std::vectorString rDBNameList,
   const std::vectorString rUsedDBNames );
 void AddUsedDBToList( std::vectorString rDBNameList, const String 
rDBName );
-sal_Bool IsNameInArray( const std::vectorString rOldNames, const 
String rName );
+bool IsNameInArray( const std::vectorString rOldNames, const String 
rName );
 void GetAllDBNames( std::vectorString rAllDBNames );
 void ReplaceUsedDBs( const std::vectorString rUsedDBNames,
 const String rNewName, String rFormel );
@@ -1082,10 +1082,10 @@ public:
 sal_Bool bDelRedlines = sal_True,
 sal_Bool bCopyFlyAtFly = sal_False ) const;
 
-sal_Bool SetFlyFrmAttr( SwFrmFmt rFlyFmt, SfxItemSet rSet );
+bool SetFlyFrmAttr( SwFrmFmt rFlyFmt, SfxItemSet rSet );
 
-sal_Bool SetFrmFmtToFly( SwFrmFmt rFlyFmt, SwFrmFmt rNewFmt,
-SfxItemSet* pSet = 0, sal_Bool bKeepOrient = sal_False 
);
+bool SetFrmFmtToFly( SwFrmFmt rFlyFmt, SwFrmFmt rNewFmt,
+SfxItemSet* pSet = 0, bool bKeepOrient = false );
 void SetFlyFrmTitle( SwFlyFrmFmt rFlyFrmFmt,
  const String sNewTitle );
 void SetFlyFrmDescription( SwFlyFrmFmt rFlyFrmFmt,
diff --git a/sw/inc/fesh.hxx b/sw/inc/fesh.hxx
index 17f4655..81ebaae 100644
--- a/sw/inc/fesh.hxx
+++ b/sw/inc/fesh.hxx
@@ -355,7 +355,7 @@ public:
 
 sal_Bool IsFrmSelected() const;
 sal_Bool GetFlyFrmAttr( SfxItemSet rSet ) const;
-sal_Bool SetFlyFrmAttr( SfxItemSet rSet );
+bool SetFlyFrmAttr( SfxItemSet rSet );
 sal_Bool ResetFlyFrmAttr( sal_uInt16 nWhich, const SfxItemSet* pSet = 0 );
 const SwFrmFmt *NewFlyFrm( const SfxItemSet rSet, sal_Bool bAnchValid = 
sal_False,
  SwFrmFmt *pParent = 0 );
@@ -368,7 +368,7 @@ public:
 sal_Bool IsFrmVertical(const sal_Bool bEnvironment, sal_Bool 
bRightToLeft, sal_Bool bVertL2R) const;
 
 SwFrmFmt* GetCurFrmFmt() const; /// If frame then frame style, else 0.
-void SetFrmFmt( SwFrmFmt *pFmt, sal_Bool bKeepOrient = sal_False, Point* 
pDocPos = 0 ); /// If frame then set frame style.
+void SetFrmFmt( SwFrmFmt *pFmt, bool bKeepOrient = false, Point* pDocPos = 
0 ); /// If frame then set frame style.
 const SwFlyFrm *GetCurrFlyFrm() const { return FindFlyFrm(); }
 
 /// Find/delete fly containing the cursor.
diff --git a/sw/source/core/doc/docfld.cxx b/sw/source/core/doc/docfld.cxx
index d57e8ac..18953ad 100644
--- a/sw/source/core/doc/docfld.cxx
+++ b/sw/source/core/doc/docfld.cxx
@@ -1227,8 +1227,8 @@ void SwDoc::UpdateExpFlds( SwTxtFld* pUpdtFld, bool 
bUpdRefFlds )
 if( IsExpFldsLocked() || IsInReading() )
 return;
 
-sal_Bool bOldInUpdateFlds = pUpdtFlds-IsInUpdateFlds();
-pUpdtFlds-SetInUpdateFlds( sal_True );
+bool bOldInUpdateFlds = pUpdtFlds-IsInUpdateFlds();
+pUpdtFlds-SetInUpdateFlds( true );
 
 pUpdtFlds-MakeFldList( *this, sal_True, GETFLD_ALL );
 mbNewFldLst = sal_False;
@@ -1239,7 +1239,7 @@ void SwDoc::UpdateExpFlds( SwTxtFld* pUpdtFld, bool 
bUpdRefFlds )
 UpdateRefFlds(NULL);
 
 pUpdtFlds-SetInUpdateFlds( bOldInUpdateFlds );
-pUpdtFlds-SetFieldsDirty( sal_False );
+pUpdtFlds-SetFieldsDirty( false );
 return 

[Libreoffice-commits] .: 3 commits - connectivity/Library_postgresql-sdbc-impl.mk RepositoryExternal.mk solenv/gbuild

2012-10-21 Thread Libreoffice Gerrit user
 RepositoryExternal.mk|4 
 connectivity/Library_postgresql-sdbc-impl.mk |4 
 solenv/gbuild/ExternalPackage.mk |3 +++
 solenv/gbuild/Library.mk |2 --
 solenv/gbuild/LinkTarget.mk  |   11 ---
 5 files changed, 7 insertions(+), 17 deletions(-)

New commits:
commit 9588085b0062c25c0e6e370f5d496727f18a13a9
Author: David Tardon dtar...@redhat.com
Date:   Mon Oct 22 07:02:54 2012 +0200

add note to ExternalPackage doc

Change-Id: I920e0f6cea18c825dc5786b6b4f2df1c0ddb890d

diff --git a/solenv/gbuild/ExternalPackage.mk b/solenv/gbuild/ExternalPackage.mk
index f24a2ca..c69d3ad 100644
--- a/solenv/gbuild/ExternalPackage.mk
+++ b/solenv/gbuild/ExternalPackage.mk
@@ -18,6 +18,9 @@
 # previous version, so the delivered headers will not be updated.
 #
 # Uff, I hope this is at least partially understandable :-)
+#
+# Note: An ExternalPackage object can be used in functions that expect a
+# Package (e.g., gb_LinkTarget_use_package(s)).
 
 $(dir $(call gb_ExternalPackage_get_target,%)).dir :
$(if $(wildcard $(dir $@)),,mkdir -p $(dir $@))
commit 1149fa1d180d372cc660270ad1926fcae4043463
Author: David Tardon dtar...@redhat.com
Date:   Mon Oct 22 06:52:33 2012 +0200

drop unneeded functions

ExternalPackage has intentionally been made compatible with Package, so
it can be passed to gb_LinkTarget_use_package(s).

Change-Id: I11cd55e1f570ddab7315a7229321fc3392fd49f4

diff --git a/solenv/gbuild/Library.mk b/solenv/gbuild/Library.mk
index a3c3f52..d07fe24 100644
--- a/solenv/gbuild/Library.mk
+++ b/solenv/gbuild/Library.mk
@@ -210,8 +210,6 @@ $(eval $(foreach method,\
add_external_headers \
use_package \
use_packages \
-   use_external_package \
-   use_external_packages \
use_unpacked \
add_package_headers \
add_sdi_headers \
diff --git a/solenv/gbuild/LinkTarget.mk b/solenv/gbuild/LinkTarget.mk
index efe6a3a..870bad1 100644
--- a/solenv/gbuild/LinkTarget.mk
+++ b/solenv/gbuild/LinkTarget.mk
@@ -1139,17 +1139,6 @@ define gb_LinkTarget_use_packages
 $(foreach package,$(2),$(call gb_LinkTarget_use_package,$(1),$(package)))
 endef
 
-# use a external package, possibly from another module (i.e. via OUTDIR)
-define gb_LinkTarget_use_external_package
-$(call gb_LinkTarget_get_external_headers_target,$(1)) :| \
-   $(call gb_ExternalPackage_get_target,$(strip $(2)))
-
-endef
-
-define gb_LinkTarget_use_external_packages
-$(foreach package,$(2),$(call 
gb_LinkTarget_use_external_package,$(1),$(package)))
-endef
-
 # Use sources from unpacked tarball of an external project
 define gb_LinkTarget_use_unpacked
 $(call gb_LinkTarget_get_external_headers_target,$(1)) :| $(call 
gb_UnpackedTarball_get_final_target,$(2))
commit cb9823b6113eb2c7cc44c1b6659a808fe0bdef25
Author: David Tardon dtar...@redhat.com
Date:   Mon Oct 22 06:33:00 2012 +0200

make sure libpq is in place before it is used

Change-Id: I799a149b319bb6a3168117810084496f8b6d6fbb

diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk
index 8c8e449..4260150 100644
--- a/RepositoryExternal.mk
+++ b/RepositoryExternal.mk
@@ -1772,6 +1772,10 @@ else # !SYSTEM_POSTGRESQL
 
 define gb_LinkTarget__use_postgresql
 
+$(call gb_LinkTarget_use_packages,$(1),\
+   postgresql \
+)
+
 $(call gb_LinkTarget_set_include,$(1),\
-I$(OUTDIR)/inc/postgresql \
$$(INCLUDE) \
diff --git a/connectivity/Library_postgresql-sdbc-impl.mk 
b/connectivity/Library_postgresql-sdbc-impl.mk
index b5094cb..8fbb372 100644
--- a/connectivity/Library_postgresql-sdbc-impl.mk
+++ b/connectivity/Library_postgresql-sdbc-impl.mk
@@ -64,10 +64,6 @@ $(eval $(call gb_Library_use_externals,postgresql-sdbc-impl,\
 ifneq ($(SYSTEM_POSTGRESQL),YES)
 ifneq ($(GUI)$(COM),WNTMSC)
 
-$(eval $(call gb_Library_use_external_package,postgresql-sdbc-impl,\
-   postgresql \
-))
-
 -include $(OUTDIR)/inc/postgresql/libpq-flags.mk
 
 $(eval $(call gb_Library_add_libs,postgresql-sdbc-impl,\
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Windows build help: failed to load dynamic library

2012-10-21 Thread Jeremy Brown
I'm still struggling to get a first successful build of LibreOffice on
Windows 7 (64bit).

Currently I'm getting errors like this in tail_build

[build LNK] CppunitTest/itest_i18npool_test_ordinalsuffix.lib
Failed to load dynamic library: D:/Dev/libo/libo/workdir/wntmsci12.pro/LinkTarge
t/CppunitTest/test_i18npool_test_languagetag.dll
The specified module could not be found.
Error: a unit test failed, please do one of:
export DEBUGCPPUNIT=TRUE# for exception catching
export GDBCPPUNITTRACE=gdb --args # for interactive debugging
export VALGRIND=memcheck# for memory checking
and retry.
make[2]: *** [D:/Dev/libo/libo/workdir/wntmsci12.pro/CppunitTest/i18npool_test_l
anguagetag.test] Error 1
make[2]: Leaving directory `/cygdrive/d/Dev/libo/libo/tail_build'
make[1]: *** [tail_build] Error 2
make[1]: Leaving directory `/cygdrive/d/Dev/libo/libo'
make: *** [tail_build] Error 2


The file does exist though:
workdir/wntmsci12.pro/LinkTarget/CppunitTest/test_i18npool_test_languagetag.dll


I don't know what I should do next. I've been flailing around trying
different things but I just keep getting this error. I thought that
since it was an error on an i18npool file, I should make
i18npool.clean and then make i18npool but when I do that, at the end I
get some strange (to me) stuff at the bottom, ending with an error:


[build LNK] CppunitTest/itest_i18npool_test_languagetag.lib
localedata_zu_ZA.cxx
   Creating library D:/Dev/libo/libo/workdir/wntmsci12.pro/LinkTarget/Library/it
extconv_dict.lib and object D:/Dev/libo/libo/workdir/wntmsci12.pro/LinkTarget/Li
brary/itextconv_dict.exp
[build CUS] i18npool/localedata
   Creating l[build LNK] Library/ilocaledata_en.libib
rary D:/Dev/libo/libo/workdir/wntmsci12.pro/LinkTarget/CppunitTest/itest_i18npoo
l_test_languagetag.lib and object D:/Dev/libo/libo/workdir/wntmsci12.pro/LinkTar
get/CppunitTest/itest_i18npool_test_languagetag.exp
LINK : warning LNK4098: defaultlib 'LIBCMT' conflicts with use of other libs; us
e /NODEFAULTLIB:library
test_languagetag.o : warning LNK4217: locally defined symbol ??0LanguageTag@@QAE
@G@Z (public: __thiscall LanguageTag::LanguageTag(unsigned short)) imported in f
unction public: void __thiscall `anonymous namespace'::TestLanguageTag::testAll
Tags(void) (?testAllTags@TestLanguageTag@?A0xb3415d4d@@QAEXXZ)
test_languagetag.o : warning LNK4217: locally defined symbol ??0LanguageTag@@QAE
@ABULocale@lang@star@sun@com@@@Z (public: __thiscall LanguageTag::LanguageTag(st
ruct com::sun::star::lang::Locale const )) imported in function public: void _
_thiscall `anonymous namespace'::TestLanguageTag::testAllTags(void) (?testAllTa
gs@TestLanguageTag@?A0xb3415d4d@@QAEXXZ)
test_languagetag.o : warning LNK4217: locally defined symbol ?isIsoODF@LanguageT
ag@@QBE_NXZ (public: bool __thiscall LanguageTag::isIsoODF(void)const ) imported
 in function public: void __thiscall `anonymous namespace'::TestLanguageTag::te
stAllTags(void) (?testAllTags@TestLanguageTag@?A0xb3415d4d@@QAEXXZ)
test_languagetag.o : warning LNK4217: locally defined symbol ?isIsoLocale@Langua
geTag@@QBE_NXZ (public: bool __thiscall LanguageTag::isIsoLocale(void)const ) im
ported in function public: void __thiscall `anonymous namespace'::TestLanguageT
ag::testAllTags(void) (?testAllTags@TestLanguageTag@?A0xb3415d4d@@QAEXXZ)
test_languagetag.o : warning LNK4217: locally defined symbol ?isValidBcp47@Langu
ageTag@@QBE_NXZ (public: bool __thiscall LanguageTag::isValidBcp47(void)const )
imported in function public: void __thiscall `anonymous namespace'::TestLanguag
eTag::testAllTags(void) (?testAllTags@TestLanguageTag@?A0xb3415d4d@@QAEXXZ)
test_languagetag.o : warning LNK4217: locally defined symbol ??1LanguageTag@@QAE
@XZ (public: __thiscall LanguageTag::~LanguageTag(void)) imported in function p
ublic: void __thiscall `anonymous namespace'::TestLanguageTag::testAllTags(void)
 (?testAllTags@TestLanguageTag@?A0xb3415d4d@@QAEXXZ)
test_languagetag.o : warning LNK4217: locally defined symbol ?getLanguageType@La
nguageTag@@QBEGXZ (public: unsigned short __thiscall LanguageTag::getLanguageTyp
e(void)const ) imported in function public: void __thiscall `anonymous namespac
e'::TestLanguageTag::testAllTags(void) (?testAllTags@TestLanguageTag@?A0xb3415d
4d@@QAEXXZ)
test_languagetag.o : warning LNK4217: locally defined symbol ?getLocale@Language
Tag@@QBE?AULocale@lang@star@sun@com@@XZ (public: struct com::sun::star::lang::Lo
cale __thiscall LanguageTag::getLocale(void)const ) imported in function public
: void __thiscall `anonymous namespace'::TestLanguageTag::testAllTags(void) (?t
estAllTags@TestLanguageTag@?A0xb3415d4d@@QAEXXZ)
test_languagetag.o : warning LNK4217: locally defined symbol ?getBcp47@LanguageT
ag@@QBE?AVOUString@rtl@@XZ (public: class rtl::OUString __thiscall LanguageTag::
getBcp47(void)const ) imported in function public: void __thiscall `anonymous n
amespace'::TestLanguageTag::testAllTags(void) (?testAllTags@TestLanguageTag@?A0
xb3415d4d@@QAEXXZ)
test_languagetag.o : 

Re: [Libreoffice-qa] QA work with Windows Tinderbox builds -- need help

2012-10-21 Thread Niklas Johansson
Hi

The installation instructions talks about the 1935 error under the
troubleshooting section. Don't know if it helps you but ir might be a step
in the right direction.
http://www.libreoffice.org/get-help/installation/windows/

/Niklas

Den söndagen den 21:e oktober 2012 skrev V Stuart Foote:

  Working on Windows 7 64-bit Ultimate, Intel i7 920 CPU, 12GB Ram.

 On chance something amiss, downloaded again. MD5's of two downloads
 matched. Disabled AV. Logged in as the Administrator account.

 Start a installation with default, do not check accessibility. Receive
 same 1935 error at same component registration point.  Back out and try
 custom install dropping extensions. Same 1935 error.

 fdo#55290 still with us...

  --
  *From:* libreoffice-qa-bounces+vstuart.foote=
 utsa@lists.freedesktop.org javascript:_e({}, 'cvml',
 'utsa@lists.freedesktop.org'); on behalf of MiguelAngel
 *Sent:* Sat 10/20/2012 7:37 PM
 *To:* libreoffice-qa@lists.freedesktop.org javascript:_e({}, 'cvml',
 'libreoffice-qa@lists.freedesktop.org');
 *Subject:* Re: [Libreoffice-qa] QA work with Windows Tinderbox builds --
 need help

  El 21/10/12 1:32, V Stuart Foote escribió:
  Hmmm,
 
  On a Win7-64 system, still receive the Error 1935 with todays TB-6 build.
 
 
 master~2012-10-20_14.21.35_LibO-Dev_3.7.0.0.alpha0_Win_x86_install_en-US.msi
  tinderbox: buildname: Win-x86@6
  tinderbox: tree: MASTER
  tinderbox: pull time 2012-10-20 14:21:35
 
  Saw on the  fdo#55290 
 https://bugs.freedesktop.org/show_bug.cgi?id=55290
  that you had a clean install.
 
 
  Extract of verbose log:
 
  MSI (s) (34:08) [17:44:56:001]: Assembly Error:The given assembly name or
  codebase, '%1', was invalid.
 
  MSI (s) (34:08) [17:44:56:001]: Note: 1: 1935 2:
  {22185FB0-0AED-5CE4-C190-48CC661F0454} 3: 0x80131047 4:
 IAssemblyCacheItem
  5: Commit 6:
 
 policy.1.0.cli_cppuhelper,publicKeyToken=ce2cb7e279207b9e,version=22.0.0.0,culture=neutral,processorArchitecture=x86
 
  DEBUG: Error 2835:  The control ErrorIcon was not found on dialog
 SetupError
 
  Internal Error 2835. ErrorIcon, SetupError
 
  Error 1935.An error occurred during the installation of assembly
 
 'policy.1.0.cli_cppuhelper,publicKeyToken=ce2cb7e279207b9e,version=22.0.0.0,culture=neutral,processorArchitecture=x86'.
  Please refer to Help and Support for more information. HRESULT:
 0x80131047.
  assembly interface: IAssemblyCacheItem, function: Commit, component:
  {22185FB0-0AED-5CE4-C190-48CC661F0454}
 
  MSI (s) (34:08) [17:45:45:141]: Product: LOdev 3.7 -- Error 1935.An error
  occurred during the installation of assembly
 
 'policy.1.0.cli_cppuhelper,publicKeyToken=ce2cb7e279207b9e,version=22.0.0.0,culture=neutral,processorArchitecture=x86'.
  Please refer to Help and Support for more information. HRESULT:
 0x80131047.
  assembly interface: IAssemblyCacheItem, function: Commit, component:
  {22185FB0-0AED-5CE4-C190-48CC661F0454}
 
  Action ended 17:45:45: InstallFinalize. Return value 3.
 
 
 
 
 
  --
  View this message in context:
 http://nabble.documentfoundation.org/Libreoffice-qa-QA-work-with-Windows-Tinderbox-builds-need-help-tp4013785p4014545.html
  Sent from the QA mailing list archive at Nabble.com.
  ___
  List Name: Libreoffice-qa mailing list
  Mail address: Libreoffice-qa@lists.freedesktop.org
  Change settings:
 http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
  Problems?
 http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
  Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
  List archive: http://lists.freedesktop.org/archives/libreoffice-qa/
 

 Win7x64Ult i34GB

 master~2012-10-20_14.21.35_LibO-Dev_3.7.0.0.alpha0_Win_x86_install_en-US.msi
 (LibreOffice Version 3.7.0.0.alpha0+ (Build ID: 370m0(Build:0)))

 Installed and running smoothly.

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


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

Re: [Libreoffice-qa] QA work with Windows Tinderbox builds -- need help

2012-10-21 Thread V Stuart Foote
Niklas,

Thanks. 

So, I gave the VC_REDIST=0 property to suppress Visual C++ runtime install a
try. Unfortunately no change.

The Win-x86@6  2012-10-20 14:21:35 MASTER TinderBox build still throws the
installer error 1935 for the GUID {22185FB0-0AED-5CE4-C190-48CC661F0454}  at
the same point in the installation.

Looked at the installer with MS Orca, where I can follow the installer
actions and the assembly.pm source for building it. But as usual I get lost
in OpenGrok  trying to follow UNO and URE source in /core

Still the issue of  fdo#55290
https://bugs.freedesktop.org/show_bug.cgi?id=55290   .


Niklas Johansson wrote
 Hi
 
 The installation instructions talks about the 1935 error under the
 troubleshooting section. Don't know if it helps you but ir might be a step
 in the right direction.
 http://www.libreoffice.org/get-help/installation/windows/
 
 /Niklas





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


[Libreoffice-qa] Use of MD5 and other HASH values of LibO package downloads and alternate distribution DVD uploads

2012-10-21 Thread V Stuart Foote
Tim,

We applaud the work you've been doing on the English-NA-DVD, but since you've 
taken on that responsibility its cradle to grave handling also requires that 
you validate receipt of the initial ISO image upload to the Document Foundation 
Mirrors.

TDF will take your upload of bundled components and post it exactly as they 
receive it. Followed by TDF implemented MirrorBrain metadata service that 
calculates the initial HASH values (MD5, SHA-1, SHA-256 and BitTorrent) and 
publishes the details for use on the download mirrors.

Point is, they won't normally test that they have a good upload from your build 
system--that responsibility is yours.  And to add to your effort, to be 
technically correct you should probably verify the HASH value of each component 
installer you download for use in the compilation--found most conveniently at 
the http://download.documentfoundation.org/libreoffice/ where you probably want 
the stable/ tree (and can check on your box/ DVD distro).  Navigate down into 
the build you are compiling and the OS. On the page listing the language 
specific  installers each file will have a corresponding MirriorBrain 
provisioned link labeled Details that has full metadata of just that file 
including the HASH values. Check each package you will bundle against those 
values so you know you have a clean download.  You probably don't want to be 
responsible for distributing a corrupt install package that was incompletely 
downloaded as you build the DVD.

Then, once compiled into your English-NA-DVD .iso image,  you need to calculate 
a HASH value of the ISO being uploaded. You need this to compare what you send 
against what the transfer server receives. 

After upload, or probably once published to the TDF mirror,  compare the HASH 
value(s) the MirrorBrain published metadata. When uploading or downloading I 
generally will calculate and compare against the first few digits of MD5 and 
SHA256 HASH values

As an example, since you are on a Linux, you have the terminal window command 
line use of these commands:

md5sum LO-3.5.6_English-NA-DVD_all-platforms_multi-lang_plus-extras_v2.iso

sha1sum LO-3.5.6_English-NA-DVD_all-platforms_multi-lang_plus-extras_v2.iso

sha256sum LO-3.5.6_English-NA-DVD_all-platforms_multi-lang_plus-extras_v2.iso

Folks on Windows don't have a Microsoft provided digest tool--command line or 
GUI. But there are many to be found. Because of the range of digest HASH types 
I have to deal with I prefer a digest tool integrated with the Windows shell 
and widely use the freeware Hash  CRC tool published in the fileTweak 
utilizes of Febooti. Available here: http://www.febooti.com/downloads/  
Installed as administrator, it then gives ALL users the ability to calculate 
HASH values from the Properties panel (i.e. right mouse) of any file viewable 
in Windows explorer shell GUI.

If you'd like to compare for real, here are the HASH values for the last ISO 
build you posted as available at:

 
http://download.documentfoundation.org/libreoffice/box/3.5.6/LO-3.5.6_English-NA-DVD_all-platforms_multi-lang_plus-extras_v2.iso.mirrorlist

LO-3.5.6_English-NA-DVD_all-platforms_multi-lang_plus-extras_v2.iso

Powered by MirrorBrain

Size: 3.8G (4044062720 bytes)
Last modified: Wed, 22 Aug 2012 03:58:15 GMT (Unix time: 1345607895)
SHA-256 Hash: 
55d62394196ab920d99ec99480d515672d738a152c26c92177500cd3113c8fa7
SHA-1 Hash: 8560042169d28f30053f91aae5523fbac049234b
MD5 Hash: 96560a0b6c117a07d32d33baa1e2ef30
BitTorrent Information Hash: 9ea3cc57031a78cb5af214a041637a5ff2f30648


Hope that is clear enough so that it helps you to understand that there is a 
bit more work you need to take on to assure the quality of your DVD box/  (i.e. 
as in Boxed set software distribution).

Stuart

p.s. I've cc'd this to the QA list to see if there are any other 
recommendations for the process.

   




From: webmaster-Kracked_P_P [mailto:webmas...@krackedpress.com]
Sent: Sun 10/21/2012 10:34 AM
To: us...@global.libreoffice.org
Subject: Re: [libreoffice-users] North American DVD 3.5.6




NO ONE
has given me the  answer before on how to create a md5sum file before. 
And I asked that question back in the 3.3.x version days.

I have printed your answer out to PDF and I will place it on my
folder[s] for the NA-DVD work.

I use Ubuntu 12.04/MATE [10.04/GNOME before this month] to create the
NA-DVD web site and the ISO file.
I use Kompozer and Kate for most of the HTML work.
I use K3b to create the ISO file
I use Filezilla as my FTP client.

K3b creates a checksum but I do not know where it is stored for my use.



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

[Libreoffice-qa] Cloud-space? Re: [libreoffice-users] Use of MD5 and other HASH values of LibO package downloads and alternate distribution DVD uploads

2012-10-21 Thread Tom Davies
Hi :)
The workflow for the NA DVD Project involves 

1.  downloading the installer files from the LO or TDF servers
2.  bundling it with some documentation, Extensions and 3rd party programs
3.  re-uploading the resulting .iso through a domestic line that takes 
somewhere between 4-8hours (assuming it goes smoothly and the line doesn't 
drop-out).  


The 'broadband' line is in a building that is of an age that prohibits 
upgrading the line.  A few people looked into 3rd party Cloud space to store 
and work on the files but the options seemed inflexible and quite expensive.  
The amount of space required only occasionally tips over the amount the team 
could get for free without using fairly dubious 3rd party space.  A lot of the 
space is for files that already exist on TDF and LO  servers.  

Also the team wasn't completely confident about how much to trust or how to use 
any strange tools available on 3rd party Cloud-space.  There must be some 
easier way of doing this without having to learn tons of advanced new stuff!
Regards from
Tom :)  






 From: V Stuart Foote vstuart.fo...@utsa.edu
To: us...@global.libreoffice.org; libreoffice-qa@lists.freedesktop.org 
Sent: Sunday, 21 October 2012, 19:33
Subject: [libreoffice-users] Use of MD5 and other HASH values of LibO package 
downloads and alternate distribution DVD uploads
 
Tim,

We applaud the work you've been doing on the English-NA-DVD, but since you've 
taken on that responsibility its cradle to grave handling also requires that 
you validate receipt of the initial ISO image upload to the Document 
Foundation Mirrors.

TDF will take your upload of bundled components and post it exactly as they 
receive it. Followed by TDF implemented MirrorBrain metadata service that 
calculates the initial HASH values (MD5, SHA-1, SHA-256 and BitTorrent) and 
publishes the details for use on the download mirrors.

Point is, they won't normally test that they have a good upload from your 
build system--that responsibility is yours.  And to add to your effort, to be 
technically correct you should probably verify the HASH value of each 
component installer you download for use in the compilation--found most 
conveniently at the http://download.documentfoundation.org/libreoffice/ where 
you probably want the stable/ tree (and can check on your box/ DVD distro).  
Navigate down into the build you are compiling and the OS. On the page listing 
the language specific  installers each file will have a corresponding 
MirriorBrain provisioned link labeled Details that has full metadata of just 
that file including the HASH values. Check each package you will bundle 
against those values so you know you have a clean download.  You probably 
don't want to be responsible for distributing a corrupt install package that 
was incompletely downloaded as you build the DVD.

Then, once compiled into your English-NA-DVD .iso image,  you need to 
calculate a HASH value of the ISO being uploaded. You need this to compare 
what you send against what the transfer server receives. 

After upload, or probably once published to the TDF mirror,  compare the HASH 
value(s) the MirrorBrain published metadata. When uploading or downloading I 
generally will calculate and compare against the first few digits of MD5 and 
SHA256 HASH values

As an example, since you are on a Linux, you have the terminal window command 
line use of these commands:

md5sum LO-3.5.6_English-NA-DVD_all-platforms_multi-lang_plus-extras_v2.iso

sha1sum LO-3.5.6_English-NA-DVD_all-platforms_multi-lang_plus-extras_v2.iso

sha256sum LO-3.5.6_English-NA-DVD_all-platforms_multi-lang_plus-extras_v2.iso

Folks on Windows don't have a Microsoft provided digest tool--command line or 
GUI. But there are many to be found. Because of the range of digest HASH types 
I have to deal with I prefer a digest tool integrated with the Windows shell 
and widely use the freeware Hash  CRC tool published in the fileTweak 
utilizes of Febooti. Available here: http://www.febooti.com/downloads/  
Installed as administrator, it then gives ALL users the ability to calculate 
HASH values from the Properties panel (i.e. right mouse) of any file 
viewable in Windows explorer shell GUI.

If you'd like to compare for real, here are the HASH values for the last ISO 
build you posted as available at:

http://download.documentfoundation.org/libreoffice/box/3.5.6/LO-3.5.6_English-NA-DVD_all-platforms_multi-lang_plus-extras_v2.iso.mirrorlist

LO-3.5.6_English-NA-DVD_all-platforms_multi-lang_plus-extras_v2.iso

Powered by MirrorBrain

    Size: 3.8G (4044062720 bytes)
    Last modified: Wed, 22 Aug 2012 03:58:15 GMT (Unix time: 1345607895)
    SHA-256 Hash: 
55d62394196ab920d99ec99480d515672d738a152c26c92177500cd3113c8fa7
    SHA-1 Hash: 8560042169d28f30053f91aae5523fbac049234b
    MD5 Hash: 96560a0b6c117a07d32d33baa1e2ef30
    BitTorrent Information Hash: 9ea3cc57031a78cb5af214a041637a5ff2f30648


Hope that is clear enough 

Re: [Libreoffice-qa] Bugzilla administration info

2012-10-21 Thread Rainer Bielefeld
Today I modified Version 3.5.7.2, what changed status from rc to 
release 2012-10-18; I additionally asked for BSA update to get this 
version and 3.6.3.1 rc into the BSA version picker.


CU

Rainer


P.S.: In this thread I want to keep you up to date, discussion if 
desired please in extra threads to keep this one clear and short.

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


[Libreoffice-bugs] [Bug 56182] Libreoffice do not open large microsoft office files

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56182

--- Comment #4 from andis.lazd...@gmail.com ---
Originally this peoblem is reported here
https://bugs.freedesktop.org/show_bug.cgi?id=53883 and here
https://bugs.freedesktop.org/show_bug.cgi?id=54082

However it seems the problem has never been solved in 3.5. branch.

Libreoffice 3.6 has it's own problems, like irregular crashes on complex
spreadsheet documents, so I would like to wait until it will become more
stable. It seems that 3.6.3.1 is rather stable.

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


[Libreoffice-bugs] [Bug 56153] VIEWING: Hidden Comment box appears at default place and not at place to where moved with active 'Show Comment'

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56153

--- Comment #5 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
(In reply to comment #4)

@David
Status NEW shows that all info for the bug fixing process is available here and
in Bug 55682.

No further information is required, as soon as a developer has time (no bugs
with higher priority in the line) he will fix this bug. 

A diagram showing the process you can find on
http://wiki.documentfoundation.org/File:BzLifecycleold.png 

For questions how to use LibO, how to do workarounds and similar please ask on
a mailing list or http://ask.libreoffice.org/questions/

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


[Libreoffice-bugs] [Bug 56242] New: Libreoffice Base should handle tables without a primary key better

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56242

  Priority: medium
Bug ID: 56242
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Libreoffice Base should handle tables without a
primary key better
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: bugs.freedesktop@rolf.leggewie.biz
  Hardware: Other
Status: UNCONFIRMED
   Version: 3.5.6.2 release
 Component: Database
   Product: LibreOffice

originally reported as - https://bugzilla.novell.com/show_bug.cgi?id=444129

I think LO should handle tables without a primary key better (cf.
http://qa.openoffice.org/issues/show_bug.cgi?id=54168 as well)  Right now, when
you open such a table, it is opened as non-editable, leaving the user to wonder
about the reason.  I think the user should at least receive a warning about
this, possibly coupled with a suggestion to visit a website where more details
and possible solutions can be given (I understand there are some issues with
handling tables without primary keys and there is not one single, best answer)

Steps to reproduce:

1) Load https://bugzilla.novell.com/attachment.cgi?id=251407 into a MySQL
server of your choice
2) Create new database and connect to above database
3) optional: enable logging for your MySQL server
4) double click on table accounts which does have a primary key
5) double click on table accounts_ext which does not

Observe the difference between 4 and 5 in that cells in 4 are editable where
those from 5 are not.

FWIW, OOo/LO emits a useful warning when creating a table without a primary
key: https://bugzilla.novell.com/attachment.cgi?id=251613

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


[Libreoffice-bugs] [Bug 56242] Libreoffice Base should handle tables without a primary key better

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56242

Rolf Leggewie bugs.freedesktop@rolf.leggewie.biz changed:

   What|Removed |Added

   See Also||https://bugzilla.novell.com
   ||/show_bug.cgi?id=444129

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


[Libreoffice-bugs] [Bug 56242] Libreoffice Base should handle tables without a primary key better

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56242

Rolf Leggewie bugs.freedesktop@rolf.leggewie.biz changed:

   What|Removed |Added

 Blocks||56243

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


[Libreoffice-bugs] [Bug 56243] New: Libreoffice Base: Bogus query for MySQL database

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56243

  Priority: medium
Bug ID: 56243
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Libreoffice Base: Bogus query for MySQL database
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: bugs.freedesktop@rolf.leggewie.biz
  Hardware: Other
Status: UNCONFIRMED
   Version: 3.5.6.2 release
 Component: Database
Depends on: 56242
   Product: LibreOffice

Created attachment 68858
  -- https://bugs.freedesktop.org/attachment.cgi?id=68858action=edit
excerpt from mysql log

originally reported as - https://bugzilla.novell.com/show_bug.cgi?id=443873

LO produces a bogus query for tables without a primary key.

Steps to reproduce:

1) Load https://bugzilla.novell.com/attachment.cgi?id=251407 into a MySQL
server of your choice
2) Create new database and connect to above database
3) optional: enable logging for your MySQL server
4) double click on table accounts which does have a primary key
5) double click on table accounts_ext which does not

Observe the difference between 4 and 5 in that cells in 4 are editable where
those from 5 are not.

Find some excerpts from my MySQL log in the attachment.  Pay attention to the
bogus WHERE 0=1 in both cases.

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


[Libreoffice-bugs] [Bug 51138] Editing a text box is difficult

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51138

--- Comment #8 from Florian Reisinger reisi...@gmail.com ---
I did that for you (You should check auto detect before uploading...

Here another question: Did you test it in Writer, Draw, Impress, ... ?

WORKSFORME in Draw with 3.6.1.2 @ Win7

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


[Libreoffice-bugs] [Bug 51770] Label creation ignores Horizontal pitch

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51770

nils.reu...@gmx.net changed:

   What|Removed |Added

 CC||nils.reu...@gmx.net

--- Comment #1 from nils.reu...@gmx.net ---
I have the same bug with 3.5 on OpenSuse Linux.

Workaraound:

Select the frame of the left column labels, right click to context menu, select
Frame..., select Wrap and adjust the right spacing as you wish.

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


[Libreoffice-bugs] [Bug 49673] FILESAVE: Crash app

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49673

--- Comment #8 from effetred...@hotmail.it ---
(In reply to comment #7)
 On pc Debian x86-64 with master sources and 3.6 both updated today, no
 problem to open and save the file.
 On 3.5 updated today too, it's still very long to save and the resulting
 file is corrupted.
 
 effetredici: could you give a try to 3.6.2 and tell us if it's ok or not for
 you?

All ok with 3.6.2 !!

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


[Libreoffice-bugs] [Bug 56244] New: LO Base: Add Table or query dialog should present sorted entries

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56244

  Priority: medium
Bug ID: 56244
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: LO Base: Add Table or query dialog should present
sorted entries
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: bugs.freedesktop@rolf.leggewie.biz
  Hardware: Other
Status: UNCONFIRMED
   Version: 3.5.6.2 release
 Component: Database
   Product: LibreOffice

Created attachment 68859
  -- https://bugs.freedesktop.org/attachment.cgi?id=68859action=edit
unsorted list of tables in dialog

The tables and queries in the Add tables or queries menu should be presented
as a sorted list.

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


[Libreoffice-bugs] [Bug 53278] Draw instead of russian show obscure characters in CDR file (Corel Draw 12 format)

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53278

Hashem Masoud wraithl...@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

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


[Libreoffice-bugs] [Bug 53525] FILEOPEN existing document: 2 columns Table of contents exceeds page width

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53525

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||detective.conan.1412@gmail.
   ||com
   Keywords||regression
 Ever confirmed|0   |1

--- Comment #1 from Korrawit Pruegsanusak detective.conan.1...@gmail.com ---
REPRODUCIBLE with build from tinderbox Win-x86@6, pull time 2012-10-20
14:21:35, core: bb80f99092c4ad6d5015165a60f7a239dcb2fbff on Windows XP

NOT REPRODUCIBLE with official 3.5.7.2 on Windows XP

So regression

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


[Libreoffice-bugs] [Bug 51138] Editing a text box is difficult

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51138

--- Comment #9 from Todd toddandma...@gmail.com ---
(In reply to comment #8)
 I did that for you (You should check auto detect before uploading...
 
 Here another question: Did you test it in Writer, Draw, Impress, ... ?
 
 WORKSFORME in Draw with 3.6.1.2 @ Win7

As far as I can tell, you uploaded pictures of the result.  I could not find my
original document modified for mime.  (Pictures looked great, by the way.)

I have only tested in Writer, as that was where my customer was having the
problem.

How do I modify the mime type in the document to test it myself?

-T

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


[Libreoffice-bugs] [Bug 50530] UI: Changing font size makes the cursor to disappear

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50530

--- Comment #5 from Hashem Masoud wraithl...@gmail.com ---
(In reply to comment #4)
 This is true but the bug is still there directly after creating a text frame
 and changing font size. Bug: The cursor disappears.

The correct procedure you should follow (which I did in my earlier test) is:
1. Create text field.
2. Type something into it.
3. Change size.

If you skip point 2, you won't be able to see any cursor, because the text
field will not be created in the first place.

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


[Libreoffice-bugs] [Bug 49673] FILESAVE: Crash app

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49673

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

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #9 from Julien Nabet serval2...@yahoo.fr ---
effetredici: thank you for your feedback, I put this tracker to WFM

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


[Libreoffice-bugs] [Bug 54082] FILESAVE: Calc corrupting some XLS files on save

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54082

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

   What|Removed |Added

 Status|NEW |NEEDINFO
 CC||serval2...@yahoo.fr

--- Comment #5 from Julien Nabet serval2...@yahoo.fr ---
On pc Debian x86-64 with master updated yesterday, 3.6, 3.5 sources, both of
these updated today, here are the results:
original file: 73728 bytes
master: OK 72192 bytes
3.6: OK 72192 bytes
3.5: KO (file of 15MO)

khagaroth: could you give a try to 3.6.2?

Rainer: if 3.6.2 is ok, how should we consider this bug? WFM or try to contact
a dev to backport the fix(es) to 3.5 (for 3.5.7)?

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


[Libreoffice-bugs] [Bug 48499] CRASH when FILEOPEN big EXCEL.xml

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48499

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

   What|Removed |Added

 Status|NEW |NEEDINFO
Summary|Calc crashed when was   |CRASH when FILEOPEN big
   |opening large file  |EXCEL.xml

--- Comment #6 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
NOT reproducible with parallel installation of Master LOdev  3.7.0.0.alpha0+  
-  ENGLISH UI / German Locale  [Build ID: 370m0(Build:0)]  {tinderbox: @16,
pull time 2012-10-19 07:45:39} on German WIN7 Home Premium (64bit) with
separate User Profile for Master Branch. Opens Document without crash or error
message.

Modified Summary due to comments.

The CRASH might be a DUP of Bug 44969 - FILEOPEN: Can't open XML files bigger
than 1.1 Mb, but that Bug is horrible confusing for (as it seems) lots of
different problems

Concerning the General error:
I am pretty sure that the reason is the fix for Bug 35543 - FILEOPEN: hangs
when trying to open SpreadsheetML what replaces a CRASH by that error message.

I recommend to leave this CRASH bug unconfirmed until someone finds out what
the problem might be, I cant' reproduce the crash, I can't find our whether
this one is a real DUP of Bug 44969 or Bug 35543

Because it seems that EXCEL.xml is not really supported I think we should
only discuss results with Master builds here, where latest fixes are
integrated.

@Julien:
I think your 3.7 witheboard suggestion should show a WORKSFORME for 3.7? May be
that really can be the final Solution when we have some more clarity what the
reasons for the crash are.

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


[Libreoffice-bugs] [Bug 48499] CRASH when FILEOPEN big EXCEL.xml

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48499

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

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #7 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
@Sören:
https://wiki.documentfoundation.org/BugTriage#Process  item 5

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


[Libreoffice-bugs] [Bug 56245] New: Corruption reported on valid ODT file

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56245

  Priority: medium
Bug ID: 56245
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Corruption reported on valid ODT file
  Severity: major
Classification: Unclassified
OS: Linux (All)
  Reporter: j...@vandenoever.info
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 3.5.6.2 release
 Component: Writer
   Product: LibreOffice

Created attachment 68862
  -- https://bugs.freedesktop.org/attachment.cgi?id=68862action=edit
the file that is said to be corrupted

A valid ODT file which has been checked by cyclone and officeotron on
officeshots is reported as being corrupted in LibreOffice.

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


[Libreoffice-bugs] [Bug 48216] Writer crashes several times

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48216

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

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INVALID

--- Comment #2 from Julien Nabet serval2...@yahoo.fr ---
Since there has been no feedback for months, I put it RESOLVED/INVALID.

Clemente: if you reproduce this on a newer LO version (3.5.6 or 3.6.2) after,
if needed, renamed your LO profile (see
http://wiki.documentfoundation.org/UserProfile), don't hesitate to reopen the
case. Also, it could be useful your retrieve a backtrace (see
http://wiki.documentfoundation.org/BugReport#How_to_get_a_backtrace_.28on_Linux.29)

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


[Libreoffice-bugs] [Bug 56246] New: Image is displaced in print preview

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56246

  Priority: medium
Bug ID: 56246
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Image is displaced in print preview
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: lars.stratm...@gmx.de
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 3.6.2.2 release
 Component: Chart
   Product: LibreOffice

Hello,

I have imported to image to a chart and moved them to the right postion. 

But in the print preview, exported pdf-file and also a real print one of the
images is displaced.

I tried it with 
- cell and page based position and 
- background and foreground position.

But this options don't have any influence in this bug.

Lars

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


[Libreoffice-bugs] [Bug 55068] CRASH when FILEOPEN particular .ppt

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55068

--- Comment #5 from Krasimir Ivanov k...@mail.orbitel.bg ---
I had installed both SUN Java 1.6.0_24 plus Oracle Java 1.7.0._07 but used the
SUN Java 1.6.0_24.

After deinstall of LibreOffice, and delete the folders of LibreOffice from the
operationg system I have installed the new version 3.6.2.2 (Build ID: da8c1e6)

After it I tried again the same presentation and this time found no any
problem.
It works as expected and I did not experience any crashes on the same system -
same PC same OS etc 

It may be connected with some extension, because in the last installation I
installed less extensions.
Sadly I can not remember all extensions I had before. This is because I did not
expect their influence and did not check them accordingly. I only remember that
in the crashing installation I used the extension for connections to WEBDAV and
also the Extension for connections to DropBox plus Alt Search, plus
presentation minimizer, plus Sun Report Builder and may be something else. 
Now I did not install the extensions for connections to WEBDAV and also the
Extension for connections to DropBox but have installed Alt Search, plus
presentation minimizer, plus Sun Report Builder.

I believe the problem must happen because of wrong combination of extensions
and the old version of the LibreOffice.
Unfortunately right now I can not reproduce it again.
So may be we should close this case and if I could reproduce it again I will
try to inform additionally.

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


[Libreoffice-bugs] [Bug 49445] Problem with Word import

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49445

suedsauerl...@freenet.de changed:

   What|Removed |Added

   Severity|normal  |blocker
   Priority|medium  |highest
Version|3.5.3 release   |3.6.2.2 release

--- Comment #5 from suedsauerl...@freenet.de ---
In version 3.6.2.2 of Libre Office the bug is still present.

Additionally now also the head area of ​​the document is destroyed.
I must use OpenOffice when I will work with this document.

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


[Libreoffice-bugs] [Bug 55068] CRASH when FILEOPEN particular .ppt

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55068

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

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #6 from Julien Nabet serval2...@yahoo.fr ---
Krasimir: thank you for your feedback. I'll put this to WFM. If you find how to
reproduce the problem (which extension triggered this), don't hesitate to
reopen this tracker of course.

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


[Libreoffice-bugs] [Bug 56247] New: Unique Build Identifier lost

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56247

  Priority: medium
Bug ID: 56247
CC: pmla...@suse.cz
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Unique Build Identifier lost
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: libreoff...@bielefeldundbuss.de
   URL: http://dev-builds.libreoffice.org/daily/
  Hardware: Other
Status: UNCONFIRMED
   Version: 3.7.0.0.alpha0+ Master
 Component: Libreoffice
   Product: LibreOffice

With parallel installation of Master LOdev  3.7.0.0.alpha0+   -  ENGLISH UI /
German Locale  [Build ID: 370m0(Build:0)]  {tinderbox: @6, pull time
2012-10-20 14:21:35} on German WIN7 Home Premium (64bit) with separate User
Profile for Master Branch
and also
with parallel installation of Master LOdev  3.7.0.0.alpha0+   -  ENGLISH UI /
German Locale  [Build ID: 370m0(Build:0)]  {tinderbox: @16, pull time
2012-10-19 07:45:39} on German WIN7 Home Premium (64bit) with separate User
Profile for Master Branch

I see the same build identifier. 

@Petr:
Bug or new feature I missed?

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


[Libreoffice-bugs] [Bug 56248] New: PDF: Error on PDF Export if Selection is choosen

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56248

  Priority: medium
Bug ID: 56248
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: PDF: Error on PDF Export if Selection is choosen
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: flizebo...@gmail.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 3.6.2.1 rc
 Component: Spreadsheet
   Product: LibreOffice

Created attachment 68866
  -- https://bugs.freedesktop.org/attachment.cgi?id=68866action=edit
Error Message on pdf Export (in german)

Problem description: 

PDF Export of selection leads to error message.

Steps to reproduce:
1. open ods File
2. do nothing with the file
3. Select File - Export to PDF
4. In the Common Tab select radiobutton Selection under Range.

Current behavior:

Error message (see attachment)

Expected behavior:

Export of current sheet in he given directory.

Note: Error doesn'thappen if one selectes a range by hand!!!

Platform (if different from the browser): 

Windows 7 (AMD64) German, Libreoffice 3.6.2.2 (Build ID: da8c1e6). This bug was
also valid in v.3.6.1

Browser: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:16.0) Gecko/20100101
Firefox/16.0

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


[Libreoffice-bugs] [Bug 42768] FILESAVE: when I make changes to a text in .doc format (or when transforming .odt into a .doc) and I reopen the file, footnotes and italics are not respected (or go mad,

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42768

--- Comment #8 from margheritarcang...@yahoo.it ---
Created attachment 68868
  -- https://bugs.freedesktop.org/attachment.cgi?id=68868action=edit
.odt that shows the italics problem once converted in .doc

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


[Libreoffice-bugs] [Bug 42768] FILESAVE: when I make changes to a text in .doc format (or when transforming .odt into a .doc) and I reopen the file, footnotes and italics are not respected (or go mad,

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42768

--- Comment #9 from margheritarcang...@yahoo.it ---
Created attachment 68869
  -- https://bugs.freedesktop.org/attachment.cgi?id=68869action=edit
pdf from the odt, which shows the right italics behaviour

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


[Libreoffice-bugs] [Bug 42768] FILESAVE: when I make changes to a text in .doc format (or when transforming .odt into a .doc) and I reopen the file, footnotes and italics are not respected (or go mad,

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42768

--- Comment #10 from margheritarcang...@yahoo.it ---
Created attachment 68870
  -- https://bugs.freedesktop.org/attachment.cgi?id=68870action=edit
pdf from the doc, which shows the italics problem

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


[Libreoffice-bugs] [Bug 42768] FILESAVE: when I make changes to a text in .doc format (or when transforming .odt into a .doc) and I reopen the file, footnotes and italics are not respected (or go mad,

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42768

--- Comment #11 from margheritarcang...@yahoo.it ---
Created attachment 68871
  -- https://bugs.freedesktop.org/attachment.cgi?id=68871action=edit
the converted file that shows the italics problem

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


[Libreoffice-bugs] [Bug 42768] FILESAVE: when I make changes to a text in .doc format (or when transforming .odt into a .doc) and I reopen the file, footnotes and italics are not respected (or go mad,

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42768

--- Comment #12 from margheritarcang...@yahoo.it ---
Here is the .odt which demonstrates the italics problem once converted in .doc
(not when converted in .docx, this is a good news!), as the pdfs show.

This should happen with LO 3.5.3.2, LO 3.5.4.2 and LO 3.6.0.2 (at least under
Ubuntu 12.04) and not with LO 3.4.4 and OO versions before 3.3 (both under
Ubuntu and MS).

Note that, even if the conversion has been done by non-affected versions of LO
and OO, the .doc will show the random italics for affected versions. It seems
that also the converse is true: the .doc converted by affected version of LO
behaves normally for unaffected versions.

Finally, if an .odt is created from the affected .doc by affected versions of
LO, it'll show the random italics.

Hope that all this might be of help!

Thanks.

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


[Libreoffice-bugs] [Bug 56069] No Mac OS daily master 3.7 builds available for QA

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56069

--- Comment #2 from Roman Eisele b...@eikota.de ---
OK, some progress: we have again a master build from line [3],
with pull time 2012-10-19 23:57:57.

But after this build there is again a gap, and [1] has not produced a new
master build yet since 2012-10-12, and many tinderboxes are still red ...

therefore I hesitate to close this bug report, until we have a more-or-less
daily flow of daily builds again ;-)

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


[Libreoffice-bugs] [Bug 56248] PDF Export of Selection stops with error message

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56248

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

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||LibreOffice@bielefeldundbus
   ||s.de
Summary|PDF: Error on PDF Export if |PDF Export of Selection
   |Selection is choosen|stops with error message
 Ever confirmed|0   |1

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
NOT reproducible as a general problem with LibreOffice 3.6.3.1” English UI/
German Locale [Build-ID: f8fce0b] on German WIN7 Home Premium (64bit)

@Sebastian Armbrust
Thank you for your report – unfortunately important information is missing.
May be hints on http://wiki.documentfoundation.org/BugReport will help you to
find out what information will be useful to reproduce your problem? If you
believe that that  is really sophisticated please as for Help on a user mailing
list
Please:
- Write a meaningful Summary describing exactly what the problem is
- Attach a sample document (not only screenshot) or refer to an existing 
  sample document in an other Bug with a link; to attach a file to this 
  bug report, just click on Add an attachment right on this page.
- Attach screenshots with comments if you believe that that might explain the 
  problem better than a text comment. Best way is to insert your screenshots
  into a DRAW document and to add comments that explain what you want to show
- Contribute a document related step by step instruction containing every 
  key press and every mouse click how to reproduce your problem 
  (similar to example in Bug 43431)
– if possible contribute an instruction how to create a sample document 
  from the scratch
- add information 
   -- concerning your PC 
   -- concerning your LibO Locale setting)
  –- Libo settings that might be related to your problems 
  -- how you launch LibO and how you opened the sample document
  –- Whether your problem persists when you renamed your user profile 
 before you launch LibO (please see
 https://wiki.documentfoundation.org/UserProfile#User_profile_location)
  –- Extensions that might be related
  -- everything else crossing your mind after you read linked texts

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


[Libreoffice-bugs] [Bug 56248] PDF Export of Selection stops with error message

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56248

--- Comment #2 from Sebastian Armbrust flizebo...@gmail.com ---
The error is not related to a specific file. It is even reproducale with a new
created file via start splash screen.

Deleting the user profile doesn't make a difference.

Simply:

- Start LO
- Create a new file
- Select File - Export to pdf
- Select Seelction
- Choose your path
- error message apears

Environment is a standard install with 3 additional extension:
-CT_Calc
-CT_Writer
-Duden Korrektor

I will install 3.6.3 RC1 and test further

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


[Libreoffice-bugs] [Bug 56200] Enhancement request: Replace LibreOffice icon with a high resolution one

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56200

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

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED
 CC||b...@eikota.de
Version|unspecified |3.6.2.2 release

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

I hope you will be glad to hear that this request was already fulfilled: In the
Master (3.7) branch, we already have high-resolution icons (1024 x 1024 px and
512 x 512 px) both for the LibreOffice application itself and for the main
document types (.odt, .ods, .odp, etc.). The new icon files were provided by
Nicholas Shanks in the following commits:

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

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

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

These icons will ship with LibreOffice 3.7 (in the beginning of 2013). You can
already test the new high-resolution icons right now if you download
a LibreOffice master/3.7 daily build for Mac OS X from
   http://dev-builds.libreoffice.org/daily/


However, IMHO the new icon files will not get backported to the 3.6 branch, and
it is not necessary to request that, because we have the guideline that all
minor updates (here: 3.6.1, .2, .3, .4, ...) should contain “important bug
fixes and localization updates” only. Sorry!

Therefore, this bug report is already handled as far as possible, and therefore
I set its status to RESOLVED/FIXED (because the fixes are well-known, see list
of commits above).

Thank you again!

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


[Libreoffice-bugs] [Bug 56200] Enhancement request: Replace LibreOffice icon with a high resolution one

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56200

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

   What|Removed |Added

 Whiteboard||target:3.7.0
   Assignee|libreoffice-b...@lists.free |nicksha...@nickshanks.com
   |desktop.org |
 Blocks||42082

--- Comment #3 from Roman Eisele b...@eikota.de ---
Assigned report post-mortem to Nicholas Shanks.
Added target:3.7.0 to whiteboard.
Added to meta issue 42082 -- it is nice to have some fixed items there, too ;-)

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


[Libreoffice-bugs] [Bug 42082] [META] Make LibreOffice shine and glow on the MacOSX and iOS platform. Or better: outshine other products/platforms.

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42082

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

   What|Removed |Added

 Depends on||56200

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


[Libreoffice-bugs] [Bug 56248] PDF Export of Selection stops with error message

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56248

--- Comment #3 from Sebastian Armbrust flizebo...@gmail.com ---
In Version 3.6.3.1 (Build ID: f8fce0b) error is still existing

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


[Libreoffice-bugs] [Bug 56223] Error Message instead of Wiki Publisher with JRE 1.7 64 bit

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56223

--- Comment #2 from Leopoldo Saggin topo...@inwind.it ---
(In reply to comment #1)
 I do not know whether there exists something called Wiki Extension, but we
 have the Wiki Publisher 1.1.2, may be reporter is talking about that
 extension? I will assume that for further research.

Yes, sorry!
I meant exactly the Wiki Publisher 1.1.2 which is one of the default
extensions included with the Windows release of LibO.

 AFAIK 64 Bit JRE is not allowed for LibO

At present I don't use LibO database which, at my knowledge, is the main LibO
module using Java, so I cannot test it.
Anyway, if I check JRE 64 bit in menu Tools | Options | Java I can do it
without any error message except for the Wiki (at least at this moment).
So if the 64 bit is not allowed, it could be better to warn not to use the 64
bit version of Java someway.

I generally use JRE 32 bit whenever I can. Unfortunately since few months the
Serviio daemon for multimedia has been searching for the 64 bit JRE and if you
do not update JRE exactly with this order:
1. JRE 32 bit 
2. JRE 64 bit
Serviio is not able to find JRE 64bit and it doesn't work.
So I hoped I could install only Java 64 bit (as one installs only one
AdobeFlash player) but until Oracle does not release only one version of JRE
whose module run correcly both in a 32 or a 64 bit environment depending on the
programs I probaly need to install both versions.

L. saggin

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


[Libreoffice-bugs] [Bug 51138] Editing a FONTWORK is difficult

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51138

Florian Reisinger reisi...@gmail.com changed:

   What|Removed |Added

   Hardware|Other   |All
 OS|Windows (All)   |All
   Severity|normal  |enhancement
   Priority|medium  |high
Summary|Editing a text box is   |Editing a FONTWORK is
   |difficult   |difficult
  Component|Libreoffice |Drawing

--- Comment #10 from Florian Reisinger reisi...@gmail.com ---
For this time I did it myself
(https://bugs.freedesktop.org/attachment.cgi?id=68422 is your attachment)

Okay, I got the next thing?

Do you use Fontworks, because there I can confirm this problem ( I will edit
bug metadata, so that it fits moire properly...)

1 question still there: OLDEST version you can reproduce this ( IMHO it was the
same @ OO.ord 3.1, would it be possible for you to test that

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


[Libreoffice-bugs] [Bug 51194] Cannot open password encrypted .docx and .xlsx files

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51194

--- Comment #5 from rolandelferink rol...@iveri.com ---
1.  Microsoft Office Professional Plus 2010 version 14.0.6.6123.5001 (32 bit)
for Windows.
2.  No,  I am using LibreOffice 3.5.4.2 Build ID: 350m1(Build:2).
3.  No, the updates to move to the next version have not been released on
ubuntu as yet.

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


[Libreoffice-bugs] [Bug 41652] NO-BREAK SPACE (U+00A0) interpreted as fixed-width space

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=41652

--- Comment #9 from stfhell stfh...@googlemail.com ---
(In reply to comment #7)
 It is easy to agree with Stfhell's notion that the intervening space in
 expressions such as Dr Freud and 5 % should be non-breaking, but I can't
 quite see the reasoning behind it having to be of fixed width too. By
 similar logic, shouldn't the spaces in Sigmund Freud and five per cent
 have fixed width as well? I find it rather inconsistent that a non-breaking
 space, which in non-justified text looks exactly like an average space, may
 stand out as narrower than average if the text is justified. Can you point
 out an authoritative source that actually recommends this?

Typesetting conventions are conventions, not ISO standards, and they vary with
language and time and personal taste. I can direct you to the orthographic
German Duden (following DIN 5008 for letter-writing): With office documents
and e-mails use a space after abbreviation dots (z. B., u. a. m.), but not in
dates (05.07.06); in word processing use a small fixed-width space in both
abbreviations and dates. (What merriam-webster.com and oxforddictionaries.com
do is compatible with _English_ typesetting practise and with common writer's
practise, because it's the easiest way to prohibit a line break.)

Spaces before/after/around symbols like $ %  / « » vary a lot, but in
typesetting handbooks you usually find recommendations like 1/6 or 1/8 or 0 em
quad. A full and proportional space would be regarded as unprofessional
typesetting in Germany. In typesetting systems, users have fixed-width spaces
of all sizes (including the normal inter-word size of about 1/4 quad) for all
kinds of usages (space between chapter number and title; aligning numbers like
347 and _47 vertically; insert a space at paragraph end to avoid the last
line being fully justified). They are tools for laying out text, not
necessarily a way to encode text as information - typesetters use such things
as double 1/4 quad spaces.

So fixed-width variants of normal space size do have a use (and Unicode defines
them: U+2002, U+2004, U+2005 etc.). The important point is not that the
fixed-width space should be distinguishable in all cases, but that it should
not be extensible with proportional spacing. In good typography such spaces
should in most cases be smaller than the regular space (as you say).

And, of course, you are right in that U+00A0 is _not_ defined as fixed-width.
And Microsoft knows that:
http://www.microsoft.com/typography/developers/fdsspec/spaces.htm
But designing fonts and designing word processors are different things for
Microsoft. Offering Word users a submenu with various types of spaces would be
overkill for most users, and Microsoft has decided to offer them the
fixed-width normal space as a single compromise alternative. Whether from the
need to be downward-compatible with pre-Unicode documents, from
misinterpretation of the Unicode standards or from conscious design principles.
(Word processors are in fact used as modern typewriters, people don't want to
fiddle with half a dozen spaces, and many don't even bother with hard spaces.)

In a world where only recent versions of Firefox render U+00A0 correctly, where
Adobe epub-reader software cannot render a soft hyphen correctly and the most
commonly used word processor renders all spaces apart from U+0020 and U+00A0 as
boxes if the font doesn't define them (LibreOffice uses the glyphs from a
substitution font), you cannot just follow Unicode standards blindly without
regard to compatibility issues.

But of course there is other software than MS Word. InDesign imports Unicode
spaces well from DOC files, and LibreOffice shouldn't let itself be limited by
a word processor with modest formatting capabilities. (In InDesign, imported
U+00A0 are rendered correctly. Thin spaces are fixed-width, as far as I know,
in line with common typesetting practise.) But it should be a conscious
decision of the user to depart from Word conventions on a per-document basis.
The problem is: What space could be used for fixed-width spaces (for which
there is also a definite need) if you tick that future LO box Treat hard space
as proportional?

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


[Libreoffice-bugs] [Bug 56249] New: High-resolution OpenDocument icons for Mac OS X are only applied to OASIS document types (e.g., oasis-text.icns), not to normal ones (e.g., text.icns)

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56249

  Priority: medium
Bug ID: 56249
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: High-resolution OpenDocument icons for Mac OS X are
only applied to OASIS document types (e.g.,
oasis-text.icns), not to normal ones (e.g.,
text.icns)
  Severity: normal
Classification: Unclassified
OS: Mac OS X (All)
  Reporter: b...@eikota.de
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 3.7.0.0.alpha0+ Master
 Component: UI
   Product: LibreOffice

Nicholas Shanks has supplied “higher-resolution OpenDocument icons for MacOSX”
with the following commit:

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

This was a nice improvement, thank you very much for it!

However, the new high-resolution icon sizes, i.e. 1024x1024 px and 512x512 px,
are only inside of the .icns files for the OASIS document types:

oasis-database.icns
oasis-drawing-template.icns
oasis-drawing.icns
oasis-formula.icns
oasis-master-document.icns
oasis-presentation-template.icns
oasis-presentation.icns
oasis-spreadsheet-template.icns
oasis-spreadsheet.icns
oasis-text-template.icns
oasis-text.icns

The corresponding “normal” .icns files, which look completely identical (?!),
are still only containing up to 128x128 px images:

drawing-template.icns
drawing.icns
formula.icns
master-document.icns
presentation-template.icns
presentation.icns
spreadsheet-template.icns
spreadsheet.icns
text-template.icns
text.icns

are all missing the 1024x1024 px and 512x512 px images.

Tested with the last master builds for Mac OS X, e.g. LOdev 3.7.0.0.alpha0+
(build ID: c252694; pull time: 2012-10-12 22:05:41).

I can also confirm this if I look at the git repository: the directory

http://cgit.freedesktop.org/libreoffice/core/tree/sysui/desktop/icons/hicolor/1024x1024/mimetypes

contains only *.png images for the “oasis-...” document types, not for the
“normal” ones, while e.g. the directory

http://cgit.freedesktop.org/libreoffice/core/tree/sysui/desktop/icons/hicolor/32x32/mimetypes

contains *.png files both for the “oasis-...” document types and for the
“normal” ones.


IMHO it should be rather easy to fix this problem: the “normal” .icns files
look completely identical to the corresponding OASIS ones, so just copy all
missing images from the OASIS .icns files to the “normal” .icns files.


Additional hints:
1) The 1024x1024 px and 512x512 px images are also missing from the
   “extension.icns” file (there is no corresponding “oasis-extension.icns”
   file).

2) There is no “database.icns” file, *only* the “oasis-database.icns” file;
   is this intentional, or should I file another bug report for this?

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


[Libreoffice-bugs] [Bug 56249] High-resolution OpenDocument icons for Mac OS X are only applied to OASIS document types (e.g., oasis-text.icns), not to normal ones (e.g., text.icns)

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56249

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

   What|Removed |Added

   Severity|normal  |minor
 CC||caol...@redhat.com,
   ||emir_s...@msn.com,
   ||nicksha...@nickshanks.com

--- Comment #1 from Roman Eisele b...@eikota.de ---
@ Nicholas Shanks:

Thank you again for your higher-resolution OpenDocument icons for MacOSX!
This is a bug report about some inconsistency -- some of the .icns files are
containing the new high-resolution images, and others don’t. Can you please
take a look at this problem? It should be really easy for you to fix this!

Thank you very much!


@ Emir Sarı:
Given that you are interested in these icons issues, can you please check if
you can confirm my bug report (by downloading the latest Master/3.7 daily build
from
  http://dev-builds.libreoffice.org/daily/
and checking the .icns files inside of the daily build at
  LOdev.app/Contens/Resources/
)? Then please set the status of this bug report to NEW.

Thank you very much!

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


[Libreoffice-bugs] [Bug 47089] : LO Crashes if in File Open Dialog the Context Menu is Used to Copy Files

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47089

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

   What|Removed |Added

 Status|NEW |NEEDINFO
 CC||serval2...@yahoo.fr

--- Comment #4 from Julien Nabet serval2...@yahoo.fr ---
harald/Urmas/Edgar: I haven't tested but Rainer didn't reproduce it with
3.5.1.2 and it was some months ago. Could you give a try to 3.5.6 or 3.6.2 and
tell us if you still reproduce it? If still reproduce, test again after having
renamed your LO profile (see http://wiki.documentfoundation.org/UserProfile)

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


[Libreoffice-bugs] [Bug 54082] FILESAVE: Calc corrupting some XLS files on save

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54082

--- Comment #6 from Matteo Italia mat...@mitalia.net ---
In my opinion, the fix should be backported to 3.5.7, it's not acceptable to
have bugs that corrupt files so easily in what should be the stable branch.
(Yes, the data can be recovered, but you have a fixed version of LO at hand and
it's a major annoyance)

By the way, when was this bug solved in the 3.6 series? I skimmed through the
fixes done in the various 3.6.* releases (at least, those reported in the
release notes on the wiki) but I didn't find anything related to this bug.

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


[Libreoffice-bugs] [Bug 56245] Corruption reported on valid ODT file

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56245

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

   What|Removed |Added

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

--- Comment #1 from Roman Eisele b...@eikota.de ---
Comment on attachment 68862
  -- https://bugs.freedesktop.org/attachment.cgi?id=68862
the file that is said to be corrupted

(Fixed MIME type.)

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


[Libreoffice-bugs] [Bug 56238] MSOffice Word 97-2003 document table not opening properly

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56238

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

   What|Removed |Added

  Attachment #68856|text/plain  |application/pdf
  mime type||

--- Comment #1 from Roman Eisele b...@eikota.de ---
Comment on attachment 68856
  -- https://bugs.freedesktop.org/attachment.cgi?id=68856
Scan of previously printed 1916 Census sheet

(Fixed MIME type.)

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


[Libreoffice-bugs] [Bug 56247] Help-About shows 370m0(Build:0) instead of Unique Build Identifier

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56247

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

   What|Removed |Added

 CC||LibreOffice@bielefeldundbus
   ||s.de
Summary|Unique Build Identifier |Help-About shows
   |lost|370m0(Build:0) instead of
   ||Unique Build Identifier

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


[Libreoffice-bugs] [Bug 49610] EDITING: Terminating 'Find' when reached end of document second time brings up Master View, deletes slides

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49610

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

   What|Removed |Added

Summary|EDITING: Terminating 'Find' |EDITING: Terminating 'Find'
   | when reached end of| when reached end of
   |document second time brings |document second time brings
   |up Master View|up Master View, deletes
   ||slides

--- Comment #17 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
Damages still [Reproducible] with LibreOffice 3.6.3.1” German UI/ German
Locale [Build-ID: f8fce0b] on German WIN7 Home Premium (64bit), 

but ok with parallel installation of Master LOdev  3.7.0.0.alpha0+   - 
ENGLISH UI / German Locale  [Build ID: 370m0(Build:0)]  {tinderbox: @6, pull
time 2012-10-20 14:21:35} on German WIN7 Home Premium (64bit) with separate
User Profile for Master Branch

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


[Libreoffice-bugs] [Bug 56250] New: FILEOPEN: File opens at top of document

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56250

  Priority: medium
Bug ID: 56250
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FILEOPEN: File opens at top of document
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: jbelton1...@gmail.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 3.6.2.2 release
 Component: Writer
   Product: LibreOffice

Problem description: 

Steps to reproduce:
1.  Open any text document that has been edited
2. 
3. 

Current behavior: The document always opens with the cursor at the top of the
document however long the document or where it was last edited.

Expected behavior:I would expect it to open with the cursor at the last edit
point where the cursor was when saved. This makes editing existing documents
slow if the edit point has to be found again

Platform (if different from the browser): Ubuntu 12.10

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

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


[Libreoffice-bugs] [Bug 49610] EDITING: Terminating 'Find' when reached end of document second time brings up Master View, deletes slides

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49610

--- Comment #18 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
I nominated this one as HardHack on
http://wiki.documentfoundation.org/HardHacks#General

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


[Libreoffice-bugs] [Bug 56155] conditional formatting

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56155

Markus Mohrhard markus.mohrh...@googlemail.com changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 56251] New: VIEWING: Text line repeated in Edit mode

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56251

  Priority: medium
Bug ID: 56251
  Keywords: regression
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: VIEWING: Text line repeated in Edit mode
  Severity: minor
Classification: Unclassified
OS: Windows (All)
  Reporter: libreoff...@bielefeldundbuss.de
  Hardware: Other
Status: UNCONFIRMED
   Version: 3.7.0.0.alpha0+ Master
 Component: Presentation
   Product: LibreOffice

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

I found that during research for Bug 49610 - EDITING: Terminating 'Find' when
reached end of document second time brings up Master View, deletes slides.

Steps how to reproduce with parallel installation of Master LOdev 
3.7.0.0.alpha0+   -  ENGLISH UI / German Locale  [Build ID: 370m0(Build:0)] 
{tinderbox: @6, pull time 2012-10-20 14:21:35} on German WIN7 Home Premium
(64bit) with separate User Profile for Master Branch:

1. download and open presentation from
https://wiki.documentfoundation.org/images/c/c3/Finding_out_whats_going_on.odp
First slide is visible in Normal View
   Bug: Looks as visible in screenshot with repeated line 

Also visible in other slides. Problem vanishes after first resize of slide show
and edit area. So not a big thing, but looks disturbing

OK  with LibreOffice 3.6.3.1” German UI/ German Locale [Build-ID: f8fce0b] on
German WIN7 Home Premium (64bit)

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


[Libreoffice-bugs] [Bug 56182] Libreoffice do not open large microsoft office files

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56182

Björgvin Ragnarsson nifgr...@gmail.com changed:

   What|Removed |Added

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

--- Comment #5 from Björgvin Ragnarsson nifgr...@gmail.com ---


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

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


[Libreoffice-bugs] [Bug 53883] Fileopen: Cannot open Microsoft (DOC, XLS, PPT) Files 6, 85 MB

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53883

--- Comment #7 from Björgvin Ragnarsson nifgr...@gmail.com ---
*** Bug 56182 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 56253] New: CVS import converts numbers to strings

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56253

  Priority: medium
Bug ID: 56253
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: CVS import converts numbers to strings
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: richard.ketcher...@gmail.com
  Hardware: Other
Status: NEW
   Version: 3.6.0.2 rc
 Component: Spreadsheet
   Product: LibreOffice

I have a grade sheet: Things look exactly as follows, no quotes or funny
characters, just rows with names and numbers. 

Name,HW1,HW2, ...
John,99.26,23.45 ...

when I open this with LibreOffice it converts all these numbers into strings!
This make the entire spreadsheet useless. I have  as the text delimiter and
all the grade columns are set to Standard. Is this a bug or is this some new
_really dumb_ default behavior and how can it be stopped?

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


[Libreoffice-bugs] [Bug 56254] New: more than one installation of LO on windows

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56254

  Priority: medium
Bug ID: 56254
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: more than one installation of LO on windows
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: kavale...@gmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 3.6.2.2 release
 Component: UI
   Product: LibreOffice

There should be a possibility to install more than one version of LO to be able
to test stability, which is a lot not good. I goot often crashes with 3.6.2.2

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


[Libreoffice-bugs] [Bug 56182] Libreoffice do not open large microsoft office files

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56182

Björgvin Ragnarsson nifgr...@gmail.com changed:

   What|Removed |Added

 CC||nifgr...@gmail.com

--- Comment #6 from Björgvin Ragnarsson nifgr...@gmail.com ---
Andis:

You say:
However it seems the problem has never been solved in 3.5. branch.

Ok, so this is not a regression. When I asked for the original bug report I was
looking for the bug report where the problem was fixed.

The reports you quote mention that the file can be opened in 3.5.5 or 3.5.4.
You could try to use those versions instead of the latest 3.5.

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


[Libreoffice-bugs] [Bug 56255] New: adding new rows is very slow

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56255

  Priority: medium
Bug ID: 56255
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: adding new rows is very slow
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: kavale...@gmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 3.6.2.2 release
 Component: Spreadsheet
   Product: LibreOffice

Adding new rows is very slow on my 2GHz and 3GB of RAM. File size is: 150kB, I
have there 10 sheets, I use a few conditional comments, filter and grouping

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


[Libreoffice-bugs] [Bug 55435] liborcus-0.2.a(liborcus_0.2_la-pstring.o): In function `thread_exception': /usr/include/boost/thread/exceptions.hpp:49: undefined reference to `boost::system::system_cat

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55435

--- Comment #4 from Markus Mohrhard markus.mohrh...@googlemail.com ---
Please write a mail to the developer mailing list about it.

We don't use bugzilla for build related problems.

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


[Libreoffice-bugs] [Bug 56238] MSOffice Word 97-2003 document table not opening properly

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56238

--- Comment #2 from greysk...@gmail.com ---
I'm not sure you understand. I don't have any trouble opening PDF documents. I
have trouble opening the .doc 1916 Census form. The PDF file shows what the
Census form is supposed to look like but I couldn't seem to add two attachments
so I pointed you to I got the form.

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


[Libreoffice-bugs] [Bug 56256] New: PRINTING and PDF export: inconsistent consideration of Appearance color Settings

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56256

  Priority: medium
Bug ID: 56256
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: PRINTING and PDF export: inconsistent consideration of
Appearance color Settings
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: libreoff...@bielefeldundbuss.de
  Hardware: Other
Status: UNCONFIRMED
   Version: 3.7.0.0.alpha0+ Master
 Component: Spreadsheet
   Product: LibreOffice

Steps how to reproduce with parallel installation of Master LOdev 
3.7.0.0.alpha0+   -  ENGLISH UI / German Locale  [Build ID: 370m0(Build:0)] 
{tinderbox: @6, pull time 2012-10-20 14:21:35} on German WIN7 Home Premium
(64bit) with separate User Profile for Master Branch

1. Open new Spreadsheet from LibO start center
2. Menu 'Tools - Options - LibO - Appearance - Spreadsheet
   Modify:
Grid Lines Auto  Light Red
Notes Background   Auto  Turquoise
3. Add little Text and a visible Comment
4. Export as PDF and print.
   Expected: Grid red,  Notes Background Turquoise
   Actual:  Grid BLACK, Notes Background Turquoise

Some of the settings are without Print impact (Manual page break .., but I
think all elements visible in a print should follow the settings the same way
(IMHO: respect settings).

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


[Libreoffice-bugs] [Bug 54082] FILESAVE: Calc corrupting some XLS files on save

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54082

--- Comment #7 from khagar...@gmail.com ---
It's only 3.5.6 that's broken for me. 3.6.x work fine.

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


[Libreoffice-bugs] [Bug 55858] Large table FILESAVE error

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55858

--- Comment #2 from Lee Oliver oliverl...@gmail.com ---
The file contains proprietary data.  Can you generate a large table (55
rows X 40 columns) of random numbers?  Just use column names of  A, B C,
..?
generate some stats with pivot table then try to save and recall the large
table.

thanks
Lee

On Thu, Oct 11, 2012 at 7:36 PM, bugzilla-dae...@freedesktop.org wrote:

   *Comment # 1 https://bugs.freedesktop.org/show_bug.cgi?id=55858#c1 on bug
 55858 https://bugs.freedesktop.org/show_bug.cgi?id=55858 from
 billh...@y7mail.com *

 Are you able to upload a sample? Perhaps zip it if it is large.

  --
 You are receiving this mail because:

- You reported the bug.



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


[Libreoffice-bugs] [Bug 56256] PRINTING and PDF export: inconsistent consideration of Appearance color Settings

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56256

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

   What|Removed |Added

 OS|All |Windows (All)
 CC||LibreOffice@bielefeldundbus
   ||s.de
Version|3.7.0.0.alpha0+ Master  |3.3.0 Beta2

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
Already Reproducible with OOo 3.1.1, so inherited from OOo.

Grid lines problem of course only visible if Print of Grid lines activated in
'Format - Page - Sheet'

Further investigation concernint Writer and others required.

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


[Libreoffice-bugs] [Bug 56257] New: VIEWING: particular number input panes in dialogs show numbers too far to the right

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56257

  Priority: medium
Bug ID: 56257
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: VIEWING: particular number input panes in dialogs show
numbers too far to the right
  Severity: minor
Classification: Unclassified
OS: Windows (All)
  Reporter: libreoff...@bielefeldundbuss.de
  Hardware: Other
Status: UNCONFIRMED
   Version: 3.7.0.0.alpha0+ Master
 Component: UI
   Product: LibreOffice

Created attachment 68877
  -- https://bugs.freedesktop.org/attachment.cgi?id=68877action=edit
Screenshot with Comment

Steps how to reproduce with parallel installation of Master LOdev 
3.7.0.0.alpha0+   -  ENGLISH UI / German Locale  [Build ID: 370m0(Build:0)] 
{tinderbox: @6, pull time 2012-10-20 14:21:35} on German WIN7 Home Premium
(64bit) with separate User Profile for Master Branch:

1. Open new Spreadsheet from LibO Start Center
2. Menu 'Print'
   Bug: Number in Current Page pane below preview is too far to the right

Not only that number is affected, also for example:
- DRAW PNG Export Compression Number

Until now I did not figure out what kind of numbers are affected, but seems to
be in Print / Export dialogs all numbers shown without spin button (or similar)
and without unit in pane.

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


[Libreoffice-bugs] [Bug 56258] New: FORMATTING: Bug in lists.

2012-10-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56258

  Priority: medium
Bug ID: 56258
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FORMATTING: Bug in lists.
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: mydarksidee...@gmail.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: unspecified
 Component: Writer
   Product: LibreOffice

Created attachment 68878
  -- https://bugs.freedesktop.org/attachment.cgi?id=68878action=edit
Its a window screenshot, this is the wrong indent in list items.

Problem description: 

When I make lists, these has indent constant but after list 9 item the items
has big indents.

Steps to reproduce:
1. Make a list until it exceeds 10 items


Current behavior:
Wrong formatting

Expected behavior:
Fix this bug :)

Platform (if different from the browser): 

Browser: Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:16.0) Gecko/20100101
Firefox/16.0

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


  1   2   >