Re: binfilter removed in LO 4.0 : how to communicate on this change?

2012-11-10 Thread Andras Timar
Hi Jean-Baptiste,

On Sat, Nov 10, 2012 at 8:17 AM, Jean-Baptiste Faure
jbf.fa...@sud-ouest.org wrote:
 - release a complete list of legacy formats which are dropped. Is there
 something else than sd? formats (StarOffice 5 formats) ?

It affects only old binary formats of StarOffice 5 and earlier versions.

BTW shoudn't we remove traces of binfiler from filter/, too?
cd filter  git grep BF_ gives a lot of hits.

 - what the user can do with its old files: I think it is not enough to
 say you have to convert them with an old version of LibreOffice. For
 example, I have old sdw and sxw files in my laboratory diary and I do
 not want to lose their modification date if I convert them in ODF. What
 should I do and what advice I could give to an end-user who is in the
 same position?

sxw and other XML based formats are not affected.

I opened an old sdw file (rsc\doku\feinkonz.43\rsc.sdw from
LibreOrfice source) and it did not have modification date, In fact it
had no metadata at all. Are you sure that this format supports
metadata? Of do you mean the modification date at the file system
level? touch -r file.sdw file.odt

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


[Libreoffice-commits] .: Branch 'libreoffice-3-6' - sw/source

2012-11-10 Thread Libreoffice Gerrit user
 sw/source/filter/ww8/docxattributeoutput.cxx |   43 +++
 sw/source/filter/ww8/docxattributeoutput.hxx |   11 +-
 2 files changed, 33 insertions(+), 21 deletions(-)

New commits:
commit fc3f771c1f5fed267298c851e94bef9557278b5b
Author: Miklos Vajna vmik...@suse.cz
Date:   Fri Nov 9 10:42:47 2012 +0100

fdo#51550 fix DOCX export dataloss on non-math/chart OLE export

This is still not complete, but having the replacement graphic only is
far better than having nothing.

(cherry picked from commit bd6ae389008e110be62a335dfcd82c655d512e63)

Conflicts:
sw/source/filter/ww8/docxattributeoutput.cxx

Change-Id: I141a3de1a449f4261c7086e10f2c141b3f6cdb10
Reviewed-on: https://gerrit.libreoffice.org/1017
Reviewed-by: Norbert Thiebaud nthieb...@gmail.com
Tested-by: Norbert Thiebaud nthieb...@gmail.com

diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx 
b/sw/source/filter/ww8/docxattributeoutput.cxx
index 78ee6cf..d075cd4 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -1013,7 +1013,7 @@ void DocxAttributeOutput::WritePostponedGraphic()
 for( std::list PostponedGraphic ::const_iterator it = 
m_postponedGraphic-begin();
  it != m_postponedGraphic-end();
  ++it )
-FlyFrameGraphic( *( it-grfNode ), it-size );
+FlyFrameGraphic( it-grfNode, it-size );
 delete m_postponedGraphic;
 m_postponedGraphic = NULL;
 }
@@ -1993,17 +1993,18 @@ void DocxAttributeOutput::DefaultStyle( sal_uInt16 
nStyle )
 #endif
 }
 
