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

Java BufferedImage with translucency in the clipboard

2023-06-15 Thread Rony G. Flatscher (Apache)
G: Bitmap Device Independent Bitmap Picture (Enhanced Metafile) Picture (PNG) Is it possible to get AOO 4.1.14 to list/use the PNG format somehow? ---rony

Re: state of Blockers on 4.2.0

2022-09-26 Thread Rony G. Flatscher (Apache)
don't know if the data is up-to-date - especially the status - however it gives you a better overview than the simple listing in Bugzilla. AFAIK, issue <https://bz.apache.org/ooo/show_bug.cgi?id=127966> has been addressed and fixed by Jim, if not mistake

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

2022-08-22 Thread Rony G. Flatscher
e semester how to do all of that in a portable, open-source manner using AOO/OOo. If the OS/2 community would port ooRexx 5.0 and BSF4ooRexx.cc to OS/2 it could immediately take advantage of the infrastructure and run those ooRexx samples that I posted unchanged. HTH, ---rony P.S.: The idea of

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

2022-08-04 Thread Rony G. Flatscher
r, 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 d

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

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

2022-08-04 Thread Rony G. Flatscher
; new paragraph ::routine dumpItems -- show level and string from XText use arg xText enum=xText~XEnumerationAccess~createEnumeration -- enumerate paragraphs do i=1 while enum~hasMoreElements xtr=enum~nextElement -- we need XTextRange's string & properti

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

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

2022-06-24 Thread Rony G. Flatscher
w paragraph ::routine dumpItems  -- show level and string from XText   use arg xText   enum=xText~createEnumeration   -- enumerate paragraphs   do i=1 while enum~hasMoreElements     xtr=enum~nextElement -- we need XTextRange's string & properties     nl=xtr

OLE: swriter (adjust paragraphs)

2022-06-24 Thread Rony G. Flatscher
) -- extract last word     dir[name] = enumValues[i]   -- store enum values with their names     -- say "name:" name "->" enumValues[i] end   end   return dir HTH ---rony P.S.: The short paper at <https://epub.wu.ac.at/8118/> introduces ooRexx briefly in ten pages, home of Rexx based technologies is the non-profit SIG "Rexx Language Association" at <https://www.RexxLA.org>.

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

2022-06-24 Thread Rony G. Flatscher
etEnumNames -- get all enumeration names enumValues = reflClz~getEnumValues   -- get all enumeration values do i=1 to enumNames~items     name = enumNames[i]     name = name~substr(name~lastPos('.')+1) -- extract last word     dir[name] = enumValues[i]   -- store enu

OLE: VBS "Automation_Bridge" to ooRexx

2022-06-24 Thread Rony G. Flatscher
ht of the frame raises.", .false)   -- Create a paragraph break   -- The second argument is a com::sun::star::text::ControlCharacter::PARAGRAPH_BREAK constant   objFrameText~insertControlCharacter( objCursor, 0 , .false)   -- Change the CharColor and remove the Shadow  

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)
(). Or it would not be possible to reference the enum values for the TypeClass in such a handy manner. However, it is very feasible to get at that information (and others) one way or the other. Again, thank you very much! ---rony On 17.06.2022 15:31, Andrew Pitonyak wrote: This is how I get the manager

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
, UNO_ENUM and UNO_CONSTANTS. --- Would anyone have an idea how to use OLE/COM to get at the fields and values for UNO_CONSTANTS like FontWeight (getting the UNO_CONSTANT value for BOLD other than manually via <https://www.openoffice.org/api/docs/common/ref/com/sun/star/awt/FontWeight.html>)? ---rony P.S.: In the process of creating OLE/COM nutshell examples for scalc, swriter and simpress.

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)
efinitions. If you would be aware of such examples I would be grateful for any links. Again, thank you very much for taking time for this! ---rony On 6/4/2022 7:40 AM, Peter Kovacs wrote: I going through old emails and no one seems to answer you. Can you describe your setup? OS, have you

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)
sion independent ProgIDs which seems to not be the case here.) * Is there an AOO typelib available that would supply the published interfaces usable via OLE? If so what would be the name and how would one install them? ---rony

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

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
jar files into a single jar file (I think libreoffice.jar) which simplifies/shortens the CLASSPATH string considerably. Would this be something to be considered for AOO as well (e.g. combining the four jar files into a single openoffice.jar)

