[porting-issues] [Issue 64421] Mac OS X: create temp fil es in /tmp instead of /var/tmp

2006-04-30 Thread jjmckenzie
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64421


User jjmckenzie changed the following:

  What|Old value |New value

Status|RESOLVED  |VERIFIED





--- Additional comments from [EMAIL PROTECTED] Sat Apr 29 23:25:11 -0700 
2006 ---
Temporary files are now created in /tmp.  Cleaned out /var/tmp to confirm.

James

-
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]



[porting-issues] [Issue 64399] Mac OS X: remove macxp_te mpnam

2006-04-30 Thread jjmckenzie
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64399


User jjmckenzie changed the following:

  What|Old value |New value

Status|RESOLVED  |VERIFIED





--- Additional comments from [EMAIL PROTECTED] Sat Apr 29 23:25:57 -0700 
2006 ---
Verified.

James M.

-
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]



[porting-issues] [Issue 64769] porting : MacOSX : build failed at sal/os/unx

2006-04-30 Thread jjmckenzie
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64769





--- Additional comments from [EMAIL PROTECTED] Sat Apr 29 23:29:18 -0700 
2006 ---
Never encountered this error.  Current build using milestone 165 with CWS pj54
does build without this error.

James M.


-
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]



[porting-issues] [Issue 64769] porting : MacOSX : build failed at sal/os/unx

2006-04-30 Thread jjmckenzie
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64769





--- Additional comments from [EMAIL PROTECTED] Sat Apr 29 23:32:15 -0700 
2006 ---
Oscar:

Can you verify that Pavel's patch as in pj54 allows your build to finish?  I
cannot verify as I am on Tiger.

James M.


-
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 64915] New - OooBasic Null charac ter at end of the string of a cursor

2006-04-30 Thread douxenfant
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64915
  Issue #:|64915
  Summary:|OooBasic Null character at end of the string of a
  |cursor
Component:|Word processor
  Version:|OOo 2.0
 Platform:|PC
  URL:|
   OS/Version:|All
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P3
 Subcomponent:|code
  Assigned to:|mru
  Reported by:|douxenfant





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 00:43:57 -0700 
2006 ---
In a macro of OoooBasic, a cursor has size 32767 (i.e. covers 32767 characters, 
counting a paragraph end as one character). The last character of the string of 
this cursor is said to have Asc 0.

The macro is short, so I take leave to copy it here :

Sub NullCharacterAtEndOfCursor()

  Dim ourDocument As Object
  Dim ourViewCursor As Object
  Dim i As Long
  Dim specialChar As Integer
  Dim ourText As Object
  Dim ourCursor As Object
  Dim ourString As String
  Dim noFileProp()
  
  ourDocument = StarDesktop.LoadComponentFromURL
(private:factory/swriter, _blank, 0, noFileProp)
  ourViewCursor = ThisComponent.CurrentController.getViewCursor()
  ourText = ourViewCursor.getText()
  specialChar = com.sun.star.text.ControlCharacter.PARAGRAPH_BREAK
  For i = 1 To 2048
ourText.insertString(ourViewCursor, abcdefghijklmno, False)
ourText.insertControlCharacter(ourViewCursor, specialChar, False)
  Next 

' The document has thus 2048 X 16 = 32768 characters,
' if we count a paragraph end as one character.

  ourCursor = ourText.createTextCursor() ' Is at the start of the text.
  ourCursor.goRight(32767, True)
  
' With the following command, we verify that ourCursor ends just before the 
last character
' (paragraph end) which was inserted by the macro.
  ourViewCursor.goToRange(ourCursor.getEnd(), False)
' OK.  
  
' Even one cursor position can correspond to 
' two string characters (Chr(13)  Chr(10)), 32767 positions give at most
' 65534 string characters, thus ourCursor.getString() puts no problem.

  ourString = ourCursor.getString()
  
''
  MsgBox The last character of ourString, given by Right(..., 1) has Asc :   
Asc(Right(ourString, 1))
' The preceding MsgBox says that the Asc is 0. ???

  MsgBox The length (Len) of ourString is   Len(ourString)
' The preceding MsgBox says that the length of ourString is 34815.
' Since there are 32767 screen characters and therein 2047 paragraph ends,
' one would expect 32767 + 2047 = 34814 characters in the string.

End Sub

-
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 64861] rename LinuxAMD to some thing less confusing (i.e. include 64bit or so mething)

2006-04-30 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64861





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 01:09:01 -0700 
2006 ---
LinuxX86_64 is good for me.

I'd be fine with LinuxIntel becoming LinuxX86 but it would be a surprising
change that should be mentioned on dev@ to avoid getting a pile of my build
scripts broke sort of messages.

C.

-
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 64915] OooBasic Null character a t end of the string of a cursor

2006-04-30 Thread bmarcelly
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64915





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 01:37:02 -0700 
2006 ---
The bug appears when retrieving more than 10327 characters with an API 
.getString() 
method. Same behaviour appears in version 1.1.4. (tested with Win XP SP2).
Next attachment demonstrates this 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: [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 64915] OooBasic Null character a t end of the string of a cursor

2006-04-30 Thread bmarcelly
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64915


User bmarcelly changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=36159) Demo of long
  |  |string bug





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 01:37:54 -0700 
2006 ---
Created an attachment (id=36159)
Demo of long string bug


-
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]



[gsl-issues] [Issue 60774] export as pdf Bitstream Vera Sans Mono staircase effect

2006-04-30 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=60774


User cmc changed the following:

  What|Old value |New value

Status|NEW   |RESOLVED

