Re: Issues accessing apache services from campus network after mining of bug reports
Thank you, I will try writing to them. On 02/02/2018 02:50 AM, Andrea Pescetti wrote: Juan Florez wrote: I'm writing to report a problem that surfaced after trying to download a relatively big number of bug reports from this project's bugzilla. In short, any domain at apache.org started rejecting connections You have likely been blacklisted. You need to contact ASF Infra. See here: http://www.apache.org/dev/infra-contact Usually they don't like mass downloads from bug tracking system, but unless you are a known offender they will be ready to help. Regards, Andrea. -- Juan Manuel Florez Software Engineering PhD Student - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org
Re: FOSDEM in-person meeting
Hi Andrea, Am 02.02.2018 um 10:55 schrieb Andrea Pescetti: > I know that several of us will be at FOSDEM in Brussels this weekend, > and I guess most will spend time at the ASF booth or at the Open > Document Editors devroom: > https://fosdem.org/2018/schedule/track/open_document_editors/ > > The devroom runs all day, without a lunch break, but is it OK if we > meet at 13:00, just after Peter's presentation, outside room AW.120 > (our devroom)? Location of the AW building can be seen here: > https://fosdem.org/2018/schedule/buildings/#aw Of course I will attend Peter's and your talk... Looking forward to meeting you and all the others! Regards, Matthias > > That way we could spend part of the afternoon together and discuss > many current topics. Without taking decisions, of course; but talking > helps understanding issues better and I'm looking forward to seeing > projects members in person, some even for the first time! > > Regards, > Andrea. > > - > To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org > For additional commands, e-mail: dev-h...@openoffice.apache.org > > smime.p7s Description: S/MIME Cryptographic Signature
Re: FOSDEM in-person meeting
+1, looking forward to the event. Am 2. Februar 2018 10:55:59 MEZ schrieb Andrea Pescetti : >I know that several of us will be at FOSDEM in Brussels this weekend, >and I guess most will spend time at the ASF booth or at the Open >Document Editors devroom: >https://fosdem.org/2018/schedule/track/open_document_editors/ > >The devroom runs all day, without a lunch break, but is it OK if we >meet >at 13:00, just after Peter's presentation, outside room AW.120 (our >devroom)? Location of the AW building can be seen here: >https://fosdem.org/2018/schedule/buildings/#aw > >That way we could spend part of the afternoon together and discuss many > >current topics. Without taking decisions, of course; but talking helps >understanding issues better and I'm looking forward to seeing projects >members in person, some even for the first time! > >Regards, > Andrea. > >- >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: Spreadsheet
Original Message From: ed tinervin To: dev@openoffice.apache.org Date: Fri, 2 Feb 2018 11:48:23 + (utc) > I have not found anything to tell me how to print the cell lines in the > spreadsheet. Can you help Thanks Hi Ed, How-to questions like this are best addressed to the user support list us...@openoffice.apache.org You can find the answer to your question by clicking on the Calc Help menu or pressing the F1 function key on your keyboard, then type grids. Summary: From the Calc menu select "Format Page..." and in the dialog (window) that opens click to tick/check the "Grid" under the "Print" option of the "Sheet" tab. Hope this helps. Dave -- Give a man a fish to feed him for a day. Teach a man to fish and feed him for a lifetime.
Spreadsheet
I have not found anything to tell me how to print the cell lines in the spreadsheet. Can you help Thanks
Re: bug openoffice calc
It's possible there might be some connection with that bug, but opening Thierry's file in a hex editor indicates that it does have some xls content. I would recommend Thierry post a bug report https://bz.apache.org/ooo/ and attach a copy of the file to that report. Google translate transcription into French: Il est possible qu'il y ait un lien avec ce bug, mais ouvrir le fichier de Thierry dans un éditeur hexadécimal indique qu'il contient du contenu xls. Je recommanderais à Thierry de poster un rapport de bug https://bz.apache.org/ooo/ et de joindre une copie du fichier à ce rapport. Original Message From: Peter Kovacs To: dev@openoffice.apache.org, Thierry Colson - Prévoyance et Patrimoine Date: Fri, 2 Feb 2018 11:13:07 +0100 > May this be affiliated with our Bug? > > Google translate transcription into english: >> Hello >> to my regret I will uninstall Open Office 4.1.5: >> >> for the 2nd time the .xls files updated with openoffice are saved ... >> without the data. >> only the empty sheet remains in the file >> example attached. >> It's a blocking bug > > > On 02.02.2018 09:17, Thierry Colson - Prévoyance et Patrimoine wrote: >> Bonjour >> à mon grand regret je vais désinstaller Open Office 4.1.5 : >> >> pour la 2eme fois les fchiers .xls mis à jour avec openoffice sont >> enregistrés... sans les données. >> il ne reste dans le fichier qu'une feuille vide, >> exemple ci-joint. >> C'est un bug bloquant >> -- >> >> Très cordialement >> >> Thierry COLSON >> >> +33 6 80 53 97 26
Re: SvpGlyphPeer::RemovingGlyph() compile error
It does also not compile on gcc 7.xx So I did change the code and it compiles if( rGlyphData.ExtDataRef().mpData != NULL ) But I think it has to be if( rGlyphData.ExtDataRef().mpData != NULL && rGlyphData.ExtDataRef().mpData != Format::NONE) You can work around this issue in gcc by setting some flags that allows the use of Format::NONE directly. But i concider this as not so good. All the best Peter On 30.01.2018 21:01, Don Lewis wrote: When doing a build with clang 6, which defaults to c++14, I get a compile error in SvpGlyphPeer::RemovingGlyph() in vcl/unx/headless/svptext.cxx on this line: if( rGlyphData.ExtDataRef().mpData != Format::NONE ) This isn't too surprising since Format::NONE is an integer and mpData is a pointer. There are a couple of ways that I thought of fixing this. One is to change the right side of the comparision to NULL, the other is to change the left side to use meInfo. Then I used OpenGrok to dig through the code, and the only assignments to meInfo that I found were in main/vcl/unx/generic/gdi/gcach_xpeer.cxx and use the values from this enum: enum { INFO_EMPTY=0, INFO_PIXMAP, INFO_XRENDER, INFO_RAWBMP, INFO_MULTISCREEN }; This makes no sense given the other comparisions to meInfo in svptext.cxx and the code in SvpGlyphPeer::GetGlyphBmp() starting on line 92 of that file. There is a call to rServerFont.SetExtended() that gets the value of nBmpFormat, but that sets private member mnExtInfo in class ServerFont in glyphcache.hxx, whereas meInfo is a struct field where the struct is a private member of class GlyphData. Thoughts? - 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: bug openoffice calc
May this be affiliated with our Bug? Google translate transcription into english: Hello to my regret I will uninstall Open Office 4.1.5: for the 2nd time the .xls files updated with openoffice are saved ... without the data. only the empty sheet remains in the file example attached. It's a blocking bug On 02.02.2018 09:17, Thierry Colson - Prévoyance et Patrimoine wrote: Bonjour à mon grand regret je vais désinstaller Open Office 4.1.5 : pour la 2eme fois les fchiers .xls mis à jour avec openoffice sont enregistrés... sans les données. il ne reste dans le fichier qu'une feuille vide, exemple ci-joint. C'est un bug bloquant -- Très cordialement Thierry COLSON +33 6 80 53 97 26 - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org
FOSDEM in-person meeting
I know that several of us will be at FOSDEM in Brussels this weekend, and I guess most will spend time at the ASF booth or at the Open Document Editors devroom: https://fosdem.org/2018/schedule/track/open_document_editors/ The devroom runs all day, without a lunch break, but is it OK if we meet at 13:00, just after Peter's presentation, outside room AW.120 (our devroom)? Location of the AW building can be seen here: https://fosdem.org/2018/schedule/buildings/#aw That way we could spend part of the afternoon together and discuss many current topics. Without taking decisions, of course; but talking helps understanding issues better and I'm looking forward to seeing projects members in person, some even for the first time! Regards, Andrea. - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org
FOSDEM in-person meeting
I know that several of us will be at FOSDEM this weekend, and I guess most will spend time at the ASF booth or at the Open Document Editors devroom: https://fosdem.org/2018/schedule/track/open_document_editors/ The devroom runs all day, without a lunch break, but is it OK if we meet at 13:00, just after Peter's presentation, outside room AW.120 (our devroom)? Location of the AW building can be seen here: https://fosdem.org/2018/schedule/buildings/#aw That way we could spend part of the afternoon together and discuss many current topics. Without taking decisions, of course; but talking helps understanding issues better and I'm looking forward to seeing projects members in person, some even for the first time! Regards, Andrea. - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org
bug openoffice calc
Bonjour à mon grand regret je vais désinstaller Open Office 4.1.5 : pour la 2eme fois les fchiers .xls mis à jour avec openoffice sont enregistrés... sans les données. il ne reste dans le fichier qu'une feuille vide, exemple ci-joint. C'est un bug bloquant -- Très cordialement Thierry COLSON +33 6 80 53 97 26 - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org
Re: Issues accessing apache services from campus network after mining of bug reports
Juan Florez wrote: I'm writing to report a problem that surfaced after trying to download a relatively big number of bug reports from this project's bugzilla. In short, any domain at apache.org started rejecting connections You have likely been blacklisted. You need to contact ASF Infra. See here: http://www.apache.org/dev/infra-contact Usually they don't like mass downloads from bug tracking system, but unless you are a known offender they will be ready to help. Regards, Andrea. - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org