[Libreoffice] Easy Hack solved: Remove mid-file emacs modelines

2010-10-29 Thread Sebastian Spaeth
4 patches following this patch for filters, libs-core, libs-gui, writer repositories killing all mid-file emacs modelines. If these are applied, I'll delete the corresponding easy hack on the wiki. Thanks. Sebastian pgpgPMVbog4Pc.pgp Description: PGP signature

[Libreoffice] [PATCH] filter: Remove emacs modelines in the middle of the file

2010-10-29 Thread Sebastian Spaeth
Signed-off-by: Sebastian Spaeth sebast...@sspaeth.de --- filter/source/msfilter/msdffimp.cxx |2 +- filter/source/msfilter/msocximex.cxx |1 - filter/source/msfilter/msvbasic.cxx |2 -- filter/source/msfilter/msvbasic.hxx |2 -- filter/source/msfilter/svxmsbas.cxx |1 - 5

[Libreoffice] [PATCH] libs-core: Remove emacs modelines in the middle of the file

2010-10-29 Thread Sebastian Spaeth
Signed-off-by: Sebastian Spaeth sebast...@sspaeth.de --- editeng/source/rtf/rtfgrf.cxx |1 - editeng/source/rtf/rtfitem.cxx |2 -- editeng/source/rtf/svxrtf.cxx |3 --- 3 files changed, 0 insertions(+), 6 deletions(-) diff --git a/editeng/source/rtf/rtfgrf.cxx

[Libreoffice] [PATCH] writer: Remove emacs modelines in the middle of the file

2010-10-29 Thread Sebastian Spaeth
Signed-off-by: Sebastian Spaeth sebast...@sspaeth.de --- starmath/source/mathtype.cxx|2 -- sw/source/filter/inc/msfilter.hxx |1 - sw/source/filter/inc/wwstyles.hxx |1 - sw/source/filter/ww8/WW8FibData.hxx |1 + sw/source/filter/ww8/writerhelper.hxx

[Libreoffice] Same patches as attachment

2010-10-29 Thread Sebastian Spaeth
As Norbert Thiebaud has an email client that does not allow him to nicely apply patches sent with git send-email ;-P, here the same 4 patches as attachments. Thanks for applying. Sebastian pgp4AKtVcizTp.pgp Description: PGP signature From 79403dfb9113bdb6f7f3fcd3be692abb586525d7 Mon Sep 17

Re: [Libreoffice] [Pushed] Same patches as attachment

2010-10-29 Thread Norbert Thiebaud
On Fri, Oct 29, 2010 at 1:36 AM, Sebastian Spaeth sebast...@sspaeth.de wrote: As Norbert Thiebaud has an email client that does not allow him to nicely apply patches sent with git send-email ;-P, here the same 4 patches as attachments. Pushed, Thanks Norbert Thanks for applying. Sebastian

Re: [Libreoffice] How to write debug output to console or file?

2010-10-29 Thread Cedric Bosdonnat
Hi Mattias, On Fri, 2010-10-29 at 15:49 +1100, Mattias Johnsson wrote: To help with debugging, it'd be very useful for me to be able to write out variable values from within the code. Writing to the console or a file would be fine. Writing to the console using fprintf of std:: is possible. I

Re: [Libreoffice] First build error: segmentation fault on vcl

2010-10-29 Thread Michael Meeks
Hi Dave, On Thu, 2010-10-28 at 13:54 -0700, Dave Lacy Kusters wrote: I tried tracking down the generation of the linker paths, but got bogged down in the details. Then, I tried --without-stlport. That got me different errors, so I switched gears and tried --disable-kde and --disable-kde4.

Re: [Libreoffice] Non compiling code on mono-uno-bridge (fix)

2010-10-29 Thread Miklos Vajna
On Thu, Oct 28, 2010 at 11:04:44PM -0500, Joshua Ismael hah...@gmail.com wrote: /me makes easy task on /scratch/mono-uno-bridge :) Again, in general such cleanups are recommended in the real repos, not in build.git. Run ./download and fine similar code under /clone/ :) Thanks.