Resolution|  |INVALID





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 02:01:42 -0700 
2006 ---
well, that's weird. I no longer see it. Perhaps it was connected to issue 64743
in some way.

-
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]



[gsl-issues] [Issue 60774] export as pdf Bitstream Vera Sans Mono staircase effect

2006-04-30 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=60774


User cmc changed the following:

  What|Old value |New value

Status|RESOLVED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 02:01:58 -0700 
2006 ---
closing

-
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]



[util-issues] [Issue 64903] testtools regcomp signal 11

2006-04-30 Thread it46
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64903





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 02:55:50 -0700 
2006 ---
Registering python components, i run into similar problems. I set the PYTHONPATH
to point to pythonloader but regcomp crashes? Any hints how to debug this?

[EMAIL PROTECTED]:/ooo/o/o/instsetoo_native/util/OpenOffice/install/log #
/ooo/ooo-build-2.0.2.7/build/OOO_2_0_2/solver/680/unxsogi.pro/bin/regcomp
-register -br
/ooo/ooo-build-2.0.2.7/build/OOO_2_0_2/solver/680/unxsogi.pro/bin/types.rdb -br
/ooo/ooo-build-2.0.2.7/build/OOO_2_0_2/solver/680/unxsogi.pro/bin/pyuno_services.rdb
-r
/ooo/ooo-build-2.0.2.7/build/OOO_2_0_2/instsetoo_native/util/OpenOffice//services.rdb/sw-TZ_inprogress_3/services.rdb
-c vnd.openoffice.pymodule:pythonscript -l com.sun.star.loader.Python
Segmentation Fault (core dumped)


-
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]



[util-issues] [Issue 64903] testtools regcomp signal 11

2006-04-30 Thread it46
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64903


User it46 changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=36160) gdb of regcomp
  |  |for python





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 03:04:09 -0700 
2006 ---
Created an attachment (id=36160)
gdb of regcomp for python


-
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 64014] proposal to use external style sheets for Writer documents

2006-04-30 Thread vinikia
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64014





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 03:16:07 -0700 
2006 ---
Nothing. I applied the macro mentioned in the text to one of my documents, and 
now the question is being asked when I open this document to re-apply the 
styles in the template.

I can live with that. A pitty that such a bug has found it's way into version 
2.0.2. Is there a way to see if it is already fixed and when version 2.0.3 (or 
any next version) will come out ?

Also: is there a way to couple an existing document to a template ?

This issue may be closed.

-
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]



[framework-issues] [Issue 64277] OOo Explorer extension lo cks OOo documents

2006-04-30 Thread andreschnabel
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64277


User andreschnabel changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=36161) Sysinternal
  |  |filemon Access log with
  |  |shell extension installed





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 03:34:44 -0700 
2006 ---
Created an attachment (id=36161)
Sysinternal filemon Access log with shell extension installed


-
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]



[framework-issues] [Issue 64277] OOo Explorer extension lo cks OOo documents

2006-04-30 Thread andreschnabel
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64277


User andreschnabel changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=36162) Sysinternal
  |  |filemon Access log without
  |  |shell extension installed





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 03:35:40 -0700 
2006 ---
Created an attachment (id=36162)
Sysinternal filemon Access log without shell extension installed


-
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]



[framework-issues] [Issue 64277] OOo Explorer extension lo cks OOo documents

2006-04-30 Thread andreschnabel
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64277


User andreschnabel changed the following:

  What|Old value |New value

  Priority|P3|P4





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 03:45:11 -0700 
2006 ---
I attached two logs for file access while doing the following.

Preconditions:
- a .ott file has been selected in the windows explorer
- file properties has been opened
- enhaced attributes have been changed, so that the file should be encrypted

the logfiles show access to this file from the time I pressed apply to the
point where the error message occures or the file has been successfully 
encrypted.
Unfortunately this does not show what process locks the file at the time the
error occures.


I tried to identify the process with UNLOCKER
(http://ccollomb.free.fr/unlocker/) . Unlocker identifies explorer.exe as
locking process. After closing the file handle, the file can be encrypted.


-
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]



[porting-issues] [Issue 64906] OpenOffice.org does not s tart

2006-04-30 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64906


User pjanik changed the following:

  What|Old value |New value

   Assigned to|ericb |sb

Issue type|DEFECT|PATCH

  Priority|P2|P1

  Target milestone|---   |OOo 2.0.3





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 03:50:54 -0700 
2006 ---
sb: the real problem is that

sysconf(_SC_GETPW_R_SIZE_MAX) returns -1 on Mac OS X. So i propose this patch. 
Is it OK for you?

diff -urN ooo_SRC680_m165_src.orig/sal/osl/unx/security.c 
ooo_SRC680_m165_src/sal/osl/unx/
security.c
--- ooo_SRC680_m165_src.orig/sal/osl/unx/security.c 2006-04-30 
11:29:13.0 +0200
+++ ooo_SRC680_m165_src/sal/osl/unx/security.c  2006-04-30 11:32:07.0 
+0200
@@ -68,7 +68,11 @@
 static sal_Bool SAL_CALL osl_psz_getConfigDir(oslSecurity Security, sal_Char* 
pszDirectory, sal_uInt32 
nMax);
 
 static oslSecurityImpl * newSecurityImpl(size_t * bufSize) {
+#ifdef MACOSX
+size_t n = 1024;
+#else
 size_t n = (size_t) sysconf(_SC_GETPW_R_SIZE_MAX);
+#endif
 if (n = SIZE_MAX - offsetof(oslSecurityImpl, m_buffer)) {
 *bufSize = n;
 n += offsetof(oslSecurityImpl, m_buffer);

or maybe even better is to be pro-active and test returned value and set it to 
some pre-defined value 
(like 1024) if it is non-sense (like -1) on all platforms?

Raising prio to P1, because this means OOo is not usable on Mac OS X (because 
of bug in Mac OS X, but 
anyway ;-).


-
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]



[porting-issues] [Issue 64769] porting : MacOSX : build failed at sal/os/unx

2006-04-30 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64769





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 04:05:45 -0700 
2006 ---
see also #i64906# for more details about 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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


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



[graphics-issues] [Issue 64916] New - crash when hitting e scape key in object context menu

2006-04-30 Thread dsaxby
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64916
  Issue #:|64916
  Summary:|crash when hitting escape key in object context menu
Component:|Drawing
  Version:|OOo 2.0.2
 Platform:|All
  URL:|
   OS/Version:|Linux
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P3
 Subcomponent:|editing
  Assigned to:|wg
  Reported by:|dsaxby





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 04:32:12 -0700 
2006 ---
Steps to reproduce:
1) Open new drawing document.
2) Select rectangle (note, I'm not sure it matters what shape, but this is how
it happened for me).
3) Draw rectangle.
4) Hit right mouse button to bring up context menu.
5) Move mouse pointer down to Convert sub menu.
6) With sub menu displayed, hit Escape key.
7) OpenOffice crashes immediately and displays stack trace window.

Possibly relevant extra information:
a) I am using KDE 3.5 desktop.
b) Machine is a Dell Inspiron 8600 laptop.
c) Display driver (as reported in crash trace) is ATI proprietary driver and I
have dual head enabled (have not tested with xorg free driver).
d) Have FC5 running, with all updates current up to and including 29-apr-2006

Other comments:
- I've left this as a P3 because you can avoid this crash by not hitting escape.
If anyone feels P2 is necessary, then be my guest.

I have copied the contents of afore mentioned stack trace window below:
Video Driver is probably: fglrx fglrx
Desktop is: not GNOME
libgcj version is: libgcj-4.1.0-3
kernel is: Linux 2.6.16-1.2096_FC5 #1 Wed Apr 19 05:14:36 EDT 2006 i686 i686 
i386
OpenOffice.org core rpm version is: openoffice.org-core-2.0.2-5.7.2
accessibility is: false
...start sestatus details ...
SELinux status: disabled
...end sestatus details ...
0x64e4680: /usr/lib/openoffice.org2.0/program/libuno_sal.so.3 + 0x1e680
0x64e4ec0: /usr/lib/openoffice.org2.0/program/libuno_sal.so.3 + 0x1eec0
0x2eb420:  + 0x420 (__kernel_sigreturn + 0x0)
0x6a27a07: /usr/lib/openoffice.org2.0/program/libvcl680li.so + 0x18fa07
0x6a67b54: /usr/lib/openoffice.org2.0/program/libvcl680li.so + 0x1cfb54
0x6a695b3: /usr/lib/openoffice.org2.0/program/libvcl680li.so + 0x1d15b3
0xe2a1b0: /usr/lib/openoffice.org2.0/program/libvclplug_gtk680li.so + 0x301b0
0xe2838e: /usr/lib/openoffice.org2.0/program/libvclplug_gtk680li.so + 0x2e38e
0xe287c7: /usr/lib/openoffice.org2.0/program/libvclplug_gtk680li.so + 0x2e7c7
0x376452e: /usr/lib/libgtk-x11-2.0.so.0 + 0x12352e
0x2aff6d: /usr/lib/libgobject-2.0.so.0 + 0x8f6d (g_closure_invoke + 0x11d)
0x2c0a3d: /usr/lib/libgobject-2.0.so.0 + 0x19a3d
0x2c1d0f: /usr/lib/libgobject-2.0.so.0 + 0x1ad0f (g_signal_emit_valist + 0x68f)
0x2c2109: /usr/lib/libgobject-2.0.so.0 + 0x1b109 (g_signal_emit + 0x29)
0x384f7e8: /usr/lib/libgtk-x11-2.0.so.0 + 0x20e7e8
0x375df3a: /usr/lib/libgtk-x11-2.0.so.0 + 0x11cf3a (gtk_propagate_event + 0x1ba)
0x375f157: /usr/lib/libgtk-x11-2.0.so.0 + 0x11e157 (gtk_main_do_event + 0x317)
0x35f593a: /usr/lib/libgdk-x11-2.0.so.0 + 0x4093a
0x349e15d: /usr/lib/libglib-2.0.so.0 + 0x2515d (g_main_context_dispatch + 0x16d)
0x34a13ef: /usr/lib/libglib-2.0.so.0 + 0x283ef
0x34a1955: /usr/lib/libglib-2.0.so.0 + 0x28955 (g_main_context_iteration + 0x65)
0xe0e901: /usr/lib/openoffice.org2.0/program/libvclplug_gtk680li.so + 0x14901
0xe7d21d: /usr/lib/openoffice.org2.0/program/libvclplug_gen680li.so + 0x4321d
(X11SalInstance::Yield(unsigned char) + 0x27)
0x6922866: /usr/lib/openoffice.org2.0/program/libvcl680li.so + 0x8a866
(Application::Yield() + 0x48)
0x6a2048b: /usr/lib/openoffice.org2.0/program/libvcl680li.so + 0x18848b
0x6a26183: /usr/lib/openoffice.org2.0/program/libvcl680li.so + 0x18e183
0x6a27288: /usr/lib/openoffice.org2.0/program/libvcl680li.so + 0x18f288
(PopupMenu::Execute(Window*, Rectangle const, unsigned short) + 0x42)
0x6a272c5: /usr/lib/openoffice.org2.0/program/libvcl680li.so + 0x18f2c5
(PopupMenu::Execute(Window*, Point const) + 0x37)
0x43079e8: /usr/lib/openoffice.org2.0/program/libsfx680li.so + 0x1c69e8
0x43084ab: /usr/lib/openoffice.org2.0/program/libsfx680li.so + 0x1c74ab
0x42ed6f4: /usr/lib/openoffice.org2.0/program/libsfx680li.so + 0x1ac6f4
(SfxDispatcher::ExecutePopup(ResId const, Window*, Point const*) + 0x78)
0x306fee4: /usr/lib/openoffice.org2.0/program/libsd680li.so + 0x107ee4
0x3065cc8: /usr/lib/openoffice.org2.0/program/libsd680li.so + 0xfdcc8
0x6a67471: /usr/lib/openoffice.org2.0/program/libvcl680li.so + 0x1cf471
0x6a69197: /usr/lib/openoffice.org2.0/program/libvcl680li.so + 0x1d1197
0x6a6a6cb: /usr/lib/openoffice.org2.0/program/libvcl680li.so + 0x1d26cb
0x6a694fd: /usr/lib/openoffice.org2.0/program/libvcl680li.so + 0x1d14fd
0xe2a1b0: 

