[framework-issues] [Issue 85222] Applications abort at star tup

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


User ja changed the following:

What|Old value |New value

  Status|VERIFIED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Fri Jan 18 09:59:29 + 
2008 ---
closing verified 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: [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 85222] Applications abort at star tup

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


User ja changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED





--- Additional comments from [EMAIL PROTECTED] Fri Jan 18 09:59:05 + 
2008 ---
verified in SRC680_m243 as well. Marking issue as verified.

-
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 85222] Applications abort at star tup

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





--- Additional comments from [EMAIL PROTECTED] Wed Jan 16 14:46:52 + 
2008 ---
Verified fix for OOH680_m3.

-
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 85222] Applications abort at star tup

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


User rt changed the following:

What|Old value |New value

  Status|STARTED   |RESOLVED

  Resolution|  |FIXED





--- Additional comments from [EMAIL PROTECTED] Tue Jan 15 08:49:07 + 
2008 ---
Got the following patch by hro and applied it as masterfix for OOH680 (m3) and
SRC680 (m243):

@@ -991,6 +991,15 @@
defaultEncoding = osl_getTextEncodingFromLocale(NULL);
 
OSL_ASSERT(defaultEncoding != RTL_TEXTENCODING_DONTKNOW);
+
+   /*
+   Tools string functions call abort() on an unknown encoding so ASCII
+   is a meaningfull fallback regardless wether the assertion makes sense.
+   */
+
+   if ( RTL_TEXTENCODING_DONTKNOW == defaultEncoding )
+   defaultEncoding = RTL_TEXTENCODING_ASCII_US;
+
g_thread.m_textencoding.m_default = defaultEncoding;
 }
 

-
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 85222] Applications abort at star tup

2008-01-14 Thread ja
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=85222
 Issue #|85222
 Summary|Applications abort at startup
   Component|framework
 Version|680m242
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P1
Subcomponent|code
 Assigned to|sb
 Reported by|ja





--- Additional comments from [EMAIL PROTECTED] Mon Jan 14 09:52:52 + 
2008 ---
The applications abort directly at startup. As far as it has been debugged the
reason might be related with the locale configured (de_DE.UTF-8). When using
en_US.UTF-8 the application can start. The problem seems to be in lib-tools

Tested on Ubuntu Depperdrake

-
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 85222] Applications abort at star tup

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


User sb changed the following:

What|Old value |New value

 Assigned to|sb|hro





--- Additional comments from [EMAIL PROTECTED] Mon Jan 14 10:33:55 + 
2008 ---
Reproducible at least on a Linux box that does not have de locales in
/usr/lib/locale:

- set the locale to de_DE.UTF-8 when calling soffice

- _imp_getProcessLocale at sal/osl/unx/nlsupport.c:1.35 l. 640 determines only a
C locale

- osl_getThreadTextEncoding() therefor returns RTL_TEXTENCODING_DONTKNOW

- tools/source/misc/extendapplicationenvironment.cxx:1.1.6.2 l. 81 calls abort()
when rtl::OUString::convertToString fails, which it does when
osl_getThreadTextEncoding() returns RTL_TEXTENCODING_DONTKNOW

@hro:  Apart from clarifying if the behavior of _imp_getProcessLocale is
correctin the given environment, it would probably be useful to let
osl_getThreadTextEncoding return RTL_TEXTENCODING_ASCII_US when the locale is 
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]



[framework-issues] [Issue 85222] Applications abort at star tup

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


User hro changed the following:

What|Old value |New value

  CC|''|'rt'

  Status|NEW   |STARTED





--- Additional comments from [EMAIL PROTECTED] Mon Jan 14 17:52:06 + 
2008 ---
For a not installed locale RTL_TEXT_ENCODING_ASCII_US is the most meaningful
default, I agree.

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