Re: [Libreoffice] First time Build issues on Ubuntu

2010-10-29 Thread surensp...@gmail.com
Hi, On Fri, Oct 29, 2010 at 3:04 PM, Caolán McNamara caol...@redhat.com wrote: On Fri, 2010-10-29 at 09:34 +0530, surensp...@gmail.com wrote: I am new to Libreoffice and I was trying to build Libreoffice for the first time. I ended up with this error - [1]. I figured it might be because the

[Libreoffice] [FIXED] First build error: segmentation fault on vcl

2010-10-29 Thread Caolán McNamara
On Fri, 2010-10-29 at 10:08 +0100, Caolán McNamara wrote: So, the question is, where's /usr/lib coming from in the ENABLE_KDE case, and can it be stuffed to the *end* of the compiler line and not the start. I don't build against KDE, but I guess I could make an exception for once and go see

Re: [Libreoffice] First build error: segmentation fault on vcl

2010-10-29 Thread Jesús Corrius
Hi all, On Thu, 2010-10-28 at 13:54 -0700, Dave Lacy Kusters wrote: I tried tracking down the generation of the linker paths, but got bogged down in the details.  Then, I tried --without-stlport.  That got me different errors, so I switched gears and tried --disable-kde and --disable-kde4.  I

Re: [Libreoffice] First build error: segmentation fault on vcl

2010-10-29 Thread Jesús Corrius
On Fri, Oct 29, 2010 at 12:00 PM, Caolán McNamara caol...@redhat.com wrote: On Fri, 2010-10-29 at 11:56 +0200, Jesús Corrius wrote: but I have a couple of questions about it: 1. We basically have two options here: use _STL::remove or ::std::remove. My first version of the patch was using

[Libreoffice] [PUSHED] Re: [PATCH] Fix comments in filters/xmerge

2010-10-29 Thread Caolán McNamara
On Thu, 2010-10-28 at 13:33 +0100, Nigel Hawkins wrote: Hi, My first try at this. I'm still trying to get my head around git, so I hope I've made the patches correctly. They appear good to me, they definitely apply correctly :-) Then I noticed warnings that could be fixed by only touching

[Libreoffice] dpslo / compile poisoning ...