[lingucomponent-issues] [Issue 64246] English (US) spell-checke r thinks acknowledgement is spelled acknowl edgment

2006-04-30 Thread dnaber
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64246





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 06:16:45 -0700 
2006 ---
This is really something an English native speaker should care about... 

-
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 64917] New - [PATCH] Allow gcj bu ilds with a non-gcj javac

2006-04-30 Thread bero
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64917
  Issue #:|64917
  Summary:|[PATCH] Allow gcj builds with a non-gcj javac
Component:|tools
  Version:|OOo 2.0.2
 Platform:|All
  URL:|
   OS/Version:|All
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|ENHANCEMENT
 Priority:|P3
 Subcomponent:|configure
  Assigned to:|rene
  Reported by:|bero





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 07:04:42 -0700 
2006 ---
Many systems that use gcj/gij as their JDK prefer using a non-gcj javac (such 
as ecj or jikes) because gcj -C is rather slow and not exactly bugfree (e.g. 
OOo needed a lot of workarounds for 
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19870).

The OOo configure script assumes that it should use gcj -C as javac 
unconditionally if the JDK is gcj/gij.

The attached patch allows it to use ecj; tested to work with 2.0.2, patch 
applies to m165.

-
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 64917] [PATCH] Allow gcj builds with a non-gcj javac

2006-04-30 Thread bero
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64917


User bero changed the following:

  What|Old value |New value

   Attachment is patch|  |Created an attachment
  |  |(id=36166) Fix





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 07:07:01 -0700 
2006 ---
Created an attachment (id=36166)
Fix


-
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]



[framework-issues] [Issue 64918] New - [PATCH] jvmfwk fails to recognize gij

2006-04-30 Thread bero
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64918
  Issue #:|64918
  Summary:|[PATCH] jvmfwk fails to recognize gij
Component:|framework
  Version:|OOo 2.0.2
 Platform:|All
  URL:|
   OS/Version:|All
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P3
 Subcomponent:|code
  Assigned to:|tm
  Reported by:|bero





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 07:10:35 -0700 
2006 ---
SSIA, patch attached

-
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]



[framework-issues] [Issue 64918] [PATCH] jvmfwk fails to r ecognize gij

2006-04-30 Thread bero
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64918


User bero changed the following:

  What|Old value |New value

   Attachment is patch|  |Created an attachment
  |  |(id=36167) Fix





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 07:11:36 -0700 
2006 ---
Created an attachment (id=36167)
Fix


-
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 64919] New - [PATCH] Don't fail i f an explicit --without-system-mozilla is give n

2006-04-30 Thread bero
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64919
  Issue #:|64919
  Summary:|[PATCH] Don't fail if an explicit --without-system-
  |mozilla is given
Component:|tools
  Version:|OOo 2.0.2
 Platform:|All
  URL:|
   OS/Version:|All
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P3
 Subcomponent:|configure
  Assigned to:|rene
  Reported by:|bero





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 07:15:40 -0700 
2006 ---
SSIA, patch attached

-
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 64919] [PATCH] Don't fail if an explicit --without-system-mozilla is given

2006-04-30 Thread bero
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64919


User bero changed the following:

  What|Old value |New value

   Attachment is patch|  |Created an attachment
  |  |(id=36168) Fix





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 07:16:22 -0700 
2006 ---
Created an attachment (id=36168)
Fix


-
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 64921] New - [PATCH] Don't try to build hsqldb if --without-java is used

2006-04-30 Thread bero
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64921
  Issue #:|64921
  Summary:|[PATCH] Don't try to build hsqldb if --without-java
  |is used
Component:|tools
  Version:|OOo 2.0.2
 Platform:|All
  URL:|
   OS/Version:|All
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P3
 Subcomponent:|configure
  Assigned to:|rene
  Reported by:|bero





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 07:20:32 -0700 
2006 ---
Trying to build hsqldb (obviously) fails if there's no JDK

-
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 64921] [PATCH] Don't try to buil d hsqldb if --without-java is used

2006-04-30 Thread bero
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64921


User bero changed the following:

  What|Old value |New value

   Attachment is patch|  |Created an attachment
  |  |(id=36170) Fix





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 07:21:19 -0700 
2006 ---
Created an attachment (id=36170)
Fix


-
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]



[porting-issues] [Issue 64922] New - [PATCH] Fix LINUX ch eck in makefile.mk

2006-04-30 Thread geki
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64922
  Issue #:|64922
  Summary:|[PATCH] Fix LINUX check in makefile.mk
