[Libreoffice-bugs] [Bug 56366] Titlebar clips Unicode characters from file name to 16 bits

2013-01-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56366

--- Comment #16 from ejectm...@me.com ---
Just installed version 3.6.4, and now I'm getting a title bar full of undefined
characters. It's better than Cyrillic. Thank you!

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 56366] Titlebar clips Unicode characters from file name to 16 bits

2012-11-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56366

--- Comment #14 from Roman Eisele  ---
(In reply to comment #13)
> It seems this bug isn't fixed after all. I just installed version 3.6.3.2
> yesterday and I'm still getting BMP characters in the title bar.

Well, Ivan’s patch was pushed only to the Master branch; so the bug is fixed,
of course, in the master (3.7) builds, but not in any 3.6 builds.


@ Ivan Timofeev, Stephan Bergmann:
Do you think it is save to backport the fix to the 3.6.x branch?
Then it would be very nice if you could do so ;-) Thank you!

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 56366] Titlebar clips Unicode characters from file name to 16 bits

2012-11-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56366

--- Comment #13 from ejectm...@me.com ---
It seems this bug isn't fixed after all. I just installed version 3.6.3.2
yesterday and I'm still getting BMP characters in the title bar.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 56366] Titlebar clips Unicode characters from file name to 16 bits

2012-10-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56366

--- Comment #12 from ejectm...@me.com ---
Wow! I expected this bug to languish in obscurity forever; instead it's been
fixed within five days. Thank you all so much! (I think, however, I'll wait
until the next stable release to download the fix.)

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 56366] Titlebar clips Unicode characters from file name to 16 bits

2012-10-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56366

Roman Eisele  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 56366] Titlebar clips Unicode characters from file name to 16 bits

2012-10-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56366

--- Comment #11 from Roman Eisele  ---
Created attachment 69324
  --> https://bugs.freedesktop.org/attachment.cgi?id=69324&action=edit
Screenshot showing bug 56366 fixed in LOdev 2012-10-30 on Mac OS X



VERIFIED as FIXED with LOdev 3.7.0.0.alpha0+ (Build ID: ce2690; pull time:
2012-10-30 00:06:37) on Mac OS X 10.6.8.

The same .odt file which showed a wrong title in older LibreOffice/LOdev
versions (see comment #4) now shows a correct window title when opened with the
newest Master (LOdev) daily build -- see attached screenshot.


@ Ivan Timofeev:
Thank you very much for fixing this issue!

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 56366] Titlebar clips Unicode characters from file name to 16 bits

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56366

Ivan Timofeev  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #9 from Ivan Timofeev  ---
OK, I have committed that. Thank you Stephan!

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 56366] Titlebar clips Unicode characters from file name to 16 bits

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56366

--- Comment #8 from Stephan Bergmann  ---
(In reply to comment #7)
> I found (at least one) place where characters get clipped:
>  TitleHelper::impl_convertURL2Title
> http://opengrok.libreoffice.org/xref/core/framework/source/fwe/helper/
> titlehelper.cxx#impl_convertURL2Title
> which uses INetURLObject, and it clips to 16bit, in our case it is line 3727:
>  aResult.append(sal_Unicode(nUTF32));
> http://opengrok.libreoffice.org/xref/core/tools/source/fsys/urlobj.cxx#3727
> 
> So, if I change it to use the proper conversion:
>  aResult.append(OUString(&nUTF32, 1));
> the title is alright.
> 
> Stephan,
> it that OK to teach INetURLObject::decode the full UTF-16 support?

That looks like a bug indeed.  There is OUStringBuffer.appendUtf32, so the best
fix appears to be to change both occurrences of

  aResult.append(sal_Unicode(nUTF32));

in INetURLObject::decode with

  aResult.appendUtf32(nUTF32);

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 56366] Titlebar clips Unicode characters from file name to 16 bits

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56366

Ivan Timofeev  changed:

   What|Removed |Added

 CC||sberg...@redhat.com

--- Comment #7 from Ivan Timofeev  ---
I found (at least one) place where characters get clipped:
 TitleHelper::impl_convertURL2Title
http://opengrok.libreoffice.org/xref/core/framework/source/fwe/helper/titlehelper.cxx#impl_convertURL2Title
which uses INetURLObject, and it clips to 16bit, in our case it is line 3727:
 aResult.append(sal_Unicode(nUTF32));
http://opengrok.libreoffice.org/xref/core/tools/source/fsys/urlobj.cxx#3727

So, if I change it to use the proper conversion:
 aResult.append(OUString(&nUTF32, 1));
the title is alright.

Stephan,
it that OK to teach INetURLObject::decode the full UTF-16 support?

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 56366] Titlebar clips Unicode characters from file name to 16 bits

2012-10-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56366

Roman Eisele  changed:

   What|Removed |Added

 CC||ke...@suse.cz,
   ||timofeev@gmail.com

--- Comment #6 from Roman Eisele  ---
@ Jan Holesovsky, Ivan Timofeev

Hi Jan and Ivan,

you have solved quite some UI issues. Could you please take a look at this
little, but annoying issue and try to find out if it is possible to improve the
current behaviour? Or, if some other developer could handle this?

I hope it is possible to fix this, because at least in the main text of a
Writer document LibreOffice handles the same characters which I used above
(comment #4: 𐄷𐄸𐄺𐄸𐄻𐄿) quite correctly, given that you have a font which contains
glyphs for these characters. So LibreOffice, at least Writer, actually *can*
handle Unicode characters beyond the BMP ... This is also confirmed by comment
#0.

Thank you very much!

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 56366] Titlebar clips Unicode characters from file name to 16 bits

2012-10-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56366

Roman Eisele  changed:

   What|Removed |Added

Summary|UI: Titlebar clips Unicode  |Titlebar clips Unicode
   |characters to 16 bits   |characters from file name
   ||to 16 bits
Version|3.6.2.2 release |3.3.0 release
  Component|Writer  |UI

--- Comment #5 from Roman Eisele  ---
Already REPRODUCIBLE in LibreOffice 3.3.0 (and 3.4.0 and 3.5.0) with exactly
the same result. -> Adapted “Version” field.

Also reproducible in Impress and Calc with exactly the same results, so
-> a general UI bug (adapted “Component” field).

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs