Re: building problems with recent changes -- /sal/qa/osl module

2015-10-12 Thread Don Lewis
On 10 Oct, Damjan Jovanovic wrote: > The FreeBSD buildbot and 1 Linux buildbot have also been getting this, yet > 2 of us now couldn't reproduce it. > > Please provide: > * SVN revision > * full configure options > * the compile log from earlier on (containing the command run that produces > that

[MWiki] Account creation

2015-10-12 Thread Brenda Creegan
I'd like a personal account, with username BCreegan

Re: [MWiki] Account creation

2015-10-12 Thread Keith N. McKenna
Brenda Creegan wrote: > I'd like a personal account, with username BCreegan > The account BCreegan has been created and a temporary password has been sent to your e-mail. The password should be changed upon first login. Regards Keith signature.asc Description: OpenPGP digital signature

Re: building problems with recent changes -- /sal/qa/osl module

2015-10-12 Thread Kay Schenk
On 10/11/2015 04:28 PM, Don Lewis wrote: > On 10 Oct, Damjan Jovanovic wrote: >> The FreeBSD buildbot and 1 Linux buildbot have also been getting this, yet >> 2 of us now couldn't reproduce it. >> >> Please provide: >> * SVN revision >> * full configure options >> * the compile log from earlier

Download problem

2015-10-12 Thread Thelma Osburg
I have used open office for years and love it. I have been attempting to download to a new Windows 8.1 computer and after navigating the unsafe click bait of Sourceforge not clicking anything, the download starts as expected. Then it always stops at around 20 to 50 Mb and just sits there.

Re: [API] Priority Problem with AND and OR

2015-10-12 Thread Andrew Pitonyak
I was tempted to open a bug against this some years back, but, this is the type of change that I can't help but wonder if it is more dangerous to affect existing code, or to use rules by new users who are unaware that ^ does not follow expected rules, and neither does AND and OR. Same is

Re: Download problem

2015-10-12 Thread Roberto Galoppini
Hi Thelma, Where are you based? I'm not aware of any issue, but it could be a problem with the mirror serving your downloads.. Let me know, thanks. Roberto 2015-10-12 19:51 GMT+02:00 Thelma Osburg : > I have used open office for years and love it. I have been

Re: Download problem

2015-10-12 Thread Rory O'Farrell
On Mon, 12 Oct 2015 22:14:13 +0200 Roberto Galoppini wrote: > Hi Thelma, > > Where are you based? I'm not aware of any issue, but it could be a problem > with the mirror serving your downloads.. > > Let me know, thanks. > > Roberto A solution may be to use a

[API] Priority Problem with AND and OR

2015-10-12 Thread Mathias Röllig
Hello! I stumbled into a priority problem with the boolean operators AND and OR. I cannot find any documentation for this. First mathematical examples. With MsgBox( 3 * 2 ^ 2 ) you will see, that ^ has a higher priority than *. (2 ^ 2) = 4 4 * 3 = 12 With MsgBox( (3 * 2) ^ 2 ) you will get

Re: [API] Priority Problem with AND and OR

2015-10-12 Thread Andrew Pitonyak
Yes, I note this travesty in OOME. There is also a difference in the way that it handles exponentiation. Standard rules indicate that 2^3^4 is evaluated as 2^(3^4) rather than (2^3)^4, wihch is what OOo does. On 12.10.2015 15:40, Mathias Röllig wrote: Hello! I stumbled into a priority

Re: [API] Priority Problem with AND and OR

2015-10-12 Thread Rory O'Farrell
On Mon, 12 Oct 2015 15:45:16 -0400 Andrew Pitonyak wrote: > Yes, I note this travesty in OOME. There is also a difference in the > way that it handles exponentiation. Standard rules indicate that 2^3^4 > is evaluated as 2^(3^4) rather than (2^3)^4, wihch is what OOo does.

Re: Possible Bug or issue

2015-10-12 Thread Marcus
Am 10/12/2015 11:23 PM, schrieb JZA: So a user working with CSV face the dificulty that it seems that AOO by default manage dates with a 2 digit year format. This causes havok on his data. Having a regular field with 2/20/2015 changed to 2/20/15. The issue is that by default (might be the

Re: building problems with recent changes -- /sal/qa/osl module

2015-10-12 Thread Kay Schenk
[top posting -- update] Damjan's r1708166 seems to have taken care of this, so YAY! back to testing patches. On 10/12/2015 09:20 AM, Kay Schenk wrote: > > > On 10/11/2015 04:28 PM, Don Lewis wrote: >> On 10 Oct, Damjan Jovanovic wrote: >>> The FreeBSD buildbot and 1 Linux buildbot have also

Possible Bug or issue

2015-10-12 Thread JZA
So a user working with CSV face the dificulty that it seems that AOO by default manage dates with a 2 digit year format. This causes havok on his data. Having a regular field with 2/20/2015 changed to 2/20/15. The issue is that by default (might be the locale) AOO assigns a 2-digit year format,

Re: [API] Priority Problem with AND and OR

2015-10-12 Thread Andrew Douglas Pitonyak
Guenter, although you are correct with respect to Basic as implemented in AOO (and you stated it very well... I enjoyed your post), I am not aware of any other computer language where this is true. For example: C and C++ http://en.cppreference.com/w/c/language/operator_precedence Java is the