[dev] Re: Build OOo 3.2.1 with MediaWiki extension

2011-05-16 Thread Mathias Bauer

On 12.05.2011 09:42, Andor E wrote:

Hi,
I used the configure switch --enable-wiki-publisher to activate the
MediaWiki extension. The extension is dutifully built and copied to
the solver. But it is not included in the Debian packages and
therefore not installed. Am I missing something or is this how it is
supposed to be?

Thanks

eymux


This is something that you should ask the Debian people. Having said 
that, nevertheless AFAIK the Debian version of OOo never contained this 
extension.


If you have built it yourself on your system, you can install it by 
yourself with unopkg or by using the extension manager of OOo.


Regards,
Mathias

--
Mathias Bauer (mba) - Project Lead OpenOffice.org Writer
OpenOffice.org Engineering at Oracle: http://blogs.sun.com/GullFOSS
Please don't reply to nospamfor...@gmx.de.
I use it for the OOo lists and only rarely read other mails sent to it.
--
-
To unsubscribe send email to dev-unsubscr...@openoffice.org
For additional commands send email to sy...@openoffice.org
with Subject: help


[dev] Need help with building DEV300m106 with cygwin

2011-05-16 Thread Regina Henschel

Hi,

I need help with building DEV300m106. I use cygwin and MSVC 2008 Express 
on WinXP. I have got a build in the end, but the program has no menus 
and no toolbars and therefore cannot be used. So something went entirely 
wrong. What can cause this?


I have got the source from http://hg.services.openoffice.org/DEV300/
I have applied the patch from 
http://openoffice.org/bugzilla/show_bug.cgi?id=117793

I have set --enable-cairo in my config settings.
I have build and delivered cairo manually.

My last successful build was DEV300m100. But DEV300m106 does not build 
with the configure settings I used for DEV300m100. It fails in pango 
because of missing cairo.h.


Kind regards
Regina


--
-
To unsubscribe send email to dev-unsubscr...@openoffice.org
For additional commands send email to sy...@openoffice.org
with Subject: help


[dev] Re: Need help with building DEV300m106 with cygwin

2011-05-16 Thread Mathias Bauer

On 16.05.2011 11:10, Regina Henschel wrote:

Hi,

I need help with building DEV300m106. I use cygwin and MSVC 2008 Express
on WinXP. I have got a build in the end, but the program has no menus
and no toolbars and therefore cannot be used. So something went entirely
wrong. What can cause this?


Do you have all the necessary xml files? They should be here:

$(INST)/Basis/share/config/soffice.cfg/modules

Other possible root causes:

- wrong module names (but that should cause more problems)
- some problems in the framework code (layoutmanager)
- some problems in vcl


I have got the source from http://hg.services.openoffice.org/DEV300/
I have applied the patch from
http://openoffice.org/bugzilla/show_bug.cgi?id=117793
I have set --enable-cairo in my config settings.
I have build and delivered cairo manually.


Does that mean that you don't have these problems if you build without 
--enable-cairo?


Regards,
Mathias

--
Mathias Bauer (mba) - Project Lead OpenOffice.org Writer
OpenOffice.org Engineering at Oracle: http://blogs.sun.com/GullFOSS
Please don't reply to nospamfor...@gmx.de.
I use it for the OOo lists and only rarely read other mails sent to it.
--
-
To unsubscribe send email to dev-unsubscr...@openoffice.org
For additional commands send email to sy...@openoffice.org
with Subject: help


[dev] odt2braille on the Mac

2011-05-16 Thread Bert Frees

Hello,

I'm new to this mailing list. My name is Bert Frees. I am the developer 
of odt2braille, the OpenOffice.org plugin for printing and exporting 
Braille. The website is http://odt2braille.sourceforge.net/index.html.


I'm trying to make this plugin available on the Mac, but I've been 
puzzling on a bug for some time now and I'm really stuck. I hope there 
is somebody on this list who is familiar with OOo on the Mac, and who 
knows what might be the problem.


I'm using javax.print.PrintServiceLookup 
http://download.oracle.com/javase/1.4.2/docs/api/javax/print/PrintServiceLookup.html 
to look up the default printer device. It works fine on Windows, but on 
Mac OS it causes OOo to crash. Also, I'm sure the problem is OOo-related 
because the code runs fine when it is not embedded in an OOo extension.


This is the code:

javax.print.PrintService[] printers = 
javax.print.PrintServiceLookup.lookupDefaultPrintService();



Thanks,
Bert

