Re: [dev] eight common crash issues in OOo2.4.1 framework(writer simpress spreadsheet )

2008-08-04 Thread Tor Lillqvist
Is it really useful to mail lists of one's pet issues to this mailing list?

--tml



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [dev] eight common crash issues in OOo2.4.1framework(writer simpress spreadsheet )

2008-08-04 Thread XiuzhiCheng

Hi tml,


〉Is it really useful to mail lists of one's pet issues to this mailing list?
It is just an reminding to the projects leads and developers.  I asked my team 
members to submit these crash issues  last Friday and today.IMHO,the list can 
make it easy to found the issues . 
There are 5 mails ,writer, calc, simpress, charts,framework totally. 

Regards,
Xiuzhi


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [dev] eight common crash issues in OOo2.4.1framework(writer simpress spreadsheet )

2008-08-04 Thread Tor Lillqvist
 IMHO,the list can make it easy to found the issues . 

But when new issues are submitted, as far as I know, mail is automatically sent 
to an appropriate mailing list ([EMAIL PROTECTED]) and to the initial assignee 
of the issue. And they are periodically posted on planet.go-oo.org. And there 
is a search function in issuezilla. Surely finding issues is not an issue (pun 
intended). If everybody who files an issue starts sending mail here, too, that 
would be pretty pointless. Or do you imply that your issues are more important 
than others and need to be specially pointed out?

So yeah, I am in my grumpy Monday mood.

--tml



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [dev] how to disable print option in openoffice document

2008-08-04 Thread Christian Lohmaier
Hi Ramesh,

On Mon, Aug 4, 2008 at 12:13 PM, rameshkancherla
[EMAIL PROTECTED] wrote:

  This is Ramesh kancherla. I am doing in openoffice related project. I
 have to disable print option in open office document using programatically
 when user doesnt has print option on that document.
 if user has print permission in  another document i have to show print.
 can any one please tell me how do i enable or disable print option through
 programatically.

See http://api.openoffice.org/servlets/ReadMsg?listName=devmsgNo=17877

HTH,
ciao
Christian

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[dev] how to disable print option in openoffice document

2008-08-04 Thread rameshkancherla

hi, 
  This is Ramesh kancherla. I am doing in openoffice related project. I
have to disable print option in open office document using programatically
when user doesnt has print option on that document. 
if user has print permission in  another document i have to show print.
can any one please tell me how do i enable or disable print option through
programatically.

Thanks  Regards
Ramesh K
-- 
View this message in context: 
http://www.nabble.com/how-to-disable-print-option-in-openoffice-document-tp18808615p18808615.html
Sent from the openoffice - dev mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [dev] How can I reuse the implementation of a service?

2008-08-04 Thread Mathias Bauer
Rainman Lee wrote:

 oh, I see...
 Separating XButton from XWindow and reusing the window implementation
 can be done in a old-style service.
 But in a new-style service, only one interface a service can inherit.
 so if I try to separate XButton, there must be a XSomeInterface that
 inherits XButton and XWindow.
 The result is my Button that inherits XSomeInterface cant reuse Window
 implementation.

No, you can reuse it, but you must reimplement all methods from XWindow
and let them call the methods of your window class. If you have a
MyButtonClass that derives from MyWindowClass (implementing XWindow)
and implements XButton (derived from XWindow), and if your XWindow
interface has a method setvisible, the code would look like e.g.

MyButtonClass::setVisible( sal_Bool bSet )
{
MyWindowClass::setVisible( bSet );
}

I assume that with XButton and XWindow you are not referring to the
interfaces in the namespace com::sun::star::awt, as here XButton is not
derived from XWindow anyway.

Regards,
Mathias

-- 
Mathias Bauer (mba) - Project Lead OpenOffice.org Writer
OpenOffice.org Engineering at Sun: http://blogs.sun.com/GullFOSS
Please don't reply to [EMAIL PROTECTED].
I use it for the OOo lists and only rarely read other mails sent to it.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [dev] searching QA for a cws

2008-08-04 Thread Mathias Bauer
eric b wrote:

 CC for education project
 
 Hello,
 
 A new volunteer, Rakesh Pandit ( sca accepted) and me, think we have  
 completed the first part of wae4binfilter (for Education Project  
 purpose)
 The first cws was about uninitialized variables**, and it's name is  
 wae4binfilter01.
 
 Now, we need an experimented developer to confirm our changes are ok,  
 and approve the cws, or to tell us what is wrong, and needs to be  
 removed/modified.
 
 Thanks a lot in advance for your contribution,
 Eric Bachard
 
 
 **the next cws will aim to fix ctors initialisations warnings

