[ABANDONED] fix fdo#63619 no need for RTL mark

2013-05-01 Thread Faisal al-otaibi (via Code Review)
Faisal al-otaibi has abandoned this change.

Change subject: fix fdo#63619 no need for RTL mark
..


Patch Set 1: Abandoned

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

Gerrit-MessageType: abandon
Gerrit-Change-Id: I88588be252455bbb353c757a75f2ec9ea2d17e9e
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Faisal al-otaibi fmalota...@kacst.edu.sa
Gerrit-Reviewer: Eike Rathke er...@redhat.com
Gerrit-Reviewer: Faisal al-otaibi fmalota...@kacst.edu.sa

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


[PATCH] fix fdo#64085 : set proper alignment for justified align tex...

2013-05-01 Thread navin patidar (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/3704

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/04/3704/1

fix fdo#64085 : set proper alignment for justified align text.

According to cell writing direction, set alignment for justified align text.

Change-Id: I91e1c52f1aa13a806e2a91dc7120960a4cc3f5c1
---
M sc/source/ui/view/output2.cxx
1 file changed, 8 insertions(+), 1 deletion(-)



diff --git a/sc/source/ui/view/output2.cxx b/sc/source/ui/view/output2.cxx
index d4fb35f..c16e15f 100644
--- a/sc/source/ui/view/output2.cxx
+++ b/sc/source/ui/view/output2.cxx
@@ -1673,7 +1673,14 @@
 eOutHorJust = aVars.GetHorJust();
 
 if ( eOutHorJust == SVX_HOR_JUSTIFY_BLOCK || eOutHorJust 
== SVX_HOR_JUSTIFY_REPEAT )
-eOutHorJust = SVX_HOR_JUSTIFY_LEFT; // repeat is 
not yet implemented
+{
+const SfxPoolItem* pItem =  mpDoc-GetAttr( nCellX, 
nCellY, nTab, ATTR_WRITINGDIR );
+const SvxFrameDirectionItem* rCurrentWritingMode = 
(const SvxFrameDirectionItem*) pItem;
+if (rCurrentWritingMode-GetValue() == 
FRMDIR_HORI_LEFT_TOP)
+eOutHorJust = SVX_HOR_JUSTIFY_LEFT;
+else
+eOutHorJust = SVX_HOR_JUSTIFY_RIGHT;
+}
 
 bool bBreak = ( aVars.GetLineBreak() || aVars.GetHorJust() 
== SVX_HOR_JUSTIFY_BLOCK );
 // #i111387# #o11817313# disable automatic line breaks 
only for General number format

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I91e1c52f1aa13a806e2a91dc7120960a4cc3f5c1
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: navin patidar pati...@kacst.edu.sa

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


[Libreoffice-commits] core.git: configure.ac distro-configs/LibreOfficeiOS.conf distro-configs/README

2013-05-01 Thread Tor Lillqvist
 configure.ac   |   59 +++--
 distro-configs/LibreOfficeiOS.conf |   24 ---
 distro-configs/README  |   10 +++---
 3 files changed, 62 insertions(+), 31 deletions(-)

New commits:
commit 35583e02020326eae206c16c89e9e5eaf5f580b5
Author: Tor Lillqvist t...@iki.fi
Date:   Wed May 1 09:44:28 2013 +0300

Make configury work as well as possible for iOS without options

Change-Id: If28fbe59f55626aeca05fa93446a0e5034ea2b91

diff --git a/configure.ac b/configure.ac
index cd03950..0f19e1b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1145,6 +1145,11 @@ AC_ARG_WITH(macosx-bundle-identifier,
  org.libreoffice.script (script, huh?).]),
 ,with_macosx_bundle_identifier=org.libreoffice.script)
 
+AC_ARG_ENABLE(ios-simulator,
+AS_HELP_STRING([--enable-ios-simulator],
+[Build for the iOS Simulator, not iOS device.]),
+,)
+
 AC_ARG_ENABLE(readonly-installset,
 AS_HELP_STRING([--enable-readonly-installset],
 [Prevents any attempts by LibreOffice to write into its installation. 
That means
@@ -2640,6 +2645,42 @@ AC_SUBST(MACOSX_CODESIGNING_IDENTITY)
 AC_SUBST(ENABLE_MACOSX_SANDBOX)
 AC_SUBST(MACOSX_BUNDLE_IDENTIFIER)
 
+dnl ===
+dnl Check / find iOS SDK and compiler, version checks
+dnl ===
+if test $_os = iOS; then
+
+AC_MSG_CHECKING([what iOS SDK to use])
+
+if test $enable_ios_simulator = yes; then
+platform=iPhoneSimulator
+versionmin=-mmacosx-version-min=10.7
+arch=i386
+else
+platform=iPhoneOS
+versionmin=-miphoneos-version-min=5.0
+arch=armv7
+fi
+
+pref_sdk_ver=6.1
+for I in 6.1 6.0; do
+
t=/Applications/Xcode.app/Contents/Developer/Platforms/$platform.platform/Developer/SDKs/$platform$I.sdk
+if test -d $t; then
+sysroot=$t
+break
+fi
+done
+
+if test -z $sysroot; then
+AC_MSG_ERROR([Could not find iOS SDK, expected something like 
/Applications/Xcode.app/Contents/Developer/Platforms/$platform.platform/Developer/SDKs/${platform}${pref_sdk_ver}])
+fi
+
+AC_MSG_RESULT($sysroot)
+
+
CXX=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++
 -arch $arch -isysroot $sysroot $versionmin
+
CC=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -arch $arch -isysroot $sysroot $versionmin
+fi
+
 AC_MSG_CHECKING([whether to treat the installation as read-only])
 
 if test \( -z $enable_readonly_installset -a $ENABLE_MACOSX_SANDBOX = YES 
\) -o \
@@ -6937,6 +6978,15 @@ printf (hello world\n);
 fi
 AC_SUBST(WINEGCC)
 
+if test $_os = iOS; then
+enable_mpl_subset=yes
+enable_postgresql_sdbc=no
+enable_lotuswordpro=no
+enable_neon=no
+enable_extension_integration=no
+with_ppds=no
+fi
+
 ENABLE_LWP=
 if test $enable_lotuswordpro = yes; then
ENABLE_LWP=TRUE
@@ -6946,6 +6996,7 @@ AC_SUBST(ENABLE_LWP)
 
 AC_MSG_CHECKING([MPL subset])
 MPL_SUBSET=
+
 if test $enable_mpl_subset = yes; then
if test x$enable_postgresql_sdbc != xno; then
 AC_MSG_ERROR([need to --disable-postgresql-sdbc - the postgress 
database backend.])
@@ -9274,7 +9325,7 @@ dnl 
===
 
 ENABLE_GCONF=
 AC_MSG_CHECKING([whether to enable GConf support])
-if test $_os != WINNT -a $_os != Darwin -a $enable_gconf = yes; 
then
+if test $_os != WINNT -a $_os != Darwin -a $_os != iOS -a 
$enable_gconf = yes; then
 ENABLE_GCONF=TRUE
 AC_MSG_RESULT([yes])
 PKG_CHECK_MODULES( GCONF, gconf-2.0 gobject-2.0 )
@@ -9502,7 +9553,7 @@ if test $enable_split_opt_features = yes; then
 fi
 AC_SUBST(SPLIT_OPT_FEATURES)
 
-if test $_os = Darwin -o $_os = WINNT; then
+if test $_os = Darwin -o $_os = WINNT -o $_os = iOS; then
 if test $enable_cairo_canvas = yes; then
 AC_MSG_ERROR([The cairo canvas should not be used for this platform])
 fi
@@ -9572,6 +9623,10 @@ if test -z $enable_opengl; then
 # badly and crashes). In other words, use --enable-opengl only if you 
plan to hack on that
 # code for Windows.
 enable_opengl=no
+elif test $_os = iOS; then
+# As such with some suitable minor tweaks the Mac OpenGL transitions 
code would presumably
+# build fine for iOS, too, but let's leave that for later
+enable_opengl=no
 else
 enable_opengl=yes
 fi
diff --git a/distro-configs/LibreOfficeiOS.conf 
b/distro-configs/LibreOfficeiOS.conf
index 695dd83..be996d0 100644
--- a/distro-configs/LibreOfficeiOS.conf
+++ b/distro-configs/LibreOfficeiOS.conf
@@ -1,26 +1,2 @@
 --build=i386-apple-darwin10.7.0
 --host=arm-apple-darwin10
---disable-cairo-canvas
---disable-ext-presenter-minimizer
---disable-extension-integration
---disable-gconf

Set RES_GRFATR_CROPGRF atrtibute from SwVirtFlyDrawObj

2013-05-01 Thread Philippe Jung

Hi,

I am working on implementing the Crop Image feature in Writer.

Cropping ends in svx/source/svdraw/svddrgmt.cxx SdrDragCrop::EndSdrDrag. 
When cropping from Impress, marked object is SdrGrafObj. I rewrote part 
of the code so that Cropping is now part of SdrGrafObj (Similar to 
NbcMove, NbcResize and so on).


When cropping from Writer, the marked Object (and so the object to crop) 
is SwVirtFlyDrawObj (dflyobj.cxx). I have added SwVirtDrawObj::NbcCrop 
as Resize or Move. At this point, I would like to save the new values 
for crop attributes. That's where help is needed : how SwVirtFlyDrawObj 
relates to the embedded image and what is the expected way of applying 
an attribute to the image in a SwVirtFlyDrawObj?


Got various ways to read the current value of the image, but I did not 
succeed in writing new values. I am a bit lost betwwen GetFrm, 
GetFrm-Lower, FrameFmt, and all the possible attribute pools.


Any recommandation would be appreciated :-).

Regards
Philippe


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


[Libreoffice-commits] core.git: Branch 'libreoffice-4-0' - svx/source

2013-05-01 Thread Thorsten Behrens
 svx/source/unodraw/unoshape.cxx |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 3ac3c8681253b7a05d5736f664929bcd5f15c8aa
Author: Thorsten Behrens tbehr...@suse.com
Date:   Tue Apr 30 21:23:46 2013 +0200

Make uno any types explicit.

This was previously sticking long types into Any - which yields
different sal types on different archs.

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

diff --git a/svx/source/unodraw/unoshape.cxx b/svx/source/unodraw/unoshape.cxx
index dc41794..4c9a52e 100644
--- a/svx/source/unodraw/unoshape.cxx
+++ b/svx/source/unodraw/unoshape.cxx
@@ -2770,7 +2770,7 @@ bool SvxShape::getPropertyValueImpl( const 
::rtl::OUString, const SfxItemProper
 case OWN_ATTR_GLUEID_HEAD:
 case OWN_ATTR_GLUEID_TAIL:
 {
-rValue = pEdgeObj-getGluePointIndex( pProperty-nWID == 
OWN_ATTR_GLUEID_HEAD );
+rValue = (sal_Int32)pEdgeObj-getGluePointIndex( 
pProperty-nWID == OWN_ATTR_GLUEID_HEAD );
 break;
 }
 case OWN_ATTR_EDGE_POLYPOLYGONBEZIER:
@@ -2850,11 +2850,11 @@ bool SvxShape::getPropertyValueImpl( const 
::rtl::OUString, const SfxItemProper
 }
 
 case SDRATTR_ROTATEANGLE:
-rValue = mpObj-GetRotateAngle();
+rValue = (sal_Int32)mpObj-GetRotateAngle();
 break;
 
 case SDRATTR_SHEARANGLE:
-rValue = mpObj-GetShearAngle();
+rValue = (sal_Int32)mpObj-GetShearAngle();
 break;
 
 case SDRATTR_OBJMOVEPROTECT:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PUSHED libreoffice-4-0] Make uno any types explicit.

2013-05-01 Thread David Tardon (via Code Review)
Hi,

Thank you for your patch!  It has been merged to LibreOffice.

If you are interested in details, please visit

https://gerrit.libreoffice.org/3703

Approvals:
  David Tardon: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ifc7a60a052b57f8a83739ec11a97ab32aaa2ee7c
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: libreoffice-4-0
Gerrit-Owner: Thorsten Behrens tbehr...@suse.com
Gerrit-Reviewer: David Tardon dtar...@redhat.com

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


Re: conversion operators for UNO

2013-05-01 Thread Noel Grandin
On Tuesday, 30 April 2013, Stephan Bergmann wrote:

 So I came up in parallel with 
 https://gerrit.libreoffice.**org/#/c/3699/https://gerrit.libreoffice.org/#/c/3699/
 


Awesome!

I'm  working on a clang plugin to find places that can make use of the
constructor.
I've got it partially working modulo the ocassional crash.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Set RES_GRFATR_CROPGRF atrtibute from SwVirtFlyDrawObj

2013-05-01 Thread Regina Henschel

Hi Philippe,

Philippe Jung schrieb:

Hi,

I am working on implementing the Crop Image feature in Writer.


Which one? In Impress/Draw we have .uno:Crop (That is used for cropping 
with the mouse) and .uno:GrafAttrCrop (That opens the crop dialog)?




Cropping ends in svx/source/svdraw/svddrgmt.cxx SdrDragCrop::EndSdrDrag.
When cropping from Impress, marked object is SdrGrafObj. I rewrote part
of the code so that Cropping is now part of SdrGrafObj (Similar to
NbcMove, NbcResize and so on).


??
In Writer it is the property GraphicCrop, a struct, type 
com.sun.star.text.GraphicCrop.




When cropping from Writer, the marked Object (and so the object to crop)
is SwVirtFlyDrawObj (dflyobj.cxx). I have added SwVirtDrawObj::NbcCrop
as Resize or Move. At this point, I would like to save the new values
for crop attributes. That's where help is needed : how SwVirtFlyDrawObj
relates to the embedded image and what is the expected way of applying
an attribute to the image in a SwVirtFlyDrawObj?

Got various ways to read the current value of the image, but I did not
succeed in writing new values. I am a bit lost betwwen GetFrm,
GetFrm-Lower, FrameFmt, and all the possible attribute pools.

Any recommandation would be appreciated :-).


The crop property exists for pictures in Writer, for 
com.sun.star.text.TextGraphicObject and 
com.sun.star.drawing.GraphicObjectShape as well. There is no problem to 
crop a picture using a macro. In a macro you need to set the GraphicCrop 
property, nothing more. Therefore there should be no need to change 
anything on the objects themselves, but write a UI for it.


(I'm no core developer, but see things from writing macros, so I might 
be totally wrong.)


Kind regards
Regina


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


Re: Set RES_GRFATR_CROPGRF atrtibute from SwVirtFlyDrawObj

2013-05-01 Thread Tommy
On Wed, 01 May 2013 12:13:55 +0200, Regina Henschel  
rb.hensc...@t-online.de wrote:



Hi Philippe,

Philippe Jung schrieb:

Hi,

I am working on implementing the Crop Image feature in Writer.


Which one? In Impress/Draw we have .uno:Crop (That is used for cropping  
with the mouse) and .uno:GrafAttrCrop (That opens the crop dialog)?




You can already crop images with Writer but not in a visual mode
I think he's working on a visual crop tool such as the extension CropOOo.
http://aoo-extensions.sourceforge.net/en/project/cropooo

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


[PATCH] fdo#37222 and fdo#37219 Open pdf after Export and added to ...

2013-05-01 Thread Anurag Kanungo (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/3709

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/09/3709/1

fdo#37222 and fdo#37219  Open pdf after Export and added to recent documents.

Added an checkbox option view pdf after Export  in Export as Pdf  Dialog Box .

If a user ticks the checkbox , pdf file will be opened after export
else only export will be done .

Goto File  Export as PDF  Tick the checkbox View PDF after Export 

to observe changes .

Change-Id: Ief7d2b4413c0964b472e339a0fb46555227d8c6d
---
M filter/source/pdf/impdialog.cxx
M filter/source/pdf/impdialog.hrc
M filter/source/pdf/impdialog.hxx
M filter/source/pdf/impdialog.src
M filter/source/pdf/pdffilter.cxx
5 files changed, 32 insertions(+), 0 deletions(-)



diff --git a/filter/source/pdf/impdialog.cxx b/filter/source/pdf/impdialog.cxx
index 9ddf052..e4a4a90 100644
--- a/filter/source/pdf/impdialog.cxx
+++ b/filter/source/pdf/impdialog.cxx
@@ -80,6 +80,7 @@
 mnMaxImageResolution( 300 ),
 mbUseTaggedPDF( sal_False ),
 mbExportNotes( sal_True ),
+mbVIEWPDF( sal_False ),
 mbExportNotesPages( sal_False ),
 mbUseTransitionEffects( sal_False ),
 mbIsSkipEmptyPages( sal_True ),
@@ -511,6 +512,7 @@
 maCbExportBookmarks( this, PDFFilterResId( CB_EXPORTBOOKMARKS ) ),
 maCbExportHiddenSlides( this, PDFFilterResId( CB_EXPORTHIDDENSLIDES ) ),
 maCbExportNotes( this, PDFFilterResId( CB_EXPORTNOTES ) ),
+maCbVIEWPDF( this, PDFFilterResId( CB_VIEWPDF ) ),
 maCbExportNotesPages( this, PDFFilterResId( CB_EXPORTNOTESPAGES ) ),
 maCbExportEmptyPages( this, PDFFilterResId( CB_EXPORTEMPTYPAGES ) ),
 maCbAddStream( this, PDFFilterResId( CB_ADDSTREAM ) ),
@@ -659,6 +661,7 @@
 ToggleAddStreamHdl( NULL );
 }
 
+int ImpPDFTabGeneralPage::pdfview=0; // To set Default Value of Checkbox (View 
Pdf after Export)
 // 
