[ucb-issues] [Issue 106830] Locking Support for WebDAV-UCP

2011-02-16 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=106830





--- Additional comments from t...@openoffice.org Wed Feb 16 11:49:42 + 
2011 ---
Ah OK, now I see, this implemented just the possibility to explicitly lock stuff
through the WebDAV UCP, but nothing yet actually uses it? So I was wrong in
marking issue 29152 as a duplicate of this.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@ucb.openoffice.org
For additional commands, e-mail: issues-h...@ucb.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[ucb-issues] [Issue 106830] Locking Support for WebDAV-UCP

2011-02-15 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=106830





--- Additional comments from t...@openoffice.org Tue Feb 15 13:55:42 + 
2011 ---
*** Issue 29152 has been marked as a duplicate of this issue. ***

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@ucb.openoffice.org
For additional commands, e-mail: issues-h...@ucb.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[ucb-issues] [Issue 29152] webDAV locking needs to be implemented

2011-02-15 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=29152


User tml changed the following:

What|Old value |New value

  Status|REOPENED  |RESOLVED

  Resolution|  |DUPLICATE





--- Additional comments from t...@openoffice.org Tue Feb 15 13:55:43 + 
2011 ---
I think this issue should now be resolved as a duplicate of i#106830, which
seems to use at least partially code/inspiration from the patch here anyway.

*** This issue has been marked as a duplicate of 106830 ***

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@ucb.openoffice.org
For additional commands, e-mail: issues-h...@ucb.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 115778] Launch of OOO 3.3rc6 fails with fatal error [context=user] caught unexpected exception

2011-01-28 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=115778


User tml changed the following:

What|Old value |New value

  CC|'brinzing,cd,cornouws,pesc|'brinzing,cd,cornouws,pesc
|etti,vitriol' |etti,tml,vitriol'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[porting-issues] [Issue 114290] sal: OSL_THIS_FUNC doesn' t work as intended

2010-09-03 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=114290
 Issue #|114290
 Summary|sal: OSL_THIS_FUNC doesn't work as intended
   Component|porting
 Version|DEV300m87
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P2
Subcomponent|code
 Assigned to|sb
 Reported by|tml





--- Additional comments from t...@openoffice.org Fri Sep  3 12:17:50 + 
2010 ---
The definition of OSL_THIS_FUNC in sal/inc/osl/diagnose.h looks like this:

#ifdef __func__
#define OSL_THIS_FUNC __func__
#elifdef __PRETTY_FUNCTION__
#define OSL_THIS_FUNC __PRETTY_FUNCTION__
#elifdef __FUNCTION__
#define OSL_THIS_FUNC __FUNCTION__
#else
#define OSL_THIS_FUNC  
#endif

At first this looks correct. But if you actually try to use OSL_THIS_FUNC you
notice that it always expands to a blank, even with gcc that certainly has
__PRETTY_FUNCTION__.

If you think harder you realize that none of __func__, __PRETTY_FUNCTION__ and
__FUNCTION__ are known to the preprocessor. How could they be... The
preprocessor does not understand C++ or C syntax. These identifiers are not
preprocessor magic macros. They are actual compiler magic constants. (Compare to
__FILE__ which *is* a preprocessor magic macro.)

Try running this source file through g++ -E or cl -E:

const char *foo(void) {
#ifdef __PRETTY_FUNCTION__
  return __PRETTY_FUNCTION__ is OK;
#endif
#ifdef __func__
  return __func__ is OK;
#endif
#ifdef __FUNCTION__
  return __FUNCTION__ is OK;
#endif
#ifdef __FILE__
  return __FILE__ is OK;
#endif
  return 0;
}

The OSL_THIS_FUNC definition probably should check for __GNUC__ and use
__PRETTY_FUNCTION__ in that case, then for __MSC_VER and use __FUNCTION__ in
that case, and otherwise a blank? Or is there a C++ standard way to get the
current function/method being compiled?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@porting.openoffice.org
For additional commands, e-mail: issues-h...@porting.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[porting-issues] [Issue 114290] sal: OSL_THIS_FUNC doesn' t work as intended

2010-09-03 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=114290


User tml changed the following:

What|Old value |New value

Priority|P2|P3





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@porting.openoffice.org
For additional commands, e-mail: issues-h...@porting.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[porting-issues] [Issue 114290] sal: OSL_THIS_FUNC doesn' t work as intended

2010-09-03 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=114290





--- Additional comments from t...@openoffice.org Fri Sep  3 12:24:15 + 
2010 ---
(Oops, I meant _MSC_VER , not __MSC_VER .)

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@porting.openoffice.org
For additional commands, e-mail: issues-h...@porting.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[gsl-issues] [Issue 89397] Maximizing on non-primary monitor forgotten

2010-09-01 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=89397





--- Additional comments from t...@openoffice.org Wed Sep  1 06:22:04 + 
2010 ---
BTW, is the comment Get screensize of the monitor whith the mouse pointer in
SetMaximizedFrameGeometry() now then wrong? If so, please fix it to avoid 
confusion.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@gsl.openoffice.org
For additional commands, e-mail: issues-h...@gsl.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[gsl-issues] [Issue 89397] Maximizing on non-primary monitor forgotten

2010-09-01 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=89397





--- Additional comments from t...@openoffice.org Wed Sep  1 08:46:31 + 
2010 ---
Hmm, when I apply that patch to ooo320-m19 (i.e. 3.2.1), I get the following
effect on Windows 7 (well, actually WS2008R2):

If I have a Writer window maximized on either monitor (and no other OOo
windows), close it, and then start Writer, it opens a window maximized on the
correct monitor. Fine.

But, if I have a Writer window maximized on either monitor (and no other OOo
windows), and then drag the window's title bar to the top of the other monitor,
so that the rubberband indicates it will be maximized on that monitor, too , and
then close it, the next time I start Writer, it will open a window maximized on
the monitor where it was maximized before I moved it to the other.

If I instead just unmaximize using the button on the title bar, move the
unmaximized window to the other monitor, maximize it, and then close, then when
I restart Writer it opens correctly on that other monitor.

(The possibility maximize a window by dragging the title bar to the top of an
(either) monitor is, as far as I know, a feature either new already in Vista
(which I never used) or in Windows 7)

Can you reproduce this? If so, I guess this needs to be reopened.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@gsl.openoffice.org
For additional commands, e-mail: issues-h...@gsl.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[gsl-issues] [Issue 89397] Maximizing on non-primary monitor forgotten

2010-09-01 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=89397





--- Additional comments from t...@openoffice.org Wed Sep  1 10:08:24 + 
2010 ---
No, I don't use the QuickStarter.

Do you have the Show windows contents while dragging setting on? I don't, for
me when I drag a window by grabbing the title bar it is just an outline that is
shown until I let go of the title bar.

I move the window from being maximized on one monitor to being maximized on the
other, with no unmaximized state being displayed by OOo inbetween. Then I let go
of it, and then close it. When I then start Writer again, it appears maximized
on the first monitor, not on the one to which I moved it.

If I turn on Show windows contents while dragging, then it works as you
describe...

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@gsl.openoffice.org
For additional commands, e-mail: issues-h...@gsl.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[gsl-issues] [Issue 89397] Maximizing on non-primary monitor forgotten

2010-08-31 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=89397





--- Additional comments from t...@openoffice.org Tue Aug 31 16:06:59 + 
2010 ---
Great, thanks! That indeed looks like an approach by somebody who actually
understands the code;)

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@gsl.openoffice.org
For additional commands, e-mail: issues-h...@gsl.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 113330] oowriter cannot open docu ments on nfs shares

2010-08-09 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=113330





--- Additional comments from t...@openoffice.org Mon Aug  9 12:35:18 + 
2010 ---
It would be useful to provide a strace of the soffice.bin process.

The summary is misleading; a more correct summary would be OOo hangs when
opening a document on a nfs filesystem.

