Re: [udk-dev] hello I am starting working on the pyUNO bridge

2006-11-08 Thread Juergen Schmidt
Hi Liutao, good to hear that somebody is interested in PyUNO. I think a good approach is to work with the code, create patches and let the owner of this code review your patches. It's the normal way to get cvs access, submit patches for a specific piece of code and let the owner review. I am

Re: [udk-dev] python scripting dialog.

2006-12-28 Thread Juergen Schmidt
Alexandro Colorado wrote: Hi is there a reason why the Python dialog of OOo doesn't let you create a new library while the Javascript and Beanshell does. I read the UDK i would assume because of the fact that nobody has integrated the support of Python in the dialog. The other languages are

Re: [udk-dev] python scripting dialog.

2006-12-28 Thread Juergen Schmidt
Alexandro Colorado wrote: On Thu, 28 Dec 2006 23:30:49 -0600, Juergen Schmidt [EMAIL PROTECTED] wrote: Alexandro Colorado wrote: Hi is there a reason why the Python dialog of OOo doesn't let you create a new library while the Javascript and Beanshell does. I read the UDK i would assume

Re: [udk-dev] about the servicemanager

2007-05-16 Thread Juergen Schmidt
Hi Liyuan, the implementation can be found in the stoc module but you should not depend on the implementation details anywhere. The only thing which is specified is that createInstance returns a new instance of an requested service implementation object. The additional search for an

Re: [udk-dev] returning multiple values (and range cells) from a Python calc add-in

2007-05-21 Thread Juergen Schmidt
Hi, Joerg pinted out that our parameters are not allowed in add-ins and he ahs also defined a correct function which returns a sequence sequence long . When you have implement it correct and when use this function later on in calc you have to use it as array function. Either you finish

Re: [udk-dev] Re: returning multiple values (and range cells) from a Python calc add-in

2007-05-25 Thread Juergen Schmidt
Hi Joachim, glad to hear that your add-in works now. Well not everything was possible but you are able to workaround the multiple returns. I would suggest that you take a look on new add-in with a configuration file to define the new add-in function 8with localization if you want). This new

Re: [udk-dev] Re: returning multiple values (and range cells) from a Python calc add-in

2007-05-29 Thread Juergen Schmidt
Juergen, I haven't seen anything about xcu files. I just zip up the META-INF files, the python script, and the binary version of my IDL file. Do you have a pointer handy to the newest format? thanks joachim On 5/25/07, Juergen Schmidt [EMAIL PROTECTED] wrote: Hi Joachim, glad to hear

Re: [udk-dev] Re: returning multiple values (and range cells) from a Python calc add-in

2007-05-29 Thread Juergen Schmidt
Hi Joachim, that of course sounds strange and we should analyze it in detail. I am not really familiar with the Python binding but anyway we should try to check it. Maybe you can prepare a small demo add-in and can provide it for further investigation. Juergen Joachim Dahl wrote: I have a

Re: [udk-dev] Re: returning multiple values (and range cells) from a Python calc add-in

2007-05-31 Thread Juergen Schmidt
, but something you want to keep in mind for larger problems that take several minutes or longer to finish. - joachim On 5/29/07, Juergen Schmidt [EMAIL PROTECTED] wrote: Hi Joachim, that of course sounds strange and we should analyze it in detail. I am not really familiar with the Python

Re: [udk-dev] Unpublished interface to published service

2007-07-20 Thread Juergen Schmidt
Frank Schönheit - Sun Microsystems Germany wrote: Hi Kohei, But I'm having trouble leaving the new interface unpublished. I've added the following lines: /** provides access to the collection of filter fields. */ [optional] interface com::sun::star::sheet::XExtendedSheetFilterDescriptor;

Re: [udk-dev] evolving API

2007-08-27 Thread Juergen Schmidt
Stephan Bergmann wrote: Frank Schönheit - Sun Microsystems Germany wrote: Hi Stephan, http://www.openoffice.org/issues/process_bug.cgi for the records. Please cite the URL of the page before ;) Oops, lost in copy-n-paste... http://www.openoffice.org/issues/show_bug.cgi?id=80946 an

Re: [udk-dev] additional java libraries for my component

2007-09-04 Thread Juergen Schmidt
Hi Tobias, Tobias Neubert wrote: Hi all, I hope this is the right place to post this question. If not, please tell me the right one. Ok, I am new to UNO and I want to develop a filter for textdocuments. Therefor I started with the AsciiReplaceFilter-example of the development guide, which

