[sc-issues] [Issue 109681] Calc is crash when Numbe rs tab select in Format Cells dialog.

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





--- Additional comments from bluedw...@openoffice.org Mon Aug 30 05:39:15 
+ 2010 ---
@kstribley I found that the array index was negative when mpLogClusters was 
accessed in the following quoted line in winlayout.cxx.

 mpLogClusters[ k ]= static_castWORD(nRelGlyphPos);

Although I'm not still sure why k could be negative, I confirmed we can solve 
this bug inserting the following line.

if ( k  0 )
 mpLogClusters[ k ]= static_castWORD(nRelGlyphPos);

Is this patch acceptable? Or could you investigate why it can be negative?


-
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 109681] Calc is crash when Numbe rs tab select in Format Cells dialog.

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





--- Additional comments from bluedw...@openoffice.org Tue Aug 24 18:04:38 
+ 2010 ---
First of all, I happened to know that this problem might be reproduced without 
Microsoft Office IME 2007. No matter what the default language is, OOO320_m19 
compiled with --enable-dbgutil configure option crashes on Windows 7. Could 
anyone try to reproduce this problem with that option? This might greatly help 
us speed up debugging because I can't afford to spare much time to this 
problem. 

@kstribley, thank you for your informative comments. I found that this crash 
happens when VCL tries to render Indian currency (INR) in Hindi. The fallback 
fonts set in mpFallbackFonts variable are following:

?? $!mpFallbackFonts[0]-maName
 = NULL
?? $!mpFallbackFonts[1]-maName
 = Arial Unicode MS

And, as you can see in the attached backtrace, Calc crashes when 
OutputDevice::GetTextArray called. One of the parameters (rStr) of this method 
shows what string VCL tried to render, which was following:

?? $!rStr-mpData-maStr
 =
0x202a (LRE)
0x0049 'I'
0x004e 'N'
0x0052 'R'
0x202c (PDF)
0x0020 ' '
0x0020 ' '
0x202a (LRE)
0x0930 'र'
0x0941 ''
0x002e '.'
0x202c (PDF)
0x0020 ' '
0x0020 ' '
0x202a (LRE)
0x0048 'H'
0x0069 'i'
0x006e 'n'
0x0064 'd'
0x0069 'i'
0x202c (PDF)
0x (NULL)

@mlpotgieter, thank you for your work. What if you install Gentium Basic fonts 
and set SAL_DISABLE_GRAPHITE=0?

@pl, Microsoft Office IME 2007 may probably bundled only with MS-Office 2007 
Japanese edition (and Korean Edition?). To check if it's installed, could you 
try the following steps on Windows 7?
1. Open Region and Language from Control Panels
2. Go to Keyboards and Languages tab
3. Click Change Keyboards... button to open Text Services and Input 
Languages dialog.
4. Click Add button to open Add Input Language
5. Check if Japanese (Japan) - Keyboard - Microsoft Office IME 2007 is listed.
If not, MS Office IME 2007 is not installed. In that case, try to get MS Office 
2007 Japaense (or Korean?) package somehow. (I'm not sure if you can buy one 
outside Japan.)
c.f. http://www.wfu.edu/~yipcw/atg/ime/w7/


-
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 109681] Calc is crash when Numbe rs tab select in Format Cells dialog.

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





--- Additional comments from bluedw...@openoffice.org Mon Aug 23 13:11:55 
+ 2010 ---
@kstribley sorry I misled you into a wrong discussion. Actually Calc crashes 
when the destructor of UniscribeLayout is called as you can see in the attached 
backtrace. In addition, today I found that the statement delete [] 
mpLogClusters; caused this crash. I guessed that some memories regarding 
mpLogClusters were freed twice, but I finally couldn't find the code which 
releases  mpLogClusters outside the destructor in winlayout.cxx.

So, next, I'll try tracing delete statements somehow, which I hope results in 
finding a root cause.

Please consider that the attached patch just shows that the modification made 
in 
graphite01 triggered this problem. I think the root cause should be around the 
modified part. But I would like you to remember what was changed in 
winlayout.cxx, and hopefully come up with a hint or solution of this problem. 
Please give me any comment or whatever you think. It will be very helpful.

(BTW, I don't understand the fallback system involving Uniscribe and Graphite 
engines.)

@mlpotgieter yes. However, the root cause seems to be in OOo itself, and we 
should fix it because it is very common to install MS-Office and OOo in one 
computer, especially in Japan.


-
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 109681] Calc is crash when Numbe rs tab select in Format Cells dialog.

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





--- Additional comments from bluedw...@openoffice.org Sun Aug 22 09:51:50 
+ 2010 ---
Created an attachment (id=71248)
Backtrace of OOO320_m19, generated by WinDbg.


-
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 109681] Calc is crash when Numbe rs tab select in Format Cells dialog.

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


User bluedwarf changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |71249)
Proposed patch to f
|  |ix this problem. This patc
|  |h was generated for OOO320
|  |_m19.






--- Additional comments from bluedw...@openoffice.org Sun Aug 22 09:55:36 
+ 2010 ---
Created an attachment (id=71249)
Proposed patch to fix this problem. This patch was generated for OOO320_m19.


-
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 109681] Calc is crash when Numbe rs tab select in Format Cells dialog.

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





--- Additional comments from bluedw...@openoffice.org Sun Aug 22 10:08:09 
+ 2010 ---
The root cause must be in vcl module according to the backtrace attached to 
this 
issue (i10981_backtrace_ooo320_m19.txt). This backtrace was displayed by WinDbg 
when Calc crashed in the reported way.

And I found that the modification, made in CWS graphite01, in 
vcl/win/source/gdi/winlayout.cxx caused this regression. The causal part of 
this 
file is commented out in the proposed patch. I confirmed Calc doesn't crash 
with 
this patch in Windows 7 + Microsoft IME 2007.

However, we may have to have the author of the causal part confirm this patch 
as 
I don't understand the intention behind that part.


-
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



[tools-issues] [Issue 112512] [l10ntools] transex3 cras hes if $TEMP not defined

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


User bluedwarf changed the following:

What|Old value |New value

  CC|''|'bluedwarf'





-
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



[sc-issues] [Issue 109681] Calc is crash when Numbe rs tab select in Format Cells dialog.

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





--- Additional comments from bluedw...@openoffice.org Tue Aug 10 00:52:37 
+ 2010 ---
Under the same condition that is the same as that of matuaki, I couldn't even 
open 
the Format Cells dialog. Calc crashed then, this is probably because Number 
tab is the default tab that is shown first when I open the dialog.

If anyone doesn't dedicate herself/himself to this problem, I'll investigate 
this 
further.

-
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 109681] Calc is crash when Numbe rs tab select in Format Cells dialog.

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


User bluedwarf changed the following:

What|Old value |New value

  CC|'enoki,jeongkyu,kamataki,k|'bluedwarf,enoki,jeongkyu,
|hirano,md,mechtilde'  |kamataki,khirano,md,mechti
|  |lde'





-
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



[l10n-issues] [Issue 103200] Wrong order of First/Last Name in CJK UI

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





--- Additional comments from bluedw...@openoffice.org Tue Sep  8 18:03:29 
+ 2009 ---
@mba: Thank you for your effort. I looked at the picture and confirmed the name
order was reversed. That's OK. Please go ahead.


