[dev] About Ooo 2.0

2006-02-22 Thread Fabrizio Sigillò

I really dont' know if I'm speaking about a bug or not.

I'm an OpenOffice customer since 1.0 rel. but after I've installed the 
2.0 released (and now the 2.0.1) I've noticed that the key POINT gives 
back the COMMA symbol


Even if some time it can appears comfortable to write value datas (like 
dollars or euro) it would be more comfortable to have the POINT key as 
indicated in the numerical keyboards (type QWERTY)


Did you received other question like this ? Is it a bug or not ?

Thanks alot for reply

Fabrizio Sigillò

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



[dev] OO 2.0 behaves different than OO 1.5

2006-02-22 Thread Bernhard Donaubauer
Hello!

I use the UNO API via Java and have a problem with OO2.0.  I first send this 
post to the API and Macro forum but Andrew Pitonyak told me this is a 
better place to discuss my problem.

Here is my original post:

Hello! 
 
 I have a small Java application that uses OO (started with parameter 
-invisible) to open or print OO - Files without user interaction. The user 
normally edits the opened document and closes it after he/she finished 
his/her work. Here is my problem! In OO1 the application disappeared after 
the user closed (menu file/close) the last document. In OO2 the application 
stays visible. 
 
 Can I make OO2 to behave like OO1? Can I make OO invisible by API calls? 
 I tried to cast my desktop object to XFrame and called 
 
 ooDesktop.getXFrame().getComponentWindow().setVisible(false); 
 
 but this ended OO instead of making it invisible and my next API call gets 
this exception: 
 
 Exception in thread AWT-EventQueue-0 com.sun.star.lang.DisposedException: 
java_remote_bridge 
[EMAIL PROTECTED] is 
disposed 
 
 What can I do? 
 
 Regards, 
 Bernhard Donaubauer

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



Re: [dev] OO 2.0 behaves different than OO 1.5

2006-02-22 Thread Stephan Wunderlich

Hi Bernhard,

 I have a small Java application that uses OO (started with parameter 
-invisible) to open or print OO - Files without user interaction. The user 
normally edits the opened document and closes it after he/she finished 
his/her work. Here is my problem! In OO1 the application disappeared after 
the user closed (menu file/close) the last document. In OO2 the application 
stays visible. 
 
 Can I make OO2 to behave like OO1? Can I make OO invisible by API calls? 
 I tried to cast my desktop object to XFrame and called 
 
 ooDesktop.getXFrame().getComponentWindow().setVisible(false); 
 
 but this ended OO instead of making it invisible and my next API call gets 
this exception: 
 
 Exception in thread AWT-EventQueue-0 com.sun.star.lang.DisposedException: 
java_remote_bridge 
[EMAIL PROTECTED] is 
disposed 
 
 What can I do? 


you could start the office with the parameter -headless instead of 
-invisible ... this should also work with OOo1.x


Hope that helps

Regards

Stephan

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



[dev] article contest : mailing list archives

2006-02-22 Thread Laurent Godard

Hi all

the contest is actually running, and would like to make a point, a week 
before the deadline


http://wiki.services.openoffice.org/wiki/OpenOffice.org_Developer_Article_Contest

I just subscribed to the [EMAIL PROTECTED] list but was not able to find the 
archives to see the the already submited articles


Thanks in advance

Laurent


--
Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org
Indesko  http://www.indesko.com
Nuxeo CPS  http://www.nuxeo.com - http://www.cps-project.org
Livre Programmation OpenOffice.org, Eyrolles 2004

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



Re: [dev] article contest : mailing list archives

2006-02-22 Thread Erwin Tenhumberg

You have to be logged-in to see the archives:
http://development.openoffice.org/servlets/SummarizeList?listName=contest

However, nobody has submitted an article, yet. Probably all articles
will come in during the last few days. Anyway, I will send out a
reminder later today. Please help to spread the word!


All the best,
Erwin


Laurent Godard wrote:

Hi all

the contest is actually running, and would like to make a point, a week 
before the deadline


http://wiki.services.openoffice.org/wiki/OpenOffice.org_Developer_Article_Contest 



I just subscribed to the [EMAIL PROTECTED] list but was not able to find the 
archives to see the the already submited articles


Thanks in advance