Eric, did you receive an answer either in private communication or on
the education list (that I'm not subscribed to)?

Regards,
Mathias

-- 
Mathias Bauer (mba) - Project Lead OpenOffice.org Writer
OpenOffice.org Engineering at Sun: http://blogs.sun.com/GullFOSS
Please don't reply to [EMAIL PROTECTED].
I use it for the OOo lists and only rarely read other mails sent to it.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [dev] I wish to contribute to OpenOffice

2008-08-04 Thread Mathias Bauer
Dan Eloff wrote:

 On Sat, Aug 2, 2008 at 5:26 PM, Maximilian Odendahl
 [EMAIL PROTECTED] wrote:
 
 http://wiki.services.openoffice.org/wiki/Building_OOo_with_Cygwin_on_Windows
 
 That's an invaluable document. Thanks!

Dan, which compiler do you plan to use? In case it's the 2008 compiler
and the build is newer than dev300 m22, you have to take care to provide
the merge modules to get an installation set. I have provided a fix
for this in m29 but for now you have to copy the files manually. Please
come back to this list if you have a problem. Or look for an updated
version of the wiki page that I will provide in the next few days.

BTW: if you have suggestions for improvements of the wiki page, please
let me know.

Regards,
Mathias

-- 
Mathias Bauer (mba) - Project Lead OpenOffice.org Writer
OpenOffice.org Engineering at Sun: http://blogs.sun.com/GullFOSS
Please don't reply to [EMAIL PROTECTED].
I use it for the OOo lists and only rarely read other mails sent to it.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[dev] Thesis about open source projects

2008-08-04 Thread Michael Simonetto
Hi,

My name is Michael Simonetto, I'm a student in Brussels finishing my thesis
about communication in open source projects.
I need some interviews to illustrate and complete my work and have thought
the mailing list would be a convenient way to find some developers kind
enough to help me!
I don't know if I may send attachments to this mailing list, so if you are
interested, please reply and I'll send you the questions! We can also meet
on IRC or any communication channel you wish to use...
Thanks a lot!
Michael


PS : I'm afraid to say it's awfully urgent... (thesis due 18 august...), so
if you don't have time, you don't need to fully answer the questionnaire...
PPS : some of you may already have been contacted personally, sorry for
bothering a second time!


[dev] Properties, methods and actions in event procedures in forms? In OpenOffice.org Base.

2008-08-04 Thread Svend Larsen
I have several years of programming experience and some 10 years of
expirience with Microsoft Access databases. I recently began studying Open
Office, but I miss *documentation* about *properties, methods and actions*in
*event procedures* in forms; I can see that event procedures are called *
macros* in *OpenOffice.org Base*.

For example, when in Access I press a certain button in a form, it causes a
report to open by this event procedure:

   Private Sub listrapp_Interesse3_Click()
   ' Report on all series where interest is rather big (=3).
   ' Svend Larsen, 23/7-08.
   *DoCmd.OpenReport* R_ListSerierAlbum, acViewPreview, , [interesse]=3
   Screen.ActiveReport.begbogst = Alle med stor interesse (=3)
   End Sub

Correspondingly, opening a form is done by *DoCmd.OpenForm*. If I want to
close the current form, I do it  with *DoCmd.Close*. Rather simple, if one
knows what to write. I presume that Open Office is equally simple, although
of course other magic words are to be used.

But I have not been able to find documentation where I can see what the
corresponding commands are called in OpenOffice.org Base. Can you help me?


Kind regards
Svend Larsen
Copenhagen
Denmark


[dev] Error message for the platform of ARM on the scratchbox environment

2008-08-04 Thread JiangChuang
Hi, everyone,

I'm ChuangJiang and from Beijing RedFlag2000 Chinese CO. LTD..I'm building 
OpenOffice.org(OOH680_m12) for the platform of ARM on the ScratchBox 
environment. And I have a problem and ask you for help. Building the module of 
sal, I've get the following error messages:


mkdir ../unxlngr.pro/inc/sal
/scratchbox/tools/bin/mkdir: cannot create directory
`../unxlngr.pro/inc/sal': File exists
../unxlngr.pro/bin/typesconfig ../unxlngr.pro/inc/sal/typesizes.h
Inconsistency detected by ld.so:
../sysdeps/unix/sysv/linux/dl-origin.c: 48: _dl_get_origin:
Assertion `linkval[0] == '/'' failed!
dmake: Error code 127, while making
'../unxlngr.pro/inc/sal/typesizes.h'
---* tg_merge.mk *---
ERROR: Error 65280 occurred while making
/home/arm/ooo_OOH680_m12_src/sal/typesconfig

What can I do? Could you give me any advice? Thank you so much for your help.


Best regards.

Chuangjiang



-- 
½¯´³ ¿ªÔ´¼¼Êõ²¿ ϵͳ·ÖÎöʦ   
±±¾©ºìÆìÖÐÎÄ·¡ÇªÈí¼þ¼¼ÊõÓÐÏÞ¹«Ë¾
Tel. £¨8610£©51570010-6181
[EMAIL PROTECTED]
µØÖ·£º±±¾©¾­¼Ã¼¼Êõ¿ª·¢ÇøÎ÷»·ÄÏ·18ºÅ»ãÁúÉ­A×ù¶þ²ã
Óʱࣺ100176



[dev] Error message for the platform of ARM on the scratchbox environment

2008-08-04 Thread JiangChuang
Hi, everyone,

I'm ChuangJiang and from Beijing RedFlag2000 Chinese CO. LTD..I'm building 
OpenOffice.org(OOH680_m12) for the platform of ARM on the ScratchBox 
environment. And I have a problem and ask you for help. Building the module of 
sal, I've get the following error messages:


mkdir ../unxlngr.pro/inc/sal
/scratchbox/tools/bin/mkdir: cannot create directory
`../unxlngr.pro/inc/sal': File exists
../unxlngr.pro/bin/typesconfig ../unxlngr.pro/inc/sal/typesizes.h
Inconsistency detected by ld.so:
../sysdeps/unix/sysv/linux/dl-origin.c: 48: _dl_get_origin:
Assertion `linkval[0] == '/'' failed!
dmake: Error code 127, while making
'../unxlngr.pro/inc/sal/typesizes.h'
---* tg_merge.mk *---
ERROR: Error 65280 occurred while making
/home/arm/ooo_OOH680_m12_src/sal/typesconfig

What can I do? Could you give me any advice? Thank you so much for your help.


Best regards.

Chuangjiang

-- 
½¯´³ ¿ªÔ´¼¼Êõ²¿ ϵͳ·ÖÎöʦ   
±±¾©ºìÆìÖÐÎÄ·¡ÇªÈí¼þ¼¼ÊõÓÐÏÞ¹«Ë¾
Tel. £¨8610£©51570010-6181
[EMAIL PROTECTED]
µØÖ·£º±±¾©¾­¼Ã¼¼Êõ¿ª·¢ÇøÎ÷»·ÄÏ·18ºÅ»ãÁúÉ­A×ù¶þ²ã
Óʱࣺ100176


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[dev] Error message for the platform of ARM on the scratchbox environment]

2008-08-04 Thread Cynthia Qu
Hi, all,

I'm building OpenOffice.org(OOH680_m12) for the platform of ARM on the 
ScratchBox environment. And I have a problem and need your help.  I got the 
following error messages when building the module of sal:

mkdir ../unxlngr.pro/inc/sal
/scratchbox/tools/bin/mkdir: cannot create directory
`../unxlngr.pro/inc/sal': File exists
../unxlngr.pro/bin/typesconfig ../unxlngr.pro/inc/sal/typesizes.h
Inconsistency detected by ld.so:
../sysdeps/unix/sysv/linux/dl-origin.c: 48: _dl_get_origin:
Assertion `linkval[0] == '/'' failed!
dmake: Error code 127, while making
'../unxlngr.pro/inc/sal/typesizes.h'
---* tg_merge.mk *---
ERROR: Error 65280 occurred while making
/home/arm/ooo_OOH680_m12_src/sal/typesconfig

What shall I do? Could you give me any advice? 
Thank you so much for your help.

Best regards.
Cynthia
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Re: [dev] Error message for the platform of ARM on the scratchbox environment

2008-08-04 Thread Caolan McNamara
On Mon, 2008-08-04 at 13:08 +0800, JiangChuang wrote:
 Hi, everyone,
 
 I'm ChuangJiang and from Beijing RedFlag2000 Chinese CO. LTD..I'm
  building OpenOffice.org(OOH680_m12) for the platform of ARM on the
  ScratchBox environment. And I have a problem and ask you for help.
  Building the module of sal, I've get the following error messages:
 

 Inconsistency detected by ld.so:
 ../sysdeps/unix/sysv/linux/dl-origin.c: 48: _dl_get_origin:
 Assertion `linkval[0] == '/'' failed!

I think I recognize this. This is actually not specific to ARM at all,
just a generic problem with the $ORIGIN linker option with a very recent
glibc which I'm told is now fixed again in glibc.

You'll find that e.g. running typeconfig will fail but
/path/to/typesconfig will work.

See e.g. https://bugzilla.redhat.com/show_bug.cgi?id=457560 

C.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[dev] checking whether the C compiler works... configure: error: cannot run C compiled programs.

2008-08-04 Thread JiangChuang
Dear everyone,
I'm building OpenOffice.org(OOH680_m12) for the platform of ARM on
the ScratchBox environment. I've got the following error message:

/home/arm/ooo_OOH680_m12_src/libxml2
-
mkdir ./unxlngr.pro/misc/build/libxml2-2.6.17/
/scratchbox/tools/bin/mkdir: cannot create directory
`./unxlngr.pro/misc/build/libxml2-2.6.17/': File exists
cd ./unxlngr.pro/misc/build/libxml2-2.6.17/  ./configure
--enable-ipv6=no --without-python --enable-static=no
--with-sax1=yes ADDCFLAGS= CFLAGS=
LDFLAGS=-Wl,-z,noexecstack   touch so_configured_so_libxml2
checking build system type... arm-unknown-linux-gnu
checking host system type... arm-unknown-linux-gnu
checking for a BSD-compatible install...
/scratchbox/tools/bin/install -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... configure: error:
cannot run C compiled programs.
If you meant to cross compile, use `--host'.
See `config.log' for more details.
dmake:  Error code 1, while making
'unxlngr.pro/misc/build/so_configured_so_libxml2'
---* tg_merge.mk *---