2010-10-29 Thread Michael Meeks
Hi guys, I had a fun problem with calc just now that was quite revealing. I added a file (to test Regina's nice code) to calc's makefile.mk, and it compiled the dpslo. Then I removed that file from the makefile.mk - yet it still built: echo #error an error

Re: [Libreoffice] How to write debug output to console or file?

2010-10-29 Thread Caolán McNamara
On Fri, 2010-10-29 at 09:52 +0200, Cedric Bosdonnat wrote: The problem here is to get a C string from them: here are some examples: * from OUString: rtl::OUStringToOString( sOUStr, RTL_TEXTENCODING_UTF8 ).getStr() * from String / UniString ByteString( sToolStr,

Re: [Libreoffice] How to write debug output to console or file?

2010-10-29 Thread Michael Meeks
On Fri, 2010-10-29 at 11:59 +0100, Caolán McNamara wrote: On Fri, 2010-10-29 at 09:52 +0200, Cedric Bosdonnat wrote: The problem here is to get a C string from them: here are some examples: * from OUString: rtl::OUStringToOString( sOUStr, RTL_TEXTENCODING_UTF8 ).getStr()

[Libreoffice] Styles and Formatting

2010-10-29 Thread Gert Faller
Hi, I've been working on the Styles and Formatting window does not remember hierarchical view bug. It seems I got it. I've noticed that, the window does not remember the Frame Styles but reverts to Paragraph Styles. Is that an another bug or a feature ? (The same in openoffice) Regards.

Re: [Libreoffice] Windows dependancies

2010-10-29 Thread Caolán McNamara
On Thu, 2010-10-21 at 21:19 +0100, Martin Gallwey wrote: Hi there! Just working further on getting a working build up and running, there are a bunch of files needed to get a build running, namely, these? Looking for /cygdrive/c/lo/src/msvcr80.dll ... ok Looking for

Re: [Libreoffice] Windows dependancies

2010-10-29 Thread Tor Lillqvist
i.e. a script that downloads the installers, runs them and let the end-user click-through any relevant EULAs ? Do you really mean the LibreOffice end-user here? I don't think that is the case which is being discussed in this thread. We do include the VC runtime in the Windows installer, OOo

Re: [Libreoffice] Windows dependancies

2010-10-29 Thread Caolán McNamara
On Fri, 2010-10-29 at 07:41 -0600, Tor Lillqvist wrote: i.e. a script that downloads the installers, runs them and let the end-user click-through any relevant EULAs ? Do you really mean the LibreOffice end-user here? No I think what was wanted for us to have the files that are put

Re: [Libreoffice] Windows dependancies

2010-10-29 Thread Martin Gallwey
No I think what was wanted for us to have the files that are put in the installer also available for dowload from some LibreOffice site, not just from Microsoft. Yes, to auto-install, or as close to possible auto-install, all the dependencies needed to build LibreOffice on windows

[Libreoffice] build or rawbuild dir?

2010-10-29 Thread Jani Monoses
This page describes building in the topmost dir http://www.documentfoundation.org/develop/ whereas the wiki-page example changes to rawbuild before. Which one is recommended? I have been building from topmost dir so far. thanks Jani ___ LibreOffice

Re: [Libreoffice] How to write debug output to console or file?

2010-10-29 Thread Jan Holesovsky
Hi Michael, Michael Meeks píše v Pá 29. 10. 2010 v 12:14 +0100: The problem here is to get a C string from them: here are some examples: * from OUString: rtl::OUStringToOString( sOUStr, RTL_TEXTENCODING_UTF8 ).getStr() Much as I hate the over-use of operator

Re: [Libreoffice] Easy Hack solved: Remove mid-file emacs modelines

2010-10-29 Thread Joop Kiefte
The wiki is Mediawiki, isn't it? Mediawiki has version-control/history. 2010/10/29 Caolán McNamara caol...@redhat.com: On Fri, 2010-10-29 at 08:16 +0200, Sebastian Spaeth wrote: 4 patches following this patch for filters, libs-core, libs-gui, writer repositories killing all mid-file emacs

Re: [Libreoffice] Easy Hack solved: Remove mid-file emacs modelines

2010-10-29 Thread Caio Tiago Oliveira
On Fri, Oct 29, 2010 at 1:28 PM, Joop Kiefte iko...@gmail.com wrote: The wiki is Mediawiki, isn't it? Mediawiki has version-control/history. It's better for new developers to see that information collected on a page, though. ___ LibreOffice mailing

[Libreoffice] patch: delete comments in German and VIM

2010-10-29 Thread bitpolare
delete comments in German and VIM at the beginning and end of file. example: /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- * /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ files: writer.cxx wrt_fn.cxx wrtswtbl.cxx *path:

Re: [Libreoffice] How to Use Other Source Files?

2010-10-29 Thread imacat
On 99.10.29 07:26pm, Caolán McNamara said: On Fri, 2010-10-29 at 19:14 +0800, imacat wrote: I see. Thank you. However, as a Chinese user the newly-compiled LibreOffice does not have Chinese, I think I still need the l10n. ./autogen.sh --with-git --with-num-cpus=2 --with-lang=en-US zh-TW

Re: [Libreoffice] Windows dependancies

2010-10-29 Thread Jan Holesovsky
Hi Caolan, Caolán McNamara píše v Pá 29. 10. 2010 v 14:35 +0100: And you can also download some them at least from the msdn websites as well. and I see that http://kegel.com/wine/winetricks has a script which downloads these from known locations and runs their installers. I would *imagine*

Re: [Libreoffice] patch: delete comments in German and VIM

2010-10-29 Thread Jan Holesovsky
Hi Luigi, bitpolare píše v Pá 29. 10. 2010 v 18:49 +0200: delete comments in German and I am afraid there must have been a bit of misunderstanding; we do not want to delete the German comments, but translate them to English :-) Do you speak German? Can you provide the translations, please?

Re: [Libreoffice] patch: delete comments in German and VIM

2010-10-29 Thread bitpolare
Excuse me: I'm new. :-[ I was wrong. Hello everyone Luigi PS ty Jan :-) Il 29/10/2010 19:40, Jan Holesovsky ha scritto: Hi Luigi, bitpolare píše v Pá 29. 10. 2010 v 18:49 +0200: delete comments in German and I am afraid there must have been a bit of misunderstanding; we do not

[Libreoffice] Export OLE objects as PDF / graphics

2010-10-29 Thread Gert Faller
Hi, I'm studying the Export OLE objects as PDF / graphics feature and it reminds me of an other... When you import a picture in writer : you can't rotate it. It's a picture : style Graphics. When you import a picture in draw : you can't rotate it. If you copy it back in writer, it's a Drawing

Re: [Libreoffice] Easy Hack solved: Remove mid-file emacs modelines

2010-10-29 Thread Caolán McNamara
On Fri, 2010-10-29 at 13:28 -0300, Joop Kiefte wrote: The wiki is Mediawiki, isn't it? Mediawiki has version-control/history. yes, but that's not really for reading, so I suggest it would be helpful to quickly scan back over the mediawiki history/version control and note the tasks which got

Re: [Libreoffice] build or rawbuild dir?

2010-10-29 Thread Michael Meeks
On Fri, 2010-10-29 at 19:34 +0200, Jan Holesovsky wrote: Jani Monoses píše v Pá 29. 10. 2010 v 17:49 +0300: This page describes building in the topmost dir http://www.documentfoundation.org/develop/ whereas the wiki-page example changes to rawbuild before. Which one is recommended? I

Re: [Libreoffice] First build error: segmentation fault on vcl

2010-10-29 Thread Dave Lacy Kusters
On Fri, October 29, 2010 1:37:11 AM, Michael Meeks wrote: Sorry pardon, and thanks for persisting here ! hopefully as/when we branch for 3.3 (Saturday) we will have a stable branch to recommend for new builds. No problem. Sounds like the best plan for me is to sit back and wait until the

Re: [Libreoffice] yum-builddep question ...

2010-10-29 Thread Terrell Prude' Jr.
Terrell Prude' Jr. wrote: Caolán McNamara wrote: On Tue, 2010-10-26 at 02:32 -0400, Terrell Prude' Jr. wrote: Terrell Prude' Jr. wrote: Michael Meeks wrote: Glad to test, but a little tip would help. My other boxes, including the one I'm on now, are all running

Re: [Libreoffice] build or rawbuild dir?

2010-10-29 Thread Jan Holesovsky
Hi Michael, all, Michael Meeks píše v Pá 29. 10. 2010 v 21:41 +0100: The screwed up situation of having these two places to build, two different conflicting makefiles with different rules etc. needs to be cleared up ASAP - post the branch / freeze over the weekend, this needs to be one

Re: [Libreoffice] LibreOffice config migration

2010-10-29 Thread Thorsten Behrens
Michael Meeks wrote: Speaking of which - I notice that neither us, nor up-stream register the migrationoo3.uno.so - so the migrate from 3.x code is never executed :-) we only migrate from 2.x - any ideas why that is ? (Thorsten?). I will push a fix to enable that in scp2 over the weekend

[Libreoffice] Writer compatibility dialog options

2010-10-29 Thread Ron Faile
All, I'm working on updating the documentation for Writer. Noticed that on the Options - LibreOffice Writer - Compatibility dialog, some options have OpenOffice.org 1.1 in the name. LibO 3.3 beta2 EN. Thanks. Ron Faile ___ LibreOffice mailing list