(Without having a strace to look at, we don't know if it actually succeeds in
opening (in the OS sense) but then hangs when reading it, or what it is that
happens. Also, the share term comes from Windows and should not be misused for
NFS mounts in my opinion. Also, let's call the user visible phenomenon a hang
and not overuse the term lock. Locking in the POSIX and NFS sense might be
involved, or not.)



-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 113330] oowriter cannot open docu ments on nfs shares

2010-08-09 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=113330


User tml changed the following:

What|Old value |New value

  CC|'ccheney,go_oo_bugs,mechti|'ccheney,go_oo_bugs,mechti
|lde'  |lde,tml'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[gsl-issues] [Issue 89397] Maximizing on non-primary monitor forgotten

2010-06-30 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=89397





--- Additional comments from t...@openoffice.org Wed Jun 30 06:42:50 + 
2010 ---
Ah, further testing reveals that the patch doesn't work well enough, much (?)
more work is needed. So please don't use it as such.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@gsl.openoffice.org
For additional commands, e-mail: issues-h...@gsl.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[gsl-issues] [Issue 89397] Maximizing on non-primary monitor forgotten

2010-06-28 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=89397


User tml changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |70258)
Tentative patch






--- Additional comments from t...@openoffice.org Mon Jun 28 12:18:30 + 
2010 ---
Created an attachment (id=70258)
Tentative patch


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@gsl.openoffice.org
For additional commands, e-mail: issues-h...@gsl.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[gsl-issues] [Issue 89397] Maximizing on non-primary monitor forgotten

2010-06-28 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=89397





--- Additional comments from t...@openoffice.org Mon Jun 28 12:21:06 + 
2010 ---
OK, so the above patch actually seems to kinda work. There is just one annoyance
with it: When you have started an OOo where the inital document window was
opened maximized on a non-primary monitor, the restored state of that window
(i.e. the size and location it will have if you click the un-maximize or
restore button on its title bar) is actually the same as in its maximized
state. I.e. the client area of the window will stay the same size and location,
but the window decorations will change: The title bar will typically become a
bit higher and the sides and bottom borders will appear. (Exactly how the title
bar changes depends on the appearance settings I assume.) For this reason it is
a hack, and I am not satisfied with it.



-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@gsl.openoffice.org
For additional commands, e-mail: issues-h...@gsl.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[gsl-issues] [Issue 112680] vcl: Maximized windows ap pear on primary monitor

2010-06-25 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=112680
 Issue #|112680
 Summary|vcl: Maximized windows appear on primary monitor 
   Component|gsl
 Version|OOo 3.2.1
Platform|PC
 URL|
  OS/Version|Windows Vista
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|pl
 Reported by|tml





--- Additional comments from t...@openoffice.org Fri Jun 25 09:46:22 + 
2010 ---
If you have one Writer window open as maximized on a non-primary monitor when
you quit OOo, the next time you start Writer you will get a window open as
maximized sure, but on the primary monitor.

(Ditto for Calc, and presumably Draw, Impress and Base, too, although I didn't
check with those.)

Fixing this problems seems to be quite complex. I have to come up with some fix
quickly for a customer of ours, but it will be something of a hack I am afraid,
so I doubt you will want that upstream.

You might prefer a more general cleanup of the whole vcl frame / system window /
etc thing while at it. Lots of cruft there. One example: the parallel
definitions of WINDOWSTATE_* in vcl/syswin.hxx and SAL_FRAMESTATE_* in
vcl/salwtype.hxx. Note the comment in the latter that says Must be the same as
in syswin.hxx. So why not just delete the duplicates then and use just one set
of macros? Ditto for the INPUTCONTEXT_* in inputctx.hxx and SAL_INPUTCONTEXT_*
in salwtype.hxx. with the comment Muessen mit den Defines in inputctx.hxx
uebereinstimmen, da diese nicht konvertiert werden

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@gsl.openoffice.org
For additional commands, e-mail: issues-h...@gsl.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[gsl-issues] [Issue 112680] vcl: Maximized windows ap pear on primary monitor

2010-06-25 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=112680


User tml changed the following:

What|Old value |New value

  Status|NEW   |RESOLVED

  Resolution|  |DUPLICATE

 Summary|vcl: Maximized windows app|vcl: Maximized windows app
|ear on primary monitor|ear on primary monitor





--- Additional comments from t...@openoffice.org Fri Jun 25 09:49:23 + 
2010 ---
I found an older issue about the same thing, so marking as duplicate. Will copy
my comment there, too.

*** This issue has been marked as a duplicate of 89397 ***

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@gsl.openoffice.org
For additional commands, e-mail: issues-h...@gsl.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sc-issues] [Issue 89397] Maximizing on screen two f orgotten

2010-06-25 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=89397





--- Additional comments from t...@openoffice.org Fri Jun 25 09:49:22 + 
2010 ---
*** Issue 112680 has been marked as a duplicate of this issue. ***

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@sc.openoffice.org
For additional commands, e-mail: issues-h...@sc.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sc-issues] [Issue 89397] Maximizing on non-primary monitor forgotten

2010-06-25 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=89397


User tml changed the following:

What|Old value |New value

  CC|''|'tml'

 Assigned to|spreadsheet   |pl

   Component|Spreadsheet   |gsl

  Ever confirmed|  |1

  Status|UNCONFIRMED   |NEW

  OS/Version|All   |Windows, all

  QA contact|iss...@sc |iss...@gsl

 Summary|Maximizing on screen two f|Maximizing on non-primary 
|orgotten  |monitor forgotten

Subcomponent|ui|code

 Version|OOo 3.0 Beta  |OOo 3.2.1





--- Additional comments from t...@openoffice.org Fri Jun 25 09:54:32 + 
2010 ---
Changing Component and Subcomponent, as this is not specific to Calc, but a more
generic and lower-level issue as far as I can see. Apparently in vcl, and thus
gsl? Also, presumably this needs to be fixed differently for each windowing
system. Setting the OS for *this* bug to just Windows, though. Updating Version.

Fixing this problems seems to be quite complex. I have to come up with some
patch quickly for a customer of ours, but it will be something of a hack I am
afraid, so I doubt you will want that upstream.

You might prefer a more general cleanup of the whole vcl frame / system window /
etc thing while at it. Lots of cruft there. One example: the parallel
definitions of WINDOWSTATE_* in vcl/syswin.hxx and SAL_FRAMESTATE_* in
vcl/salwtype.hxx. Note the comment in the latter that says Must be the same as
in syswin.hxx. So why not just delete the duplicates then and use just one set
of macros? Ditto for the INPUTCONTEXT_* in inputctx.hxx and SAL_INPUTCONTEXT_*
in salwtype.hxx. with the comment Muessen mit den Defines in inputctx.hxx
uebereinstimmen, da diese nicht konvertiert werden

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@sc.openoffice.org
For additional commands, e-mail: issues-h...@sc.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[gsl-issues] [Issue 89397] Maximizing on non-primary monitor forgotten

2010-06-25 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=89397


User tml changed the following:

What|Old value |New value

  CC|''|'tml'

 Assigned to|spreadsheet   |pl

   Component|Spreadsheet   |gsl

  Ever confirmed|  |1

  Status|UNCONFIRMED   |NEW

  OS/Version|All   |Windows, all

  QA contact|iss...@sc |iss...@gsl

 Summary|Maximizing on screen two f|Maximizing on non-primary 
|orgotten  |monitor forgotten

Subcomponent|ui|code

 Version|OOo 3.0 Beta  |OOo 3.2.1





--- Additional comments from t...@openoffice.org Fri Jun 25 09:54:32 + 
2010 ---
Changing Component and Subcomponent, as this is not specific to Calc, but a more
generic and lower-level issue as far as I can see. Apparently in vcl, and thus
gsl? Also, presumably this needs to be fixed differently for each windowing
system. Setting the OS for *this* bug to just Windows, though. Updating Version.

