review granted: [Issue 126852] dear sir .ods file not open more file problem this type in Ubuntu plz solution : [Attachment 85305] file not open
chandan has granted review: Issue 126852: dear sir .ods file not open more file problem this type in Ubuntu plz solution https://bz.apache.org/ooo/show_bug.cgi?id=126852 Attachment 85305: file not open https://bz.apache.org/ooo/attachment.cgi?id=85305&action=edit --- Description --- dear sir .ods file not open more file problem this type in Ubuntu plz solution - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org
Proofing Tool GUI 3.0 - beta - build 94 - 2016-02-19 Released
Hello! *With Bcc to: l10n and QA.* Just to inform everyone that, as planned, I have released an update for my Hunspell tool: Proofing Tool GUI. It can be downloaded from: http://marcoagpinto.cidadevirtual.pt/proofingtoolgui.html I had a previous build ready to ship but, while testing it in Ubuntu, there were some issues using CURS UP and CURS DOWN to scroll the thesaurus, which I seem to have fixed in build 94. Please give it a try. Thanks! Kind regards, >Marco A.G.Pinto --- --
Re: AOO debugging on FreeBSD
On 18 Feb, Damjan Jovanovic wrote: > Hi > > On FreeBSD, when I try debug dmake modules in AOO with gdb, and use > the "break :" command, I have to specify the filename > only, without a path, otherwise it can't find it. On Linux it always > finds the file, whether an absolute path, relative path, or filename > only is used. Eclipse CDT's integrated debugger fails to set > breakpoints because of this, making it useless. > > On the other hand, gbuild modules with the patch at the end of my mail > (and --enable-symbols to ./configure) work just fine using absolute > path and relative path. However patching dmake to use similar debug > options to gbuild didn't help: > > Index: main/solenv/inc/unxfbsd.mk > === > --- main/solenv/inc/unxfbsd.mk(revision 1730773) > +++ main/solenv/inc/unxfbsd.mk(working copy) > @@ -86,7 +86,7 @@ > .IF "$(ENABLE_SYMBOLS)"=="SMALL" > CFLAGSENABLESYMBOLS=-g1 > .ELSE > -CFLAGSENABLESYMBOLS=-g # was temporarily commented out, reenabled before Beta > +CFLAGSENABLESYMBOLS=-ggdb3 # was temporarily commented out, reenabled > before Beta > > .ENDIF > > > Is there known issues debugging clang's binaries with gdb? Any ideas? I'm pretty sure that gdb from ports should be used instead of the base gdb. - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org
Re: [VOTE] Release Java Bootstrap Connector via Maven
On 12/02/2016 Carl Marcum wrote: I have the release candidate staged in the Apache Nexus repository [1] that includes a separate source and javadoc jar all pgp signed by myself. +1 for releasing it. Note that I had to try multiple times, so to the benefit of others I will say that it worked with Groovy version 2.4.4 and Java 8 (not with Groovy 1.8.x and Java 7). That said, I don't really think we should treat "devtools" releases as "real" releases since artifacts get, of course, much less attention. As others wrote, it will be good to align when we release 4.2.0 and this will fix it with no need for further discussions on the matter. Regards, Andrea. - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org
Re: Book on OpenOffice
Hi Marcus, Is this text suitable? You may hide the link under "Ipaa Service". The language is Dutch as the book is in Dutch. If it should be in English, just let me know. Sincerely, Gerrit--- Ik wil… metOpenOffice aan het werk:(http://ipaa.nl/uitgeverij/computerboeken/4-ik-wil-met-openoffice-aan-het-werk)In Netherlandslanguage by Gerrit Bruijnes, publisher Ipaa Service, ISBN978 90 72445 51 3Introductie in alleapps van OpenOffice 4.x. Plus een naslagwerk rond vijftien thema'szoals correspondentie, (e)mailingen, presenteren, een c.v. schrijven,gegevensbeheer, financiële administratie en meer. Het boek wordtdoorlopend geactualiseerd als een nieuwe versie van de software daaraanleiding toe geeft. On Wednesday, 17 February 2016, 23:45, Marcus wrote: Am 02/16/2016 12:38 PM, schrieb Gerry Dutchie: > If possible I would like to see a reference to one of my books on your > Books page: > > http://www.openoffice.org/support/books.html > > A few years ago I wrote an extensive, 300 page book on OpenOffice 3.x. > Eight chapters aimed at familiarising beginners with all apps that make > up OpenOffce. And fifteen chapters around tasks the more experienced > users might want to undertake. > > I have updated the book to accommodate users of the new 4.1.x version > and I intend to continue doing so for further major updates. It is > written in Netherlands language so suitable for the Netherlands and > Flemish (Belgian) public. > My website: > http://ipaa.nl/uitgeverij/computerboeken/4-ik-wil-met-openoffice-aan-het-werk > > As a writer with well over fifteen years of experience in producing > books on computer software, it is my philosophy that the reader should > be guided towards practical, everyday use of the software. All examples > and files, used in the book can be obtained through a free download link > and can be used to get one’s daily work done. thanks for your intersting in a listing on the books webpage. It is indeed possible. Please tell us the the exact link (it should be one that can exist longer) and which text wording you want to see there. You can take the already existing listings as examples. Thanks Marcus - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org
AOO debugging on FreeBSD
Hi On FreeBSD, when I try debug dmake modules in AOO with gdb, and use the "break :" command, I have to specify the filename only, without a path, otherwise it can't find it. On Linux it always finds the file, whether an absolute path, relative path, or filename only is used. Eclipse CDT's integrated debugger fails to set breakpoints because of this, making it useless. On the other hand, gbuild modules with the patch at the end of my mail (and --enable-symbols to ./configure) work just fine using absolute path and relative path. However patching dmake to use similar debug options to gbuild didn't help: Index: main/solenv/inc/unxfbsd.mk === --- main/solenv/inc/unxfbsd.mk(revision 1730773) +++ main/solenv/inc/unxfbsd.mk(working copy) @@ -86,7 +86,7 @@ .IF "$(ENABLE_SYMBOLS)"=="SMALL" CFLAGSENABLESYMBOLS=-g1 .ELSE -CFLAGSENABLESYMBOLS=-g # was temporarily commented out, reenabled before Beta +CFLAGSENABLESYMBOLS=-ggdb3 # was temporarily commented out, reenabled before Beta .ENDIF Is there known issues debugging clang's binaries with gdb? Any ideas? Thank you Damjan Index: main/solenv/gbuild/platform/freebsd.mk === --- main/solenv/gbuild/platform/freebsd.mk(revision 1730773) +++ main/solenv/gbuild/platform/freebsd.mk(working copy) @@ -238,6 +238,16 @@ endif endif +ifeq ($(ENABLE_SYMBOLS),TRUE) +ifeq ($(COM),CLANG) +gb_LinkTarget_CXXFLAGS += -ggdb3 -fno-inline +gb_LinkTarget_CFLAGS += -ggdb3 -fno-inline +else +gb_LinkTarget_CXXFLAGS += -ggdb3 -finline-limit=0 -fno-inline -fno-default-inline +gb_LinkTarget_CFLAGS += -ggdb3 -finline-limit=0 -fno-inline -fno-default-inline +endif +endif + gb_LinkTarget_INCLUDE := $(filter-out %/stl, $(subst -I. , ,$(SOLARINC))) gb_LinkTarget_INCLUDE_STL := $(filter %/stl, $(subst -I. , ,$(SOLARINC))) - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org
Re: Reporting broken download link
Am 02/18/2016 12:44 PM, schrieb frohlinde.weberdr: I use the system windows, not Linux. As I tried again by the mirror Net Cologne, the download stopped at 154 MB (of 157 MB), i.e. just before the last 3 MB. I try to download since several weeks already, always in vain. Once my Anti-Virus-Programm, Avira Security, told me, that there was a file with the letters PUA that was hindered by the system to continue the download. But even when I stopped the Avira Program the Download did not function. I'm sorry, please try this link [1]. Otherwise try to use another mirror server. I know it won't help you, but I had no problems to complete several downloads. So, in general it works. [1] https://sourceforge.net/projects/openofficeorg.mirror/files/4.1.2/binaries/de/Apache_OpenOffice_4.1.2_Win_x86_install_de.exe/download?use_mirror=netcologne Marcus Am 16.02.2016 um 20:46 schrieb Marcus: Normally the downloads should go through without problems. But maybe there is a temporary hickup with the mirror server you are using. As it seems that you are coming from Germany the following is a download link for a server from the ISP NetCologne (Köln) [1]. Otherwise you can choose another one when you click on the blue "miror" link on the download page from SourceForge (the one that countdown from 5 seconds to 0). [1] http://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.2/binaries/de/Apache_OpenOffice_4.1.2_Linux_x86-64_install-rpm_de.tar.gz?r=https%3A%2F%2Fsourceforge.net%2Fprojects%2Fopenofficeorg.mirror%2Ffiles%2F4.1.2%2Fbinaries%2Fde%2FApache_OpenOffice_4.1.2_Linux_x86-64_install-rpm_de.tar.gz%2Fdownload&ts=1455651361&use_mirror=netcologne HTH Marcus Am 02/16/2016 04:39 PM, schrieb frohlinde.weberdr: *Problembeschreibung* *Ersetze diesen Text und beschreibe das Problem (Was funktioniert nicht? Was wird erwartet?)Der Download bleibt nach 19 bzw. 22 MB von 157 MB hängen oder hört auf. * *Browser Variablen* *Werte* [...] - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org
Re: Reporting broken download link
Hi Marcus, I use the system windows, not Linux. As I tried again by the mirror Net Cologne, the download stopped at 154 MB (of 157 MB), i.e. just before the last 3 MB. I try to download since several weeks already, always in vain. Once my Anti-Virus-Programm, Avira Security, told me, that there was a file with the letters PUA that was hindered by the system to continue the download. But even when I stopped the Avira Program the Download did not function. Perhaps it is better to renounce to the download? Please excuse my English. Greatings and thanks Fro. Am 16.02.2016 um 20:46 schrieb Marcus: Normally the downloads should go through without problems. But maybe there is a temporary hickup with the mirror server you are using. As it seems that you are coming from Germany the following is a download link for a server from the ISP NetCologne (Köln) [1]. Otherwise you can choose another one when you click on the blue "miror" link on the download page from SourceForge (the one that countdown from 5 seconds to 0). [1] http://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.2/binaries/de/Apache_OpenOffice_4.1.2_Linux_x86-64_install-rpm_de.tar.gz?r=https%3A%2F%2Fsourceforge.net%2Fprojects%2Fopenofficeorg.mirror%2Ffiles%2F4.1.2%2Fbinaries%2Fde%2FApache_OpenOffice_4.1.2_Linux_x86-64_install-rpm_de.tar.gz%2Fdownload&ts=1455651361&use_mirror=netcologne HTH Marcus Am 02/16/2016 04:39 PM, schrieb frohlinde.weberdr: *Problembeschreibung* *Ersetze diesen Text und beschreibe das Problem (Was funktioniert nicht? Was wird erwartet?)Der Download bleibt nach 19 bzw. 22 MB von 157 MB hängen oder hört auf. * *Browser Variablen* *Werte* [...]