Re: [udk-dev] Reference for .xcu files

2007-09-05 Thread Juergen Schmidt
Tobias Neubert wrote: Hi all, another newbie question: Is there any reference for the .xcu-files? what exactly do you want to know. General information about xcu files [1] or do you have a concrete usecase in mind? Juergen [1]

Re: [udk-dev] Success Histories with OpenOffice UNO

2007-10-17 Thread Juergen Schmidt
Hi Andres, UNO is the used technology but you are searching more for specific office API's or better solutions for your use case. I would suggest the [EMAIL PROTECTED] mailing list to reach more API users. Juergen Andres Tarallo wrote: Hi !!! I started to work for a public sector project.

Re: [udk-dev] Simple Bootstrap

2008-04-18 Thread Juergen Schmidt
Hi Stephan, i am for a cleanup and so for a clean solution for all 3. As Kay pointed out the C++ solution is probaly not used very often. Juergen Stephan Bergmann wrote: Unfortunately, with the advent of the Three-Layer Office

Re: [udk-dev] UNO python and openoffice. ManualHowto

2008-08-21 Thread Juergen Schmidt
how to read the whole odf to some python object, do some find and replace, and send it back to odf for writing. Is that possible, or do I have to use: createSearchDescriptor() Thanks Lucas -- Sun Microsystems GmbHJuergen Schmidt Nagelsweg 55 Technical Lead

Re: [udk-dev] Re: My first Calc addin: problem with exception handling

2008-08-24 Thread Juergen Schmidt
Andrea wrote: Andrea wrote: I have read that one should use the same compiler used to compile OO. Is it (still) true? maybe. I don't know. it is recommended to avoid problems Is this my problem? No. I managed to find what was the problem: I followed this example

Re: [udk-dev] UNO python and openoffice. ManualHowto

2008-08-27 Thread Juergen Schmidt
? Thanks, Lucas - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Sun Microsystems GmbHJuergen Schmidt Nagelsweg 55 Technical Lead Programmability 20097 Hamburg

Re: [udk-dev] Re: How to use reflection in a Calc Addin

2008-10-12 Thread Juergen Schmidt
Hi Andrea, why should we do that, normally it is not needed and i still don't understand why you need it. Maybe you ca give us some more info about your add-in function and for what exactly you need tis info. Juergen Andrea wrote: Andrea wrote: Hi, I am still trying to automatically

Re: [udk-dev] Re: Calc addid: automatic argument names

2008-10-12 Thread Juergen Schmidt
Andrea wrote: Juergen Schmidt wrote: Hi Andrea, i would suggest that you use our NB plugin to create a new simple Calc Add-in. Take a look into the generated code. We generate a xcu file where the add-in function is defined also and where you can directly manage localized strings

Re: [udk-dev] Re: How to use reflection in a Calc Addin

2008-10-15 Thread Juergen Schmidt
Andrea wrote: Juergen Schmidt wrote: Hi Andrea, based on your info i created an addin in Java with our NB plugin. You can resue the IDL's, and the xcu file. Take a look into the Java skeleton and adapt your C++ class ... ... CalcAddins.xcu Thanks. The problem is that I cannot find

Re: [udk-dev] How to write a calc addin?

2008-10-20 Thread Juergen Schmidt
Hi Andrea, first of all the better mailing list would be [EMAIL PROTECTED] or [EMAIL PROTECTED] I agree that the documentation is not up-to-date and i will try to fix this asap. Forgot the old mechanism. The format of an oxt package is described in detail in the DevGuide and you can find

[udk-dev] Re: [api-dev] Thinking about an API deprecation process

2009-04-24 Thread Juergen Schmidt
...@api.openoffice.org -- Sun Microsystems GmbHJuergen Schmidt Nagelsweg 55 Technical Lead Programmability 20097 Hamburg, Germany Registered Office: Sun Microsystems GmbH, Sonnenallee 1, D-85551 Kirchheim-Heimstetten Commercial register of the Local Court of Munich: HRB 161028

Re: [udk-dev] Create java UNO-IDL project and using non-natif librairies

2010-01-29 Thread Juergen Schmidt
On 1/29/10 1:13 PM, Philippe Denis wrote: Le 29-janv.-10 à 11:20, Juergen Schmidt a écrit : UNO-Type-Path: mytypes.jar.jar Class-Path: lib/myhelper.jar RegistrationClassName: the name of your implementation class or the appropriate registration class If I have many librairies to add