Component:|porting
  Version:|680m164
 Platform:|All
  URL:|
   OS/Version:|All
   Status:|NEW
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|PATCH
 Priority:|P3
 Subcomponent:|code
  Assigned to:|mh
  Reported by:|geki





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 07:23:02 -0700 
2006 ---
Summary says 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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


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



[porting-issues] [Issue 64922] [PATCH] Fix LINUX check i n makefile.mk

2006-04-30 Thread geki
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64922


User geki changed the following:

  What|Old value |New value

   Attachment is patch|  |Created an attachment
  |  |(id=36171) Fix LINUX check





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 07:25:22 -0700 
2006 ---
Created an attachment (id=36171)
Fix LINUX check


-
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 64923] New - [PATCH] Make PAM opt ional on Linux

2006-04-30 Thread geki
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64923
  Issue #:|64923
  Summary:|[PATCH] Make PAM optional on Linux
Component:|tools
  Version:|680m164
 Platform:|PC
  URL:|
   OS/Version:|Linux
   Status:|NEW
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|PATCH
 Priority:|P3
 Subcomponent:|configure
  Assigned to:|mh
  Reported by:|geki





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 07:53:54 -0700 
2006 ---
What it does:
- Add '--disable-pam' configure flag.
- (still TODO) Check getspnam_r for number of arguments needed.
- Set NEW_SHADOW_API variable.
- sal/osl/unx/security.c: Make PAM optional.

-
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]



[porting-issues] [Issue 64922] [PATCH] Fix LINUX check i n makefile.mk

2006-04-30 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64922


User pjanik changed the following:

  What|Old value |New value

   Assigned to|mh|pjanik

  Target milestone|---   |OOo 2.0.3





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 07:54:17 -0700 
2006 ---
.

-
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 64923] [PATCH] Make PAM optional on Linux

2006-04-30 Thread geki
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64923


User geki changed the following:

  What|Old value |New value

   Attachment is patch|  |Created an attachment
  |  |(id=36172) disable pam





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 07:55:56 -0700 
2006 ---
Created an attachment (id=36172)
disable pam


-
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 64924] New - Previous drawing fro m Navigation button does not work

2006-04-30 Thread fransvc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64924
  Issue #:|64924
  Summary:|Previous drawing from Navigation button does not work
Component:|Word processor
  Version:|680m164
 Platform:|All
  URL:|
   OS/Version:|All
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P3
 Subcomponent:|ui
  Assigned to:|mru
  Reported by:|fransvc





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 07:56:26 -0700 
2006 ---
Previous drawing from Navigation button does not work

Add three drawings to your document.
Give them a name.

Got to the right corner and open the Navigation.
Choose Drawing.
Arrow down works good (cyclic)
Arrow up does not 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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


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



[util-issues] [Issue 63732] external STLport fixes

2006-04-30 Thread geki
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=63732





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 08:17:05 -0700 
2006 ---
@hr: Would it be ok for you to include
http://go-oo.org/patches/src680/dont-copy-and-install-stlport.diff into CWS 
hr33?

-
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]



[porting-issues] [Issue 64922] [PATCH] Fix LINUX check i n makefile.mk

2006-04-30 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64922


User pjanik changed the following:

  What|Old value |New value

   Assigned to|pjanik|rene

  Priority|P3|P4





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 08:25:58 -0700 
2006 ---
Looks like none needed it at all ;-)

Reassign to author.


-
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 64924] Previous drawing from Nav igation button does not work

2006-04-30 Thread rainerbielefeld
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64924





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 08:42:23 -0700 
2006 ---
I checked with 2.0.2  German version WIN XP: [680m5(Build9011)]: WFM

-
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 64924] Previous drawing from Nav igation button does not work

2006-04-30 Thread rainerbielefeld
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64924


User rainerbielefeld changed the following:

  What|Old value |New value

  Keywords|  |needmoreinfo, oooqa





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 08:43:33 -0700 
2006 ---
@fransvc:
Pls. specify platforms and OS where you saw the problem

-
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 64923] [PATCH] Make PAM optional on Linux

2006-04-30 Thread geki
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64923


User geki changed the following:

  What|Old value |New value

   Assigned to|mh|rene





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 08:45:51 -0700 
2006 ---
Reassign to rene.

-
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 64925] New - OOo-2.0.2 with Hindi Language Pack Crashes while editing

2006-04-30 Thread anandshankar
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64925
  Issue #:|64925
  Summary:|OOo-2.0.2 with Hindi Language Pack Crashes while
  |editing
Component:|Word processor
  Version:|OOo 2.0.2
 Platform:|PC
  URL:|
   OS/Version:|Linux
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P3
 Subcomponent:|editing
  Assigned to:|mru
  Reported by:|anandshankar





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 08:49:14 -0700 
2006 ---
OpenOffice crashes while I edit a file with Hindi Text. Using SCIM as input
method with INSCRIPT keyboard layout with m17n-hi-inscript module. I was
correcting a Matra (Vowel Sign) and pressed backspace.

-
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 64925] OOo-2.0.2 with Hindi Lang uage Pack Crashes while editing

2006-04-30 Thread anandshankar
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64925


User anandshankar changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=36174) Crash debug
  |  |report generated by
  |  |OpenOffice





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 08:51:24 -0700 
2006 ---
Created an attachment (id=36174)
Crash debug report generated by OpenOffice


-
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 64926] New - Export / Import ISCI I encoded Text

2006-04-30 Thread anandshankar
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64926
  Issue #:|64926
  Summary:|Export / Import ISCII encoded Text
