[Digikam-devel] [Bug 131920] New: Can't create preview folders with unicode carater name.

classic Classic list List threaded Threaded
7 messages Options
Reply | Threaded
Open this post in threaded view
|

[Digikam-devel] [Bug 131920] New: Can't create preview folders with unicode carater name.

Bugzilla from yannick.roehlly@free.fr
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
         
http://bugs.kde.org/show_bug.cgi?id=131920         
           Summary: Can't create preview folders with unicode carater name.
           Product: digikam
           Version: 0.9.0-beta1
          Platform: unspecified
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: normal
          Priority: NOR
         Component: general
        AssignedTo: digikam-devel kde org
        ReportedBy: yannick.roehlly free fr


Version:           0.9.0-beta1 (using KDE 3.5.4, Debian Package 4:3.5.4-3 (testing/unstable))
Compiler:          Target: powerpc-linux-gnu
OS:                Linux (ppc) release 2.6.18-rc3

Hi,

My locale is fr_FR.UTF-8. If I have a folder name with unicode characters, digikam can't create the thumbnails for PNG and GIF images (it shows a broken image icon). Although, for JPEG image it works.

This happens on PowerPC as well on i386.

Sincerely,

Yannick
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Digikam-devel] [Bug 131920] Can't create preview folders with unicode carater name.

Bugzilla from yannick.roehlly@free.fr
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
         
http://bugs.kde.org/show_bug.cgi?id=131920         




------- Additional Comments From yannick.roehlly free fr  2006-08-05 18:21 -------
It does not work for PNM too.

PS: The real title of the bug is "Can't create preview folders with unicode characters in the name."
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Digikam-devel] [Bug 131920] Can't create preview folders with unicode carater name.

Bugzilla from johann-nikolaus.andreae@nacs.de
In reply to this post by Bugzilla from yannick.roehlly@free.fr
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
         
http://bugs.kde.org/show_bug.cgi?id=131920         




------- Additional Comments From johann-nikolaus.andreae nacs de  2006-08-09 10:17 -------
I can confirm this problem with locale de_DE.UTF-8.
Tested with a PNG kde-icon.
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Digikam-devel] [Bug 131920] Can't create preview folders with unicode carater name.

Sebastian Roeder
In reply to this post by Bugzilla from yannick.roehlly@free.fr
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
         
http://bugs.kde.org/show_bug.cgi?id=131920         




------- Additional Comments From sebastian.roeder uni-bielefeld de  2006-08-09 12:31 -------
Could you guys please check my unicode related bug "Camera UI: renaming dialogue can't handle UTF-8 filenames" (http://bugs.kde.org/show_bug.cgi?id=131558) and provide some feedback there? Thanks in advance! Sero
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Digikam-devel] [Bug 131920] Can't create preview folders with unicode carater name.

Marcel Wiesweg
In reply to this post by Bugzilla from yannick.roehlly@free.fr
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
         
http://bugs.kde.org/show_bug.cgi?id=131920         




------- Additional Comments From marcel.wiesweg gmx de  2006-08-10 23:12 -------
SVN commit 571843 by mwiesweg:

Only use QFile::encodeName immediately for system calls.
DImg takes a QString, give it a QString.
Please test if this solves the UTF8 problems.

CCBUGS: 131920


 M  +1 -1      digikamthumbnail.cpp  


--- trunk/extragear/graphics/digikam/kioslave/digikamthumbnail.cpp #571842:571843
 @ -622,7 +622,7  @
 
 bool kio_digikamthumbnailProtocol::loadDImg(QImage& image, const QString& path)
 {
-    Digikam::DImg dimg_im(QFile::encodeName(path));
+    Digikam::DImg dimg_im(path);
 
     if (dimg_im.isNull())
     {
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Digikam-devel] [Bug 131920] Can't create preview folders with unicode carater name.

Bugzilla from yannick.roehlly@free.fr
In reply to this post by Bugzilla from yannick.roehlly@free.fr
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
         
http://bugs.kde.org/show_bug.cgi?id=131920         




------- Additional Comments From yannick.roehlly free fr  2006-08-11 16:30 -------
Le jeudi 10 août 2006 23:12, Marcel Wiesweg a écrit :
> Only use QFile::encodeName immediately for system calls.
> DImg takes a QString, give it a QString.
> Please test if this solves the UTF8 problems.

 
Hi Marceil,

That solve the problem here. Thanks.

Yannick
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Digikam-devel] [Bug 131920] Can't create preview folders with unicode carater name.

Marcel Wiesweg
In reply to this post by Bugzilla from yannick.roehlly@free.fr
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
         
http://bugs.kde.org/show_bug.cgi?id=131920         
marcel.wiesweg gmx de changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |FIXED



------- Additional Comments From marcel.wiesweg gmx de  2006-08-11 22:34 -------
*** Bug has been marked as fixed ***.
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel