[dev] "vanilla" linux builds

2008-07-22 Thread Caolan McNamara
Do we have a buildbot or any other piece of infrastructure that is
capable of providing an installset that uses or matches the buildsystem
of the "vanilla" linux builds provided by www.openoffice.org

i.e. i386, builds with the same compiler, builds with the vclplugs,
provides rpms, installs cleanly on oldest qa-used platforms.

C.


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



[dev] searching QA for a cws

2008-07-22 Thread eric b

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
--
qɔᴉɹə






Re: [dev] "vanilla" linux builds

2008-07-22 Thread Christian Lohmaier
Hi *.

On Tue, Jul 22, 2008 at 10:48 AM, Caolan McNamara <[EMAIL PROTECTED]> wrote:
> Do we have a buildbot or any other piece of infrastructure that is
> capable of providing an installset that uses or matches the buildsystem
> of the "vanilla" linux builds provided by www.openoffice.org
>
> i.e. i386, builds with the same compiler, builds with the vclplugs,
> provides rpms, installs cleanly on oldest qa-used platforms.

Well - if the O3-Iso http://wiki.services.openoffice.org/wiki/O3-build
would have the GTK stuff needed to build the vclplugs, the O3-bot
would match those requirements.

Until then you only get rpms that (should) run on the oldest systems,
but without the vlcplugins/filepickers...

ciao
Christian

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



Re: [dev] "vanilla" linux builds

2008-07-22 Thread Caolan McNamara
On Tue, 2008-07-22 at 13:37 +0200, Christian Lohmaier wrote:
> Hi *.
> 
> On Tue, Jul 22, 2008 at 10:48 AM, Caolan McNamara <[EMAIL PROTECTED]> wrote:
> > Do we have a buildbot or any other piece of infrastructure that is
> > capable of providing an installset that uses or matches the buildsystem
> > of the "vanilla" linux builds provided by www.openoffice.org
> >
> > i.e. i386, builds with the same compiler, builds with the vclplugs,
> > provides rpms, installs cleanly on oldest qa-used platforms.
> 
> Well - if the O3-Iso http://wiki.services.openoffice.org/wiki/O3-build
> would have the GTK stuff needed to build the vclplugs, the O3-bot
> would match those requirements.

That's almost ideal. Is it known if e.g. a master DEV300_mXX built with
O3 passes QA without any known errors ? 

What is the version of gtk2/glib2 that Hamburg builds against at the
moment ?

C.


-
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-07-22 Thread Rainman Lee
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.


On Wed, Jul 16, 2008 at 1:11 AM, Mathias Bauer <[EMAIL PROTECTED]> wrote:
> Rainman Lee wrote:
>
>> hello everyone,
>> I defined a interfaces tree like this:
>>
>> XWindow
>>  |
>>  |
>> XButton
>>  |
>>  |
>> XImageButton
>>
>> and I have implemented XWindow in my Window service.
>> now I want to implement XButton, XImageButton respectively in Button,
>> ImageButton services.
>> Is there a convenient method with which I can reuse the Window's
>> implementation, instead of reimplementing all XWindow's interfaces in
>> Button?
>> Thank you very much!
>
> If XButton wasn't derived from XWindow it would be easy - just have your
> button class inherit from the window class, add the additional interface
> and implement only the methods from this interface. As XButton includes
> XWindow, you must reimplement the methods in your button class, but you
> can just forward it to your inherited window implementation.
>
> Ciao,
> 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]
>
>

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