Recruitment - getting involved!
Hello, This is Ahmed Aboubakr, software developer from Cairo, Egypt.I am interested in contributing to OpenOffice project, but when I try to subscribe to the recruitment mailing list, I get the email bounced, with a failure notice that this list has moved to volunteer! So, I hope you provide me with steps to move forward. Thanks,Ahmed.
Contribution/recruitment!
Hello,I am Ahmed Aboubakr from Cairo, Egypt.I am interested in contributing to Openoffice project. I am not sure where should I get started.Thanks,Ahmed.
Re: Contribution/recruitment!
On 16/05/2022 17:27, medo medo wrote: > Hello,I am Ahmed Aboubakr from Cairo, Egypt.I am interested in contributing > to Openoffice project. > I am not sure where should I get started.Thanks,Ahmed. This page should help: https://openoffice.apache.org/orientation/ Then ask for further advice or guidance on this list. Regards Dave - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org
Re: Forums and FAQ
Am 10.05.22 um 02:25 schrieb Dave Fisher: We need versions of the following strings to add for each language: ./language/en/help/faq.php 'HELP_FAQ_AOO_SPECIFIC' => 'OpenOffice.org Community Forum Specific Issues', 'HELP_FAQ_AOO_WHERE_CAN_I_FIND' => 'Where can I find FAQs relating specifically to OpenOffice.org products?', 'HELP_FAQ_AOO_WHERE'=> 'We don\'t maintain an FAQ per se, but you is you start with our Survival Guide, this will explain how to go about using the forum. You will also find specific tutorials in the Tutorials forum. You can also use the https://wiki.openoffice.org/wiki/";>OpenOffice wiki as a knowledge source.', 'HELP_FAQ_AOO_HOW_TO_ASK' => ‘ How do I ask a question?', 'HELP_FAQ_AOO_HOW' => 'Please read the Survival Guide before you post. These guidelines and rules help the community to make the most of this forum. The remainder of this FAQ coverts general issues to do with the using phpBB3.', Here’s where the strings are used. ./phpbb/help/controller/faq.php 'HELP_FAQ_AOO_SPECIFIC', 'HELP_FAQ_AOO_WHERE_CAN_I_FIND' => 'HELP_FAQ_AOO_WHERE', 'HELP_FAQ_AOO_HOW_TO_ASK' => 'HELP_FAQ_AOO_HOW', can someone show me where the German strings would show up in the forum? For a (still needed ?) translation I need a bit context. Thanks Marcus On May 9, 2022, at 10:33 AM, Bidouille wrote: Hello, Small problem with FAQ on all forums except EN https://forum.openoffice.org/fr/forum/download/file.php?id=145454 I don't know how these strings has been added. - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org
Re: Forums and FAQ
Hi Marcus, We don’t have the German Forum on forum.openoffice.org - we link to here: https://www.openoffice.org/de/foren.html and that links to here: https://www.openoffice-forum.de Best, Dave > On May 16, 2022, at 10:37 AM, Marcus wrote: > > Am 10.05.22 um 02:25 schrieb Dave Fisher: >> We need versions of the following strings to add for each language: >> ./language/en/help/faq.php >> 'HELP_FAQ_AOO_SPECIFIC' => 'OpenOffice.org >> Community Forum Specific Issues', >> 'HELP_FAQ_AOO_WHERE_CAN_I_FIND' => 'Where can I find >> FAQs relating specifically to OpenOffice.org products?', >> 'HELP_FAQ_AOO_WHERE'=> 'We don\'t maintain >> an FAQ per se, but you is you start with our > href="/en/forum/viewtopic.php?t=166">Survival Guide, this will explain >> how to go about using the forum. You will also find specific tutorials in >> the Tutorials forum. You can >> also use the https://wiki.openoffice.org/wiki/";>OpenOffice wiki >> as a knowledge source.', >> 'HELP_FAQ_AOO_HOW_TO_ASK' => ‘ >> How do I ask a question?', >> 'HELP_FAQ_AOO_HOW' => 'Please read >> the Survival Guide before you >> post. These guidelines and rules help the community to make the >> most of this forum. The remainder of this FAQ coverts general >> issues to do with the using phpBB3.', >> Here’s where the strings are used. >> ./phpbb/help/controller/faq.php >> 'HELP_FAQ_AOO_SPECIFIC', >> 'HELP_FAQ_AOO_WHERE_CAN_I_FIND' => >> 'HELP_FAQ_AOO_WHERE', >> 'HELP_FAQ_AOO_HOW_TO_ASK' => 'HELP_FAQ_AOO_HOW', > > can someone show me where the German strings would show up in the forum? > For a (still needed ?) translation I need a bit context. > > Thanks > > Marcus > > > >>> On May 9, 2022, at 10:33 AM, Bidouille wrote: >>> >>> Hello, >>> >>> Small problem with FAQ on all forums except EN >>> https://forum.openoffice.org/fr/forum/download/file.php?id=145454 >>> >>> I don't know how these strings has been added. > > - > 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: WebDAV module ported from serf to curl; curl using openssl and zlib (was: Re: Openssl, serf and curl)
Hello Damjan, all, On Sun, May 15, 2022 at 04:12:14PM +0200, Damjan Jovanovic wrote: > On Sun, May 15, 2022 at 3:57 PM Arrigo Marchiori > wrote: > > > Dear All, > > > > On Thu, May 12, 2022 at 07:36:49PM +0200, Arrigo Marchiori wrote: > > > > > Dear all, > > > > > > if nobody objects, I will merge this PR during the week-end. > > > > > > Reference: https://github.com/apache/openoffice/pull/146 > > > > Done. > > > > Thank you again, Damjan! > > > > It's a pleasure :). > > The next library to update could be zlib, because this version of curl > > does _not_ compile with the bundled zlib. > > > > I distinctly recall that zlib and curl compiled for me on Windows. Where > and how is it failing for you? It's failing on Linux. If we want to use the bundled zlib, we have to tell the configure script --with-zlib=$(OUTDIR) . The configure script would look for: 1- the header file in $(OUTDIR)/include 2- the library in $(OUTDIR)/lib/ But the bundled zlib module installs: 1a- the header file into $(OUTDIR)/inc 2a- the static library as file $(OUTDIR)/lib/libzlib.a So we have to patch it in a similar way as we did for the openssl paths (i.e. replicate bb956dfd85428dd08d991a01ee6a6c4e966bf431) Even in that case, it is not easy to understand if we are using the bundled zlib or the system-level one. The main cause, IMHO, is that system-level zlib is surely installed (because of other build dependencies) and is auto-detected by configure scripts and default Makefile settings. To a quick glance, also the "openssl" module seems to link to the system zlib on Linux. As the bundled zlib is linked statically, I wonder if invoking ldd on the built executables and .so files is the only way to check for proper linking. I am sorry I do not have more time to get into details by now. I hope the above makes sense. Best regards, -- Arrigo - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org
Re: Contribution/recruitment!
Welcome Ahmed, We can use your interest in PHP and also C++. From my point of view you decide where to dive into. If you want to look at OpenOffice directly, I suggest you start with building OpenOffice on your favourite plattform. We help you with that. The second Option is to help with our add ons. We need to check if some of our wikimedia modules run with the latest Wikimedia. If so, that would be great. As Dave said. If you need anything, just ask. :-) I am looking forward of hearing of you. All the best Peter Am 16.05.22 um 18:27 schrieb medo medo: Hello,I am Ahmed Aboubakr from Cairo, Egypt.I am interested in contributing to Openoffice project. I am not sure where should I get started.Thanks,Ahmed. - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org
Re: Forums and FAQ
Am 16.05.22 um 20:45 schrieb Dave Fisher: We don’t have the German Forum on forum.openoffice.org - we link to here: https://www.openoffice.org/de/foren.html and that links to here: https://www.openoffice-forum.de so, we don't need the strings in German as they won't show up, right? Thanks Marcus On May 16, 2022, at 10:37 AM, Marcus wrote: Am 10.05.22 um 02:25 schrieb Dave Fisher: We need versions of the following strings to add for each language: ./language/en/help/faq.php 'HELP_FAQ_AOO_SPECIFIC' => 'OpenOffice.org Community Forum Specific Issues', 'HELP_FAQ_AOO_WHERE_CAN_I_FIND' => 'Where can I find FAQs relating specifically to OpenOffice.org products?', 'HELP_FAQ_AOO_WHERE'=> 'We don\'t maintain an FAQ per se, but you is you start with our Survival Guide, this will explain how to go about using the forum. You will also find specific tutorials in the Tutorials forum. You can also use the https://wiki.openoffice.org/wiki/";>OpenOffice wiki as a knowledge source.', 'HELP_FAQ_AOO_HOW_TO_ASK' => ‘ How do I ask a question?', 'HELP_FAQ_AOO_HOW' => 'Please read the Survival Guide before you post. These guidelines and rules help the community to make the most of this forum. The remainder of this FAQ coverts general issues to do with the using phpBB3.', Here’s where the strings are used. ./phpbb/help/controller/faq.php 'HELP_FAQ_AOO_SPECIFIC', 'HELP_FAQ_AOO_WHERE_CAN_I_FIND' => 'HELP_FAQ_AOO_WHERE', 'HELP_FAQ_AOO_HOW_TO_ASK' => 'HELP_FAQ_AOO_HOW', can someone show me where the German strings would show up in the forum? For a (still needed ?) translation I need a bit context. Thanks Marcus On May 9, 2022, at 10:33 AM, Bidouille wrote: Hello, Small problem with FAQ on all forums except EN https://forum.openoffice.org/fr/forum/download/file.php?id=145454 I don't know how these strings has been added. - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org
Re: Contribution/recruitment!
Greetings, Thanks Dave for providing me with the link. Thanks Peter for your warm welcome. I am willing to start with making the checks on the add-ons, and then dive into development later. What is the task and what should I do? Thanks, Ahmed. On Monday, May 16, 2022, 10:51:03 PM GMT+2, Peter Kovacs wrote: Welcome Ahmed, We can use your interest in PHP and also C++. From my point of view you decide where to dive into. If you want to look at OpenOffice directly, I suggest you start with building OpenOffice on your favourite plattform. We help you with that. The second Option is to help with our add ons. We need to check if some of our wikimedia modules run with the latest Wikimedia. If so, that would be great. As Dave said. If you need anything, just ask. :-) I am looking forward of hearing of you. All the best Peter Am 16.05.22 um 18:27 schrieb medo medo: > Hello,I am Ahmed Aboubakr from Cairo, Egypt.I am interested in contributing > to Openoffice project. > I am not sure where should I get started.Thanks,Ahmed. > - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org