Re: [dev] Custom data inside OpenDocument

2007-10-15 Thread Cor Nouws
Hi Robert, Robert Vojta wrote (14-10-2007 23:28) On 10/12/07, ashok _ [EMAIL PROTECTED] wrote: to set a custom property : ThisComponent.DocumentInfo.SetPropertyValue(aCustomProperty, a Custom Value) This doesn't work in 2.2.1 version (I forgot to mention OpenOffice.org version in my

Re: [dev] Custom data inside OpenDocument

2007-10-15 Thread Mathias Bauer
Robert Vojta wrote: On 10/12/07, ashok _ [EMAIL PROTECTED] wrote: Hallo, to set a custom property : ThisComponent.DocumentInfo.SetPropertyValue(aCustomProperty, a Custom Value) This doesn't work in 2.2.1 version (I forgot to mention OpenOffice.org version in my previous email). I

Re: [dev] Custom data inside OpenDocument

2007-10-15 Thread Robert Vojta
On 10/15/07, Mathias Bauer [EMAIL PROTECTED] wrote: Hallo, You have to add the property before you can assign it a value: So, when I call setPropertyValue in Java and property wasn't added previously, it should raise UnknownPropertyException exception. If yes, this exception isn't raised here

Re: [dev] Custom data inside OpenDocument

2007-10-15 Thread Marten Feldtmann
The method metioned below is part of the beansXPropertyContainer interface and should be available under DocumentInfo Marten Robert Vojta schrieb: On 10/15/07, Mathias Bauer [EMAIL PROTECTED] wrote: Hallo, You have to add the property before you can assign it a value: So,

Re: [dev] building OOO on solaris 10 x86

2007-10-15 Thread Jens-Heiner Rechtien
Hi Gérard, I'm wondering which version of Solaris x86 you are using? All my versions of Solaris (Solaris 8, Solaris 9, OpenSolaris Develepor Edition 09/07) know about the -P switch of /usr/ccs/bin/as. It just preprocesses the file before assembling. You could replace interlck_x86.s with a

Re: [dev] building OOO on solaris 10 x86

2007-10-15 Thread Gérard Henry
Jens-Heiner Rechtien wrote: Hi Gérard, I'm wondering which version of Solaris x86 you are using? All my you're right, as is broken on my machine, an old modification. Now it's ok for that, but another error: caiman-henry% dmake clean rm -rf */unxsoli4.pro rm -rf solver/*/unxsoli4.pro echo

Re: [dev] building OOO on solaris 10 x86

2007-10-15 Thread Jens-Heiner Rechtien
Hi, looks like the top level makefile is broken for Solaris (looks like it wants a gmake). Please place gmake in PATH before /usr/ccs/bin/make (can be found in /usr/sfw/bin nowadays) Heiner Gérard Henry wrote: Jens-Heiner Rechtien wrote: Hi Gérard, I'm wondering which version of

Re: [dev] How to get the supported interfaces of an unknown object ?

2007-10-15 Thread Joachim Lingner
Marten Feldtmann wrote: All I would like to have is a way to implement: anObject.SupportsInterfacesNamed(com.sun.star.reflection.XTypeDescription) which may returns true or false and this via UNO calls and not via BASIC special calls (to use it under OLE). XInterface.queryInterface

Re: [dev] building OOO on solaris 10 x86

2007-10-15 Thread Gérard Henry
Jens-Heiner Rechtien wrote: Hi, looks like the top level makefile is broken for Solaris (looks like it wants a gmake). Please place gmake in PATH before /usr/ccs/bin/make (can be found in /usr/sfw/bin nowadays) ok, i did it, but got another error: mv

[dev] Mirroring the OpenOffice CVS repository

2007-10-15 Thread Steven Swanson
I'm interested in creating a copy of the openoffice cvs repository for use in a research project. We are studying storage systems and would like to use interaction with a large cvs repository as workload. Is there a way that we could rsync or otherwise transfer the whole cvsroot to one

Re: [dev] Mirroring the OpenOffice CVS repository

2007-10-15 Thread Martin Hollmichel
Generally it should be possible to use cvsup for mirroring the OpenOffice.org CVS Repository (cvsup.services.openoffice.org), A supfile may look like this: *default umask=2 *default host=cvsup.services.openoffice.org *default base=. *default prefix=. *default release=cvs *default delete

[dev] building ooo failed with sun studio 12

2007-10-15 Thread Gérard Henry
hello, i'm trying to compile SRC680_m233 on a sparc machine (Solaris Express build 69), with Sun Studio 12 (fully patched): CC -mt -library=%none,Crun -I. -I/home/ooo/build/SRC680_m233/stlport/unxsols4.pro/misc/build/STLport-4.0/src/../stlport/SC5 -I/usr/include -D__SGI_STL_OWN_IOSTREAMS -O3

[dev] Sample code

2007-10-15 Thread Nikos Trivlis
Dear friends, I have a sample c-like code about how to improve the POW (power function) and you could maybe find it useful for calc. // sample code start double pow (double number,int exponent) { int i=0; double result=0; if (number=0) return 0; if (exponent=0) return 1; while (exponent) {

[dev] mirroring the openoffice cvs repository

2007-10-15 Thread Steven Swanson
I'm interested in creating a copy of the openoffice cvs repository for use in a research project. We are studying storage systems and would like to use interaction with a large cvs repository as workload. Is there a way that we could rsync or otherwise transfer the whole cvsroot to one

[dev] OLE, data type hyper and returned vt value !?

2007-10-15 Thread Marten Feldtmann
When running around in the reflection system of OpenOffice 2.x I came across the following problem: Some constants have adefined data type hyper, which means signed 64 bit values. When I query the value for that constant I get a dispatched (is this the right name) with a vt type = 14. I ran