[DISCUSS][EXT] Submitting NetBeans plugin to Netbeans.org

2015-03-16 Thread Carl Marcum

Hi all,

I would like to discuss submitting the NetBeans plugin to NetBeans.org 
for inclusion in their plugins downloads.


I believe the plugin is now as functional for the current AOO version as 
is was for Ooo when it was available on NetBeans.org here [1].


The current way of distribution of the binary has been linking to 
different developers personal folders on people.apache.org  as the 
latest updates are made.


This results in multiple updates to the wiki to point at different 
locations as new updates are made. [2].


As updates are made lazy consensus could be used to update netbeans.org.

One alternative would be for AOO to distribute the binary with other 
downloads.


Thanks,
Carl

[1] http://plugins.netbeans.org/plugin/2320/openoffice-org-api-plugin

[2] https://wiki.openoffice.org/wiki/OpenOffice_NetBeans_Integration

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Patch to fix a killer regression for kmfl keyboarding special characters

2015-03-16 Thread Kay Schenk

On 03/16/2015 03:48 AM, Justin Luth wrote:
 We use KMFL (ibus) to type complex characters. So, for example, the
 sequence _;] forms the letter ɔ̱̈. In LO 4.2.x, the three characters
 are swallowed up and replaced with the composed character. In LO 4.3,
 only the last character is swallowed up.  LibreOffice has been fixed.  
 https://bugs.documentfoundation.org/show_bug.cgi?id=85912
 
 The LibreOffice bug was caused by porting over OpenOffice code.  The
 same fix works for OpenOffice.
 
 I just compiled the latest openoffice from GIT with the attached patch
 included and it fixed the problem.  It would be nice to have OpenOffice
 fixed as well. 
 
 Thanks
 Justin

Thanks for the patch Justin. Hopefully we can test this out soon.

If you feel inclined to contribute additional patches, you might think
about applying for a Bugzilla account, and attaching patches through
that mechanism. This is covered in our Developer orientation module --
http://openoffice.apache.org/orientation/intro-development.html

-- 
-
MzK

“What is the point of being alive if you don't
 at least  try to do something remarkable?”
   -- John Green, An Abundance of Katherines

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: [DEVTOOLS][EXT] Update to Netbeans plugin

2015-03-16 Thread Carl Marcum


On 03/15/2015 12:33 PM, W. Amenel VOGLOZIN wrote:

Hi Carl,

I have tried (yesterday) the 4.1.0 version of the plugin (update from 4.0.6) to 
rebuild an extension I wrote last summer in Java. It has worked fine and I 
haven't encountered any problems or unexpected behavior.
Platform:
* Netbeans 8.0.2 Patch 1
* Windows 8.1 64-bit edition
* Java 1.8.0_40 (32-bit)
* OpenOffice 4.1.1

Note however that I have been building my extension, which relies on Jackson 
jars, with version 4.0.6 of the Netbeans plugin, without a problem. That 
version (4.0.6) had been posted to this very mailing list by Jürgen mid-June 
2014. The jars were embedded in the oxt file without any actions on my part. I 
was expecting to do something, for instance add some references to files to 
include somewhere but I never had to. That was a pleasant surprise, which I 
believe prompted me back then (June, July or August), to update a page on the 
OO Wiki to add some information about what to do in order to have dependencies 
embedded in oxt files.

Anyway, what I mean is that the problem (of external jars not being available 
in the build artifact) that you reported in an e-mail from October 2014, well, 
it didn't occur in my case.

Thanks,
-Amenel.
   De : Carl Marcum cmar...@apache.org
  À : a...@openoffice.apache.org; dev@openoffice.apache.org 
dev@openoffice.apache.org
  Envoyé le : Mardi 10 mars 2015 11h07
  Objet : Re: [DEVTOOLS][EXT] Update to Netbeans plugin

On 12/10/2014 09:10 PM, Carl Marcum wrote:

Hi All,

I ran into an issue when trying to create an UNO client application
with the Netbeans plugin.

External library jars were not added to dist/lib or the jar manifest
during build.

This problem appeared to be related to this issue [1].

I have added the following to UNOClientAppProject template
build-uno-impl.xml jar target that overrides jar target in build-impl.xml
-do-jar-without-libraries,-do-jar-with-libraries
This adds library jars to /dist/lib and also Class Path entries in jar
manifest for client applications.

Existing projects created prior should be able to change the jar
target to include them.
Line 27 in nbproject/build-uno-impl.xml
 target name=jar