Fixing this problems seems to be quite complex. I have to come up with some
patch quickly for a customer of ours, but it will be something of a hack I am
afraid, so I doubt you will want that upstream.

You might prefer a more general cleanup of the whole vcl frame / system window /
etc thing while at it. Lots of cruft there. One example: the parallel
definitions of WINDOWSTATE_* in vcl/syswin.hxx and SAL_FRAMESTATE_* in
vcl/salwtype.hxx. Note the comment in the latter that says Must be the same as
in syswin.hxx. So why not just delete the duplicates then and use just one set
of macros? Ditto for the INPUTCONTEXT_* in inputctx.hxx and SAL_INPUTCONTEXT_*
in salwtype.hxx. with the comment Muessen mit den Defines in inputctx.hxx
uebereinstimmen, da diese nicht konvertiert werden

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@gsl.openoffice.org
For additional commands, e-mail: issues-h...@gsl.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 80279] [Samba] Opening .doc files in Writer causes directory lock on SMB share

2010-06-18 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80279





--- Additional comments from t...@openoffice.org Fri Jun 18 10:48:51 + 
2010 ---
dobsche2, I doubt it is relevant that the SMB server is a Windows 2003 SBS one. 

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 84723] display error in ruler

2010-06-14 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84723





--- Additional comments from t...@openoffice.org Mon Jun 14 11:00:09 + 
2010 ---
Just a friendly word of advice: in general, one should not do both code fixes
and cosmetic changes like whitespace fixes or comment translation in the same
diff, as it makes it harder to see what the actual code changes are. But of
course I am not a maintainer of the code in question, so I am not complaining.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 84723] display error in ruler

2010-06-14 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84723


User tml changed the following:

What|Old value |New value

  CC|'kpalagin,lendo,mba'  |'kpalagin,lendo,mba,tml'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[graphics-issues] [Issue 94086] Have something similar to ppt's auto-fit

2010-05-19 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=94086





--- Additional comments from t...@openoffice.org Wed May 19 13:52:30 + 
2010 ---
The relation between this issue, and the patch here, and ooxml10 was a
misunderstanding. There is no relation.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@graphics.openoffice.org
For additional commands, e-mail: issues-h...@graphics.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[graphics-issues] [Issue 94086] Have something similar to ppt's auto-fit

2010-05-12 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=94086





--- Additional comments from t...@openoffice.org Wed May 12 11:05:52 + 
2010 ---
Fixed in cws ooxml10.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@graphics.openoffice.org
For additional commands, e-mail: issues-h...@graphics.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[graphics-issues] [Issue 94086] Have something similar to ppt's auto-fit

2010-05-12 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=94086


User tml changed the following:

What|Old value |New value

  CC|'cl'  |'cl,radekdoulik'





--- Additional comments from t...@openoffice.org Wed May 12 11:08:45 + 
2010 ---
cl, could you please set this to fixed then and set the target such that the
'AllowedTaskTargets' test doesn't fail for ooxml10, thanks?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@graphics.openoffice.org
For additional commands, e-mail: issues-h...@graphics.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[graphics-issues] [Issue 94086] Have something similar to ppt's auto-fit

2010-05-12 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=94086





--- Additional comments from t...@openoffice.org Wed May 12 12:57:30 + 
2010 ---
Actually it isn't any of the patches attached to this issue that is included in
the ooxml10 cws, but a much smaller patch that was claimed to be related to this
isse. (I am not the person who has written the patches in the first place, so I
didn't realize that until now.) I will remove the link to this issue from the
ooxml10 cws.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@graphics.openoffice.org
For additional commands, e-mail: issues-h...@graphics.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 111405] filter: leftover transex3 path in filter/source/config/tools/merge/pyAl tFCFGMerge

2010-05-05 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111405
 Issue #|111405
 Summary|filter: leftover transex3 path in filter/source/config
|/tools/merge/pyAltFCFGMerge
   Component|framework
 Version|DEV300m77
Platform|Unknown
 URL|
  OS/Version|Windows Vista
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|PATCH
Priority|P3
Subcomponent|scripting
 Assigned to|mba
 Reported by|tml





--- Additional comments from t...@openoffice.org Wed May  5 16:10:05 + 
2010 ---
The script filter/source/config/tools/merge/pyAltFCFGMerge refers to
transex3/source/filter/merge/FCFGMerge.cfg which nowadays apparently is in
l10ntools/source/filter/merge/FCFGMerge.cfg .

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[tools-issues] [Issue 111232] solenv: temporary progs r un by mhids.pl cause UAC dialog

2010-04-28 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111232
 Issue #|111232
 Summary|solenv: temporary progs run by mhids.pl cause UAC dial
|og
   Component|tools
 Version|OOO320m15
Platform|Unknown
 URL|
  OS/Version|Windows Vista
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|PATCH
Priority|P3
Subcomponent|solenv
 Assigned to|mh
 Reported by|tml





--- Additional comments from t...@openoffice.org Wed Apr 28 14:55:46 + 
2010 ---
When generating .hid files from .src files, the script solenv/bin/mhids.pl
creates and runs a temporary program. The name of the program is constructed
from the basename of the .src file. Some .src files have names with strings
setup, patch, update or install in them (one even has two of them...).

Running programs with names that contain these strings (and other similar?)
cause an UAC dialog on Windows Vista and newer. That should be avoided, because
the pointless dialog pauses the build.

There is already a commented-out line in mhids.pl to handle this for setup,
that needs to be uncommented, and additionally also the other magic strings 
handled.

Patch:

--- solenv/bin/mhids.pl
+++ solenv/bin/mhids.pl
@@ -151,7 +151,11 @@
 $filebase =~ s/.*[\\\/]//;
 $filebase =~ s/\..*?$//;
 $workfile = $tmpdir/${filebase}_.$$;
-#$workfile =~ s/setup/set_up/;
+# Avoid UAC prompts on Windows
+$workfile =~ s/setup/set_up/;
+$workfile =~ s/patch/pat_ch/;
+$workfile =~ s/update/up_date/;
+$workfile =~ s/install/in_stall/;
 
 # now get $workfile ready for shell usage...
 $shell_workfile = $workfile;

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@tools.openoffice.org
For additional commands, e-mail: issues-h...@tools.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 103999] OpenOffice.org doesn't in herit GTK colours properly

2010-04-26 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=103999





--- Additional comments from t...@openoffice.org Mon Apr 26 11:49:07 + 
2010 ---
Unfortunately it seems that the change to my patch that pl mentions below on
Tue Aug 18 15:11:08 + 2009 made the menu bar entries invisible in a theme
with a dark menu bar background with light menu bar entries. Reverting it back 
to 

aTextColor = getColor( pMenubarStyle-fg[GTK_STATE_NORMAL] );
aStyleSet.SetMenuBarTextColor( aTextColor );

seems to help and has no visible bad effect on other themes as far as I can see.



-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 103999] OpenOffice.org doesn't in herit GTK colours properly

2010-04-26 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=103999





--- Additional comments from t...@openoffice.org Mon Apr 26 13:48:31 + 
2010 ---
The theme in question is Moblin Netbook, available in a package called
moblin-gtk-engine in some distros. It uses a theme engine, so I guess you need
to build the theme engine from sources, just using the gtkrc file won't be
enough. Will attach the src.rpm.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 103999] OpenOffice.org doesn't in herit GTK colours properly

2010-04-26 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=103999





--- Additional comments from t...@openoffice.org Mon Apr 26 13:55:14 + 
2010 ---
Created an attachment (id=69126)
Source RPM for the theme and its engine


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 110071] Unhelpful warning in addr ess book data source wizard

2010-03-18 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=110071





--- Additional comments from t...@openoffice.org Thu Mar 18 15:48:56 + 
2010 ---
And corresponding CWS for DEV300 is tml11.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 110071] Unhelpful warning in addr ess book data source wizard

2010-03-16 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=110071





--- Additional comments from t...@openoffice.org Tue Mar 16 09:59:53 + 
2010 ---
Patch is in CWS tml10

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 110071] Unhelpful warning in addr ess book data source wizard

2010-03-12 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=110071





--- Additional comments from t...@openoffice.org Fri Mar 12 10:55:03 + 
2010 ---
And yeah, it might be a good idea to have correspondingly individually tailored
warning messages for each address book source type.

Or even not show the GroupWise radio button at all if the user doesn't have any
GroupWise account in Evolution. But if I understand the code correctly, it is a
bit hard to find out that at the stage where that wizard page is shown?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 110071] Unhelpful warning in addr ess book data source wizard

2010-03-12 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=110071
 Issue #|110071
 Summary|Unhelpful warning in address book data source wizard
   Component|framework
 Version|OOo 3.2
Platform|All
 URL|
  OS/Version|Linux
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|PATCH
Priority|P3
Subcomponent|code
 Assigned to|mh
 Reported by|tml





--- Additional comments from t...@openoffice.org Fri Mar 12 10:51:22 + 
2010 ---
When running the Address Book Data Source Wizard, if one chooses the GroupWise
address book type and click Next, if one doesn't have any GroupWise-based mail
accounts configured in Evolution, the warning message is rather cryptic: The
data source does not contain any tables.\nDo you want to set it up as an address
data source, anyway? It would be better to have a more specific error message.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 110071] Unhelpful warning in addr ess book data source wizard

2010-03-12 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=110071


User tml changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |68303)
Suggested patch






--- Additional comments from t...@openoffice.org Fri Mar 12 10:52:42 + 
2010 ---
Created an attachment (id=68303)
Suggested patch


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 105952] No edit documents if path is Directory Map

2010-02-16 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=105952





--- Additional comments from t...@openoffice.org Tue Feb 16 11:45:56 + 
2010 ---
OK, good to know that it is solved, even if I guess we have no idea what solved 
it;)

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 105952] No edit documents if path is Directory Map

2010-02-02 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=105952





--- Additional comments from t...@openoffice.org Tue Feb  2 09:11:41 + 
2010 ---
Hmm, I don't know if I understand you correctly, but I guess it is possible that
OOo thinks such a UNC pathname where the share part starts with a dot is weird
in some way and that causes it to be opened read-only.

What happens if you map the share to a drive letter? Can you then open documents
read-write from the drive letter?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 105952] No edit documents if path is Directory Map

2010-02-01 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=105952





--- Additional comments from t...@openoffice.org Mon Feb  1 15:18:15 + 
2010 ---
I have never used Novell eDirectory, and know nothing about it. Sorry. If this
works for documents on normal SMB servers, but not for eDirectory servers (if
that is the correct terminology to use?), årobably you should file a bug against
eDirectory?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 108782] window looks ugly in 256 colors with WinXP (Windows Classic theme of th is OS)

2010-01-30 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=108782





--- Additional comments from t...@openoffice.org Sat Jan 30 20:10:47 + 
2010 ---
It's 2010. 

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 108782] window looks ugly in 256 colors with WinXP (Windows Classic theme of th is OS)

2010-01-30 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=108782


User tml changed the following:

What|Old value |New value

  CC|''|'tml'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sc-issues] [Issue 103347] When drilling into a data pilot cell, calc crash

2010-01-25 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=103347





--- Additional comments from t...@openoffice.org Mon Jan 25 11:42:33 + 
2010 ---
I can reproduce the crash with Novell Edition builds 3.1-9 and 3.1.1-4 on 
Windows.

(robbk: OOO310m11 Build 9399 doesn't really say anything more than just 3.1
does. Both OOO310m11 and Build:9399 are one-to-one equivalent with the
official source release of 3.1 and just identify the upstream source version.
Yes, this is silly redundancy and misleading use of the word build. The way to
*really* identify an *actual* build of the Novell Edition is either by including
the number after the dash in the name of the installer or zip file, or
mentioning the build date indicated at the bottom of the Help:About box.)

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@sc.openoffice.org
For additional commands, e-mail: issues-h...@sc.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 7065] A wizard for Page Numbering

2010-01-22 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=7065


User tml changed the following:

What|Old value |New value

  CC|'bandido55,baumux,chris_mu|'bandido55,baumux,chris_mu
|x,clutz,discoleo,fl,januss|x,clutz,discoleo,fl,januss
|andsgaard,lijian,mantas,mb|andsgaard,lijian,mantas,mb
|a,mux2005,pmike,rabauke,th|a,mux2005,pmike,rabauke,th
|ing,tuharsky' |ing,tml,tuharsky'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 107677] openoffice 3.1.1 linux cr ashes after copy/paste of text from googlemail including the from-line

2009-12-15 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=107677





--- Additional comments from t...@openoffice.org Tue Dec 15 09:28:11 + 
2009 ---
Is the term native really the correct one here?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 107677] openoffice 3.1.1 linux cr ashes after copy/paste of text from googlemail including the from-line

2009-12-15 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=107677


User tml changed the following:

What|Old value |New value

  CC|''|'tml'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 107667] Microsoft at it again

2009-12-15 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=107667





--- Additional comments from t...@openoffice.org Tue Dec 15 09:34:49 + 
2009 ---
Doesn't OpenOffice do the same thing? Note that if you believe that ODF is a
vendor neutral standard (as standards should be, and as the official ODF
evangelism presumably says), OpenOffice is just one implementation that produces
and consumes ODF. If MS Office 2010 also handles ODF out of the box, it has the
same right to associate itself with those formats and if it forgets to check
if some other app has done it already, that is just an accident.

All implementations of ODF are equal, except some are more equal than others?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 107667] Microsoft at it again

2009-12-15 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=107667


User tml changed the following:

What|Old value |New value

  CC|''|'tml'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 107667] Microsoft at it again

2009-12-15 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=107667





--- Additional comments from t...@openoffice.org Wed Dec 16 07:23:05 + 
2009 ---
 The original problem was when I first installed the 
 beta [of MS Office 2010] OpenOffice failed to respond 

Why didn't you say so then? And please, be more specific. What do you mean with
fail to respond? Fail to respond to what? Keyboard input? Mouse input? Failed
to start when you double-clicked an ODF document (but that *is* then because of
the file type association having been taken over by MS Office, isn't it)?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 107667] Microsoft at it again

2009-12-14 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=107667





--- Additional comments from t...@openoffice.org Mon Dec 14 17:59:53 + 
2009 ---
So you are basically just telling a rumour and throwing in some conspiracy 
theories?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[ucb-issues] [Issue 29152] webDAV locking needs to be implemented

2009-12-01 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=29152





--- Additional comments from t...@openoffice.org Tue Dec  1 12:38:19 + 
2009 ---
 Resyncing will be like hell,I'm afraid. 

Indeed. I spent an evening trying but didn't get very far...

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@ucb.openoffice.org
For additional commands, e-mail: issues-h...@ucb.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[ucb-issues] [Issue 106830] Locking Support for WebDA V-UCP

2009-12-01 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=106830


User tml changed the following:

What|Old value |New value

  CC|'topquark_net'|'tml,topquark_net'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@ucb.openoffice.org
For additional commands, e-mail: issues-h...@ucb.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[ucb-issues] [Issue 29152] webDAV locking needs to be implemented

2009-10-21 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=29152





--- Additional comments from t...@openoffice.org Wed Oct 21 09:31:47 + 
2009 ---
 There is no special webdav UCP, we have the same UCP for webdav and http.

Yes, but it is in a source directory called webdav and many of its source
files have a webdav prefix, so I tend to call it the webdav UCP ;)

 if this patch has the consequence that the UCP itself decides 
 on whether locking should be applied or not, this might explain
 the observed behavior