--
Bert Frees
Katholieke Universiteit Leuven
Dept. Elektrotechniek - ESAT - SCD
Onderzoeksgroep Documentarchitecturen
Kasteelpark Arenberg 10 bus 2442
B-3001 Heverlee-Leuven
België

--
-
To unsubscribe send email to dev-unsubscr...@openoffice.org
For additional commands send email to sy...@openoffice.org
with Subject: help


[dev] Re: Need help with building DEV300m106 with cygwin

2011-05-16 Thread Regina Henschel

Hi Mathias,

Mathias Bauer schrieb:

On 16.05.2011 11:10, Regina Henschel wrote:

Hi,

I need help with building DEV300m106. I use cygwin and MSVC 2008 Express
on WinXP. I have got a build in the end, but the program has no menus
and no toolbars and therefore cannot be used. So something went entirely
wrong. What can cause this?


Do you have all the necessary xml files? They should be here:

$(INST)/Basis/share/config/soffice.cfg/modules


No, they are missing. I have now copied all the folders from a normal 
DEV300m106 installation. That seems to work.




Other possible root causes:

- wrong module names (but that should cause more problems)
- some problems in the framework code (layoutmanager)
- some problems in vcl


I have got the source from http://hg.services.openoffice.org/DEV300/
I have applied the patch from
http://openoffice.org/bugzilla/show_bug.cgi?id=117793
I have set --enable-cairo in my config settings.
I have build and delivered cairo manually.


Does that mean that you don't have these problems if you build without
--enable-cairo?


Without --enable-cairo setting or with setting --disable-cairo it 
doesn't build at all, because pango is missing cairo.h. If I then try to 
build cairo manually, it says that it is not enabled.


Kind regards
Regina


--
-
To unsubscribe send email to dev-unsubscr...@openoffice.org
For additional commands send email to sy...@openoffice.org
with Subject: help


[dev] Re: Need help with building DEV300m106 with cygwin

2011-05-16 Thread Mathias Bauer

On 16.05.2011 12:15, Regina Henschel wrote:

Hi Mathias,

Mathias Bauer schrieb:

On 16.05.2011 11:10, Regina Henschel wrote:

Hi,

I need help with building DEV300m106. I use cygwin and MSVC 2008 Express
on WinXP. I have got a build in the end, but the program has no menus
and no toolbars and therefore cannot be used. So something went entirely
wrong. What can cause this?


Do you have all the necessary xml files? They should be here:

$(INST)/Basis/share/config/soffice.cfg/modules


No, they are missing. I have now copied all the folders from a normal
DEV300m106 installation. That seems to work.