-
 void ImpPDFTabGeneralPage::GetFilterConfigItem( ImpPDFTabDialog* paParent )
 {
@@ -702,6 +705,12 @@
 paParent-mbExportFormFields = maCbExportFormFields.IsChecked();
 paParent-mbEmbedStandardFonts = maCbEmbedStandardFonts.IsChecked();
 }
+
+if( maCbVIEWPDF.IsChecked() )
+pdfview=1;
+else
+pdfview=0;
+
 paParent-maWatermarkText = maEdWatermark.GetText();
 
 /*
diff --git a/filter/source/pdf/impdialog.hrc b/filter/source/pdf/impdialog.hrc
index 03b6d55..938b622 100644
--- a/filter/source/pdf/impdialog.hrc
+++ b/filter/source/pdf/impdialog.hrc
@@ -87,6 +87,7 @@
 #define CB_WATERMARK32
 #define FT_WATERMARK33
 #define ED_WATERMARK34
+#define CB_VIEWPDF  35
 
 
 //controls for open options tab page
diff --git a/filter/source/pdf/impdialog.hxx b/filter/source/pdf/impdialog.hxx
index 11a3f38..ac5915b 100644
--- a/filter/source/pdf/impdialog.hxx
+++ b/filter/source/pdf/impdialog.hxx
@@ -94,6 +94,7 @@
 sal_BoolmbUseTaggedPDF;
 sal_Int32   mnPDFTypeSelection;
 sal_BoolmbExportNotes;
+sal_BoolmbVIEWPDF;
 sal_BoolmbExportNotesPages;
 sal_BoolmbUseTransitionEffects;
 sal_BoolmbIsSkipEmptyPages;
@@ -178,7 +179,9 @@
 class ImpPDFTabGeneralPage : public SfxTabPage
 {
 friend classImpPDFTabLinksPage;
+friend classPDFFilter;
 
+static int  pdfview;
 FixedLine   maFlPages;
 RadioButton maRbAll;
 RadioButton maRbRange;
@@ -210,6 +213,7 @@
 CheckBoxmaCbExportBookmarks;
 CheckBoxmaCbExportHiddenSlides;
 CheckBoxmaCbExportNotes;
+CheckBoxmaCbVIEWPDF;
 CheckBoxmaCbExportNotesPages;
 
 CheckBoxmaCbExportEmptyPages;
diff --git a/filter/source/pdf/impdialog.src b/filter/source/pdf/impdialog.src
index 8d74616..1d6e202 100644
--- a/filter/source/pdf/impdialog.src
+++ b/filter/source/pdf/impdialog.src
@@ -278,6 +278,13 @@
 TabStop = TRUE ;
 Text[ en-US ] = ~Export comments;
 };
+CheckBox CB_VIEWPDF
+{
+Pos = MAP_APPFONT ( 188 , 131 ) ;
+Size = MAP_APPFONT ( 158 , 10 ) ;
+TabStop = TRUE ;
+Text[ en-US ] = ~View Pdf after Export;
+};
 CheckBox CB_EXPORTNOTESPAGES
 {
 HelpID = filter:CheckBox:RID_PDF_TAB_GENER:CB_EXPORTNOTESPAGES;
diff --git a/filter/source/pdf/pdffilter.cxx b/filter/source/pdf/pdffilter.cxx
index 9aadfed..c19618a 100644
--- a/filter/source/pdf/pdffilter.cxx
+++ b/filter/source/pdf/pdffilter.cxx
@@ -18,13 +18,17 @@
  */
 
 
+#include impdialog.hxx
 #include pdffilter.hxx
 #include pdfexport.hxx
 #include vcl/svapp.hxx
 #include 

[Libreoffice-commits] core.git: Branch 'distro/suse/suse-4.0' - libvisio/UnpackedTarball_visio.mk

2013-05-01 Thread Petr Mladek
 libvisio/UnpackedTarball_visio.mk |5 -
 1 file changed, 5 deletions(-)

New commits:
commit 68454d8c8ad4b121a0c6d725a44ff6f5ac1fc7fe
Author: Petr Mladek pmla...@suse.cz
Date:   Wed May 1 13:36:40 2013 +0200

really do not apply the obsolete libvisio-0.0.25.patch

sigh, how this survived the conflict resolution?

Change-Id: I65117ba28cac28419d6873af5620a3df17654318

diff --git a/libvisio/UnpackedTarball_visio.mk 
b/libvisio/UnpackedTarball_visio.mk
index 492f857..59c29ac 100644
--- a/libvisio/UnpackedTarball_visio.mk
+++ b/libvisio/UnpackedTarball_visio.mk
@@ -12,9 +12,4 @@ $(eval $(call gb_UnpackedTarball_UnpackedTarball,visio))
 $(eval $(call gb_UnpackedTarball_set_tarball,visio,$(VISIO_TARBALL)))
 
 
-
-$(eval $(call gb_UnpackedTarball_add_patches,visio,\
-   libvisio/libvisio-0.0.25.patch \
-))
-
 # vim: set noet sw=4 ts=4:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Set RES_GRFATR_CROPGRF atrtibute from SwVirtFlyDrawObj

2013-05-01 Thread Philippe Jung
I confirm I am implementing visual crop in writer with drag and drop. This 
already exists in impress.
Today I have crop handles. I have updated svx so that I can get endsdrdrag in 
writer without breaking crop in impress. I can resize the picture but I have 
difficulties in setting crop values.
Will have a look at the extension you pointed.
Philippe


Tommy ba...@quipo.it a écrit :

On Wed, 01 May 2013 12:13:55 +0200, Regina Henschel  
rb.hensc...@t-online.de wrote:

 Hi Philippe,

 Philippe Jung schrieb:
 Hi,

 I am working on implementing the Crop Image feature in Writer.

 Which one? In Impress/Draw we have .uno:Crop (That is used for
cropping  
 with the mouse) and .uno:GrafAttrCrop (That opens the crop dialog)?


You can already crop images with Writer but not in a visual mode
I think he's working on a visual crop tool such as the extension
CropOOo.
http://aoo-extensions.sourceforge.net/en/project/cropooo

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

-- 
Envoyé de mon téléphone Android avec K-9 Mail. Excusez la brièveté.
-- 
Envoyé de mon téléphone Android avec K-9 Mail. Excusez la brièveté.___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Set RES_GRFATR_CROPGRF atrtibute from SwVirtFlyDrawObj

2013-05-01 Thread Philippe Jung
I confirm I am implementing visual crop in writer with drag and drop. This 
already exists in impress.
Today I have crop handles. I have updated svx so that I can get endsdrdrag in 
writer without breaking crop in impress. I can resize the picture but I have 
difficulties in setting crop values.
Will have a look at the extension you pointed.
Philippe


Tommy ba...@quipo.it a écrit :

On Wed, 01 May 2013 12:13:55 +0200, Regina Henschel  
rb.hensc...@t-online.de wrote:

 Hi Philippe,

 Philippe Jung schrieb:
 Hi,

 I am working on implementing the Crop Image feature in Writer.

 Which one? In Impress/Draw we have .uno:Crop (That is used for
cropping  
 with the mouse) and .uno:GrafAttrCrop (That opens the crop dialog)?


You can already crop images with Writer but not in a visual mode
I think he's working on a visual crop tool such as the extension
CropOOo.
http://aoo-extensions.sourceforge.net/en/project/cropooo

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

-- 
Envoyé de mon téléphone Android avec K-9 Mail. Excusez la brièveté.___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: Branch 'distro/suse/suse-4.0' - sc/source

2013-05-01 Thread Petr Mladek
 sc/source/ui/vba/vbaapplication.cxx |   15 ---
 1 file changed, 15 deletions(-)

New commits:
commit ed2f7b4beab3541e1c4faa2b560a4214c88be227
Author: Petr Mladek pmla...@suse.cz
Date:   Wed May 1 13:54:09 2013 +0200

remove duplicated implementation of ScVbaApplication::OnKey

somehow got duplicated when merging the tag libreoffice-4.0.3.2

Change-Id: I78ed09327076263f1797adc6b94b948918e5227c

diff --git a/sc/source/ui/vba/vbaapplication.cxx 
b/sc/source/ui/vba/vbaapplication.cxx
index d39b45f..67b02ab 100644
--- a/sc/source/ui/vba/vbaapplication.cxx
+++ b/sc/source/ui/vba/vbaapplication.cxx
@@ -1384,21 +1384,6 @@ void SAL_CALL ScVbaApplication::Undo() throw 
(uno::RuntimeException)
 dispatchExecute( pViewShell, SID_UNDO );
 }
 
-void SAL_CALL ScVbaApplication::OnKey( const ::rtl::OUString Key, const 
uno::Any Procedure ) throw (uno::RuntimeException)
-{
-try
-{
-// Perhaps we can catch some excel specific
-// related behaviour here
-VbaApplicationBase::OnKey( Key, Procedure );
-}
-catch( container::NoSuchElementException )
-{
-// #TODO special handling for unhandled
-// bindings
-}
-}
-
 rtl::OUString
 ScVbaApplication::getServiceImplName()
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'distro/suse/suse-4.0' - svx/source

2013-05-01 Thread Thorsten Behrens
 svx/source/unodraw/unoshape.cxx |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 8a589ab4d5d15ab15aa45ad645e98880704d2579
Author: Thorsten Behrens tbehr...@suse.com
Date:   Tue Apr 30 21:23:46 2013 +0200

Make uno any types explicit.

This was previously sticking long types into Any - which yields
different sal types on different archs.

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

