Any news on 64-Bit-Windows and ARM based Macs ?

2024-11-03 Thread Rony G. Flatscher (Apache)
Observing (newbie) students who get into troubles when trying to install AOO on their 64-bit Windows and ARM (M1, M2, ...) based Macs who then turn to installing LibreOffice as it is simply available for these platforms in 64-bit Windows and ARM based Mac versions. This causes AOO to constantly

Re: Fwd: Open office for apple M2?

2024-07-06 Thread Rony G. Flatscher
Any news on this? As more and more Apple computers with M1, M2 processors become part of the market a missing arm64 version of AOO for macOS causes people to turn to LibreOffice (and quietly so). ---rony On 16.04.2024 19:30, Matthias Seidel wrote: Hi All, Am 16.04.24 um 10:28 schrieb sere

Re: [Discussion] ODF 1.3 filter implementation strategy

2023-08-20 Thread Rony G. Flatscher (Apache)
Has there been any work on this since? It seems that not supporting 1.3 causes troubles for AOO users who receive 1.3 documents. ---rony On 12.10.2021 00:00, Kay Schenk wrote: Hello all -- If you'd like an opinion from someone who hasn't contributed to the project in about 3 years... I thi

Java BufferedImage with translucency in the clipboard

2023-06-15 Thread Rony G. Flatscher (Apache)
Placing a BufferedImage with transparency into the system clipboard on Windows and then doing an "Edit -> Paste Special ..." in AOO 4.1.14 on Windows will list the following two formats: Bitmap GDI metafile whereas MS Word will list the following four formats, among them PNG: Bitmap

Re: state of Blockers on 4.2.0

2022-09-26 Thread Rony G. Flatscher (Apache)
On 26.09.2022 18:25, Marcus wrote: Am 24.09.22 um 04:48 schrieb Peter Kovacs: I was looking at our blockers for 4.2.0. I am confused atm. If I read it right, then we have 3 Blockers for Windows and 2 for Mac 0 Linux, right? The other open Bugs are they resolved? - For example 126762

Re: Portable version (Re: OLE: VBS "Automation_Bridge" to ooRexx

2022-08-22 Thread Rony G. Flatscher
ea of BSF4ooRexx and the first implementations came out of OS/2. But that is another story ... ;) [1] http://www.edm2.com/index.php/IBM_Object_REXX_for_OS/2 Am 04.08.22 um 14:07 schrieb Rony G. Flatscher: This is the first of a total of four postings with the intention to demonstrate how

Portable version (Re: OLE: swriter (adjust paragraphs)

2022-08-04 Thread Rony G. Flatscher
Cursor, string, .true) xParaProps~setPropertyValue("ParaAdjust", paraAdj~send(adj)) end ::requires UNO.CLS -- get UNO support If there are any questions, please ask them. ---rony On 24.06.2022 13:04, Rony G. Flatscher wrote: This ooRexx program creates a swriter documen