Component:|Word processor
  Version:|OOo 2.0.2
 Platform:|All
  URL:|
   OS/Version:|All
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|ENHANCEMENT
 Priority:|P3
 Subcomponent:|save-export
  Assigned to:|mru
  Reported by:|anandshankar





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 10:12:37 -0700 
2006 ---
A case in point is to be able to export / import UNICODE data being generated to
other non-Unicode applications - such as Adobe Pagemaker, for publishing.

If raw text could be sent out from / imported from other apps who can generate /
receive ISCII encoded text, it would be a great feature. 

anand shankar

-
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 64927] New - Layout error .doc fi le

2006-04-30 Thread rick2910
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64927
  Issue #:|64927
  Summary:|Layout error .doc file
Component:|Word processor
  Version:|OOo 2.0.2
 Platform:|All
  URL:|
   OS/Version:|Windows XP
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P3
 Subcomponent:|formatting
  Assigned to:|mru
  Reported by:|rick2910





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 10:25:57 -0700 
2006 ---
I made the file 1.doc in MS Word 2003. Then I opened 1.doc in OpenOffice 2.0.2.
I did not do any editing whatsoever and I saved the file as 2.doc in OpenOffice
2.0.2. When you open 2.doc in either OO 2.0.2 or Word 2003 you will see that the
left border has shifted to the right.

-
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 64927] Layout error .doc file

2006-04-30 Thread rick2910
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64927


User rick2910 changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=36175) 1.doc





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 10:26:51 -0700 
2006 ---
Created an attachment (id=36175)
1.doc


-
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 64927] Layout error .doc file

2006-04-30 Thread rick2910
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64927


User rick2910 changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=36176) 2.doc





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 10:27:09 -0700 
2006 ---
Created an attachment (id=36176)
2.doc


-
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 64928] New - Date error with .doc file

2006-04-30 Thread rick2910
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64928
  Issue #:|64928
  Summary:|Date error with .doc file
Component:|Word processor
  Version:|OOo 2.0.2
 Platform:|All
  URL:|
   OS/Version:|Windows XP
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P3
 Subcomponent:|formatting
  Assigned to:|mru
  Reported by:|rick2910





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 10:30:18 -0700 
2006 ---
I made 1.doc in MS Word 2003. When I open this file in OO 2.0.2 I see the date
in this way: 30 april .  should be 2006.

-
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 64928] Date error with .doc file

2006-04-30 Thread rick2910
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64928


User rick2910 changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=36177) 1.doc





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 10:30:47 -0700 
2006 ---
Created an attachment (id=36177)
1.doc


-
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]



[sc-issues] [Issue 64929] New - Hyperlinks are creat ed that do not look like traditional hyperlink s

2006-04-30 Thread nostabo
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64929
  Issue #:|64929
  Summary:|Hyperlinks are created that do not look like
  |traditional hyperlinks
Component:|Spreadsheet
  Version:|OOo 2.0.2
 Platform:|All
  URL:|
   OS/Version:|All
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|ENHANCEMENT
 Priority:|P3
 Subcomponent:|formatting
  Assigned to:|spreadsheet
  Reported by:|nostabo





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 11:09:05 -0700 
2006 ---
The hyperlinks created in Calc have an ugly gray background that can not be
changed or removed. They do not look like a hyperlink at first glance, and I
would suppose that new users might be confused since the standard among
spreadsheets is to create a traditional looking link. I suggest that Calc simply
create hyperlinks that look like hyperlinks (like in Gnumeric and Excel). The
hyperlinks should also be able to be fully formatted to change their appearance
(again like Gnumeric and Excel).

The ability to modify the tip (as in Gnumeric) or screen tip (Excel) that is
displayed when you hover over the link would also be a nice addition to Calc

-
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]



[l10n-issues] [Issue 64931] New - [SV] Thesaurus / syn onymn list missing

2006-04-30 Thread larsnooden
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64931
  Issue #:|64931
  Summary:|[SV] Thesaurus / synonymn list missing
Component:|l10n
  Version:|OOo 2.0.1
 Platform:|All
  URL:|
   OS/Version:|All
   Status:|NEW
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P3
 Subcomponent:|ui
  Assigned to:|iano
  Reported by:|larsnooden





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 11:46:15 -0700 
2006 ---
There seems to be no synonymn list/thesaurus for Swedish. 

Verktyg-Språk-synonymordlista brings up the English thesaurus and the Czech
one (The Czech one should not be there, perhaps that's a separate bug.)

-
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]



[framework-issues] [Issue 64932] New - [PATCH] m165 doesn't compile with gcc 4.1

2006-04-30 Thread bero
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64932
  Issue #:|64932
  Summary:|[PATCH] m165 doesn't compile with gcc 4.1
Component:|framework
  Version:|680m164
 Platform:|All
  URL:|
   OS/Version:|All
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P3
 Subcomponent:|code
  Assigned to:|tm
  Reported by:|bero





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 13:15:08 -0700 
2006 ---
/usr/src/ark/BUILD/ooo-build/build/src680-m165/sot/source/unoolestorage/xolesimp
lestorage.hxx:107: error: extra qualification 'OLESimpleStorage::' on 
member 'InsertNameAccessToStorage_Impl'
dmake:  Error code 1, while 
making '../../unxlngi6.pro/slo/xolesimplestorage.obj'

-
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]



[framework-issues] [Issue 64932] [PATCH] m165 doesn't comp ile with gcc 4.1

2006-04-30 Thread bero
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64932


User bero changed the following:

  What|Old value |New value

   Attachment is patch|  |Created an attachment
  |  |(id=36186) Fix





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 13:16:46 -0700 
2006 ---
Created an attachment (id=36186)
Fix


