Re: Extensions website outage

2018-03-01 Thread Dave Fisher

> On Mar 1, 2018, at 11:29 PM, Roberto Galoppini  
> wrote:
> 
> 2018-03-01 21:23 GMT+01:00 Andrea Pescetti :
> 
>> Dave Brondsema wrote:
>> 
>>> On 3/1/18 12:08 PM, Andrea Pescetti wrote:
>>> 
 I currently get this on https://extensions.openoffice.org/ for the
 record:
 "Sourceforge project sites are currently under maintenance. Please check
 back
 later.  We thank you for your patience."
 
>>> 
>>> Correct.  We will be prioritizing getting the extensions and templates
>>> sites up
>>> as soon as we can, we know they are important services.
>>> 
>> 
>> OK, thanks. Indeed SourceForge used to provide excellent service for
>> hosting of downloads, Extensions and Templates. It seems that after the
>> move to the new datacenter announced a few week ago (maybe just a
>> coincidence, maybe some technical issues related to the new infrastructure)
>> reliability problems are more frequent. I hope bugs will be ironed out soon.
>> 
> 
> 
> 
> As the person who made possible for SourceForge to become Apache OpenOffice
> official distribution channel, I feel compelled to advance some asks.
> 
> 1. SourceForge should inform us in advance if infrastructural changes are
> on going, so that we can plan in advance a backup plan;
>(and to be clear I think we need a backup plan anyway, uptime should be
> taken very seriously by a popular project)
> 
> 2. We understand SourceForge is having issues to let things work, yet we
> expect OUR infrastructure to be your top priority
>(reason: multiply over 100M downloads for a dozen impressions, it's a
> LOT of money, we're special to SourceForge)
> 
> Please understand my asks are setting a very low bar. In fact we're not
> talking of giving us back - as SourceForge used to do regularly until two
> years ago, think of Extensions and Templates continuous improvements - but
> we merely talk of providing a download service, something SourceForge
> should do right for its own business interests. Fail to comply with these
> basic requirements is not acceptable in my opinion.
> 
> Best,
> 
> Roberto
> 
> 
> 
> 
> 
>> 
>> Regards,
>>  Andrea.
>> 
>> 
>> -
>> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
>> For additional commands, e-mail: dev-h...@openoffice.apache.org
>> 
>> 



signature.asc
Description: Message signed with OpenPGP


Re: Openoffice and unsupported gstreamer 0.10 branch (for openoffice libavmediagst.so library)

2018-03-01 Thread Peter Kovacs
sorry dont have much time. I added a bug to bugtracker and added roughly 
the situation.


Thanks Damjan, and thanks everyone else.


can someone look at the bugs

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

and

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


I think they are related and can be closed?!


All the best

Peter


On 02.03.2018 07:14, Damjan Jovanovic wrote:

I finally cracked it. The gstreamer pipeline gets created early, during
construction of the avmedia/source/gstreamer's Player object, yet the
window to play in is only created later, when createPlayerWindow() is
called. To use that window and thus embed video into the document, we have
to set that window's handle to the GstVideoOverlay using
gst_video_overlay_set_window_handle(), but by then it's too late. Either
the pipeline creation would have to be deferred until createPlayerWindow(),
when we know the window to use, or we would have to switch windows
with gst_video_overlay_set_window_handle() a live pipeline. I've done the
latter and it works well. I don't know how it ever worked before, maybe in
gstreamer 0.1 the "prepare-window-handle" event is generated during
createPlayerWindow() but in 1.0 it isn't.

My changes have been committed to SVN trunk in revision 1825700.

Torokhov, Jose, Peter: thank you for all your support. Please test and
report any problems.

Damjan

On Thu, Mar 1, 2018 at 9:25 AM, Damjan Jovanovic  wrote:


Unfortunately it looks like the problem is harder than just getting it to
build. Even after fixing some more APIs and getting it to play, a separate
player window is created. To get the player window to embed like it should,
we need to set the X window id on the GstVideoOverlay using
gst_video_overlay_set_window_handle() when a "prepare-window-handle"
event is delivered for which 
gst_is_video_overlay_prepare_window_handle_message()
returns true. But for some mysterious reason 
gst_is_video_overlay_prepare_window_handle_message()
never returns true. Forcefully setting the X window id on all events does
get it to embed, badly, with lots of warnings, and the window gets
distorted when scrolling and doesn't respond to mouse clicks .

Damjan


On Thu, Mar 1, 2018 at 4:53 AM, Damjan Jovanovic 
wrote:


Thank you. The video plays, but in a separate window instead of being
embedded in the document. I'll continue trying.

Distributing the library separately from the rest of AOO would be
difficult. Binary compatibility between Ubuntu and Gentoo, bitness, trunk
vs 4.1.5. New UNO components also have to be registered in AOO somehow; I
only know how to do it with .component files at compile time.

It will likely only end up in SVN trunk, possibly version 4.2.0.


On Thu, Mar 1, 2018 at 2:01 AM, Torokhov Sergey 
wrote:


Hello,

I created simple presentation file with title and video frame
("Agent 237:operation barbershop" from Blender Animation Studio).

https://yadi.sk/d/shOKuCcS3StDk

The archive contains 327.odp and 327.webm files that must be placed in
the same directory before presentation file .odp is opening.

The video is playing automatically after pressing F5 key (fullscreen
presentation mode). Or after pressing "Play" button on the bar that
usually appears at the bottom then video-frame of presentation is
selected.
I't work for me in current Apache OpenOffice 4.1.5 and
gstreamer-plugins:0.10.

As I use Gentoo I installed "gst-plugins-meta:0.10" with next options:

USE="ffmpeg quicktime http wavpack dv dvb vcd musepack vpx oss libass
lame theora v4l" emerge gst-plugins-meta:0.10

Also I installed "gst-plugins-ivorbis:0.10" and
"gst-plugins-pango:0.10".


Could you also share rebuilded library for testing? Is it compatible
with current AOO 4.1.5 build?

Thank yo in advance.

--
Sergey



On Wed, 28 Feb 2018 19:56:42 +0200
Damjan Jovanovic  wrote:


I've successfully patched our gstreamer plugin to build with
gstreamer-1.0, but how do I test it? Does someone have a sample
document that uses gstreamer?

The patch is attached for anyone interested. Parts may still be
wrong, eg. filter names. Changes between GStreamer 0.1 and 1.0 are
documented here:
https://gstreamer.freedesktop.org/documentation/application-

development/appendix/porting-1-0.html

https://cgit.freedesktop.org/gstreamer/gstreamer/plain/docs/

random/porting-to-1.0.txt



On Wed, Feb 28, 2018 at 10:22 AM, Damjan Jovanovic 
wrote:


Hi

I've begun having a look.

We currently test for gstreamer in configure.ac but don't use the
result, re-running pkg-config in a main/avmedia's makefile.

Changing the version number to 1.0 breaks the build due a missing
header file. Removing that "#include" gets it a little further, but
it breaks due to changed gstreamer API functions. There is also
lots of warnings about deprecated GDK functions. I'll continue
trying later.

We should really get rid of gstreamer 0.1 ASAP one way or the
other: given how it's been 

Re: Extensions website outage

2018-03-01 Thread Roberto Galoppini
2018-03-01 21:23 GMT+01:00 Andrea Pescetti :

> Dave Brondsema wrote:
>
>> On 3/1/18 12:08 PM, Andrea Pescetti wrote:
>>
>>> I currently get this on https://extensions.openoffice.org/ for the
>>> record:
>>> "Sourceforge project sites are currently under maintenance. Please check
>>> back
>>> later.  We thank you for your patience."
>>>
>>
>> Correct.  We will be prioritizing getting the extensions and templates
>> sites up
>> as soon as we can, we know they are important services.
>>
>
> OK, thanks. Indeed SourceForge used to provide excellent service for
> hosting of downloads, Extensions and Templates. It seems that after the
> move to the new datacenter announced a few week ago (maybe just a
> coincidence, maybe some technical issues related to the new infrastructure)
> reliability problems are more frequent. I hope bugs will be ironed out soon.
>



As the person who made possible for SourceForge to become Apache OpenOffice
official distribution channel, I feel compelled to advance some asks.

1. SourceForge should inform us in advance if infrastructural changes are
on going, so that we can plan in advance a backup plan;
(and to be clear I think we need a backup plan anyway, uptime should be
taken very seriously by a popular project)

2. We understand SourceForge is having issues to let things work, yet we
expect OUR infrastructure to be your top priority
(reason: multiply over 100M downloads for a dozen impressions, it's a
LOT of money, we're special to SourceForge)

Please understand my asks are setting a very low bar. In fact we're not
talking of giving us back - as SourceForge used to do regularly until two
years ago, think of Extensions and Templates continuous improvements - but
we merely talk of providing a download service, something SourceForge
should do right for its own business interests. Fail to comply with these
basic requirements is not acceptable in my opinion.

Best,

Roberto





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


Re: Openoffice and unsupported gstreamer 0.10 branch (for openoffice libavmediagst.so library)

2018-03-01 Thread Jose R R
On Thu, Mar 1, 2018 at 10:14 PM, Damjan Jovanovic  wrote:
> I finally cracked it. The gstreamer pipeline gets created early, during
> construction of the avmedia/source/gstreamer's Player object, yet the
> window to play in is only created later, when createPlayerWindow() is
> called. To use that window and thus embed video into the document, we have
> to set that window's handle to the GstVideoOverlay using
> gst_video_overlay_set_window_handle(), but by then it's too late. Either
> the pipeline creation would have to be deferred until createPlayerWindow(),
> when we know the window to use, or we would have to switch windows
> with gst_video_overlay_set_window_handle() a live pipeline. I've done the
> latter and it works well. I don't know how it ever worked before, maybe in
> gstreamer 0.1 the "prepare-window-handle" event is generated during
> createPlayerWindow() but in 1.0 it isn't.
>
> My changes have been committed to SVN trunk in revision 1825700.
>
> Torokhov, Jose, Peter: thank you for all your support. Please test and
> report any problems.
>
> Damjan

Will certainly do. I, for one, am grateful for your work -- as it
improves an AOO feature that was trailing behind LO.

>
> On Thu, Mar 1, 2018 at 9:25 AM, Damjan Jovanovic  wrote:
>
>> Unfortunately it looks like the problem is harder than just getting it to
>> build. Even after fixing some more APIs and getting it to play, a separate
>> player window is created. To get the player window to embed like it should,
>> we need to set the X window id on the GstVideoOverlay using
>> gst_video_overlay_set_window_handle() when a "prepare-window-handle"
>> event is delivered for which 
>> gst_is_video_overlay_prepare_window_handle_message()
>> returns true. But for some mysterious reason 
>> gst_is_video_overlay_prepare_window_handle_message()
>> never returns true. Forcefully setting the X window id on all events does
>> get it to embed, badly, with lots of warnings, and the window gets
>> distorted when scrolling and doesn't respond to mouse clicks .
>>
>> Damjan
>>
>>
>> On Thu, Mar 1, 2018 at 4:53 AM, Damjan Jovanovic 
>> wrote:
>>
>>> Thank you. The video plays, but in a separate window instead of being
>>> embedded in the document. I'll continue trying.
>>>
>>> Distributing the library separately from the rest of AOO would be
>>> difficult. Binary compatibility between Ubuntu and Gentoo, bitness, trunk
>>> vs 4.1.5. New UNO components also have to be registered in AOO somehow; I
>>> only know how to do it with .component files at compile time.
>>>
>>> It will likely only end up in SVN trunk, possibly version 4.2.0.
>>>
>>>
>>> On Thu, Mar 1, 2018 at 2:01 AM, Torokhov Sergey 
>>> wrote:
>>>
 Hello,

 I created simple presentation file with title and video frame
 ("Agent 237:operation barbershop" from Blender Animation Studio).

 https://yadi.sk/d/shOKuCcS3StDk

 The archive contains 327.odp and 327.webm files that must be placed in
 the same directory before presentation file .odp is opening.

 The video is playing automatically after pressing F5 key (fullscreen
 presentation mode). Or after pressing "Play" button on the bar that
 usually appears at the bottom then video-frame of presentation is
 selected.
 I't work for me in current Apache OpenOffice 4.1.5 and
 gstreamer-plugins:0.10.

 As I use Gentoo I installed "gst-plugins-meta:0.10" with next options:

 USE="ffmpeg quicktime http wavpack dv dvb vcd musepack vpx oss libass
 lame theora v4l" emerge gst-plugins-meta:0.10

 Also I installed "gst-plugins-ivorbis:0.10" and
 "gst-plugins-pango:0.10".


 Could you also share rebuilded library for testing? Is it compatible
 with current AOO 4.1.5 build?

 Thank yo in advance.

 --
 Sergey



 On Wed, 28 Feb 2018 19:56:42 +0200
 Damjan Jovanovic  wrote:

 > I've successfully patched our gstreamer plugin to build with
 > gstreamer-1.0, but how do I test it? Does someone have a sample
 > document that uses gstreamer?
 >
 > The patch is attached for anyone interested. Parts may still be
 > wrong, eg. filter names. Changes between GStreamer 0.1 and 1.0 are
 > documented here:
 > https://gstreamer.freedesktop.org/documentation/application-
 development/appendix/porting-1-0.html
 > https://cgit.freedesktop.org/gstreamer/gstreamer/plain/docs/
 random/porting-to-1.0.txt
 >
 >
 >
 > On Wed, Feb 28, 2018 at 10:22 AM, Damjan Jovanovic 
 > wrote:
 >
 > > Hi
 > >
 > > I've begun having a look.
 > >
 > > We currently test for gstreamer in configure.ac but don't use the
 > > result, re-running pkg-config in a main/avmedia's makefile.
 > >
 > > Changing the version number to 1.0 breaks the build due 

Re: Openoffice and unsupported gstreamer 0.10 branch (for openoffice libavmediagst.so library)

2018-03-01 Thread Damjan Jovanovic
I finally cracked it. The gstreamer pipeline gets created early, during
construction of the avmedia/source/gstreamer's Player object, yet the
window to play in is only created later, when createPlayerWindow() is
called. To use that window and thus embed video into the document, we have
to set that window's handle to the GstVideoOverlay using
gst_video_overlay_set_window_handle(), but by then it's too late. Either
the pipeline creation would have to be deferred until createPlayerWindow(),
when we know the window to use, or we would have to switch windows
with gst_video_overlay_set_window_handle() a live pipeline. I've done the
latter and it works well. I don't know how it ever worked before, maybe in
gstreamer 0.1 the "prepare-window-handle" event is generated during
createPlayerWindow() but in 1.0 it isn't.

My changes have been committed to SVN trunk in revision 1825700.

Torokhov, Jose, Peter: thank you for all your support. Please test and
report any problems.

Damjan

On Thu, Mar 1, 2018 at 9:25 AM, Damjan Jovanovic  wrote:

> Unfortunately it looks like the problem is harder than just getting it to
> build. Even after fixing some more APIs and getting it to play, a separate
> player window is created. To get the player window to embed like it should,
> we need to set the X window id on the GstVideoOverlay using
> gst_video_overlay_set_window_handle() when a "prepare-window-handle"
> event is delivered for which 
> gst_is_video_overlay_prepare_window_handle_message()
> returns true. But for some mysterious reason 
> gst_is_video_overlay_prepare_window_handle_message()
> never returns true. Forcefully setting the X window id on all events does
> get it to embed, badly, with lots of warnings, and the window gets
> distorted when scrolling and doesn't respond to mouse clicks .
>
> Damjan
>
>
> On Thu, Mar 1, 2018 at 4:53 AM, Damjan Jovanovic 
> wrote:
>
>> Thank you. The video plays, but in a separate window instead of being
>> embedded in the document. I'll continue trying.
>>
>> Distributing the library separately from the rest of AOO would be
>> difficult. Binary compatibility between Ubuntu and Gentoo, bitness, trunk
>> vs 4.1.5. New UNO components also have to be registered in AOO somehow; I
>> only know how to do it with .component files at compile time.
>>
>> It will likely only end up in SVN trunk, possibly version 4.2.0.
>>
>>
>> On Thu, Mar 1, 2018 at 2:01 AM, Torokhov Sergey 
>> wrote:
>>
>>> Hello,
>>>
>>> I created simple presentation file with title and video frame
>>> ("Agent 237:operation barbershop" from Blender Animation Studio).
>>>
>>> https://yadi.sk/d/shOKuCcS3StDk
>>>
>>> The archive contains 327.odp and 327.webm files that must be placed in
>>> the same directory before presentation file .odp is opening.
>>>
>>> The video is playing automatically after pressing F5 key (fullscreen
>>> presentation mode). Or after pressing "Play" button on the bar that
>>> usually appears at the bottom then video-frame of presentation is
>>> selected.
>>> I't work for me in current Apache OpenOffice 4.1.5 and
>>> gstreamer-plugins:0.10.
>>>
>>> As I use Gentoo I installed "gst-plugins-meta:0.10" with next options:
>>>
>>> USE="ffmpeg quicktime http wavpack dv dvb vcd musepack vpx oss libass
>>> lame theora v4l" emerge gst-plugins-meta:0.10
>>>
>>> Also I installed "gst-plugins-ivorbis:0.10" and
>>> "gst-plugins-pango:0.10".
>>>
>>>
>>> Could you also share rebuilded library for testing? Is it compatible
>>> with current AOO 4.1.5 build?
>>>
>>> Thank yo in advance.
>>>
>>> --
>>> Sergey
>>>
>>>
>>>
>>> On Wed, 28 Feb 2018 19:56:42 +0200
>>> Damjan Jovanovic  wrote:
>>>
>>> > I've successfully patched our gstreamer plugin to build with
>>> > gstreamer-1.0, but how do I test it? Does someone have a sample
>>> > document that uses gstreamer?
>>> >
>>> > The patch is attached for anyone interested. Parts may still be
>>> > wrong, eg. filter names. Changes between GStreamer 0.1 and 1.0 are
>>> > documented here:
>>> > https://gstreamer.freedesktop.org/documentation/application-
>>> development/appendix/porting-1-0.html
>>> > https://cgit.freedesktop.org/gstreamer/gstreamer/plain/docs/
>>> random/porting-to-1.0.txt
>>> >
>>> >
>>> >
>>> > On Wed, Feb 28, 2018 at 10:22 AM, Damjan Jovanovic 
>>> > wrote:
>>> >
>>> > > Hi
>>> > >
>>> > > I've begun having a look.
>>> > >
>>> > > We currently test for gstreamer in configure.ac but don't use the
>>> > > result, re-running pkg-config in a main/avmedia's makefile.
>>> > >
>>> > > Changing the version number to 1.0 breaks the build due a missing
>>> > > header file. Removing that "#include" gets it a little further, but
>>> > > it breaks due to changed gstreamer API functions. There is also
>>> > > lots of warnings about deprecated GDK functions. I'll continue
>>> > > trying later.
>>> > >
>>> > > We should really get rid of gstreamer 0.1 ASAP one way or the
>>> > 

Re: Extensions website outage

2018-03-01 Thread Andrea Pescetti

Dave Brondsema wrote:

On 3/1/18 12:08 PM, Andrea Pescetti wrote:

I currently get this on https://extensions.openoffice.org/ for the record:
"Sourceforge project sites are currently under maintenance. Please check back
later.  We thank you for your patience."


Correct.  We will be prioritizing getting the extensions and templates sites up
as soon as we can, we know they are important services.


OK, thanks. Indeed SourceForge used to provide excellent service for 
hosting of downloads, Extensions and Templates. It seems that after the 
move to the new datacenter announced a few week ago (maybe just a 
coincidence, maybe some technical issues related to the new 
infrastructure) reliability problems are more frequent. I hope bugs will 
be ironed out soon.


Regards,
  Andrea.

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



Re: Extensions website outage

2018-03-01 Thread Dave Brondsema
On 3/1/18 12:08 PM, Andrea Pescetti wrote:
> FR web forum wrote:
>> Unable to connect :-(
>> http://status.apache.org says that all is ok
> 
> Extensions is not hosted at Apache. It is hosted by SourceForge, and 
> apparently
> they are having issues:
> 
> https://twitter.com/sfnet_ops
> 
> I currently get this on https://extensions.openoffice.org/ for the record:
> "Sourceforge project sites are currently under maintenance. Please check back
> later.  We thank you for your patience."
> 
> Regards,
>   Andrea.
> 

Correct.  We will be prioritizing getting the extensions and templates sites up
as soon as we can, we know they are important services.


-- 
Dave Brondsema : d...@brondsema.net
http://www.brondsema.net : personal
http://www.splike.com : programming
  <><

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



Re: Extensions website outage

2018-03-01 Thread Andrea Pescetti

FR web forum wrote:

Unable to connect :-(
http://status.apache.org says that all is ok


Extensions is not hosted at Apache. It is hosted by SourceForge, and 
apparently they are having issues:


https://twitter.com/sfnet_ops

I currently get this on https://extensions.openoffice.org/ for the 
record: "Sourceforge project sites are currently under maintenance. 
Please check back later.  We thank you for your patience."


Regards,
  Andrea.

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



Extensions website outage

2018-03-01 Thread FR web forum
Unable to connect :-(
http://status.apache.org says that all is ok

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



Re: Wiki contributors

2018-03-01 Thread Keith N. McKenna
On 3/1/2018 4:13 AM, FR web forum wrote:
> Hello devteam,
> 
> This page give information to contribute in AOO Wiki:
> https://wiki.openoffice.org/wiki/Documentation/Contribute
> But it unable to register.
> What is the correct process?
> 
Despite my best efforts to bring it up to date that document is still
somewhat outdated. We had to stop self registration a few years ago due
to a rather vicious spam attack. To get a new account send an e-mail
with your preferred user name and e-mail address to either
dev@openoffice.apache.org, or d...@openoffice.apache.org and an admin
will create the account for you and send notification.

I will update the guide you mention now.

Regards
Keith



signature.asc
Description: OpenPGP digital signature


Re: Long password problem in OO

2018-03-01 Thread FR web forum
Reported in: https://bz.apache.org/ooo/show_bug.cgi?id=122151

- Mail original -
> De: "Rory O'Farrell" 
> À: dev@openoffice.apache.org
> Envoyé: Jeudi 1 Mars 2018 12:57:24
> Objet: Long password problem in OO
> 
> On the en-Forum a user has reported that OO will accept a long
> password, but actually uses only 15 characters of it.  He suggests
> that the password input screen should warn if a password is longer
> than 15 chars.  This seems reasonable and ought be an easy check to
> insert into any forthcoming OO release.
> 
> The User's posting is at
> [url]https://forum.openoffice.org/en/forum/viewtopic.php?f=6=92632[/url]
> 
> --
> Rory O'Farrell 
> 
> -
> 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



Long password problem in OO

2018-03-01 Thread Rory O'Farrell
On the en-Forum a user has reported that OO will accept a long password, but 
actually uses only 15 characters of it.  He suggests that the password input 
screen should warn if a password is longer than 15 chars.  This seems 
reasonable and ought be an easy check to insert into any forthcoming OO release.

The User's posting is at
[url]https://forum.openoffice.org/en/forum/viewtopic.php?f=6=92632[/url]

-- 
Rory O'Farrell 

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



Re: Wiki contributors

2018-03-01 Thread Dennis Roczek

On 01.03.2018 10:13, FR web forum wrote:
> Hello devteam,
>
> This page give information to contribute in AOO Wiki:
> https://wiki.openoffice.org/wiki/Documentation/Contribute
> But it unable to register.
> What is the correct process?
see https://wiki.openoffice.org/wiki/New_accounts

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



Wiki contributors

2018-03-01 Thread FR web forum
Hello devteam,

This page give information to contribute in AOO Wiki:
https://wiki.openoffice.org/wiki/Documentation/Contribute
But it unable to register.
What is the correct process?

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