That probably is what is going on. I *think* that when I worked on making the
patch work in the 3.0 timeframe, I wasn't even fully aware that it indeed is
used also for plain http , which was of course a bit of failure from my side.

 can you explain what your comment a disaster means? 

It means that the more time I spend staring in my editor or the debugger at the
code touched and added by the patch, the less I understand it, and the more
convinced I am that it works by accident;)

 Could you please attach the current reincarnation of kendy's 
 patch to this issue.

Sure, it's no secret, in a public git repo and all, so I'll attach it below.


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@ucb.openoffice.org
For additional commands, e-mail: issues-h...@ucb.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[ucb-issues] [Issue 29152] webDAV locking needs to be implemented

2009-10-21 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=29152


User tml changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |65504)
The current webdav
|  |-locking.diff in ooo-buil
|  |d, applies to ooo320-m2 fo
|  |r instance






--- Additional comments from t...@openoffice.org Wed Oct 21 09:39:40 + 
2009 ---
Created an attachment (id=65504)
The current webdav-locking.diff in ooo-build, applies to ooo320-m2 for 
instance


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@ucb.openoffice.org
For additional commands, e-mail: issues-h...@ucb.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[ucb-issues] [Issue 29152] webDAV locking needs to be implemented

2009-10-20 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=29152





--- Additional comments from t...@openoffice.org Tue Oct 20 14:55:14 + 
2009 ---
BTW, we have noticed that in ooo-build, where we use a current reincarnation of
kendy's patch, when one pastes into Writer the HTML contents of a web page, OOo
wants to read images in that HTML page through the webdav UCP (and even tries to
lock them then, i.e. lots of in this case IMHO pointless hideous complexity gets
involved). Is the use of the webdav UCP in a case like this as expected and does
it happen also in upstream OOo?

Should the images be read in as read-only? Or is the expectation that if one is
editing a document in Writer that has originated as a web page, then the images
included in that documented are editable and saveable back to the location from
which they are opened even?

Please note that I am just asking for some friendly hints from upstream experts
here, I am not expecting you to solve problems caused by our code patches for 
us.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@ucb.openoffice.org
For additional commands, e-mail: issues-h...@ucb.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[ucb-issues] [Issue 29152] webDAV locking needs to be implemented

2009-10-06 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=29152





--- Additional comments from t...@openoffice.org Tue Oct  6 08:41:48 + 
2009 ---
A disaster.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@ucb.openoffice.org
For additional commands, e-mail: issues-h...@ucb.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[tools-issues] [Issue 105603] VC80 runtime for prebuilt Mozilla bits for 3.2

2009-10-05 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=105603
 Issue #|105603
 Summary|VC80 runtime for prebuilt Mozilla bits for 3.2
   Component|tools
 Version|DEV300m58
Platform|PC
 URL|
  OS/Version|Windows, all
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|PATCH
Priority|P3
Subcomponent|configure
 Assigned to|rene
 Reported by|tml





--- Additional comments from t...@openoffice.org Mon Oct  5 07:50:39 + 
2009 ---
The prebuilt Mozilla Windows binaries for OOo 3.2 at
http://tools.openoffice.org/moz_prebuild/OOo3.2/index.html are built against the
VC80 runtime (msvcr80.dll), but they don't contain embedded manifests, nor do
they come with external .manifest files. Shouldn't they?

Isn't the VC80 runtime like the VC90 one (which OOo itself is built against),
that it should not be installed in the system32 folder, and not somewhere in
PATH either, but instead be present only in the side-by-side assembly 
repository?

The configure.in, scp2 and solenv infrastructure does not contain any code, as
far as I could see, to make sure that the merge module for the VC80 runtime is
present and gets included in the installer. (If that would be the correct thing
to do?)

I think the solution would be to either build the Mozilla DLLs with MSVS9, too,
so that they thus would use the same VC90 runtime as OOo itself does, or then
add the necessary code to configure.in, scp2 etc to take care of the VC80
runtime, too.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@tools.openoffice.org
For additional commands, e-mail: issues-h...@tools.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[tools-issues] [Issue 105603] VC80 runtime for prebuilt Mozilla bits for 3.2

2009-10-05 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=105603


User tml changed the following:

What|Old value |New value

  CC|''|'is'





--- Additional comments from t...@openoffice.org Mon Oct  5 07:51:27 + 
2009 ---
Probably for is?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@tools.openoffice.org
For additional commands, e-mail: issues-h...@tools.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[tools-issues] [Issue 105603] VC80 runtime for prebuilt Mozilla bits for 3.2

2009-10-05 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=105603


User tml changed the following:

What|Old value |New value

  Issue type|PATCH |DEFECT





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@tools.openoffice.org
For additional commands, e-mail: issues-h...@tools.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[tools-issues] [Issue 105603] VC80 runtime for prebuilt Mozilla bits for 3.2

2009-10-05 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=105603





--- Additional comments from t...@openoffice.org Mon Oct  5 18:52:24 + 
2009 ---
OK, I hadn't checked close enough whether there was an embedded manifests in
nspr4.dll for instance. (I had checked with mt -inputresource:'nspr4.dll;#1'
-out:foo.manifest, but apparently one should check for #2 too.) So that part
seems to be OK, good.

About the merge modules, yes, I mean that the OOo installer should bundle also
the VC80 assembly that the Mozilla prebuilt DLLs needs, like it does with the
VC90 one that OOo needs.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@tools.openoffice.org
For additional commands, e-mail: issues-h...@tools.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[tools-issues] [Issue 105503] config_office: build fail s on missing msvcp71.dll

2009-10-02 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=105503





--- Additional comments from t...@openoffice.org Fri Oct  2 12:24:47 + 
2009 ---
Is this report really for OOo 3.1.1? The prebuilt Mozilla DLLs for OOo 3.1.1 and
earlier *do* require msvcr71.dll.

Or is this for the development tree, what will become OOo 3.2 and later? The
prebuilt Mozilla DLLs for that indeed do not require msvcr71.dll, so there it is
unnecessary to refer to msvcr71 in the scp2/source/ooo/common_brand.scp file.

On the other hand, the prebuilt Mozilla DLLs for OOo 3.2 seem to be built with
MSVS8 and require msvcr80.dll, but there is nothing in dev300-m58 as far as I
can see to take care of that, to check for its presence and to bundle the merge
module for the VC80 CRT in the installer. Also, the MSVC80 runtime is supposed
to be installed only as side-by-side assemblies, and not in PATH, so as far as I
understand, the prebuilt Mozilla DLLs need to have manifests (either built-in or
separate .manifest files) in order for the msvcr80.dll to be found. 

Hopefully this will be fixed soon. Either by offering prebuilt Mozilla DLLs that
are built against the same VC90 CRT that OOo is built against, or taking care of
the manifest issue, and including the VC80 merge module in the installer.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@tools.openoffice.org
For additional commands, e-mail: issues-h...@tools.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[tools-issues] [Issue 105503] config_office: build fail s on missing msvcp71.dll

2009-10-02 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=105503


User tml changed the following:

What|Old value |New value

  CC|''|'tml'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@tools.openoffice.org
For additional commands, e-mail: issues-h...@tools.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[tools-issues] [Issue 105503] config_office: build fail s on missing msvcp71.dll

2009-10-02 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=105503





--- Additional comments from t...@openoffice.org Fri Oct  2 16:01:05 + 
2009 ---
Hmm, so is the problem you are reporting here just then that the build fails
late, when it should have failed much earlier already when running the configure
script?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@tools.openoffice.org
For additional commands, e-mail: issues-h...@tools.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[ucb-issues] [Issue 29152] webDAV locking needs to be implemented

2009-09-30 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=29152





--- Additional comments from t...@openoffice.org Wed Sep 30 09:03:40 + 
2009 ---
As these patches you mention have not been included the upstream OpenOffice.org,
this is the wrong place to report problems in them. File a bug in the Ubuntu bug
tracker. (From which then the maintainer will forward it to bugzilla.novell.com
where the ooo-build bugs are.)

P.S. It's counter-productive to use weird terms like Atlassian Confluence
expecting readers to know what that is if it matters to the case (which it
probably doesn't?). You could at least explain shortly, or just use some generic
term a website or whatever.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@ucb.openoffice.org
For additional commands, e-mail: issues-h...@ucb.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[tools-issues] [Issue 59477] m146: Build fails in postp rocess

2009-09-22 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=59477





--- Additional comments from t...@openoffice.org Tue Sep 22 16:09:28 + 
2009 ---
FYI, in the upcoming Cygwin 1.7 the trick to add a trailing dot to filenames
passed to stat() doesn't work any longer; in fact stat() then fails. This at
least with the 1.7.0s(0.212/5/3) 20090801 snapshot of cygwin1.dll. This is on
Windows Server 2008 R2 if it matters.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@tools.openoffice.org
For additional commands, e-mail: issues-h...@tools.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[tools-issues] [Issue 59477] m146: Build fails in postp rocess

2009-09-22 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=59477


User tml changed the following:

What|Old value |New value

  CC|'pjanik'  |'pjanik,tml'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@tools.openoffice.org
For additional commands, e-mail: issues-h...@tools.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 49590] mozilla plugin does not wo rk if enabled globaly

2009-09-09 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=49590


User tml changed the following:

What|Old value |New value

  CC|'ft,hjs,hr,joergwartenberg|'ft,hjs,hr,joergwartenberg
|,mba,mh,obr,rene,suka_gent|,mba,mh,obr,rene,suka_gent
|oo'   |oo,tml'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 49590] mozilla plugin does not wo rk if enabled globaly