-
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 64927] Word Export: left and rig ht page margins shifted right

2006-04-30 Thread lars
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64927


User lars changed the following:

  What|Old value |New value

CC|''|'lars'

Ever confirmed|  |1

Status|UNCONFIRMED   |NEW

  Keywords|  |oooqa

   Summary|Layout error .doc file|Word Export: left and
  |  |right page margins shifted
  |  |right

  Subcomponent|formatting|save-export





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 13:27:29 -0700 
2006 ---
confirmed with 680_m164 on WinXP Pro SP2

-
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 64928] Word Import: year date fi eld shown as yyyy instead of number

2006-04-30 Thread lars
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64928


User lars changed the following:

  What|Old value |New value

CC|''|'lars'

Ever confirmed|  |1

Status|UNCONFIRMED   |NEW

  Keywords|  |oooqa

   Summary|Date error with .doc file |Word Import: year date
  |  |field shown as 
  |  |instead of number

  Subcomponent|formatting|open-import





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 13:29:46 -0700 
2006 ---
confirmed with 680_m164 on WinXP Pro SP2

-
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 64933] New - Imported MS Word doc ument jpg files show up with a pink cast

2006-04-30 Thread mdking117
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64933
  Issue #:|64933
  Summary:|Imported MS Word document jpg files show up with a
  |pink cast
Component:|Word processor
  Version:|OOo 2.0.2
 Platform:|All
  URL:|
   OS/Version:|Windows XP
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P3
 Subcomponent:|editing
  Assigned to:|mru
  Reported by:|mdking117





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 14:31:16 -0700 
2006 ---
I imported an existing MS Word document containing a table with embedded gif
graphics in it.  All of the graphics in the table have a pink cast to them.  If
I remove the graphic and reimport it, the cast goes away until I open it in
Writer again.  In Word, the images do not have the pink cast.  
Thanks,
Mike King
Dublin, OH

-
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 64933] Imported MS Word document jpg files show up with a pink cast

2006-04-30 Thread mdking117
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64933


User mdking117 changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=36188) Sample gif file
  |  |that appears with a pink
  |  |cast in Writer





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 14:32:50 -0700 
2006 ---
Created an attachment (id=36188)
Sample gif file that appears with a pink cast in Writer


-
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 64934] New - Documents created fr om templates do not warn on template update

2006-04-30 Thread jjmckenzie
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64934
  Issue #:|64934
  Summary:|Documents created from templates do not warn on
  |template update
Component:|Word processor
  Version:|OOo 2.0.2
 Platform:|Macintosh
  URL:|
   OS/Version:|Mac OS X
   Status:|NEW
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P3
 Subcomponent:|code
  Assigned to:|mru
  Reported by:|jjmckenzie





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 15:27:37 -0700 
2006 ---
Follow the directions given in: 

Hi

I've found that changes on a style of a Writer template does not  propagate to
documents based on that template. This affects to  OpenOffice.org 2.0.2rc4 (from
ftp://ooopackages.good-day.net/).

If you use 2.0.1 for X11 or 2.0.2 for Linux (Debian) (I haven't tried  it in
Windows) Writer let you propagate those changes from the  template to the
documents based on it.

Here you have more details:

1. Open the file test.odt (see attachments). Its a simple document  with just
one paragraph using the user defined style My Paragraph  Style.

2. Select FileTemplatesSave, name the template Test Template  and close
the document.

3. Select FileNewTemplate and documents, double-click on My  Templates and
then on Test Template.

4. Select FileSave and name the file Doc based on template.  Close it.

5. Select FileTemplatesOrganize, double-click on My Templates  and select
Test Template. Click the button Commands and select  Edit.

6. Modify the style My Paragraph Style changing whatever you like  (for
instance, change the font). Save and close.

7. Select FileOpen to open the document Doc based on template.

8. Now Writer should show the window in the attachment  capture.jpg (captured
using OOo 2.0.1) to let you know the template  on which is based the document
has changed and to let you apply those  changes. But OOo 2.0.2rc4 does nothing.

JL

Verified that updating the associated template file does not force the dialog
window to appear when reopening the document after changing the template file.

Would like additional confirmation of this error or is this 'as designed' for
Mac builds.

James M.

-
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 64934] Documents created from te mplates do not warn on template update

2006-04-30 Thread jjmckenzie
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64934


User jjmckenzie changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=36189) Test document
  |  |from test template





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 15:28:46 -0700 
2006 ---
Created an attachment (id=36189)
Test document from test template


-
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 64934] Documents created from te mplates do not warn on template update

2006-04-30 Thread jjmckenzie
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64934


User jjmckenzie changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=36190) OpenDocument
  |  |Text template file for
  |  |test





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 15:30:07 -0700 
2006 ---
Created an attachment (id=36190)
OpenDocument Text template file for test


-
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 64934] Documents created from te mplates do not warn on template update

2006-04-30 Thread jjmckenzie
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64934





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 15:32:20 -0700 
2006 ---
Confirmed issue with build including fixes for IZ 63030.  The document was
placed in ~/Documents and the template in ~/Library/OpenOffie.org 
2.0/user/template.

James M.

-
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]



[porting-issues] [Issue 64906] OpenOffice.org does not s tart

2006-04-30 Thread maho
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64906





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 17:54:57 -0700 
2006 ---
all: it is also a build breaker for Xcode 1.5 as well
http://www.openoffice.org/issues/show_bug.cgi?id=64769

 maybe even better is to be pro-active and test returned value and  set it to
some pre-defined value 
 (like 1024) if it is non-sense (like -1) on all platforms?
yeah good idea;)