-
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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 103200] Wrong order of First/Last Name in CJK UI

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





--- Additional comments from bluedw...@openoffice.org Mon Sep  7 18:24:07 
+ 2009 ---
@mba: OK, I will. Windows version will be fine, but do you have language packs?
I need en-US and at least one of CJK because the behavior depends on locale. If
you don't have any of CJK, then I will check my patch after your CWS is
integrated into the master.


-
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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 103200] Wrong order of First/Last Name in CJK UI

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





--- Additional comments from bluedw...@openoffice.org Mon Sep  7 18:55:27 
+ 2009 ---
That'll be fine. Go forward 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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 103200] Wrong order of First/Last Name in CJK UI

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





--- Additional comments from bluedw...@openoffice.org Tue Sep  1 17:52:51 
+ 2009 ---
bluedwarf - mba: Thanks a lot!

bluedwarf - tora: First of all, don't mess up this issue anymore. I know you
have a lot of options and need more intensive discussion for a comprehensive
solution, but this issue is not suitable for the discussion. Could you conduct
an online discussion place like BBS, IRC, ML or something else? I agree with the
point that we should take care this problem much more for later versions, but it
doesn't make sense that you express your opinion and I comment on it here. (BTW,
I disagree with all your ideas in term of compatibility.) I doubt we can reach
an agreement soon because there are many things we have to take into account.
I'm sorry but I have to mention this point not to confuse those who are involved
in 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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[framework-issues] [Issue 104143] Comprehensive resolution of the order of user's name fields

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


User bluedwarf changed the following:

What|Old value |New value

  CC|'redflagzhulihua' |'bluedwarf,redflagzhulihua
|  |'





--- Additional comments from bluedw...@openoffice.org Tue Aug 11 18:19:15 
+ 2009 ---
I agree about a new single field of name including first name, last name and
father's name in an chosen order for display purpose, but we should not remove
existing fields.

Fields like first name are useful in some cases. I can easily imagine that
some users use these fields separately. Not only that, elimination of the
existing fields like first name may cause some backward compatibility 
problems.


-
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



[l10n-issues] [Issue 103401] The order of Last and Fir st names needs to be reversed for Asian locale s

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


User bluedwarf changed the following:

What|Old value |New value

  CC|'redflagzhulihua' |'bluedwarf,redflagzhulihua
|  |'





-
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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 103401] The order of Last and Fir st names needs to be reversed for Asian locale s

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





--- Additional comments from bluedw...@openoffice.org Tue Aug 11 18:33:53 
+ 2009 ---
IMHO, this is not a good idea because some people (especially those who work
internationally) may enter their names in Roman letters while they are using OOo
with Japanese locale. In this case, users in Japan usually anticipate the same
order as English. As there are many different conventions in the way to write
their name and name order depends on not only the language you use but also the
country, the region and even the context, it should be selectable.

-
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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 103200] Wrong order of First/Last Name in CJK UI

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





--- Additional comments from bluedw...@openoffice.org Fri Jul 31 14:32:39 
+ 2009 ---
bluedwarf-tora: Thanks a lot for your comment. I know we should take more
comprehensive solutions and carry out code refactoring. In my point of view,
this fix just fulfills the request about name order in Option dialog reported in
issue 89362 because the translation changes held in that issue caused other
problems and they were reverted. I consider this fix as a temporary fix. So you
should post your ideas in other places like issue 103401. If desired, I can help
you.


-
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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 103372] Wrong translation in temp late site JA

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


User bluedwarf changed the following:

What|Old value |New value

 Assigned to|soundbox  |bluedwarf





--- Additional comments from bluedw...@openoffice.org Wed Jul 15 10:17:14 
+ 2009 ---
Do not reopen an issue unless you find the same problem reemerged.


-
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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 103372] Wrong translation in temp late site JA

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


User bluedwarf changed the following:

What|Old value |New value

  Status|NEW   |RESOLVED

  Resolution|  |FIXED





--- Additional comments from bluedw...@openoffice.org Wed Jul 15 10:18:00 
+ 2009 ---
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: issues-unsubscr...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 103372] Wrong translation in temp late site JA

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


User bluedwarf changed the following:

What|Old value |New value

  Status|RESOLVED  |CLOSED





--- Additional comments from bluedw...@openoffice.org Wed Jul 15 10:18:32 
+ 2009 ---
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: issues-unsubscr...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[sw-issues] [Issue 101419] remove note's code for re conversion

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


User bluedwarf changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED





--- Additional comments from bluedw...@openoffice.org Wed Jul 15 20:32:34 
+ 2009 ---
Verified in notes10. Thank you.

-
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



[l10n-issues] [Issue 103372] Wrong translation in temp late site JA

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


User bluedwarf changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED





--- Additional comments from bluedw...@openoffice.org Tue Jul 14 18:50:40 
+ 2009 ---
@soundbox: I'm afraid you can't, because you are neither a reporter nor an
assigned person. Don't worry about it. I've done verification.

@khirano: I verified that the problem was solved. Thank you.


-
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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 103372] Wrong translation in temp late site JA

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


User bluedwarf changed the following:

What|Old value |New value

  Status|VERIFIED  |CLOSED





--- Additional comments from bluedw...@openoffice.org Tue Jul 14 18:51:08 
+ 2009 ---
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: issues-unsubscr...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[sw-issues] [Issue 101419] remove note's code for re conversion

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





--- Additional comments from bluedw...@openoffice.org Tue Jul 14 22:51:16 
+ 2009 ---
I'm afraid it didn't work. The two methods (GetSurroundingText and
GetSurroundingTextSelection) must be explicitly delegated to OutlinerView or
EditView because is neither a child of Window class. These two methods are
originally defined in Window class and they or overrided ones (if exist) are
callced when reconversion is triggered by users. 

I'll attach a patch against notes10 to revert these methods.


-
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 101419] remove note's code for re conversion

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


User bluedwarf changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |63552)
Patch to revert two
|  | methods required.






--- Additional comments from bluedw...@openoffice.org Tue Jul 14 22:52:51 
+ 2009 ---
Created an attachment (id=63552)
Patch to revert two methods required.


-
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 101419] remove note's code for re conversion

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





--- Additional comments from bluedw...@openoffice.org Tue Jul 14 22:55:17 
+ 2009 ---
bluedawrf-mod: I'm sorry, but could you take care of the patch again? Even
though this issue is marked as fixed.


-
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



[l10n-issues] [Issue 103200] Wrong order of First/Last Name in CJK UI

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





--- Additional comments from bluedw...@openoffice.org Thu Jul  9 19:27:12 
+ 2009 ---
mba: Please integrate my patch as it is. We reached an agreement.

redflagzhulihua:
JFYI, you showed me a very very good example about name order, which clarifies
the diffrent conventions about name in English context between China and Japan.
In short, people in Japan put given name in first when we talk and write in
English (and probably other western languages).

For example, in Japan, when someone asks us Who is the prime minister in your
country? in English, then we say Taro Aso in the western order. Taro is his
given name. Not only daily conversion but most newspapers follow this western
convention as long as they write English articles including formal ones.
However, when we are asked the same question in Japanese, of course, we always
answer Aso Taro in the eastern order and all newspapers in Japanese also do 
so.

