Re: SourceForge and commercial ads - continued
2014-11-21 7:55 GMT+01:00 Fernando Cassia : > On Thu, Nov 20, 2014 at 5:04 AM, Roberto Galoppini < > roberto.galopp...@gmail.com> wrote: > > > Actually none of our direct advertisers ask us to deliver similar ads, > nor > > we would allow them to do that. > > Unfortunately advertising networks like Google allow that to happen, and > > that's where the problem comes from. > > > > Thanks for the info. At least we know who to blame. > I wrote the above under the assumption that Sourceforge ran its own online > adverts network. > I was just providing some context, we are responsible for what is displayed on our site, no matter how ads get there. I'm happy to tell you that our AdOps have been doing a great job over the last days, identifying new approaches that so far are working fine. We're reviewing daily what is displayed on openoffice pages and we'll keep a close eye on this matter. Thanks, Roberto > > FC >
Re: Bugzilla: idiot comment
Am 11/21/2014 05:57 PM, schrieb FR web forum: Hello dev, https://issues.apache.org/ooo/show_bug.cgi?id=125887#c1 Somebody can answer? I think Regina has given a good comment in the meantime. Otherwise if your question is focusing more on the first statement, you can always comment yourself. In this case in a way like "this has nothing to do with freeware of open source or closed software. No software is perfect and can react in every special situation in a way the user is expecting". My 2 ct Marcus - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org
Bugzilla: idiot comment
Hello dev, https://issues.apache.org/ooo/show_bug.cgi?id=125887#c1 Somebody can answer? - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org
Re: I would like to give the Mac Buildbot a try
On 21/11/2014 Raphael Bircher wrote: The Buildbot is setted up, and ready. But we have to find consensus who cares about the buildbot. And finaly we have to fill a issue to infra to hand over the rights to this person(s). It's not so easy. The machine is setup, but Andrew is still working on it, since we have the basic operating system ready but the buildbot software still has to be (1) installed and (2) connected to the master so that builds appear on http://ci.apache.org/projects/openoffice/index.html Hopefully I'll send the full minutes of the meeting with Infra later today, so you can get an overview of everything and see where help is needed. Regards, Andrea. - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org
Re: I would like to give the Mac Buildbot a try
Hi Jürgen Am 21.11.14 11:23, schrieb Jürgen Schmidt: On 21/11/14 11:16, Raphael Bircher wrote: Hi at all I would like to give the Mac Buildbot a try. Therefor I ask here for what do you mean? We are waiting on some feedback from Andrew Rist who planned to work on the setup of our build env. I offered my help and be in standby mode ... The Buildbot is setted up, and ready. But we have to find consensus who cares about the buildbot. And finaly we have to fill a issue to infra to hand over the rights to this person(s). I'm fine if other people do the job. I just offer my help if it's needed. Raphael - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org
Re: I would like to give the Mac Buildbot a try
On 21/11/14 11:16, Raphael Bircher wrote: > Hi at all > > I would like to give the Mac Buildbot a try. Therefor I ask here for what do you mean? We are waiting on some feedback from Andrew Rist who planned to work on the setup of our build env. I offered my help and be in standby mode ... Once the build bot is configured and working the bot should or will deliver daily builds as the other bots as well. Juergen > permission. > > Regards Raphael > > - > 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
I would like to give the Mac Buildbot a try
Hi at all I would like to give the Mac Buildbot a try. Therefor I ask here for permission. Regards Raphael - To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org For additional commands, e-mail: dev-h...@openoffice.apache.org
fix the bug for inverted arrow key behaver in left to right vertical text
Hi all The behavior of arrow key (left and right) is incorrect when typing left to right vertical text (Mongolian). if press left key the caret will move to right line, and if press right key the caret will move to left line. I know that the source code controlling behavior of arrow keys is in file sw\source\core\uibase\docvw\edtwin.cxx and the function is void SwEditWin::KeyInput(const KeyEvent &rKEvt) For fix this issue I think the code should be change to below if( ( bVertText && ( !bTblCrsr || bVertTable ) ) || ( bTblCrsr && bVertTable ) ) { *bool bIsTblr;//how to detect **text direction**??* // Attempt to integrate cursor travelling for mongolian layout does not work. // Thus, back to previous mapping of cursor keys to direction keys. if( KEY_UP == nKey ) nKey = KEY_LEFT; else if( KEY_DOWN == nKey ) nKey = KEY_RIGHT; //by aron else if( KEY_LEFT == nKey ) nKey = *bIsTblr*? KEY_UP:KEY_DOWN; else if( KEY_RIGHT == nKey ) nKey = *bIsTblr *? KEY_DOWN:KEY_UP; } But I don't know how to detect the text direction at here. Best regards -- Aron