Re: AOO41X: Time for RC1?

2021-09-29 Thread Rony G. Flatscher
ged [1]) ? > I had to do that in Catalina to access a Mozzila keystore. ---rony [1] "Runtime Protections": <https://developer.apple.com/library/archive/documentation/Security/Conceptual/System_Integrity_Protection_Guide/RuntimeProtections/RuntimeProtections.html> > On Sep

Re: AOO41X: Time for RC1?

2021-09-29 Thread Rony G. Flatscher
On 28.09.2021 22:25, Jim Jagielski wrote: > Is this a regression? Not really sure, it used to work on AOO 4.1.10 AFAICR, but now, testing against 4.1.10 the same problem occurs, although java.library.path has a different value compared to 4.1.11: java.library.path=[.:/Users/rony/Libr

Re: AOO41X: Time for RC1?

2021-09-28 Thread Rony G. Flatscher
"java.library.path" in effect: java.library.path=[/Applications/OpenOffice.app/Contents:/Users/rony/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] java.runtime.version=[9.0.4+11] Placing a symbolic link int

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)
ot an EXE. > So, it's a pain for end-users to install this. Yes, for end users this might be too much. ---rony P.S.: OTOH it is quite simple: unzip the zip archive and set the environment variable JAVA_HOME to it and it gets used. This also makes it possible to have multiple versions of Ja

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)
site 32-bit Java versions may be available or not.) However, in the meantime I think it to have become really important to also offer a 64-bit Windows release of AOO. ---rony - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apac

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

2021-08-15 Thread Rony G. Flatscher (Apache)
or --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 s

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

2021-08-12 Thread Rony G. Flatscher (Apache)
pting framework with ooRexx: * "Tools -> Macros -> -> Organize Macros -> ooRexx -> My Macros -> Library1 -> Macro1.rxo -> Run": works successfully and repeatedly o the script runs in the user's home directory (/Users/rony) which is great and solves a

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

2021-08-12 Thread Rony G. Flatscher
pting framework with ooRexx: * "Tools -> Macros -> -> Organize Macros -> ooRexx -> My Macros -> Library1 -> Macro1.rxo -> Run": works successfully and repeatedly o the script runs in the user's home directory (/Users/rony) which is great and solves a

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

2021-07-20 Thread Rony G. Flatscher (Apache)
files-downloaded-from-internet-in-windows-10/> . ---rony - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org

Re: Does AOO 4.1.8 run under macOS Big Sur?

2020-12-19 Thread Rony G. Flatscher (Apache)
On 18.12.2020 16:25, Jim Jagielski wrote: > Can you try with: > > http://home.apache.org/~jim/AOO-builds/ Same error: wu114216:~ rony$ "/Applications/OpenOffice.app/Contents/program/unopkg" add -f --shared /Library/Frameworks/BSF4ooRexx.framework/Libraries/ScriptPr

Re: Does AOO 4.1.8 run under macOS Big Sur?

2020-12-17 Thread Rony G. Flatscher (Apache)
in this. Got a minute so tried to test 4.2 beta w.r.t. issue 127966  [1] and was not able to get ooRexx functional. When trying to register the oxt package manually with unopkg, I got this error message: wu114216:~ rony$ "/Applications/OpenOffice.app/Contents/program/unopkg" add -f --shar

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)
ge of Apache Derby: [14].) With this information, hopefully, Java remains as a first citizen in AOO! Ceterum censeo, Java should remain as a first citizen in AOO! :) HTH, ---rony [1] ooRexx (implemented in C++): <https://sourceforge.net/projects/oorexx/files/oorexx/5.0.0beta/> [2]

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

2020-07-15 Thread Rony G. Flatscher
. [2] has an example that demonstrates how one would create a swriter document in seven lines of code from ooRexx (from outside of OOo). That sample still runs unchanged today, though ooRexx and BSF4ooRexx have seen a *lot* of development since 2006. Cheers, ---rony P.S.: I have been employing

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: >>>>

Re: Question ad MacOS 4.2 Developer Build

2020-07-14 Thread Rony G. Flatscher
One more problem, observation: while running "unopkg" I experience the following error: e:\DropBox\Dropbox\xfer\mac>type problem.txt wu114217:Resources rony$ "/Applications/OpenOffice Developer Build.app/Contents/MacOS/unopkg" add -f --shared /L

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
n ;) Could you briefly explain what your extension does (e.g. generically allowing the implementation of UNO classes/components in Groovy)? ---rony P.S.: AFAIK Groovy uses Apache BSF. If so it may be helpful to look at the ooRexx ScriptProvider implementation (which uses Apache BSF and

Question ad MacOS 4.2 Developer Build

2020-07-14 Thread Rony G. Flatscher
Is this an oversight/bug or has the directory structure been changed (and if so on all platforms)? ---rony

Re: Using AOO 4.2-dev with Java 11

2019-01-28 Thread Rony G. Flatscher (Apache)
applications can create an adjusted runtime environment starting with Java 9). ---rony P.S.: For testing various versions of Java on various operating systems a good place to look around for it would be: <https://adoptOpenJDK.net/>. On 27.01.2019 13:37, Mechtilde wrote: > Hello, &g

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)
Java 9. Not sure whether this is the Apple AOO or the Java responsibility (it used to work in the past years). Here the trace of the exception (RexxDispatcher.java is the Java program that will invoke the ooRexx scripting engine which itself uses a Java bridge that interacts with AOO via Java): w

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

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

2018-06-14 Thread Rony G. Flatscher (Apache)
g in all other aspects of the Macro menu (run, edit, making the installed macros available etc.) as per the specifications, whereas LO has some problems in that area (shared scripts not showing up, listing of the script language in the menu disappears, if the menu got used, still user macros remain visible and executable). ---rony

Re: AOO 4.2.0 and macOS

2017-08-17 Thread Rony G. Flatscher (Apache)
appropriate to focus on 4.1.4 for the time being. Still, if we accompany > 4.1.4 with a statement > such as "This is the last OpenOffice version that is expected to work on > [list of outdated > operating systems]" it could be useful to users. ---rony ---

Re: Including Java

2016-01-22 Thread Rony G. Flatscher (Apache)
long as new versions of Java still run "backlevel" Java 1.5/5 compiled code (the Java classfile format of Java 1.5/5) Harmony programs would keep running. So as long as AOO Java programs get compiled against Harmony this might be an option. ---rony >> 22. jan. 2016 kl. 1

ad ACEU submissions (Re: Release Manager for 4.1.2

2015-06-24 Thread Rony G. Flatscher (Apache)
their favored JSR-223 scirpting engine with AOO (and thereby making it available as an AOO macro language)? ---rony One prooposal for an AOO talk on this year's ACEU: A Java Bridge between javax.script (JSR-223) and the AOO Scripting Framework, or: Turn Your Favorite Java Scripting Language

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

2015-02-19 Thread Rony G. Flatscher (Apache)
and looking forward to meeting you on one of those conference occasions again! ---rony - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org

Re: OpenOffice folks: ApacheCon template?

2014-11-10 Thread Rony G. Flatscher
template/design (carrying the AOO logo and the Apache feather)? ---rony

Re: Who will attend ApacheCon Europe?

2014-10-19 Thread Rony G. Flatscher (Apache)
for dinner after it, at 20.30. Tuesday is for sure the best day for us to meet. The other alternative would be Tuesday at lunch time, and we can move it if people prefer to meet for lunch. +1 for attending the reception together and then going out for dinner ---rony

Re: Who will attend ApacheCon Europe?

2014-10-19 Thread Rony G. Flatscher
for dinner after it, at 20.30. Tuesday is for sure the best day for us to meet. The other alternative would be Tuesday at lunch time, and we can move it if people prefer to meet for lunch. +1 for attending the reception together and then going out for dinner ---rony

Re: ApacheCon Europe: Budapest, 17-21 November

2014-10-05 Thread Rony G. Flatscher (Apache)
agree, it could even be put in the schedule, so people can click to confirm they will attend it. sounds like a very good plan! :) +1 ---rony - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional

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 the reference manager plugin (mendeley) installed

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)
, ---rony P.S.: Sebastian's original answer in German: Konntest Du das Literaturverzeichnis neu erstellen und danach hat das Einlesen in AOO funktioniert? Ich habe den Eintrag Literaturverzeichnis gelöscht, den ich in LIbreoffice erstellt habe und die Referenzen von Mendeley

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