So you seem to have a problem with building the packconfig folder in the 
postprocess module (or haven't built it at all). What makes me wonder is 
that you didn't get a break in instsetoo_native then.






Other possible root causes:

- wrong module names (but that should cause more problems)
- some problems in the framework code (layoutmanager)
- some problems in vcl


I have got the source from http://hg.services.openoffice.org/DEV300/
I have applied the patch from
http://openoffice.org/bugzilla/show_bug.cgi?id=117793
I have set --enable-cairo in my config settings.
I have build and delivered cairo manually.


Does that mean that you don't have these problems if you build without
--enable-cairo?


Without --enable-cairo setting or with setting --disable-cairo it
doesn't build at all, because pango is missing cairo.h. If I then try to
build cairo manually, it says that it is not enabled.


I can not confirm this problem. I had no problem with building OOo 
DEV300_m106 on Windows/cygwin without specifying any cairo related switches.


Regards,
Mathias

--
Mathias Bauer (mba) - Project Lead OpenOffice.org Writer
OpenOffice.org Engineering at Oracle: http://blogs.sun.com/GullFOSS
Please don't reply to nospamfor...@gmx.de.
I use it for the OOo lists and only rarely read other mails sent to it.
--
-
To unsubscribe send email to dev-unsubscr...@openoffice.org
For additional commands send email to sy...@openoffice.org
with Subject: help


[dev] Re: Need help with building DEV300m106 with cygwin

2011-05-16 Thread Regina Henschel

Hi Mathias,

with copying the missing config files the build works so far, that I can 
use it to debug in sc.


Mathias Bauer schrieb:

On 16.05.2011 12:15, Regina Henschel wrote:

Hi Mathias,

Mathias Bauer schrieb:

On 16.05.2011 11:10, Regina Henschel wrote:



I have got the source from http://hg.services.openoffice.org/DEV300/
I have applied the patch from
http://openoffice.org/bugzilla/show_bug.cgi?id=117793
I have set --enable-cairo in my config settings.
I have build and delivered cairo manually.


Does that mean that you don't have these problems if you build without
--enable-cairo?


Without --enable-cairo setting or with setting --disable-cairo it
doesn't build at all, because pango is missing cairo.h. If I then try to
build cairo manually, it says that it is not enabled.


I can not confirm this problem. I had no problem with building OOo
DEV300_m106 on Windows/cygwin without specifying any cairo related
switches.


I do a build with switch --enable-dbgutil, does it make a difference?

There had been at lot of stops and resuming, that I think it is best, if 
I start from scratch again, and then report each single problem 
immediately. Perhaps then it is easier to see, what goes wrong in my 
environment. Shall I start without any cairo related switches?


Kind regards
Regina
--
-
To unsubscribe send email to dev-unsubscr...@openoffice.org
For additional commands send email to sy...@openoffice.org
with Subject: help


[dev] Re: Need help with building DEV300m106 with cygwin

2011-05-16 Thread Regina Henschel

Hi Mathias,

Mathias Bauer schrieb:


Without --enable-cairo setting or with setting --disable-cairo it
doesn't build at all, because pango is missing cairo.h. If I then try to
build cairo manually, it says that it is not enabled.


I can not confirm this problem. I had no problem with building OOo
DEV300_m106 on Windows/cygwin without specifying any cairo related
switches.


I have patch rsvglips_glib_win32.patch applied.
Then I have used
./configure \
 --with-directx-home=/cygdrive/c/Programme/Microsoft DirectX SDK 
(March 2009) \

 --with-cl-home=/cygdrive/c/Programme/Microsoft Visual Studio 9.0/VC \
 --disable-activex \
 --disable-build-mozilla \
 --disable-nss-module \
 --disable-atl \
 --with-frame-home=/cygdrive/c/Programme/Microsoft SDKs/Windows/v6.1 \
 --with-psdk-home=/cygdrive/c/Programme/Microsoft SDKs/Windows/v6.1 \
 --with-midl-path=/cygdrive/c/Programme/Microsoft 
SDKs/Windows/v6.0A/bin \
 --with-asm-home=/cygdrive/c/Programme/Microsoft Visual Studio 
9.0/VC/bin \

 --with-jdk-home=/cygdrive/c/Programme/Java/jdk1.6.0_20 \
 --with-csc-path=/cygdrive/c/Windows/Microsoft.NET/Framework/v3.5 \
 --with-ant-home=/ant \
 --without-junit \
 --enable-dbgutil \
 --with-vendor=Regina \
 --with-build-version=16Mai11

Then in instsetoo_native
build --all

It runs till
pangocairo-context.c
c:\dev300m106cairo\pango\wntmsci12\misc\build\pango-1.28.3\pango\pangocairo.h(26) 
: fatal error C1083: Cannot open include file: 'cairo.h': No such file 
or directory
NMAKE : fatal error U1077: 'C:\PROGRA~1\MICROS~1.0\VC\bin\cl.EXE' : 
return code '0x2'

Stop.
NMAKE : fatal error U1077: 'C:\PROGRA~1\MICROS~1.0\VC\bin\nmake.EXE' : 
return code '0x2'

Stop.
NMAKE : fatal error U1077: 'for' : return code '0x2'
Stop.
dmake:  Error code 2, while making 
'./wntmsci12/misc/build/so_built_so_pango'


1 module(s):
pango
need(s) to be rebuilt

So what to do now?

Kind regards
Regina
--
-
To unsubscribe send email to dev-unsubscr...@openoffice.org
For additional commands send email to sy...@openoffice.org
with Subject: help


[dev] Problem with building glib on Windows

2011-05-16 Thread Dmitry A. Ashkadov

Hello!

I cannot build OpenOffice (cygwin, on Windows) because the module 'glib' 
doesn't build!


   mkdir.exe ./wntmsci12/misc/build/glib-2.28.1/
   mkdir: cannot create directory
   `./wntmsci12/misc/build/glib-2.28.1/': File exists
   cd ./wntmsci12/misc/build/glib-2.28.1/  nmake -f makefile.msc 
   C:/cygwin/bin/touch.exe
   
C:/cygwin/home/user_name/projects/openoffice/DEV300/glib/./wntmsci12/misc/build/so_built_so_glib

   Microsoft (R) Program Maintenance Utility Version 9.00.30729.01
   Copyright (C) Microsoft Corporation.  All rights reserved.

/usr/bin/cp glib/glibconfig.h.win32 glib/glibconfig.h
   Системе не удается найти указанный путь. (System cannot find
   specified path)
   NMAKE : fatal error U1077: '' : return code '0x1'
   Stop.
   dmake:  Error code 2, while making
   './wntmsci12/misc/build/so_built_so_glib'

But 'glib/glibconfig.h.win32' and'glib/glibconfig.h' really exist.
Thanks!

--
С Уважением,
Дмитрий

--
-
To unsubscribe send email to dev-unsubscr...@openoffice.org
For additional commands send email to sy...@openoffice.org
with Subject: help


[dev] Re: Problem with building glib on Windows

2011-05-16 Thread Tor Lillqvist
 cd ./wntmsci12/misc/build/glib-2.28.1/  nmake -f makefile.msc 

  /usr/bin/cp glib/glibconfig.h.win32 glib/glibconfig.h

 But 'glib/glibconfig.h.win32' and'glib/glibconfig.h' really exist.

Yeah, but /usr/bin/cp is hardly understandable to nmake.

--tml


-- 
-
To unsubscribe send email to dev-unsubscr...@openoffice.org
For additional commands send email to sy...@openoffice.org
with Subject: help


[dev] Re: Problem with building glib on Windows

2011-05-16 Thread Dmitry A. Ashkadov

16.05.2011 19:59, Tor Lillqvist пишет:

 cd ./wntmsci12/misc/build/glib-2.28.1/  nmake -f makefile.msc
  /usr/bin/cp glib/glibconfig.h.win32 glib/glibconfig.h
But 'glib/glibconfig.h.win32' and'glib/glibconfig.h' really exist.

Yeah, but /usr/bin/cp is hardly understandable to nmake.

--tml


In 'makefile.msc':

   $(GNUCOPY) glib/glibconfig.h.win32 glib/glibconfig.h

Maybe this problem is solved already? Or something is configured wrong?

--
С Уважением,
Дмитрий

--
-
To unsubscribe send email to dev-unsubscr...@openoffice.org
For additional commands send email to sy...@openoffice.org
with Subject: help


[dev] Re: Problem with building glib on Windows

2011-05-16 Thread Regina Henschel

Hi Dmitry,

I have problems too, see my mails from today morning.

For the problem with glib I have applied the patch from
http://openoffice.org/bugzilla/show_bug.cgi?id=117793

Kind regards
Regina

Dmitry A. Ashkadov schrieb:

  Hello!

I cannot build OpenOffice (cygwin, on Windows) because the module 'glib'
doesn't build!

mkdir.exe ./wntmsci12/misc/build/glib-2.28.1/
mkdir: cannot create directory
`./wntmsci12/misc/build/glib-2.28.1/': File exists
cd ./wntmsci12/misc/build/glib-2.28.1/  nmake -f makefile.msc 
C:/cygwin/bin/touch.exe

C:/cygwin/home/user_name/projects/openoffice/DEV300/glib/./wntmsci12/misc/build/so_built_so_glib

Microsoft (R) Program Maintenance Utility Version 9.00.30729.01
Copyright (C) Microsoft Corporation.  All rights reserved.

 /usr/bin/cp glib/glibconfig.h.win32 glib/glibconfig.h
Системе не удается найти указанный путь. (System cannot find
specified path)
NMAKE : fatal error U1077: '' : return code '0x1'
Stop.
dmake:  Error code 2, while making
'./wntmsci12/misc/build/so_built_so_glib'

But 'glib/glibconfig.h.win32' and 'glib/glibconfig.h' really exist.
Thanks!

--
С Уважением,
Дмитрий



--
-
To unsubscribe send email to dev-unsubscr...@openoffice.org
For additional commands send email to sy...@openoffice.org
with Subject: help


[dev] Re: Problem with building glib on Windows

2011-05-16 Thread Regina Henschel

Hi Dmitry,

please excuse me, it was the wrong issue, should be
http://openoffice.org/bugzilla/show_bug.cgi?id=117792

Kind regards
Regina

Regina Henschel schrieb:

Hi Dmitry,

I have problems too, see my mails from today morning.

For the problem with glib I have applied the patch from
http://openoffice.org/bugzilla/show_bug.cgi?id=117793

Kind regards
Regina

Dmitry A. Ashkadov schrieb:

Hello!

I cannot build OpenOffice (cygwin, on Windows) because the module 'glib'
doesn't build!

mkdir.exe ./wntmsci12/misc/build/glib-2.28.1/
mkdir: cannot create directory
`./wntmsci12/misc/build/glib-2.28.1/': File exists
cd ./wntmsci12/misc/build/glib-2.28.1/  nmake -f makefile.msc 
C:/cygwin/bin/touch.exe
C:/cygwin/home/user_name/projects/openoffice/DEV300/glib/./wntmsci12/misc/build/so_built_so_glib


Microsoft (R) Program Maintenance Utility Version 9.00.30729.01
Copyright (C) Microsoft Corporation. All rights reserved.

/usr/bin/cp glib/glibconfig.h.win32 glib/glibconfig.h
Системе не удается найти указанный путь. (System cannot find
specified path)
NMAKE : fatal error U1077: '' : return code '0x1'
Stop.
dmake: Error code 2, while making
'./wntmsci12/misc/build/so_built_so_glib'

But 'glib/glibconfig.h.win32' and 'glib/glibconfig.h' really exist.
Thanks!

--
С Уважением,
Дмитрий





--
-
To unsubscribe send email to dev-unsubscr...@openoffice.org
For additional commands send email to sy...@openoffice.org
with Subject: help


[dev] Re: Need help with building DEV300m106 with cygwin

2011-05-16 Thread Mathias Bauer

On 16.05.2011 17:31, Regina Henschel wrote:

Hi Mathias,

Mathias Bauer schrieb:


Without --enable-cairo setting or with setting --disable-cairo it
doesn't build at all, because pango is missing cairo.h. If I then try to
build cairo manually, it says that it is not enabled.


I can not confirm this problem. I had no problem with building OOo
DEV300_m106 on Windows/cygwin without specifying any cairo related
switches.


I have patch rsvglips_glib_win32.patch applied.
Then I have used
./configure \
--with-directx-home=/cygdrive/c/Programme/Microsoft DirectX SDK (March
2009) \
--with-cl-home=/cygdrive/c/Programme/Microsoft Visual Studio 9.0/VC \
--disable-activex \
--disable-build-mozilla \
--disable-nss-module \
--disable-atl \
--with-frame-home=/cygdrive/c/Programme/Microsoft SDKs/Windows/v6.1 \
--with-psdk-home=/cygdrive/c/Programme/Microsoft SDKs/Windows/v6.1 \
--with-midl-path=/cygdrive/c/Programme/Microsoft SDKs/Windows/v6.0A/bin \
--with-asm-home=/cygdrive/c/Programme/Microsoft Visual Studio
9.0/VC/bin \
--with-jdk-home=/cygdrive/c/Programme/Java/jdk1.6.0_20 \
--with-csc-path=/cygdrive/c/Windows/Microsoft.NET/Framework/v3.5 \
--with-ant-home=/ant \
--without-junit \
--enable-dbgutil \
--with-vendor=Regina \
--with-build-version=16Mai11


I used the same switches as you did and my build broke exactly where 
Dmitry's build broke: nmake crashed while building glib.  But I didn't 
even reach pango. AFAIK this has been fixed on the OOO340 code line, 
so I didn't try the patch in bugzilla, but the fixes in the ooo340 code 
line. Then the build proceeded as expected. As it seems, on cygwin glib 
and pango don't need to be built and are used from the system.


Currently no code has been integrated into dev300 after the code branch 
and AFAIK it's not very probable than any integrations will be done on 
this code line in the next weeks. So ooo340_m0 is the most current 
milestone that I recommend to use. When you use it, you should also get 
all master fixes for this code line up to change set 0636cee64117. They 
are still not ported to dev300. You could also wait until ooo340_m1 is 
done. Currently it's under way.


Regards,
Mathias

--
Mathias Bauer (mba) - Project Lead OpenOffice.org Writer
OpenOffice.org Engineering at Oracle: http://blogs.sun.com/GullFOSS
Please don't reply to nospamfor...@gmx.de.
I use it for the OOo lists and only rarely read other mails sent to it.
--
-
To unsubscribe send email to dev-unsubscr...@openoffice.org
For additional commands send email to sy...@openoffice.org
with Subject: help


[dev] Custom Properties

2011-05-16 Thread Meenakshi Kanaujia
Hi,

I am using LibreOffice 3.3.2 on Ubuntu 10.04.

I am creating doc using writer.
I am creating some custom properties in that.

All custom properties are preserved when doc is saved in .odt format.
But when I saved same doc with .doc extension, close and re-open all the
custom properties are gone.

Can any one tell me the reason.
I was working fine in Openoffice 3.2.0.



Thanks,
rise_mini
-- 
-
To unsubscribe send email to dev-unsubscr...@openoffice.org
For additional commands send email to sy...@openoffice.org
with Subject: help