[dev] Re: 4 key points

2010-03-25 Thread Andreas Saeger
Maximilian Odendahl wrote: I really think a code rewrite inevitable if we want to keep OOo competitive. are you actually being serious? Certain parts definitely, but certainly not everything. He's just another spammer.

[dev] Re: Community Council Elections: Introducing the Nominees

2010-03-25 Thread Thorsten Behrens
Christoph Noack wrote: I would like to start - so please answer the following questions: * What is your idea by the work/tasks of the council? Hi Chris, all, so Eike already linked to the definitive, authoritative page about the council charta - to paraphrase, the council is largely a

[dev] Re: [dba-dev] solved: DateTime construction from a TIMESTAMP_STRUCT

2010-03-24 Thread Terrence Enger
On Tue, 2010-03-23 at 14:44 -0400, Terrence Enger wrote: This silly question  Yes, it was silly. I was confusing two different variables. Please accept my apology for the noise on the list. New morning, fresh pot of coffee. I hope for better results. arises because I am looking at issue

Re: [dev] Re: [dba-dev] solved: DateTime construction from a TIMESTAMP_STRUCT

2010-03-24 Thread Terrence Enger
On Wed, 2010-03-24 at 06:10 -0400, Terrence Enger wrote: [ lots of stuff which he has now sent to dba-dev, where he should have sent it in the first place ] Sorry for the noise. - To unsubscribe, e-mail:

[dev] Re: bogus bug number 120310

2010-03-20 Thread Björn Michaelsen
Am Sat, 20 Mar 2010 13:00:32 -0400 schrieb Terrence Enger ten...@iseries-guru.com: Of course, bug number 120310 is bogus. It happens that I do not have anything useful to offer to the writer, but if I did I would not know where to offer it. Does anybody care? Is there anything I can do to

[dev] Re: [l10n-dev] Re: [dev] Spanish NL Community requests for funding help on acquiring a local build box

2010-03-18 Thread Santiago Bosio
Pavel Janík escribió: Hi, On 18.3.2010, at 0:03, Alexandro Colorado wrote: The request is to partially fund the buildbox, so given the response, my guess is that most people are ok with this. Please let's try to approve the budget so we can move on. The platform would be on linux and will

[dev] Re: [l10n-dev] Re: [dev] Spanish NL Community requests for funding help on acquiring a local build box

2010-03-16 Thread André Schnabel
Hi, not exactly on topic, but ... Santiago Bosio schrieb: As I said, we have been doing our own builds, patching the translations with the latest snapshot from Pootle, converted to OOo SDF format using po2oo, and gsichecking the resulting file. All of it can be done automatically, but

Re: [dev] Re: Coding St{andards|yle}

2010-03-15 Thread Herbert Duerr
Hi, much of what Herbert writes is beside my point I think that criticizing old rules that cause problems today by causing bigger, slower, limited code which introduces extra maintenance burdens and extra bugs from too tight types and signed-/ unsigned issues is right on topic. Is this

Re: [dev] Re: Coding St{andards|yle}

2010-03-15 Thread Thorsten Behrens
Herbert Duerr wrote: I think that criticizing old rules that cause problems today by causing bigger, slower, limited code which introduces extra maintenance burdens and extra bugs from too tight types and signed-/ unsigned issues is right on topic. Is this not the topic we are talking about

Re: [dev] Re: Coding St{andards|yle}

2010-03-15 Thread Thorsten Behrens
I wrote: [...] iff the native ints are desirable [...] then let's make sure that first off this dearly missed what every computer scientist should know about integer math page is written. ;) That's of course nonsense. This page needs to be written unconditionally. :) -- Thorsten

Re: [dev] Re: Coding St{andards|yle}

2010-03-12 Thread Thorsten Behrens
Herbert Duerr wrote: With their int equivalents. E.g. svx/inc/svx/svdpage.hxx: sal_uInt16 GetPageNum() const; could be replaced by svx/inc/svx/svdpage.hxx: int GetPageNum() const; And there are a gazillion other methods that can be found using grep sal_.*Int16 */inc/ Of course all

Re: [dev] Re: Coding St{andards|yle}

2010-03-12 Thread Eike Rathke
Hi Michael, On Thursday, 2010-03-11 18:16:03 +0100, Michael Stahl wrote: imho, fixed size types are mandatory only on I/O paths: network protocols, file formats, and such. Btw, as long as we include that *gasp* binfilter module we'll have to deal with our own legacy and conversions or casts

Re: [dev] Re: Coding St{andards|yle}

2010-03-12 Thread Herbert Duerr
Hi Thorsten, please see my answers below. I don't think the fixed-width types are a hot topic that should get that much attention. Sounding the alarm on the use of native types is not attention-worthy either. Especially since the same reasoning got us worse code then, extra maintenance

Re: [dev] Re: Coding St{andards|yle}