That means people in Japan use the eastern order as long as we talk and write in
our own language, but, on the other hand, we follow the western order for
English conversations and articles. We swap our family names and given names
according to the context of languages.

Here is a good but very rough analysis about the comparison of diffrent
conventions of Chinese and Japanese names in English context, which is the
number of hit pages in Google.com (2009/7/9):

 * hu jintao (Eastern order) 2,240,000
 * jintao hu (Western order) 25,200
 * aso taro  (Eastern order) 35,800 
 * taro aso  (Western order) 805,000

It makes us clear that, while Japanese names often follow the western order in
English context, Chinese names usually keep their eastern order even in English
sentences. I think this difference caused different interpretations of the terms
first name and last name between Japanese and Chinese and made us in
discussion. As you said people in China would treat first name literally, but
people in Japan usually don't do so.

So please keep in mind that you can still choose another solution that you
preserve the current solution of OOo 3.0/3.1 and re-translate first name in 
姓 and last name in 名 everywhere in 3.2. I'm not sure this is a smart
solution for Chinese people, but it's your option and just for your information.

Anyway, I would like to let this patch go first and go to the next step that
localize the name order in other places.


-
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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 103200] Wrong order of First/Last Name in CJK UI

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





--- Additional comments from bluedw...@openoffice.org Wed Jul  8 21:48:04 
+ 2009 ---
redflagzhulihua:
As nayoki said, in general, (hopefully almost all) people in Japan know that
first name means given name and last name means family name. We seldom use
the expression first name, but if we find it, then we consider it as give
name, and vice versa. First and last don't mean the sequence as long as they
are connected to name. To be more precise, I looked up in two different
English-Japanese dictionaries and both of them read that first name was given
name (名 in Japanese) and last name was family name (姓 in Japanese). This
is the common translation from English into Japanese.

Anyway, I know that we have to localize the way to show our names in note or
wherever it concerns in correct order according to the locale or somehow, but it
should be discussed somewhere else and we should file another issue for that.

BTW, in my opinion, we don't have to share the same solution among CJK or among
Asian languages if we have different cultures or standards. I don't know how
about in China. If the situation is different, you can choose another solution
different from Japanese. If the changes made by my patch are not acceptable for
Chinese, I can get rid of the corresponding lines for Chinese, though we will
apply this patch at least for Japanese as we discussed in our Japanese mailing
list. So please kindly give us go sign, then this patch goes as it is.
Otherwise, I will remove the lines related to Chinese from my patch and ask the
developer team to accept a new patch, which will preserve the current solution
of OOo 3.0/3.1 only for Chinese. I think the best way to look up an
English-Chinese dictionary.


-
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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 103372] Wrong translation in temp late site JA

2009-07-06 Thread bluedwarf
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=103372
 Issue #|103372
 Summary|Wrong translation in template site JA
   Component|l10n
 Version|current
Platform|All
 URL|http://templates.services.openoffice.org/ja/template/u
|pload
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|www
 Assigned to|tbo
 Reported by|bluedwarf





--- Additional comments from bluedw...@openoffice.org Mon Jul  6 23:34:43 
+ 2009 ---
I found a wrong translation in Japanese page of Upload your template  at
template site.

http://templates.services.openoffice.org/ja/template/upload
 (ENGLISH) Rename an info field by entering the word 'License'.
 (JAPANESE)「名前」フィールドに「ライセンス」と記入します。

In this case, 'License' shouldn't be translated and it should be
 (JAPANESE)「名前」フィールドに「License」と記入します。

However, I can't find this translation in Pootle and I don't know where it comes
from. Could you fix it, tell us how we can fix it or assign it to an appropriate
person?

Regards,

-
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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 103200] Wrong order of First/Last Name in CJK UI

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





--- Additional comments from bluedw...@openoffice.org Fri Jul  3 19:35:35 
+ 2009 ---
bluedwarf - mba: I can help you fix this issue. I will create a small patch for
CJK locales to solve this problem like ru locale.

-
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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 103200] Wrong order of First/Last Name in CJK UI

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


User bluedwarf changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |63357)
The patch to swap t
|  |he positions of last name 
|  |field and first name field
|  | in ja, ko, zh-CN and zh-T
|  |W locales.






--- Additional comments from bluedw...@openoffice.org Fri Jul  3 22:08:49 
+ 2009 ---
Created an attachment (id=63357)
The patch to swap the positions of last name field and first name field in ja, 
ko, zh-CN and zh-TW locales.


-
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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 103200] Wrong order of First/Last Name in CJK UI

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


User bluedwarf changed the following:

What|Old value |New value

 Assigned to|bluedwarf |mba





--- Additional comments from bluedw...@openoffice.org Fri Jul  3 22:22:30 
+ 2009 ---
bluedwarf - mba: I attached the patch to swap positions of first name field and
last name one in CJK locales. Not only positions but also tab orders (ZOrder)
are changed according to relations of those fields to provide natual feels of
UI. For accuracy, I also checked that this patch didn't cause regression in
en-US, de and ru locales, which means it doesn't affect any other locales except
zh_CN, zh_TW, ja, ko. Please check it out and integrate it in OOo source tree.

FYI: You can download the binaries I built and used for test;
http://ooopackages.good-day.net/pub/OpenOffice.org/Windows/i103200/

You can also find the results of this patches. I took some screenshots of
options dialog below;
http://ooopackages.good-day.net/pub/OpenOffice.org/Windows/i103200/results/


-
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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[graphics-issues] [Issue 100138] Reconversion in Draw/Impr ess

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


User bluedwarf changed the following:

What|Old value |New value

  Status|VERIFIED  |CLOSED





--- Additional comments from bluedw...@openoffice.org Thu Jul  2 19:00:34 
+ 2009 ---
I built DEV300_m51 and verified that the reconversion feature in Impress/Draw
was enabled. Thank you for your cooperation.

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



[l10n-issues] [課題 103200] Wrong order of First/La st Name in CJK UI

2009-06-30 Thread bluedwarf
http://www.openoffice.org/issues/show_bug.cgi?id=103200



ユーザ bluedwarf は、次を変更しました:

  内容|古い値 |新しい値

  CC|'blueice7,enoki,kamataki,k|'bluedwarf,blueice7,enoki,
|hirano,pb'|kamataki,khirano,pb'





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


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



[sw-issues] [Issue 101419] remove note's code for re conversion

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





--- Additional comments from bluedw...@openoffice.org Fri Jun 19 17:39:00 
+ 2009 ---
bluedwarf-mod: Thank you for you kind attention. I can compile and verify by
myself. Once you finished, please assign it to me.

-
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



[l10n-issues] [Issue 74034] Alternative BreakIterator_ ja based on morphological analysis

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





--- Additional comments from bluedw...@openoffice.org Fri Jun 12 17:29:14 
+ 2009 ---
I'm still here. Thank you for you kind assistance.

Your plan seems good, go on. If you have some problems in my patch, let me know
and I will take care of 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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 102190] Links among localized wik i pages about template site

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


User bluedwarf changed the following:

What|Old value |New value

  CC|''|'tbo'

  Status|RESOLVED  |VERIFIED





--- Additional comments from bluedw...@openoffice.org Tue May 26 23:01:10 
+ 2009 ---
I confirmed all languages are added correctly.