ERROR: Error 65280 occurred while making
/home/arm/ooo_OOH680_m12_src/libxml2

Could you give me any advice? TIA.

By the way, the environment value are as follows:

[sbox-DIABLO_ARMEL: ~]  echo $PATH

.:/home/arm/ooo_OOH680_m12_src/solver/680/unxlngr.pro/bin:/home/arm/ooo_OOH680_m12_src/solenv/unxlngr/bin:/home/arm/ooo_OOH680_m12_src/solenv/bin:/home/arm/ooo_OOH680_m12_src/solver/680/unxlngr.pro/bin:/home/arm/ooo_OOH680_m12_src/solenv/unxlngr/bin:/home/arm/ooo_OOH680_m12_src/solenv/bin:/scratchbox/devkits/cputransp/bin:/scratchbox/devkits/maemo3-tools/bin:/scratchbox/devkits/debian-etch/bin:/scratchbox/devkits/perl/bin:/scratchbox/tools/bin:/targets/links/arch_tools/bin:/host_usr/bin:/scratchbox/compilers/bin:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin:/sbin:/usr/sbin:NO_JAVA_HOME/bin:NO_JAVA_HOME/bin
[sbox-DIABLO_ARMEL: ~]  which gcc
/scratchbox/compilers/bin/gcc
[sbox-DIABLO_ARMEL: ~]  which g++
/scratchbox/compilers/bin/g++
[sbox-DIABLO_ARMEL: ~]  which cc
/scratchbox/compilers/bin/cc
[sbox-DIABLO_ARMEL: ~]  ls /scratchbox/compilers/bin/gcc -l
lrwxrwxrwx  1 root root 14 Aug  1 03:31
/scratchbox/compilers/bin/gcc - sb_gcc_wrapper
[sbox-DIABLO_ARMEL: ~]  ls /scratchbox/compilers/bin/cc -l
lrwxrwxrwx  1 root root 14 Aug  1 03:31
/scratchbox/compilers/bin/cc - sb_gcc_wrapper
[sbox-DIABLO_ARMEL: ~]  ls /scratchbox/compilers/bin/g++ -l
lrwxrwxrwx  1 root root 14 Aug  1 03:31
/scratchbox/compilers/bin/g++ - sb_gcc_wrapper
[sbox-DIABLO_ARMEL: ~]  which sb_gcc_wrapper
/scratchbox/compilers/bin/sb_gcc_wrapper
[sbox-DIABLO_ARMEL: ~]  ls -l
/scratchbox/compilers/bin/sb_gcc_wrapper
-rwxr-xr-x  1 root root 42024 May 23 07:19
/scratchbox/compilers/bin/sb_gcc_wrapper
[sbox-DIABLO_ARMEL: ~]  gcc
sbox-arm-linux-gcc: no input files
[sbox-DIABLO_ARMEL: ~]  cc
sbox-arm-linux-cc: no input files
[sbox-DIABLO_ARMEL: ~]  g++
sbox-arm-linux-g++: no input files
[sbox-DIABLO_ARMEL: ~]  sb_gcc_wrapper
sb_gcc_wrapper (sb_gcc_wrapper): sb_gcc_wrapper cannot be recognized
Maybe you are trying to run a compiler of a wrong architecture?
[sbox-DIABLO_ARMEL: ~] 

Best Regards.
Chuangjiang

-- 
Chuangjiang/¿¿
Beijing RedFlag Chinese 2000 Software CO., LTD.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]