2014-09-01 Thread Rony G. Flatscher (Apache)
that document (and the doc rendering) as an attachment to a bug report, if that is of any help. Or shall I ask that user to open a bug report on the LO side? ---rony - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org

Re: Additional activities at Apachecon EU

2014-08-28 Thread Rony G. Flatscher (Apache)
important interfaces into swriter, scalc, sdraw, nutshell examples to demonstrate), if there would be interest (can be an ad hoc decision while in Budapest). Of course, meeting with the AOO participants in person would be a boon! ---rony

Re: Dropping even 10.6 -- WHY?

2014-07-01 Thread Rony G. Flatscher (Apache)
-patches. Therefore the authors of LO patches would need to add the AL license to their patches/code in order for AOO being able to use it at all! An author can put his code under any number of licenses in parallel.) HTH, ---rony

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 some older infos about

Re: RFC ad possible presentation submission for ApacheCon EU

2014-06-18 Thread Rony G. Flatscher (Apache)
Developer Biography Rony Flatscher is a member at the Apache Software Foundation (ASF) and works as a professor for Information Systems at the WU Vienna. He is the author of BSF4ooRexx a cross-platform package that bridges the programming language ooRexx and Java. It includes

Question ad encoding of unoinfo java return string value

2014-06-17 Thread Rony G. Flatscher (Apache)
? ---rony - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org

RFC ad possible presentation submission for ApacheCon EU

2014-06-17 Thread Rony G. Flatscher (Apache)
to even create an AOO subproject that is aimed at supporting JSR-223 scripting languages out of the box. JSR-223 scripting languages are all those scripting languages that can bed used by the Java javax.script framework. Any comments, ideas, feedback to this idea? ---rony

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)
. Thought I report my findings ASAP with the latest MacOSX beta, will update the issue later this evening and create an issue requesting a showstopper flag (have to leave). ---rony P.S.: It was just a coincidence that the Java thread where the crash occurs is at the same time the awt thread. That thread

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

2014-03-25 Thread Rony G. Flatscher
(javax.script) specs. BeanShell itself should probably be its own project under the Apache Commons umbrella. ---rony

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)
or URE_BOOTSTRAP) may allow to spot the code area, where this gets defined on MacOSX? ---rony - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org

URL-location for latest beanshell provider source code ?

2014-03-24 Thread Rony G. Flatscher (Apache)
-checking: would that be the URL to the latest version? If not where should I start to research/find the latest version? ---rony

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) pointing to: http://svn.apache.org/repos

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 what you are doing now, but note

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

2014-02-27 Thread Rony G. Flatscher (Apache)
classes on MacOSX? Maybe a Java class loader issue only present on MacOSX? Maybe ... of course pure speculations, which may lead to nowhere...] ---rony On 26.02.2014 15:38, Jürgen Schmidt wrote: Hi Ronny, the problem is not new as far as I know and not easy to fix. Both the office

Does it make sense to raise a showstopper for MacOSX ?