-ccornell: Now I understand the reason why they couldn't be shown in the right
way. Thank you for your kind help!

-tbo: I need to report to you. Thanks to ccornell's help, it works now.
I also wrote an instruction to add a new language to this template page.
Please look over this page;
http://wiki.services.openoffice.org/wiki/Templates/website/translation


-
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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 102190] Links among localized wik i pages about template site

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


User bluedwarf changed the following:

What|Old value |New value

 Assigned to|bluedwarf |ccornell





--- Additional comments from bluedw...@openoffice.org Mon May 25 21:48:24 
+ 2009 ---
Thank you for your kind reply.
Done, but it still has a problem that some languages are not shown correctly.

-ccornell: Could you take care of this issue or assign it to another
appropriate person? We would like links to all translated pages in the following
template. But some languages commented out were displayed in the wrong way when
I removed the comment marks. They were in the body (with dead links) instead of
the left box named in other languages.

http://wiki.services.openoffice.org/wiki/Template:Templates/website/guide


-
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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 99821] Template site translation request for language JA

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


User bluedwarf changed the following:

What|Old value |New value

  CC|'foral,maho,reikobovee,sou|'bluedwarf,foral,maho,reik
|ndbox,takaya,toshibo' |obovee,soundbox,takaya,tos
|  |hibo'





--- Additional comments from bluedw...@openoffice.org Sun May 24 13:09:35 
+ 2009 ---
FYI: I just added links between the English guide and the translated guide.


-
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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 102190] Links among localized wik i pages about template site

2009-05-24 Thread bluedwarf
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=102190
 Issue #|102190
 Summary|Links among localized wiki pages about template site
   Component|l10n
 Version|current
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|ui
 Assigned to|tbo
 Reported by|bluedwarf





--- Additional comments from bluedw...@openoffice.org Sun May 24 14:00:22 
+ 2009 ---
Could you add links among localized wiki pages about template site?

Now we have many translated pages of the following page.
http://wiki.services.openoffice.org/wiki/Templates/website/guide
But they are not accessiable because the links among those pages don't exist.

I think OOoWiki template will greatly help you, or editing language box can be
another solution. I can help you add all languages to the language box.

Regards,

-
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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[graphics-issues] [Issue 100138] Reconversion in Draw/Impr ess

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





--- Additional comments from bluedw...@openoffice.org Wed Apr 22 20:34:43 
+ 2009 ---
Yes. To be precise, those methods will be called when WM_IME_REQUEST message
with a reconversion request is sent by Windows OS.

Thank you for your cooperation.


-
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 100138] Reconversion in Draw/Impr ess

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





--- Additional comments from bluedw...@openoffice.org Wed Apr 15 14:15:30 
+ 2009 ---
-cl:

The patches I filed are the complete set and they should give an actual
functionality to the user. I think you might have some wrong steps while you was
trying that functionality. How did you try to reconvert Kanji characters?
In i93924, I wrote some hints for non-Japanese developers or testers to
reconvert Kanji characters, quoted below;

 If you have MS-IME installed and activated, you can experience the
 reconversion without Japanese keyboard. The first thing you have to do
 before the reconversion, if you do not have Japanese keyboard, is that
 assign a key combination to reconversion with the property editor of
 MS-IME like the following image;
 http://www.openoffice.org/nonav/issues/showattachment.cgi/56477/ime_properties.PNG
 
 Then, the assigned key combination emits the reconversion message in
 Writer window. If you have any text in your documents and the cursor is
 in it, the candidate window emerges, or in other words, the reconversion
 starts.

 FYI, you can find the screenshots of the reconversion process in Notepad of
 Windows, in the following document.

http://www.openoffice.org/nonav/issues/showattachment.cgi/57265/sample_and_test_i72022.odt

To check if MS-IME is activated in your computer and reconversion is avilable,
you should try reconversion in Notepad by following the instructions above.
Unless you have a problem with reconversion in Notepad, then please let me know.
In that case, I will investigate 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...@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 100138] Reconversion in Draw/Impr ess

2009-03-11 Thread bluedwarf
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=100138
 Issue #|100138
 Summary|Reconversion in Draw/Impress
   Component|Drawing
 Version|DEV300m42
Platform|All
 URL|
  OS/Version|Windows, all
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|PATCH
Priority|P3
Subcomponent|code
 Assigned to|graphicsneedsconfirm
 Reported by|bluedwarf





--- Additional comments from bluedw...@openoffice.org Thu Mar 12 02:44:31 
+ 2009 ---
I am filing this issue to provide a patch to add Japanese reconversion feature
to Draw and Impress.

Japanese reconversion is planned to be supported since 3.1. In the first stage,
the reconversion is available in the limited areas like Writer body and note.
You can find the general information about Japanese reconversion for OOo and
development statuses in OOo's wiki;
http://wiki.services.openoffice.org/wiki/Japanese_Reconversion. Please see it to
know the detail of Japanese reconversion.

By applying the two following patches, you can start Japanese reconversion in
Draw and Impress. Additionaly, the patch for svx module includes general
reconversion support for other widgets and application in OOo. It will boost the
support of reconversion on the board and contribute to the code-sharing.

Could you deal with these patches at your earliest covenience so that it will be
available since the next version (3.2)? Thank you for your cooperation.

-
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 100138] Reconversion in Draw/Impr ess

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


User bluedwarf changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |60892)
Reconversion suppor
|  |t on svx module.






--- Additional comments from bluedw...@openoffice.org Thu Mar 12 02:46:53 
+ 2009 ---
Created an attachment (id=60892)
Reconversion support on svx module.


-
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 100138] Reconversion in Draw/Impr ess

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


User bluedwarf changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |60893)
Reconversion suppor
|  |t for Draw and Impress.






--- Additional comments from bluedw...@openoffice.org Thu Mar 12 02:47:48 
+ 2009 ---
Created an attachment (id=60893)
Reconversion support for Draw and Impress.


-
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



[l10n-issues] [Issue 97994] [JA] Inconsistent translat ion in arrange submenu

2009-01-12 Thread bluedwarf
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=97994
 Issue #|97994
 Summary|[JA] Inconsistent translation in arrange submenu
   Component|l10n
 Version|OOo 3.0
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|ui
 Assigned to|yuko
 Reported by|bluedwarf





--- Additional comments from bluedw...@openoffice.org Mon Jan 12 17:11:44 
+ 2009 ---
I found the inconsistent translation in arrange submenu.
Arrange submenu can be shown by clicking the right mouse button on some
drawing object in Draw or Impress. You can also see the submenu in Writer, when
you select two or more drawing objects and click the right mouse button there.

The content of the menu in Draw and Impress is shown below;
 * 左
 * 中央揃え
 * 右揃え
 * 上揃え
 * 中央揃え
 * 下揃え

And the content of the equivalent menu in Writer is shown below;
 * 左
 * 中央
 * 右
 * 最上部
 * 中央
 * 最下部

They are different, while English versions have the unified message in the menu
like;
 * Left
 * Centered
 * Right
 * Top
 * Center
 * Bottom

Additionaly, it seems that the behavior raised by clicking one of the items in
arrange submenu of Draw and Impress is the same as one raised by clicking
counterpart of Writer. Therefore, Japanese versions should have consistent
translation.