depends=-uno-project-init,compile,-pre-jar,-do-jar-jar,-do-jar-without-libraries,-do-jar-with-libraries,-do-openoffice-manifest,-post-jar
 jar basedir=${build.classes.dir}
manifest=${build.dir}/MANIFEST.MF filesonly=true compress=true
jarfile=${dist.jar}
 fileset refid=bootstrap.glue.code/
 /jar
 /target

I have updated the plugin to version 4.1.0 to better reflect the AOO
SDK version compatibility.

A compiled version can be found here [2]

[1] http://issues.apache.org/ooo/show_bug.cgi?id=78645
[2]
http://people.apache.org/~cmarcum/devtools/org-openoffice-extensions-4.1.0.nbm


-
To unsubscribe, e-mail: api-unsubscr...@openoffice.apache.org
For additional commands, e-mail: api-h...@openoffice.apache.org



Has anyone tried this update with an UNO client app or otherwise?

If so, on what platform?

Thanks,
Carl


Amenel,

Thank you for the reply,

Your feedback is very helpful.

I hope someone can also verify the UNO Client now also adds external 
jars to the dist/lib folder and adds an entry to the MANIFEST.MF file in 
the jar as expected.


Thanks again,
Carl


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Patch to fix a killer regression for kmfl keyboarding special characters

2015-03-16 Thread Justin Luth
We use KMFL (ibus) to type complex characters. So, for example, the
sequence _;] forms the letter ɔ̱̈. In LO 4.2.x, the three characters
are swallowed up and replaced with the composed character. In LO 4.3,
only the last character is swallowed up.  LibreOffice has been fixed.  
https://bugs.documentfoundation.org/show_bug.cgi?id=85912

The LibreOffice bug was caused by porting over OpenOffice code.  The
same fix works for OpenOffice.

I just compiled the latest openoffice from GIT with the attached patch
included and it fixed the problem.  It would be nice to have OpenOffice
fixed as well. 

Thanks
Justin
From a30c4050e1abbc637be7bb3c751245f0db144961 Mon Sep 17 00:00:00 2001
From: Justin Luth justin_l...@sil.org
Date: Sat, 14 Mar 2015 09:09:41 +0300
Subject: [PATCH] tdf#85912 delete surrounding text fix

---
 main/sw/source/core/access/accpara.cxx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main/sw/source/core/access/accpara.cxx b/main/sw/source/core/access/accpara.cxx
index 2d71ad6..b2ce847 100644
--- a/main/sw/source/core/access/accpara.cxx
+++ b/main/sw/source/core/access/accpara.cxx
@@ -589,7 +589,7 @@ SwAccessibleParagraph::SwAccessibleParagraph(
 	// If this object has the focus, then it is remembered by the map itself.
 	// not necessary to remember this pos here. Generally, the pos will be updated in invalidateXXX method, which may fire the
 	//Focus event based on the difference of new  old caret pos. 
-	//nOldCaretPos = GetCaretPos();
+	nOldCaretPos = GetCaretPos();
 }
 
 SwAccessibleParagraph::~SwAccessibleParagraph()
-- 
1.9.1




-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org

Re: Spam on bugzilla

2015-03-16 Thread Andrea Pescetti

On 13/03/2015 jonathon wrote:

On 12/03/15 22:03, Andrea Pescetti wrote:

Infra completed your work and deleted the spam posts. Everything looks
OK now


FWIW, I just looked at https://bz.apache.org/ooo/show_bug.cgi?id=117896,
and there was a spam post showing.


Now fixed by Infra too.

Andrea

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: FW: [Issue 95672] Look and feel of the education website

2015-03-16 Thread Andrea Pescetti

On 13/03/2015 Dennis E. Hamilton wrote:

More spam on the Bugzilla.


And this has been deleted by Infra too.

Andrea.

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



[lazy consensus] issue 126118 request review

2015-03-16 Thread Kay Schenk
I've gotten no response on request review for issue 126118

https://bz.apache.org/ooo/show_bug.cgi?id=126118

so I am invoking LAZY CONSENSUS on this little patch and will apply it
in 72 hours as is our normal timeframe.

We are having some user interface issues for our Linux builds and this
helped with with my particular environment. I'm hoping others may
benefit as well.
-- 
-
MzK

“What is the point of being alive if you don't
 at least  try to do something remarkable?”
   -- John Green, An Abundance of Katherines

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org