-void DocxAttributeOutput::FlyFrameGraphic( const SwGrfNode rGrfNode, const 
Size rSize )
+void DocxAttributeOutput::FlyFrameGraphic( const SwGrfNode* pGrfNode, const 
Size rSize, const SwFlyFrmFmt* pOLEFrmFmt, SwOLENode* pOLENode )
 {
-OSL_TRACE( TODO DocxAttributeOutput::FlyFrameGraphic( const SwGrfNode 
rGrfNode, const Size rSize ) - some stuff still missing );
+OSL_TRACE( TODO DocxAttributeOutput::FlyFrameGraphic( const SwGrfNode* 
pGrfNode, const Size rSize, const SwFlyFrmFmt* pOLEFrmFmt, SwOLENode* pOLENode 
) - some stuff still missing );
+const SwFrmFmt* pFrmFmt = pGrfNode ? pGrfNode-GetFlyFmt() : pOLEFrmFmt;
 // create the relation ID
 OString aRelId;
 sal_Int32 nImageType;
-if ( rGrfNode.IsLinkedFile() )
+if ( pGrfNode  pGrfNode-IsLinkedFile() )
 {
 // linked image, just create the relation
 String aFileName;
-rGrfNode.GetFileFilterNms( aFileName, 0 );
+pGrfNode-GetFileFilterNms( aFileName, 0 );
 
 // TODO Convert the file name to relative for better interoperability
 
@@ -2016,10 +2017,14 @@ void DocxAttributeOutput::FlyFrameGraphic( const 
SwGrfNode rGrfNode, const Size
 else
 {
 // inline, we also have to write the image itself
-Graphic rGraphic = const_cast Graphic ( rGrfNode.GetGrf() );
+Graphic* pGraphic = 0;
+if (pGrfNode)
+pGraphic = const_cast Graphic ( pGrfNode-GetGrf() );
+else
+pGraphic = pOLENode-GetGraphic();
 
 m_rDrawingML.SetFS( m_pSerializer ); // to be sure that we write to 
the right stream
-OUString aImageId = m_rDrawingML.WriteImage( rGraphic );
+OUString aImageId = m_rDrawingML.WriteImage( *pGraphic );
 
 aRelId = OUStringToOString( aImageId, RTL_TEXTENCODING_UTF8 );
 
@@ -2031,11 +2036,11 @@ void DocxAttributeOutput::FlyFrameGraphic( const 
SwGrfNode rGrfNode, const Size
 
 m_pSerializer-startElementNS( XML_w, XML_drawing,
 FSEND );
-bool isAnchor = rGrfNode.GetFlyFmt()-GetAnchor().GetAnchorId() != 
FLY_AS_CHAR;
+bool isAnchor = pFrmFmt-GetAnchor().GetAnchorId() != FLY_AS_CHAR;
 if( isAnchor )
 {
 ::sax_fastparser::FastAttributeList* attrList = 
m_pSerializer-createAttrList();
-attrList-add( XML_behindDoc, 
rGrfNode.GetFlyFmt()-GetOpaque().GetValue() ? 0 : 1 );
+attrList-add( XML_behindDoc, pFrmFmt-GetOpaque().GetValue() ? 0 : 
1 );
 attrList-add( XML_distT, 0 );
 attrList-add( XML_distB, 0 );
 attrList-add( XML_distL, 0 );
@@ -2044,13 +2049,13 @@ void DocxAttributeOutput::FlyFrameGraphic( const 
SwGrfNode rGrfNode, const Size
 attrList-add( XML_locked, 0 );
 attrList-add( XML_layoutInCell, 1 );
 attrList-add( XML_allowOverlap, 1 ); // TODO
-if( const SdrObject* pObj = rGrfNode.GetFlyFmt()-FindRealSdrObject())
+if( const SdrObject* pObj = pFrmFmt-FindRealSdrObject())
 attrList-add( XML_relativeHeight, OString::valueOf( sal_Int32( 
pObj-GetOrdNum(;
 m_pSerializer-startElementNS( XML_wp, XML_anchor, 
XFastAttributeListRef( attrList ));
 m_pSerializer-singleElementNS( XML_wp, XML_simplePos, XML_x, 0, 
XML_y, 0, FSEND ); // required, unused
 const char* relativeFromH;
 const char* relativeFromV;
-switch( 

add a READMEs to the autom4te.cache and clone modules

2012-11-10 Thread Norbert Thiebaud (via Code Review)
Norbert Thiebaud has abandoned this change.

Change subject: add a READMEs to the autom4te.cache and clone modules
..


Patch Set 1: Abandoned

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

Gerrit-MessageType: abandon
Gerrit-Change-Id: Ic1ed15d4cfe72da8ef47d1633671a19df4fcf52f
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Manal Alhassoun malhass...@kacst.edu.sa
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com
Gerrit-Reviewer: Peter Foley jpfol...@gmail.com

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


[PUSHED] Change in core[libreoffice-3-6]: fdo#51550 fix DOCX export dataloss on non-math/chart OLE exp...

2012-11-10 Thread Norbert Thiebaud (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/1017

Approvals:
  Norbert Thiebaud: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I141a3de1a449f4261c7086e10f2c141b3f6cdb10
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: libreoffice-3-6
Gerrit-Owner: Miklos Vajna vmik...@suse.cz
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com

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


add a README files to solver and workdir

2012-11-10 Thread Norbert Thiebaud (via Code Review)
Norbert Thiebaud has abandoned this change.

Change subject: add a README files to solver and workdir
..


Patch Set 1: Abandoned

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

Gerrit-MessageType: abandon
Gerrit-Change-Id: I26861744c14776286665944a09bd5a3a7f8a7516
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Aliah Almusaireae almusair...@kacst.edu.sa
Gerrit-Reviewer: Michael Meeks michael.me...@suse.com
Gerrit-Reviewer: Rene Engelhard rene.engelhard...@googlemail.com

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


Re: binfilter removed in LO 4.0 : how to communicate on this change?

2012-11-10 Thread Jean-Baptiste Faure
Hi Andras,

Le 10/11/2012 10:00, Andras Timar a écrit :
 Hi Jean-Baptiste,

 On Sat, Nov 10, 2012 at 8:17 AM, Jean-Baptiste Faure
 jbf.fa...@sud-ouest.org wrote:
 - release a complete list of legacy formats which are dropped. Is there
 something else than sd? formats (StarOffice 5 formats) ?
 It affects only old binary formats of StarOffice 5 and earlier versions.
Ok, that reduces the number of affected users ;-)
 BTW shoudn't we remove traces of binfiler from filter/, too?
 cd filter  git grep BF_ gives a lot of hits.
Yes, that would make the things more clear.
 - what the user can do with its old files: I think it is not enough to
 say you have to convert them with an old version of LibreOffice. For
 example, I have old sdw and sxw files in my laboratory diary and I do
 not want to lose their modification date if I convert them in ODF. What
 should I do and what advice I could give to an end-user who is in the
 same position?
 sxw and other XML based formats are not affected.
Indeed, the master is still able to open my sx? files.
 I opened an old sdw file (rsc\doku\feinkonz.43\rsc.sdw from
 LibreOrfice source) and it did not have modification date, In fact it
 had no metadata at all. Are you sure that this format supports
 metadata? Of do you mean the modification date at the file system
 level? touch -r file.sdw file.odt
Yes, I mean the modification date at the file system level. I know that
some images converters are able to convert photo from a format to
another without changing this date. So it is probably possible to do the
same for old documents.

My problem is to have all necessary informations to help end-users to
keep their old files/data in a readable format without losing important
informations. I think the modification date is one of them.

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


[Libreoffice-commits] .: 3 commits - Makefile.top README.cross smoketest/data

2012-11-10 Thread Libreoffice Gerrit user
 Makefile.top  |1 -
 README.cross  |1 -
 smoketest/data/Global.xml |   31 +--
 3 files changed, 5 insertions(+), 28 deletions(-)

New commits:
commit 7f97d3140735126d0b89a0675985776cf2acb6d4
Author: Norbert Thiebaud nthieb...@gmail.com
Date:   Sat Nov 10 03:39:50 2012 -0600

adjust README.cross to reflect binfitler removal

Change-Id: Iee3fa02bde03ced462460e4ba3e17200f47a27e5

diff --git a/README.cross b/README.cross
index 833e177..06123b6 100644
--- a/README.cross
+++ b/README.cross
@@ -136,7 +136,6 @@ CXX_FOR_BUILD=ccache g++
 --host=i686-w64-mingw32
 --with-distro=LibreOfficeWin32
 --disable-activex
---disable-binfilter
 --disable-build-mozilla
 --disable-directx
 --disable-ext-nlpsolver
commit c8139c6f1a8dc8dc2b0d13919afffbee869605cc
Author: Norbert Thiebaud nthieb...@gmail.com
Date:   Sat Nov 10 03:39:17 2012 -0600

do not even try to do binfilter test in smoketest

Change-Id: I81fa1217feda5b4faf73add5304e8a191bbfbdc3

diff --git a/smoketest/data/Global.xml b/smoketest/data/Global.xml
index 9ae271e..a445283 100644
--- a/smoketest/data/Global.xml
+++ b/smoketest/data/Global.xml
@@ -105,16 +105,10 @@ Global bMakeSaveOpen8Test as boolean, bMakeMacrosTest as 
boolean
 
 global sExtensionURL as string
 
-global oBinFilterComp as Object
-
 Dim gDlgState as Integer
 
 Sub SetGlobalDoc
 gOutputDoc = ThisComponent
-REM need to have the binfilter component, and SRC_ROOT set to find sample 
docs
-if Environ(quot;SRC_ROOTquot;) lt;gt; quot;quot; then
-oBinFilterComp = createUnoService( 
quot;com.sun.star.comp.office.BF_MigrateFilterquot; )
-End If
 end Sub
 
 Sub ClearStatus
@@ -534,10 +528,8 @@ Sub SetGlobalOptionsDialog ()
 REM create dialog control
 gOptionsDialog = CreateUnoDialog( oInputStreamProvider )
 
-if isNull(oBinFilterComp) then
-oControl = gOptionsDialog.getControl(quot;cbOpen50Testquot;)
-oControl.Model.setPropertyValue(quot;Enabledquot;, FALSE)
-end If
+oControl = gOptionsDialog.getControl(quot;cbOpen50Testquot;)
+oControl.Model.setPropertyValue(quot;Enabledquot;, FALSE)
 
 end Sub
 
@@ -596,11 +588,7 @@ Sub GetOptions
 gOptionsDialog.getControl(quot;cbDatabaseTestquot;).setState( -( 
GetUserFieldState (cUserFieldTestDatabase, gOutputDoc)))
 gOptionsDialog.getControl(quot;cbExtensionTestquot;).setState( -( 
GetUserFieldState (cUserFieldTestExtension, gOutputDoc)))
 gOptionsDialog.getControl(quot;cbSaveOpenXMLTestquot;).setState( -( 
GetUserFieldState (cUserFieldTestOpenSaveXML, gOutputDoc)))
-if not isNull(oBinFilterComp) then
-gOptionsDialog.getControl(quot;cbOpen50Testquot;).setState( -( 
GetUserFieldState (cUserFieldTestOpen50, gOutPutDoc)))
-else
-gOptionsDialog.getControl(quot;cbOpen50Testquot;).setState(0)
-end If
+gOptionsDialog.getControl(quot;cbOpen50Testquot;).setState(0)
 gOptionsDialog.getControl(quot;cbSaveOpen8Testquot;).setState( -( 
GetUserFieldState (cUserFieldTestOpenSave8, gOutputDoc)))
 gOptionsDialog.getControl(quot;cbMacrosTestquot;).setState( -( 
GetUserFieldState (cUserFieldTestMacros, gOutputDoc)))
 gOptionsDialog.getControl(quot;cbTerminateAfterTestquot;).setState( -( 
GetUserFieldState (cUserFieldTestTerminateAfterTest, gOutputDoc)))
@@ -619,11 +607,7 @@ Sub ReadOptions
 bMakeDBTest = GetUserFieldState (cUserFieldTestDatabase, gOutputDoc)
 bMakeExtensionTest = GetUserFieldState (cUserFieldTestExtension, 
gOutputDoc)
 bMakeSaveOpenXMLTest = GetUserFieldState (cUserFieldTestOpenSaveXML, 
gOutputDoc)
-if not isNull(oBinFilterComp) then
-bMakeOpen50Test = GetUserFieldState (cUserFieldTestOpen50, gOutPutDoc)
-else
-bMakeOpen50Test = false
-End If
+bMakeOpen50Test = false
 bMakeSaveOpen8Test = GetUserFieldState (cUserFieldTestOpenSave8, 
gOutputDoc)
 bMakeMacrosTest = GetUserFieldState (cUserFieldTestMacros, gOutputDoc)
 bMakeTerminateAfterTest = GetUserFieldState 
(cUserFieldTestTerminateAfterTest, gOutputDoc)
@@ -647,12 +631,7 @@ Sub SetDefaultOptions
 bMakeExtensionTest = true
 End If
 bMakeSaveOpenXMLTest = true
-REM Disable StarOffice 5.0 tests in case binfilter has not been included
-if not isNull(oBinFilterComp) then
-bMakeOpen50Test = true
-else
-bMakeOpen50Test = false
-End If
+bMakeOpen50Test = false
 bMakeSaveOpen8Test = true
 bMakeMacrosTest = true
 bMakeTerminateAfterTest = false
commit bbd4b99c8199347f1a40655cce39ab44df04a17a
Author: Norbert Thiebaud nthieb...@gmail.com
Date:   Sat Nov 10 03:38:45 2012 -0600

binfilter is not a dmake module anymore...

Change-Id: Iec1e114fd6803624ad5ef6812ab50c8e8a4695fa

diff --git a/Makefile.top b/Makefile.top
index 5ab6e59..42e63a0 100644
--- a/Makefile.top
+++ b/Makefile.top
@@ -217,7 +217,6 @@ zlib\
 
 dmake_modules:=\
 berkeleydb\
-binfilter \
 cairo\
 cppunit\
 crashrep\

Re: binfilter removed in LO 4.0 : how to communicate on this change?

2012-11-10 Thread Alex Thurgood
On 11/10/2012 08:17 AM, Jean-Baptiste Faure wrote:

Hi Jean-Baptiste,


 - what the user can do with its old files: I think it is not enough to
 say you have to convert them with an old version of LibreOffice. For
 example, I have old sdw and sxw files in my laboratory diary and I do
 not want to lose their modification date if I convert them in ODF. What
 should I do and what advice I could give to an end-user who is in the
 same position?
 

You make a good point, but if there are no mechanisms in place to
guarantee the date of creation of the file in the first place, then the
fact that the last modified date might get changed when converting to
ODT will not make the file creation date any less valid than the already
suspect file creation date. If your lab books/diary, which I'm
assuming are electronic, do not have a certifiable means of
guaranteeing the date of creation of any added file then the whole point
is moot, since if you can change that date without impacting on file
integrity then you can do pretty much anything you like to your files
and their legal value as elements of proof of creation will be next to
worthless.



Alex


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


Re: VS 2010 Express merge module issue

2012-11-10 Thread Andras Timar
Hi Mat,

On Sat, Nov 10, 2012 at 12:28 AM, Mat M m...@gmx.fr wrote:
 Hello

 VS2010 Express works great to build LO, but not for packaging. Although all
 MSVC*100.dll are there, the express version does not ship the merge module.
 This makes the packaging abort, because it expects the msm file to insert
 msvc files into the msi.
 Should we manage to store an msm version somewhere (like
 http://dev-www.libreoffice.org/extern) or provide a workaround to define ?


msm files are not redistributable, only as a part of our installation
sets (i.e. already merged). 6cfe3c93dc55264e57f1057a2911d54232353d13
wanted to make VC100 merge modules truly optional, so the intention
was that everything should work without this merge module. If it fails
for you, please try to find out why, try to fix it and send a patch.
See also http://opengrok.libreoffice.org/history/core/oowintool. The
question is why you have WITH_VC100_REDIST defined. Many thanks in
advance.

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


[Libreoffice-commits] .: sal/inc sal/qa sdext/source unodevtools/source

2012-11-10 Thread Libreoffice Gerrit user
 sal/inc/rtl/string.hxx  |   14 +++
 sal/qa/rtl/strings/test_strings_replace.cxx |   12 --
 sdext/source/pdfimport/test/tests.cxx   |   10 --
 unodevtools/source/skeletonmaker/cppcompskeleton.cxx|1 
 unodevtools/source/skeletonmaker/cpptypemaker.cxx   |1 
 unodevtools/source/skeletonmaker/javacompskeleton.cxx   |1 
 unodevtools/source/skeletonmaker/javatypemaker.cxx  |1 
 unodevtools/source/skeletonmaker/ostringostreaminserter.hxx |   49 
 unodevtools/source/skeletonmaker/skeletoncommon.cxx |1 
 unodevtools/source/skeletonmaker/skeletonmaker.cxx  |1 
 10 files changed, 14 insertions(+), 77 deletions(-)

New commits:
commit 26364f4fd346c36f2c3ba4c2228d62de845fe13e
Author: Miklos Vajna vmik...@suse.cz
Date:   Sat Nov 10 10:48:15 2012 +0100

deduplicate OString std::basic_ostream operators

I wanted to add one, based on OUString one, and Stephan on IRC agreed
it's a good idea. Then it turned out we already had it in sal unit
tests, sdext and unodevtools as well. Get rid of all these, and have a
single implementation in string.hxx, so it can be used everywhere.

Change-Id: Ibb820f20a138d055fd87036253c627fb862a31fe

diff --git a/sal/inc/rtl/string.hxx b/sal/inc/rtl/string.hxx
index a135d4e..e45b837 100644
--- a/sal/inc/rtl/string.hxx
+++ b/sal/inc/rtl/string.hxx
@@ -1479,6 +1479,20 @@ struct OStringHash
 
 /* === */
 
+/**
+Support for rtl::OString in std::ostream (and thus in
+CPPUNIT_ASSERT or SAL_INFO macros, for example).
+
+@since LibreOffice 3.7
+ */
+template typename charT, typename traits  std::basic_ostreamcharT, traits 
+operator (
+std::basic_ostreamcharT, traits  stream, rtl::OString const  string)
+{
+return stream  string.getStr();
+// best effort; potentially loses data due to embedded null characters
+}
+
 } /* Namespace */
 
 #ifdef RTL_USING
diff --git a/sal/qa/rtl/strings/test_strings_replace.cxx 
b/sal/qa/rtl/strings/test_strings_replace.cxx
index 5e1b0cf..a46245f 100644
--- a/sal/qa/rtl/strings/test_strings_replace.cxx
+++ b/sal/qa/rtl/strings/test_strings_replace.cxx
@@ -37,18 +37,6 @@
 #include rtl/ustring.h
 #include rtl/ustring.hxx
 
-namespace rtl {
-
-template typename charT, typename traits  std::basic_ostreamcharT, traits 
-operator (
-std::basic_ostreamcharT, traits  stream, rtl::OString const  string)
-{
-return stream  string.getStr();
-// best effort; potentially loses data due to embedded null characters
-}
-
-}
-
 namespace {
 
 class Test: public CppUnit::TestFixture {
diff --git a/sdext/source/pdfimport/test/tests.cxx 
b/sdext/source/pdfimport/test/tests.cxx
index a452ba0..5475619 100644
--- a/sdext/source/pdfimport/test/tests.cxx
+++ b/sdext/source/pdfimport/test/tests.cxx
@@ -72,16 +72,6 @@ using namespace ::pdfparse;
 using namespace ::pdfi;
 using namespace ::com::sun::star;
 
-namespace rtl
-{
-template typename charT, typename traits  std::basic_ostreamcharT, 
traits 
-operator (
-std::basic_ostreamcharT, traits  stream, rtl::OString const 
 string)
-{
-return stream  string.getStr();
-}
-}
-
 namespace
 {
 
diff --git a/unodevtools/source/skeletonmaker/cppcompskeleton.cxx 
b/unodevtools/source/skeletonmaker/cppcompskeleton.cxx
index f274456..21dec5f 100644
--- a/unodevtools/source/skeletonmaker/cppcompskeleton.cxx
+++ b/unodevtools/source/skeletonmaker/cppcompskeleton.cxx
@@ -19,7 +19,6 @@
 
 #include codemaker/commoncpp.hxx
 
-#include ostringostreaminserter.hxx
 #include skeletoncommon.hxx
 #include skeletoncpp.hxx
 
diff --git a/unodevtools/source/skeletonmaker/cpptypemaker.cxx 
b/unodevtools/source/skeletonmaker/cpptypemaker.cxx
index 61f91d3..b66a049 100644
--- a/unodevtools/source/skeletonmaker/cpptypemaker.cxx
+++ b/unodevtools/source/skeletonmaker/cpptypemaker.cxx
@@ -19,7 +19,6 @@
 
 #include codemaker/commoncpp.hxx
 
-#include ostringostreaminserter.hxx
 #include skeletoncommon.hxx
 #include skeletoncpp.hxx
 
diff --git a/unodevtools/source/skeletonmaker/javacompskeleton.cxx 
b/unodevtools/source/skeletonmaker/javacompskeleton.cxx
index 4f09fc7..772a55a 100644
--- a/unodevtools/source/skeletonmaker/javacompskeleton.cxx
+++ b/unodevtools/source/skeletonmaker/javacompskeleton.cxx
@@ -19,7 +19,6 @@
 
 #include codemaker/commonjava.hxx
 
-#include ostringostreaminserter.hxx
 #include skeletoncommon.hxx
 #include skeletonjava.hxx
 
diff --git a/unodevtools/source/skeletonmaker/javatypemaker.cxx 
b/unodevtools/source/skeletonmaker/javatypemaker.cxx
index c60f621..96870f5 100644
--- a/unodevtools/source/skeletonmaker/javatypemaker.cxx
+++ b/unodevtools/source/skeletonmaker/javatypemaker.cxx
@@ -19,7 +19,6 @@
 
 #include codemaker/commonjava.hxx
 
-#include ostringostreaminserter.hxx
 #include skeletoncommon.hxx
 

Re: minutes of ESC call ...

2012-11-10 Thread Alex Thurgood
On 11/09/2012 09:29 AM, Alex Thurgood wrote:
Rene, Stephan,

I see your points and concerns. Couldn't we have, as a potential
alternative, a hack (easy or not, I wouldn't know) to replace the
current implementations with something more manageable (if indeed that
is possible, and however that might be defined) ?


Alex

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


[Libreoffice-commits] .: sw/source

2012-11-10 Thread Libreoffice Gerrit user
 sw/source/filter/ww8/docxattributeoutput.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit e2a54eb75c6d754d48a546fda4df65fdcc19111e
Author: Miklos Vajna vmik...@suse.cz
Date:   Sat Nov 10 10:56:12 2012 +0100

DocxAttributeOutput::FlyFrameGraphic: add assert to avoid misuse of the API

Change-Id: I5d09e297294439fafad94177d8e87ccdf829b18d

diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx 
b/sw/source/filter/ww8/docxattributeoutput.cxx
index 9a9b30f..45abbf6 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -1991,6 +1991,8 @@ void DocxAttributeOutput::DefaultStyle( sal_uInt16 nStyle 
)
 void DocxAttributeOutput::FlyFrameGraphic( const SwGrfNode* pGrfNode, const 
Size rSize, const SwFlyFrmFmt* pOLEFrmFmt, SwOLENode* pOLENode )
 {
 OSL_TRACE( TODO DocxAttributeOutput::FlyFrameGraphic( const SwGrfNode* 
pGrfNode, const Size rSize, const SwFlyFrmFmt* pOLEFrmFmt, SwOLENode* pOLENode 
) - some stuff still missing );
+// detect mis-use of the API
+assert(pGrfNode || (pOLEFrmFmt  pOLENode));
 const SwFrmFmt* pFrmFmt = pGrfNode ? pGrfNode-GetFlyFmt() : pOLEFrmFmt;
 // create the relation ID
 OString aRelId;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PATCH] Adding vcl library to sdext module

2012-11-10 Thread Issa Alkurtass (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1023

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/23/1023/1

Adding vcl library to sdext module

This patch adds vcl library to sdext module which is needed to fix the RTL
presenter view (fdo#42070).

Change-Id: I8dd862373c2715620464e49567d2de850de10019
---
M sdext/Library_presenter.mk
1 file changed, 1 insertion(+), 0 deletions(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I8dd862373c2715620464e49567d2de850de10019
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Issa Alkurtass ialkurt...@kacst.edu.sa

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


[Libreoffice-commits] .: sc/source

2012-11-10 Thread Libreoffice Gerrit user
 sc/source/ui/dbgui/tpsubt.cxx |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

New commits:
commit 0f69e050cf8e3caeff6f542c623dab1c57948e60
Author: jailletc36 christophe.jail...@wanadoo.fr
Date:   Sat Nov 10 11:07:54 2012 +0100

Update

Change-Id: I78f7f7ae7373e00e0750abc4566c71a8b9c1640a
Reviewed-on: https://gerrit.libreoffice.org/1019
Reviewed-by: Norbert Thiebaud nthieb...@gmail.com
Tested-by: Norbert Thiebaud nthieb...@gmail.com

diff --git a/sc/source/ui/dbgui/tpsubt.cxx b/sc/source/ui/dbgui/tpsubt.cxx
index 7ddb18e..6651afa 100644
--- a/sc/source/ui/dbgui/tpsubt.cxx
+++ b/sc/source/ui/dbgui/tpsubt.cxx
@@ -275,20 +275,19 @@ void ScTpSubTotalGroup::FillListBoxes()
 SCTAB   nTab= pViewData-GetTabNo();
 SCCOL   nMaxCol = rSubTotalData.nCol2;
 SCCOL   col;
-sal_uInt16  i=0;
 rtl::OUString  aFieldName;
 
 aLbGroup.Clear();
 aLbColumns.Clear();
 aLbGroup.InsertEntry( aStrNone, 0 );
 
-i=0;
+sal_uInt16 i=0;
 for ( col=nFirstCol; col=nMaxCol  iSC_MAXFIELDS; col++ )
 {
 pDoc-GetString( col, nFirstRow, nTab, aFieldName );
 if ( aFieldName.isEmpty() )
 {
-   rtl::OUStringBuffer aBuf;
+rtl::OUStringBuffer aBuf;
 aBuf.append(aStrColumn);
 aFieldName = aBuf.makeStringAndClear().replaceAll(%1, 
ScColToAlpha( col ));
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PUSHED] Update

2012-11-10 Thread Norbert Thiebaud (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/1019

Approvals:
  Norbert Thiebaud: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I78f7f7ae7373e00e0750abc4566c71a8b9c1640a
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Christophe JAILLET christophe.jail...@wanadoo.fr
Gerrit-Reviewer: Christophe JAILLET christophe.jail...@wanadoo.fr
Gerrit-Reviewer: Eike Rathke er...@redhat.com
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com

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


[Libreoffice-commits] .: 2 commits - src/docsprm.py test/charprops.rtf test/hello.rtf test/parprops.rtf

2012-11-10 Thread Miklos Vajna
 src/docsprm.py |   85 ++---
 test/charprops.rtf |3 +
 test/hello.rtf |3 +
 test/parprops.rtf  |4 ++
 4 files changed, 91 insertions(+), 4 deletions(-)

New commits:
commit a3f870a053565fcc0cfa9ac04a7cc0b7466775de
Author: Miklos Vajna vmik...@suse.cz
Date:   Sat Nov 10 11:55:03 2012 +0100

add a few test Word files for features which are already dumped

I'm adding these as RTF as that format is much more compact and being a
textural format it's more suitable for git checkin.

diff --git a/test/charprops.rtf b/test/charprops.rtf
new file mode 100644
index 000..d0a2a3a
--- /dev/null
+++ b/test/charprops.rtf
@@ -0,0 +1,3 @@
+{\rtf1
+Hello \b world!\par
+}
diff --git a/test/hello.rtf b/test/hello.rtf
new file mode 100644
index 000..af7104a
--- /dev/null
+++ b/test/hello.rtf
@@ -0,0 +1,3 @@
+{\rtf1
+Hello world!\par
+}
diff --git a/test/parprops.rtf b/test/parprops.rtf
new file mode 100644
index 000..149e819
--- /dev/null
+++ b/test/parprops.rtf
@@ -0,0 +1,4 @@
+{\rtf1
+Hello world!\par
+\qc Second para.\par
+}
commit 878768260ef9eb99fc3900660fb5b42321a174f2
Author: Miklos Vajna vmik...@suse.cz
Date:   Sat Nov 10 11:49:22 2012 +0100

add complete char sprm list from doc spec

diff --git a/src/docsprm.py b/src/docsprm.py
index 32e52d8..5255cd6 100755
--- a/src/docsprm.py
+++ b/src/docsprm.py
@@ -95,15 +95,92 @@ parMap = {
 0x2471: sprmPTtwo,
 }
 
-# TODO incomplete
+# see 2.6.1 of the spec
 chrMap = {
-0x4A43: sprmCHps,
+0x0800: sprmCFRMarkDel,
+0x0801: sprmCFRMarkIns,
+0x0802: sprmCFFldVanish,
+0x6A03: sprmCPicLocation,
+0x4804: sprmCIbstRMark,
+0x6805: sprmCDttmRMark,
+0x0806: sprmCFData,
+0x4807: sprmCIdslRMark,
+0x6A09: sprmCSymbol,
+0x080A: sprmCFOle2,
+0x2A0C: sprmCHighlight,
+0x0811: sprmCFWebHidden,
+0x6815: sprmCRsidProp,
 0x6816: sprmCRsidText,
+0x6817: sprmCRsidRMDel,
+0x0818: sprmCFSpecVanish,
+0xC81A: sprmCFMathPr,
+0x4A30: sprmCIstd,
+0xCA31: sprmCIstdPermute,
+0x2A33: sprmCPlain,
+0x2A34: sprmCKcd,
+0x0835: sprmCFBold,
+0x0836: sprmCFItalic,
+0x0837: sprmCFStrike,
+0x0838: sprmCFOutline,
+0x0839: sprmCFShadow,
+0x083A: sprmCFSmallCaps,
+0x083B: sprmCFCaps,
+0x083C: sprmCFVanish,
+0x2A3E: sprmCKul,
+0x8840: sprmCDxaSpace,
+0x2A42: sprmCIco,
+0x4A43: sprmCHps,
+0x4845: sprmCHpsPos,
+0xCA47: sprmCMajority,
+0x2A48: sprmCIss,
+0x484B: sprmCHpsKern,
+0x484E: sprmCHresi,
 0x4A4F: sprmCRgFtc0,
+0x4A50: sprmCRgFtc1,
 0x4A51: sprmCRgFtc2,
-0x4A61: sprmCHpsBi,
-0x0835: sprmCFBold,
+0x4852: sprmCCharScale,
+0x2A53: sprmCFDStrike,
+0x0854: sprmCFImprint,
+0x0855: sprmCFSpec,
+0x0856: sprmCFObj,
+0xCA57: sprmCPropRMark90,
+0x0858: sprmCFEmboss,
+0x2859: sprmCSfxText,
+0x085A: sprmCFBiDi,
 0x085C: sprmCFBoldBi,
+0x085D: sprmCFItalicBi,
+0x4A5E: sprmCFtcBi,
+0x485F: sprmCLidBi,
+0x4A60: sprmCIcoBi,
+0x4A61: sprmCHpsBi,
+0xCA62: sprmCDispFldRMark,
+0x4863: sprmCIbstRMarkDel,
+0x6864: sprmCDttmRMarkDel,
+0x6865: sprmCBrc80,
+0x4866: sprmCShd80,
+0x4867: sprmCIdslRMarkDel,
+0x0868: sprmCFUsePgsuSettings,
+0x486D: sprmCRgLid0_80,
+0x486E: sprmCRgLid1_80,
+0x286F: sprmCIdctHint,
+0x6870: sprmCCv,
+0xCA71: sprmCShd,
+0xCA72: sprmCBrc,
+0x4873: sprmCRgLid0,
+0x4874: sprmCRgLid1,
+0x0875: sprmCFNoProof,
+0xCA76: sprmCFitText,
+0x6877: sprmCCvUl,
+0xCA78: sprmCFELayout,
+0x2879: sprmCLbcCRJ,
+0x0882: sprmCFComplexScripts,
+0x2A83: sprmCWall,
+0xCA85: sprmCCnf,
+0x2A86: sprmCNeedFontFixup,
+0x6887: sprmCPbiIBullet,
+0x4888: sprmCPbiGrf,
+0xCA89: sprmCPropRMark,
+0x2A90: sprmCFSdtVanish,
 }
 
 # vim:set filetype=python shiftwidth=4 softtabstop=4 expandtab:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2012-11-10 Thread Libreoffice Gerrit user
 l10ntools/source/lngmerge.cxx |1 +
 l10ntools/source/localize.cxx |   24 +++-
 l10ntools/source/po.cxx   |4 ++--
 l10ntools/source/renewpo.cxx  |   25 +
 4 files changed, 35 insertions(+), 19 deletions(-)

New commits:
commit 8e0d67bed54633d555a4601a5d79e2d5ba7ab2bb
Author: Zolnai Tamás zolnaitamas2...@gmail.com
Date:   Sat Nov 10 11:58:48 2012 +0100

Add some check to renewpo

Change-Id: I7b90785516f172f7b552a9e5ae30d02f7c52d7cf

diff --git a/l10ntools/source/renewpo.cxx b/l10ntools/source/renewpo.cxx
index 241db58..32d19d5 100644
--- a/l10ntools/source/renewpo.cxx
+++ b/l10ntools/source/renewpo.cxx
@@ -158,14 +158,23 @@ void HandleLanguage(struct dirent* pLangEntry, const 
OString rPath,
 {
 sActUnTrans = DelLocalId(sActUnTrans);
 }
-PoEntry aPE(sActUnTrans, vTypes[nIndex]);
-const OString sActStr =
-sActTrans.getToken(vTypes[nIndex],'\t');
-aPE.setMsgStr(sActStr);
-aPE.setFuzzy( sActStr.isEmpty() ? false :
-static_castbool(sActTrans.getToken(PoEntry::DUMMY,'\t').
-copy(nDummyBit++,1).toBoolean()));
-aNewPo.writeEntry(aPE);
+try
+{
+PoEntry aPE(sActUnTrans, vTypes[nIndex]);
+const OString sActStr =
+sActTrans.getToken(vTypes[nIndex],'\t');
+aPE.setMsgStr(sActStr);
+aPE.setFuzzy( sActStr.isEmpty() ? false :
+
static_castbool(sActTrans.getToken(PoEntry::DUMMY,'\t').
+copy(nDummyBit++,1).toBoolean()));
+aNewPo.writeEntry(aPE);
+}
+catch( PoEntry::Exception )
+{
+cerr
+ Invalid sdf line 
+ sActUnTrans.replaceAll(\t,\\t).getStr()  '\n';
+}
 }
 }
 //Check wheather next entry is in the same po file
commit 643ffdf621a056a266c1c6121388e4d0b06adb0d
Author: Zolnai Tamás zolnaitamas2...@gmail.com
Date:   Thu Nov 8 17:16:06 2012 +0100

Add an extra empty line to lngmerge

It worked with eof before so an extra line
is needed.
See also this commit:
06175e8b19625cb5a43b1ae5ae63e419cee7e053

Change-Id: Ic3f43a52801429258df620229269b8426f1e2995

diff --git a/l10ntools/source/lngmerge.cxx b/l10ntools/source/lngmerge.cxx
index efc6c81..42b6384 100644
--- a/l10ntools/source/lngmerge.cxx
+++ b/l10ntools/source/lngmerge.cxx
@@ -66,6 +66,7 @@ LngParser::LngParser(const rtl::OString rLngFile,
 pLines-push_back( new rtl::OString(sLine) );
 std::getline(aStream, s);
 }
+pLines-push_back( new rtl::OString() );
 }
 else
 nError = LNG_COULD_NOT_OPEN;
commit ed879cdf2957fcfb013a894dd1ed8bf512f10301
Author: Zolnai Tamás zolnaitamas2...@gmail.com
Date:   Thu Nov 8 12:05:55 2012 +0100

Correct typo in po header

Change-Id: Ic98467f5c32a0a84af62f68fbe84c68c3e37f1c1

diff --git a/l10ntools/source/po.cxx b/l10ntools/source/po.cxx
index 9dd6d6a..18c0ef1 100644
--- a/l10ntools/source/po.cxx
+++ b/l10ntools/source/po.cxx
@@ -683,8 +683,8 @@ PoHeader::PoHeader( const OString rExtSrc )
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-X-Genarator: LibreOffice\n
-X-Accelerator_Marker: ~\n));
+X-Generator: LibreOffice\n
+X-Accelerator-Marker: ~\n));
 m_bIsInitialized = true;
 }
 
commit 9e682e30e7cd2d90ad37921934fbf0f5f1897eb3
Author: Zolnai Tamás zolnaitamas2...@gmail.com
Date:   Thu Nov 8 11:13:59 2012 +0100

Localize.cxx add correct header to po

Belong to dictionaries modul

Change-Id: Ifd8303fd294de2369383cc2ce7ebdd1487c90463

diff --git a/l10ntools/source/localize.cxx b/l10ntools/source/localize.cxx
index f808af5..c4af640 100644
--- a/l10ntools/source/localize.cxx
+++ b/l10ntools/source/localize.cxx
@@ -262,17 +262,23 @@ void handleCommand(
  outFilePath.getStr()  \n;
 throw false; //TODO
 }
-rtl::OString relativPath;
-if (!inPath.copy(inPath.indexOf(project),
-inPath.lastIndexOf('/')-inPath.indexOf(project)).
-convertToString(relativPath, osl_getThreadTextEncoding(),
-(RTL_UNICODETOTEXT_FLAGS_UNDEFINED_ERROR
-| RTL_UNICODETOTEXT_FLAGS_INVALID_ERROR)))
+
+//Add header to actual po file
 {
-std::cerr  Error: Cannot convert pathname from UTF-16\n;
-throw false; //TODO
+const sal_Int32 nProjectInd = inPath.indexOf(project);
+const OString relativPath =
+

[Libreoffice-commits] .: lingucomponent/source

2012-11-10 Thread Libreoffice Gerrit user
 lingucomponent/source/languageguessing/guess.cxx |2 +-
 lingucomponent/source/languageguessing/guesslang.cxx |2 +-
 lingucomponent/source/languageguessing/simpleguesser.cxx |2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 70dcf3426d7519429e0afae3809dc9dbcd01ce45
Author: David Tardon dtar...@redhat.com
Date:   Sat Nov 10 10:53:51 2012 +0100

fix typo

Change-Id: I4a2bc7307e40ddb8a9a039c1d1b738338dcc5122

diff --git a/lingucomponent/source/languageguessing/guess.cxx 
b/lingucomponent/source/languageguessing/guess.cxx
index 3fbc4a2..fa07ba9 100644
--- a/lingucomponent/source/languageguessing/guess.cxx
+++ b/lingucomponent/source/languageguessing/guess.cxx
@@ -21,7 +21,7 @@
 #include iostream
 #include string.h
 
-#ifdef SYSTEM_LIBEXTEXTCAT
+#ifdef SYSTEM_LIBEXTTEXTCAT
 #include libexttextcat/textcat.h
 #else
 #include textcat.h
diff --git a/lingucomponent/source/languageguessing/guesslang.cxx 
b/lingucomponent/source/languageguessing/guesslang.cxx
index 977c245..d6330ff 100644
--- a/lingucomponent/source/languageguessing/guesslang.cxx
+++ b/lingucomponent/source/languageguessing/guesslang.cxx
@@ -40,7 +40,7 @@
 
 #include sal/macros.h
 
-#ifdef SYSTEM_LIBEXTEXTCAT
+#ifdef SYSTEM_LIBEXTTEXTCAT
 #include libexttextcat/textcat.h
 #else
 #include textcat.h
diff --git a/lingucomponent/source/languageguessing/simpleguesser.cxx 
b/lingucomponent/source/languageguessing/simpleguesser.cxx
index 8057bef..1162884 100644
--- a/lingucomponent/source/languageguessing/simpleguesser.cxx
+++ b/lingucomponent/source/languageguessing/simpleguesser.cxx
@@ -32,7 +32,7 @@
 #include sstream
 #include iostream
 
-#ifdef SYSTEM_LIBEXTEXTCAT
+#ifdef SYSTEM_LIBEXTTEXTCAT
 #include libexttextcat/textcat.h
 #include libexttextcat/common.h
 #include libexttextcat/constants.h
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Linux make dev-install fails with 3.6

2012-11-10 Thread julien2412
Hello,

On pc Debian nx86-64 with 3.6 sources updated today, make dev-install
fails.
: ERROR: Removing file dict-af.oxt from file list.
: ERROR: Removing file dict-an.oxt from file list.
: ERROR: Removing file dict-ar.oxt from file list.
: ERROR: Removing file dict-be.oxt from file list.
: ERROR: Removing file dict-bg.oxt from file list.
: ERROR: Removing file dict-bn.oxt from file list.
: ERROR: Removing file dict-br.oxt from file list.
: ERROR: Removing file dict-ca.oxt from file list.
: ERROR: Removing file dict-cs.oxt from file list.
: ERROR: Removing file dict-da.oxt from file list.
: ERROR: Removing file dict-de.oxt from file list.
: ERROR: Removing file dict-el.oxt from file list.
: ERROR: Removing file dict-en.oxt from file list.
: ERROR: Removing file dict-es.oxt from file list.
: ERROR: Removing file dict-et.oxt from file list.
: ERROR: Removing file dict-fr.oxt from file list.
: ERROR: Removing file dict-gd.oxt from file list.
: ERROR: Removing file dict-gl.oxt from file list.
: ERROR: Removing file dict-gu.oxt from file list.
: ERROR: Removing file dict-he.oxt from file list.
: ERROR: Removing file dict-hi.oxt from file list.
: ERROR: Removing file dict-hr.oxt from file list.
: ERROR: Removing file dict-hu.oxt from file list.
: ERROR: Removing file dict-it.oxt from file list.
: ERROR: Removing file dict-ku-TR.oxt from file list.
: ERROR: Removing file dict-lt.oxt from file list.
: ERROR: Removing file dict-lv.oxt from file list.
: ERROR: Removing file dict-ne.oxt from file list.
: ERROR: Removing file dict-nl.oxt from file list.
: ERROR: Removing file dict-no.oxt from file list.
: ERROR: Removing file dict-oc.oxt from file list.
: ERROR: Removing file dict-pl.oxt from file list.
: ERROR: Removing file dict-pt-BR.oxt from file list.
: ERROR: Removing file dict-pt-PT.oxt from file list.
: ERROR: Removing file dict-ro.oxt from file list.
: ERROR: Removing file dict-ru.oxt from file list.
: ERROR: Removing file dict-si.oxt from file list.
: ERROR: Removing file dict-sk.oxt from file list.
: ERROR: Removing file dict-sl.oxt from file list.
: ERROR: Removing file dict-sr.oxt from file list.
: ERROR: Removing file dict-sv.oxt from file list.
: ERROR: Removing file dict-sw.oxt from file list.
: ERROR: Removing file dict-te.oxt from file list.
: ERROR: Removing file dict-th.oxt from file list.
: ERROR: Removing file dict-uk.oxt from file list.
: ERROR: Removing file dict-vi.oxt from file list.
: ERROR: Removing file dict-zu.oxt from file list.
: ERROR: Removing file shared_en-US.zip from file list.
: ERROR: Removing file sbasic_en-US.zip from file list.
: ERROR: Removing file scalc_en-US.zip from file list.
: ERROR: Removing file schart_en-US.zip from file list.
: ERROR: Removing file sdatabase_en-US.zip from file list.
: ERROR: Removing file sdraw_en-US.zip from file list.
: ERROR: Removing file simpress_en-US.zip from file list.
: ERROR: Removing file smath_en-US.zip from file list.
: ERROR: Removing file swriter_en-US.zip from file list.
: 
: 
: Removing directory /tmp/ooopackaging/i_322681352547144
: 
: ***
: ERROR: Missing files
: in function: remove_Files_Without_Sourcedirectory
: ***

Sat Nov 10 12:32:26 2012 (00:02 min.)
Failed to install:  at
/home/julien/compile-libreoffice/libo_3_6/solenv/bin/ooinstall line 124.
make[1]: *** [dev-install] error 255
make[1]: quit directory « /home/julien/compile-libreoffice/libo_3_6 »
make: *** [dev-install] Error 2


Here's my autogen.lastrun:
--with-system-odbc
--enable-ext-mysql-connector
--with-system-mysql
--enable-symbols
--enable-ext-barcode
--enable-ext-diagram
--enable-ext-google-docs
--enable-ext-hunart
--enable-ext-nlpsolver
--enable-ext-ct2n
--enable-ext-numbertext
--enable-ext-oooblogger
--enable-ext-pdfimport
--enable-postgresql-sdbc
--enable-ext-presenter-console
--enable-ext-presenter-minimizer
--enable-ext-report-builder
--enable-ext-typo
--enable-ext-validator
--enable-ext-watch-window
--enable-ext-wiki-publisher
--enable-dbus
--enable-graphite
--enable-evolution2
--enable-werror
--enable-debug
--enable-dbgutil
--enable-crashdump
--enable-dependency-tracking
--enable-online-update

julien@julienPC:~/compile-libreoffice/libo_3_6$ ./g branch
= main repo =
* libreoffice-3-6
= dictionaries =
* libreoffice-3-6
  master
= help =
* libreoffice-3-6
  master

Any idea?

Julien



--
View this message in context: 
http://nabble.documentfoundation.org/Linux-make-dev-install-fails-with-3-6-tp4017913.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Linux make dev-install fails with 3.6

2012-11-10 Thread Jean-Baptiste Faure
Le 10/11/2012 12:39, julien2412 a écrit :
 Hello,

 On pc Debian nx86-64 with 3.6 sources updated today, make dev-install
 fails.
No problem from my side under Ubuntu 12.04 x86_64
Version 3.6.4.0+ (Build ID: fc3f771)
My autogen.lastrun :

--without-junit
--enable-ext-pdfimport
--enable-ext-presenter-console
--enable-ext-presenter-minimizer
--with-lang=en-US fr
--enable-binfilter
--enable-graphite
--with-system-cairo
--disable-mozilla
--without-doxygen
--enable-ext-nlpsolver
--with-parallelism=2

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


[Libreoffice-commits] .: 2 commits - src/docdirstream.py src/docrecord.py src/docstream.py

2012-11-10 Thread Miklos Vajna
 src/docdirstream.py |   29 -
 src/docrecord.py|  158 ++--
 src/docstream.py|   56 ++
 3 files changed, 185 insertions(+), 58 deletions(-)

New commits:
commit 58ea499f6069b57e543939bccda271baea4b896c
Author: Miklos Vajna vmik...@suse.cz
Date:   Sat Nov 10 12:52:00 2012 +0100

dump FFN

diff --git a/src/docdirstream.py b/src/docdirstream.py
index 6fa4c17..1e21832 100755
--- a/src/docdirstream.py
+++ b/src/docdirstream.py
@@ -24,27 +24,48 @@ class DOCDirStream:
 else:
 print '%s value=%s' % (key, value)
 
-def getInt8(self, bytes = None, pos = None):
+def getuInt8(self, bytes = None, pos = None):
 if not bytes:
 bytes = self.bytes
 if not pos:
 pos = self.pos
-return ord(struct.unpack(c, bytes[pos:pos+1])[0])
+return struct.unpack(B, bytes[pos:pos+1])[0]
 
-def getInt16(self, bytes = None, pos = None):
+def getuInt16(self, bytes = None, pos = None):
 if not bytes:
 bytes = self.bytes
 if not pos:
 pos = self.pos
 return struct.unpack(H, bytes[pos:pos+2])[0]
 
-def getInt32(self, bytes = None, pos = None):
+def getInt16(self, bytes = None, pos = None):
+if not bytes:
+bytes = self.bytes
+if not pos:
+pos = self.pos
+return struct.unpack(h, bytes[pos:pos+2])[0]
+
+def getuInt32(self, bytes = None, pos = None):
 if not bytes:
 bytes = self.bytes
 if not pos:
 pos = self.pos
 return struct.unpack(I, bytes[pos:pos+4])[0]
 
+def getString(self):
+bytes = []
+while True:
+i = self.getuInt8()
+self.pos += 1
+j = self.getuInt8()
+self.pos += 1
+if i != 0 or j != 0:
+bytes.append(i)
+bytes.append(j)
+else:
+break
+return globals.getUTF8FromUTF16(.join(map(lambda x: chr(x), bytes)))
+
 def getBit(self, byte, bitNumber):
 return (byte  (1  bitNumber))  bitNumber
 
diff --git a/src/docrecord.py b/src/docrecord.py
index 066596b..73dccfb 100755
--- a/src/docrecord.py
+++ b/src/docrecord.py
@@ -14,7 +14,7 @@ class FcCompressed(DOCDirStream):
 
 def dump(self):
 print 'fcCompressed type=FcCompressed offset=%d size=%d bytes' 
% (self.pos, self.size)
-buf = self.getInt32()
+buf = self.getuInt32()
 self.pos += 4
 self.printAndSet(fc, buf  ((2**32-1)  2)) # bits 0..29
 self.printAndSet(fCompressed, self.getBit(buf, 30))
@@ -36,7 +36,7 @@ class Pcd(DOCDirStream):
 
 def dump(self):
 print 'pcd type=Pcd offset=%d size=%d bytes' % (self.pos, 
self.size)
-buf = self.getInt16()
+buf = self.getuInt16()
 self.pos += 2
 self.printAndSet(fNoParaLast, self.getBit(buf, 0))
 self.printAndSet(fR1, self.getBit(buf, 1))
@@ -76,8 +76,8 @@ class PlcPcd(DOCDirStream, PLC):
 pos = self.pos
 for i in range(self.getElements()):
 # aCp
-start = self.getInt32(pos = pos)
-end = self.getInt32(pos = pos + 4)
+start = self.getuInt32(pos = pos)
+end = self.getuInt32(pos = pos + 4)
 print 'aCP index=%d start=%d end=%d' % (i, start, end)
 pos += 4
 
@@ -106,7 +106,7 @@ class Sprm(DOCDirStream):
 7: 3,
 }
 
-self.sprm = self.getInt16()
+self.sprm = self.getuInt16()
 self.pos += 2
 
 self.ispmd = (self.sprm  0x1ff)# 1-9th bits
@@ -115,11 +115,11 @@ class Sprm(DOCDirStream):
 self.spra  = (self.sprm  0xe000)  13 # 14-16th bits
 
 if self.operandSizeMap[self.spra] == 1:
-self.operand = self.getInt8()
+self.operand = self.getuInt8()
 elif self.operandSizeMap[self.spra] == 2:
-self.operand = self.getInt16()
+self.operand = self.getuInt16()
 elif self.operandSizeMap[self.spra] == 4:
-self.operand = self.getInt32()
+self.operand = self.getuInt32()
 else:
 self.operand = todo
 
@@ -168,7 +168,7 @@ class GrpPrlAndIstd(DOCDirStream):
 def dump(self):
 print 'grpPrlAndIstd type=GrpPrlAndIstd offset=%d size=%d 
bytes' % (self.pos, self.size)
 pos = self.pos
-self.printAndSet(istd, self.getInt16())
+self.printAndSet(istd, self.getuInt16())
 pos += 2
 while (self.size - (pos - self.pos))  0:
 prl = Prl(self.bytes, pos)
@@ -184,7 +184,7 @@ class Chpx(DOCDirStream):
 
 def dump(self):
 print 'chpx type=Chpx offset=%d' % self.pos
-self.printAndSet(cb, self.getInt8())
+self.printAndSet(cb, self.getuInt8())
 self.pos += 1
 pos = self.pos
 while (self.cb - (pos - self.pos))  0:
@@ -201,10 

[Libreoffice-commits] .: test/fonts.rtf

2012-11-10 Thread Miklos Vajna
 test/fonts.rtf |7 +++
 1 file changed, 7 insertions(+)

New commits:
commit 0bde7be853a9e89854028ba0389145700bd1e3f0
Author: Miklos Vajna vmik...@suse.cz
Date:   Sat Nov 10 13:41:25 2012 +0100

test: font table for Word

diff --git a/test/fonts.rtf b/test/fonts.rtf
new file mode 100644
index 000..c3d6f1e
--- /dev/null
+++ b/test/fonts.rtf
@@ -0,0 +1,7 @@
+{\rtf1
+{\fonttbl
+{\f0 Times New Roman;}
+{\f1 Arial;}
+}
+\f0 This is Times New Roman \f1 this is arial.\par
+}
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: liborcus/ExternalProject_liborcus.mk RepositoryExternal.mk

2012-11-10 Thread Libreoffice Gerrit user
 RepositoryExternal.mk|6 ++
 liborcus/ExternalProject_liborcus.mk |2 ++
 2 files changed, 8 insertions(+)

New commits:
commit cdb6eca477c2c5553fa06d9e5e28b6e67aa58865
Author: Peter Foley pefol...@verizon.net
Date:   Sat Nov 10 08:56:12 2012 -0500

liborcus needs boost

Change-Id: I83c6bd1bfb44e74b9f659a970b5c32d7475addfb

diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk
index 6ffed9a..eb5e22e 100644
--- a/RepositoryExternal.mk
+++ b/RepositoryExternal.mk
@@ -416,6 +416,8 @@ $(call gb_LinkTarget_add_libs,$(1),\
 
 endef
 
+gb_ExternalProject__use_boost_headers:=
+
 else # !SYSTEM_BOOST
 
 $(eval $(call gb_Helper_register_static_libraries,PLAINLIBS, \
@@ -450,6 +452,10 @@ $(call gb_LinkTarget_use_static_libraries,$(1),\
 
 endef
 
+define gb_ExternalProject__use_boost_headers
+$(call gb_ExternalProject_get_preparation_target,$(1)) : $(call 
gb_UnpackedTarball_get_target,boost)
+
+endef
 endif # SYSTEM_BOOST
 
 
diff --git a/liborcus/ExternalProject_liborcus.mk 
b/liborcus/ExternalProject_liborcus.mk
index 637c449..54ef44a 100644
--- a/liborcus/ExternalProject_liborcus.mk
+++ b/liborcus/ExternalProject_liborcus.mk
@@ -11,6 +11,8 @@ $(eval $(call gb_ExternalProject_ExternalProject,liborcus))
 
 $(eval $(call gb_ExternalProject_use_unpacked,liborcus,orcus))
 
+$(eval $(call gb_ExternalProject_use_external,liborcus,boost_headers))
+
 $(eval $(call gb_ExternalProject_register_targets,liborcus,\
build \
 ))
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: sal/Library_sal.mk

2012-11-10 Thread Libreoffice Gerrit user
 sal/Library_sal.mk |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 3ab6409075e61dc9a1f20b58eb46ce2bda0c8176
Author: Peter Foley pefol...@verizon.net
Date:   Sat Nov 10 09:19:52 2012 -0500

sal needs boost

Change-Id: Icdda77d0fda4faf071566a44c2b93285a6437d38

diff --git a/sal/Library_sal.mk b/sal/Library_sal.mk
index 51e6d9e..ffed51c 100644
--- a/sal/Library_sal.mk
+++ b/sal/Library_sal.mk
@@ -59,6 +59,8 @@ $(eval $(call gb_Library_use_libraries,sal,\
$(gb_UWINAPI) \
 ))
 
+$(eval $(call gb_Library_use_unpacked,sal,boost))
+
 $(eval $(call gb_Library_use_externals,sal,\
 valgrind \
 ))
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: l10ntools/Executable_cfgex.mk l10ntools/Executable_gsicheck.mk l10ntools/Executable_helpex.mk l10ntools/Executable_uiex.mk l10ntools/Executable_ulfex.mk l10ntools/Executable_x

2012-11-10 Thread Libreoffice Gerrit user
 l10ntools/Executable_cfgex.mk|2 ++
 l10ntools/Executable_gsicheck.mk |2 ++
 l10ntools/Executable_helpex.mk   |1 +
 l10ntools/Executable_uiex.mk |2 ++
 l10ntools/Executable_ulfex.mk|2 ++
 l10ntools/Executable_xrmex.mk|2 ++
 6 files changed, 11 insertions(+)

New commits:
commit de1030f2bc6609d8fe0a914f708fb6e1ede94af4
Author: Peter Foley pefol...@verizon.net
Date:   Sat Nov 10 09:53:26 2012 -0500

l10ntools needs boost

Change-Id: Ie4b697b6549e300dcf8c0d788e6c9c0f50e677c2

diff --git a/l10ntools/Executable_cfgex.mk b/l10ntools/Executable_cfgex.mk
index 7dc2327..5531606 100644
--- a/l10ntools/Executable_cfgex.mk
+++ b/l10ntools/Executable_cfgex.mk
@@ -35,6 +35,8 @@ $(eval $(call gb_Executable_use_libraries,cfgex,\
 sal \
 ))
 
+$(eval $(call gb_Executable_use_unpacked,cfgex,boost))
+
 $(eval $(call gb_Executable_add_scanners,cfgex,\
 l10ntools/source/cfglex \
 ))
diff --git a/l10ntools/Executable_gsicheck.mk b/l10ntools/Executable_gsicheck.mk
index 917c00f..829a029 100644
--- a/l10ntools/Executable_gsicheck.mk
+++ b/l10ntools/Executable_gsicheck.mk
@@ -35,6 +35,8 @@ $(eval $(call gb_Executable_use_libraries,gsicheck,\
 sal \
 ))
 
+$(eval $(call gb_Executable_use_unpacked,gsicheck,boost))
+
 $(eval $(call gb_Executable_add_exception_objects,gsicheck,\
 l10ntools/source/gsicheck \
 l10ntools/source/tagtest \
diff --git a/l10ntools/Executable_helpex.mk b/l10ntools/Executable_helpex.mk
index 470bd4c..f1d447c 100644
--- a/l10ntools/Executable_helpex.mk
+++ b/l10ntools/Executable_helpex.mk
@@ -36,6 +36,7 @@ $(eval $(call gb_Executable_use_libraries,helpex,\
 ))
 
 $(eval $(call gb_Executable_use_external,helpex,expat_utf8))
+$(eval $(call gb_Executable_use_unpacked,helpex,boost))
 
 $(eval $(call gb_Executable_use_static_libraries,helpex,\
 transex \
diff --git a/l10ntools/Executable_uiex.mk b/l10ntools/Executable_uiex.mk
index ca4d726..03699f6 100644
--- a/l10ntools/Executable_uiex.mk
+++ b/l10ntools/Executable_uiex.mk
@@ -18,6 +18,8 @@ $(eval $(call gb_Executable_use_libraries,uiex,\
 sal \
 ))
 
+$(eval $(call gb_Executable_use_unpacked,uiex,boost))
+
 $(eval $(call gb_Executable_use_static_libraries,uiex,\
 transex \
 ))
diff --git a/l10ntools/Executable_ulfex.mk b/l10ntools/Executable_ulfex.mk
index e82c9b8..c045eb1 100644
--- a/l10ntools/Executable_ulfex.mk
+++ b/l10ntools/Executable_ulfex.mk
@@ -35,6 +35,8 @@ $(eval $(call gb_Executable_use_libraries,ulfex,\
 sal \
 ))
 
+$(eval $(call gb_Executable_use_unpacked,ulfex,boost))
+
 $(eval $(call gb_Executable_use_static_libraries,ulfex,\
 transex \
 ))
diff --git a/l10ntools/Executable_xrmex.mk b/l10ntools/Executable_xrmex.mk
index 33255f4..1aeef21 100644
--- a/l10ntools/Executable_xrmex.mk
+++ b/l10ntools/Executable_xrmex.mk
@@ -35,6 +35,8 @@ $(eval $(call gb_Executable_use_libraries,xrmex,\
 sal \
 ))
 
+$(eval $(call gb_Executable_use_unpacked,xrmex,boost))
+
 $(eval $(call gb_Executable_add_scanners,xrmex,\
 l10ntools/source/xrmlex \
 ))
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: modules removal surprises

2012-11-10 Thread Cedric Bosdonnat
On Thu, 2012-11-08 at 20:51 +0100, Andras Timar wrote:
 I used migrationanalysis (Professional Analysis Wizard) a few years ago.
 It created nice spreadsheets and charts about potential document
 migration problems: OpenOffice.org does not support this or that
 feature. The problem is that even some years ago, it looked outdated.
 Now it must be completely obsoleted. Document compatibility is getting
 better release by release. The unmaintaned Professional Analysis Wizard
 is useless and produces misleading reports. It is a good candidate for
 removal.

Well, I used it a while ago too... but it is breaking every now and the,
and doesn't scale with big documents collections. I'ld go for removing
that one as I'm pretty sure we can come up with something better if we
really want to provide this sort of tool.

--
Cedric

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


[PATCH] fix Ignore menu item of grammar mistakes #56954

2012-11-10 Thread via Code Review
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1024

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/24/1024/1

fix Ignore menu item of grammar mistakes #56954

Change-Id: I5cec602c686d5199b516a7e5135ababeb0751444
---
M sw/source/ui/inc/olmenu.hxx
M sw/source/ui/lingu/olmenu.cxx
2 files changed, 18 insertions(+), 1 deletion(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I5cec602c686d5199b516a7e5135ababeb0751444
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Németh László nem...@numbertext.org

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


Re: binfilter removed in LO 4.0 : how to communicate on this change?

2012-11-10 Thread Jean-Baptiste Faure
Hi Alexander,

Le 10/11/2012 10:44, Alex Thurgood a écrit :
 On 11/10/2012 08:17 AM, Jean-Baptiste Faure wrote:

 Hi Jean-Baptiste,


 - what the user can do with its old files: I think it is not enough to
 say you have to convert them with an old version of LibreOffice. For
 example, I have old sdw and sxw files in my laboratory diary and I do
 not want to lose their modification date if I convert them in ODF. What
 should I do and what advice I could give to an end-user who is in the
 same position?

 You make a good point, but if there are no mechanisms in place to
 guarantee the date of creation of the file in the first place, then the
 fact that the last modified date might get changed when converting to
 ODT will not make the file creation date any less valid than the already
 suspect file creation date. If your lab books/diary, which I'm
 assuming are electronic, do not have a certifiable means of
 guaranteeing the date of creation of any added file then the whole point
 is moot, since if you can change that date without impacting on file
 integrity then you can do pretty much anything you like to your files
 and their legal value as elements of proof of creation will be next to
 worthless.
You are right, of course, but this electronic diary does not have any
legal value (AFAIK). I want to keep unchanged the modification date
because that makes finding files easier and shows that the file has not
been written recently.

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: minutes of ESC call ...

2012-11-10 Thread Michael Meeks
Hi Alex,

On Sat, 2012-11-10 at 10:51 +0100, Alex Thurgood wrote:
 I see your points and concerns. Couldn't we have, as a potential
 alternative, a hack (easy or not, I wouldn't know) to replace the
 current implementations with something more manageable (if indeed that
 is possible, and however that might be defined) ?

I'd love to see those pieces split out to be extensions that you can
download  use if you want to (personally). That's presumably quite some
chunk of work though.

ATB,

Michael.

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

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


[Libreoffice-commits] .: 2 commits - libexttextcat/ExternalPackage_exttextcat.mk libexttextcat/ExternalPackage_libexttextcat.mk libexttextcat/ExternalProject_exttextcat.mk libexttextcat/ExternalProjec

2012-11-10 Thread Libreoffice Gerrit user
 RepositoryExternal.mk  |2 -
 libexttextcat/ExternalPackage_exttextcat.mk|   22 
 libexttextcat/ExternalPackage_libexttextcat.mk |   22 
 libexttextcat/ExternalProject_exttextcat.mk|   27 +
 libexttextcat/ExternalProject_libexttextcat.mk |   27 -
 libexttextcat/Module_libexttextcat.mk  |6 ++---
 libexttextcat/StaticLibrary_exttextcat.mk  |   10 -
 libexttextcat/UnpackedTarball_exttextcat.mk|   18 
 libexttextcat/UnpackedTarball_libexttextcat.mk |   18 
 9 files changed, 76 insertions(+), 76 deletions(-)

New commits:
commit 093acfe13c8f63807c0d004b78844c6f39d1160c
Author: Peter Foley pefol...@verizon.net
Date:   Sat Nov 10 11:47:50 2012 -0500

cleanup libexttextcat naming

Change-Id: I8aee95e0f93deaaf08046f544713af010a7f1e44

diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk
index eb5e22e..019f0be 100644
--- a/RepositoryExternal.mk
+++ b/RepositoryExternal.mk
@@ -512,7 +512,7 @@ $(call gb_LinkTarget_use_static_libraries,$(1),\
 )
 
 $(call gb_LinkTarget_set_include,$(1),\
-   -I$(call gb_UnpackedTarball_get_dir,libexttextcat/src) \
+   -I$(call gb_UnpackedTarball_get_dir,exttextcat/src) \
$$(INCLUDE) \
 )
 
diff --git a/libexttextcat/ExternalPackage_exttextcat.mk 
b/libexttextcat/ExternalPackage_exttextcat.mk
new file mode 100644
index 000..cf79b28
--- /dev/null
+++ b/libexttextcat/ExternalPackage_exttextcat.mk
@@ -0,0 +1,22 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+
+$(eval $(call gb_ExternalPackage_ExternalPackage,exttextcat,exttextcat))
+
+ifneq ($(COM),MSC)
+
+$(eval $(call gb_ExternalPackage_use_external_project,exttextcat,exttextcat))
+
+$(eval $(call 
gb_ExternalPackage_add_file,exttextcat,lib/libexttextcat.a,src/.libs/libexttextcat-1.0.a))
+ifeq ($(OS),WNT)
+$(eval $(call 
gb_ExternalPackage_add_file,exttextcat,bin/libexttextcat.dll,src/.libs/libexttextcat.dll))
+endif
+
+endif
+# vim: set noet sw=4 ts=4:
diff --git a/libexttextcat/ExternalPackage_libexttextcat.mk 
b/libexttextcat/ExternalPackage_libexttextcat.mk
deleted file mode 100644
index 21a1a90..000
--- a/libexttextcat/ExternalPackage_libexttextcat.mk
+++ /dev/null
@@ -1,22 +0,0 @@
-# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
-#
-# This file is part of the LibreOffice project.
-#
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-#
-
-$(eval $(call gb_ExternalPackage_ExternalPackage,libexttextcat,libexttextcat))
-
-ifneq ($(COM),MSC)
-
-$(eval $(call 
gb_ExternalPackage_use_external_project,libexttextcat,libexttextcat))
-
-$(eval $(call 
gb_ExternalPackage_add_file,libexttextcat,lib/libexttextcat.a,src/.libs/libexttextcat-1.0.a))
-ifeq ($(OS),WNT)
-$(eval $(call 
gb_ExternalPackage_add_file,libexttextcat,bin/libexttextcat.dll,src/.libs/libexttextcat.dll))
-endif
-
-endif
-# vim: set noet sw=4 ts=4:
diff --git a/libexttextcat/ExternalProject_exttextcat.mk 
b/libexttextcat/ExternalProject_exttextcat.mk
new file mode 100644
index 000..f439d08
--- /dev/null
+++ b/libexttextcat/ExternalProject_exttextcat.mk
@@ -0,0 +1,27 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+
+$(eval $(call gb_ExternalProject_ExternalProject,exttextcat))
+
+$(eval $(call gb_ExternalProject_use_unpacked,exttextcat,exttextcat))
+
+$(eval $(call gb_ExternalProject_register_targets,exttextcat,\
+   build \
+))
+
+$(call gb_ExternalProject_get_state_target,exttextcat,build):
+   cd $(EXTERNAL_WORKDIR) \
+./configure --disable-shared --with-pic \
+   $(if $(filter YES,$(CROSS_COMPILING)),--build=$(BUILD_PLATFORM) 
--host=$(HOST_PLATFORM)) \
+   CFLAGS=$(if $(filter 
TRUE,$(HAVE_GCC_VISIBILITY_FEATURE)),-fvisibility=hidden) \
+   $(if $(filter AIX,$(OS)),-D_LINUX_SOURCE_COMPAT) \
+$(MAKE) \
+touch $@
+
+# vim: set noet sw=4 ts=4:
diff --git a/libexttextcat/ExternalProject_libexttextcat.mk 
b/libexttextcat/ExternalProject_libexttextcat.mk
deleted file mode 100644
index e792b3f..000
--- a/libexttextcat/ExternalProject_libexttextcat.mk
+++ /dev/null
@@ -1,27 +0,0 @@
-# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
-#
-# This file is part of the 

framework - Find/remove useless ifdefs and dead code within them

2012-11-10 Thread Marcos Souza
Hi List!

Some days ago, I developed a script that can show to us all ifdefs that
don't have a #define.

After run this script in the framework dir, I get this list:

ifdef ENABLE_COMPONENT_SELF_CHECK without #define. This can be removed?
ifdef DBG_UTIL without #define. This can be removed?
ifdef fpf without #define. This can be removed?
ifdef fpc without #define. This can be removed?
ifdef ENABLE_SERVICEDEBUG without #define. This can be removed?
ifdef ENABLE_TARGETINGDEBUG without #define. This can be removed?
ifdef ENABLE_REGISTRATIONDEBUG without #define. This can be removed?
ifdef ENABLE_PLUGINDEBUG without #define. This can be removed?
ifdef ENABLE_MUTEXDEBUG without #define. This can be removed?
ifdef ENABLE_FILTERDBG without #define. This can be removed?
ifdef ENABLE_EVENTDEBUG without #define. This can be removed?
ifdef ENABLE_GENERATEFILTERCACHE without #define. This can be removed?

This is the output of my script. I belive DBG_UTIL is defined in an other
way (a lot of code within this ifdefs around the LO) but I didn't notice
any define explicitly. But the others, like ENABLE_COMPONENT_SELF_CHECK,
only appears in the framework dir. After some git digs, I saw that this
ifdef was created near 2002/2003, so it seems to very very old...

Tor Lillqvist, told me that we need to get the feedback of the list,
correctly of course, and so I came here to ask you guys, what we can do
with these macros!

I belive with this script, we can remove a lot of dead code within the LO,
but I will need you feedback to verify is these macros are really
unused/dead.

If one of these macros are defined in other way, please tell me, because I
can change the script to skip these ifdefs.

When you answer me, I will send a patch removing what is dead!

Thanks since now!
-- 
Att,

Marcos Paulo de Souza
Acadêmico de Ciencia da Computação - FURB - SC
Github: https://github.com/marcosps/
Uma vida sem desafios é uma vida sem razão
A life without challenges, is a non reason life
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 44446] LibreOffice 3.6 most annoying bugs

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

john.pr...@cantab.net changed:

   What|Removed |Added

 Depends on||55032

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


[Bug 44446] LibreOffice 3.6 most annoying bugs

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

john.pr...@cantab.net changed:

   What|Removed |Added

 Depends on|55032   |

--- Comment #164 from john.pr...@cantab.net ---
Added Bug 55032 - FORMATTING: Conditional formatting lost when sheets are
copied

As this prevents copying any sheets with conditional formatting and prevents me
from upgrading.

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


Re: framework - Find/remove useless ifdefs and dead code within them

2012-11-10 Thread Matúš Kukan
On 10 November 2012 17:51, Marcos Souza marcos.souza@gmail.com wrote:
 Hi List!

 Some days ago, I developed a script that can show to us all ifdefs that
 don't have a #define.

 After run this script in the framework dir, I get this list:

 ifdef ENABLE_COMPONENT_SELF_CHECK without #define. This can be removed?
 ifdef DBG_UTIL without #define. This can be removed?
 ifdef fpf without #define. This can be removed?
 ifdef fpc without #define. This can be removed?
 ifdef ENABLE_SERVICEDEBUG without #define. This can be removed?
 ifdef ENABLE_TARGETINGDEBUG without #define. This can be removed?
 ifdef ENABLE_REGISTRATIONDEBUG without #define. This can be removed?
 ifdef ENABLE_PLUGINDEBUG without #define. This can be removed?
 ifdef ENABLE_MUTEXDEBUG without #define. This can be removed?
 ifdef ENABLE_FILTERDBG without #define. This can be removed?
 ifdef ENABLE_EVENTDEBUG without #define. This can be removed?
 ifdef ENABLE_GENERATEFILTERCACHE without #define. This can be removed?

 This is the output of my script. I belive DBG_UTIL is defined in an other
 way (a lot of code within this ifdefs around the LO) but I didn't notice any
 define explicitly.

git grep DDBG_UTIL points to solenv/gbuild/gbuild.mk, where also
others are defined (probably not from this list).
But for some, it's not that obvious and grepping for Dname does not
help, see for example gb_Helper_define_if_set.

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


[Libreoffice-commits] .: libexttextcat/Zip_fingerprint.mk

2012-11-10 Thread Libreoffice Gerrit user
 libexttextcat/Zip_fingerprint.mk |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit fdbf9a258f04f7f8c7bbe0219e6abee66680e01e
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sat Nov 10 19:54:29 2012 +0100

blind fix for libexttextcat

diff --git a/libexttextcat/Zip_fingerprint.mk b/libexttextcat/Zip_fingerprint.mk
index d8b4494..a5a0142 100644
--- a/libexttextcat/Zip_fingerprint.mk
+++ b/libexttextcat/Zip_fingerprint.mk
@@ -25,9 +25,9 @@
 # in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
 # instead of those above.
 
-$(eval $(call gb_Zip_Zip,fingerprint,$(call 
gb_UnpackedTarball_get_dir,libexttextcat)/langclass))
+$(eval $(call gb_Zip_Zip,fingerprint,$(call 
gb_UnpackedTarball_get_dir,exttextcat)/langclass))
 
-$(eval $(call gb_Zip_use_unpacked,fingerprint,libexttextcat))
+$(eval $(call gb_Zip_use_unpacked,fingerprint,exttextcat))
 
 $(eval $(call gb_Zip_add_files,fingerprint,\
langclass/fpdb.conf \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PATCH] Update dtrans commented code to use string.h function instea...

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

I have submitted a patch for review:

https://gerrit.libreoffice.org/1025

To pull it, you can do:

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

Update dtrans commented code to use string.h function instead of rtl/memory

Change-Id: I244e436086746420cc66b0ed7d59bfcdc6606076
---
M dtrans/source/win32/dtobj/FmtFilter.cxx
1 file changed, 3 insertions(+), 3 deletions(-)


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

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

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


[Libreoffice-commits] .: sc/qa

2012-11-10 Thread Libreoffice Gerrit user
 sc/qa/unit/helper/debughelper.hxx |5 +++
 sc/qa/unit/helper/qahelper.hxx|6 +++
 sc/qa/unit/ucalc.cxx  |   63 +++---
 3 files changed, 43 insertions(+), 31 deletions(-)

New commits:
commit ddf7e2c150f6d7b93607b012bc9852845ef88d64
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sat Nov 10 20:43:14 2012 +0100

make handling of doubles in sc tests easier

Change-Id: Ifc8def986f7d1659d71be7b4716bd9ab5fa4647e

diff --git a/sc/qa/unit/helper/debughelper.hxx 
b/sc/qa/unit/helper/debughelper.hxx
index ee84f4c..2a560c6 100644
--- a/sc/qa/unit/helper/debughelper.hxx
+++ b/sc/qa/unit/helper/debughelper.hxx
@@ -26,6 +26,9 @@
  * instead of those above.
  */
 
+#ifndef SC_DEBUG_HELPER_HXX
+#define SC_DEBUG_HELPER_HXX
+
 /**
  * Print nicely formatted sheet content to stdout.  Indispensable when
  * debugging the unit test code involving testing of sheet contents.
@@ -161,4 +164,6 @@ private:
 MatrixType maMatrix;
 };
 
+#endif
+
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/qa/unit/helper/qahelper.hxx b/sc/qa/unit/helper/qahelper.hxx
index e29415c..32f7f7a 100644
--- a/sc/qa/unit/helper/qahelper.hxx
+++ b/sc/qa/unit/helper/qahelper.hxx
@@ -122,6 +122,12 @@ void testCondFile(rtl::OUString aFileName, ScDocument* 
pDoc, SCTAB nTab)
 
 }
 
+#define ASSERT_DOUBLES_EQUAL( expected, result )\
+CPPUNIT_ASSERT_DOUBLES_EQUAL( (expected), (result), 1e-14 )
+
+#define ASSERT_DOUBLES_EQUAL_MESSAGE( message, expected, result )   \
+CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE( (message), (expected), (result), 
1e-14 )
+
 #endif
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx
index 0606562..59a70f8 100644
--- a/sc/qa/unit/ucalc.cxx
+++ b/sc/qa/unit/ucalc.cxx
@@ -89,6 +89,7 @@
 #define CALC_DEBUG_OUTPUT 0
 
 #include helper/debughelper.hxx
+#include helper/qahelper.hxx
 
 const int indeterminate = 2;
 
@@ -4641,7 +4642,7 @@ void Test::testCopyPaste()
 double aValue = 0;
 m_pDoc-GetValue(1, 0, 0, aValue);
 std::cout  Value:   aValue  std::endl;
-CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(formula should return 8, aValue, 8, 
0.0001);
+ASSERT_DOUBLES_EQUAL_MESSAGE(formula should return 8, aValue, 8);
 
 //copy Sheet1.A1:C1 to Sheet2.A2:C2
 ScRange aRange(0,0,0,2,0,0);
@@ -4666,7 +4667,7 @@ void Test::testCopyPaste()
 rtl::OUString aString;
 m_pDoc-GetValue(1,1,1, aValue);
 m_pDoc-GetFormula(1,1,1, aString);
-CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(copied formula should return 2, 
aValue, 2, 0.0001);
+ASSERT_DOUBLES_EQUAL_MESSAGE(copied formula should return 2, aValue, 2);
 CPPUNIT_ASSERT_MESSAGE(formula string was not copied correctly, aString 
== aFormulaString);
 m_pDoc-GetValue(0,1,1, aValue);
 CPPUNIT_ASSERT_MESSAGE(copied value should be 1, aValue == 1);
@@ -4684,13 +4685,13 @@ void Test::testCopyPaste()
 //check undo and redo
 pUndo-Undo();
 m_pDoc-GetValue(1,1,1, aValue);
-CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(after undo formula should return 
nothing, aValue, 0, 0.0001);
+ASSERT_DOUBLES_EQUAL_MESSAGE(after undo formula should return nothing, 
aValue, 0);
 m_pDoc-GetString(2,1,1, aString);
 CPPUNIT_ASSERT_MESSAGE(after undo string should be removed, 
aString.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM()));
 
 pUndo-Redo();
 m_pDoc-GetValue(1,1,1, aValue);
-CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(formula should return 2 after redo, 
aValue, 2, 0.0001);
+ASSERT_DOUBLES_EQUAL_MESSAGE(formula should return 2 after redo, aValue, 
2);
 m_pDoc-GetString(2,1,1, aString);
 CPPUNIT_ASSERT_MESSAGE(Cell Sheet2.C2 should contain: test, 
aString.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(test)));
 m_pDoc-GetFormula(1,1,1, aString);
@@ -4822,42 +4823,42 @@ void Test::testUpdateReference()
 
 double aValue;
 m_pDoc-GetValue(2,0,2, aValue);
-CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(formula does not return correct 
result, aValue, 3, 0.0001);
+ASSERT_DOUBLES_EQUAL_MESSAGE(formula does not return correct result, 
aValue, 3);
 m_pDoc-GetValue(2,1,2, aValue);
-CPPUNIT_ASSERT_MESSAGE(formula does not return correct result, aValue == 
5);
+ASSERT_DOUBLES_EQUAL_MESSAGE(formula does not return correct result, 
aValue, 5);
 
 //test deleting both sheets: one is not directly before the sheet, the 
other one is
 m_pDoc-DeleteTab(0);
 m_pDoc-GetValue(2,0,1, aValue);
-CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(after deleting first sheet formula 
does not return correct result, aValue, 3, 0.0001);
+ASSERT_DOUBLES_EQUAL_MESSAGE(after deleting first sheet formula does not 
return correct result, aValue, 3);
 m_pDoc-GetValue(2,1,1, aValue);
-CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(after deleting first sheet formula 
does not return correct result, aValue, 5, 0.0001);
+ASSERT_DOUBLES_EQUAL_MESSAGE(after deleting first 

Re: minutes of ESC call ...

2012-11-10 Thread Michael Stahl
On 10/11/12 17:46, Michael Meeks wrote:
 Hi Alex,
 
 On Sat, 2012-11-10 at 10:51 +0100, Alex Thurgood wrote:
 I see your points and concerns. Couldn't we have, as a potential
 alternative, a hack (easy or not, I wouldn't know) to replace the
 current implementations with something more manageable (if indeed that
 is possible, and however that might be defined) ?
 
   I'd love to see those pieces split out to be extensions that you can
 download  use if you want to (personally). That's presumably quite some
 chunk of work though.

that would be possible, but there are some open questions as to how to
best accomplish it:  the problem is that non-URE jars are used, which is
not allowed for extensions.  but that seems fixable: the used jars seem
to be the external bsh / rhino and internal ScriptingFramework,
the latter containing common code for BeanShell/JavaScript/Java script
providers.

the ScriptProviderForPython is already an extension so there is some
prior art on how to do it.  also, until commit
a72a7dc500ffd57662e8b9be61e4676266861c33 the java ones were extensions too.

the following options come to mind:

1) add ScriptFramework.jar to the URE
   this would require maintaining binary compatibility; i have no idea
   if that is appropriate here

2) have 3 extensions and duplicate the ScriptFramework jar in each of
   them; would that actually work if you install more than one of them?

3) have 1 extension that contains ScriptFramework plus all 3 script
   providers

option 3 appears most appealing to me.

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


Re: binfilter removed in LO 4.0 : how to communicate on this change?

2012-11-10 Thread Miklos Vajna
Hi JBF,

On Sat, Nov 10, 2012 at 05:33:30PM +0100, Jean-Baptiste Faure 
jbf.fa...@sud-ouest.org wrote:
 You are right, of course, but this electronic diary does not have any
 legal value (AFAIK). I want to keep unchanged the modification date
 because that makes finding files easier and shows that the file has not
 been written recently.

Then really just do what Andras already suggested: touch -r origfile
convertedfile, and you're done. :-)

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


[PATCH] Kill set_oenv remnants (by just renaming the required timest...

2012-11-10 Thread Matteo Casalin (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1026

To pull it, you can do:

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

Kill set_oenv remnants (by just renaming the required timestamp file)

Change-Id: I779128111a4f69235a4c8cc6510018fc61d1b24b
---
M .gitignore
M Makefile.top
M configure.ac
M odk/source/unowinreg/win/makefile.mk
M scp2/CustomTarget_langmacros.mk
M scp2/macros/macro.pl
6 files changed, 11 insertions(+), 13 deletions(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I779128111a4f69235a4c8cc6510018fc61d1b24b
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Matteo Casalin matteo.casa...@gmx.com

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


Re: binfilter removed in LO 4.0 : how to communicate on this change?

2012-11-10 Thread Jean-Baptiste Faure
Le 10/11/2012 21:46, Miklos Vajna a écrit :
 Hi JBF,

 On Sat, Nov 10, 2012 at 05:33:30PM +0100, Jean-Baptiste Faure 
 jbf.fa...@sud-ouest.org wrote:
 You are right, of course, but this electronic diary does not have any
 legal value (AFAIK). I want to keep unchanged the modification date
 because that makes finding files easier and shows that the file has not
 been written recently.
 Then really just do what Andras already suggested: touch -r origfile
 convertedfile, and you're done. :-)
Indeed, that will work for me and others who use Linux and perhaps MacOS.
I will convert my old files or, better, export them in PDF/A. Thanks a lot.

But what about for users using MS-Windows ? Is there something similar ?

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


(question) File import/export in LibreOffice Spreadsheet -- where to look?

2012-11-10 Thread William Park
Hi all,

As a way of learning LibreOffice Spreadsheet code, I would like to add a
simple file import/export.  The file format is sort of 3-column CSV
format.  Can someone point me to directory/file I should look at?
-- 
William
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: VS 2010 Express merge module issue

2012-11-10 Thread Mat M
Le Sat, 10 Nov 2012 10:47:11 +0100, Andras Timar tima...@gmail.com a  
écrit:



Hi Mat,

On Sat, Nov 10, 2012 at 12:28 AM, Mat M m...@gmx.fr wrote:

Hello

VS2010 Express works great to build LO, but not for packaging. Although  
all
MSVC*100.dll are there, the express version does not ship the merge  
module.
This makes the packaging abort, because it expects the msm file to  
insert

msvc files into the msi.
Should we manage to store an msm version somewhere (like
http://dev-www.libreoffice.org/extern) or provide a workaround to  
define ?




msm files are not redistributable, only as a part of our installation
sets (i.e. already merged). 6cfe3c93dc55264e57f1057a2911d54232353d13
wanted to make VC100 merge modules truly optional, so the intention
was that everything should work without this merge module. If it fails
for you, please try to find out why, try to fix it and send a patch.
See also http://opengrok.libreoffice.org/history/core/oowintool. The
question is why you have WITH_VC100_REDIST defined. Many thanks in
advance.

Andras


Well, I am currently on the way to fully-build LO with VC++ 2010 Express,  
so I think it wants the msm file to deliver the 2010 runtime.
FYI: merge modules were provided in the vc++ 2008 express version, so no  
issue about 2008 express.


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


[PATCH] Add icons for template manager

2012-11-10 Thread Alexander Wilms (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1027

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/27/1027/1

Add icons for template manager

Change-Id: Idbe03cbc209db9951d0dbdb19e4e5e7e184fdb76
---
M icon-themes/tango_testing/cmd/lc_defaultbullet-lc_outlinebullet.svg
M icon-themes/tango_testing/cmd/lc_defaultbullet.png
M icon-themes/tango_testing/cmd/lc_outlinebullet.png
A icon-themes/tango_testing/sfx2/res/document_edit.png
A icon-themes/tango_testing/sfx2/res/document_export.png
A icon-themes/tango_testing/sfx2/res/document_import.png
A icon-themes/tango_testing/sfx2/res/document_properties.png
A icon-themes/tango_testing/sfx2/res/document_save.png
A icon-themes/tango_testing/sfx2/res/document_set_as_default.png
A icon-themes/tango_testing/sfx2/res/edit_delete.png
A icon-themes/tango_testing/sfx2/res/edit_find.png
A icon-themes/tango_testing/sfx2/res/exec_action.png
A icon-themes/tango_testing/sfx2/res/move_to_folder.png
A icon-themes/tango_testing/sfx2/res/move_to_folder.svg
A icon-themes/tango_testing/sfx2/res/network_server.png
A icon-themes/tango_testing/sfx2/res/select.png
A icon-themes/tango_testing/sfx2/res/select.svg
M icon-themes/tango_testing/sw/imglst/sc20175.png
M icon-themes/tango_testing/sw/imglst/sc20175.svg
A icon-themes/tango_testing/sw/imglst/sc20183.png
M icon-themes/tango_testing/sw/imglst/sc20186.png
M icon-themes/tango_testing/sw/imglst/sc20186.svg
A icon-themes/tango_testing/sw/imglst/sr20014.png
M sfx2/source/doc/templatedlg.src
24 files changed, 1,256 insertions(+), 71 deletions(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Idbe03cbc209db9951d0dbdb19e4e5e7e184fdb76
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Alexander Wilms alexander.wi...@zoho.com

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


[Bug 54157] LibreOffice 3.7 most annoying bugs

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

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

   What|Removed |Added

Summary|LibreOffice 4.0 most|LibreOffice 3.7 most
   |annoying bugs   |annoying bugs

--- Comment #22 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
We have no builds with that Version, no 4.0 Version in Bugzilla, so currently
please leave this one as 3.7 MAB tracker.

Please adapt all relevant tools to 4.0 (renaming or creating new ones)
simultaneously after that has been reasoned and some notes have been left in
the Wiki.

Although the latest 4.0 code is simply further development of the Master, it
might be appropriate to create a new 4.0 Master Version for Bugzilla and leave
3.7.0.0.alpha0+, because for most users it will be worrying to have lots of
bugs for Version 4.0 (due to vrsion picker) without any 4.0 Version mentioned
in the comments.

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


[Libreoffice-commits] .: icu/icu4c-android.patch icu/makefile.mk

2012-11-10 Thread Libreoffice Gerrit user
 icu/icu4c-android.patch |   11 +++
 icu/makefile.mk |2 ++
 2 files changed, 13 insertions(+)

New commits:
commit cee6c4b193eff4f499e60867766c13fda3818239
Author: Tor Lillqvist t...@iki.fi
Date:   Sun Nov 11 09:15:14 2012 +0200

Use hidden visibility now for Android with icu built statically

Change-Id: I46b97d31f8aac046479d030c988413017c5b940a

diff --git a/icu/icu4c-android.patch b/icu/icu4c-android.patch
index ad513a2..2d079a0 100644
--- a/icu/icu4c-android.patch
+++ b/icu/icu4c-android.patch
@@ -61,3 +61,14 @@
  #elif U_PLATFORM_IS_LINUX_BASED
  #   define U_TIMEZONE __timezone
  #elif U_PLATFORM_USES_ONLY_WIN32_API
+--- misc/icu/source/common/unicode/platform.h
 misc/build/icu/source/common/unicode/platform.h
+@@ -641,7 +641,7 @@
+ #elif defined(U_STATIC_IMPLEMENTATION)
+ #   define U_EXPORT
+ #elif defined(__GNUC__)
+-#   define U_EXPORT __attribute__((visibility(default)))
++#   define U_EXPORT
+ #elif (defined(__SUNPRO_CC)  __SUNPRO_CC = 0x550) \
+|| (defined(__SUNPRO_C)  __SUNPRO_C = 0x550) 
+ #   define U_EXPORT __global
diff --git a/icu/makefile.mk b/icu/makefile.mk
index e5f8f57..bfb40c2 100644
--- a/icu/makefile.mk
+++ b/icu/makefile.mk
@@ -64,6 +64,8 @@ PATCH_FILES=\
 .IF $(OS)==ANDROID
 PATCH_FILES+=\
 icu4c-android.patch
+icu_CFLAGS+=-fvisibility=hidden
+icu_CXXFLAGS+=-fvisibility=hidden
 .ELSE
 PATCH_FILES+=\
 icu4c-rpath.patch
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PATCH] Fix RTL presnter console standrad layout mode

2012-11-10 Thread abdulmajeed ahmed (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1028

To pull it, you can do:

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

Fix RTL presnter console standrad layout mode

Change-Id: I7ba73005f9371dcc844c2e44a3eea99b7aac30f7
---
M sdext/Library_presenter.mk
M sdext/source/presenter/PresenterWindowManager.cxx
2 files changed, 42 insertions(+), 2 deletions(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I7ba73005f9371dcc844c2e44a3eea99b7aac30f7
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: abdulmajeed ahmed aalabdulraz...@kacst.edu.sa

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


[Libreoffice-commits] .: Branch 'libreoffice-3-6' - sc/source

2012-11-10 Thread Libreoffice Gerrit user
 sc/source/filter/oox/worksheethelper.cxx |9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

New commits:
commit 08ca08d2f46c6119550024ce02bc42c271a3644b
Author: Noel Power noel.po...@suse.com
Date:   Fri Nov 9 16:58:00 2012 +

fix for fdo#55875 numbers as text converted strangely

old code used to use XCell-setString, new code uses rDoc.SetString which 
by default tries to detect number formats. The ScColumn::SetString that 
eventually
gets called seems to do lots of additional checks ( and apparently even if
an ScSetStringParam instance with mbDetectNumberFormat ( false ) was passed
it seems that it will still try to detect decimal number formats. With that
in mind I restore and un-unoified version of what XCell-setString used do

Change-Id: Ifaef74c78b198f492a390a3d5dc1721622a01ea4
Reviewed-on: https://gerrit.libreoffice.org/1020
Reviewed-by: Markus Mohrhard markus.mohrh...@googlemail.com
Tested-by: Markus Mohrhard markus.mohrh...@googlemail.com

diff --git a/sc/source/filter/oox/worksheethelper.cxx 
b/sc/source/filter/oox/worksheethelper.cxx
index 96c84f9..771f32f 100644
--- a/sc/source/filter/oox/worksheethelper.cxx
+++ b/sc/source/filter/oox/worksheethelper.cxx
@@ -1564,7 +1564,14 @@ void WorksheetHelper::putString( const CellAddress 
rAddress, const OUString rT
 {
 ScAddress aAddress;
 ScUnoConversion::FillScAddress( aAddress, rAddress );
-getScDocument().SetString( aAddress.Col(), aAddress.Row(), aAddress.Tab(), 
rText );
+ScBaseCell* pNewCell = NULL;
+ScDocument rDoc = getScDocument();
+if ( !rText.isEmpty() )
+pNewCell = ScBaseCell::CreateTextCell( rText, rDoc );
+if ( pNewCell )
+rDoc.PutCell( aAddress, pNewCell );
+else
+rDoc.SetString( aAddress.Col(), aAddress.Row(), aAddress.Tab(), rText 
);
 }
 
 void WorksheetHelper::putRichString( const CellAddress rAddress, const 
RichString rString, const Font* pFirstPortionFont ) const
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 50481] Writer FILEOPEN: recorded changes in DOC file shown incorrectly, whole document shown as changed

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

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

   What|Removed |Added

Summary|FILEOPEN: LO can't handle   |Writer FILEOPEN: recorded
   |doc files saved with|changes in DOC file shown
   |Papyrus |incorrectly, whole document
   ||shown as changed

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


[Libreoffice-bugs] [Bug 54003] psadmin (LO 3.5) and printeradmin (LO3.6) does not save Postscript (Level from driver) as Printer Language Type

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

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

   What|Removed |Added

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

--- Comment #1 from sasha.libreoff...@gmail.com ---
Thanks for bugreport

 Any ideas?
Ideas is here: Bug 44664

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


[Libreoffice-bugs] [Bug 55614] Menu vanishes

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

--- Comment #2 from Dieter Burkhard dieter.burkh...@ksh.edu ---
Dear Björn,
Thanks for asking. No, the system running is Ubuntu 12.04 (LTS).
Yours with best regards
Dieter Burkhard

Von: bugzilla-dae...@freedesktop.org [mailto:bugzilla-dae...@freedesktop.org]
Gesendet: Freitag, 9. November 2012 23:36
An: Burkhard Dieter
Betreff: [Bug 55614] Menu vanishes

Björn Michaelsenmailto:bjoern.michael...@canonical.com changed bug
55614https://bugs.freedesktop.org/show_bug.cgi?id=55614
What

Removed

Added

Status

UNCONFIRMED

NEEDINFO

Ever confirmed



1

Comment # 1https://bugs.freedesktop.org/show_bug.cgi?id=55614#c1 on bug
55614https://bugs.freedesktop.org/show_bug.cgi?id=55614 from Björn
Michaelsenmailto:bjoern.michael...@canonical.com

Is this on Ubuntu 12.10 in Unity? If so please close as a dupe of

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


You are receiving this mail because:

  *   You reported the bug.

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


[Libreoffice-bugs] [Bug 56453] TDF Site: Installation hints without mentioning necessity to install separate LOCALHELP packages

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

--- Comment #1 from Marc Pare m...@marcpare.com ---
I have taken this one to the marketing team so that we can take a look at it
and place the mention in the right place.

Marc

[1]
http://permalink.gmane.org/gmane.comp.documentation.libreoffice.marketing/6431

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


[Libreoffice-bugs] [Bug 56313] TDF Site: Download page still mentions LibreOffice 3.5.7 RC2 (2012-10-06)

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

Marc Pare m...@marcpare.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

--- Comment #1 from Marc Pare m...@marcpare.com ---
This has been fixed.

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


[Libreoffice-bugs] [Bug 56949] New: Connectors lose their connections with the shapes after saving

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

  Priority: medium
Bug ID: 56949
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Connectors lose their connections with the shapes
after saving
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: chja...@live.com
  Hardware: x86 (IA32)
Status: UNCONFIRMED
   Version: 3.6.0.4 release
 Component: Writer
   Product: LibreOffice

Steps to reproduce the problem:

1. Open LibreOffice Draw and draw in it two rectangles
2. Connect the rectangles with connector
3. Select all objects and copy them
4. Open LibreOffice Writer and paste the drawing in it
5. Ungroup the drawing in Writer and save the Writer document
6. Close the Writer document and after that open it

The result: the connector is not connected to the shapes.

LibreOffice Writer does not inform the user (e.g. on saving) that such a
problem may arise.

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


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

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

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

   What|Removed |Added

   Hardware|Other   |All
 Status|UNCONFIRMED |NEW
 CC||sasha.libreoff...@gmail.com
   Keywords||regression
 Ever confirmed|0   |1

--- Comment #6 from sasha.libreoff...@gmail.com ---
Opening first attachment:
[correctly opens] 3.4.2, 3.5.0 beta3, 3.5.1.2 on Windows XP 32 bit
[wrong opens] 3.5.7, 3.6.3 on RFR 64 bit, 3.6.3 on Windows XP

according to my measurements, it is regression

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


[Libreoffice-bugs] [Bug 56172] TDF Site: [es] (Español): Dead or wrong Links

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

Marc Pare m...@marcpare.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

--- Comment #1 from Marc Pare m...@marcpare.com ---
(In reply to comment #0)
 With a quick test I found dead links or links with wrong syntax:
 http://es.libreoffice.org/home/
 + Planet http://planet.documentfoundation.org/es/

Fixed

 
 http://es.libreoffice.org/descarga/
 + 3.5.6  verifique los requisitos del sistema 
   http://es.libreoffice.org/%5Bsitetree_link%20id=667%5D

Now lists 3.5.7 and is fixed.

 
 http://es.libreoffice.org/descarga/instrucciones/
 + nuevas características en esta versión.

Fixed. 

   http://www.libreoffice.org/download/new-features-and-fixes/
 + descargar usando un cliente de BitTorrent.
   http://es.wikipedia.org/wiki/Anexo:Clientes_BitTorrent

Fixed

 
 http://es.libreoffice.org/participe/desarrollo/
 + Archivo comprimido 
  
 http://download.documentfoundation.org/libreoffice/src/libreoffice-build-3.
 3.0.2.tar.gz

No problem here anymore. It was probably a problem accessing our archives from
the servers (maybe they were down at the time).

 
 
 @Daniel:
 Can you please have a look?

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


[Libreoffice-bugs] [Bug 56714] UPDATE: Release Notes page

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

Marc Pare m...@marcpare.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

--- Comment #1 from Marc Pare m...@marcpare.com ---
Done.

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


[Libreoffice-bugs] [Bug 54464] Conditional formatting is lost when the file is saved

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

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

   What|Removed |Added

Version|3.6.2.2 release |3.6.1.2 release

--- Comment #11 from Roman Eisele b...@eikota.de ---
... and please do not “update” the Version field ;-): it should always contain
the *first* version in which a bug is known to exist, and not the last one.

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


[Libreoffice-bugs] [Bug 56453] TDF Site: Installation hints without mentioning necessity to install separate LOCALHELP packages

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

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

   What|Removed |Added

 CC||c...@nouenoff.nl

--- Comment #2 from Cor Nouws c...@nouenoff.nl ---
(In reply to comment #0)
  ... to avoid bug reports like Bug 56445

Alas we will never be able to avoid bug reports due to people not reading the
available information (I fall in that trap myself too ;-) )

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


[Libreoffice-bugs] [Bug 53649] FORMATTING: dormant 2d page .odt header reduces 1st page margin in LibreOffice

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

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

   What|Removed |Added

   Hardware|x86 (IA32)  |All
 OS|Windows (All)   |All
 Status|UNCONFIRMED |NEW
 CC||sasha.libreoff...@gmail.com
 Ever confirmed|0   |1

--- Comment #1 from sasha.libreoff...@gmail.com ---
Thanks for bugreport
msWord opens attachment with header and footer enabled, but Writer opens with
both disabled.
Exploring internals of attachment, IMHO header and footer should be enabled

[reproduced] in 3.4.2 on Windows XP 32 bit and in 3.5.7, 3.6.3 on RFR 64 bit

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


[Libreoffice-bugs] [Bug 53649] Writer FILEOPEN, FORMATTING: odt document with header and footer Writer opens without them

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

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

   What|Removed |Added

Summary|FORMATTING: dormant 2d page |Writer FILEOPEN,
   |.odt header reduces 1st |FORMATTING: odt document
   |page margin in LibreOffice  |with header and footer
   ||Writer opens without them

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


[Libreoffice-bugs] [Bug 53649] Writer FILEOPEN, FORMATTING: odt document with header and footer Writer opens without them

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

--- Comment #2 from sasha.libreoff...@gmail.com ---
@ Michael
Greetings
What do You think about this bug? Here Writer opens odt file incorrectly.
Header and footer becumes disabled, though inside of odt they are present.

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


[Libreoffice-bugs] [Bug 56932] (Writer) On screen text rendering issue

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

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

   What|Removed |Added

  Attachment #69834|text/plain  |image/png
  mime type||

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


[Libreoffice-bugs] [Bug 56950] New: Writer does not import properly MS Word connectors

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

  Priority: medium
Bug ID: 56950
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Writer does not import properly MS Word connectors
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: chja...@live.com
  Hardware: x86 (IA32)
Status: UNCONFIRMED
   Version: 3.6.0.4 release
 Component: Writer
   Product: LibreOffice

Steps to reproduce the problem:

1. Open MS Word 2007 and create a Drawing Canvas via Insert - Shapes - New
Drawing Canvas
2. Draw two rectangles in it
3. Connect the rectangles with a connector
4. Save the document and close MS Word
5. Open the document in LibreOffice Writer

At this point the connector may look correctly connected to the shapes,
although this is not always the case.

6. Ungroup the drawing and move the rectangles

The result: the connector from MS Word is not imported as connector in
LibreOffice Writer.

LibreOffice Writer does not inform the user on opening Word document that such
a problem may arise.

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


[Libreoffice-bugs] [Bug 56935] : Crash on tab switching

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

ostiax...@gmail.com changed:

   What|Removed |Added

   Hardware|Other   |x86-64 (AMD64)
 OS|All |Linux (All)

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


[Libreoffice-bugs] [Bug 56952] New: Bogus error message opening a document from read-only location

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

  Priority: medium
Bug ID: 56952
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Bogus error message opening a document from read-only
location
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: davian...@gmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 3.7.0.0.alpha0+ Master
 Component: UI
   Product: LibreOffice

When opening a document from R/O location, the message this file was locked by
the user unknown appears. The document should be opened read-only without
any prompts.

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


[Libreoffice-bugs] [Bug 56777] EDITING: Copy Paste of a slide from one presentation into another destroys format of graphical elements

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

--- Comment #8 from bugquestcon...@online.de ---
Sometimes it creates a good feeling recognizing that also other people
struggle with certain things especially when one regards them as
experts

What you wrote about the formatting of cells in Calc sounds create. I am doing
such formating manually

I also got some helpful answer from AskLibO and currently try to sketch what I
have learned in a notebook. Should be able to produce something, which I
consider at least kind of helpful, I send to the guys at
documentat...@global.libreoffice.org. What I am working on is a graphical
explanation on how styles are linked. E,g. When I want red bullets, I need to
first create a new Character Style before I can create a new List Style and the
link between both styles is created via the new List Style  Options 
Character Style  select the new Character Style set up for the red bullets. So
far this one can be displayed graphically very well. But there is much more to
be done. I will try my best.

I feel it is also important to inform/warn people of the influence of
modifications made in templates. (This was my problem leading to this bug
report.). I started with an Impress template and continued to develop it. As
there was no warning about a change to a different template, I did not
understand why LibO destroyed my slide. 
Currently I am using more direct formating in Impress to avoid the reported
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 56777] EDITING: Copy Paste of a slide from one presentation into another destroys format of graphical elements

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

--- Comment #9 from bugquestcon...@online.de ---
typo in text aborve 
create - great

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


[Libreoffice-bugs] [Bug 54267] Adding diacritical marks causes havoc when editing (Hebrew, RTL)

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

Lior Kaplan kaplanl...@gmail.com changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|DUPLICATE   |---
 CC||kaplanl...@gmail.com

--- Comment #7 from Lior Kaplan kaplanl...@gmail.com ---
I'm reopening this issue, as I'm not sure it's a duplicate of bug 53312. And in
any case, the bug here is more detailed and has a test document.

I was able to reproduce the bug, but it had very minor effect (Keter YG font).
Would be good to have instructions to reproduce as in the attached screen shot
by Aharon.

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


[Libreoffice-bugs] [Bug 52370] SLIDESHOW: Slideshow mixes location of period (.) and/or all other marks in Hebrew

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

Lior Kaplan kaplanl...@gmail.com changed:

   What|Removed |Added

 CC||kaplanl...@gmail.com

--- Comment #2 from Lior Kaplan kaplanl...@gmail.com ---
@amit - have you set the textbox directionality to RTL? otherwise the text will
appear as you've mentioned.

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


[Libreoffice-bugs] [Bug 55886] UI: right-to left, left-to-right buttons missing

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

Lior Kaplan kaplanl...@gmail.com changed:

   What|Removed |Added

 CC||kaplanl...@gmail.com

--- Comment #2 from Lior Kaplan kaplanl...@gmail.com ---
Ben - have you turn on your CTL support ? (Tools - Options - Language
settings)?

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


[Libreoffice-bugs] [Bug 55585] Should check all XKB group indexes when matching key events for accelerators and mnemonics

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

Lior Kaplan kaplanl...@gmail.com changed:

   What|Removed |Added

 CC||kaplanl...@gmail.com

--- Comment #2 from Lior Kaplan kaplanl...@gmail.com ---
I couldn't reproduce to problem with Gnome 3.4.2 and LibreOffice 3.6.2.

Steps:
1. Open a new document and type some Hebrew
2. while still being on Hebrew keyboard layout, hit CTRL+C
3. while still being on Hebrew keyboard layout, hit CTRL+V

The result is that the text is pasted.

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


[Libreoffice-bugs] [Bug 45999] FILESAVE: Hebrew comments/notes appear as squares in MS Word when saving in doc (work on docx)

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

--- Comment #5 from Lior Kaplan kaplanl...@gmail.com ---
Created attachment 69859
  -- https://bugs.freedesktop.org/attachment.cgi?id=69859action=edit
testdoc

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


[Libreoffice-bugs] [Bug 45999] FILESAVE: Hebrew comments/notes appear as squares in MS Word when saving in doc (work on docx)

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

--- Comment #6 from Lior Kaplan kaplanl...@gmail.com ---
Created attachment 69860
  -- https://bugs.freedesktop.org/attachment.cgi?id=69860action=edit
testdoc doc export

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


[Libreoffice-bugs] [Bug 56953] New: Endings of ordinals

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

  Priority: medium
Bug ID: 56953
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Endings of ordinals
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: antonis...@windowslive.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 3.6.3.2 release
 Component: Writer
   Product: LibreOffice

LibreOffice changes by default the endings of ordinals, eg in 1st, st
becomes an exponent. However, in version 3.6.3, after this automatic
correction, the words following the ordibal are also in the exponent and the
user must go to Characters and select normal position in the Position tab,
which is quite annoying. This bug does not exist in 3.5.7.
Thank you!

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


[Libreoffice-bugs] [Bug 37638] Index randomly broken up with extra white space

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

Lior Kaplan kaplanl...@gmail.com changed:

   What|Removed |Added

 CC||kaplanl...@gmail.com

--- Comment #10 from Lior Kaplan kaplanl...@gmail.com ---
Also reproducible in 3.7/master, but seems a bit less random than I thought.

@Nadav - did you check the problem in other languages or it just happen to be
Hebrew document as this is what you've worked with?

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


[Libreoffice-bugs] [Bug 56953] Endings of ordinals

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

--- Comment #1 from Urmas davian...@gmail.com ---
Cannot reproduce both in 3.6.3 and 3.7.

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


[Libreoffice-bugs] [Bug 56124] add calc functions IFERROR and IFNA as in ODFF1.2

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

--- Comment #2 from Winfried Donkers o...@dci-electronics.nl ---
Created attachment 69863
  -- https://bugs.freedesktop.org/attachment.cgi?id=69863action=edit
patch sofar, not ready to be committed

Attached the patch as of this moment.
IFERROR() seems to function well and complies with ODFF1.2
IFNA() only the function itself has to be coded, which I expect to be
relatively easy now I have IFERROR().

@Eike: could you please give comments, as I expect you to have them ;)
When I have incorporated your comments, coded IFNA() completely and tested
IFNA(), I hope to submit the patch.

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


[Libreoffice-bugs] [Bug 56124] add calc functions IFERROR and IFNA as in ODFF1.2

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

Winfried Donkers o...@dci-electronics.nl changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |o...@dci-electronics.nl
   |desktop.org |

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


[Libreoffice-bugs] [Bug 53030] Calc deletes current sheet, not right-clicked on sheet

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

Lior Kaplan kaplanl...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||kaplanl...@gmail.com
 Blocks||43808
 Ever confirmed|0   |1

--- Comment #3 from Lior Kaplan kaplanl...@gmail.com ---
Reproducible with 3.6.3, adding to bug 43808 (rtl-meta).

Steps:
1. Create spreadsheet with two sheets, one LTR and one RTL.
2. Try to delete the other sheet.
3. Notice the deleted sheet is the current one (easily noticable due to the
different sheet directionality).

The bugs only occurs when the two sheet have opposite directionality. This
happens regard less to the UI language/directionality.

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


[Libreoffice-bugs] [Bug 43808] Meta bug for Most Annoying RTL related issues

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

Lior Kaplan kaplanl...@gmail.com changed:

   What|Removed |Added

 Depends on||53030

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


[Libreoffice-bugs] [Bug 53030] Calc deletes current sheet, not right-clicked on sheet

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

--- Comment #4 from Lior Kaplan kaplanl...@gmail.com ---
Created attachment 69864
  -- https://bugs.freedesktop.org/attachment.cgi?id=69864action=edit
testdoc with two sheets

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


[Libreoffice-bugs] [Bug 53030] Calc deletes current sheet, not right-clicked on sheet when trying to delete opposite directionality sheets

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

Lior Kaplan kaplanl...@gmail.com changed:

   What|Removed |Added

Summary|Calc deletes current sheet, |Calc deletes current sheet,
   |not right-clicked on sheet  |not right-clicked on sheet
   ||when trying to delete
   ||opposite directionality
   ||sheets

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


[Libreoffice-bugs] [Bug 56077] UI: Grammer Checker Ignore Rules

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

--- Comment #2 from László Németh nem...@numbertext.org ---
This is only a run-time exception database. Restart LibreOffice to restore the
original grammar checking.

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


[Libreoffice-bugs] [Bug 55625] Data pilot sums are wrong

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

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

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 53031] When restoring sheet, it is restored with the default directionality

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

Lior Kaplan kaplanl...@gmail.com changed:

   What|Removed |Added

 CC||kaplanl...@gmail.com
 Blocks||43808

--- Comment #1 from Lior Kaplan kaplanl...@gmail.com ---
Reproducible in 3.6.3 and 3.7/master.

The undo adds the sheet with the directionality of the interface/locale. For
English locale the sheet got back as LTR and with Hebrew locale the sheet got
back as RTL.

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


[Libreoffice-bugs] [Bug 43808] Meta bug for Most Annoying RTL related issues

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

Lior Kaplan kaplanl...@gmail.com changed:

   What|Removed |Added

 Depends on||53031

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


[Libreoffice-bugs] [Bug 56877] presentation crashes when open

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

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

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #4 from Julien Nabet serval2...@yahoo.fr ---
eastasiax: thank you for your feedback.

On pc Debian x86-64 with master sources updated today, I don't reproduce the
problem.
I'd like to test with 3.6 sources but I've got some problems with it for the
moment.

Put back to Unconfirmed.

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


[Libreoffice-bugs] [Bug 53031] Undoing sheet deletion restores it to the default directionality regardless of the original sheet directionality

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

Lior Kaplan kaplanl...@gmail.com changed:

   What|Removed |Added

Summary|When restoring sheet, it is |Undoing sheet deletion
   |restored with the default   |restores it to the default
   |directionality  |directionality regardless
   ||of the original sheet
   ||directionality

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


[Libreoffice-bugs] [Bug 40863] Impress 3.4/3.5 prints polygons as rectangles and ovals as polygons

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

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

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #17 from Julien Nabet serval2...@yahoo.fr ---
marshals: thank you for your feedback, i put it back to NEW.

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


[Libreoffice-bugs] [Bug 39793] UI · FORMATTING: 'Set Language for Paragraph/Selection More...' should always open the 'Font' tab (dialog 'Character')

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

--- Comment #8 from Lior Kaplan kaplanl...@gmail.com ---
Still happens in 3.7/master.

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


[Libreoffice-bugs] [Bug 56954] New: Broken (never working) ignore menu item in he local menu of grammar checking errors.

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

  Priority: medium
Bug ID: 56954
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Broken (never working) ignore menu item in he local
menu of grammar checking errors.
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: nem...@numbertext.org
  Hardware: Other
Status: UNCONFIRMED
   Version: 3.7.0.0.alpha0+ Master
 Component: Writer
   Product: LibreOffice

Ignore menu item removes the blue wavy line only temporarily (for word-level
errors, it removes the warnings for a session). See
http://sourceforge.net/tracker/?func=detailaid=3584878group_id=110216atid=655717

Testing.

1. Type 

X or or 

wait for a few seconds (or press Enter)

the sequence or or will be underlined.

2. Choose Ignore in the local menu of the underlined text.

3. Continue the text 

eg. or or 

And the newer or or will be underlined.

4. Press Enter and also the first or or will be underlined 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 44688] (windows only) Hebrew Vowel Points are sometimes misplaced in PDF export (and printing)

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

Lior Kaplan kaplanl...@gmail.com changed:

   What|Removed |Added

Summary|Hebrew Vowel Points are |(windows only) Hebrew Vowel
   |sometimes misplaced in PDF  |Points are sometimes
   |export (and printing)   |misplaced in PDF export
   ||(and printing)

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


[Libreoffice-bugs] [Bug 56954] Broken (never working) ignore menu item in the local menu of grammar checking errors.

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

László Németh nem...@numbertext.org changed:

   What|Removed |Added

Summary|Broken (never working)  |Broken (never working)
   |ignore menu item in he  |ignore menu item in the
   |local menu of grammar   |local menu of grammar
   |checking errors.|checking errors.

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


[Libreoffice-bugs] [Bug 56954] Broken (never working) ignore menu item in the local menu of grammar checking errors.

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

--- Comment #1 from László Németh nem...@numbertext.org ---
Submit a patch (it uses ignoreRule to ignore the selected mistakes during the
LibreOffice session).

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


[Libreoffice-bugs] [Bug 50642] PDF: Wrong Hebrew font rendering spacing in PDF when using full Hebrew font

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

--- Comment #9 from Lior Kaplan kaplanl...@gmail.com ---
Created attachment 69868
  -- https://bugs.freedesktop.org/attachment.cgi?id=69868action=edit
exampel text with 3.6.3

@alon - I can't reproduce with Libo 3.6.3 on Debian with Frank Ruehl CLM. The
PDF export looks great. Please review the attached file.

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


[Libreoffice-bugs] [Bug 56456] 'Insert Hyperlink' dialog should have 'ok' button additional to 'Apply'

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

--- Comment #3 from John McGrath jpmcgr...@jpmcgrath.net ---
It should have the following buttons:

OK - Apply the changes and close the dialog.
CANCEL - Close the dialog without applying changes.
HELP - Open the help system.
RESET - Reset fields to their initial values.

There is no reason for this dialog to be different than other dialogs.  Look,
foir example, at the following dialogs:  File→Properties, Format→Cells, and
Format→Page.  All have the above four buttons.

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


[Libreoffice-bugs] [Bug 48732] Hebrew Nikud still not represented properly (windows XP)

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

Lior Kaplan kaplanl...@gmail.com changed:

   What|Removed |Added

 OS|Windows (All)   |other
Summary|Hebrew Nikud still not  |Hebrew Nikud still not
   |represented properly|represented properly
   ||(windows XP)

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


[Libreoffice-bugs] [Bug 48732] Hebrew Nikud still not represented properly (windows XP)

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

Lior Kaplan kaplanl...@gmail.com changed:

   What|Removed |Added

 CC||kaplanl...@gmail.com

--- Comment #6 from Lior Kaplan kaplanl...@gmail.com ---
So it seems that this problem reproducible only on Windows XP.

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


[Libreoffice-bugs] [Bug 44566] improper RTL formatting when paragraph start with LTR word

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

Lior Kaplan kaplanl...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME
 CC||kaplanl...@gmail.com

--- Comment #3 from Lior Kaplan kaplanl...@gmail.com ---
There's no response from bug reporter and I can't reproduce (LibO 3.6.3).
Closing for now, reopen of relevant in the future.

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