2009-09-09 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=49590





--- Additional comments from t...@openoffice.org Wed Sep  9 11:40:36 + 
2009 ---
Could somebody who has the power change the issue type to PATCH please?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[www-issues] [Issue 104918] ssh public key for tml

2009-09-09 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=104918





--- Additional comments from t...@openoffice.org Wed Sep  9 13:51:01 + 
2009 ---
Created an attachment (id=64642)
dsa public key


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@openoffice.org
For additional commands, e-mail: issues-h...@openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[www-issues] [Issue 94002] Migrate sshkeys to SVN cod e repository

2009-09-09 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=94002





--- Additional comments from t...@openoffice.org Wed Sep  9 13:53:47 + 
2009 ---
Added issue #104918 for my key

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@openoffice.org
For additional commands, e-mail: issues-h...@openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[www-issues] [Issue 104918] ssh public key for tml

2009-09-09 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=104918
 Issue #|104918
 Summary|ssh public key for tml
   Component|www
 Version|1.0.1
Platform|PC
 URL|
  OS/Version|Windows, all
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|TASK
Priority|P3
Subcomponent|openoffice.org SVN
 Assigned to|hr
 Reported by|tml





--- Additional comments from t...@openoffice.org Wed Sep  9 13:50:23 + 
2009 ---
I also uploaded it through the EIS web interface but was told that that doesn't
necessarily work.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@openoffice.org
For additional commands, e-mail: issues-h...@openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[www-issues] [Issue 94002] Migrate sshkeys to SVN cod e repository

2009-09-09 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=94002


User tml changed the following:

What|Old value |New value

 IssuesThisDependsOn|48259,83310,85753,87971,93|48259,83310,85753,87971,93
|109,95701,95831,96157,9632|109,95701,95831,96157,9632
|9,96386,96496,96680,96693,|9,96386,96496,96680,96693,
|96849,97113,97140,97525,97|96849,97113,97140,97525,97
|576,97986,98388,98396,9848|576,97986,98388,98396,9848
|8,98531,98613,98733,98969,|8,98531,98613,98733,98969,
|99628,99758,99969,101361,1|99628,99758,99969,101361,1
|01606,104218,104287,104688|01606,104218,104287,104688
|  |,104918





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@openoffice.org
For additional commands, e-mail: issues-h...@openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[www-issues] [Issue 104918] ssh public key for tml

2009-09-09 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=104918


User tml changed the following:

What|Old value |New value

OtherIssuesDependingOnTh|  |94002
  is|  |





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@openoffice.org
For additional commands, e-mail: issues-h...@openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 103999] OpenOffice.org doesn't in herit GTK colours properly

2009-08-24 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=103999





--- Additional comments from t...@openoffice.org Mon Aug 24 11:05:40 + 
2009 ---
No, it's the Moblin theme that uses different colours for menu bar and menu
items. Thanks!

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 103999] OpenOffice.org doesn't in herit GTK colours properly

2009-08-18 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=103999





--- Additional comments from t...@openoffice.org Tue Aug 18 12:01:27 + 
2009 ---
Isn't the problem more that OOo uses the same text color both for menubar and 
menu?

Or is this a different problem? If the GTK theme uses a dark background color
and light text for menubars, and a light background and dark text for menus, the
menubar text is not visible in OOo. To fix this problem, I came up with a patch
that adds a separate MenuBarTextColor field, and setters and getters for it, to
the classes in question, and then use that for menubar text, and set it
appropriately in the gtk+ theme sniffing code in OOo.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 103999] OpenOffice.org doesn't in herit GTK colours properly

2009-08-18 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=103999


User tml changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |64239)
Tentative patch






--- Additional comments from t...@openoffice.org Tue Aug 18 14:25:18 + 
2009 ---
Created an attachment (id=64239)
Tentative patch


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 103999] OpenOffice.org doesn't in herit GTK colours properly

2009-08-18 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=103999





--- Additional comments from t...@openoffice.org Tue Aug 18 14:29:34 + 
2009 ---
The above patch is for the (separate) issue I mention. Note that the patch also
contains a heuristic hack to fix a third issue, related to menu separators (look
for Awful hack), that part you don't necessarily want. Patch is for
ooo310-m18, but afaik the affected code in dev300-m* is mostly the same?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[tools-issues] [Issue 104123] Guarantee of usable build root pathname length needed

2009-08-10 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=104123
 Issue #|104123
 Summary|Guarantee of usable build root pathname length needed
   Component|tools
 Version|current
Platform|PC
 URL|
  OS/Version|Windows, all
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|ENHANCEMENT
Priority|P3
Subcomponent|configure
 Assigned to|rene
 Reported by|tml





--- Additional comments from t...@openoffice.org Mon Aug 10 06:15:29 + 
2009 ---
Some guarantee of how long the build root pathname can be on Windows is needed.

The current situation is that there obviously is some limit, but it changes
arbitrarily from milestone to milestone. For instance in ooo310-m18, using a
build root of length 43 (c:/ooo/git/ooo-build-3-1-1/build/ooo310-m18) didn't 
work:

Error: -- error converting
c:/ooo/git/ooo-build-3-1-1/build/ooo310-m18/sdext/source/minimizer/registry/data/org/openoffice/Office/extension/../../../../../../../../wntmsci12.pro/misc/PresentationMinimizer_in/registry/res/en-US/org/openoffice/Office/extension/SunPresentationMinimizer.xcu
- File name too long

Now, you might say that c:\ooo\git\ooo-build-3-1-1\build\ooo310-m18 is
obviously too long and using something like that is just asking for trouble,
but hey, just two characters shorter worked fine for ooo310-m11.

When such a guarantee is given, the configure.in should then enforce that this
limit isn't exceeded, and it should also ideally be continuously verified that
using this length of build root pathname actually works, for instance in the
buildbots or whatever.

(Note that I am *not* asking for any guarantee that the specified limit actually
*is* the limit. I.e. it would just be the guaranteed lower limit for maximum
length.)