Laurent




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



Re: [dev] OO 2.0 behaves different than OO 1.5

2006-02-22 Thread Bernhard Donaubauer
Am Mittwoch, 22. Februar 2006 12:40 schrieb Stephan Wunderlich:
 you could start the office with the parameter -headless instead of
 -invisible ... this should also work with OOo1.x

 Hope that helps

No! I just want OO invisible if no documents are open. OO1.0 got visible at 
the time I opened a document via Java/UNO and got invisible at the time the 
user closed the document. With OO2.0 OpenOffice stays visible with no 
document open. It gets even worse when my progam opens another document. This 
document is displayed in a new frame next to the old one. As a workaround I 
tried to set OO invisible in my Java application in the 
queryTermination() - Method when the user tries to exit OO (in fact the user 
can't exit OO; when my application exits it closes OO).

public void queryTermination(EventObject a) throws TerminationVetoException {
//BD close all documents I have opened
ooDesktop.closeDocuments();
//BD make OO invisible
//BD getXFrame() casts the desktop object to an XFrame object 
//BD and returns it
ooDesktop.getXFrame().getComponentWindow().setVisible(false); 
//BD prevent OO from beeing closed
throw new TerminationVetoException();
}

But it seems it closes the application instead of making it unvisible.

Still need help!

Regards,
Bernhard Donaubauer

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



Re: [dev] OO 2.0 behaves different than OO 1.5

2006-02-22 Thread Stephan Wunderlich

Hi Bernhard

No! I just want OO invisible if no documents are open. OO1.0 got visible at 
the time I opened a document via Java/UNO and got invisible at the time the 
user closed the document. 


when you open OOo with

./soffice -headless

it will be invisible.

When you afterwards connect to this office via java and open a document, 
this document will be visible unless you open it hidden ;-)


I thought that is what you wanted.

Regards

Stephan

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



Re: [dev] PyUNO with different Python

2006-02-22 Thread Christian Junker
First thing I would do is to see in which folder pyuno.dylib lives in,
because it doesn't seem to be in the same as uno.py. Quick hack would
be to copy/move it then to the program folder and test your import
statement once again.

I hope you know that there are several rules to follow when using
system python instead of the OOo python core, for example that your
system python needs to be of version 2.2 (OOo 1.1.x) or 2.3(.4) for
OOo 2.0(.x).
See http://udk.openoffice.org/python/python-bridge.html#replacing for
more information.

2006/2/22, Katja Süss [EMAIL PROTECTED]:
 Hi!
 maybe somebody can give me an hint to my problem setting up PyUNO on my
 Mac to work with my Python not the Python delivered with OpenOffice.
 As said in installation instructions i set
 OPENOFFICE_PATH=/usr/lib/openoffice/program
 export PYTHONPATH=$OPENOFFICE_PATH
 export LD_LIBRARY_PATH=$OPENOFFICE_PATH
 according to my environment.

 importing uno gives me this error:

   import uno
 Traceback (most recent call last):
   File stdin, line 1, in ?
   File /Applications/OpenOffice.org
 2.0.app/Contents/openoffice.org2.0/program/uno.py, line 37, in ?
 import pyuno
 ImportError: No module named pyuno

 which means python finds uno but not pyuno (pyuno.dylib).

 Any hints?
 Regards, Katja

--
Best Regards
Christian Junker

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



[dev] PyUNO with different Python

2006-02-22 Thread Katja Süss

Hi!
maybe somebody can give me an hint to my problem setting up PyUNO on my 
Mac to work with my Python not the Python delivered with OpenOffice.

As said in installation instructions i set
   OPENOFFICE_PATH=/usr/lib/openoffice/program
   export PYTHONPATH=$OPENOFFICE_PATH
   export LD_LIBRARY_PATH=$OPENOFFICE_PATH
according to my environment.

importing uno gives me this error:

 import uno
Traceback (most recent call last):
 File stdin, line 1, in ?
 File /Applications/OpenOffice.org 
2.0.app/Contents/openoffice.org2.0/program/uno.py, line 37, in ?

   import pyuno
ImportError: No module named pyuno

which means python finds uno but not pyuno (pyuno.dylib).

Any hints?
Regards, Katja

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



Re: [dev] OO 2.0 behaves different than OO 1.5