2010-03-12 Thread Thorsten Behrens
Philipp Lohmann wrote: On 3/12/10 2:50 PM, Herbert Duerr wrote: your suggestion shows the fundamental flaw I've pointed out earlier - that too much of the code makes implicit assumptions about the available int ranges. Just grep for 0x, 0xFFFE etc. and weep. The hardcoded range-checks

Re: [dev] Re: Coding St{andards|yle}

2010-03-11 Thread Thorsten Behrens
Herbert Duerr wrote: And while you are at it also replace the countless methods that still use sal_uInt16 instead of int as return value... goodbye Win3.1! ;-) Replace those methods with what? ;) -- Thorsten pgpq2wmSShlac.pgp Description: PGP signature

Re: [dev] Re: Coding St{andards|yle}

2010-03-11 Thread Herbert Duerr
And while you are at it also replace the countless methods that still use sal_uInt16 instead of int as return value... goodbye Win3.1! ;-) Replace those methods with what? ;) With their int equivalents. E.g. svx/inc/svx/svdpage.hxx: sal_uInt16 GetPageNum() const; could be replaced by

[dev] Re: Coding St{andards|yle}

2010-03-11 Thread Michael Stahl
On 11/03/2010 17:54, bjoern michaelsen - Sun Microsystems - Hamburg Germany wrote: On Thu, 11 Mar 2010 17:26:12 +0100 Herbert Duerr du...@sun.com wrote: That was my point. The rule that got us the hardcoded WIN16-style code then is not IMHO is not a good guide for the future. If the

[dev] Re: mysterious headers */inc/segdefs.hxx

2010-03-10 Thread Michael Stahl
On 10/03/2010 13:58, Caolán McNamara wrote: On Wed, 2010-03-10 at 13:51 +0100, David Tardon wrote: Hello, does anyone know what's the purpose of the various inc/segdefs.hxx and inc/segdefs_.hxx headers? They doesn't seem to be used anywhere. It smells of win16 64k segments if I had to

[dev] Re: Coding St{andards|yle}

2010-03-10 Thread Michael Stahl
On 10/03/2010 14:57, Thorsten Behrens wrote: Stephan Bergmann wrote: * use of fundamental types like long and int. Whereas I think the former is quite sensible (also the added SAL_NO_VTABLE), I have some issues with the latter. Are there any reasons _in favor_ of that, except for platform

[dev] Re: [discuss] Open Office development issue

2010-03-10 Thread Juergen Schmidt
Hi Kapil, first of all please use the appropriate mailing list. In your case it is d...@api.openoffice.org or d...@extensions.openoffice.org and please ensure that you are subscribed correctly. It doesn't make sense to post on n different mailing lists. Please don't do that!!! Now related

Re: [dev] Re: mysterious headers */inc/segdefs.hxx

2010-03-10 Thread David Tardon
On Wed, Mar 10, 2010 at 02:44:07PM +0100, Michael Stahl wrote: On 10/03/2010 13:58, Caolán McNamara wrote: On Wed, 2010-03-10 at 13:51 +0100, David Tardon wrote: Hello, does anyone know what's the purpose of the various inc/segdefs.hxx and inc/segdefs_.hxx headers? They doesn't seem to

Re: [dev] Re: mysterious headers */inc/segdefs.hxx

2010-03-10 Thread Niklas Nebel
On 03/10/10 19:39, David Tardon wrote: Ha, I wondered why these headers weren't present in the sw module too :) I'll create an issue and remove the remaining ones too, then. It's happening already: http://hg.services.openoffice.org/cws/dr73/rev/f0ff1950d291,

[dev] Re: Base project lead suggestion

2010-03-01 Thread Andreas Saeger
Frank Schoenheit, Sun Microsystems Germany wrote: Ocke surely knows his ways around in the Base project, he joined the Base team even 3 months earlier than I did, nearly 11 years ago. To me, he is the canonical choice. +1 -

[dev] Re: Building OOoDev-M72 failed on Windows