I give you a suggestion about this issue. They should be translated like the
list below, because the word 揃え indicates the actual action happened by
choosing these items. Users will intuitively understand the meaning of them.

 * Left  - 左揃え
 * Centered  - 中央揃え
 * Right - 右揃え
 * Top   - 上揃え
 * Center- 中央揃え
 * Bottom- 下揃え

However, we still have a controversial problem. Can we have the same translaiton
for the two different words Centered and Center? If we should have unequal
translations, I suggest the alternative translations following;

 * Left  - 左揃え
 * Centered  - 中央揃え(水平)
 * Right - 右揃え
 * Top   - 上揃え
 * Center- 中央揃え(垂直)
 * Bottom- 下揃え

-
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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 97997] [JA] Inconsistent translat ion of the items in Wrap menu of Writer.

2009-01-12 Thread bluedwarf
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=97997
 Issue #|97997
 Summary|[JA] Inconsistent translation of the items in Wrap m
|enu of Writer.
   Component|l10n
 Version|OOo 3.0
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|ui
 Assigned to|yuko
 Reported by|bluedwarf





--- Additional comments from bluedw...@openoffice.org Mon Jan 12 17:27:54 
+ 2009 ---
I found inconsistent translation of the items in Wrap menu of Writer.

Wrap(折り返し) menu is a submenu of an object in Writer. You can see it by
clicking a right mouse button on a drawing or other object. It can be seen by
selecting Format(書式) menu in Writer's menu bar, too.

You can find the two items ページの折り返し and 最適なページ折り返し in 書
式 - 折り返し, but the translation doesn't make sence. They should have the
same message as ones in the context menu like 両側折り返し and 左右動的折り返し.

-
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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 97998] [JA] Inconsistent translat ion of the items in Anchor menu of Writer.

2009-01-12 Thread bluedwarf
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=97998
 Issue #|97998
 Summary|[JA] Inconsistent translation of the items in Anchor
| menu of Writer.
   Component|l10n
 Version|OOo 3.0
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|ui
 Assigned to|yuko
 Reported by|bluedwarf





--- Additional comments from bluedw...@openoffice.org Mon Jan 12 17:41:22 
+ 2009 ---
I found inconsistent translation of the items in Anchor menu of Writer.

Anchor(アンカー) menu is a submenu of an object in Writer. You can see it by
clicking a right mouse button on a drawing or other object. It can be seen by
selecting Format(書式) menu in Writer's menu bar, too.

They have slightly different translations. The top 3 items of アンカー menu
shown from the context menu have a character に in the tail like ページに,
while ones of 書式 - アンカー menu have a character へ in the tail like 
ページへ.

They are trivial differences, but OpenOffice.org should have the exactly sole
translation to functionally-equivalent items.

-
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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 97999] [JA] Reverse sequence of a lternative key indicator and ... in a Japane se menu item

2009-01-12 Thread bluedwarf
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=97999
 Issue #|97999
 Summary|[JA] Reverse sequence of alternative key indicator and
| ... in a Japanese menu item
   Component|l10n
 Version|OOo 3.0
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|ui
 Assigned to|yuko
 Reported by|bluedwarf





--- Additional comments from bluedw...@openoffice.org Mon Jan 12 17:51:49 
+ 2009 ---
Launch Impress of Japanese edition, and look at the bottom item in スライド
ショー(S) menu. The string of the item is 目的別スライドショー...(C), but it
should be 目的別スライドショー(C) The alternative key indicator (C) and
a dialog indicator ... should be arranged in this order along with 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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 98001] [JA] The tail of translate d message is cut off in Printer Options dialog of Writer

2009-01-12 Thread bluedwarf
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=98001
 Issue #|98001
 Summary|[JA] The tail of translated message is cut off in Prin
|ter Options dialog of Writer
   Component|l10n
 Version|OOo 3.0
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|ui
 Assigned to|yuko
 Reported by|bluedwarf





--- Additional comments from bluedw...@openoffice.org Mon Jan 12 18:17:16 
+ 2009 ---
We have items End of document and End of page in Printer Options dialog of
Writer. Now the items are translated to ドキュメント末 and ページ末
respectively, but, at least, they should be ドキュメント末尾 and ページ末尾
because a single character 末 is not a complete word in this case.

However, I have another suggestion. In consideration of the actual behaviors
happened by selecting these items, they should be ドキュメントの最後 and ペー
ジごと.

ドキュメント末尾 seems to indicate that notes are printed within a document at
the end, but in reality, they are printed in separated pages after printing its
body. ページ末尾 also seems to indicate that notes are printed within each
page like footnote, but it is really different. Each separated note page is
printed respectively after the corresponding body page is printed. For above
reasons, they should be translated to ドキュメントの最後 and ページごと.

-
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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 98001] [JA] The tail of translate d message is cut off in Printer Options dialog of Writer

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





--- Additional comments from bluedw...@openoffice.org Mon Jan 12 18:20:18 
+ 2009 ---
Created an attachment (id=59332)
A picture of Printer Options dialog of Writer taken with OOo 3.0 Japanese 
edition.


-
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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[sc-issues] [Issue 98003] Contrary message in popup window of Maximize button

2009-01-12 Thread bluedwarf
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=98003
 Issue #|98003
 Summary|Contrary message in popup window of Maximize button
   Component|Spreadsheet
 Version|OOo 3.0
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|ui
 Assigned to|spreadsheet
 Reported by|bluedwarf





--- Additional comments from bluedw...@openoffice.org Mon Jan 12 18:51:38 
+ 2009 ---
I found contrary message in popup window of Maximize button located in
shrinked Conditional Formatting dialog. This can be reproduced by following the
procedure below;

1. Launch Calc and select Format - Conditional Formatting... to show
Conditional Formatting dialog.
2. Click Shrink button to make the dialog small.
3. Put the cursor on Maximize button in the shrinked dialog.
 = You see wrong popup message Shrink.

The message should be Maximize which is the same as one of the equivalent
button in Function Wizard.

-
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 98003] Contrary message in popup window of Maximize button

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





--- Additional comments from bluedw...@openoffice.org Mon Jan 12 18:57:01 
+ 2009 ---
Created an attachment (id=59334)
The picture of wrong popup messagein shrinked Conditional Formatting dialog.


-
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



[l10n-issues] [Issue 98004] [JA] Incoherent translatio n in Chart Wizard

2009-01-12 Thread bluedwarf
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=98004
 Issue #|98004
 Summary|[JA] Incoherent translation in Chart Wizard
   Component|l10n
 Version|OOo 3.0
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|ui
 Assigned to|yuko
 Reported by|bluedwarf





--- Additional comments from bluedw...@openoffice.org Mon Jan 12 19:12:00 
+ 2009 ---
I found incoherent Japanese translations in Chart Wizard.
In the first step of the wizard, we choose a chart type, but the traslation of
chart type name is completely strange. We have three wrong translations and I
have amendments below;

1. 列 (Column)

列 doesn't make sense in this case. Its translation should be 縦棒, which
means vertical bars. It must be the exact translation.

2. 縦棒 (Bar)

It is completely wrong translation. We get a horizontal bar chart by selecting
this type. Therefore, it should be 横棒, which means horizontal bars directly.

3. レーダー網 (Net)