Once there is a guaranteed length that will work, it would be nice if this limit
could be gradually increased by doing work on reducing the redundancy in some
folder pathnames, and dropping pointless folder levels with just one subfolder.
But that is for another enhancement request then.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@tools.openoffice.org
For additional commands, e-mail: issues-h...@tools.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 103999] OpenOffice.org doesn't in herit GTK colours properly

2009-08-04 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=103999


User tml changed the following:

What|Old value |New value

  CC|''|'tml'





--- Additional comments from t...@openoffice.org Wed Aug  5 02:40:40 + 
2009 ---
Version 1.0.0?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[installation-issues] [Issue 102681] Decouple installer UI lan guages from product UI languages

2009-06-12 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=102681





--- Additional comments from t...@openoffice.org Fri Jun 12 10:12:37 + 
2009 ---
Did I say that the list of installer languages should be fixed? Of course it
would/should be configurable with some new switch to the configure script, for
instance --with-installer-languages. (And if left out, it would work as now.)


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@installation.openoffice.org
For additional commands, e-mail: issues-h...@installation.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[installation-issues] [Issue 102681] Decouple installer UI lan guages from product UI languages

2009-06-11 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=102681
 Issue #|102681
 Summary|Decouple installer UI languages from product UI langua
|ges
   Component|Installation
 Version|OOo 3.1
Platform|PC
 URL|
  OS/Version|Windows, all
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|FEATURE
Priority|P3
Subcomponent|code
 Assigned to|is
 Reported by|tml





--- Additional comments from t...@openoffice.org Thu Jun 11 17:54:01 + 
2009 ---
It would be nice to be able to create an installer that would offer its UI in
more languages than the UI languages of the OOo + possible language packs that
it contains. (This holds for both an MSI installer and an NSIS wrapper around 
it.)

This would enable vendors to offer a single core installer (containing OOo with
just the en-US UI) and separate language pack installers with no complaints from
people in locales like Russia where it is common that users don't know English
well enough. It would be useful if that core installer had its own UI in
multiple languages even if it installs an English-only OOo. The expectation
would be that people before running OOo would then install also a suitable
language pack.

I have tried to come up with a patch for this but so far I without full success.
The two orthogonal concepts, set of installer UI languages and set of product UI
languages, seem to be mixed together tightly and used interchangeably throughout
the Perl code.

Assigning to is, presumably the right person for this?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@installation.openoffice.org
For additional commands, e-mail: issues-h...@installation.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 102604] Optimising OOo's saving m echanism for quick saves.

2009-06-10 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=102604





--- Additional comments from t...@openoffice.org Wed Jun 10 09:10:03 + 
2009 ---
easily?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 99971] New file not in front wind ow

2009-06-09 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=99971





--- Additional comments from t...@openoffice.org Tue Jun  9 12:19:40 + 
2009 ---
Reading those other bug reports I understand that this is a quite complex issue.
Sigh.

I wonder how other similar apps that use a single instance handle this. Hmm, I
guess one nice example to check would be Firefox. As far as I can see, on
Windows double-clicking on a .html file actually does start a new instance of
Firefox with the command line C:\Program Files\Mozilla Firefox\firefox.exe
-requestPending -osint -url %1 and just like OOo, that instance then (in some
way) passes on the URI to open to an already running Firefox and goes away
itself right after that.

Hmm, although at least for me with tabbed browsing turned on, the URI opens in a
new tab in an existing Firefox window, not a new window, so it is not completely
equivalent. Drats.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 99971] New file not in front wind ow

2009-06-05 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=99971


User tml changed the following:

What|Old value |New value

  CC|'macport,vagula'  |'macport,tml,vagula'





--- Additional comments from t...@openoffice.org Fri Jun  5 11:34:57 + 
2009 ---
Happens also on XP SP3.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 99971] New file not in front wind ow

2009-06-05 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=99971





--- Additional comments from t...@openoffice.org Fri Jun  5 13:57:08 + 
2009 ---
Claiming this is good behaviour is absurd. The user doesn't know the technical
detail that there is actually just one OOo process running that handles all
documents that are simultaneously open. Note that in the Task Manager's
Applications pane, each document open in the same OOo process shows up 
separately.

Surely users expect that when opening a document from Explorer (or its
equivalent on other platforms), a window opens editing the document, and that
this window becomes the active one, is on top of other windows in the current
Z-order to the extent possible, has the keyboard focus, etc. Why should it be
different if another document already happens to be open in OOo?

Also note that at least on Windows the behaviour when opening a second (third,
etc) document is not consistent. Depening on how the user has happened to open
and close documents in the running OOo instance before, and how he has happened
to switch to other windows like Explorer ones, opening a new doc from Explorer
in OOo will or will not make the window for the new document active and on the 
top.

A corresponding bug report in the Novell bugzilla also brings up the case when a
subsequent document is of a type that needs the user to complete some import
dialog before the document can be loaded. (Like for instance a .csv document.)
That import dialog might be completely hidden. Unlike the case of a document
that loads and opens right away (even if not on the top and not active), the
import dialog does not get any separate taskbar entry. The title for the icon in
the Alt-Tab task switcher for one of the already open documents does change to
Text import [foo.csv], though, but for users who don't know or don't like to
use Alt-Tab but just are used to click on the taskbar, that doesn't help, the
dialog window is completely hidden.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[ucb-issues] [Issue 91151] gnome-vfs locking should g o up-stream

2009-02-25 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=91151





--- Additional comments from t...@openoffice.org Wed Feb 25 10:01:28 + 
2009 ---
Note that the patch to gnome-vfs that adds locking-on-open functionality and
implements it for the smb backend was never (and will presumably never be, as
gnome-vfs is deprecated) upstreamed to gnome-vfs.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@ucb.openoffice.org
For additional commands, e-mail: issues-h...@ucb.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[ucb-issues] [Issue 91151] gnome-vfs locking should g o up-stream

2009-02-25 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=91151


User tml changed the following:

What|Old value |New value

  CC|'mhu' |'mhu,tml'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@ucb.openoffice.org
For additional commands, e-mail: issues-h...@ucb.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[ucb-issues] [Issue 84137] Remove gnome-vfs from star tup procedure

2009-02-25 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84137


User tml changed the following:

What|Old value |New value

  CC|'as,aziem,kr,kso,mba,mhu,m|'as,aziem,kr,kso,mba,mhu,m
|meeks,rene,sb'|meeks,rene,sb,tml'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@ucb.openoffice.org
For additional commands, e-mail: issues-h...@ucb.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[ucb-issues] [Issue 29152] webDAV locking needs to be implemented

2009-02-25 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=29152


User tml changed the following:

What|Old value |New value

  CC|'kendy,kso,mav,mba,pagalme|'kendy,kso,mav,mba,pagalme
|s,rvojta,sb,ssa,tbe,tkr'  |s,rvojta,sb,ssa,tbe,tkr,tm
|  |l'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@ucb.openoffice.org
For additional commands, e-mail: issues-h...@ucb.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[graphics-issues] [Issue 97199] Duplicate 'w' shortcut in Impress's Format:Text dialog

2008-12-12 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=97199
 Issue #|97199
 Summary|Duplicate 'w' shortcut in Impress's Format:Text dialog
   Component|Drawing
 Version|DEV300m36
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|PATCH
Priority|P3
Subcomponent|ui
 Assigned to|ka
 Reported by|tml





--- Additional comments from t...@openoffice.org Fri Dec 12 12:21:04 + 
2008 ---
The 'w' shortcut is duplicated in svx/source/dialog/textattr.src: ~Word wrap
text in shape and Full ~width. It would be nice if shortcuts were unique. For
instance the second one could be F~ull width instead.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@graphics.openoffice.org
For additional commands, e-mail: issues-h...@graphics.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[graphics-issues] [Issue 97199] Duplicate 'w' shortcut in Impress's Format:Text dialog

2008-12-12 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=97199


User tml changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |58769)
Suggested patch