Portable version (Re: OLE: scalc (creating data, display it in a chart)

2022-08-04 Thread Rony G. Flatscher
angeAddress arrOfAddr = bsf.createArrayOf(rangeAddr~getClass, rangeAddr) -- create array tableCharts = sheet~XTableChartsSupplier~getCharts-- get chart collection & insert tableCharts~addNewByName("FirstChart", structRect, arrOfAddr, .true, .true) ::requires UNO.CL

Portable version (Re: OLE: simpress (create presentation and then run/starts it)

2022-08-04 Thread Rony G. Flatscher
XTextRange's string & properties nl=xtr~XPropertySet~getPropertyValue("NumberingLevel") say " item #" i": NumberingLevel="pp(nl) pp(xtr~XTextRange~getString) end return pp: -- "pretty print", internal routine: return

Portable version (Re: OLE: VBS "Automation_Bridge" to ooRexx

2022-08-04 Thread Rony G. Flatscher
setPropertyValue( "CharShadowed", .false) -- Insert another string objText~insertString( objCursor, " That-- s all for now !!", .false) ::requires UNO.CLS -- get UNO support ::routine insertIntoCell use arg strCellName, strText, objTable objCel

OLE: simpress (create presentation and then run/starts it)

2022-06-24 Thread Rony G. Flatscher
This ooRexx program creates a simpress presentation and then runs/starts it. /**  AOO_simpress_present.rex using OLE (object linking and embedding) with ooRexx  Links:

OLE: swriter (adjust paragraphs)

2022-06-24 Thread Rony G. Flatscher
This ooRexx program creates a swriter document which creates paragraphs that get right-, center-, block- and left-adjusted. There is a routine that allows to fetch constant and enum values in an ooRexx directory, such that sending the name of a constant or enum value will return the value one ha

OLE: scalc (creating data, display it in a chart)

2022-06-24 Thread Rony G. Flatscher
This ooRexx program creates a scalc spreadsheet, its data and a chart. There is a routine that allows to fetch constant and enum values in an ooRexx directory, such that sending the name of a constant or enum value will return the value one has to use as an argument. /***

OLE: VBS "Automation_Bridge" to ooRexx

2022-06-24 Thread Rony G. Flatscher
Having looked around some nutshell OLE samples to port to ooRexx I stumbled over which depicts a VBScript example. There are the following changes in the ooRexx code: * the "=sum" formula now has the cel

Re: How to access UNO_CONSTANTS definitions via OLE/COM? (Re: Windows version: ProgIDs and typelibs for OLE/COM ?

2022-06-17 Thread Rony G. Flatscher (Apache)
gBox s End Sub This can be used to see enumerations. EnumerateEnumerations("com.sun.star.awt.FontSlant") This can be used to see constant groups. EnumerateEnumerations("com.sun.star.awt.FontWeight") Hope this helps a little! On Friday, June 17, 2022 07:36 EDT, "Rony

Re: How to access UNO_CONSTANTS definitions via OLE/COM? (Re: Windows version: ProgIDs and typelibs for OLE/COM ?

2022-06-17 Thread Rony G. Flatscher (Apache)
OK, it is possible using "/singletons/com.sun.star.reflection.theTypeDescriptionManager". (Will have to look further into it to maybe use it also for UNO_ENUM and the like.) ---rony On 17.06.2022 12:46, Rony G. Flatscher wrote: In the process of creating a few nutshell examples usi

How to access UNO_CONSTANTS definitions via OLE/COM? (Re: Windows version: ProgIDs and typelibs for OLE/COM ?

2022-06-17 Thread Rony G. Flatscher
In the process of creating a few nutshell examples using OLE/COM. One open problem is how to get to the UNO_CONSTANTS via the OLE/COM bridge. Here a snippet and its output (the tilde is the message operator in ooRexx and could be replaced by a dot for JScript and the like; .nil is the singleton

Re: How to get debug information (Java, oxt)

2022-06-08 Thread Rony G. Flatscher (Apache)
Hi Carl, On 6/7/2022 12:07 AM, Carl Marcum wrote: Hi Rony, On 6/6/22 10:15 AM, Rony G. Flatscher (Apache) wrote: Hi Carl, On 6/4/2022 3:31 PM, Carl Marcum wrote: ... cut ... Am 03.10.21 um 15:12 schrieb Rony G. Flatscher: Searched on the Internet but found no pointers so asking here

Re: How to get debug information (Java, oxt)

2022-06-06 Thread Rony G. Flatscher (Apache)
Hi Carl, On 6/4/2022 3:31 PM, Carl Marcum wrote: ... cut ... Am 03.10.21 um 15:12 schrieb Rony G. Flatscher: Searched on the Internet but found no pointers so asking here. Problem: something goes wrong while registering a Java based extension (an oxt ), but no information is supplied

Re: How to get debug information (Java, oxt)

2022-06-06 Thread Rony G. Flatscher (Apache)
installed? All the best Peter Am 03.10.21 um 15:12 schrieb Rony G. Flatscher: Searched on the Internet but found no pointers so asking here. Problem: something goes wrong while registering a Java based extension (an oxt ), but no information is supplied. Question: how to get debug (logging

Re: Windows version: ProgIDs and typelibs for OLE/COM ?

2022-05-10 Thread Rony G. Flatscher (Apache)
Hi Carl, On 07.05.2022 19:40, Carl Marcum wrote: Hi Rony, On 5/5/22 6:31 AM, Rony G. Flatscher (Apache) wrote: Curious about the Windows version of AOO and its support via OLE/COM:  * What are the ProgIds to use to automate AOO? Found the following ones with "office", "star&qu

Re: Windows version: ProgIDs and typelibs for OLE/COM ?

2022-05-09 Thread Rony G. Flatscher (Apache)
Hi Carl, On 07.05.2022 19:40, Carl Marcum wrote: On 5/5/22 6:31 AM, Rony G. Flatscher (Apache) wrote: Curious about the Windows version of AOO and its support via OLE/COM:  * What are the ProgIds to use to automate AOO? Found the following ones with "office", "star"

Windows version: ProgIDs and typelibs for OLE/COM ?

2022-05-05 Thread Rony G. Flatscher (Apache)
Curious about the Windows version of AOO and its support via OLE/COM: * What are the ProgIds to use to automate AOO? Found the following ones with "office", "star" in them: G:\tmp\orx\ole\oleinfo\work>listProgIds.rex office #  415/2226: ProgId: [Dropbox.OfficeAddIn] #  815/2226: ProgI

One more observation on MacOS (Re: AOO41X: Time for RC1?

2021-10-04 Thread Rony G. Flatscher
When dispatching a script via the ScriptEditor for the first time on MacOS, the following warning gets issued: rony@wu114221 ~ % /Applications/OpenOffice.app/Contents/MacOS/soffice ; exit; 2021-10-04 11:52:46.561 soffice[21999:372424]*WARNING: NSWindow drag regions should only be invali

How to get debug information (Java, oxt)

2021-10-03 Thread Rony G. Flatscher
Searched on the Internet but found no pointers so asking here. Problem: something goes wrong while registering a Java based extension (an oxt ), but no information is supplied. Question: how to get debug (logging) information from a Java based extension? Maybe with a Java stacktrace? ---rony

Ad runtime jar files (unoinfo java)

2021-09-29 Thread Rony G. Flatscher
The CLASSPATH environment variable or -cp switch needs to contain the output of "unoinfo java" which usually consists of  the following fully qualified directories to point to the following files:  unoil.jar, ridl.jar, jurt.jar and juh.jar. LibreOffice combines these four jar files into a single

Re: AOO41X: Time for RC1?

2021-09-29 Thread Rony G. Flatscher
; ---rony >> >> [1] "Using Dynamic Libraries": >> <https://developer.apple.com/library/archive/documentation/DeveloperTools/Conceptual/DynamicLibraries/100-Articles/UsingDynamicLibraries.html> >> >> [2] Manpage for dlopen(3): >> <https://dev

Re: AOO41X: Time for RC1?

2021-09-29 Thread Rony G. Flatscher
/dlopen.3.html> > >> On Sep 28, 2021, at 1:36 PM, Rony G. Flatscher >> wrote: >> >> Tested the MacOS version and ran into a problem: AOO does not consult >> "/usr/local/lib" on MacOS when >> loading a native library. Also, on "jav

Re: AOO41X: Time for RC1?

2021-09-28 Thread Rony G. Flatscher
Tested the MacOS version and ran into a problem: AOO does not consult "/usr/local/lib" on MacOS when loading a native library.  Also, on "java.library.path" there seems to be a wrong directory ("/Applications/OpenOffice.app/Contents"). The setting of "java.library.path" in effect: java.lib

Re: About OpenJDK

2021-08-17 Thread Rony G. Flatscher (Apache)
On 17.08.2021 17:37, Rony G. Flatscher (Apache) wrote: > Hi Matthias, > > On 17.08.2021 16:10, Matthias Seidel wrote: >> Am 17.08.21 um 15:55 schrieb Rony G. Flatscher (Apache): >>> On 16.08.2021 10:20, Bidouille wrote: >>>> Hello team, >>>> >>

Re: About OpenJDK

2021-08-17 Thread Rony G. Flatscher (Apache)
On 17.08.2021 15:59, Bidouille wrote: >> You may want to try >> >> which also >> includes JavaFX (which AdoptOpenJDK seems to ignore). > Thanks for this resource. > But it provide only a ZIP and not an EXE. > So, it

Re: About OpenJDK

2021-08-17 Thread Rony G. Flatscher (Apache)
Hi Matthias, On 17.08.2021 16:10, Matthias Seidel wrote: > Am 17.08.21 um 15:55 schrieb Rony G. Flatscher (Apache): >> On 16.08.2021 10:20, Bidouille wrote: >>> Hello team, >>> >>> Since july, AdoptOpenJDK has been renamed Adoptium JDK. >>> This

Re: About OpenJDK

2021-08-17 Thread Rony G. Flatscher (Apache)
On 16.08.2021 10:20, Bidouille wrote: > Hello team, > > Since july, AdoptOpenJDK has been renamed Adoptium JDK. > This project don't provide any JRE for Windows x86. > https://adoptium.net/releases.html > > So this will be a problem if AOO port x64 is not completed: > https://bz.apache.org/ooo/show

Re: Availability of Apache OpenOffice 4.2.0-Dev3(m3) developer test builds

2021-08-15 Thread Rony G. Flatscher (Apache)
--shared or both ? * using unopkg with sudo or not or is this irrelevant ? ---rony On 12.08.2021 19:28, Rony G. Flatscher wrote: > On 09.08.2021 13:56, Jim Jagielski wrote: >> Available immediately are complimentary community binary builds >> of Apache OpenOffice 4.2.0. The spec

Re: Availability of Apache OpenOffice 4.2.0-Dev3(m3) developer test builds

2021-08-12 Thread Rony G. Flatscher (Apache)
On 09.08.2021 13:56, Jim Jagielski wrote: > Available immediately are complimentary community binary builds > of Apache OpenOffice 4.2.0. The specific version is 4.2.0-Dev3-m3. > > Please note that these are not official, GA releases of AOO 4.2.0. > Heck, they aren't even *Beta* releases. Instead,

Re: Availability of Apache OpenOffice 4.2.0-Dev3(m3) developer test builds

2021-08-12 Thread Rony G. Flatscher
On 09.08.2021 13:56, Jim Jagielski wrote: > Available immediately are complimentary community binary builds > of Apache OpenOffice 4.2.0. The specific version is 4.2.0-Dev3-m3. > > Please note that these are not official, GA releases of AOO 4.2.0. > Heck, they aren't even *Beta* releases. Instead,

Re: Some observations about AOO 4.1.10 and Windows 10 Pro 21H1

2021-07-20 Thread Rony G. Flatscher (Apache)
On 17.07.2021 10:42, Jörg Schmidt wrote: > 2. > JRE 1.8.0_291 is not recognized by OO and cannot be activated - even if I > first install JRE and then AOO it is like this. > (In the forum http://de.openoffice.info it is however reported by a user that > he uses 1.8.0_291 in AOO 4.1.10, perhaps th

Re: Does AOO 4.1.8 run under macOS Big Sur?

2020-12-19 Thread Rony G. Flatscher (Apache)
oviderForooRexx.oxt dyld: Library not loaded: @___URELIB/libuno_cppu.dylib Referenced from: /Applications/OpenOffice.app/Contents/MacOS/uno.bin Reason: image not found ---rony On Dec 17, 2020, at 11:34 AM, Rony G. Flatscher (Apache) wrote: ... cut ... >>&

Re: Does AOO 4.1.8 run under macOS Big Sur?

2020-12-17 Thread Rony G. Flatscher (Apache)
On 14.12.2020 13:33, Jim Jagielski wrote: >> On Dec 12, 2020, at 5:21 AM, Matthias Seidel >> wrote: >> >> Hi Jim, >> >> I have been able to open docx with your version (en-US) on Big Sur. >> However, I am not sure if this bug ever applied to 4.2.x. >> >> The Extension Manager is still broken. But

Re: Java, OOo, ... (Re: [discussion] future embedded DB in AOO

2020-12-11 Thread Rony G Flatscher
Thank you as well, also for the link which I was not aware of! 😊 —-rony Rony G. Flatscher (mobil/e) > Am 10.12.2020 um 12:49 schrieb Matthias Seidel : > > Hi all, > >> Am 10.12.20 um 01:59 schrieb Peter Kovacs: >> Thank you Rony for the Java deep dive. > &g

Java, OOo, ... (Re: [discussion] future embedded DB in AOO

2020-12-08 Thread Rony G. Flatscher (Apache)
Hmm, just some thoughts and pointers that may be helpful in the context of the current Java and possibly HSQL discussions. Ad Java and OpenOffice IMHO Java has been fulfilling Sun's original promise "write once, run everywhere" in a very impressive way for decades by  now! When Sun (bei

Re: OS/2 (Re: Question ad MacOS 4.2 Developer Build

2020-07-15 Thread Rony G. Flatscher
ject_REXX> [2] " Resurrecting REXX, Introducing Object Rexx": <http://wi.wu.ac.at/rgf/rexx/misc/ecoop06/ECOOP2006_RDL_Workshop_Flatscher_Paper.pdf> On 14.07.2020 17:00, Rony G. Flatscher wrote: > Hi Matthias, > > On 14.07.2020 16:48, Matthias Seidel wrote: >> Hi

Re: Question ad Groovy implementation (Re: Beanshell Scripting

2020-07-15 Thread Rony G. Flatscher
Hi Carl, On 15.07.2020 01:49, Carl Marcum wrote: > Hi Rony, > > On 7/14/20 10:11 AM, Rony G. Flatscher wrote: >> Hi Carl, >> >> ... cut ... > > I'm planning a more formal announcement as soon as I finish the Readme's for > a couple of these but..

OS/2 (Re: Question ad MacOS 4.2 Developer Build

2020-07-14 Thread Rony G. Flatscher
Hi Matthias, On 14.07.2020 16:48, Matthias Seidel wrote: > Hi Rony, > > Am 14.07.20 um 16:34 schrieb Rony G. Flatscher: >> Hi Matthias, >> >> On 14.07.2020 16:14, Matthias Seidel wrote: >>> Am 14.07.20 um 16:03 schrieb Rony G. Flatscher: >>>> Hi t

Re: Question ad MacOS 4.2 Developer Build

2020-07-14 Thread Rony G. Flatscher
ntents/MacOS/uno.bin Reason: image not found The version of AOO 2.0 developer build for MacOSX was downloaded yesterday from Jim's site: <https://home.apache.org/~jim/AOO-builds/> ---rony On 14.07.2020 16:03, Rony G. Flatscher wrote: > Hi there, > > yesterday I intended t

Re: Question ad MacOS 4.2 Developer Build

2020-07-14 Thread Rony G. Flatscher
Hi Matthias, On 14.07.2020 16:14, Matthias Seidel wrote: > Am 14.07.20 um 16:03 schrieb Rony G. Flatscher: >> Hi there, >> >> yesterday I intended to test the ooRexx macro language oxt file against the >> MacOS Developer Build >> (4.2) to test whether <https

Question ad Groovy implementation (Re: Beanshell Scripting

2020-07-14 Thread Rony G. Flatscher
Hi Carl, On 13.07.2020 22:07, Carl Marcum wrote: ... cut ... > Currently my Groovy macro is a standalone extension. > > We can discuss later after I announce it's information whether it could be > added to the office at > some point or left as a soon-to-be-popular extension ;) Could you briefly

Question ad MacOS 4.2 Developer Build

2020-07-14 Thread Rony G. Flatscher
Hi there, yesterday I intended to test the ooRexx macro language oxt file against the MacOS Developer Build (4.2) to test whether is fixed. As the install script that has been working for more than 10 years on OO (and LO) failed I looked into

Re: Using AOO 4.2-dev with Java 11

2019-01-28 Thread Rony G. Flatscher (Apache)
Starting with Java 9 (the same is true for Java 11, just pointing out the first version that may exhibit this behaviour) there are at least two important changes: * modularisation (with the effect that setAccessible() will not work anymore if applied to objects from non-exported modules),

Re: Ad Apple''s setup for the (Java) scripting framework

2019-01-04 Thread Rony G. Flatscher (Apache)
sting to locate the cause is the information, that AOO/LO macros including ooRexx get dispatched via Java and they work. (MacOS seems to have a quite "special" setup for processing GUI events compared to other platforms, causing this crash.) Will add these remarks/findings to the respective

Re: Ad Apple''s setup for the (Java) scripting framework

2018-12-31 Thread Rony G. Flatscher
On 26.12.2018 15:37, Jim Jagielski wrote: > I am looking into the 1st 2 and cannot find, at present, where these vars are > being set... will continue to look. > >> On Dec 20, 2018, at 10:17 AM, Rony G. Flatscher >> wrote: >> >> Peter, >> >> as t

Re: Ad Apple''s setup for the (Java) scripting framework

2018-12-20 Thread Rony G. Flatscher
e able to test issue 117961 again and in case it still is a problem then, I would re-open it. ---rony On 19.12.2018 18:22, Peter Kovacs wrote: > Since it has been closed because of lack of response, just reopen it and > continue. > > > On 19.12.18 18:06, Rony G. Flatscher (Apache) w

Ad Apple''s setup for the (Java) scripting framework

2018-12-19 Thread Rony G. Flatscher (Apache)
While re-assessing the (Java based) scripting framework on Apple (checking on ) for AOO 4.1.6 the following problems could be isolated: * the PATH environment variable on MacOS gets tampered with, such that executables in "/usr/local/bin" c

Re: Just a little side note on the scripting framework ...

2018-06-15 Thread Rony G. Flatscher (Apache)
Hi Mattias, On 14.06.2018 22:54, Matthias Seidel wrote: > Am 14.06.2018 um 20:54 schrieb Rony G. Flatscher (Apache): >> A friend has LibreOffice installed (due to a better mail-merge-support I >> understand) and I came up >> with a script to help her taking advantage of the

Just a little side note on the scripting framework ...

2018-06-14 Thread Rony G. Flatscher (Apache)
A friend has LibreOffice installed (due to a better mail-merge-support I understand) and I came up with a script to help her taking advantage of the writer component. The script is written in ooRexx for which I authored an OOo scripting provider that works on OOo, making ooRexx an additional mac

Re: AOO 4.2.0 and macOS

2017-08-17 Thread Rony G. Flatscher (Apache)
On 17.08.2017 12:51, Andrea Pescetti wrote: > On 16/08/2017 Jim Jagielski wrote: >> The build warnings and errors using any SDK older than 10.9 on trunk. > > Is this a build requirement or will it affect end users too? I mean, does > building with the 10.9 > SDK imply that users using Mac OS X <

Re: Including Java

2016-01-22 Thread Rony G. Flatscher (Apache)
On 22.01.2016 13:22, Jan Høydahl wrote: > Probably not very future proof, since it will soon get outdated as Java moves > on to new versions. Harmony was planned to be at level 1.5/5, Google has been using it for Android, cf. . As long as new version

ad ACEU submissions (Re: Release Manager for 4.1.2

2015-06-24 Thread Rony G. Flatscher (Apache)
: Turn Your Favorite Java Scripting Language into an AOO Macro Language Event ApacheCon Core Europe Submission Type Presentation Category Developer Biography Rony G. Flatscher has been working as an Information System ("Wirtschaftsinformatik") profe

Re: [RESULT] [VOTE] New Apache OpenOffice PMC Chair

2015-02-19 Thread Rony G. Flatscher (Apache)
On 18.02.2015 20:46, Andrea Pescetti wrote: > On 08/02/2015 Andrea Pescetti wrote: >> I will send a resolution for the next Board Meeting >> (18 February) for replacing me with Jan Iversen. > > The Board has just approved the resolution, so Jan Iversen is the new > OpenOffice PMC Chair (or, to >

Re: OpenOffice folks: ApacheCon template?

2014-11-10 Thread Rony G. Flatscher
On 24.10.2014 21:49, Rich Bowen wrote: > > On 10/24/2014 03:36 PM, Andrea Pescetti wrote: >> On 24/10/2014 Rich Bowen wrote: >>> One more try - can any of you fine OpenOffice folks whip up a slide >>> template for ApacheCon EU, like was done for Denver? >> >> Let's forward this to the OpenOffice d

Re: Who will attend ApacheCon Europe?

2014-10-19 Thread Rony G. Flatscher
On 19.10.2014 15:14, Andrea Pescetti wrote: > On 17/10/2014 Raphael Bircher wrote: >> Am 17.10.14 08:46, schrieb Andrea Pescetti: >>> http://apacheconeu2014.sched.org/overview/type/openoffice ... >>> there is a gathering for >>> an OpenOffice community meeting after Rony's talk, at the end of the

Re: Who will attend ApacheCon Europe?

2014-10-19 Thread Rony G. Flatscher (Apache)
On 19.10.2014 15:14, Andrea Pescetti wrote: > On 17/10/2014 Raphael Bircher wrote: >> Am 17.10.14 08:46, schrieb Andrea Pescetti: >>> http://apacheconeu2014.sched.org/overview/type/openoffice ... >>> there is a gathering for >>> an OpenOffice community meeting after Rony's talk, at the end of the

Re: ApacheCon Europe: Budapest, 17-21 November

2014-10-05 Thread Rony G. Flatscher (Apache)
On 04.10.2014 21:51, Andrea Pescetti wrote: > On 04/10/2014 jan i wrote: >> If tuesday evening is a good evening, could we somehow (somewhere) schedule >> it have people who want to take part "register". >> I am afraid that if we make the meeting on spot a few hours in advance, >> many will alread

Re: Is there a need for such a bug report related to a LO created odt-file?

2014-09-02 Thread Rony G. Flatscher (Apache)
Hi Regina, thank you very much for looking into this! On 02.09.2014 19:03, Regina Henschel wrote: > > there is something wrong with the index "Literaturverzeichnis1". Please > delete the index in > LibreOffice and generate it newly. Just got the information from the user that indeed after delet

Re: Is there a need for such a bug report related to a LO created odt-file?

2014-09-02 Thread rony g. flatscher
Hi Regina and Andrea, On 01.09.2014 20:54, Regina Henschel wrote: > Hi Rony, > > Rony G. Flatscher (Apache) schrieb: >> Hi there, >> >> received a LO document (created with LibreOffice 4.2.4.2 on Ubuntu) which >> causes AOO 4.1.1 to abend. >> LO has

Is there a need for such a bug report related to a LO created odt-file?

2014-09-01 Thread Rony G. Flatscher (Apache)
Hi there, received a LO document (created with LibreOffice 4.2.4.2 on Ubuntu) which causes AOO 4.1.1 to abend. LO has the reference manager plugin (mendeley) installed and usually stores the file as a flat document (for subversion) and saved it as an odt for the purpose of sending me the docume

Re: Additional activities at Apachecon EU

2014-08-28 Thread Rony G. Flatscher (Apache)
On 28.08.2014 00:59, jan i wrote: > On 28 August 2014 00:02, Andrea Pescetti wrote: > >> If somebody is planning to attend Thursday and Friday at ApacheCon EU, it >> is now time to propose any additional activities you would like to have >> (hackatons, ...). >> >> See http://mail-archives.apache.o

Re: Dropping even 10.6 -- WHY?

2014-07-01 Thread Rony G. Flatscher (Apache)
Hi Doug, On 30.06.2014 16:34, Douglas Mencken wrote: > I'm here to ask you: why you decided to drop 10.6 support? Rob already pointed out the discussion thread where this lead to the decision to support only newer versions of MacOSX. > Is it not so "hard" to keep it running, isn't it? This depen

Re: RFC ad possible presentation submission for ApacheCon EU

2014-06-18 Thread Rony G. Flatscher (Apache)
Status New Regards, ---rony On 17.06.2014 22:21, Andrea Pescetti wrote: > Rony G. Flatscher (Apache) wrote: >> The abstract might read something like: "Apache Open Office (AOO) defines a >> scripting framework that >> can be exploited to add any programming languag

Re: Question ad encoding of "unoinfo java" return string value

2014-06-18 Thread Rony G. Flatscher (Apache)
Added bugzilla issue <https://issues.apache.org/ooo/show_bug.cgi?id=125115>, attached zip file with three text files containing the result of "unoinfo java" on OOo 3.4, AOO 4.0.1, and AOO 4.0. ---rony On 17.06.2014 21:10, Rony G. Flatscher (Apache) wrote: > According to som

RFC ad possible presentation submission for ApacheCon EU

2014-06-17 Thread Rony G. Flatscher (Apache)
Having created an oxt in the past that adds a scripting language (ooRexx) to AOO as a macro language taking advantage of AOO's Java based scripting framework, I have been wondering whether it may be interesting for supporters of other scripting languages to learn how to do that, giving a present

Question ad encoding of "unoinfo java" return string value

2014-06-17 Thread Rony G. Flatscher (Apache)
According to some older infos about the encoding returned by "unoinfo[.exe] java" the resulting string starts with an indicator byte, where '0' indicates an ASCII encoding (and the paths are delimited with '\0'), whereas '1' indicates UTF-16LE (and the paths are delimited with "\0\0"). On Germa

Re: 4.1.0_release_blocker requested: [Issue 124509] MacOSX 64 crash in the scripting environment due to getenv("PATH") returning a null value

2014-03-25 Thread Rony G. Flatscher (Apache)
On 25.03.2014 16:10, bugzi...@apache.org wrote: > r...@apache.org has asked for 4.1.0_release_blocker: > Issue 124509: MacOSX 64 crash in the scripting environment due to > getenv("PATH") returning a null value > https://issues.apache.org/ooo/show_bug.cgi?id=124509 > > > --- Additional Comment

Re: URL-location for latest beanshell provider source code ?

2014-03-25 Thread Rony G. Flatscher
Hi Pedro, On 25.03.2014 16:29, Pedro Giffuni wrote: > Hello; > > Concerning beanshell itself, we did everything we were supposed to do to get > Beanshell into the > ASF. The code was relicensed and the major IP-clearance process was done. The > author also > submitted a SGA to the ASF secretary.

Reason found for crash, a regression (Re: Does it make sense to raise a showstopper for MacOSX ?

2014-03-25 Thread Rony G. Flatscher (Apache)
that it worked in the past and I don't know when the > problem was introduced and which change triggered it. But I know that > exists since several years and is not easy to fix. > > Juergen > > On 2/26/14 3:12 PM, Rony G. Flatscher (Apache) wrote: >> Hi there, >> &g

Re: URL-location for latest beanshell provider source code ?

2014-03-24 Thread Rony G. Flatscher (Apache)
Buona sera Andrea, On 24.03.2014 22:48, Andrea Pescetti wrote: > Rony G. Flatscher (Apache) wrote: >> While going after the current implementation of a script provider, I would >> like to target the >> beanshell implemantion. > > This is only marginally related to

Re: URL-location for latest beanshell provider source code ?

2014-03-24 Thread Rony G. Flatscher (Apache)
On 24.03.2014 16:32, Jürgen Schmidt wrote: > On 3/24/14 4:00 PM, Rony G. Flatscher (Apache) wrote: >> While going after the current implementation of a script provider, I would >> like to target the >> beanshell implemantion. >> >> Found an URL (via the web)

URL-location for latest beanshell provider source code ?

2014-03-24 Thread Rony G. Flatscher (Apache)
While going after the current implementation of a script provider, I would like to target the beanshell implemantion. Found an URL (via the web) pointing to: Just double

Re: Does it make sense to raise a showstopper for MacOSX ?

2014-02-27 Thread Rony G. Flatscher (Apache)
the > problem was introduced and which change triggered it. But I know that > exists since several years and is not easy to fix. > > Juergen > > On 2/26/14 3:12 PM, Rony G. Flatscher (Apache) wrote: >> Hi there, >> >> it seems that dispatching scripts via AOO'

Does it make sense to raise a showstopper for MacOSX ?

2014-02-26 Thread Rony G. Flatscher (Apache)
Hi there, it seems that dispatching scripts via AOO's Java scripting framework is done using the wrong thread on MacOSX. This reasoning stems from observing the Java runtime error to be caused e.g. when using a JDialog to popup reporting the following error: com.sun.star.uno.RuntimeExcepti

Re: Any news on a new build of 64-bit MacOSX AOO 4.1 (either dayly/developer or snapshot build) ?

2014-02-12 Thread Rony G. Flatscher (Apache)
Hi Herbert, On 11.02.2014 17:24, Herbert Duerr wrote: > On 11.02.2014 15:23, Rony G. Flatscher (Apache) wrote: >> On 11.02.2014 15:07, Herbert Duerr wrote: >>>> Please advise, whether you want all crash files from yesterday and where >>>> to put them (issue, >

Re: Any news on a new build of 64-bit MacOSX AOO 4.1 (either dayly/developer or snapshot build) ?

2014-02-11 Thread Rony G. Flatscher (Apache)
Hi Herbert, On 11.02.2014 15:07, Herbert Duerr wrote: > > On 11.02.2014 14:47, Rony G. Flatscher (Apache) wrote: >> On 11.02.2014 10:45, Oliver-Rainer Wittmann wrote: >>> On 11.02.2014 09:55, Herbert Duerr wrote: >>>> [...] >>>> There are hints from

Re: Any news on a new build of 64-bit MacOSX AOO 4.1 (either dayly/developer or snapshot build) ?

2014-02-11 Thread Rony G. Flatscher (Apache)
Hi Rory, On 11.02.2014 15:05, Rory O'Farrell wrote: > On Tue, 11 Feb 2014 14:47:28 +0100 > "Rony G. Flatscher (Apache)" wrote: > >> After pressing the o.k. button, this is followed by another error popup >> "OpenOffice 4.1.0" with

Re: Any news on a new build of 64-bit MacOSX AOO 4.1 (either dayly/developer or snapshot build) ?

2014-02-11 Thread Rony G. Flatscher (Apache)
On 11.02.2014 10:45, Oliver-Rainer Wittmann wrote: > Hi, > > On 11.02.2014 09:55, Herbert Duerr wrote: >> Hi Rony, >> >> On 10.02.2014 21:14, Rony G. Flatscher (Apache) wrote: >>> A few remarks using yesterday's build: >>> >>> - If lett

Re: Any news on a new build of 64-bit MacOSX AOO 4.1 (either dayly/developer or snapshot build) ?

2014-02-10 Thread Rony G. Flatscher (Apache)
found out so far, maybe that helps already a little bit). In principle the same oxt works flawlessly with the same test-usage patterns on Linux and Windows in 32- and 64-bits, and works with the previous 32-bit AOO on MacOSX. ---rony On 10.02.2014 16:28, Rony G. Flatscher (Apache) wrote: >

Re: Any news on a new build of 64-bit MacOSX AOO 4.1 (either dayly/developer or snapshot build) ?

2014-02-10 Thread Rony G. Flatscher
found out so far, maybe that helps already a little bit). In principle the same oxt works flawlessly with the same test-usage patterns on Linux and Windows in 32- and 64-bits, and works with the previous 32-bit AOO on MacOSX. ---rony On 10.02.2014 16:28, Rony G. Flatscher (Apache) wrote: >

Re: Any news on a new build of 64-bit MacOSX AOO 4.1 (either dayly/developer or snapshot build) ?

2014-02-10 Thread Rony G. Flatscher (Apache)
Hi Herbert, thank you very much, indeed! Kind regards ---rony On 10.02.2014 12:52, Herbert Duerr wrote: > Hi Rony, > > On 10.02.2014 11:51, Rony G. Flatscher (Apache) wrote: >> is there anywhere a new build of the 64-bit MacOSX AOO 4.1 available (beyond >> rev. 1560772)?

Any news on a new build of 64-bit MacOSX AOO 4.1 (either dayly/developer or snapshot build) ?

2014-02-10 Thread Rony G. Flatscher (Apache)
Hi there, is there anywhere a new build of the 64-bit MacOSX AOO 4.1 available (beyond rev. 1560772)? No matter whether it is a (daily?) developer or an "official" snapshot. Just would like to see whether an error with a scripting extension is still present (if so, I really need to debug that s

Re: 64bit Mac crashs often after start

2014-02-04 Thread Rony G. Flatscher (Apache)
ld like to submit it with a bug report. > > TIA > > Rony G. Flatscher (mobil/e) > >> Am 29.01.2014 um 08:40 schrieb Herbert Duerr : >> >> Hi Raphael, >> >>> On 01/29/2014 08:07 AM, Raphael Bircher wrote: >>> I recognise that the OSX 4.0.1 oft

Re: 32-Bit MacOSX Snapshot available too, somewhere ? (Re: New SNAPSHOT available (based on r1560772)

2014-01-29 Thread Rony G. Flatscher
On 29.01.2014 16:23, Jürgen Schmidt wrote: > On 1/29/14 3:30 PM, Rony G. Flatscher wrote: >> On 27.01.2014 12:02, Herbert Duerr wrote: >>> New snapshot builds based on the "feature freeze" revision >>> (according to the release plan [1]) are ava

32-Bit MacOSX Snapshot available too, somewhere ? (Re: New SNAPSHOT available (based on r1560772)

2014-01-29 Thread Rony G. Flatscher
On 27.01.2014 12:02, Herbert Duerr wrote: > New snapshot builds based on the "feature freeze" revision > (according to the release plan [1]) are available at [2]. > > [1] > https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.1+Release+Planning > > [2] http://people.apache.org/~hdu/develope

Re: unoinfo-bug in latest MacOSX snapshot still present (Re: [RELEASE]: snapshot build for Mac and Windows based on revision

2014-01-23 Thread Rony G. Flatscher
On 23.01.2014 10:29, Herbert Duerr wrote: > On 22.01.2014 20:17, Rony G. Flatscher (Apache) wrote: >> Just downloaded the latest snapshot build for MacOSX (en-us, rev. 1556251) >> and found that the >> unoinfo-bug reported in >> <https://issues.apache.org/ooo/sh

unoinfo-bug in latest MacOSX snapshot still present (Re: [RELEASE]: snapshot build for Mac and Windows based on revision

2014-01-22 Thread Rony G. Flatscher (Apache)
On 13.01.2014 14:01, Jürgen Schmidt wrote: > On 1/13/14 2:00 PM, Jürgen Schmidt wrote: >> Hi, >> >> I have upload a new snapshot for Mac and Windows based on revision >> 1521921. I also update the related wiki page under [1] (quite painful >> after the confluence update). >> >> An overview of chan

unoinfo-bug in latest MacOSX snapshot still present (Re: [RELEASE]: snapshot build for Mac and Windows based on revision

2014-01-22 Thread Rony G. Flatscher
On 13.01.2014 14:01, Jürgen Schmidt wrote: > On 1/13/14 2:00 PM, Jürgen Schmidt wrote: >> Hi, >> >> I have upload a new snapshot for Mac and Windows based on revision >> 1521921. I also update the related wiki page under [1] (quite painful >> after the confluence update). >> >> An overview of chan

Re: MacOSX: How to get rid of the dialog "The last time you opened ..." ?

2014-01-19 Thread Rony G. Flatscher (Apache)
On 18.01.2014 21:41, Andrea Pescetti wrote: > Rony G. Flatscher (Apache) wrote: >> Larry, >> will do it at home: thanks an awful lot for your fast reponse, kudos to you! > > Rony, please keep a copy of the wrong state. We were rather sure to have > fixed this with > ht

Re: MacOSX: How to get rid of the dialog "The last time you opened ..." ?

2014-01-18 Thread Rony G. Flatscher (Apache)
Library. > > See this post on the user forum for detailed instructions: > https://forum.openoffice.org/en/forum/viewtopic.php?f=17&t=55755#p244931 > > On 2014-01-18, 10:51 AM Rony G. Flatscher (Apache) wrote: >> Hi there, >> >> experimenting different vers

MacOSX: How to get rid of the dialog "The last time you opened ..." ?

2014-01-18 Thread Rony G. Flatscher (Apache)
Hi there, experimenting different versions of AOO on MacOSX (10.9.1) I ended up getting an AOO popup reading: "The last time you opened OpenOffice, it unexpectedly quit while reopening windows. Do you want to try to reopen its windows again?". No matter which button ("Don't Reopen", "Reopen") I

Re: [RELEASE]: snapshot build for Mac and Windows based on revision 1521921

2014-01-15 Thread Rony G. Flatscher (Apache)
On 15.01.2014 10:50, Larry Gusaas wrote: > > > On 2014-01-15, 3:38 AM Jürgen Schmidt wrote: >> On 1/15/14 9:59 AM, Larry Gusaas wrote: >>> On 2014-01-15, 2:35 AM Jürgen Schmidt wrote: To repeat it again AOO 4.1 will require the 10.7 SDK and if somebody is interested to work on support fo

How to distinguish whether a 32 or 64 bit AOO is installed on systems that may host both bitnesses ? (Re: switch trunk from Mac 32bit to 64bit

2013-12-19 Thread Rony G. Flatscher (Apache)
Congratulations for allowing AOO be compiled in 64 bit for the MacOSX! Is or will be there a possiblity to find out which version of AOO is installed, the 32 or the 64 bit version? There is at least one (mine ;) ) third party extension that may try to add an extension to AOO. As the app can onl

Re: Sidebar for Developers

2013-10-09 Thread Rony G. Flatscher (Apache)
On 09.10.2013 14:42, Andre Fischer wrote: > On 03.10.2013 11:37, Jörg Schmidt wrote: >> Hello, >> >>> From: Andre Fischer [mailto:awf@gmail.com] It took a long time but here is my example, a simple search >>> for writer. >>> >>> That's OK. I just came back from my vacation and am now >>>

  1   2   >