This Japanese word means real rader fence used by air control or sea control. It
should be レーダーチャート, which is a word commonly used in Japan.

Note that all of my suggestion also improves the compatibility with Microsoft
Excel. The same translation makes it easy to replace Microsoft Excel by
OpenOffice.org 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: issues-unsubscr...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 98004] [JA] Incoherent translatio n in Chart Wizard

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





--- Additional comments from bluedw...@openoffice.org Mon Jan 12 19:14:46 
+ 2009 ---
Created an attachment (id=59335)
The first step of Chart Wizard with wrong Japanese translations (OOo 3.0 
Japanese edtion).


-
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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[graphics-issues] [課題 84417] Unable to edit existing chart title with IME or clipboard

2009-01-07 Thread bluedwarf
http://www.openoffice.org/issues/show_bug.cgi?id=84417



ユーザ bluedwarf は、次を変更しました:

  内容|古い値 |新しい値

  CC|'amy2008,freemant,iha,kama|'amy2008,bluedwarf,freeman
|taki,masayan,sba,tl,weiz' |t,iha,kamataki,masayan,sba
|  |,tl,weiz'





-
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



[sw-issues] [Issue 93924] Reconversion in Writer

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


User bluedwarf changed the following:

What|Old value |New value

  CC|'catch,kamataki,masayan,mo|'catch,kamataki,masayan,mo
|d'|d,os'





--- Additional comments from bluedw...@openoffice.org Wed Jan  7 19:52:18 
+ 2009 ---
Oops. The last patch I attached was wrong. As its name
postit_reconv_for_dev300_m35.patch says, it is a patch to enable reconversion
in Note treated in issue 94374.

It's all my fault. I might mistake two patches. CWS os123 seemed to integrate
sw_reconversion_third.patch. It still has the problem that long selection range
may disorient the reconversion process in main window of Writer application. 

The latest patch that solves the problem will be attached in another issue soon.
Please take care of it. Best regards,


-
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 97850] Patches for reconverting l ong range in Writer

2009-01-07 Thread bluedwarf
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=97850
 Issue #|97850
 Summary|Patches for reconverting long range in Writer
   Component|Word processor
 Version|DEV300m35
Platform|All
 URL|
  OS/Version|Windows, all
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|PATCH
Priority|P3
Subcomponent|code
 Assigned to|os
 Reported by|bluedwarf





--- Additional comments from bluedw...@openoffice.org Wed Jan  7 19:57:49 
+ 2009 ---
Relating to issue 93924, I will attach a patch to solve the problem that long
selection range may disorient the reconversion process in main window of Writer
application.

The patch is created based on the DEV300_m35 code tree.

-
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 97850] Patches for reconverting l ong range in Writer

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


User bluedwarf changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |59225)
Patch to solve the 
|  |long range reconvertion pr
|  |oblem.






--- Additional comments from bluedw...@openoffice.org Wed Jan  7 19:59:52 
+ 2009 ---
Created an attachment (id=59225)
Patch to solve the long range reconvertion 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: 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 93924] Reconversion in Writer

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





--- Additional comments from bluedw...@openoffice.org Wed Jan  7 20:07:37 
+ 2009 ---
I filed the right patch to issue 97850 for the long range reconvertion problem. 
Could you please take it in consideration?

I might mistake them because they have similar names. I'm sorry.


-
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 97850] Patch for reconverting lon g range in Writer

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


User bluedwarf changed the following:

What|Old value |New value

 Summary|Patches for reconverting l|Patch for reconverting lon
|ong range in Writer   |g range in Writer





--- Additional comments from bluedw...@openoffice.org Wed Jan  7 20:15:16 
+ 2009 ---
bluedwarf-os: Can you make this change for 3.1? I would like you to take it
into account soon.

Best regards,

-
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 94374] Reconversion in Note of Wr iter

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





--- Additional comments from [EMAIL PROTECTED] Thu Nov 27 19:53:10 + 
2008 ---
bluedwarf-masayan: Thank you for your verification.

bluedwarf-mod: Please go ahead to integrate the current patch verified by
masayan for 3.1. You may have another guess, but the solution using
EditEngine/EditView will be planned for 3.2. It takes much time so I will file
another issue for your proposed idea, 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]



[l10n-issues] [Issue 81366] New transliteration module s for Japanese

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


User bluedwarf changed the following:

What|Old value |New value

  Status|VERIFIED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Mon Nov 24 20:14:29 + 
2008 ---
I found this change in the latest product release.
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]



[lingucomponent-issues] [Issue 76970] Compilation error in hunsp ell.cxx

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


User bluedwarf changed the following:

What|Old value |New value

  Status|VERIFIED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Mon Nov 24 20:16:03 + 
2008 ---
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]



[sw-issues] [Issue 94374] Reconversion in Note of Wr iter

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


User bluedwarf changed the following:

What|Old value |New value

 Assigned to|bluedwarf |masayan





--- Additional comments from [EMAIL PROTECTED] Mon Nov 17 11:55:51 + 
2008 ---
bluedwarf-masayan: Please verify this change with the following build;
http://ooopackages.good-day.net/pub/OpenOffice.org/Windows/reconv/DEV300_cws_notes7.zip
MD5SUM: 14c7bbac95cc67001f6d37422417da18

bluedwarf-mod: Informative. Now I am planning to implement the same
functionality for Calc, Impress and Draw. Your information greatly helps me to
do it quickly. Thank you for your advice.



-
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 93924] Reconversion in Writer

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





--- Additional comments from [EMAIL PROTECTED] Thu Nov 13 13:18:04 + 
2008 ---
-os:
Thank you for the integration.

If you have MS-IME installed and activated, you can experience the reconversion
without Japanese keyboard. The first thing you have to do before the
reconversion, if you do not have Japanese keyboard, is that assign a key
combination to reconversion with the property editor of MS-IME like the
following image;
http://www.openoffice.org/nonav/issues/showattachment.cgi/56477/ime_properties.PNG

Then, the assigned key combination emits the reconversion message in Writer
window. If you have any text in your documents and the cursor is in it, the
candidate window emerges, or in other words, the reconversion starts.

FYI, you can find the screenshots of the reconversion process in Notepad of
Windows, in the following document.
http://www.openoffice.org/nonav/issues/showattachment.cgi/57265/sample_and_test_i72022.odt

-
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 93924] Reconversion in Writer

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





--- Additional comments from [EMAIL PROTECTED] Thu Nov 13 14:51:47 + 
2008 ---
-os: Good. I am looking forward to 3.1. Thank you for  your assistance.


-
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 94374] Reconversion in Note of Wr iter

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


User bluedwarf changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |57956)
The new patch for D
|  |EV300_m35 including a fix.
|  |






--- Additional comments from [EMAIL PROTECTED] Thu Nov 13 04:09:53 + 
2008 ---
Created an attachment (id=57956)
The new patch for DEV300_m35 including a 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 94374] Reconversion in Note of Wr iter

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





--- Additional comments from [EMAIL PROTECTED] Thu Nov 13 04:14:52 + 
2008 ---
Vcl95 was integrated into the main stream and I confirmed it is available from
DEV300_m35. Could you please go on making this patch integrated for 3.1?