--- Additional comments from t...@openoffice.org Fri Dec 12 12:22:38 + 
2008 ---
Created an attachment (id=58769)
Suggested patch


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@graphics.openoffice.org
For additional commands, e-mail: issues-h...@graphics.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sc-issues] [Issue 96876] count mistranslated into Finnish as a verb

2008-12-04 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=96876
 Issue #|96876
 Summary|count mistranslated into Finnish as a verb
   Component|Spreadsheet
 Version|DEV300m36
Platform|Unknown
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|ui
 Assigned to|spreadsheet
 Reported by|tml





--- Additional comments from [EMAIL PROTECTED] Thu Dec  4 09:02:27 + 
2008 ---
In svx/source/stbctrls/localize.sdf and sc/source/ui/src/localize.sdf, the
English word count which in this context is a *noun* is mistranslated as if it
was a verb. (Is there no way to indicate for translators the meaning of
ambiguous short strings like count?)

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[dba-issues] [Issue 92384] New document language sett ing ignored for the HSQLDB in a newly created .odb

2008-10-30 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=92384





--- Additional comments from [EMAIL PROTECTED] Thu Oct 30 10:18:36 + 
2008 ---
unzip the .odb file and look in the database/script file in the unpacked
contents. It contains a line like:

SET DATABASE COLLATION Swedish

Unfortunately I can't recall any more what the exact customer complaint was, but
it was a real customer, from Quebec I think, that complained about this. I guess
it is related to that the HSQLDB code supports only a very limited set of
collations.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[dba-issues] [Issue 92384] New document language sett ing ignored for the HSQLDB in a newly created .odb

2008-10-30 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=92384





--- Additional comments from [EMAIL PROTECTED] Thu Oct 30 18:35:16 + 
2008 ---
Here is what I wrote in the corresponding Novell bug:

The problem here is that the HSQLDB database format seems to support only a
fixed list of collation languages. If you look into the attached .odb file
(just unzip it), in the file database/script you find the line:

SET DATABASE COLLATION French

The documentation at http://hsqldb.sourceforge.net/web/hsqlDocsFrame.html just
says of this statement: Each database can have its own collation. Sets the
collation from the set of collations in the source for org.hsqldb.Collation.

so apparently the HSQLDB source code is also the format specification for this
part of an HSQLDB database. The source file in question has a table of
collation names and their mapping to Java locale names (ISO639-ISO3166 code
pairs). For French, it only contains:

nameToJavaName.put(French, fr-FR);

If we would modify this to include also a mapping between, say, French
(Canada) and fr-CA, this would mean that such .odb databases produced by our
version of OOo would presumably be unreadable by vanilla OOo versions, as the
HSQLDB code seems to throw an exception if an unrecognized collation locale is
read from the script file of the database. (I haven't tried, this is just from
reading the code.)

Btw, the collation name table in HSQLDB contains such crack as
Danish_Norwegian for nb-NO... Calling the Bokmål variant of Norwegian
Danish_Norwegian is quite insulting to at least some of its users, I think.
As you might know, the relation between the nb_NO (Bokmål) and nn_NO (Nynorsk)
communities can be quite hot... (No, despite my first name I am not
Norwegian myself.)

I really don't know what to do at this point. Should we add support for fr-CA
to our build of OOo, and then risk that databases produced by our users in
Québec aren't usable by users of vanilla OOo? (I will have to test whether
that actually happens.) Will it be enough to add fr-CA to the table, does
Java already support proper fr-CA collation? Will have to test that, too.

Btw, OOo's setting Tools:Options:Language Settings:Languages:Default languages
for documents:Western does not affect the SET DATABASE COLLATION statement
stored in a newly created .odb file's HSQLDB database. It uses the user's
locale! (On Windows, from the Control Panel's Regional and Language Options
applet.)


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 94782] What you see in Word is no t what you get in OO Writer

2008-10-09 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=94782





--- Additional comments from [EMAIL PROTECTED] Thu Oct  9 06:45:27 + 
2008 ---
You are expecting too much. As far as I know 100% exact import or Word files
into Writer is not promised and in fact technically impossible to achieve, and
actually meaningless as we after all are talking about two different
applications with very different internal data structures. It's especially hard
to get an exactly identical (automatic) division of a document into pages. I bet
that even with Word itself you will get slightly different pagination if you
have set the page sizes too tight and/or have different printers, for 
instance.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 94782] What you see in Word is no t what you get in OO Writer

2008-10-09 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=94782


User tml changed the following:

What|Old value |New value

  CC|''|'tml'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[tools-issues] [Issue 93510] Please leave space for a p er-vendor build number in the version number s in MSI

2008-09-05 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=93510
 Issue #|93510
 Summary|Please leave space for a per-vendor build number in 
|the version numbers in MSI
   Component|tools
 Version|OOO300m4
Platform|PC
 URL|
  OS/Version|Windows, all
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|TASK
Priority|P3
Subcomponent|solenv
 Assigned to|is
 Reported by|tml





--- Additional comments from [EMAIL PROTECTED] Fri Sep  5 10:44:57 + 
2008 ---
As discussed in mail, it would be nice if there was space for a vendor-specific
build number or patch level, whatever one wants to call it, in the version
numbers as entered into the Version column of the File table in the MSI
installers. Currently values like 9.0.0.9344 are stored there. 9.0.0 is the
LIBRARYVERSION from openoffice.lst, and 9344 the buildid, a.k.a. BUILD
from minor.mk which despite itse name is actually not a build identifier but
an identifer for a certain upstream source release. At least, that's my
understanding.

(For upstream, which presumably distributes just one build per source release,
it can also act as a build id. But downstream vendors might have to release
several builds from one source release, i.e. not just the FCS, but also upgrades
that contain backported bug fixes, security fixes, customer-specific
experimental feature patches, etc.)

I'll leave the details how to implement this up to you, and whether to at the
same time decide to use version numbers based on PACKAGEVERSION instead of
LIBRARYVERSION for instance.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[installation-issues] [Issue 92708] The MSI validator gives lo ts of warnings for the OOo installer

2008-08-14 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=92708





--- Additional comments from [EMAIL PROTECTED] Thu Aug 14 06:33:42 + 
2008 ---
 three different scenarios:

 1. The file is not installed, because it was not selected for installation.

That is not the case here, the installation I am trying to patch does have Calc
installed (for instance, in the sc680mi.dll file's case). But good to know
anyway that in this case at least the no eligible message is output.

 The files are not installed in the office directory. This is 
 relevant for the cli-files, meaning cli_cppuhelper.dll, 

I probably should add all these files to the UpgradedFilesToIgnore table anyway,
as they should never change anyway.

 In the log file you find the text modified xyz with full-file update.
 This includes version1.ini, version2.ini and 8 files segment_3*.

Actually I don't see any full-file update messages at all, and not those files
either, are they 3.0 specific?


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[installation-issues] [Issue 92708] The MSI validator gives lo ts of warnings for the OOo installer

2008-08-12 Thread tml
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=92708
 Issue #|92708
 Summary|The MSI validator gives lots of warnings for the OOo i
|nstaller
   Component|Installation
 Version|OOo 2.4.1
Platform|PC
 URL|
  OS/Version|Windows, all
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|of
 Reported by|tml





--- Additional comments from [EMAIL PROTECTED] Tue Aug 12 13:30:00 + 
2008 ---
If one runs the MSI validation suite (Tools:Validate in Orca) on the OOo MSI
installer, it reports lots of errors and warnings. I don't know how serious
those errors and warnings actually are, after all the installer as such works
very well. 

But I suspect that problems I have when using MSI patching could be caused by
some of the problems that the validation suite reports. I am not sure, though...
Windows Installer is an over-engineered disaster, its documentation vague and
misleading, and msiexec's log files very unhelpful.

I will attach the validation report produced for the MSI installer included in
the official OOo_2.4.1_Win32Intel_install_wJRE_en-US.exe.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



  1   2   3   4   5   >