diff --git a/svx/source/unodraw/unoshape.cxx b/svx/source/unodraw/unoshape.cxx
index dc41794..4c9a52e 100644
--- a/svx/source/unodraw/unoshape.cxx
+++ b/svx/source/unodraw/unoshape.cxx
@@ -2770,7 +2770,7 @@ bool SvxShape::getPropertyValueImpl( const 
::rtl::OUString, const SfxItemProper
 case OWN_ATTR_GLUEID_HEAD:
 case OWN_ATTR_GLUEID_TAIL:
 {
-rValue = pEdgeObj-getGluePointIndex( pProperty-nWID == 
OWN_ATTR_GLUEID_HEAD );
+rValue = (sal_Int32)pEdgeObj-getGluePointIndex( 
pProperty-nWID == OWN_ATTR_GLUEID_HEAD );
 break;
 }
 case OWN_ATTR_EDGE_POLYPOLYGONBEZIER:
@@ -2850,11 +2850,11 @@ bool SvxShape::getPropertyValueImpl( const 
::rtl::OUString, const SfxItemProper
 }
 
 case SDRATTR_ROTATEANGLE:
-rValue = mpObj-GetRotateAngle();
+rValue = (sal_Int32)mpObj-GetRotateAngle();
 break;
 
 case SDRATTR_SHEARANGLE:
-rValue = mpObj-GetShearAngle();
+rValue = (sal_Int32)mpObj-GetShearAngle();
 break;
 
 case SDRATTR_OBJMOVEPROTECT:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Wizard Integration

2013-05-01 Thread Matúš Kukan
Hi,

On 30 April 2013 17:16, Jorge Luis Roque Alvarez jlalva...@uci.cu wrote:
 Iam new in LO Development, i wrote an small wizard in java  i notice that 
 the defaults wizards are been migrated to python but i still want to include 
 it in my local LO since it will of great help for me.

If it could be useful for others too, I think you can include it in
Libreoffice if you want, even if it's written in java.

 Can anyone give some advised or a quick tutorial of the steps i should follow 
 to include my wizard in my currently installed LO or in my local LO 
 source(clone from here 
 http://anongit.freedesktop.org/git/libreoffice/core.git) to be build later.

Hm, how do you run the wizard currently?
I am not an expert at all, but probably you want to add something into
officecfg/registry/data/org/openoffice/Office/Common.xcu
Check node oor:name=Wizard

Then create component file similar to
wizards/com/sun/star/wizards/web/web.component
add it to postprocess/Rdb_services.mk
and implement class similar to
wizards/com/sun/star/wizards/web/CallWizard.java I think?

Does this help ?
Or maybe someone else could step in.

Best,

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


[ABANDONED] fdo#37222 and fdo#37219 Open pdf after Export and added to ...

2013-05-01 Thread Anurag Kanungo (via Code Review)
Anurag Kanungo has abandoned this change.

Change subject: fdo#37222 and fdo#37219  Open pdf after Export and added to 
recent documents .
..


Patch Set 1: Abandoned

New Submitted

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

Gerrit-MessageType: abandon
Gerrit-Change-Id: Ie055b3ee2041457dd4b1db6cd7fe04b62764ec6f
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Anurag Kanungo anuragkanu...@gmail.com
Gerrit-Reviewer: Tor Lillqvist t...@iki.fi

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


[ABANDONED] fdo#37222 and fdo#37219 Open pdf after Export and added to ...

2013-05-01 Thread Anurag Kanungo (via Code Review)
Anurag Kanungo has abandoned this change.

Change subject: fdo#37222 and fdo#37219  Open pdf after Export and added to 
recent documents.
..


Patch Set 1: Abandoned

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

Gerrit-MessageType: abandon
Gerrit-Change-Id: Ibc4bf200c67d090d61e6024519b9057f9f8bfd6f
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Anurag Kanungo anuragkanu...@gmail.com
Gerrit-Reviewer: Tor Lillqvist t...@iki.fi

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


minutes of (last weeks) ESC call ...

2013-05-01 Thread Michael Meeks
Joel kindly pointed out I forgot to send these: sorry !

* Present:
+ Joel, Thorsten, Lionel, Andras, David, Norbert, Kendy,
  Ahmad, Astron, Bjoern, Eike, Caolan, Stephan, Petr,
  Cedric

* Completed Action Items
+ publish results of automated load testing (Markus)
+ find out an ideal git rename limit number (Bjoern)
+ do RTL_LOGFILE changes (Bjoern)
[ plus created an easy-hack ]
+ helping out with code-pointers for UI bugs (Kendy)
[ toolbar issues in GSOC wiki page, and ref'd in bugs ]
+ Personas - update / de-couple built-in URL (Kendy)
[ done - expected for 4.0.3, new URL there ]
[ text 'Persona' left in 4.0.x for l10n text
  updated in master, GSOC task to move to
  API and browse in LibO ]
+ update mac SDK configure check on master (Norbert)
+ Lionel's UNO / forms interfaces: second view on what's up
[ uses a different model, so confusing, but no change ]
+ Lionel's list-box change:
[ hesitated a lot, but interaction with Validator
  interface makes this ]
AI: + double check this change (Eike)
+ mass-move  tweak of include paths (Bjoern)
[ looks beautiful in master, two minor glitches
  15mins late executing, and broke cross-compiling,
  otherwise it went smoothly - thanks to all
  for help ! ]
[ Windows builds take between 1 or 2 hours - there
  are two of them ]
+ on-line update 3.6.x - 3.6.6 patch (Michael)
[ should now be nearly automated, needs just the new
  commit id adding ]

* Pending Action Items
+ look at gradient / clipart issues (Michael)
+ look into Windows gallery builds (Michael)
+ need design for copying styles between templates (Astron/UX)
+ either in that dialog or a new dialog
+ also issue with only editing templates that are in the mgr
+ feedback on stepped-lines dialog (Astron)
+ buy Windows build hardware / hosting (Norbert)
+ [ ongoing problems ]
+ add a suggestion to do a single bug triage
  to the GSOC requirements (Fridrich)
+ find a good public? test / webdav server for QA (Thorsten)

* QA update (Joel)
+ trying to double-up on each of the major components eg.
  the Bugzilla Submission Assistant (BSA)
+ questing for a website person to help-out with that
AI: + working on analysing minor release bugs
+ adding a new tag 'expert_needed' - needs a developer to triage
  them; QA volunteers can't do it themselves: odd setups etc.
+ 147 unconfirmed vs. 4.0, help appreciated with triage
+ bugs not going down or up - hovering around 150
http://tinyurl.com/crxq9od (cf. topic in #libreoffice-qa)
+ https://bugs.freedesktop.org/page.cgi?id=weekly-bug-summary.html
+ more bugs closed than opened ...
+151 -153
+ flip-side of better triage is regression spike
+ want to triage better / get better data / quality
  of regressions
+ bibisect:
+ plenty of bandwidth available to add 'bibsectrequest'
  to keywords for developers
+ pushed another repo - of released / tagged versions,
  most useful for minor releases.
+ seems to be a serious Win32 crasher bug:
+ https://bugs.freedesktop.org/show_bug.cgi?id=63767

* Release Engineering update (Petr)
+ 3.6.7 schedule - deadline is June 24th for rc1
+ 4.0.3 rc2 deadline - April 29th
+ next Monday !
+ 4.1 - feature-freeze: three weeks out: May 20th
+ week on Monday - do an Alpha 0 of 4.1
+ get build / packaging testing / etc.

* Update on calc foo (Markus)
+ discussion to get rid of performance hobbling inherited
  number format issue.
+ still resolved to get rid of it.
+ Markus to work on it in a bit.

* MySQL connector
+ Fernand Vanrie - funding a re-compile for 4.0 and -
  extension site (many thanks)
+ Work In Progress
+ will need another re-compile for 4.1 so we need to
  use the 'maxversion' 4.0.100 eg. dependency for it
+ new-re-compile due to ns datetime change.

* remove lo suffix from non-ure libraries (Bjoern)
+ https://bugs.freedesktop.org/show_bug.cgi?id=63154#c6
+ shortening the names can lead to DLL naming conflicts, hence 'lo'
AI: + back-track and leave the existing macro to avoid issues (Michael)

* UX input (Astron)
+ icon theme faenza issues, 

[Libreoffice-commits] core.git: Branch 'feature/formula-core-rework' - sc/source

2013-05-01 Thread Kohei Yoshida
 sc/source/core/tool/token.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 4d4cb9acda9cc754f0afc5504d29d56c6b24cfab
Author: Kohei Yoshida kohei.yosh...@gmail.com
Date:   Wed May 1 11:13:49 2013 -0400

Add SUMPRODUCT and MINVERSE to the list of vectorizable functions.

Change-Id: I79e19acdcc3c20db2a795961f486415a8069d177

diff --git a/sc/source/core/tool/token.cxx b/sc/source/core/tool/token.cxx
index acadb7f..d17cda9 100644
--- a/sc/source/core/tool/token.cxx
+++ b/sc/source/core/tool/token.cxx
@@ -1267,6 +1267,8 @@ void ScTokenArray::CheckToken( const FormulaToken r )
 case ocMax:
 case ocMaxA:
 case ocSum:
+case ocSumProduct:
+case ocMatInv:
 // Don't change the state.
 break;
 default:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'feature/formula-core-rework' - sc/source

2013-05-01 Thread Kohei Yoshida
 sc/source/core/data/formulacell.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 25ebf6357816bdb7a39fa83f791e9254434fa76d
Author: Kohei Yoshida kohei.yosh...@gmail.com
Date:   Wed May 1 11:43:09 2013 -0400

Don't forget to calculate hash when importing from xls.

Change-Id: I11f3a9096a96fa70f59d7ba4f22fe6daa55991b8

diff --git a/sc/source/core/data/formulacell.cxx 
b/sc/source/core/data/formulacell.cxx
index 80305c2..aa36598 100644
--- a/sc/source/core/data/formulacell.cxx
+++ b/sc/source/core/data/formulacell.cxx
@@ -466,6 +466,8 @@ ScFormulaCell::ScFormulaCell( ScDocument* pDoc, const 
ScAddress rPos,
 
 if (bSubTotal)
 pDocument-AddSubTotalCell(this);
+
+pCode-GenHash();
 }
 
 ScFormulaCell::ScFormulaCell( const ScFormulaCell rCell, ScDocument rDoc, 
const ScAddress rPos, int nCloneFlags ) :
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 3 commits - extras/source sw/uiconfig vcl/source

2013-05-01 Thread Caolán McNamara
 extras/source/glade/libreoffice-catalog.xml.in |6 ++
 sw/uiconfig/swriter/ui/outlinenumberingpage.ui |2 +-
 sw/uiconfig/swriter/ui/outlinepositionpage.ui  |2 +-
 vcl/source/control/morebtn.cxx |1 +
 4 files changed, 9 insertions(+), 2 deletions(-)

New commits:
commit 7d6f4391deb85012c4ede0bb5f35b1d6f347bc0f
Author: Caolán McNamara caol...@redhat.com
Date:   Wed May 1 16:44:00 2013 +0100

Resoves: fdo#31849 ensure more button text remains vertically centered

Is seems very bizarre that in Button::ImplDrawAlignedImage if
there is no image, that we still add padding for the image
separator to the text position. Why we have the concept of an
Image *and* a Symbol escapes me.

Anyway, setting the Image align to the right to match the
Symbol align stops the button text getting displaced downwards.

Change-Id: I67b80b2ff5cc960f5394cb7d69cab7a4c14513bf

diff --git a/vcl/source/control/morebtn.cxx b/vcl/source/control/morebtn.cxx
index 0debd4c..5d61292 100644
--- a/vcl/source/control/morebtn.cxx
+++ b/vcl/source/control/morebtn.cxx
@@ -50,6 +50,7 @@ void MoreButton::ImplInit( Window* pParent, WinBits nStyle )
 ShowState();
 
 SetSymbolAlign(SYMBOLALIGN_RIGHT);
+SetImageAlign(IMAGEALIGN_RIGHT); //Resoves: fdo#31849 ensure button 
remains vertically centered
 SetSmallSymbol(true);
 
 if ( ! ( nStyle  ( WB_RIGHT | WB_LEFT ) ) )
commit 1bdf1122a9860a460ba6275d747d8baeedcfe1d1
Author: Caolán McNamara caol...@redhat.com
Date:   Wed May 1 15:19:03 2013 +0100

put a border around the numbering level listbox

Change-Id: Ie45cc82af0e232b7b523d30552cc14317fc479b5

diff --git a/sw/uiconfig/swriter/ui/outlinenumberingpage.ui 
b/sw/uiconfig/swriter/ui/outlinenumberingpage.ui
index d16f8f7..9447f27 100644
--- a/sw/uiconfig/swriter/ui/outlinenumberingpage.ui
+++ b/sw/uiconfig/swriter/ui/outlinenumberingpage.ui
@@ -32,7 +32,7 @@
 property name=top_padding6/property
 property name=left_padding12/property
 child
-  object class=GtkTreeView id=level
+  object class=GtkTreeView id=level:border
 property name=visibleTrue/property
 property name=can_focusTrue/property
 property name=headers_visibleFalse/property
diff --git a/sw/uiconfig/swriter/ui/outlinepositionpage.ui 
b/sw/uiconfig/swriter/ui/outlinepositionpage.ui
index de97b4b..74e4388 100644
--- a/sw/uiconfig/swriter/ui/outlinepositionpage.ui
+++ b/sw/uiconfig/swriter/ui/outlinepositionpage.ui
@@ -33,7 +33,7 @@
 property name=top_padding6/property
 property name=left_padding12/property
 child
-  object class=GtkTreeView id=levellb
+  object class=GtkTreeView id=levellb:border
 property name=visibleTrue/property
 property name=can_focusTrue/property
 property name=headers_visibleFalse/property
commit b0461fbde8476c879183d9a6600a3d3567888f64
Author: Caolán McNamara caol...@redhat.com
Date:   Wed May 1 15:18:49 2013 +0100

stubs for more custom widgets

Change-Id: I27d96030aed3866c0d384a28598e292cb4ab3a04

diff --git a/extras/source/glade/libreoffice-catalog.xml.in 
b/extras/source/glade/libreoffice-catalog.xml.in
index ca81047..d6980be 100644
--- a/extras/source/glade/libreoffice-catalog.xml.in
+++ b/extras/source/glade/libreoffice-catalog.xml.in
@@ -63,6 +63,9 @@
 glade-widget-class title=Number Preview name=cuilo-SvxNumberPreview
 generic-name=Number Preview Window 
parent=GtkDrawingArea
 icon-name=widget-gtk-drawingarea/
+glade-widget-class title=Writer Number Preview 
name=swuilo-NumberingPreview
+generic-name=Writer Number Preview Window 
parent=GtkDrawingArea
+icon-name=widget-gtk-drawingarea/
 glade-widget-class title=Background Preview 
name=cuilo-BackgroundPreview
 generic-name=Background Preview Window 
parent=GtkDrawingArea
 icon-name=widget-gtk-drawingarea/
@@ -120,6 +123,9 @@
 glade-widget-class title=Text Direction ListBox 
name=svxlo-FrameDirectionListBox
 generic-name=FrameDirectionListBox 
parent=GtkComboBox
 icon-name=widget-gtk-combobox/
+glade-widget-class title=Numbering Type ListBox 
name=swlo-SwNumberingTypeListBox
+generic-name=NumberingTypeListBox 
parent=GtkComboBox
+icon-name=widget-gtk-combobox/
 glade-widget-class title=Gradiant ListBox name=svxlo-GradientLB
 generic-name=GradiantListBox parent=GtkComboBox
 icon-name=widget-gtk-combobox/
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org

[PATCH] change

2013-05-01 Thread Chris Sherlock (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/3725

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/25/3725/1

change

Change-Id: If35aad02bfdca012542d552b7f4ec0f3042e757a
---
M compilerplugins/clang/checkconfigmacros.cxx
M compilerplugins/clang/literalalternative.cxx
M compilerplugins/clang/sallogareas.cxx
3 files changed, 4 insertions(+), 2 deletions(-)



diff --git a/compilerplugins/clang/checkconfigmacros.cxx 
b/compilerplugins/clang/checkconfigmacros.cxx
index 3ffaff8..06ecd81 100644
--- a/compilerplugins/clang/checkconfigmacros.cxx
+++ b/compilerplugins/clang/checkconfigmacros.cxx
@@ -34,7 +34,9 @@
 virtual void run();
 virtual void MacroDefined( const Token macroToken, const MacroInfo* 
info );
 virtual void MacroUndefined( const Token macroToken , const 
MacroInfo* info );
+virtual void Ifdef( const Token /* macroToken */ ) { };
 virtual void Ifdef( SourceLocation location, const Token macroToken );
+virtual void Ifndef( const Token /* macroToken */ ) { };
 virtual void Ifndef( SourceLocation location, const Token macroToken 
);
 virtual void Defined( const Token macroToken );
 private:
diff --git a/compilerplugins/clang/literalalternative.cxx 
b/compilerplugins/clang/literalalternative.cxx
index 06ba803..6586b17 100644
--- a/compilerplugins/clang/literalalternative.cxx
+++ b/compilerplugins/clang/literalalternative.cxx
@@ -70,7 +70,7 @@
 StringLiteral const * lit = dyn_castStringLiteral(arg0);
 bool match = false;
 if (lit != nullptr) {
-match = res == lit-getLength();
+match = res == lit-getByteLength();
 } else {
 UnaryOperator const * op = dyn_castUnaryOperator(arg0);
 if (op != nullptr  op-getOpcode() == UO_AddrOf) {
diff --git a/compilerplugins/clang/sallogareas.cxx 
b/compilerplugins/clang/sallogareas.cxx
index 0724ca7..dbc8828 100644
--- a/compilerplugins/clang/sallogareas.cxx
+++ b/compilerplugins/clang/sallogareas.cxx
@@ -66,7 +66,7 @@
 if( const StringLiteral* area = dyn_cast StringLiteral ( 
call-getArg( 1 )-IgnoreParenImpCasts()))
 {
 if( area-getKind() == StringLiteral::Ascii )
-checkArea( area-getBytes(), area-getExprLoc());
+checkArea( area-getString(), area-getExprLoc());
 else
 report( DiagnosticsEngine::Warning, unsupported 
string literal kind (plugin needs fixing?),
 area-getLocStart());

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: If35aad02bfdca012542d552b7f4ec0f3042e757a
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Chris Sherlock chris.sherloc...@gmail.com

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


[PATCH] Convert from EMFP_DEBUG to SAL_INFO

2013-05-01 Thread Chris Sherlock (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/3726

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/26/3726/1

Convert from EMFP_DEBUG to SAL_INFO

* Change to SAL_INFO instead of EMFP_DEBUG in implrenderer.cxx
* Add new log area cppcanvas.emf
* Update comment in log.hxx to reference the new location of log-areas.dox

Change-Id: I5d710725339f58a111a2f3494c3a72f685624322
---
M cppcanvas/source/mtfrenderer/implrenderer.cxx
M include/sal/log-areas.dox
M include/sal/log.hxx
3 files changed, 8 insertions(+), 13 deletions(-)



diff --git a/cppcanvas/source/mtfrenderer/implrenderer.cxx 
b/cppcanvas/source/mtfrenderer/implrenderer.cxx
index 6d355a8..635a5fb 100644
--- a/cppcanvas/source/mtfrenderer/implrenderer.cxx
+++ b/cppcanvas/source/mtfrenderer/implrenderer.cxx
@@ -81,12 +81,6 @@
 #include outdevstate.hxx
 #include basegfx/matrix/b2dhommatrixtools.hxx
 
-#if OSL_DEBUG_LEVEL  1
-#define EMFP_DEBUG(x) x
-#else
-#define EMFP_DEBUG(x)
-#endif
-
 using namespace ::com::sun::star;
 
 
@@ -1326,7 +1320,7 @@
 // - SetFont to process font metric specific actions
 pCurrAct-Execute( rVDev );
 
-EMFP_DEBUG(printf(MTF\trecord type: 0x%x (%d)\n, 
pCurrAct-GetType(), pCurrAct-GetType()));
+SAL_INFO(cppcanvas.emf, MTF\trecord type: 0x  
pCurrAct-GetType()   (  pCurrAct-GetType()  ));
 
 switch( pCurrAct-GetType() )
 {
@@ -1834,22 +1828,22 @@
 count = 0;
 if (char *env = getenv (EMF_PLUS_LIMIT)) {
 limit = atoi (env);
-EMFP_DEBUG (printf (EMF+ records limit: 
%d\n, limit));
+SAL_INFO (cppcanvas.emf, EMF+ records 
limit:   limit);
 }
 }
-EMFP_DEBUG (printf (EMF+ passed to canvas mtf 
renderer, size: %u\n, (unsigned int)pAct-GetDataSize ()));
+SAL_INFO (cppcanvas.emf, EMF+ passed to canvas 
mtf renderer, size:   pAct-GetDataSize ());
 if (count  limit)
 processEMFPlus( pAct, rFactoryParms, 
rStates.getState(), rCanvas );
 count ++;
 } else if( 
pAct-GetComment().equalsL(RTL_CONSTASCII_STRINGPARAM(EMF_PLUS_HEADER_INFO)) 
) {
-EMFP_DEBUG (printf (EMF+ passed to canvas mtf 
renderer - header info, size: %u\n, (unsigned int)pAct-GetDataSize ()));
+SAL_INFO (cppcanvas.emf, EMF+ passed to canvas 
mtf renderer - header info, size:   pAct-GetDataSize ());
 
 SvMemoryStream rMF ((void*) pAct-GetData (), 
pAct-GetDataSize (), STREAM_READ);
 
 rMF  nFrameLeft  nFrameTop  nFrameRight  
nFrameBottom;
-EMFP_DEBUG (printf (EMF+ picture frame: %d,%d - 
%d,%d\n, (int)nFrameLeft, (int)nFrameTop, (int)nFrameRight, 
(int)nFrameBottom));
+SAL_INFO (cppcanvas.emf, EMF+ picture frame:  
 nFrameLeft  ,  nFrameTop   -   nFrameRight  ,  
nFrameBottom);
 rMF  nPixX  nPixY  nMmX  nMmY;
-EMFP_DEBUG (printf (EMF+ ref device pixel size: 
%dx%d mm size: %dx%d\n, (int)nPixX, (int)nPixY, (int)nMmX, (int)nMmY));
+SAL_INFO (cppcanvas.emf, EMF+ ref device pixel 
size:   nPixX  x  nPixY   mm size:   nMmX  x  nMmY);
 
 rMF  aBaseTransform;
 //aWorldTransform.Set (aBaseTransform);
diff --git a/include/sal/log-areas.dox b/include/sal/log-areas.dox
index 44549e7..5f9039d 100644
--- a/include/sal/log-areas.dox
+++ b/include/sal/log-areas.dox
@@ -330,6 +330,7 @@
 @li @c comphelper
 @li @c configmgr
 @li @c cppcanvas
+@li @c cppcanvas.emf
 @li @c cppuhelper
 @li @c cppu
 @li @c forms
diff --git a/include/sal/log.hxx b/include/sal/log.hxx
index 6eae1b5..80721d0 100644
--- a/include/sal/log.hxx
+++ b/include/sal/log.hxx
@@ -203,7 +203,7 @@
 @endverbatim
 
 For a list of areas used see @ref sal_log_areas SAL debug areas. Whenever
-you use a new log area, add it to the file sal/inc/sal/log-areas.dox .
+you use a new log area, add it to the file include/sal/log-areas.dox .
 
 Whether these macros generate any log output is controlled in a two-stage
 process.

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I5d710725339f58a111a2f3494c3a72f685624322
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Chris Sherlock chris.sherloc...@gmail.com

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org

[ABANDONED] change

2013-05-01 Thread Chris Sherlock (via Code Review)
Chris Sherlock has abandoned this change.

Change subject: change
..


Patch Set 1: Abandoned

Whoops!

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

Gerrit-MessageType: abandon
Gerrit-Change-Id: If35aad02bfdca012542d552b7f4ec0f3042e757a
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Chris Sherlock chris.sherloc...@gmail.com

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


[Libreoffice-commits] core.git: Repository.mk

2013-05-01 Thread David Tardon
 Repository.mk |2 --
 1 file changed, 2 deletions(-)

New commits:
commit d47f3192c47104689e15ebbf26a5aed33de358c8
Author: David Tardon dtar...@redhat.com
Date:   Wed May 1 18:45:15 2013 +0200

raptor and rasqal are external libs

Change-Id: Ib2578b765fb5e8e843d8275e96beaa206814ea82

diff --git a/Repository.mk b/Repository.mk
index 70b7c4c..b221f6d 100644
--- a/Repository.mk
+++ b/Repository.mk
@@ -559,8 +559,6 @@ $(eval $(call gb_Helper_register_libraries,PLAINLIBS_OOO, \
 propertyhdl \
 propertyhdl_x64 \
 qslnkmsi \
-raptor2 \
-rasqal \
 reg4allmsdoc \
 regactivex \
regpatchactivex \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [Libreoffice-qa] [ANNOUNCE] libreoffice-4.0.3.2 tag created

2013-05-01 Thread Bjoern Michaelsen
On Tue, Apr 30, 2013 at 04:25:49PM +0200, Petr Mladek wrote:
 there have been created the tag libreoffice-4.0.3.2, aka rc2. The
 corresponding official builds will be available within next few days.

An Ubuntu build for the current 13.04 raring release just has been copyed to
the PPAs:

 https://launchpad.net/~libreoffice/+archive/ppa
 https://launchpad.net/~libreoffice/+archive/libreoffice-4-0

Best,


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


[Libreoffice-commits] core.git: 3 commits - cppuhelper/source ios/CustomTarget_LibreOffice_app.mk ios/experimental README.cross

2013-05-01 Thread Tor Lillqvist
 README.cross   |   30 ++---
 cppuhelper/source/shlib.cxx|   12 +-
 ios/CustomTarget_LibreOffice_app.mk|4 +--
 ios/experimental/LibreOffice/LibreOffice/lo.mm |8 +++---
 4 files changed, 25 insertions(+), 29 deletions(-)

New commits:
commit 7f7799948e2c29f969413015d6ec45d034c2
Author: Tor Lillqvist t...@iki.fi
Date:   Wed May 1 20:49:24 2013 +0300

Library names have changed thanks to the layer changes

Change-Id: I764702510b612da478959f457f95e6040c22f998

diff --git a/cppuhelper/source/shlib.cxx b/cppuhelper/source/shlib.cxx
index 7b5dcb2..f53a672 100644
--- a/cppuhelper/source/shlib.cxx
+++ b/cppuhelper/source/shlib.cxx
@@ -546,15 +546,15 @@ Reference XInterface  SAL_CALL 
loadSharedLibComponentFactory(
 { libstocservices.uno.a, stocservices_component_getFactory },
 { libucpexpand1.uno.a, ucpexpand1_component_getFactory },
 #else
-{ configmgr.uno.a, configmgr_component_getFactory },
-{ expwrap.uno.a, expwrap_component_getFactory },
-{ fastsax.uno.a, fastsax_component_getFactory },
-{ i18npool.uno.a, i18npool_component_getFactory },
+{ libconfigmgrlo.a, configmgr_component_getFactory },
+{ libexpwraplo.a, expwrap_component_getFactory },
+{ libfastsaxlo.a, fastsax_component_getFactory },
+{ libi18npoollo.a, i18npool_component_getFactory },
 { introspection.uno.a, introspection_component_getFactory },
-{ localebe1.uno.a, localebe1_component_getFactory },
+{ liblocalebe1lo.a, localebe1_component_getFactory },
 { reflection.uno.a, reflection_component_getFactory },
 { stocservices.uno.a, stocservices_component_getFactory },
-{ ucpexpand1.uno.a, ucpexpand1_component_getFactory },
+{ libucpexpand1lo.a, ucpexpand1_component_getFactory },
 #endif
 { libcomphelper.a, comphelp_component_getFactory },
 { libdeployment.a, deployment_component_getFactory },
commit d97cf4f14c0245b01756090c3fded4759aeb7cff
Author: Tor Lillqvist t...@iki.fi
Date:   Wed May 1 20:48:34 2013 +0300

Update names of rdb files and of the fsstorage library

Change-Id: I344d64212aa1d42171f18dae7659ab7f56fecbcb

diff --git a/ios/CustomTarget_LibreOffice_app.mk 
b/ios/CustomTarget_LibreOffice_app.mk
index 21a6fac..9092ed9 100644
--- a/ios/CustomTarget_LibreOffice_app.mk
+++ b/ios/CustomTarget_LibreOffice_app.mk
@@ -53,9 +53,9 @@ $(SCRIPT_OUTPUT_FILE_0) : $(call 
gb_Executable_get_target,LibreOffice)
 #
 # Copy rdb files
 #
-   cp $(OUTDIR)/bin/types.rdb $(appdir)
-   cp $(OUTDIR)/bin/ure/types.rdb $(appdir)/ure
cp $(OUTDIR)/bin/offapi.rdb $(appdir)
+   cp $(OUTDIR)/bin/udkapi.rdb $(appdir)
+   cp $(OUTDIR)/bin/oovbaapi.rdb $(appdir)
cp $(OUTDIR)/xml/services.rdb $(appdir)
cp $(OUTDIR)/xml/ure/services.rdb $(appdir)/ure
 #
diff --git a/ios/experimental/LibreOffice/LibreOffice/lo.mm 
b/ios/experimental/LibreOffice/LibreOffice/lo.mm
index bbd5bce..53c9921 100644
--- a/ios/experimental/LibreOffice/LibreOffice/lo.mm
+++ b/ios/experimental/LibreOffice/LibreOffice/lo.mm
@@ -74,7 +74,7 @@ lo_get_libmap(void)
 { libevtattlo.a, evtatt_component_getFactory },
 { libfileacc.a, fileacc_component_getFactory },
 { libfrmlo.a, frm_component_getFactory },
-{ fsstorage.uno.a, fsstorage_component_getFactory },
+{ libfsstoragelo.a, fsstorage_component_getFactory },
 { libfwklo.a, fwk_component_getFactory },
 { libfwllo.a, fwl_component_getFactory },
 { libfwmlo.a, fwm_component_getFactory },
@@ -133,13 +133,13 @@ lo_initialize(void)
 NSString *uno_types = @-env:UNO_TYPES=;
 
 uno_types = [uno_types stringByAppendingString: @file://];
-uno_types = [uno_types stringByAppendingString: [app_root_escaped 
stringByAppendingPathComponent: @ure/types.rdb]];
+uno_types = [uno_types stringByAppendingString: [app_root_escaped 
stringByAppendingPathComponent: @offapi.rdb]];
 
 uno_types = [uno_types stringByAppendingString: @ file://];
-uno_types = [uno_types stringByAppendingString: [app_root_escaped 
stringByAppendingPathComponent: @types.rdb]];
+uno_types = [uno_types stringByAppendingString: [app_root_escaped 
stringByAppendingPathComponent: @oovbaapi.rdb]];
 
 uno_types = [uno_types stringByAppendingString: @ file://];
-uno_types = [uno_types stringByAppendingString: [app_root_escaped 
stringByAppendingPathComponent: @offapi.rdb]];
+uno_types = [uno_types stringByAppendingString: [app_root_escaped 
stringByAppendingPathComponent: @udkapi.rdb]];
 
 assert(strcmp(argv[2], placeholder-uno-types) == 0);
 argv[2] = [uno_types UTF8String];
commit 5011f4cb8d5851921120766b2a7704dec75f400f
Author: Tor Lillqvist t...@iki.fi
Date:   Wed May 1 20:47:02 2013 +0300

Update to match reality

Change-Id: I37ad1595613f20a8f7c8694b560bb6678c214c62

diff 

[Libreoffice-commits] core.git: filter/Package_xslt.mk

2013-05-01 Thread David Tardon
 filter/Package_xslt.mk |4 
 1 file changed, 4 deletions(-)

New commits:
commit 971092b30c5fbb857329764335b936b2fb49abb8
Author: David Tardon dtar...@redhat.com
Date:   Wed May 1 20:11:33 2013 +0200

drop unintentionally duplicated lines

Change-Id: I0fe3663166bc80c3bc224d276e9da37015a0b75a

diff --git a/filter/Package_xslt.mk b/filter/Package_xslt.mk
index 1d193f7..7a6eff9 100644
--- a/filter/Package_xslt.mk
+++ b/filter/Package_xslt.mk
@@ -67,9 +67,5 @@ $(eval $(call 
gb_Package_add_file,filter_xslt,share/xslt/export/common/table/tab
 $(eval $(call 
gb_Package_add_file,filter_xslt,share/xslt/export/common/table/table_columns.xsl,odf2xhtml/export/common/table/table_columns.xsl))
 $(eval $(call 
gb_Package_add_file,filter_xslt,share/xslt/export/common/table/table_rows.xsl,odf2xhtml/export/common/table/table_rows.xsl))
 $(eval $(call 
gb_Package_add_file,filter_xslt,share/xslt/export/common/table_of_content.xsl,odf2xhtml/export/common/table_of_content.xsl))
-$(eval $(call 
gb_Package_add_file,filter_xslt,share/xslt/export/xhtml/body.xsl,odf2xhtml/export/xhtml/body.xsl))
-$(eval $(call 
gb_Package_add_file,filter_xslt,share/xslt/export/xhtml/header.xsl,odf2xhtml/export/xhtml/header.xsl))
-$(eval $(call 
gb_Package_add_file,filter_xslt,share/xslt/export/xhtml/opendoc2xhtml.xsl,odf2xhtml/export/xhtml/opendoc2xhtml.xsl))
-$(eval $(call 
gb_Package_add_file,filter_xslt,share/xslt/export/xhtml/table.xsl,odf2xhtml/export/xhtml/table.xsl))
 
 # vim: set noet sw=4 ts=4:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: vcl/generic

2013-05-01 Thread Khaled Hosny
 vcl/generic/glyphs/gcach_layout.cxx |   14 +-
 1 file changed, 5 insertions(+), 9 deletions(-)

New commits:
commit 84a8f817e174855ef72f0bafc734847690c5d736
Author: Khaled Hosny khaledho...@eglug.org
Date:   Tue Apr 30 17:16:17 2013 +0200

[harfbuzz] Simplify cluster detection

Change-Id: I48c11fad175fe40f48baaa47238f6087b91e6a37

diff --git a/vcl/generic/glyphs/gcach_layout.cxx 
b/vcl/generic/glyphs/gcach_layout.cxx
index 5fea884..a849d9d 100644
--- a/vcl/generic/glyphs/gcach_layout.cxx
+++ b/vcl/generic/glyphs/gcach_layout.cxx
@@ -474,11 +474,9 @@ bool HbLayoutEngine::layout(ServerFontLayout rLayout, 
ImplLayoutArgs rArgs)
 hb_glyph_info_t *pHbGlyphInfos = hb_buffer_get_glyph_infos(pHbBuffer, 
NULL);
 hb_glyph_position_t *pHbPositions = 
hb_buffer_get_glyph_positions(pHbBuffer, NULL);
 
-int32_t nLastCluster = -1;
 for (int i = 0; i  nRunGlyphCount; ++i) {
 int32_t nGlyphIndex = pHbGlyphInfos[i].codepoint;
-int32_t nCluster = pHbGlyphInfos[i].cluster;
-int32_t nCharPos = nCluster;
+int32_t nCharPos = pHbGlyphInfos[i].cluster;
 
 // if needed request glyph fallback by updating LayoutArgs
 if (!nGlyphIndex)
@@ -500,16 +498,14 @@ bool HbLayoutEngine::layout(ServerFontLayout rLayout, 
ImplLayoutArgs rArgs)
 continue;
 }
 
+bool bInCluster = false;
+if (i  0  pHbGlyphInfos[i].cluster == pHbGlyphInfos[i - 
1].cluster)
+bInCluster = true;
+
 long nGlyphFlags = 0;
 if (bRightToLeft)
 nGlyphFlags |= GlyphItem::IS_RTL_GLYPH;
 
-// what is this for?
-// XXX: rtl clusters
-bool bInCluster = false;
-if (nCluster == nLastCluster)
-bInCluster = true;
-nLastCluster = nCluster;
 if (bInCluster)
 nGlyphFlags |= GlyphItem::IS_IN_CLUSTER;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 3 commits - chart2/CppunitTest_chart2_exporttest.mk chart2/Module_chart2.mk chart2/qa oox/source

2013-05-01 Thread Markus Mohrhard
 chart2/CppunitTest_chart2_exporttest.mk   |  119 ++
 chart2/Module_chart2.mk   |2 
 chart2/qa/extras/chart2export.cxx |   99 ++
 chart2/qa/extras/charttest.hxx|   23 
 chart2/qa/extras/data/ods/error_bar.ods   |binary
 chart2/qa/extras/data/ods/simple_export_chart.ods |binary
 oox/source/export/chartexport.cxx |5 
 7 files changed, 246 insertions(+), 2 deletions(-)

New commits:
commit 3dc2f24a5db4b116802dd70cd2b6765ea9c63b6e
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Wed May 1 20:22:08 2013 +0200

we need to exclude scatter chart for data label export for now

Excel does not like our data label export and removes the charts during
import. I could not figure out what is wrong as the files are valid.

Change-Id: I92458803a48bff1436e7c47ca29d27e487c0642b

diff --git a/oox/source/export/chartexport.cxx 
b/oox/source/export/chartexport.cxx
index 660455d..11a79fc 100644
--- a/oox/source/export/chartexport.cxx
+++ b/oox/source/export/chartexport.cxx
@@ -1527,7 +1527,10 @@ void ChartExport::exportSeries( Reference 
chart2::XChartType  xChartType, sal_
 }
 
 // export data labels
-exportDataLabels( uno::Reference beans::XPropertySet ( 
aSeriesSeq[nSeriesIdx], uno::UNO_QUERY ), nSeriesLength );
+// Excel does not like our current data label export
+// for scatter charts
+if( eChartType != chart::TYPEID_SCATTER )
+exportDataLabels( uno::Reference beans::XPropertySet 
( aSeriesSeq[nSeriesIdx], uno::UNO_QUERY ), nSeriesLength );
 
 // export data points
 exportDataPoints( uno::Reference beans::XPropertySet ( 
aSeriesSeq[nSeriesIdx], uno::UNO_QUERY ), nSeriesLength );
commit 6ed88e6d4d61394aed2acd45777f8f037da53d58
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Wed May 1 20:18:58 2013 +0200

add test for ooxml error bar export

Change-Id: I87f99c8d47770181c3f29c70f1f91a1f3dd421b5

diff --git a/chart2/qa/extras/chart2export.cxx 
b/chart2/qa/extras/chart2export.cxx
index d17416f..ca7105c 100644
--- a/chart2/qa/extras/chart2export.cxx
+++ b/chart2/qa/extras/chart2export.cxx
@@ -9,13 +9,20 @@
 
 #include charttest.hxx
 
+#include com/sun/star/chart/ErrorBarStyle.hpp
+
+using uno::Reference;
+using beans::XPropertySet;
+
 class Chart2ExportTest : public ChartTest
 {
 public:
 void test();
+void testErrorBarXLSX();
 
 CPPUNIT_TEST_SUITE(Chart2ExportTest);
 CPPUNIT_TEST(test);
+CPPUNIT_TEST(testErrorBarXLSX);
 CPPUNIT_TEST_SUITE_END();
 
 private:
@@ -27,6 +34,64 @@ void Chart2ExportTest::test()
 reload(Calc Office Open XML);
 }
 
+namespace {
+
+void testErrorBar( Reference XPropertySet  xErrorBar )
+{
+sal_Int32 nErrorBarStyle;
+xErrorBar-getPropertyValue(ErrorBarStyle) = nErrorBarStyle;
+CPPUNIT_ASSERT_EQUAL(nErrorBarStyle, chart::ErrorBarStyle::RELATIVE);
+bool bShowPositive, bShowNegative;
+xErrorBar-getPropertyValue(ShowPositiveError) = bShowPositive;
+CPPUNIT_ASSERT(bShowPositive);
+xErrorBar-getPropertyValue(ShowNegativeError) = bShowNegative;
+CPPUNIT_ASSERT(bShowNegative);
+double nVal;
+xErrorBar-getPropertyValue(PositiveError) = nVal;
+CPPUNIT_ASSERT_DOUBLES_EQUAL(nVal, 10.0, 1e-10);
+}
+
+}
+
+// improve the test
+void Chart2ExportTest::testErrorBarXLSX()
+{
+load(/chart2/qa/extras/data/ods/, error_bar.ods);
+{
+// make sure the ODS import was successful
+uno::Reference chart2::XChartDocument  xChartDoc = 
getChartDocFromSheet( 0, mxComponent );
+CPPUNIT_ASSERT(xChartDoc.is());
+
+Reference chart2::XDataSeries  xDataSeries = getDataSeriesFromDoc( 
xChartDoc, 0 );
+CPPUNIT_ASSERT( xDataSeries.is() );
+
+Reference beans::XPropertySet  xPropSet( xDataSeries, 
UNO_QUERY_THROW );
+CPPUNIT_ASSERT( xPropSet.is() );
+
+// test that y error bars are there
+Reference beans::XPropertySet  xErrorBarYProps;
+xPropSet-getPropertyValue(ErrorBarY) = xErrorBarYProps;
+testErrorBar(xErrorBarYProps);
+}
+
+reload(Calc Office Open XML);
+{
+uno::Reference chart2::XChartDocument  xChartDoc = 
getChartDocFromSheet( 0, mxComponent );
+CPPUNIT_ASSERT(xChartDoc.is());
+
+Reference chart2::XDataSeries  xDataSeries = getDataSeriesFromDoc( 
xChartDoc, 0 );
+CPPUNIT_ASSERT( xDataSeries.is() );
+
+Reference beans::XPropertySet  xPropSet( xDataSeries, 
UNO_QUERY_THROW );
+CPPUNIT_ASSERT( xPropSet.is() );
+
+// test that y error bars are there
+Reference beans::XPropertySet  xErrorBarYProps;
+xPropSet-getPropertyValue(ErrorBarY) = xErrorBarYProps;
+testErrorBar(xErrorBarYProps);
+}
+}
+
 

Patch for libmspub

2013-05-01 Thread Franz Schmid
Hi,

this patch adds support for the drop caps letters setting.
+ it fixes the column-count and column-gap reading.

Greetings,
Franz Schmid
From 36f37dfd42b7ca2778a6c91135804135cd7d6f38 Mon Sep 17 00:00:00 2001
From: Franz Schmid fr...@linux-hp-i7.site
Date: Wed, 1 May 2013 20:35:07 +0200
Subject: [PATCH] Added support for DropCaps letter setting and fixed column and
 column-gap output.

---
 src/lib/MSPUBBlockID.h |2 ++
 src/lib/MSPUBCollector.cpp |   18 ++
 src/lib/MSPUBParser.cpp|   27 +++
 src/lib/MSPUBTypes.h   |3 ++-
 4 files changed, 37 insertions(+), 13 deletions(-)

diff --git a/src/lib/MSPUBBlockID.h b/src/lib/MSPUBBlockID.h
index a44c5a8..4cd7c2b 100644
--- a/src/lib/MSPUBBlockID.h
+++ b/src/lib/MSPUBBlockID.h
@@ -69,6 +69,8 @@ enum MSPUBBlockID // Don't be alarmed by multiple elements with the same value;
   PARAGRAPH_LEFT_INDENT = 0xD,
   PARAGRAPH_RIGHT_INDENT = 0xE,
   PARAGRAPH_DROP_CAP_LINES = 0x8,
+  PARAGRAPH_DROP_CAP_UP = 0x2C,
+  PARAGRAPH_DROP_CAP_LETTERS = 0x2D,
   THIS_MASTER_NAME = 0xE,
   APPLIED_MASTER_NAME = 0xD,
   BA_ARRAY = 0x02,
diff --git a/src/lib/MSPUBCollector.cpp b/src/lib/MSPUBCollector.cpp
index f16ae79..a23c713 100644
--- a/src/lib/MSPUBCollector.cpp
+++ b/src/lib/MSPUBCollector.cpp
@@ -809,6 +809,18 @@ boost::functionvoid(void) libmspub::MSPUBCollector::paintShape(const ShapeInfo
 break;
   }
 }
+if (info.m_numColumns)
+{
+  unsigned ncols = info.m_numColumns.get_value_or(0);
+  if (ncols  0)
+props.insert(fo:column-count, (int)ncols);
+}
+if (info.m_columnSpacing)
+{
+  unsigned ngap = info.m_columnSpacing;
+  if (ngap  0)
+props.insert(fo:column-gap, (double)ngap / EMUS_IN_INCH);
+}
 m_painter-startTextObject(props, WPXPropertyListVector());
 for (unsigned i_lines = 0; i_lines  text.size(); ++i_lines)
 {
@@ -1199,6 +1211,12 @@ WPXPropertyList libmspub::MSPUBCollector::getParaStyleProps(const ParagraphStyle
   {
 ret.insert(style:drop-cap, (int)dropCapLines);
   }
+  unsigned dropCapLetters = style.m_dropCapLetters.get_value_or(
+  defaultStyle.m_dropCapLetters.get_value_or(0));
+  if (dropCapLetters != 0)
+  {
+ret.insert(style:length, (int)dropCapLetters);
+  }
   return ret;
 }
 
diff --git a/src/lib/MSPUBParser.cpp b/src/lib/MSPUBParser.cpp
index 418ea1b..993b706 100644
--- a/src/lib/MSPUBParser.cpp
+++ b/src/lib/MSPUBParser.cpp
@@ -1263,6 +1263,9 @@ libmspub::ParagraphStyle libmspub::MSPUBParser::getParagraphStyle(WPXInputStream
 case PARAGRAPH_DROP_CAP_LINES:
   ret.m_dropCapLines = info.data;
   break;
+case PARAGRAPH_DROP_CAP_LETTERS:
+  ret.m_dropCapLetters = info.data;
+  break;
 default:
   break;
 }
@@ -1686,17 +1689,19 @@ void libmspub::MSPUBParser::parseEscherShape(WPXInputStream *input, const Escher
 dotStyle));
   }
 
-  unsigned *ptr_numColumns = getIfExists(foptValues.m_scalarValues,
- FIELDID_NUM_COLUMNS);
-  if (ptr_numColumns)
-  {
-m_collector-setShapeNumColumns(*shapeSeqNum, *ptr_numColumns);
-  }
-  unsigned *ptr_columnSpacing = getIfExists(foptValues.m_scalarValues,
-FIELDID_COLUMN_SPACING);
-  if (ptr_columnSpacing)
+  if (!!maybe_tertiaryFoptValues)
   {
-m_collector-setShapeColumnSpacing(*shapeSeqNum, *ptr_columnSpacing);
+std::mapunsigned short, unsigned tertiaryFoptValues = maybe_tertiaryFoptValues.get();
+unsigned *ptr_numColumns = getIfExists(tertiaryFoptValues, FIELDID_NUM_COLUMNS);
+if (ptr_numColumns)
+{
+  m_collector-setShapeNumColumns(*shapeSeqNum, *ptr_numColumns);
+}
+unsigned *ptr_columnSpacing = getIfExists(tertiaryFoptValues, FIELDID_COLUMN_SPACING);
+if (ptr_columnSpacing)
+{
+  m_collector-setShapeColumnSpacing(*shapeSeqNum, *ptr_columnSpacing);
+}
   }
   unsigned *ptr_beginArrowStyle = getIfExists(foptValues.m_scalarValues,
   FIELDID_BEGIN_ARROW_STYLE);
@@ -1774,7 +1779,6 @@ void libmspub::MSPUBParser::parseEscherShape(WPXInputStream *input, const Escher
   {
 std::vectorlibmspub::Vertex ret = parseVertices(wrapVertexData);
 m_collector-setShapeClipPath(*shapeSeqNum, ret);
-MSPUB_DEBUG_MSG((Current Escher shape has wrap Path\n));
   }
 }
 if (foundAnchor)
@@ -2171,7 +2175,6 @@ libmspub::FOPTValues libmspub::MSPUBParser::extractFOPTValues(WPXInputStream *in
 unsigned short id = readU16(input);
 unsigned value  = readU32(input);
 ret.m_scalarValues[id] = value;
-MSPUB_DEBUG_MSG((EscherFopt ID %u  Value %u\n, id, 

Killing the gerrit to dev-list spam ...

2013-05-01 Thread Bjoern Michaelsen
Hi,

Looking at:

 http://nabble.documentfoundation.org/Dev-f1639786.html

depending on time of day you find 50-90% patch mails on there. As the writer of
mail forward I have been repeatedly asked if we can kill this spam.

I fully agree with this sentiment -- the dev-list should be taylored to be
inviting to a wide audience of volunteer contributors and not only to those
hardcore contributors who are full-time sponsored developers. I dont think the
ESC is the right place to decide this as it is overwhelmingly filled with the
second.

So, is there anyone who is _not_ a sponsored developer opposing to kill the mail
spammage? If so:

- could this be mitigated by a separate gerrit-patches mailing list?
- could this be mitigated by a daily digest of gerrit news?
- could this be mitigated by other means?

I think the drowning of the list with automated patch mail is really hurting us 
(as
did the patch mails before). Note that this does:
- not mean we should weaken the requirements for the list to be clearly about
  development and related to code only
- not mean that it is evil to send a patch to the list (although its a bit
  misguided given how gerrit simplifies and enables things ;) )

I was forced to do the mail forward thingie to accomodate migration of
antiquiated workflows -- I was never very happy with it and really embarrased
to defend it when I would have never done it like that myself.

Opinions?

Best,

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


Re: Killing the gerrit to dev-list spam ...

2013-05-01 Thread Mat M

Hello,

Le Wed, 01 May 2013 21:33:49 +0200, Bjoern Michaelsen  
bjoern.michael...@canonical.com a écrit:



Hi,

Looking at:

 http://nabble.documentfoundation.org/Dev-f1639786.html

depending on time of day you find 50-90% patch mails on there. As the  
writer of

mail forward I have been repeatedly asked if we can kill this spam.

I fully agree with this sentiment -- the dev-list should be taylored to  
be
inviting to a wide audience of volunteer contributors and not only to  
those
hardcore contributors who are full-time sponsored developers. I dont  
think the
ESC is the right place to decide this as it is overwhelmingly filled  
with the

second.

So, is there anyone who is _not_ a sponsored developer opposing to kill  
the mail

spammage? If so:


As a non-sponsored(!) developer (?), I am not opposed to kill the gerrit  
mail flow.




- could this be mitigated by a separate gerrit-patches mailing list?
- could this be mitigated by a daily digest of gerrit news?
- could this be mitigated by other means?


Yes, IMO, the goal is to have an overview of what was commited, so a daily  
digest of *pushed* patches should be enough.
Although this kind of thing will narrow the reviewers list to commiters   
aked-for-review, which is almost the ESC  sponsored developers list.
So after small thinking, a daily digest with 2 parts: pushed patches and  
yet-to-review patches, trying to increase peer reviewing by other devs.




I think the drowning of the list with automated patch mail is really  
hurting us (as

did the patch mails before). Note that this does:

[SNIP]
+1, note included :)



I was forced to do the mail forward thingie to accomodate migration of
antiquiated workflows -- I was never very happy with it and really  
embarrased

to defend it when I would have never done it like that myself.

Opinions?

Done


Best,

Not sur these are the best opnions, but, well, YMMV ;-)

Regards


Bjoern


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


Re: Killing the gerrit to dev-list spam ...

2013-05-01 Thread Regina Henschel

Hi Björn,

Bjoern Michaelsen schrieb:

Hi,

Looking at:

  http://nabble.documentfoundation.org/Dev-f1639786.html

depending on time of day you find 50-90% patch mails on there. As the writer of
mail forward I have been repeatedly asked if we can kill this spam.

I fully agree with this sentiment -- the dev-list should be taylored to be
inviting to a wide audience of volunteer contributors and not only to those
hardcore contributors who are full-time sponsored developers. I dont think the
ESC is the right place to decide this as it is overwhelmingly filled with the
second.

So, is there anyone who is _not_ a sponsored developer opposing to kill the mail
spammage? If so:

- could this be mitigated by a separate gerrit-patches mailing list?
- could this be mitigated by a daily digest of gerrit news?
- could this be mitigated by other means?


I have some areas of interest, where I want to be informed about ongoing 
development. (And sometimes I'm able to point to problems.)  A separate 
mailing list would be fine me.


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


[PATCH] fix python unit test invocation for MSVC

2013-05-01 Thread David Ostrovsky (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/3728

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/28/3728/1

fix python unit test invocation for MSVC

Change-Id: Ib6836e7609e0c268f91b04a8ca8618a15dfdae82
---
M solenv/gbuild/platform/com_MSC_class.mk
M sw/Module_sw.mk
2 files changed, 4 insertions(+), 8 deletions(-)



diff --git a/solenv/gbuild/platform/com_MSC_class.mk 
b/solenv/gbuild/platform/com_MSC_class.mk
old mode 100644
new mode 100755
index 83d5d45..a9a2e81
--- a/solenv/gbuild/platform/com_MSC_class.mk
+++ b/solenv/gbuild/platform/com_MSC_class.mk
@@ -453,11 +453,6 @@
 
 endef
 
-# PythonTest class
-
-#TODO:
-gb_PythonTest_PRECOMMAND :=
-
 # SrsPartTarget class
 
 ifeq ($(gb_FULLDEPS),$(true))
@@ -598,6 +593,9 @@
 
 # Python
 gb_Python_PRECOMMAND := PATH=$(shell cygpath -w $(INSTDIR)/program);$(shell 
cygpath -w $(OUTDIR)/bin) 
PYTHONHOME=$(INSTDIR)/program/python-core-$(PYTHON_VERSION) 
PYTHONPATH=$(INSTDIR)/program/python-core-$(PYTHON_VERSION)/lib;$(INSTDIR)/program/python-core-$(PYTHON_VERSION)/lib/lib-dynload:$(INSTDIR)/program
-gb_Python_INSTALLED_EXECUTABLE := $(gb_DEVINSTALLROOT)/program/python.exe
+
+gb_Python_INSTALLED_EXECUTABLE := 
$(INSTDIR)/program/python-core-$(PYTHON_VERSION)/bin/python.exe
+
+gb_PythonTest_PRECOMMAND := $(gb_Python_PRECOMMAND)
 
 # vim: set noet sw=4:
diff --git a/sw/Module_sw.mk b/sw/Module_sw.mk
index 202c67c..7048d8e 100644
--- a/sw/Module_sw.mk
+++ b/sw/Module_sw.mk
@@ -72,11 +72,9 @@
 endif
 
 ifneq ($(DISABLE_PYTHON),TRUE)
-ifneq ($(OS),WNT)
 $(eval $(call gb_Module_add_subsequentcheck_targets,sw,\
PythonTest_sw_python \
 ))
-endif
 endif
 
 # vim: set noet sw=4 ts=4:

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib6836e7609e0c268f91b04a8ca8618a15dfdae82
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: David Ostrovsky david.ostrov...@gmx.de

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


Re: fdo#55814: unit test is missing

2013-05-01 Thread David Ostrovsky

On 30.04.2013 23:46, Stephan Bergmann wrote:

On 04/29/2013 11:42 PM, David Ostrovsky wrote:

cli_ure is failing to compile here atm.


How's it failing for you exactly?  I'd hope it does work now, across 
various Windows build configurations.


yes, after you've fixed it ;-) so, with this patch 
https://gerrit.libreoffice.org/#/c/3728/1
unit tests are invoked now on windows, but python is failing to locate 
the tests:


ImportError: No module named 'get_expression'

that's because the PYTHONPATH was not extended:

PYTHONPATH=$S/instdir/wntmsci13.pro/program/python-core-3.3.0/lib;$S/instdir/wntmsci13.pro/program/python-core-3.3.0/lib/lib-dynload:$S/instdir/wntmsci13.pro/program

as expected with this function (PythonTest.mk):

# gb_PythonTest_add_modules directory module(s)
define gb_PythonTest_add_modules
$(call gb_PythonTest_get_target,$(1)) : PYPATH := $$(PYPATH):$(2)
[...]

And i don't see why ;-(

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


[PATCH] fdo#60265 Really fixes Basic problem

2013-05-01 Thread Julien Nabet (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/3729

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/29/3729/1

fdo#60265 Really fixes Basic problem

GetFilterName function in FilesModul.xba needs the extension be repeated too
sLocExtensionList() = ArrayoutofString(sFilterName(i,2), quot;|quot;, 
MaxIndex)

Change-Id: I2fecd5352345e6b7541d0a961012c7e91046fb0d
---
M wizards/source/importwizard/DialogModul.xba
1 file changed, 8 insertions(+), 8 deletions(-)



diff --git a/wizards/source/importwizard/DialogModul.xba 
b/wizards/source/importwizard/DialogModul.xba
index 92ca877..c1ec665 100644
--- a/wizards/source/importwizard/DialogModul.xba
+++ b/wizards/source/importwizard/DialogModul.xba
@@ -333,38 +333,38 @@
 apos; See definition of Filtername-Array about meaning of fields
MSFilterName(0,0) = quot;doc|docx|docmquot;
MSFilterName(0,1) = quot;writer8|writer8|writer8quot;
-   MSFilterName(0,2) = quot;odtquot;
+   MSFilterName(0,2) = quot;odt|odt|odtquot;
MSFilterName(0,3) = sMSDocumentCheckBox(0)
MSFilterName(0,4) = quot;Wordquot;

 
MSFilterName(1,0) = quot;xls|xlsx|xlsmquot;
MSFilterName(1,1) = quot;calc8|calc8|calc8quot;
-   MSFilterName(1,2) = quot;odsquot;
+   MSFilterName(1,2) = quot;ods|ods|odsquot;
MSFilterName(1,3) = sMSDocumentCheckBox(1)
MSFilterName(1,4) = quot;Excelquot;
 
-   MSFilterName(2,0) = quot;ppt|pptm|pptxquot;
-   MSFilterName(2,1) = quot;impress8|impress8|impress8quot;
-   MSFilterName(2,2) = quot;odpquot;
+   MSFilterName(2,0) = quot;ppt|pps|pptx|pptm|ppsx|ppsmquot;
+   MSFilterName(2,1) = 
quot;impress8|impress8|impress8|impress8|impress8|impress8quot;
+   MSFilterName(2,2) = quot;odp|odp|odp|odp|odp|odpquot;
MSFilterName(2,3) = sMSDocumentCheckBox(2)
MSFilterName(2,4) = quot;PowerPointquot;
 
MSFilterName(3,0) = quot;dot|dotx|dotmquot;
MSFilterName(3,1) = 
quot;writer8_template|writer8_template|writer8_templatequot;
-   MSFilterName(3,2) = quot;ottquot;
+   MSFilterName(3,2) = quot;ott|ott|ottquot;
MSFilterName(3,3) = sMSTemplateCheckBox(0)
MSFilterName(3,4) = quot;Wordquot;

MSFilterName(4,0) = quot;xlt|xltx|xltmquot;
MSFilterName(4,1) = 
quot;calc8_template|calc8_template|calc8_templatequot;
-   MSFilterName(4,2) = quot;otsquot;
+   MSFilterName(4,2) = quot;ots|ots|otsquot;
MSFilterName(4,3) = sMSTemplateCheckBox(1)
MSFilterName(4,4) = quot;Excelquot;   
 
MSFilterName(5,0) = quot;pot|potx|potmquot;
MSFilterName(5,1) = 
quot;impress8_template|impress8_template|impress8_templatequot;
-   MSFilterName(5,2) = quot;otpquot;
+   MSFilterName(5,2) = quot;otp|otp|otp|otpquot;
MSFilterName(5,3) = sMSTemplateCheckBox(2)
MSFilterName(5,4) = quot;PowerPointquot;  
 End Sub

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I2fecd5352345e6b7541d0a961012c7e91046fb0d
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Julien Nabet serval2...@yahoo.fr

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


[Libreoffice-commits] libmspub.git: 2 commits - configure.ac src/lib

2013-05-01 Thread Fridrich Štrba
 configure.ac   |   11 ---
 src/lib/ListInfo.h |1 -
 src/lib/MSPUBBlockID.h |2 ++
 src/lib/MSPUBCollector.cpp |   18 ++
 src/lib/MSPUBCollector.h   |1 -
 src/lib/MSPUBParser.cpp|   28 +++-
 src/lib/MSPUBTypes.h   |3 ++-
 src/lib/libmspub_utils.h   |1 -
 8 files changed, 45 insertions(+), 20 deletions(-)

New commits:
commit ad0f36d02bf8bc1cfabb4d615bb27f216ef81cec
Author: Fridrich Å trba fridrich.st...@bluewin.ch
Date:   Wed May 1 23:40:46 2013 +0200

Some boost header sanitizing

diff --git a/configure.ac b/configure.ac
index 394e89a..6d8bf60 100644
--- a/configure.ac
+++ b/configure.ac
@@ -66,10 +66,15 @@ AC_SUBST(ZLIB_LIBS)
 # ===
 # Find required boost headers
 # ===
-AC_CHECK_HEADER(
-   boost/ptr_container/ptr_map.hpp,
+AC_CHECK_HEADERS(
+   boost/bind.hpp \
+   boost/function.hpp \
+   boost/optional.hpp \
+   boost/ptr_container/ptr_vector.hpp \
+   boost/scoped_ptr.hpp \
+   boost/shared_ptr.hpp,
[],
-   [AC_MSG_ERROR(boost/ptr_container/ptr_map.hpp not found. install 
boost)],
+   [AC_MSG_ERROR(Required boost headers not found. Install boost)],
[]
 )
 
diff --git a/src/lib/ListInfo.h b/src/lib/ListInfo.h
index b6691c9..93b56d2 100644
--- a/src/lib/ListInfo.h
+++ b/src/lib/ListInfo.h
@@ -30,7 +30,6 @@
 #define __LISTINFO_H__
 
 #include boost/optional.hpp
-#include boost/cstdint.hpp
 
 #include NumberingType.h
 #include NumberingDelimiter.h
diff --git a/src/lib/MSPUBCollector.h b/src/lib/MSPUBCollector.h
index 5755043..fd8fd3e 100644
--- a/src/lib/MSPUBCollector.h
+++ b/src/lib/MSPUBCollector.h
@@ -37,7 +37,6 @@
 #include string
 #include algorithm
 
-#include boost/ptr_container/ptr_map.hpp
 #include boost/ptr_container/ptr_vector.hpp
 #include boost/bind.hpp
 #include boost/function.hpp
diff --git a/src/lib/MSPUBParser.cpp b/src/lib/MSPUBParser.cpp
index 993b706..9b150a7 100644
--- a/src/lib/MSPUBParser.cpp
+++ b/src/lib/MSPUBParser.cpp
@@ -32,7 +32,6 @@
 #include algorithm
 #include string.h
 #include libwpd-stream/libwpd-stream.h
-#include boost/cstdint.hpp
 #include zlib.h
 #include MSPUBParser.h
 #include MSPUBCollector.h
diff --git a/src/lib/libmspub_utils.h b/src/lib/libmspub_utils.h
index c1ff6f8..c0ba308 100644
--- a/src/lib/libmspub_utils.h
+++ b/src/lib/libmspub_utils.h
@@ -33,7 +33,6 @@
 #include stdio.h
 #include vector
 #include map
-#include boost/ptr_container/ptr_map.hpp
 #include libwpd/libwpd.h
 #include libwpd-stream/libwpd-stream.h
 
commit 546bf85c66d90e14beec96d51018fdc38b0d95c2
Author: Franz Schmid fr...@linux-hp-i7.site
Date:   Wed May 1 20:35:07 2013 +0200

Added support for DropCaps letter setting and fixed column and column-gap 
output.

diff --git a/src/lib/MSPUBBlockID.h b/src/lib/MSPUBBlockID.h
index a44c5a8..4cd7c2b 100644
--- a/src/lib/MSPUBBlockID.h
+++ b/src/lib/MSPUBBlockID.h
@@ -69,6 +69,8 @@ enum MSPUBBlockID // Don't be alarmed by multiple elements 
with the same value;
   PARAGRAPH_LEFT_INDENT = 0xD,
   PARAGRAPH_RIGHT_INDENT = 0xE,
   PARAGRAPH_DROP_CAP_LINES = 0x8,
+  PARAGRAPH_DROP_CAP_UP = 0x2C,
+  PARAGRAPH_DROP_CAP_LETTERS = 0x2D,
   THIS_MASTER_NAME = 0xE,
   APPLIED_MASTER_NAME = 0xD,
   BA_ARRAY = 0x02,
diff --git a/src/lib/MSPUBCollector.cpp b/src/lib/MSPUBCollector.cpp
index f16ae79..a23c713 100644
--- a/src/lib/MSPUBCollector.cpp
+++ b/src/lib/MSPUBCollector.cpp
@@ -809,6 +809,18 @@ boost::functionvoid(void) 
libmspub::MSPUBCollector::paintShape(const ShapeInfo
 break;
   }
 }
+if (info.m_numColumns)
+{
+  unsigned ncols = info.m_numColumns.get_value_or(0);
+  if (ncols  0)
+props.insert(fo:column-count, (int)ncols);
+}
+if (info.m_columnSpacing)
+{
+  unsigned ngap = info.m_columnSpacing;
+  if (ngap  0)
+props.insert(fo:column-gap, (double)ngap / EMUS_IN_INCH);
+}
 m_painter-startTextObject(props, WPXPropertyListVector());
 for (unsigned i_lines = 0; i_lines  text.size(); ++i_lines)
 {
@@ -1199,6 +1211,12 @@ WPXPropertyList 
libmspub::MSPUBCollector::getParaStyleProps(const ParagraphStyle
   {
 ret.insert(style:drop-cap, (int)dropCapLines);
   }
+  unsigned dropCapLetters = style.m_dropCapLetters.get_value_or(
+  defaultStyle.m_dropCapLetters.get_value_or(0));
+  if (dropCapLetters != 0)
+  {
+ret.insert(style:length, (int)dropCapLetters);
+  }
   return ret;
 }
 
diff --git a/src/lib/MSPUBParser.cpp b/src/lib/MSPUBParser.cpp
index 418ea1b..993b706 100644
--- a/src/lib/MSPUBParser.cpp
+++ b/src/lib/MSPUBParser.cpp
@@ -1263,6 +1263,9 @@ libmspub::ParagraphStyle 
libmspub::MSPUBParser::getParagraphStyle(WPXInputStream
 case PARAGRAPH_DROP_CAP_LINES:
   ret.m_dropCapLines = info.data;
   break;
+case PARAGRAPH_DROP_CAP_LETTERS:
+  ret.m_dropCapLetters = info.data;
+  break;
 default:
   

some file format spec problems with the OOXML chart import/export

2013-05-01 Thread Markus Mohrhard
Hey,

so I have been fixing some chart OOXML issues recently and there are
some general problems.

There are a number of comments like (from typegroupcontext.cxx:147)
// default is 'false', not 'true' as specified
but testing this in Excel showed that Excel respects the standard in
contrast to our import and export. Does anyone know why these comments
have been introduced or does anyone have a reason why we should not
fix this stuff? I already fixed a few of these problems that made my
simple test document look awful when being imported into Excel.

If there is nobody opposing it I will slowly fix these issues in the
chart import/export where I see them. Sadly there is no way to
automatically test these things as they are wrong in the import and
the export filter. The only way is to check the OOXML standard and
check how our exported documents look in MSO.

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


[LibreOffice-QA] Conference Call 2013-05-03 - Agenda Minutes

2013-05-01 Thread Joel Madero
Regularly schedule meeting:

Date: May 03, 2013
Time: 1300 UTC

Duration ~ 1 hour - let's try to stick to this - we may go a little over
but hopefully not an extra hour like last time :)

Agenda  Minutes (after call) available here:
https://wiki.documentfoundation.org/QA/Meetings/2013/May_3



Warm Regards,
Joel


-- 
*Joel Madero*
LibreOffice QA Volunteer
jmadero@gmail.com
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Killing the gerrit to dev-list spam ...

2013-05-01 Thread Robinson Tryon
On Wed, May 1, 2013 at 3:33 PM, Bjoern Michaelsen
bjoern.michael...@canonical.com wrote:
 depending on time of day you find 50-90% patch mails on [the dev list]
 As the writer of
 mail forward I have been repeatedly asked if we can kill this spam.

 I fully agree with this sentiment -- the dev-list should be taylored to be
 inviting to a wide audience of volunteer contributors and not only to those
 hardcore contributors who are full-time sponsored developers.
 ...
 So, is there anyone who is _not_ a sponsored developer opposing to kill the 
 mail
 spammage? If so:

+1

Speaking as a non-core dev, I would very much appreciate this change.
I try to keep track of what's happening on the dev list, and mail from
gerrit drowns out the rest of the messages. Splitting the mail from
gerrit off into a separate list sounds like a reasonable solution.

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


[Libreoffice-commits] core.git: Branch 'libreoffice-4-0' - oox/source

2013-05-01 Thread Markus Mohrhard
 oox/source/export/chartexport.cxx |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit 8b100b0eecdb7a28c9da6f452a65967071b68f87
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Mon Apr 29 00:12:07 2013 +0200

change order to allow validation of chart part

My simple test file is finally valid but is still now shown in Excel.
There must be another bug in our exporter.

Change-Id: Ib55e5b32edc3a556e9081b3008df539275dc289b
(cherry picked from commit e81d0c400c02a87d7fa492dbc5ac9f7921167920)
Reviewed-on: https://gerrit.libreoffice.org/3657
Reviewed-by: Kohei Yoshida kohei.yosh...@suse.de
Tested-by: Kohei Yoshida kohei.yosh...@suse.de

diff --git a/oox/source/export/chartexport.cxx 
b/oox/source/export/chartexport.cxx
index 37abe5d..5211a76 100644
--- a/oox/source/export/chartexport.cxx
+++ b/oox/source/export/chartexport.cxx
@@ -2187,6 +2187,9 @@ void ChartExport::_exportAxis(
 XML_val, sTickLblPos,
 FSEND );
 
+// shape properties
+exportShapeProps( xAxisProp );
+
 pFS-singleElement( FSNS( XML_c, XML_crossAx ),
 XML_val, I32S( aAxisIdPair.nCrossAx ),
 FSEND );
@@ -2281,8 +2284,6 @@ void ChartExport::_exportAxis(
 FSEND );
 }
 
-// shape properties
-exportShapeProps( xAxisProp );
 // TODO: text properties
 
 pFS-endElement( FSNS( XML_c, nAxisType ) );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-0' - oox/source

2013-05-01 Thread Markus Mohrhard
 oox/source/export/chartexport.cxx |8 ++--
 1 file changed, 2 insertions(+), 6 deletions(-)

New commits:
commit 4f6efe9cb4d0d91a0ea94a86b7a068000dceb602
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Mon Apr 29 16:12:33 2013 +0200

c:delete is true by default in Excel

One step closer to opening my simple test file correctly in Excel.

Change-Id: I1bfa76a46081ba478e44d8d90d8a91790a9a9ff3
(cherry picked from commit 6ddd7fccdc8fc292200e581dbc4e456ec86cef47)
Reviewed-on: https://gerrit.libreoffice.org/3685
Reviewed-by: Kohei Yoshida kohei.yosh...@suse.de
Tested-by: Kohei Yoshida kohei.yosh...@suse.de

diff --git a/oox/source/export/chartexport.cxx 
b/oox/source/export/chartexport.cxx
index 5211a76..5d11695 100644
--- a/oox/source/export/chartexport.cxx
+++ b/oox/source/export/chartexport.cxx
@@ -2084,13 +2084,9 @@ void ChartExport::_exportAxis(
 OUString (Visible)) =  bVisible;
 }
 
-if( !bVisible )
-{
-// other value?
-pFS-singleElement( FSNS( XML_c, XML_delete ),
-XML_val, 1,
+pFS-singleElement( FSNS( XML_c, XML_delete ),
+XML_val, bVisible ? 0 : 1,
 FSEND );
-}
 
 // FIXME: axPos, need to check the property ReverseDirection
 pFS-singleElement( FSNS( XML_c, XML_axPos ),
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-0' - oox/source

2013-05-01 Thread Markus Mohrhard
 oox/source/export/chartexport.cxx |4 
 1 file changed, 4 insertions(+)

New commits:
commit b2ca1489d885cbd99362878d2fc0b78cc90b435a
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Mon Apr 29 16:33:24 2013 +0200

c:varyColor is true by default in Excel

And another step closer to opening my test file correctly in Excel.

Change-Id: Ib6aa8ddb2f2792513c7263d86865e08fe5f1483d
(cherry picked from commit 81b9d431678bc270e7592e9bedb81d2d445e2122)
Reviewed-on: https://gerrit.libreoffice.org/3686
Reviewed-by: Kohei Yoshida kohei.yosh...@suse.de
Tested-by: Kohei Yoshida kohei.yosh...@suse.de

diff --git a/oox/source/export/chartexport.cxx 
b/oox/source/export/chartexport.cxx
index 5d11695..b7736d5 100644
--- a/oox/source/export/chartexport.cxx
+++ b/oox/source/export/chartexport.cxx
@@ -1341,6 +1341,10 @@ void ChartExport::exportScatterChart( Reference 
chart2::XChartType  xChartType
 XML_val, scatterStyle,
 FSEND );
 
+pFS-singleElement( FSNS( XML_c, XML_varyColors ),
+XML_val, 0,
+FSEND );
+
 // FIXME: should export xVal and yVal
 sal_Int32 nAttachedAxis = AXIS_PRIMARY_Y;
 exportSeries( xChartType, nAttachedAxis );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PUSHED libreoffice-4-0] change order to allow validation of chart part

2013-05-01 Thread Kohei Yoshida (via Code Review)
Hi,

Thank you for your patch!  It has been merged to LibreOffice.

If you are interested in details, please visit

https://gerrit.libreoffice.org/3657

Approvals:
  Kohei Yoshida: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ib55e5b32edc3a556e9081b3008df539275dc289b
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: libreoffice-4-0
Gerrit-Owner: Markus Mohrhard markus.mohrh...@googlemail.com
Gerrit-Reviewer: Kohei Yoshida kohei.yosh...@suse.de

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


[PUSHED libreoffice-4-0] c:delete is true by default in Excel

2013-05-01 Thread Kohei Yoshida (via Code Review)
Hi,

Thank you for your patch!  It has been merged to LibreOffice.

If you are interested in details, please visit

https://gerrit.libreoffice.org/3685

Approvals:
  Kohei Yoshida: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I1bfa76a46081ba478e44d8d90d8a91790a9a9ff3
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: libreoffice-4-0
Gerrit-Owner: Markus Mohrhard markus.mohrh...@googlemail.com
Gerrit-Reviewer: Kohei Yoshida kohei.yosh...@suse.de

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


[PUSHED libreoffice-4-0] c:varyColor is true by default in Excel

2013-05-01 Thread Kohei Yoshida (via Code Review)
Hi,

Thank you for your patch!  It has been merged to LibreOffice.

If you are interested in details, please visit

https://gerrit.libreoffice.org/3686

Approvals:
  Kohei Yoshida: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ib6aa8ddb2f2792513c7263d86865e08fe5f1483d
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: libreoffice-4-0
Gerrit-Owner: Markus Mohrhard markus.mohrh...@googlemail.com
Gerrit-Reviewer: Kohei Yoshida kohei.yosh...@suse.de

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


[Libreoffice-commits] core.git: 2 commits - vcl/generic

2013-05-01 Thread Khaled Hosny
 vcl/generic/glyphs/gcach_layout.cxx |   16 ++--
 1 file changed, 2 insertions(+), 14 deletions(-)

New commits:
commit 76abedd3bd1c91cac9b239f746243df00a58d060
Author: Khaled Hosny khaledho...@eglug.org
Date:   Thu May 2 06:19:38 2013 +0200

[harfbuzz] Fix shaping across text runs, take 2

The 3rd parameter of hb_buffer_add_utf() should be the length of the
whole text not the current run, so that HarfBuzz can take the context
into account when shaping.

Change-Id: I369deb27176cbb136de12872b8a70453d5721bea

diff --git a/vcl/generic/glyphs/gcach_layout.cxx 
b/vcl/generic/glyphs/gcach_layout.cxx
index d562d3b..ad93b9a 100644
--- a/vcl/generic/glyphs/gcach_layout.cxx
+++ b/vcl/generic/glyphs/gcach_layout.cxx
@@ -465,7 +465,7 @@ bool HbLayoutEngine::layout(ServerFontLayout rLayout, 
ImplLayoutArgs rArgs)
 hb_buffer_set_direction(pHbBuffer, bRightToLeft ? HB_DIRECTION_RTL: 
HB_DIRECTION_LTR);
 hb_buffer_set_script(pHbBuffer, hb_icu_script_to_script(eScriptCode));
 hb_buffer_set_language(pHbBuffer, 
hb_language_from_string(sLanguage.getStr(), -1));
-hb_buffer_add_utf16(pHbBuffer, rArgs.mpStr, nRunLen, nMinRunPos, 
nRunLen);
+hb_buffer_add_utf16(pHbBuffer, rArgs.mpStr, rArgs.mnLength, 
nMinRunPos, nRunLen);
 hb_shape(pHbFont, pHbBuffer, NULL, 0);
 
 int nRunGlyphCount = hb_buffer_get_length(pHbBuffer);
@@ -480,15 +480,7 @@ bool HbLayoutEngine::layout(ServerFontLayout rLayout, 
ImplLayoutArgs rArgs)
 if (!nGlyphIndex)
 {
 if (nCharPos = 0)
-{
 rArgs.NeedFallback(nCharPos, bRightToLeft);
-// XXX: do we need this? HarfBuzz can take context into
-// account when shaping
-if  ((nCharPos  0)  
needPreviousCode(rArgs.mpStr[nCharPos-1]))
-rArgs.NeedFallback(nCharPos-1, bRightToLeft);
-else if  ((nCharPos + 1  nEndRunPos)  
needNextCode(rArgs.mpStr[nCharPos+1]))
-rArgs.NeedFallback(nCharPos+1, bRightToLeft);
-}
 
 if (SAL_LAYOUT_FOR_FALLBACK  rArgs.mnFlags)
 continue;
commit 69a120ccc6a8afdb239912f9b4fbbc123e69d4ca
Author: Khaled Hosny khaledho...@eglug.org
Date:   Thu May 2 06:13:58 2013 +0200

Revert [harfbuzz] Fix shaping across text runs

This reverts commit ca0b580e2a21999d75bcd39ae5b6f81e9e42897b.

diff --git a/vcl/generic/glyphs/gcach_layout.cxx 
b/vcl/generic/glyphs/gcach_layout.cxx
index a849d9d..d562d3b 100644
--- a/vcl/generic/glyphs/gcach_layout.cxx
+++ b/vcl/generic/glyphs/gcach_layout.cxx
@@ -422,10 +422,8 @@ bool HbLayoutEngine::layout(ServerFontLayout rLayout, 
ImplLayoutArgs rArgs)
 ((uint64_t) aFtFace-size-metrics.y_scale * (uint64_t) 
fUnitsPerEM)  16);
 hb_font_set_ppem(pHbFont, aFtFace-size-metrics.x_ppem, 
aFtFace-size-metrics.y_ppem);
 
-int nTextLen = rArgs.mnEndCharPos - rArgs.mnMinCharPos;
-
 // allocate temporary arrays, note: round to even
-int nGlyphCapacity = (3 * nTextLen | 15) + 1;
+int nGlyphCapacity = (3 * (rArgs.mnEndCharPos - rArgs.mnMinCharPos) | 15) 
+ 1;
 
 rLayout.Reserve(nGlyphCapacity);
 
@@ -467,7 +465,7 @@ bool HbLayoutEngine::layout(ServerFontLayout rLayout, 
ImplLayoutArgs rArgs)
 hb_buffer_set_direction(pHbBuffer, bRightToLeft ? HB_DIRECTION_RTL: 
HB_DIRECTION_LTR);
 hb_buffer_set_script(pHbBuffer, hb_icu_script_to_script(eScriptCode));
 hb_buffer_set_language(pHbBuffer, 
hb_language_from_string(sLanguage.getStr(), -1));
-hb_buffer_add_utf16(pHbBuffer, rArgs.mpStr, nTextLen, nMinRunPos, 
nRunLen);
+hb_buffer_add_utf16(pHbBuffer, rArgs.mpStr, nRunLen, nMinRunPos, 
nRunLen);
 hb_shape(pHbFont, pHbBuffer, NULL, 0);
 
 int nRunGlyphCount = hb_buffer_get_length(pHbBuffer);
@@ -484,14 +482,12 @@ bool HbLayoutEngine::layout(ServerFontLayout rLayout, 
ImplLayoutArgs rArgs)
 if (nCharPos = 0)
 {
 rArgs.NeedFallback(nCharPos, bRightToLeft);
-#if 0
 // XXX: do we need this? HarfBuzz can take context into
 // account when shaping
 if  ((nCharPos  0)  
needPreviousCode(rArgs.mpStr[nCharPos-1]))
 rArgs.NeedFallback(nCharPos-1, bRightToLeft);
 else if  ((nCharPos + 1  nEndRunPos)  
needNextCode(rArgs.mpStr[nCharPos+1]))
 rArgs.NeedFallback(nCharPos+1, bRightToLeft);
-#endif
 }
 
 if (SAL_LAYOUT_FOR_FALLBACK  rArgs.mnFlags)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Killing the gerrit to dev-list spam ...

2013-05-01 Thread Jean-Baptiste Faure
Hi,

Le 01/05/2013 21:33, Bjoern Michaelsen a écrit :
[...]
 
 So, is there anyone who is _not_ a sponsored developer opposing to kill the 
 mail
 spammage? If so:
 
[...]
 
 Opinions?

Even if I am able to filter gerrit mails, I agree that a separate
gerrit-patches mailing list would be better.

Best regards.
JBF

-- 
Seuls des formats ouverts peuvent assurer la pérennité de vos documents.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Killing the gerrit to dev-list spam ...

2013-05-01 Thread Jonathan Aquilina
+1 to JBF's suggestion usualy when i get these emails I instantly delete
them.


On Thu, May 2, 2013 at 6:58 AM, Jean-Baptiste Faure jbf.fa...@sud-ouest.org
 wrote:

 Hi,

 Le 01/05/2013 21:33, Bjoern Michaelsen a écrit :
 [...]
 
  So, is there anyone who is _not_ a sponsored developer opposing to kill
 the mail
  spammage? If so:
 
 [...]
 
  Opinions?

 Even if I am able to filter gerrit mails, I agree that a separate
 gerrit-patches mailing list would be better.

 Best regards.
 JBF

 --
 Seuls des formats ouverts peuvent assurer la pérennité de vos documents.
 ___
 LibreOffice mailing list
 LibreOffice@lists.freedesktop.org
 http://lists.freedesktop.org/mailman/listinfo/libreoffice




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


RE: Killing the gerrit to dev-list spam ...

2013-05-01 Thread Winfried Donkers
 So, is there anyone who is _not_ a sponsored developer opposing to kill the
 mail spammage? If so:
 
 - could this be mitigated by a separate gerrit-patches mailing list?
 - could this be mitigated by a daily digest of gerrit news?
 - could this be mitigated by other means?

I would be happy with a daily digest.

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


Re: Killing the gerrit to dev-list spam ...

2013-05-01 Thread Jonathan Aquilina
Next question to ask though with daily digests how many times a day will
they be sent out? would they be sent out every hour every few hours once to
twice a day?


On Thu, May 2, 2013 at 7:42 AM, Winfried Donkers 
w.donk...@dci-electronics.nl wrote:

  So, is there anyone who is _not_ a sponsored developer opposing to kill
 the
  mail spammage? If so:
 
  - could this be mitigated by a separate gerrit-patches mailing list?
  - could this be mitigated by a daily digest of gerrit news?
  - could this be mitigated by other means?

 I would be happy with a daily digest.

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




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


Re: Killing the gerrit to dev-list spam ...

2013-05-01 Thread Tor Lillqvist
 Next question to ask though with daily digests how many times a day will
they be sent out?

Every few hours definitely, except on Mondays of odd-numbered weeks when
the daily digest should be sent just twice. And if there is nothing to
digest, they should say so, Nothing to report.

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


Re: Killing the gerrit to dev-list spam ...

2013-05-01 Thread Jonathan Aquilina
If there is nothing to report is it necessary to send anything out at all?


On Thu, May 2, 2013 at 7:48 AM, Tor Lillqvist t...@iki.fi wrote:

  Next question to ask though with daily digests how many times a day will
 they be sent out?

 Every few hours definitely, except on Mondays of odd-numbered weeks when
 the daily digest should be sent just twice. And if there is nothing to
 digest, they should say so, Nothing to report.

 --tml




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


Re: Killing the gerrit to dev-list spam ...

2013-05-01 Thread Tor Lillqvist
 If there is nothing to report is it necessary to send anything out at all?


Ah. Good point, I would never have thought of that!

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


Re: Killing the gerrit to dev-list spam ...

2013-05-01 Thread Jonathan Aquilina
What is the overall concensus here.

Daily digests of a given frequency and if there is nothing dont send out
anything?


On Thu, May 2, 2013 at 7:51 AM, Tor Lillqvist t...@iki.fi wrote:


 If there is nothing to report is it necessary to send anything out at all?


 Ah. Good point, I would never have thought of that!

 --tml




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


[Libreoffice-qa] minutes of (last weeks) ESC call ...

2013-05-01 Thread Michael Meeks
Joel kindly pointed out I forgot to send these: sorry !

* Present:
+ Joel, Thorsten, Lionel, Andras, David, Norbert, Kendy,
  Ahmad, Astron, Bjoern, Eike, Caolan, Stephan, Petr,
  Cedric

* Completed Action Items
+ publish results of automated load testing (Markus)
+ find out an ideal git rename limit number (Bjoern)
+ do RTL_LOGFILE changes (Bjoern)
[ plus created an easy-hack ]
+ helping out with code-pointers for UI bugs (Kendy)
[ toolbar issues in GSOC wiki page, and ref'd in bugs ]
+ Personas - update / de-couple built-in URL (Kendy)
[ done - expected for 4.0.3, new URL there ]
[ text 'Persona' left in 4.0.x for l10n text
  updated in master, GSOC task to move to
  API and browse in LibO ]
+ update mac SDK configure check on master (Norbert)
+ Lionel's UNO / forms interfaces: second view on what's up
[ uses a different model, so confusing, but no change ]
+ Lionel's list-box change:
[ hesitated a lot, but interaction with Validator
  interface makes this ]
AI: + double check this change (Eike)
+ mass-move  tweak of include paths (Bjoern)
[ looks beautiful in master, two minor glitches
  15mins late executing, and broke cross-compiling,
  otherwise it went smoothly - thanks to all
  for help ! ]
[ Windows builds take between 1 or 2 hours - there
  are two of them ]
+ on-line update 3.6.x - 3.6.6 patch (Michael)
[ should now be nearly automated, needs just the new
  commit id adding ]

* Pending Action Items
+ look at gradient / clipart issues (Michael)
+ look into Windows gallery builds (Michael)
+ need design for copying styles between templates (Astron/UX)
+ either in that dialog or a new dialog
+ also issue with only editing templates that are in the mgr
+ feedback on stepped-lines dialog (Astron)
+ buy Windows build hardware / hosting (Norbert)
+ [ ongoing problems ]
+ add a suggestion to do a single bug triage
  to the GSOC requirements (Fridrich)
+ find a good public? test / webdav server for QA (Thorsten)

* QA update (Joel)
+ trying to double-up on each of the major components eg.
  the Bugzilla Submission Assistant (BSA)
+ questing for a website person to help-out with that
AI: + working on analysing minor release bugs
+ adding a new tag 'expert_needed' - needs a developer to triage
  them; QA volunteers can't do it themselves: odd setups etc.
+ 147 unconfirmed vs. 4.0, help appreciated with triage
+ bugs not going down or up - hovering around 150
http://tinyurl.com/crxq9od (cf. topic in #libreoffice-qa)
+ https://bugs.freedesktop.org/page.cgi?id=weekly-bug-summary.html
+ more bugs closed than opened ...
+151 -153
+ flip-side of better triage is regression spike
+ want to triage better / get better data / quality
  of regressions
+ bibisect:
+ plenty of bandwidth available to add 'bibsectrequest'
  to keywords for developers
+ pushed another repo - of released / tagged versions,
  most useful for minor releases.
+ seems to be a serious Win32 crasher bug:
+ https://bugs.freedesktop.org/show_bug.cgi?id=63767

* Release Engineering update (Petr)
+ 3.6.7 schedule - deadline is June 24th for rc1
+ 4.0.3 rc2 deadline - April 29th
+ next Monday !
+ 4.1 - feature-freeze: three weeks out: May 20th
+ week on Monday - do an Alpha 0 of 4.1
+ get build / packaging testing / etc.

* Update on calc foo (Markus)
+ discussion to get rid of performance hobbling inherited
  number format issue.
+ still resolved to get rid of it.
+ Markus to work on it in a bit.

* MySQL connector
+ Fernand Vanrie - funding a re-compile for 4.0 and -
  extension site (many thanks)
+ Work In Progress
+ will need another re-compile for 4.1 so we need to
  use the 'maxversion' 4.0.100 eg. dependency for it
+ new-re-compile due to ns datetime change.

* remove lo suffix from non-ure libraries (Bjoern)
+ https://bugs.freedesktop.org/show_bug.cgi?id=63154#c6
+ shortening the names can lead to DLL naming conflicts, hence 'lo'
AI: + back-track and leave the existing macro to avoid issues (Michael)

* UX input (Astron)
+ icon theme faenza issues, 

Re: [Libreoffice-qa] [ANNOUNCE] libreoffice-4.0.3.2 tag created

2013-05-01 Thread Bjoern Michaelsen
On Tue, Apr 30, 2013 at 04:25:49PM +0200, Petr Mladek wrote:
 there have been created the tag libreoffice-4.0.3.2, aka rc2. The
 corresponding official builds will be available within next few days.

An Ubuntu build for the current 13.04 raring release just has been copyed to
the PPAs:

 https://launchpad.net/~libreoffice/+archive/ppa
 https://launchpad.net/~libreoffice/+archive/libreoffice-4-0

Best,


Bjoern
___
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] Daily Bibisect builds for Ubuntu

2013-05-01 Thread Bjoern Michaelsen
Hi,

it seems the daily bibisect builds of LibreOffice by Canonicals QA are working
and are published reliably now:

 http://people.canonical.com/~j-lallement/libreoffice/binrepo/

These builds start around the time of the 4.0 branch off in December 2012, so
they are connecting to the previously generated repository, giving us coverage
from mid-3.6 to the current daily build.

Im CCing Jean-Baptiste, who did all the hard work on this one and deserves all
the kudos for this! ;)

So now you effectively have bibisect testing right up to the daily build, which
I think is quite awesome.

Best,

Bjoern
___
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] [LibreOffice-QA] Conference Call 2013-05-03 - Agenda Minutes

2013-05-01 Thread Joel Madero
Regularly schedule meeting:

Date: May 03, 2013
Time: 1300 UTC

Duration ~ 1 hour - let's try to stick to this - we may go a little over
but hopefully not an extra hour like last time :)

Agenda  Minutes (after call) available here:
https://wiki.documentfoundation.org/QA/Meetings/2013/May_3



Warm Regards,
Joel


-- 
*Joel Madero*
LibreOffice QA Volunteer
jmadero@gmail.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-bugs] [Bug 63903] : Unneeded screen refreshes (on toolbar area at least)

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63903

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 CC||jmadero@gmail.com,
   ||reisi...@gmail.com

--- Comment #1 from Joel Madero jmadero@gmail.com ---
Florian - seems like one you may be able to test?

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


[Libreoffice-bugs] [Bug 63859] Highlight Referenced Cell Live (or immediately)

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63859

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

   Hardware|Other   |All
 OS|Windows (All)   |All
 Status|UNCONFIRMED |NEW
 Whiteboard|BSA |BSA, ProposedEasyHack
   Severity|normal  |enhancement
   Priority|medium  |high
 CC||jmadero@gmail.com
Summary|FORMCONTROLS: Calc linking  |Highlight Referenced Cell
   |cells   |Live (or immediately)
 Ever confirmed|0   |1

--- Comment #1 from Joel Madero jmadero@gmail.com ---
Thank you for reporting this enhancement request! I can confirm that this is a
valid enhancement request on:
Version: 4.1.0.0.alpha0+Build ID: 6e3e6ef7257e93743a72719581ef6fe0016e58e
Date:   Thu Apr 11 15:24:38 2013 +0200 
Platform: Bodhi Linux 2.2 x64
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 
As I've been able to confirm the enhancement request I am marking as:

New (confirmed)
Enhancement
High - not sure why this isn't already done, seems quite useful vs. having to
take the extra step to double click

Keywords - 

Whiteboard Status - proposedeasyhack - not sure but this might be easy to
accomplish

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 
LibreOffice is powered by a team of volunteers, every bug is confirmed
(triaged) by human beings who mostly give their time for free. We invite you to
join our triaging by checking out this link:
https://wiki.documentfoundation.org/QA/BugTriage

There are also other ways to get involved including with marketing, UX,
documentation, and of course developing - 
http://www.libreoffice.org/get-help/mailing-lists/. 

Lastly, good bug reports help tremendously in making the process go smoother,
please always provide reproducible steps (even if it seems easy) and attach any
and all relevant material

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


[Libreoffice-bugs] [Bug 63839] Report Builder incorrect formatting (2nd bug report)

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63839

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||jmadero@gmail.com
 Ever confirmed|0   |1

--- Comment #1 from Joel Madero jmadero@gmail.com ---
Please connect a test database (the simpler the better). 

marking as NEEDINFO - once you attach a sample database mark as UNCONFIRMED and
we will triage it.

When you attach please tell us exactly what to do to database to see the
problem, I will try to bibisect to determine where the problem began.

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


[Libreoffice-bugs] [Bug 63838] Report Builder incorrect formatting

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63838

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 CC||jmadero@gmail.com

--- Comment #1 from Joel Madero jmadero@gmail.com ---
You can attach more than one document, marking this as a duplicate of other 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 63839] Report Builder incorrect formatting (2nd bug report)

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63839

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #2 from Joel Madero jmadero@gmail.com ---


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

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


[Libreoffice-bugs] [Bug 63838] Report Builder incorrect formatting

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63838

--- Comment #2 from Joel Madero jmadero@gmail.com ---
*** Bug 63839 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 63826] EDITING: Unable to mark text with mouse nor keyboard

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63826

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||jmadero@gmail.com
 Ever confirmed|0   |1

--- Comment #1 from Joel Madero jmadero@gmail.com ---
Unfortunately this isn't enough information to triage the bug as I haven't seen
any similar issue in bug tracker.

Marking as NEEDINFO - please try to determine more information that triggers
this problem.  Does it happen in other software? Only in writer? with certain
extensions? Do you notice weird stuff with system monitor (cpu spikes, RAM
being eaten up? ?)

Please try to experiment with LibreOffice a bit to see if you can consistently
cause the issue to happen. Also, did it happen with 3.6 series?

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


[Libreoffice-bugs] [Bug 63838] Report Builder incorrect formatting

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63838

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
Version|4.0.2.2 release |4.0.0.3 release
 Ever confirmed|0   |1

--- Comment #3 from Joel Madero jmadero@gmail.com ---
Changed my mind, marked the other one as a duplicate of this one, please attach
a very simple test database, explain what we need to do to see the problem and
I will bibisect to see where the problem began.

Also, changing version to 4.0.0.3 release (oldest version that you seem to
experience the problem) as you've stated you cannot upgrade to Version 4 at all
due to the problem.

Attach document, explain steps and then mark as UNCONFIRMED and I will
investigate

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


[Libreoffice-bugs] [Bug 63822] Progress bar on splash screen is misplaced

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63822

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 CC||jmadero@gmail.com,
   ||r...@debian.org

--- Comment #5 from Joel Madero jmadero@gmail.com ---
Hm I wonder if this isn't our bug - adding Rene as he's our Debian expert to
see if he's seeing similar behavior.

Rene - apologies for pinging but pointers on this one? Are you seeing the same
thing on Debian?

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


[Libreoffice-bugs] [Bug 64013] FORMATTING: Need icons or locations of script formats

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64013

--- Comment #3 from Nick nj...@juno.com ---
Created attachment 78680
  -- https://bugs.freedesktop.org/attachment.cgi?id=78680action=edit
I goofed!

M\it was my first use of the Libre Office Writer program; I was familiar with
MS Word, with icons for font size, boldface etc. in the tool bar. I foolishly
assumed they would be visible likewise in Libre Office Writer, but later
determined that by clicking on word they were in a sub-menu. Kindly accept my
most humble apologies for causing this wasted effort, Thanx, n.

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


[Libreoffice-bugs] [Bug 64013] FORMATTING: Need icons or locations of script formats

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64013

--- Comment #4 from Nick nj...@juno.com ---
Is there a tutorial for new users?

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


[Libreoffice-bugs] [Bug 64013] FORMATTING: Need icons or locations of script formats

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64013

--- Comment #5 from Nick nj...@juno.com ---
Is there a tutorial for first time users of Libre Writer?

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


[Libreoffice-bugs] [Bug 63816] Format pencil adds additional bullets to a bullet list

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63816

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 CC||jmadero@gmail.com

--- Comment #1 from Joel Madero jmadero@gmail.com ---
Very strange - I see the behavior obviously from your screencast (although the
mouse being hidden makes it much harder to follow ;) ) but I cannot reproduce
with master build nor with 4.0.3.1 rc.

Any way for you to test RC release of 4.0.3 to see if it's been resolved for
you? 

http://www.libreoffice.org/download/pre-releases/

Also in the future please always provide your operating system :)


+++

Version: 4.1.0.0.alpha0+Build ID: 6e3e6ef7257e93743a72719581ef6fe0016e58e
Date:   Thu Apr 11 15:24:38 2013 +0200 
Platform: Bodhi Linux 2.2 x64

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


[Libreoffice-bugs] [Bug 64013] FORMATTING: Need icons or locations of script formats

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64013

--- Comment #6 from Nick nj...@juno.com ---
Is there a tutorial for first time users of Libre Writer?

Also, what is a Tag? Is it marked as such? Where do I find it?

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


[Libreoffice-bugs] [Bug 64013] FORMATTING: Need icons or locations of script formats

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64013

--- Comment #7 from Nick nj...@juno.com ---
Also, where do I insert the info? Sorry for all the comments, I'm having
difficulty navigating this 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 63814] Arrow-style can only be specified for right end of line for specific document

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63814

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

   Hardware|Other   |All
 Status|UNCONFIRMED |NEW
   Priority|medium  |high
 CC||jmadero@gmail.com,
   ||tbehr...@suse.com
Version|4.0.2.2 release |3.5.4 release
 Ever confirmed|0   |1

--- Comment #2 from Joel Madero jmadero@gmail.com ---
I can confirm this all the way back to 3.5.4 using bibisect so updating version
as version is the oldest confirmed version.

There is a workaround (you can just add an arrow to the end of the line and
adjust the size as needed). Strange thing is when you format the arrow it
always shows it as the right side arrow, it seems like the entire left side
arrow is non functional and maybe never was.



I have been able to confirm the issue on:
Platform: Bodhi Linux 2.2 x64
Bibisect: Earliest version (3.5.4)

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
As I've been able to confirm this problem I am marking as:

New (confirmed)
Normal - despite having a workaround having the entire feature unuable seems
quite bad.
High - see above :)


cc'ing Thorsten - Thorsten - this one seems quite strange so wanted to get you
involved. Left arrow is essentially just for show

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
LibreOffice is powered by a team of volunteers, every bug is confirmed
(triaged) by human beings who mostly give their time for free. We invite you to
join our triaging by checking out this link:
https://wiki.documentfoundation.org/QA/BugTriage and join us on freenode at
#libreoffice-qa

There are also other ways to get involved including with marketing, UX,
documentation, and of course developing - 
http://www.libreoffice.org/get-help/mailing-lists/. 

Lastly, good bug reports help tremendously in making the process go smoother,
please always provide reproducible steps (even if it seems easy) and attach any
and all relevant material

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


[Libreoffice-bugs] [Bug 63752] Cannot Save As to Samba Share

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63752

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

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

--- Comment #6 from Joel Madero jmadero@gmail.com ---
indeed seems fixed - when 4.0.3 release is released, please confirm that it's
indeed fixed for you.

Thanks for reporting

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


[Libreoffice-bugs] [Bug 64013] FORMATTING: Need icons or locations of script formats

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64013

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

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

--- Comment #8 from Joel Madero jmadero@gmail.com ---
no worries :) 

This might help: http://www.libreoffice.org/get-help/documentation/

I closed the bug as INVALID so don't worry about that, as for tag, not sure
what you're referencing :)

You can join the user mailing list (great people over there), join #libreoffice
on freenode (IRC) or ask any question on our ask libreoffice site.

You'll find lots of help on all of those

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


[Libreoffice-bugs] [Bug 64013] FORMATTING: Need icons or locations of script formats

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64013

--- Comment #9 from Nick nj...@juno.com ---
Pardon my ineptitude; I'm having problems navigating the form.  What is a
Tag? Where is it located? Where do insert the info? Thanx for your patience.
n.

Please note: message attached

From: bugzilla-dae...@freedesktop.org
To: nj...@juno.com
Subject: [Bug 64013] FORMATTING: Need icons or locations of script formats
Date: Wed, 01 May 2013 03:09:27 +

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


[Libreoffice-bugs] [Bug 64026] FILEOPEN: distortion of footnote and endnote references if more than single digit in .doc and .docx

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64026

--- Comment #11 from Rogier van Vlissingen vlisc...@gmail.com ---
In actual fact, the problem always was related to my having to convert from
.odt to .doc for the sake of others.
Along the way it seemed that the irregularities became worse when I tried to
get the end notes to be in Arabic, not Roman numbering, but that was an
aggravating circumstance, not the cause. 
The trigger seemed to always be opening the file, not saving it. Everything
would look normal, even with repeated saving, but as soon as you opened it in
LO, the problems would reappear.
The only way to avoid it is to revert to MS Word, which is the first time in 13
years I've had to do that. But given that .doc format is mandatory, and it's
the conversion that causes the problem, I ended up correcting the same problems
with every new round of editing, and it became too much of a drag.

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


[Libreoffice-bugs] [Bug 64026] FILEOPEN: distortion of footnote and endnote references if more than single digit in .doc and .docx

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64026

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |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 64026] Footnotes and Endnotes Get Strange Spacing (tabed) when Saving As .Doc or .Docx

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64026

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

   Hardware|Other   |All
 OS|Windows (All)   |All
 QA Contact||jmadero@gmail.com
Summary|FILEOPEN: distortion of |Footnotes and Endnotes Get
   |footnote and endnote|Strange Spacing (tabed)
   |references if more than |when Saving As .Doc or
   |single digit in .doc and|.Docx
   |.docx   |

--- Comment #12 from Joel Madero jmadero@gmail.com ---
Doing further investigation tomorrow but I can confirm.

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


[Libreoffice-bugs] [Bug 64026] Footnotes and Endnotes Get Strange Spacing (tabed) when Saving As .Doc or .Docx

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64026

--- Comment #13 from Rogier van Vlissingen vlisc...@gmail.com ---
I notice that you are limiting yourself to the problem with the funny tabs that
appear out of nowhere.

The spontaneous change to the reference numbers, escpecially if they are
manual, not automatic, is also a substantial part of the problem, and I've
experienced it hundreds of times, and tried every imaginable workaround, but in
the end I had to give up, and just limit myself to editing in .doc and in MSW.
It was often costing me 15 minutes extra for each file to fix the conversion
problems again and again and 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 64100] New: Big problem of printing document with vector graphic

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64100

  Priority: medium
Bug ID: 64100
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Big problem of printing document with vector graphic
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: jeff_t...@yahoo.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.0.2.2 release
 Component: Printing and PDF export
   Product: LibreOffice

Created attachment 78683
  -- https://bugs.freedesktop.org/attachment.cgi?id=78683action=edit
original file which can produce a weird printout

I meet problems while printing document with vector graphics

Firstly, when a vector graphic, which is prepared with Draw, inside a table
cell with other elements, such as a formula object, the document may not be
printed correctly.

I cannot reproduce the result with hard copy or various pdf creator. 

Secondly, with Libreoffice built-in pdf export function, the printout is almost
prefect. However, I can still find a pair of dots on the upper left corner and
the bottom right corner of each graphic.

I meet the same problem with LibreOffice 4.0.3 rc1 as well.

Thanks for your concern.

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


[Libreoffice-bugs] [Bug 64026] Footnotes and Endnotes Get Strange Spacing (tabed) when Saving As .Doc or .Docx

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64026

--- Comment #14 from Joel Madero jmadero@gmail.com ---
I may open a second report, will look in depth tomorrow

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


[Libreoffice-bugs] [Bug 64100] Big problem of printing document with vector graphic

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64100

--- Comment #2 from Jeff Tong jeff_t...@yahoo.com ---
Created attachment 78685
  -- https://bugs.freedesktop.org/attachment.cgi?id=78685action=edit
Print with PDFcreator

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


[Libreoffice-bugs] [Bug 64100] Big problem of printing document with vector graphic

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64100

--- Comment #1 from Jeff Tong jeff_t...@yahoo.com ---
Created attachment 78684
  -- https://bugs.freedesktop.org/attachment.cgi?id=78684action=edit
Export directly from Writer. Please take a look at the graphics' corners.

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


[Libreoffice-bugs] [Bug 64100] Big problem of printing document with vector graphic

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64100

--- Comment #3 from Jeff Tong jeff_t...@yahoo.com ---
Created attachment 78686
  -- https://bugs.freedesktop.org/attachment.cgi?id=78686action=edit
Original file zipped.

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


[Libreoffice-bugs] [Bug 64100] Problems on printing document with vector graphic

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64100

Jeff Tong jeff_t...@yahoo.com changed:

   What|Removed |Added

Summary|Big problem of printing |Problems on printing
   |document with vector|document with vector
   |graphic |graphic

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


[Libreoffice-bugs] [Bug 63986] UI: In Full Screen mode, Find and Full Screen toolbars display

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63986

--- Comment #3 from David gn...@hawaii.rr.com ---
Created attachment 78687
  -- https://bugs.freedesktop.org/attachment.cgi?id=78687action=edit
Screen shot of 64-bit LO4.0.2.2 Full screen

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


[Libreoffice-bugs] [Bug 63986] UI: In Full Screen mode, Find and Full Screen toolbars display

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63986

--- Comment #4 from David gn...@hawaii.rr.com ---
See attached screenshot. This is from 4.0.2.2 running on 64-bit Debian Sid. I
installed it using the DEBs downloaded from the Libreoffice website. I also
have 4.0.2.2 running on a 32-bit different machine (also running Debian Sid and
similarly installed from Libreoffice' own DEBs).

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


[Libreoffice-bugs] [Bug 64100] Problems on printing document with vector graphic

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64100

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 CC||jmadero@gmail.com

--- Comment #4 from Joel Madero jmadero@gmail.com ---
cannot reproduce with Linux, I don't see the pair of dots in the 2nd file you
uploaded. 

Might be Windows only.

Jeff - when you actually print the file does it look messed up?

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


[Libreoffice-bugs] [Bug 63960] FILESAVE: Formula string truncated when longer than 255 letters

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63960

--- Comment #4 from Tomas Vavrda tvav...@gmail.com ---
Are you sure the user shall not be warned before his work is lost because of
whatever reason?

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


[Libreoffice-bugs] [Bug 63905] FORMATTING: Page format in draw is not sent to the printer

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63905

--- Comment #4 from bugzi...@ruben-online.ch ---
Created attachment 78688
  -- https://bugs.freedesktop.org/attachment.cgi?id=78688action=edit
With test file still A4 as page format

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


[Libreoffice-bugs] [Bug 63905] FORMATTING: Page format in draw is not sent to the printer

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63905

--- Comment #3 from bugzi...@ruben-online.ch ---
When I print your file, it is still printed on an A4-page (see the attached
screenshot), but just a part of the paper is used. Is this different on your
system? I will test the bug on the same system but with Ubuntu and Windows.

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


[Libreoffice-bugs] [Bug 64090] UI: Bad translation of the user interface in french (writer)

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64090

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

   What|Removed |Added

 Status|UNCONFIRMED |ASSIGNED
   Assignee|libreoffice-b...@lists.free |jbf.fa...@sud-ouest.org
   |desktop.org |
 CC||jbf.fa...@sud-ouest.org
 Ever confirmed|0   |1

--- Comment #1 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
Indeed. Thank you for the report. 
I will try to fix it with the help of Sophie. :-)

Best regards. JBF

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


[Libreoffice-bugs] [Bug 54266] TABLE: Table border tool not precise enough

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54266

Chris Wilson ch...@chris-wilson.co.uk changed:

   What|Removed |Added

 CC||l...@mit.edu

--- Comment #6 from Chris Wilson ch...@chris-wilson.co.uk ---
*** Bug 64094 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 63960] FILESAVE: Formula string truncated when longer than 255 letters

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63960

--- Comment #5 from Joel Madero jmadero@gmail.com ---
you are warned when you save as a xls with the confirm file format dialog.

It is the users responsibility to know the limitations of file formats

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


[Libreoffice-bugs] [Bug 63960] FILESAVE: Formula string truncated when longer than 255 letters

2013-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63960

--- Comment #6 from Joel Madero jmadero@gmail.com ---
Created attachment 78689
  -- https://bugs.freedesktop.org/attachment.cgi?id=78689action=edit
Dialog Warning about XLS Saving

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


  1   2   3   4   >