2014-02-26 Thread Rony G. Flatscher (Apache)
that could cause this behaviour. ---rony

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, make it downloadable, send it as an attachment

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 letting AOO 4.1 hang around with swriter (doing nothing), after approx. two

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) r...@apache.org wrote: After pressing the o.k. button, this is followed by another error popup OpenOffice 4.1.0 with the message http://www.rexxla.org/updates

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 other users that the crash after a while may have to do

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)
that script extension locally). TIA, ---rony P.S.: It would be nice if https://cwiki.apache.org/confluence/display/OOOUSERS/Development+Snapshot+Builds would add the date to the link when that particular snapshot build got created

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)? No matter whether

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
). 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: Hi Herbert, thank you very much, indeed! Kind regards

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)
). 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: Hi Herbert, thank you very much, indeed! Kind regards

Re: 64bit Mac crashs often after start

2014-02-04 Thread Rony G. Flatscher (Apache)
Hi there, Just to make sure that the filed bug is not overseen, as it only occurs on the new 64-bit MacOSX AOO: https://issues.apache.org/ooo/show_bug.cgi?id=124170. It also comes with the MacOSX diagnostic file for inspection of the reported bug. ---rony On 30.01.2014 18:35, Rony wrote: Hi

Re: 64bit Mac crashs often after start

2014-01-30 Thread Rony
report. TIA Rony G. Flatscher (mobil/e) Am 29.01.2014 um 08:40 schrieb Herbert Duerr h...@apache.org: Hi Raphael, On 01/29/2014 08:07 AM, Raphael Bircher wrote: I recognise that the OSX 4.0.1 often crachs after start. It is not realy reproducible, but I have the feeling

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

2014-01-29 Thread Rony G. Flatscher
4.1 on MacOSX in 64-bit only? TIA, ---rony - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org

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 available at [2]. [1] https://cwiki.apache.org/confluence

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/show_bug.cgi?id=123475 is still present

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
with AOO. As the issue might not be too visible, yet the bug inhibits effectively Java from using AOO when using unoinfo it seems that it should be fixed, before a final release for 4.1.0. ---rony - To unsubscribe, e-mail: dev

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)
with AOO. As the issue might not be too visible, yet the bug inhibits effectively Java from using AOO when using unoinfo it seems that it should be fixed, before a final release for 4.1.0. ---rony - To unsubscribe, e-mail: dev

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 https://issues.apache.org/ooo

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

2014-01-18 Thread Rony G. Flatscher (Apache)
to stop AOO from thinking to reopen the windows again? If it is stored with the user's profile, where is that user profile located on the Mac such that I can delete it (assuming that the Customize... and Preferences... menu items will become active again)? TIA for any pointers! ---rony

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

2014-01-18 Thread Rony G. Flatscher (Apache)
Larry, will do it at home: thanks an awful lot for your fast reponse, kudos to you! ---rony On 18.01.2014 17:56, Larry Gusaas wrote: You need to delete the folder org.openoffice.script.savedState. It is in the Saved Application State folder in your User/Library. See this post on the user

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

2014-01-15 Thread Rony G. Flatscher (Apache)
not suggest that and use it, if you have extraordinary needs? ---rony - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org

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)
the installed AOO carries. As unoinfo seems to not carry the bitness information, is there another (portable, platform independent) way to find out what bitness the installed AOO has? TIA, ---rony P.S.: Expecting that after all PCs migrated from 32 to 64 bit, that then the migration to 128 will start

Re: Sidebar for Developers

2013-10-09 Thread Rony G. Flatscher (Apache)
for script coders to take advantage of the new sidebar feature? ---rony - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org

Re: How to enable UNO services through Script on other platforms except Windows?

2013-09-09 Thread Rony G. Flatscher
scripting languages. The camouflaging support of BSF4ooRexx turns Java conceptually into the interpreted, dynamically typed and case-independent ooRexx ---rony On Mon, Sep 9, 2013 at 5:37 PM, Jürgen Schmidt jogischm...@gmail.comwrote: Hi Ke Jia, On 9/9/13 9:09 AM, Kejia Ye wrote: Hi, I'm

  1   2   >