Re: Committed: new database driver for PostgreSQL, SDBCX API for Java

2017-08-23 Thread Matthias Seidel
Am 23.08.2017 um 02:41 schrieb Damjan Jovanovic: > The toUnsignedXxx() methods are from Java 8 :-/. Maybe I can rewrite that > part of the code to use 7. I personally would go with Java 8 for 4.2.0 (trunk)... But that needs to be discussed. Indeed, the buildbot has Java 7 installed "--with-jdk-ho

Re: Org.openide

2017-08-23 Thread Peter kovacs
I have checked the link already. The only hint I see is the module declaration. Have you NetBeans installed? Am 23. August 2017 00:32:44 MESZ schrieb Matthias Seidel : >Hi Peter, > >Maybe this link can help: >http://opengrok.adfinis-sygroup.org/source/s?n=25&start=0&sort=relevancy&q=openide&pro

Re: Org.openide

2017-08-23 Thread Matthias Seidel
Am 23.08.2017 um 12:44 schrieb Peter kovacs: > I have checked the link already. The only hint I see is the module > declaration. Have you NetBeans installed? No, I haven't. I only sent the link in case you didn't know about OpenGrok... ;-) > > > Am 23. August 2017 00:32:44 MESZ schrieb Matthias

Re: Org.openide

2017-08-23 Thread Peter kovacs
After a long search I have found the code in question in NetBeans repository. License is GPL v2 _or_ CDDL v1. :( You got to love Oracle for their ways. Hmm I think I will try to import the code in my workspace under given License. And then check if we really need this stuff. if no one knows anyt

Re: Committed: new database driver for PostgreSQL, SDBCX API for Java

2017-08-23 Thread Matthias Seidel
It seems that Java 8 (Oracle) was already installed on Linux64 buildbot. I changed the configuration and forced a new build. Additionally I added French and Italian language to our builds for trunk. Matthias Am 23.08.2017 um 12:30 schrieb Matthias Seidel: > Am 23.08.2017 um 02:41 schrieb Damjan

Re: Committed: new database driver for PostgreSQL, SDBCX API for Java

2017-08-23 Thread Damjan Jovanovic
I've patched external_deps.lst, and as of revision 1805933, AOO should build even without --enable-wiki-publisher. On Tue, Aug 22, 2017 at 11:04 PM, Matthias Seidel < matthias.sei...@hamburg.de> wrote: > Am 21.08.2017 um 19:14 schrieb Damjan Jovanovic: > > Yes. Well done on finding it. You can ma

Re: Org.openide

2017-08-23 Thread Raphael Bircher
Hi all Since NetBeans is an Apache Incubator Project, there is maybe a chance to get the source under ALv2. Geertjan is this possible? Regards, Raphael CCed NetBeans dev. Am .08.2017, 15:10 Uhr, schrieb Peter kovacs : After a long search I have found the code in question in NetBeans rep

Re: Org.openide

2017-08-23 Thread Raphael Bircher
Thanks Geertjan, I forward this to the OpenOffice Dev Regards, Raphael Am .08.2017, 23:23 Uhr, schrieb Geertjan Wielenga : Unclear to me which module or which class or which anything specifically is referred to here. But, yes, in general, 'openide' is typically some thing like 'org.openid

Re: Org.openide

2017-08-23 Thread Peter kovacs
Hi, I have pulled the latest code. I guess our reference is more then 6 years old. So there could be changes that had happened in the meantime. So far it is Org.openide.filenames Org.openide.util Org.openide.util.ui I am not sure how we should deal with them in future. But good to know of the l

FORMULA PROBLEMS READING EXCEL FILES

2017-08-23 Thread Donald McLean
Hi, Good folks at Apache, I’m having trouble that a formula [ =IF(B1<0, "-",SUM(A1-B1)) ] which works fine in Excel, translates as an Error 509 whatever that is. In trying to correct it I find that Apache OneOffice on a Mac won’t process the maths concept < or > any number, e.g. =IF ( b1<0, 3,4)

Re: FORMULA PROBLEMS READING EXCEL FILES

2017-08-23 Thread Peter kovacs
Hi Don, I tried your formulas in excel and it was not accepted. I suggest to replace "," with ";" and if you use < or > you need to give values on both sides. Example for working functions in excel and in OpenOffice : =IF(B1<0;"-";A1-B1) =IF(b1<0;3;4) Btw it is Apache OpenOffice. ;) Hth Peter

Re: Org.openide

2017-08-23 Thread Geertjan Wielenga
There's no such thing as 'org.openide.filenames'. Do you mean 'org.openide.filesystems'? Also, where/how are these JARs used in your project? Sounds to me like your project is based on the NetBeans Platform. Thanks, Gj On Thu, Aug 24, 2017 at 3:56 AM, Peter kovacs wrote: > Hi, > > I have pul