The new patch was created based on DEV300_m35, which also includes the small fix
that corrects the problem reported by Kazuhiro Nisiyama.
http://ja.openoffice.org/servlets/ReadMsg?listName=discussmsgNo=17624


-
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 81560] ja: Missing Japanese messa ges on Axes dialog

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


User bluedwarf changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED





--- Additional comments from [EMAIL PROTECTED] Thu Nov 13 04:18:58 + 
2008 ---
Sorry for leaving this issue open. 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]



[l10n-issues] [Issue 81560] ja: Missing Japanese messa ges on Axes dialog

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


User bluedwarf changed the following:

What|Old value |New value

  Status|VERIFIED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Thu Nov 13 04:20:42 + 
2008 ---
I also confirmed that this fix kept in the latest version.

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]



[sw-issues] [Issue 93924] Reconversion in Writer

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





--- Additional comments from [EMAIL PROTECTED] Thu Nov 13 04:21:55 + 
2008 ---
Created an attachment (id=57957)
The new patch that solves the problem reported by matuaki.


-
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 93924] Reconversion in Writer

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





--- Additional comments from [EMAIL PROTECTED] Thu Nov 13 04:42:30 + 
2008 ---
Sorry for my late reply. I uploaded the new patch that solves the problem that
long selection range may disorient the reconversion process.

I am afraid that the Feature Freeze date for the next version is approaching and
this feature will be spilled from 3.1. I recognize this feature is one of the
most important function as I stated in [EMAIL PROTECTED] I absolutely want to 
complete
this issue before the date.

I failed in seeking the QA-rep who can handle the Japanese specific issues, but
some Japanese N-L members are eager to help confiming my patch. So could you
please integrate this patch into a CWS for 3.1, and if you we have no
appropriate QA-rep for this issue, please delegate QA and verification to
someone only for this issue. I will call for the person for QA in Japanese N-L
mailing list.




-
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 72022] Reconvert string

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


User bluedwarf changed the following:

What|Old value |New value

  Status|VERIFIED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Tue Nov 11 02:48:49 + 
2008 ---
Integrated in DEV300_m35. 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]



[gsl-issues] [Issue 94441] Additional command for rec onversion

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


User bluedwarf changed the following:

What|Old value |New value

  Status|VERIFIED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Tue Nov 11 02:49:55 + 
2008 ---
Found it integrated in DEV300_m35. 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]



[gsl-issues] [Issue 94762] Reconversion failure on Vi sta

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


User bluedwarf changed the following:

What|Old value |New value

  Status|VERIFIED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Tue Nov 11 02:50:30 + 
2008 ---
Found it integrated in DEV300_m35. 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]



[gsl-issues] [Issue 94762] Reconversion failure on Vi sta

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


User bluedwarf changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED





--- Additional comments from [EMAIL PROTECTED] Tue Oct 21 18:20:36 + 
2008 ---
I am sorry, too. I forgot the switch of the version control systems.

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]



[gsl-issues] [Issue 72022] Reconvert string

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


User bluedwarf changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED





--- Additional comments from [EMAIL PROTECTED] Sun Oct 19 09:18:37 + 
2008 ---
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]



[gsl-issues] [Issue 72022] Reconvert string

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





--- Additional comments from [EMAIL PROTECTED] Sun Oct 19 09:19:48 + 
2008 ---
Created an attachment (id=57265)
The sample document and test instruction 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: [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 72022] Reconvert string

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





--- Additional comments from [EMAIL PROTECTED] Sun Oct 19 09:33:35 + 
2008 ---
bluedwarf-sba: Please read the attached document for test reconversion feature.
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: [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 94441] Additional command for rec onversion

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


User bluedwarf changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED





--- Additional comments from [EMAIL PROTECTED] Sun Oct 19 09:20:16 + 
2008 ---
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]



[gsl-issues] [Issue 94762] Reconversion failure on Vi sta

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


User bluedwarf changed the following:

What|Old value |New value

  Status|RESOLVED  |REOPENED

  Resolution|FIXED |





--- Additional comments from [EMAIL PROTECTED] Sun Oct 19 09:27:25 + 
2008 ---
I could not find the attached patch is applied to salframe.cxx of CWS vcl95.
Please commit correctly.

c.f.
http://gsl.openoffice.org/source/browse/gsl/vcl/win/source/window/salframe.cxx?view=logonly_with_tag=cws_dev300_vcl95

-
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 72022] Reconvert string

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





--- Additional comments from [EMAIL PROTECTED] Fri Oct 17 13:46:02 + 
2008 ---
bluedwarf-pl:
OK. I will build vcl95 and verify issues related to reconversion, but I am
sorry, I am now busy with my main job, so it might take some days to complete
them. Please be patient. Thank you for your patience.

bluedwarf-sba:
Thank you for your interest in testing this issue.
Do you have MS-IME installed on your computer? If so, I will attach a sample
document and tell you test steps after my verification.

-
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 94374] Reconversion in Note of Wr iter

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


User bluedwarf changed the following:

What|Old value |New value

  CC|'masayan' |'catch,masayan'





--- Additional comments from [EMAIL PROTECTED] Wed Oct 15 19:24:15 + 
2008 ---
Thank you for your consideration.

I have already provided some builds that include all patches related to
reconversion for Japanese N-L project. The purpose of these builds are mainly
test and user feedback. If you need, I can bring up a combined build of notes7
and vcl95 for QA.

However, due to the quality matter, I recommend you wait until vcl95 is
available in the master work space. The reconversion functionality strongly
depends on the lower level layer VCL. Some people already found the defects that
was cause by a bug in my patch of VCL and I contributed an additional patch to
correct these defects, which was accepcted in vcl95. In this way, if somebody
find a bug in VCL until vcl95 is integrated in the master, I will write a patch
for vcl95, so please wait it.

Fortunately, catch, a member of Japanese N-L project, is willing to verify
issues related to reconversion. If you or I provide a build, he might do 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]



[sw-issues] [Issue 93924] Reconversion in Writer

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


User bluedwarf changed the following:

What|Old value |New value

  CC|'kamataki,masayan,mod'|'catch,kamataki,masayan,mo
|  |d'





--- Additional comments from [EMAIL PROTECTED] Wed Oct 15 19:40:25 + 
2008 ---
- os: A new defect were found by matuaki, a member of Japanese N-L project.
This problem happends in case that the selection range is too wide. Now I am
investigating this problem and I will upload a corresponding patch ASASP.




-
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 94762] Reconversion failure on Vi sta

2008-10-07 Thread bluedwarf
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=94762
 Issue #|94762
 Summary|Reconversion failure on Vista
   Component|gsl
 Version|OOO300m5
Platform|All
 URL|
  OS/Version|Windows Vista
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|PATCH
Priority|P3
Subcomponent|code
 Assigned to|pl
 Reported by|bluedwarf





--- Additional comments from [EMAIL PROTECTED] Wed Oct  8 02:38:26 + 
2008 ---
Matuaki and Masaya reported that my reconversion patch provided in issue 72022
and issue 94441 does not work on Windows Vista. According to their reports, in
some cases, the reconversion process suddenly quits in the middle and undesired
strings are inserted 3 times.
http://ja.openoffice.org/servlets/ReadMsg?list=discussmsgNo=17553
http://ja.openoffice.org/servlets/ReadMsg?list=discussmsgNo=17568