2010-02-28 Thread Willy Sudiarto Raharjo
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Entering /home/WillySR/DEV300_m72/external/glibc mkdir: cannot create directory `../wntmsci12.pro/misc/build/glibc-2.1.3/posix': File exists Compiling: external/wntmsci12.pro/misc/build/glibc-2.1.3/posix/getopt.c getopt.c(216) : warning

[dev] Re: Questions on downloading OpenOffice.org for business use

2010-02-24 Thread Twayne
I'm just a user, not admin, but ... go ahead and download the free version and install/use it wherever you wish. There are no special use requirements with the license that comes with the download and none would require payment of licensing. Limitations would only come in to play if someone

[dev] Re: VS 2005 support (was: boost 1.42)

2010-02-17 Thread Thorsten Behrens
Oliver Bolte wrote: AFAIK you can't download VS 2005 Express anymore. The build for the 64 bit shell extension will probably fail, but I haven't used VS 2005 since years... Ok, thanks for the update there - nah, I think the shell xt is properly guarded with BUILD_X64, at least I did not hit

[dev] Re: OpenOffice.org 3.2 est mainten ant disponible au téléchargement !

2010-02-11 Thread Jean-Paul BIBENS
Le 11/02/2010 13:57, Jean-Baptiste Faure a écrit : [Annonce officielle en anglais : http://www.openoffice.org/servlets/ReadMsg?list=announcemsgNo=410] Au début de son 10e anniversaire, et avec plus de trois cent millions de téléchargements enregistrés au total, la Communauté OpenOffice.org

Re: [dev] Re: dmake error: while building ucbhelper

2010-02-10 Thread Stephan Bergmann
On 02/10/10 03:52, Toufique, Imam wrote: Here is the issue: I was able to bring up soffice GUI, ran everything OK. I took the same install in NFS location and from a different system (same platform, SLES10 64bit OS, same kernel, same OS image) when ran soffice, it is crashing with this

Re: [dev] Re: where is the openoffice binary located

2010-02-10 Thread Stephan Bergmann
On 02/10/10 07:05, Wei Zhang wrote: I was just wondering if the binary needs to be extracted from the tar.gz , as mentioned in ttp://www.openoffice.org/servlets/ReadMsg?list=devmsgNo=26512http://www.openoffice.org/servlets/ReadMsg?list=devmsgNo=26512 , then when we do the configure script, what

RE: [dev] Re: where is the openoffice binary located

2010-02-10 Thread Toufique, Imam
@openoffice.org Subject: Re: [dev] Re: where is the openoffice binary located On 02/10/10 07:05, Wei Zhang wrote: I was just wondering if the binary needs to be extracted from the tar.gz , as mentioned in ttp://www.openoffice.org/servlets/ReadMsg?list=devmsgNo=26512http://www.openoffice.org/servlets/ReadMsg

RE: [dev] Re: dmake error: while building ucbhelper

2010-02-09 Thread Toufique, Imam
. ;-) Regards, -imam -Original Message- From: Caolán McNamara [mailto:caol...@redhat.com] Sent: Tuesday, February 02, 2010 12:50 AM To: dev@openoffice.org Subject: Re: [dev] Re: dmake error: while building ucbhelper On Mon, 2010-02-01 at 11:50 +0100, Michael Stahl wrote: On 01/02/2010 10:19, Stephan

Re: [dev] Re: dmake error: while building ucbhelper

2010-02-09 Thread Stephan Bergmann
On 02/09/10 10:37, Toufique, Imam wrote: Making: ../../../unxlngx6.pro/slo/docbm.obj /opt/tools/gcc/4.4.0/bin/g++ -fPIC -Wreturn-type -fmessage-length=0 -c -O2 -fno-strict-aliasing -Wuninitialized -I. -I../../../unxlngx6.pro/inc/doc -I../inc -I../../../inc/pch -I../../../inc

RE: [dev] Re: dmake error: while building ucbhelper

2010-02-09 Thread Toufique, Imam
] Sent: Tuesday, February 09, 2010 1:52 AM To: dev@openoffice.org Subject: RE: [dev] Re: dmake error: while building ucbhelper On Tue, 2010-02-09 at 02:37 -0700, Toufique, Imam wrote: Hi! I got pass my last error, actually almost got through the build (I think). But, I got hit

Re: [dev] Re: dmake error: while building ucbhelper

2010-02-09 Thread Stephan Bergmann
On Feb 9, 2010, at 8:19 PM, Toufique, Imam wrote: Now, If I want to restart the build right where it aborted, it there are a way to do so? This is probabley a stupid question, but I thought you guys are experts on it, you might know. cd .../instsetoo_native build --all:sw should do the

RE: [dev] Re: dmake error: while building ucbhelper

2010-02-09 Thread Toufique, Imam
Thanks Stephan! I will try that out. -imam -Original Message- From: stephan.bergm...@sun.com [mailto:stephan.bergm...@sun.com] Sent: Tuesday, February 09, 2010 11:56 AM To: dev@openoffice.org Subject: Re: [dev] Re: dmake error: while building ucbhelper On Feb 9, 2010, at 8:19 PM

RE: [dev] Re: dmake error: while building ucbhelper

2010-02-09 Thread Toufique, Imam
that was used to build this, soffice ran OK, but the very similar system, I got the error above. -imam -Original Message- From: stephan.bergm...@sun.com [mailto:stephan.bergm...@sun.com] Sent: Tuesday, February 09, 2010 11:56 AM To: dev@openoffice.org Subject: Re: [dev] Re: dmake error

RE: [dev] Re: dmake error: while building ucbhelper

2010-02-09 Thread Toufique, Imam
that, what could be the possible side effects? As always, thanks a lot for helping me through this. -Original Message- From: Toufique, Imam imam.toufi...@intel.com Sent: Tuesday, February 09, 2010 6:52 PM To: dev@openoffice.org dev@openoffice.org Subject: RE: [dev] Re: dmake error

Re: [dev] Re: where is the openoffice binary located

2010-02-09 Thread Wei Zhang
Hello, I was just wondering if the binary needs to be extracted from the tar.gz , as mentioned in ttp://www.openoffice.org/servlets/ReadMsg?list=devmsgNo=26512http://www.openoffice.org/servlets/ReadMsg?list=devmsgNo=26512 , then when we do the configure script, what is the point of setting the

[dev] Re: where is the openoffice binary located

2010-02-08 Thread Michael Stahl
On 08/02/2010 05:23, Wei Zhang wrote: However, I don't know where is the openoffice binaries located(such like swriter, etc). I am wondering where is that located ? Or, do I need to take some other procedures after dmake? please look at this mail for the answer:

Re: [dev] Re: where is the openoffice binary located

2010-02-08 Thread Wei Zhang
Hi Michael, Thank you very much! I have got the binary as you suggested. I can start the swriter binary without problems. However when I ran objdump on it to get a disassemble, it said the swriter binary is not recognized format. I am wondering why is that. Thanks, Wei On Mon, Feb 8, 2010 at

Re: [dev] Re: where is the openoffice binary located

2010-02-08 Thread Cédric Bosdonnat
Hi Wei, Did you see by chance that swriter is only a script file calling soffice.bin? Regards, -- Cedric On Mon, 2010-02-08 at 07:55 -0600, Wei Zhang wrote: Hi Michael, Thank you very much! I have got the binary as you suggested. I can start the swriter binary without problems. However

Re: [dev] Re: where is the openoffice binary located

2010-02-08 Thread Wei Zhang
Hi Cedric, Thanks a lot! My bad, yeah, soffice.bin is the real binary, thank you very much! I am wondering if there is a way when building it, statically link all the libraries together instead of using shared libraries (i know it sounds stupid) to get a big fat soffice.bin ? Thank you very

Re: [dev] Re: where is the openoffice binary located

2010-02-08 Thread Stephan Bergmann
On 02/08/10 15:12, Wei Zhang wrote: I am wondering if there is a way when building it, statically link all the libraries together instead of using shared libraries (i know it sounds stupid) to get a big fat soffice.bin ? No, not easily. For example, many of the shared libraries implement UNO

Re: [dev] Re: where is the openoffice binary located

2010-02-08 Thread Wei Zhang
Oh, I see. Thanks a lot Stephan! Wei On Mon, Feb 8, 2010 at 8:29 AM, Stephan Bergmann stephan.bergm...@sun.comwrote: On 02/08/10 15:12, Wei Zhang wrote: I am wondering if there is a way when building it, statically link all the libraries together instead of using shared libraries (i know it

RE: [dev] Re: dmake error: while building ucbhelper

2010-02-05 Thread Toufique, Imam
Thanks! i will give this a try. -Original Message- From: Caolán McNamara caol...@redhat.com Sent: Tuesday, February 02, 2010 12:50 AM To: dev@openoffice.org dev@openoffice.org Subject: Re: [dev] Re: dmake error: while building ucbhelper On Mon, 2010-02-01 at 11:50 +0100, Michael

Re: [dev] Re: dmake error: while building ucbhelper

2010-02-02 Thread Caolán McNamara
On Mon, 2010-02-01 at 11:50 +0100, Michael Stahl wrote: On 01/02/2010 10:19, Stephan Bergmann wrote: On 02/01/10 09:23, Toufique, Imam wrote: Yes, it does. At the beginning I thought -fPIC was not being pulled in, so, I set it manually for g++. Hm, sorry, leaves me clueless.

[dev] Re: dmake error: while building ucbhelper

2010-02-01 Thread Michael Stahl
On 01/02/2010 10:19, Stephan Bergmann wrote: On 02/01/10 09:23, Toufique, Imam wrote: Yes, it does. At the beginning I thought -fPIC was not being pulled in, so, I set it manually for g++. Hm, sorry, leaves me clueless. -Stephan me too. the only explanation that comes to mind is

[dev] Re: Building OO on Slackware and run it on Ubuntu

2010-02-01 Thread Michael Stahl
hi Kirill, On 28/01/2010 11:08, K S wrote: Does anyone know about this exception? (com::sun::star::lang::WrappedTargetRuntimeException) that is a very generic exception; the type won't tell you much. the UNO API interfaces have exception signatures, and if an implementation calls into some

[dev] Re: ODT 1.2 metadata support in OOO 3.2 RC4 ?

2010-02-01 Thread Michael Stahl
hi Arnaud, please see my reply to your other, private mail :) for the record: there is partial support for ODF 1.2 metadata in writer in OOo 3.2. i'll write more about that on the API list once i've written some more documentation. On 01/02/2010 16:59, Malguy Arnaud wrote: Hi, For my

Re: [dev] Re: Building OO on Slackware and run it on Ubuntu

2010-01-28 Thread K S
Does anyone know about this exception? (com::sun::star::lang::WrappedTargetRuntimeException) 2010/1/27 K S pgmb...@gmail.com Thank you, Michael, for your answer. Additional information: when OO crashes, the next exception appears: com::sun::star::lang::WrappedTargetRuntimeException And

[dev] Re: license question: np_sdk/mozsrc/npunix.c

2010-01-28 Thread Julius Davies
Hi, Anyone have a chance to look at these question? yours, Julius On Sat, Dec 26, 2009 at 6:29 PM, Julius Davies juliusdav...@gmail.com wrote: Hi, The [np_sdk/mozsrc/npunix.c] source file appears to be licensed under MPL-1.1.  It's not tri-licensed under the usual GPL/LGPL/MPL

Re: [dev] Re: license question: np_sdk/mozsrc/npunix.c

2010-01-28 Thread Martin Hollmichel
Julius Davies schrieb: Hi, Anyone have a chance to look at these question? yes, we're currently looking into this, please expect an update soon, Martin yours, Julius On Sat, Dec 26, 2009 at 6:29 PM, Julius Davies juliusdav...@gmail.com wrote: Hi, The [np_sdk/mozsrc/npunix.c]

[dev] Re: programming OpenOffice

2010-01-27 Thread Michael Stahl
On Tue, 2010-01-26 at 14:24 +0200, K S wrote: I would like to develop for OpenOffice too. I have already done the first stage - get the source and build. What is next? On 26/01/2010 21:17, Fabio A. Miranda wrote: Go to: qa.openoffice.org and start by fixing as much bugs as possible. in

[dev] Re: Building OO on Slackware and run it on Ubuntu

2010-01-27 Thread Michael Stahl
hi Kirill, On 26/01/2010 13:22, K S wrote: Dear OpenOffice Community, Please help me in next problem. I have made an OO build on Slackware Linux with next configuration: ./configure --with-use-shell=bash --with-system-libs --without-system-jars --without-system-icu --without-system-agg

Re: [dev] Re: Building OO on Slackware and run it on Ubuntu

2010-01-27 Thread K S
Thank you, Michael, for your answer. Additional information: when OO crashes, the next exception appears: com::sun::star::lang::WrappedTargetRuntimeException And it looks like OO cannot open the odt document, which is created automatically when swriter starts. Kirill 2010/1/27 Michael Stahl

[dev] Re: programming OpenOffice

2010-01-26 Thread Michael Stahl
On 26/01/2010 09:23, Brent Black wrote: I would like to help with the programming of OpenOffice. Brent Black blac...@yahoo.com hi Brent, please take a look at the wiki pages: http://wiki.services.openoffice.org/wiki/Development if you want to be a developer, your first task is to

Re: [dev] Re: programming OpenOffice

2010-01-26 Thread K S
I would like to develop for OpenOffice too. I have already done the first stage - get the source and build. What is next? 2010/1/26 Michael Stahl michael.st...@sun.com On 26/01/2010 09:23, Brent Black wrote: I would like to help with the programming of OpenOffice. Brent Black

[dev] Re: [api-dev] Help needed ... - FOSDEM input

2010-01-26 Thread Juergen Schmidt
Hi, i initially forgot the documentation and QA project. Clayton have asked on the documentation list as well and i would like to use his words (sounds much better from a native speaker) to remind you ;-) Replace the documentation project with any other project where you are working on or

Re: [dev] Re: programming OpenOffice

2010-01-26 Thread Fabio A. Miranda
Go to: qa.openoffice.org and start by fixing as much bugs as possible. On Tue, 2010-01-26 at 14:24 +0200, K S wrote: I would like to develop for OpenOffice too. I have already done the first stage - get the source and build. What is next? 2010/1/26 Michael Stahl michael.st...@sun.com On

[dev] Re: [api-dev] Java UNO Extensions broken in Mac OS X due to Apple AWT Java VM was loaded on first thread -- can't start AWT

2010-01-22 Thread Juergen Schmidt
Hi Fabio, yes this is a known issue on MacOS and a fix is not available. The recommendation is, don't use use AWT but UNO AWT dialogs. I know that it is probably not satisfying for you and UNO awt offers only limited controls etc. But it is the only solution at the moment. Using AWT brings

[dev] Re: How to build the openoffice from the src?

2010-01-12 Thread Björn Michaelsen
Am Tue, 12 Jan 2010 16:07:06 +0800 (CST) schrieb 周文斌 zhouwenbin2...@126.com: Hello, I am a student, I want to know how to build the openoffice from the src file? I have downloaded the src files, and I executed the command ./configure, successful,but execute the command make , lots of

[dev] Re: Some issues building Open Office on OSX

2010-01-11 Thread Björn Michaelsen
Am Mon, 11 Jan 2010 13:41:30 +0200 schrieb K S pgmb...@gmail.com: I did a clean make by doing a checkout and another make (obviously the wrong way to do things but I couldn't find the correct way to do a make clean :-( Any advice here?). In the current build system that would be: cd

Re: [dev] Re: Stay-put buttons

2010-01-09 Thread R. Georgeson
On Fri, 08 Jan 2010 23:01:39 +0100 Andreas Saeger saege...@onlinehome.de wrote: R. Georgeson wrote: Mind you I can't believe that wanting to stick a button on a spreadsheet which is always accessible as you scroll around is so ideosyncratic. Where have I seen this before? Oh, in

[dev] Re: Modifying OOo source: beginners help

2010-01-08 Thread Michael Stahl
On 08/01/2010 14:39, Richard Whitehead wrote: Hello, Please can someone help with the basics of adding some code to the OOo source. I am using a third-party static library that I want to call from the existing code. I added my new source code (to an existing OOo source file at

[dev] Re: Stay-put buttons

2010-01-08 Thread Andreas Saeger
R. Georgeson wrote: Mind you I can't believe that wanting to stick a button on a spreadsheet which is always accessible as you scroll around is so ideosyncratic. Where have I seen this before? Oh, in OpenOffice.org. It's called toolbar.

Re: [dev] Re: OpenOffice Integration

2010-01-04 Thread Mathias Bauer
K S wrote: Dear OpenOffice Development Community, My name is Kirill, and I am Software Engineering Professional. Let me ask you several questions concerning integration of Open Office into my project. The matter is that I would like to call OpenOffice from my Java application. If there

[dev] Re: [users] Re: [Announce] Education Project : reactivation of the us...@education mailing list

2009-12-29 Thread eric b
Le 29 déc. 09 à 19:47, Larry Gusaas a écrit : To subscribe, just send a mail at : users- subscr...@openoffice.org confirm, and that's all : you can start contributing to the Education Project !! Don't you mean users-subscr...@education.openoffice.org ? OOops, my bad : the right

[dev] Re: OpenOffice Integration

2009-12-28 Thread K S
Dear OpenOffice Development Community, My name is Kirill, and I am Software Engineering Professional. Let me ask you several questions concerning integration of Open Office into my project. The matter is that I would like to call OpenOffice from my Java application. If there is no

Re: [dev] Re: Build error

2009-12-23 Thread Richard Whitehead
Thanks Bhorn. I was obviously confused about which version I downloaded, sorry for the confusion. Have a good break, Richard - Original Message - From: Björn Michaelsen bjoern.michael...@gmail.com To: dev@openoffice.org Sent: Tuesday, December 22, 2009 6:54 PM Subject: [dev] Re

[dev] Re: Build error

2009-12-22 Thread Björn Michaelsen
Am Tue, 22 Dec 2009 10:27:39 - schrieb Richard Whitehead richard.whiteh...@ieee.org: Hello, I hope someone can help... I'm trying to build Open Office for the first time. I'm an experienced developer on Windows using Visual Studio, but I'm not used to the unix/cygwin style of build. I've

Re: [dev] Re: Build error

2009-12-22 Thread Rene Engelhard
Hi, On Tue, Dec 22, 2009 at 02:26:08PM +0100, Björn Michaelsen wrote: so simple now with mercurial), but there is a also testautomation tarball, maybe you need to add that one? If that is the case, we should indeed update the docs to reflect that. No, we should fix the build to *NOT* require

[dev] Re: Build error

2009-12-22 Thread Björn Michaelsen
Am Tue, 22 Dec 2009 14:39:51 +0100 schrieb Rene Engelhard r...@openoffice.org: No, we should fix the build to *NOT* require it if you don't need it. Actually, there is a lot of work going on in that area. see: http://wiki.services.openoffice.org/wiki/Build_Environment_Effort/Split_Build But,

Re: [dev] Re: Build error

2009-12-22 Thread Rene Engelhard
Hi, On Tue, Dec 22, 2009 at 03:08:09PM +0100, Björn Michaelsen wrote: Am Tue, 22 Dec 2009 14:39:51 +0100 schrieb Rene Engelhard r...@openoffice.org: No, we should fix the build to *NOT* require it if you don't need it. Actually, there is a lot of work going on in that area. see:

[dev] Re: Build error

2009-12-22 Thread Björn Michaelsen
Am Tue, 22 Dec 2009 15:27:46 +0100 schrieb Rene Engelhard r...@openoffice.org: Even now we do not (unless something changes recently which should be fixed) testautomatiopn for a simple build without running tests. True. Still, there are: - Things that can be done in hours or days (like fixing

[dev] Re: [tools-dev] Please read: SVN and HG server maintenance

2009-12-22 Thread Jens-Heiner Rechtien
Hi, the new disk has been successfully installed and the RAIDZ pool on the system has been resilvered. The OOo SCM server is now again working with full speed and reliability. Regards, Heiner Jens-Heiner Rechtien wrote: Hi, the OpenOffice.org SCM server for HG and SVN

Re: [dev] Re: Build error

2009-12-22 Thread Richard Whitehead
thanks for your help, Richard - Original Message - From: Björn Michaelsen bjoern.michael...@gmail.com To: dev@openoffice.org Sent: Tuesday, December 22, 2009 1:26 PM Subject: [dev] Re: Build error Am Tue, 22 Dec 2009 10:27:39 - schrieb Richard Whitehead richard.whiteh...@ieee.org

[dev] Re: Build error

2009-12-22 Thread Björn Michaelsen
Am Tue, 22 Dec 2009 17:39:41 - schrieb Richard Whitehead richard.whiteh...@ieee.org: Bjorn and Rene, I went to http://download.openoffice.org/2.4.3/source.html and got all of the source packages at the bottom of the page except the extensions. Hmmm, sorry, but something there does not

[dev] Re:

2009-12-11 Thread Andreas Saeger
ODF is the the only relevant free and open feature. Any of your programs can generate perfectly valid office documents with a similar feature set as in MS Office, usable with many different applications. Translating a typical VBA solution to something equivalent in Basic/Python/Java requires

[dev] Re: Would open office work for us?

2009-12-03 Thread Andreas Saeger
Lance Phillips at Owl Software wrote: To whom it may concern, I build an application for the food industry that uses Microsoft Excel. It is used by food companies all over the world. I'm really fed up with Microsoft. I'm wondering if I could do the same with OpenOffice. My application uses

[dev] Re: Would open office work for us?

2009-12-03 Thread T. J. Frazier
Andreas Saeger wrote: You are using Excel as application development platform. ... And why not? So do I. Stable, customizable, automatically cross-platform, and free. * Menus and XML All the menus (and toolbars) in OO.o are kept in XML files. Interfaces are available to customize these to

[dev] Re: Would open office work for us?

2009-12-03 Thread Andreas Saeger
T. J. Frazier wrote: Andreas Saeger wrote: You are using Excel as application development platform. ... And why not? So do I. Stable, customizable, automatically cross-platform, and free. Excel is *what*? * Menus and XML All the menus (and toolbars) in OO.o are kept in XML files.

Re: [dev] Re: OpenOffice Calc in the Financial Markets.

2009-11-19 Thread Juergen Schmidt
Hi Cassio, Cassio Neri wrote: Hi Jurgen. ok, lets assume that OOo Calc would become viable, the issues would be fixed and the missing features would be implemented. What do you think would people really think about a shift from Excel to Calc or is it more hypothetical. I mean is there really

[dev] [Re:] dmake: Error: -- Configuration file /usr/local/share/startup/startup

2009-11-19 Thread Albretch Mueller
Le 18 nov. 09 à 20:55, Albretch Mueller a écrit : Hi I finished running configure and bootstrap, but dmake is stumbing on: dmake: Error: -- Configuration file `/usr/local/share/startup/startup.mk' not found startup.mk seems to be there: Just a wild guess ... did you do source

