Re: [EXTENSIONS] how is the extension constructor called

2014-10-01 Thread Jürgen Schmidt
On 01/10/14 02:19, Carl Marcum wrote:
 Amenel,
 
 I am cross posting to dev since the original message didn't get copied:
 
 On 09/30/2014 09:39 AM, Amenel VOGLOZIN wrote:
 Hi Carl,
 I don't know whether it was intended behavior or not. I have ran into
 this problem in an extension that I started writing in May or June and
 it was an issue in that the constructor was called about as many times
 as i opened the menu.

 I posted a message similar to yours to this mailing list and Ariel
 gave me a solution which was to use a singleton. As a result, I moved
 the construction code, and handlers, and event listeners, and most of
 my code actually, into a helper class which implemented a Singleton
 pattern. From then on, things went smoothly, with the notable
 exception that the application exit event is posted as many times as
 there are frames opened. A specific boolean variable can guard a code
 section so no problem there either.

And this is the preferred way to do it, the NB plugin wizard generates a
very basic and simplified skeleton only. There were plans to extend it
and include a little bit more logic but it was never implemented.

Juergen



 You might want to search the archives for Ariel's reply to my message.
 Cheers,
 -Amenel.




 Le Dimanche 28 septembre 2014 20h36, Carl Marcum cmar...@apache.org
 a écrit :



 Hi All,

 I was checking in to a new issue opened on the netbeans plugin. [1]

 For every menu item for the AddOn in the current context (ex Writer),
 the constructor is called then the Menu is first clicked.
 If there are 2 menu items the constructor is ran twice.
 This only happens on the first time per context opened.

 Is this expected behavior?

 [1] https://issues.apache.org/ooo/show_bug.cgi?id=125691

 Thanks,
 Carl

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

 
 Do you remember which list the post was on?
 
 Thanks,
 Carl
 
 
 -
 To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
 For additional commands, e-mail: dev-h...@openoffice.apache.org
 


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



Re: Errors with building

2014-10-01 Thread zimuzo ezeozue
Thanks. But when i run *make clean *I get the following error:

*GNUmakefile:29: *** Corrupted module target stack! .  Stop.*

On Wed, Oct 1, 2014 at 6:47 AM, Kay Schenk kay.sch...@gmail.com wrote:



 On 09/30/2014 10:33 PM, zimuzo ezeozue wrote:
  Please what command do I use for a clean build?
 
  I have tried  *build --all* ?
 
  And I still end up getting
 
  */usr/bin/ld: cannot find -lmsfilter*
  *collect2: error: ld returned 1 exit status*
  *dmake:  Error code 1, while making '../unxlngi6.pro/lib/libsdfilt.so
  http://unxlngi6.pro/lib/libsdfilt.so'*

 I got caught in something similar just today. :(

 Here's what to do for a clean build --

 Get into /main and source your shell environment script -- see

 https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO#Building_2

 While still in /main, do make clean
 This should remove only the items built for your OS

 Close the shell, terminal.

 Open a new shell, resource your environment shell script and follow your
 normal procedure for building.

 I hope this helps.


 
 
  On Tue, Sep 30, 2014 at 7:15 PM, Regina Henschel 
 rb.hensc...@t-online.de
  wrote:
 
  Hi,
 
  zimuzo ezeozue schrieb:
 
  Please, I am having some issues building. I changed the location of my
 dev
  environment on my pc so I had to ./configure again to change things
 like
  my
  $TARFILE_LOCATION environment variable.
 
 
  when you have made such deep change, you should make a total clean
 build.
  Do not forget to delete the unxlngi6.pro folders in ext_libraries.
 
  Kind regards
  Regina
 
 
  -
  To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
  For additional commands, e-mail: dev-h...@openoffice.apache.org
 
 
 

 --
 -
 MzK

 You only get one chance at a first impression.
  I suggest Julia Child, because it's easy to do.
  -- Phil Dunphy (Modern Family)


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




Shell access to people.apache.org

2014-10-01 Thread Andrea Pescetti
Those committers who use people.apache.org for shell (SSH) should review 
instructions here:


https://blogs.apache.org/infra/entry/committer_shell_access_to_people

about how to configure access according to the new Infra policy.

Regards,
  Andrea.

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



Re: [EXTENSIONS] how is the extension constructor called

2014-10-01 Thread Carl Marcum


On 10/01/2014 02:25 AM, Jürgen Schmidt wrote:

On 01/10/14 02:19, Carl Marcum wrote:

Amenel,

I am cross posting to dev since the original message didn't get copied:

On 09/30/2014 09:39 AM, Amenel VOGLOZIN wrote:

Hi Carl,
I don't know whether it was intended behavior or not. I have ran into
this problem in an extension that I started writing in May or June and
it was an issue in that the constructor was called about as many times
as i opened the menu.

I posted a message similar to yours to this mailing list and Ariel
gave me a solution which was to use a singleton. As a result, I moved
the construction code, and handlers, and event listeners, and most of
my code actually, into a helper class which implemented a Singleton
pattern. From then on, things went smoothly, with the notable
exception that the application exit event is posted as many times as
there are frames opened. A specific boolean variable can guard a code
section so no problem there either.


And this is the preferred way to do it, the NB plugin wizard generates a
very basic and simplified skeleton only. There were plans to extend it
and include a little bit more logic but it was never implemented.

Juergen




I was checking in to a new issue opened on the netbeans plugin. [1]

For every menu item for the AddOn in the current context (ex Writer),
the constructor is called then the Menu is first clicked.
If there are 2 menu items the constructor is ran twice.
This only happens on the first time per context opened.

Is this expected behavior?

Is the constructor called from office?

If so it's not a bug in the plugin.

[1] https://issues.apache.org/ooo/show_bug.cgi?id=125691

Thanks,
Carl



You might want to search the archives for Ariel's reply to my message.
Cheers,
-Amenel.




Le Dimanche 28 septembre 2014 20h36, Carl Marcum cmar...@apache.org
a écrit :



Hi All,

I was checking in to a new issue opened on the netbeans plugin. [1]

For every menu item for the AddOn in the current context (ex Writer),
the constructor is called then the Menu is first clicked.
If there are 2 menu items the constructor is ran twice.
This only happens on the first time per context opened.

Is this expected behavior?

[1] https://issues.apache.org/ooo/show_bug.cgi?id=125691

Thanks,
Carl

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



Do you remember which list the post was on?

Thanks,
Carl





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



Re: Errors with building

2014-10-01 Thread Regina Henschel

Hi,

I build on Windows with Cygwin, so for Linux it will not be wntmsci12* 
but similar. Look how your *.pro folders are named.


I use in trunk (alles in einer Zeile)
find . -maxdepth 2 -name wntmsci12* | xargs rm -rf

and
I delete folder 410 in main/solver

and
I delete all wntmsci12* from ext_libraries.

Kind regards
Regina


zimuzo ezeozue schrieb:

Please what command do I use for a clean build?

I have tried  *build --all* ?

And I still end up getting

*/usr/bin/ld: cannot find -lmsfilter*
*collect2: error: ld returned 1 exit status*
*dmake:  Error code 1, while making '../unxlngi6.pro/lib/libsdfilt.so
http://unxlngi6.pro/lib/libsdfilt.so'*


On Tue, Sep 30, 2014 at 7:15 PM, Regina Henschel rb.hensc...@t-online.de
wrote:


Hi,

zimuzo ezeozue schrieb:


Please, I am having some issues building. I changed the location of my dev
environment on my pc so I had to ./configure again to change things like
my
$TARFILE_LOCATION environment variable.



when you have made such deep change, you should make a total clean build.
Do not forget to delete the unxlngi6.pro folders in ext_libraries.

Kind regards
Regina


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







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



Re: spell checker and dictionary Portuguese

2014-10-01 Thread FR web forum
I am experiencing problems with the spell checker and dictionary Portuguese
The best place to solve your problem:
https://forum.openoffice.org

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



Re: Errors with building

2014-10-01 Thread Kay Schenk
On Tue, Sep 30, 2014 at 11:30 PM, zimuzo ezeozue zimuzostan...@gmail.com
wrote:

 Thanks. But when i run *make clean *I get the following error:

 *GNUmakefile:29: *** Corrupted module target stack! .  Stop.*


Yes, I get this too. I don't think it causes problems with what actually
needs to happen. One of these days we need to really investigate and fix
this.



 On Wed, Oct 1, 2014 at 6:47 AM, Kay Schenk kay.sch...@gmail.com wrote:

 
 
  On 09/30/2014 10:33 PM, zimuzo ezeozue wrote:
   Please what command do I use for a clean build?
  
   I have tried  *build --all* ?
  
   And I still end up getting
  
   */usr/bin/ld: cannot find -lmsfilter*
   *collect2: error: ld returned 1 exit status*
   *dmake:  Error code 1, while making '../unxlngi6.pro/lib/libsdfilt.so
   http://unxlngi6.pro/lib/libsdfilt.so'*
 
  I got caught in something similar just today. :(
 
  Here's what to do for a clean build --
 
  Get into /main and source your shell environment script -- see
 
 
 https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO#Building_2
 
  While still in /main, do make clean
  This should remove only the items built for your OS
 
  Close the shell, terminal.
 
  Open a new shell, resource your environment shell script and follow your
  normal procedure for building.
 
  I hope this helps.
 
 
  
  
   On Tue, Sep 30, 2014 at 7:15 PM, Regina Henschel 
  rb.hensc...@t-online.de
   wrote:
  
   Hi,
  
   zimuzo ezeozue schrieb:
  
   Please, I am having some issues building. I changed the location of
 my
  dev
   environment on my pc so I had to ./configure again to change things
  like
   my
   $TARFILE_LOCATION environment variable.
  
  
   when you have made such deep change, you should make a total clean
  build.
   Do not forget to delete the unxlngi6.pro folders in ext_libraries.
  
   Kind regards
   Regina
  
  
   -
   To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
   For additional commands, e-mail: dev-h...@openoffice.apache.org
  
  
  
 
  --
  -
  MzK
 
  You only get one chance at a first impression.
   I suggest Julia Child, because it's easy to do.
   -- Phil Dunphy (Modern Family)
 
 
  -
  To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
  For additional commands, e-mail: dev-h...@openoffice.apache.org
 
 




-- 
-
MzK

You only get one chance at a first impression.
 I suggest Julia Child, because it's easy to do.
   -- Phil Dunphy (Modern Family)


Concerns about the AOO community

2014-10-01 Thread Alexandro Colorado
On G+ I have hold a conversation with Bruce Byfield and Jos from KDE
about the continuation of the Apache OpenOffice community and how the
way that the community has enter lately into a dormant stage with very
little traffic.

Althought I do seem that is an exageration, I feel that is true that
traffic has reach its lowest in several months. I wonder what is going
on with the community as well as overal adoption and concern of a lack
of marketing strategy.

I would love to hear from the community managers to have an evaluation.

-- 
Alexandro Colorado
Apache OpenOffice Contributor
882C 4389 3C27 E8DF 41B9  5C4C 1DB7 9D1C 7F4C 2614

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



Re: Concerns about the AOO community

2014-10-01 Thread Ian Lynch
As a moderator of the dev list, I can't say I have noticed any reduction in
traffic. If anything its increasing.

On 1 October 2014 21:34, Alexandro Colorado j...@oooes.org wrote:

 On G+ I have hold a conversation with Bruce Byfield and Jos from KDE
 about the continuation of the Apache OpenOffice community and how the
 way that the community has enter lately into a dormant stage with very
 little traffic.

 Althought I do seem that is an exageration, I feel that is true that
 traffic has reach its lowest in several months. I wonder what is going
 on with the community as well as overal adoption and concern of a lack
 of marketing strategy.

 I would love to hear from the community managers to have an evaluation.

 --
 Alexandro Colorado
 Apache OpenOffice Contributor
 882C 4389 3C27 E8DF 41B9  5C4C 1DB7 9D1C 7F4C 2614

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




-- 
Ian

Ofqual Accredited Qualifications
https://theingots.org/community/index.php?q=qualifications

Headline points in the 2014, 2015, 2016 school league tables

Baseline testing and progress measures
https://theingots.org/community/Baseline_testing_info

The Learning Machine Limited, Reg Office, Unit 4D Gagarin, Lichfield
Road Industrial Estate, Tamworth, Staffordshire, B79 7GN. Reg No:
05560797, Registered in England and Wales. +44 (0)1827 305940


Re: Concerns about the AOO community

2014-10-01 Thread Alexandro Colorado
I see well they are still piling on if anyone interested in giving
example how this community is not 'diying'.
https://plus.google.com/u/1/107133120166691255011/posts/QUksBJiVLzd?cfem=1

Since Bruce is a prominent writer for Linux Magazine I think is worth
to educate him on these matters, and maybe convert him int o an AOO
spokesperson.

On 10/1/14, Ian Lynch ianrly...@gmail.com wrote:
 As a moderator of the dev list, I can't say I have noticed any reduction in
 traffic. If anything its increasing.

 On 1 October 2014 21:34, Alexandro Colorado j...@oooes.org wrote:

 On G+ I have hold a conversation with Bruce Byfield and Jos from KDE
 about the continuation of the Apache OpenOffice community and how the
 way that the community has enter lately into a dormant stage with very
 little traffic.

 Althought I do seem that is an exageration, I feel that is true that
 traffic has reach its lowest in several months. I wonder what is going
 on with the community as well as overal adoption and concern of a lack
 of marketing strategy.

 I would love to hear from the community managers to have an evaluation.

 --
 Alexandro Colorado
 Apache OpenOffice Contributor
 882C 4389 3C27 E8DF 41B9  5C4C 1DB7 9D1C 7F4C 2614

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




 --
 Ian

 Ofqual Accredited Qualifications
 https://theingots.org/community/index.php?q=qualifications

 Headline points in the 2014, 2015, 2016 school league tables

 Baseline testing and progress measures
 https://theingots.org/community/Baseline_testing_info

 The Learning Machine Limited, Reg Office, Unit 4D Gagarin, Lichfield
 Road Industrial Estate, Tamworth, Staffordshire, B79 7GN. Reg No:
 05560797, Registered in England and Wales. +44 (0)1827 305940



-- 
Alexandro Colorado
Apache OpenOffice Contributor
882C 4389 3C27 E8DF 41B9  5C4C 1DB7 9D1C 7F4C 2614

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



Re: Concerns about the AOO community

2014-10-01 Thread Rob Weir
On Wed, Oct 1, 2014 at 4:34 PM, Alexandro Colorado j...@oooes.org wrote:
 On G+ I have hold a conversation with Bruce Byfield and Jos from KDE
 about the continuation of the Apache OpenOffice community and how the
 way that the community has enter lately into a dormant stage with very
 little traffic.

 Althought I do seem that is an exageration, I feel that is true that
 traffic has reach its lowest in several months. I wonder what is going
 on with the community as well as overal adoption and concern of a lack
 of marketing strategy.

 I would love to hear from the community managers to have an evaluation.


Community mangers?  Come on, you know that is not how we roll at Apache!

What is amazing to be is how much LO sees a merger of the projects as
a threat to them.

Here's the background.  At the LO conference one of the presenters
spoke in favor of merging LO with AOO, of combining the efforts.  This
was the IT Head from the Swiss Supreme Court IT office, who also said
that they preferred to use AOO for its superior stability compared to
LO.

https://joinup.ec.europa.eu/community/osor/news/open-and-libre-office-projects-should-reunite

As you can imagine, having a speaker at a LO conference say nice
things about AOO and to suggest cooperation with AOO was an insult
that could not be permitted.   So LO marketing went into over-drive to
try to kill that message.  That's why we see articles like this, and
recent related blog posts by Simon and Charles.

But it does make me wonder:  What are they so afraid of?  Why do they
think the idea of cooperation so dangerous?   Why do they think that
users are so wrong to value stability and to think that the two
projects would work better together?


-Rob

 --
 Alexandro Colorado
 Apache OpenOffice Contributor
 882C 4389 3C27 E8DF 41B9  5C4C 1DB7 9D1C 7F4C 2614

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


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



Re: Concerns about the AOO community

2014-10-01 Thread Andrea Pescetti

On 02/10/2014 Alexandro Colorado wrote:

Since Bruce is a prominent writer for Linux Magazine I think is worth
to educate him on these matters


To answer the first false fact he mentions,
why has it been so quiet in the last few weeks on the mailing lists? 
Not long ago, even a day without messages from the list was unheard-of.
I can definitely confirm that this is wrong, this list receives several 
dozens messages per day as usual and it is quite impossible not to 
notice that.


Regards,
  Andrea.

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



Re: [FOSDEM-Devrooms] FOSDEM 2015 devroom proposal: Apache OpenOffice (or joint OpenDocument Editors devroom)

2014-10-01 Thread Andrea Pescetti

On 16/09/2014 Gerry Demaret wrote:

On 09/15/2014 09:14 PM, Andrea Pescetti wrote:

* Devroom name:
Apache OpenOffice [or: joint OpenDocument Editors devroom]

Like last year, I would like to propose to merge both under a devroom
around OpenDocument Editors.
Consider this message as the acknowledgment of both proposals. We will
be in touch in due course if we accept it!


The FOSDEM 2015 devroom has been confirmed today.

It will work like last year, with a call for talks due in some weeks, 
submissions due around the end of December and selections due in the 
first days of January.


Other responsibilities will include planning promotional materials and 
actually attending FOSDEM in Brussels on 31 January and 1 February 2015.


I would be very happy if someone could volunteer for some of the tasks 
above, since I won't have much time available in the coming months and I 
could definitely use help. Just reply to this message in case.


Regards,
  Andrea.

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



Need help on issue 111808

2014-10-01 Thread Amali Praveena Soban Kumar
Hi dev,
I was working on this issue 
https://issues.apache.org/ooo/show_bug.cgi?id=111808 for some days, and it 
looks like i've to analyse still more code; I have submitted a comment in 
Bugzilla regarding what i've done so far on this and I need your help to solve 
this issue;
Regina,
Can you read my comment, and provide some suggestions on this issue, please?
Thanks,
Amali.


Re: Concerns about the AOO community

2014-10-01 Thread Alexandro Colorado
On Wed, Oct 1, 2014 at 6:57 PM, Andrea Pescetti pesce...@apache.org wrote:

 On 02/10/2014 Alexandro Colorado wrote:

 Since Bruce is a prominent writer for Linux Magazine I think is worth
 to educate him on these matters


 To answer the first false fact he mentions,
 why has it been so quiet in the last few weeks on the mailing lists? Not
 long ago, even a day without messages from the list was unheard-of.
 I can definitely confirm that this is wrong, this list receives several
 dozens messages per day as usual and it is quite impossible not to notice
 that.


​I have been wondering this myself, I have been on the list for quite a
while (3 years) and I have notice that the dev mails have been more
sporadically. At first I thought it was my email address that was bumped
from the list. Going to markmail I do see that last month was the lowest
month of traffic at 468 emails the whole month.

http://markmail.org/search/+list:org.apache.incubator.ooo-dev

​I am sure there are reasons like, not really a release period or a QA
period and most of the traffic was mostly on improving the website.

Anyway feel free to join in the conversation on G+ mainly because of the
effect it can have on high traffic publications like Linux Magazine.




 Regards,
   Andrea.


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




-- 
Alexandro Colorado
Apache OpenOffice Contributor
882C 4389 3C27 E8DF 41B9  5C4C 1DB7 9D1C 7F4C 2614


Re: Errors with building

2014-10-01 Thread zimuzo ezeozue
Thanks. My *.pro folders are named unxlngi6.pro.

I deleted all by doing:  *find . -maxdepth 3 -name wntmsci12* | xargs rm
-rf * from *.../trunk*

I've been able to build successfully.

On Wed, Oct 1, 2014 at 1:34 PM, Regina Henschel rb.hensc...@t-online.de
wrote:

 Hi,

 I build on Windows with Cygwin, so for Linux it will not be wntmsci12*
 but similar. Look how your *.pro folders are named.

 I use in trunk (alles in einer Zeile)
 find . -maxdepth 2 -name wntmsci12* | xargs rm -rf

 and
 I delete folder 410 in main/solver

 and
 I delete all wntmsci12* from ext_libraries.

 Kind regards
 Regina


 zimuzo ezeozue schrieb:

 Please what command do I use for a clean build?

 I have tried  *build --all* ?

 And I still end up getting

 */usr/bin/ld: cannot find -lmsfilter*
 *collect2: error: ld returned 1 exit status*
 *dmake:  Error code 1, while making '../unxlngi6.pro/lib/libsdfilt.so
 http://unxlngi6.pro/lib/libsdfilt.so'*


 On Tue, Sep 30, 2014 at 7:15 PM, Regina Henschel rb.hensc...@t-online.de
 
 wrote:

  Hi,

 zimuzo ezeozue schrieb:

  Please, I am having some issues building. I changed the location of my
 dev
 environment on my pc so I had to ./configure again to change things like
 my
 $TARFILE_LOCATION environment variable.


 when you have made such deep change, you should make a total clean build.
 Do not forget to delete the unxlngi6.pro folders in ext_libraries.

 Kind regards
 Regina


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





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