-
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]



[udk-issues] [Issue 64888] find the 32bit GCJ runtim e, when running 32bit binaries on Debian/Ubunt u

2006-04-30 Thread maho
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64888





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 18:23:39 -0700 
2006 ---
i think so too ;) could you please try patch in #i64442#

-
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]



[l10n-issues] [Issue 41707] Tracking bug for Thai-rel ated issue

2006-04-30 Thread markpeak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=41707





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 20:59:54 -0700 
2006 ---
#59576 : Can't copy text from PDF exported from 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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


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



[sc-issues] [Issue 64935] New - Share border formatt ing between cells

2006-04-30 Thread ahung
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64935
  Issue #:|64935
  Summary:|Share border formatting between cells
Component:|Spreadsheet
  Version:|OOo 2.0.2
 Platform:|All
  URL:|
   OS/Version:|All
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P3
 Subcomponent:|formatting
  Assigned to:|spreadsheet
  Reported by:|ahung





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 21:12:28 -0700 
2006 ---
For details please refer to issue 59747, this should be a defect not an 
enhancement.

-
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 64680] ooffice base crashes (twi ce) when existing from edit table

2006-04-30 Thread jeffsilv
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64680





--- Additional comments from [EMAIL PROTECTED] Sun Apr 30 22:07:39 -0700 
2006 ---
Here is the procedure I use to connect to the database.  Start OpenOffice
(ooffice).  File - New - database .  Select Connect to an existing database
using ODBC.   Use MySQL-equipment_test as the data source name (note that this
comes from the /etc/odbc.ini file).  Enter the username, and turn on the
password required checkbox if needed.  Since the equipment_test database allows
anonymous read/only access, this step is optional.  Click on the test database
button, and it should say that it connected successfully.  Register the
database, which creates a file so you can do this faster next time.  Click on
edit tables if you want to edit the tables.

To reproduce the problem: go through the procedure above.  Then, click on the
create table in design view, design a table, and click on the save icon and it
crashes. 

When I restart openoffice base, it goes through the recovery process fine.

I also tried: File - New - database .  Select Connect to an existing database
using MySQL.  Click on NEXT.  Select ODBC.   Click on Browse.  Select
MySQL_equipment_test.   It wants a user name, enter root select password
required.  Select register the database.  Select open database for editing.  
Again, click on the create table in design view, design a table, and click on
the save icon and it crashes.

I tried using JDBC, but it won't open the JDBC driver (probably because I
haven't installed it yet - I need to go back and read the manual).

I am using OpenOffice 2.0 from RedHat Fedora Core 4. 

[EMAIL PROTECTED] ~]$ rpm -q --file /usr/bin/oobase
openoffice.org-core-2.0.1.1-5.1
[EMAIL PROTECTED] ~]$ rpm -q -a | fgrep openoffice
openoffice.org-calc-2.0.1.1-5.1
openoffice.org-javafilter-2.0.1.1-5.1
openoffice.org-core-2.0.1.1-5.1
openoffice.org-debuginfo-2.0.1.1-5.1
openoffice.org-impress-2.0.1.1-5.1
openoffice.org-math-2.0.1.1-5.1
openoffice.org-xsltfilter-2.0.1.1-5.1
openoffice.org-pyuno-2.0.1.1-5.1
openoffice.org-graphicfilter-2.0.1.1-5.1
openoffice.org-writer-2.0.1.1-5.1
openoffice.org-testtools-2.0.1.1-5.1
openoffice.org-draw-2.0.1.1-5.1
[EMAIL PROTECTED] ~]$ uname -a
Linux black 2.6.14-1.1656_FC4 #1 Thu Jan 5 22:13:22 EST 2006 i686 athlon i386
GNU/Linux
Here is my odbc.ini file contents:

[MySQL-test]
Description = MySQL database test
Driver = MySQL
Server = localhost
Database = test
Port = 3306

[MySQL-equipment_dev]
Description= MySQL equipment database development
Driver= MySQL
Server= black.commercialventvac.com
Database= equipment_dev
Port= 3306

[MySQL-equipment_test]
Description= MySQL equipment database test
Driver= MySQL
Server= black.commercialventvac.com
Database= equipment_test
Port= 3306

[EMAIL PROTECTED] ~]$  more /etc/odbcinst.ini
# Example driver definitinions
#
#

# Included in the unixODBC package
#[PostgreSQL]
#Description= ODBC for PostgreSQL
#Driver = /usr/lib/libodbcpsql.so
#Setup  = /usr/lib/libodbcpsqlS.so
#FileUsage  = 1


# Driver from the MyODBC package
# Setup from the unixODBC package
[MySQL]
Description = ODBC for MySQL
Driver  = /usr/lib/libmyodbc.so
Setup   = /usr/lib/libodbcmyS.so
FileUsage   = 1
[EMAIL PROTECTED] ~]$  ls -l /usr/lib/libodbcmy*
lrwxrwxrwx  1 root root   19 Jan 16 04:49 /usr/lib/libodbcmyS.so -
libodbcmyS.so.1.0.0
lrwxrwxrwx  1 root root   19 Jan 16 04:49 /usr/lib/libodbcmyS.so.1 -
libodbcmyS.so.1.0.0
-rwxr-xr-x  1 root root 6252 Sep 30  2005 /usr/lib/libodbcmyS.so.1.0.0
[EMAIL PROTECTED] ~]$   rpm -q --file /usr/lib/libodbcmy*
unixODBC-2.2.11-3.FC4.1
unixODBC-2.2.11-3.FC4.1
unixODBC-2.2.11-3.FC4.1
[EMAIL PROTECTED] ~]$  


-
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]