Re: [dev] Re: OpenOffice Calc in the Financial Markets.

2009-11-19 Thread Cassio Neri
Hi Juergen and Björn, sophisticated mathematical models - costly comutations - did you have thought about grid computing, computing power on demand and highly scalable. In short you can prepare a job containg the stuff needed to do your calculations. Transfer it on the grid and run it. Data

Re: [dev] Re: OpenOffice Calc in the Financial Markets.

2009-11-19 Thread Juergen Schmidt
Cassio Neri wrote: Hi Juergen and Björn, sophisticated mathematical models - costly comutations - did you have thought about grid computing, computing power on demand and highly scalable. In short you can prepare a job containg the stuff needed to do your calculations. Transfer it on the grid

[dev] Re: Library requirements (freetype2 = 2.0 ) not met . . .

2009-11-18 Thread Michael Stahl
On 17/11/2009 17:32, Albretch Mueller wrote: configure: error: install curl to run this script and I already (apparently) fixed a similar curl-config one This is what my system looks like right now: r...@knoppix:/media/hdb2/inst/sw/OO/source/ooxpkgs# dpkg -l | grep curl ii libcurl3

Re: [dev] Re: Library requirements (freetype2 = 2.0 ) not met . . .

2009-11-18 Thread Thorsten Behrens
Michael Stahl wrote: What more curl(ing) stuff do I need? uhm, there really is a very simple rule for this: if configure complains that it cannot find the foo library, and you see that you have a libfooN package installed, then you should install a package that (on debian or derived

Re: [dev] Re: OpenOffice Calc in the Financial Markets.

2009-11-18 Thread Cassio Neri
Hi Jurgen. ok, lets assume that OOo Calc would become viable, the issues would be fixed and the missing features would be implemented. What do you think would people really think about a shift from Excel to Calc or is it more hypothetical. I mean is there really interest to move to an open

[dev] Re: OpenOffice Calc in the Financial Markets.

2009-11-18 Thread Andreas Saeger
Cassio Neri wrote: One intention (among others) of my previous messages was to propose a solution for our major problem. By doing so, OOo Calc will make one step to become a viable option for very important applications we have in financial markets. I'm very sorry to say that currently only

[dev] Re: OpenOffice Calc in the Financial Markets.

2009-11-18 Thread Björn Michaelsen
Am Wed, 18 Nov 2009 21:49:49 +0100 schrieb Andreas Saeger saege...@onlinehome.de: Cassio Neri wrote: One intention (among others) of my previous messages was to propose a solution for our major problem. By doing so, OOo Calc will make one step to become a viable option for very important

[dev] Re: OpenOffice Calc in the Financial Markets.

2009-11-18 Thread Andreas Saeger
Björn Michaelsen wrote: There is absolutely no reason for this ad-hominem. Financial markets are generally a very conservative business: There are enough fake arguments being thrown around to prevent adoption of open solutions. This is why I find it really delightful that Cassio Neri takes his

[dev] Re: OpenOffice Calc in the Financial Markets.

2009-11-18 Thread Björn Michaelsen
Am Wed, 18 Nov 2009 23:12:43 +0100 schrieb Andreas Saeger saege...@onlinehome.de: [...] Nobody has ever been fired for using Microsoft (and the money remains on the right side of the fence). Thats totally offtopic here on d...@openoffice.org. Best Regards, Bjoern Michaelsen

[dev] Re: OpenOffice Calc in the Financial Markets.

2009-11-18 Thread Andreas Saeger
Björn Michaelsen wrote: Am Wed, 18 Nov 2009 23:12:43 +0100 schrieb Andreas Saeger saege...@onlinehome.de: [...] Nobody has ever been fired for using Microsoft (and the money remains on the right side of the fence). Thats totally offtopic here on d...@openoffice.org. Best Regards, Bjoern

[dev] Re: OpenOffice Calc in the Financial Markets.

2009-11-17 Thread Andreas Saeger
Just like in Excel, when automatic calculation is off, F9 calculates all dirty cells which would have been calculated if automatic calculation had been on. A dirty cell has a formula which depends on a modified input argument. Ctrl+Shift+F9 recalculates all cells in the whole document. Same as

Re: [dev] Re: OpenOffice Calc in the Financial Markets.

2009-11-17 Thread Cassio Neri
On Tue, Nov 17, 2009 at 9:29 AM, Andreas Saeger saege...@onlinehome.de wrote: Just like in Excel, when automatic calculation is off, F9 calculates all dirty cells which would have been calculated if automatic calculation had been on. A dirty cell has a formula which depends on a modified input

Re: [dev] Re: OpenOffice Calc in the Financial Markets.

2009-11-17 Thread Juergen Schmidt
Cassio Neri wrote: On Tue, Nov 17, 2009 at 9:29 AM, Andreas Saeger saege...@onlinehome.de wrote: Just like in Excel, when automatic calculation is off, F9 calculates all dirty cells which would have been calculated if automatic calculation had been on. A dirty cell has a formula which depends

[dev] Re: [marketing] openoffice....@fosdem 2010

2009-11-11 Thread Louis Suarez-Potts
Thanks! Louis PS, Juergen et al., let's see if we can produce collateral that can be widely reused, so as to save money. On 2009-11-11, at 05:44 , Juergen Schmidt wrote: Hi, i just want o inform you that i have requested an OpenOffice.org stand and again an OpenOffice.org Developer

[dev] Re: [extensions-dev] IDL references from the Wiki - via IDL tags

2009-11-11 Thread bjoern michaelsen - Sun Microsystems - Hamburg Germany
On Wed, 11 Nov 2009 14:17:04 +0100 Juergen Schmidt juergen.schm...@sun.com wrote: this can be seen more as a reminder to make use of the IDL tags, see http://wiki.services.openoffice.org/wiki/Wiki_maintenance/IDLTagExtension for detailed info. And while we at it, please also use:

[dev] Re: What is the status of the layout manager and the related new format to describe dialogs

2009-11-09 Thread Michael Stahl
On 09/11/2009 16:43, Jan Nieuwenhuizen wrote: When I commit code to Go-oo, chances are that a binary will be built from them and shipped to users within a week. Sometimes within hours. Also, upstream often did [does?] not build ootb, and it's impossible for me to fix the build within a

[dev] Re: [council-discuss] election machinery (was Re: [council-discuss] Call for Nominations for Community Council Election)

2009-10-31 Thread eric b
Hi, just a question : In the first pahsis of the process, Alexandro Colorado nominateed me, for the Code representative seat. What I refused, for good personal reasons, i.e. I'm not candidate. And in the list Louis published, I don't see I was nominated at all. Please correct me if I'm

<    3   4   5   6   7   8   9   10   11   12   >