After the investigation and reading related documents, I found this problem
occured when TSF (Text Service Framework) is active, which is introduced as a
substitute for the old text input system like IMM32 since Windows XP SP1. TSF is
not active on Windows XP by default, but, unfortunately, it is active on Windows
Vista by default. So the 2 reporters found this problem happens on Windows
Vista. It seems to be a serious bug of reconversion.

This issue can be solved by handling IMR_CONFIRMRECONVERTSTRING request. I am
sorry for my mistake of the former patches, but this solution is more
appropriate than calling ImmSetCompositionString() function while handling
IMR_RECONVERTSTRING. The corresponding patch will be attaches here soon. I hope
it will be commited in vcl95.

-
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 94762] Reconversion failure on Vi sta

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


User bluedwarf changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |57056)
The patch against v
|  |cl95 branch, which handles
|  | IMR_CONFIRMRECONVERTSTRIN
|  |G request.






--- Additional comments from [EMAIL PROTECTED] Wed Oct  8 02:40:02 + 
2008 ---
Created an attachment (id=57056)
The patch against vcl95 branch, which handles IMR_CONFIRMRECONVERTSTRING 
request.


-
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 94374] Reconversion in Note of Wr iter

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





--- Additional comments from [EMAIL PROTECTED] Wed Oct  1 23:08:46 + 
2008 ---
Created an attachment (id=56968)
The new patch that respond to the new command COMMAND_PREPARERECONVERSION.


-
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 94374] Reconversion in Note of Wr iter

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





--- Additional comments from [EMAIL PROTECTED] Wed Oct  1 23:11:04 + 
2008 ---
The new patch responds to the new command COMMAND_PREPARERECONVERSION added in
issue 94441. In this modification, the part of code that changes member
variables is moved from the const method, GetSurroundingText(), to the
appropriate method.


-
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 93924] Reconversion in Writer

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


User bluedwarf changed the following:

What|Old value |New value

 IssuesThisDependsOn|72022 |72022,94441



This issue depends on issue 94441, which changed state:

What|Old value |New value

  Status|UNCONFIRMED   |NEW

  Status|NEW   |RESOLVED

  Resolution|  |FIXED





--- Additional comments from [EMAIL PROTECTED] Tue Sep 30 18:58:54 + 
2008 ---
-os, mod: I posted the E-mail in Japanese N-L mailing list where I called on
someone to cooperate with solving this issue as a QA member. Please be patient.
If no Japanese handles this issue for QA, then I will call for the QA's
contribution to this issue in other mailing lists.

BTW, the patch will be updated soon. The current patch has 2 problem, which will
be solved by the new patch. One is wrong behavior in the condition that users
have multiple selections and the last one covers multiple paragraphs. In that
case, the new patch stops reconversion process.

The second problem does not affect on any action related to reconversion. In the
current patch, GetSurroundingText() is defined as a const method, but it may
change selection range before reconversion starts. So I moved this changing
selection code to the appropriate location. This modification depends on i94441
where I added new command COMMAND_PREPARERECONVERSION. The new patch responds to
this command by changing selection before reconversion.







-
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 94441] Additional command for rec onversion

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


User bluedwarf changed the following:

What|Old value |New value

OtherIssuesDependingOnTh|  |93924
  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: [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 93924] Reconversion in Writer

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


User bluedwarf changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |56932)
The new patch that 
|  |solves two freshly-discove
|  |red problems.






--- Additional comments from [EMAIL PROTECTED] Tue Sep 30 19:00:00 + 
2008 ---
Created an attachment (id=56932)
The new patch that solves two freshly-discovered problems.


-
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 94441] Additional command for rec onversion

2008-09-29 Thread bluedwarf
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=94441
 Issue #|94441
 Summary|Additional command for reconversion
   Component|gsl
 Version|OOO300m5
Platform|All
 URL|
  OS/Version|Windows, all
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|PATCH
Priority|P3
Subcomponent|code
 Assigned to|pl
 Reported by|bluedwarf





--- Additional comments from [EMAIL PROTECTED] Mon Sep 29 19:08:45 + 
2008 ---
I have added an additional command for reconversion.

The former patch provided in i72022 just calles GetSurroudingText() and
GetSurroundingTextSelection() without any preprocessing when a reconversion
request is posted. Howerer, reconversion may sometimes need preprocessing like
changing selection if the selection ranges from one paragraph to another in 
Writer.

The patch I will attach later soon adds the code to call a command to request
every widgets to prepare for reconversion. This is a so small change that I hope
this will be integrated in CWS as soon as possible.

Regards,

-
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 94441] Additional command for rec onversion

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


User bluedwarf changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |56908)
A patch to cws_dev3
|  |00_vcl95.






--- Additional comments from [EMAIL PROTECTED] Mon Sep 29 19:10:07 + 
2008 ---
Created an attachment (id=56908)
A patch to cws_dev300_vcl95.


-
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 93924] Reconversion in Writer

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





--- Additional comments from [EMAIL PROTECTED] Sun Sep 28 22:04:39 + 
2008 ---
-os: Does anybody verify the Japanese specific issues?
Those who have MS-IME installed and have ability to input Kanji should be able
to verify this issue.

I can write the document describing how it should work, but I'd rather not do 
so.
Is it required?


-
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 94374] Reconversion in Note of Wr iter

2008-09-26 Thread bluedwarf
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=94374
 Issue #|94374
 Summary|Reconversion in Note of Writer
   Component|Word processor
 Version|OOO300m5
Platform|All
 URL|
  OS/Version|Windows, all
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|PATCH
Priority|P3
Subcomponent|code
 Assigned to|ama
 Reported by|bluedwarf





--- Additional comments from [EMAIL PROTECTED] Sat Sep 27 00:01:04 + 
2008 ---
Related to this post[1], I will provide a patch to add reconversion feature in
Note of Writer 3.0. To understand what reconversion is and why reconversion is
required to OpenOffice.org, please see my post[2].

I hope you adopt my patch to the codeline for 3.1.

[1]http://sw.openoffice.org/servlets/ReadMsg?list=devmsgNo=2199
[2]http://sw.openoffice.org/servlets/ReadMsg?list=devmsgNo=2191

-
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 94374] Reconversion in Note of Wr iter

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





--- Additional comments from [EMAIL PROTECTED] Sat Sep 27 00:02:16 + 
2008 ---
Created an attachment (id=56855)
Reconversion feature for Note in Writer 3.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: [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 93924] Reconversion in Writer

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





--- Additional comments from [EMAIL PROTECTED] Sat Sep 27 00:08:43 + 
2008 ---
os: Could you please handle this issue to add the reconversion feature to OOo
3.1? i72022 has been already resolved that this issue depends on. There should
not be any problems.


-
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 94374] Reconversion in Note of Wr iter

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


User bluedwarf changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |56856)
Renewed patch






--- Additional comments from [EMAIL PROTECTED] Sat Sep 27 01:44:24 + 
2008 ---
Created an attachment (id=56856)
Renewed 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: [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 94374] Reconversion in Note of Wr iter

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





--- Additional comments from [EMAIL PROTECTED] Sat Sep 27 01:46:18 + 
2008 ---
The old patch does not work properly when user select multi line text.
The new one solve this problem.
Please take care of the new 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: [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   >