2006-02-22 Thread Mathias Bauer
Mathias Bauer wrote:

 OOo1.0(!).x indeed had a different behavior concering File-Close, in
 this case the last window stayed open (this was a user request), 

Sorry, I wanted to say: in this case (OOo1.0) the last window was closed
while in OOo2 it stays open (this was a user request).

Best regards,
Mathias

-- 
Mathias Bauer - OpenOffice.org Application Framework Project Lead
Please reply to the list only, [EMAIL PROTECTED] is a spam sink.

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



Re: [dev] OO 2.0 behaves different than OO 1.5

2006-02-22 Thread Mathias Bauer
Bernhard Donaubauer wrote:

  I have a small Java application that uses OO (started with parameter 
 -invisible) to open or print OO - Files without user interaction. The user 
 normally edits the opened document and closes it after he/she finished 
 his/her work. Here is my problem! In OO1 the application disappeared after 
 the user closed (menu file/close) the last document. In OO2 the application 
 stays visible. 

OOo1.0(!).x indeed had a different behavior concering File-Close, in
this case the last window stayed open (this was a user request), but
OOo1.1.x behaves exactly like OOo2.0 in this regard. As you are talking
about OOo1.5 (whatever this is, I guess it's 1.1.5) your problem must be
something else.

So please describe exactly(!) *how* the document is closed and what
exactly you mean with visible and of course the exact version number
of the old OOo version you are talking about.

  Can I make OO2 to behave like OO1? Can I make OO invisible by API calls? 
  I tried to cast my desktop object to XFrame and called 
  
  ooDesktop.getXFrame().getComponentWindow().setVisible(false); 

Really bad idea. You should desribe your goals in understandable terms
and I'm sure we will find a solution.

Best regards,
Mathias

-- 
Mathias Bauer - OpenOffice.org Application Framework Project Lead
Please reply to the list only, [EMAIL PROTECTED] is a spam sink.



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



Re: [dev] OO 2.0 behaves different than OO 1.5

2006-02-22 Thread Christian Junker
I find it very strange that the setVisible method made OOo terminate.
The exception afterwards is nothing special, it's just the logical
consequence (if there is no OOo process anymore the initiated UNO
Runime environment extinguishes as well of course, thus the
DisposedException).

So it seems to me, in the case you can reproduce this behavior, that
this is a bug.

2006/2/22, Bernhard Donaubauer [EMAIL PROTECTED]:
  Can I make OO2 to behave like OO1? Can I make OO invisible by API calls?
  I tried to cast my desktop object to XFrame and called

  ooDesktop.getXFrame().getComponentWindow().setVisible(false);

  but this ended OO instead of making it invisible and my next API call gets
 this exception:

  Exception in thread AWT-EventQueue-0 com.sun.star.lang.DisposedException:
 java_remote_bridge
 [EMAIL PROTECTED] is
 disposed


--
Best Regards
Christian Junker

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



[dev] the location for OOoCon 2006 is ...

2006-02-22 Thread Jacqueline McNally

... Lyon, France.

The voting for the location of OOoCon 2006 finished on Sunday as
planned. A total of 425 people voted and the final results were:

Lyon, France 320
Vienna, Austria 105

The location of OOoCon 2006 will be Lyon, France.

188 people indicated that they would attend, 185 are not sure at the
time of voting, and 52 responded that they would not attend.

Thanks to all that participated in voting for the location of OOoCon 2006.

On behalf of the OpenOffice.org Conference Team I would like to thank
again both Sophie and Angelika, and their teams for submitting the
proposals on which we were able to vote. We hope too that Vienna will
resubmit their proposal for 2007. I would also like to thank the
OpenOffice.org Conference Team for organising the bid for location,
collating the submissions, and especially Cristian for creating and
maintaing the voting mechanism.

If you would like to assist to make OOoCon 2006 a success, please
subscribe to conference@marketing.openoffice.org to find out how you can
help [0]. There is always something you can do to help even if you do
not anticipate leaving the comfort of your own keyboard :)

[0] Previous discussion may be found in the
http://marketing.openoffice.org/servlets/SummarizeList?listName=conference
archives.

Jacqueline McNally
Lead, OpenOffice.org Marketing Project





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