[Bug 581207] Re: update-software-center does not work properly in Turkish locales

2011-09-19 Thread Ubuntu QA's Bug Bot
** Tags added: testcase -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/581207 Title: update-software-center does not work properly in Turkish locales To manage notifications about this bug go to: ht

[Bug 581207] Re: update-software-center does not work properly in Turkish locales

2010-07-02 Thread Olivier Tilloy
This occurrence is a known issue in python itself. A cheap workaround is to explicitly `import decimal` before setting the locale, at startup, even though we don't need it directly. -- update-software-center does not work properly in Turkish locales https://bugs.launchpad.net/bugs/581207 You rece

[Bug 581207] Re: update-software-center does not work properly in Turkish locales

2010-07-02 Thread heartsmagic
I am using Ubuntu 10.10 Maverick Meerkat development branch and my Software Center verison is 2.1.4. I can reproduce the very same bug also here. File "/usr/lib/python2.6/decimal.py", line 3646, in val = globals()[globalname] KeyError: 'ROUND_CEiLiNG' This is the same problem as described i

[Bug 581207] Re: update-software-center does not work properly in Turkish locales

2010-06-15 Thread Launchpad Bug Tracker
This bug was fixed in the package software-center - 2.0.5 --- software-center (2.0.5) lucid-proposed; urgency=low [ Olivier Tilloy ] * Fix the database update when run with a Turkish locale (patch by M. Vefa Bicakci). LP: #581207 [ Michael Vogt ] * softwarecenter/view/ins

[Bug 581207] Re: update-software-center does not work properly in Turkish locales

2010-06-14 Thread Jean-Baptiste Lallement
I have reproduced the problem with software-center 2.0.4 and have verified that the version of software-center 2.0.5 in proposed fixes the issue. Marking as verification-done ** Description changed: Binary package hint: software-center Hello, After trying out Ubuntu 10.04 with a Tur

[Bug 581207] Re: update-software-center does not work properly in Turkish locales

2010-06-04 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/lucid-proposed/software-center -- update-software-center does not work properly in Turkish locales https://bugs.launchpad.net/bugs/581207 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing

[Bug 581207] Re: update-software-center does not work properly in Turkish locales

2010-06-01 Thread Martin Pitt
Accepted software-center into lucid-proposed, the package will build now and be available in a few hours. Please test and give feedback here. See https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to enable and use -proposed. Thank you in advance! ** Changed in: software-center (

[Bug 581207] Re: update-software-center does not work properly in Turkish locales

2010-05-21 Thread M. Vefa Bicakci
Dear Olivier Tilloy, I apologize for the late reply. Yes, your suggestion is the optimal fix for this problem. We should have the ascii_upper and ascii_lower functions in a utility file, and we should use these functions instead of the upper and lower functions whenever we are dealing with Englis

[Bug 581207] Re: update-software-center does not work properly in Turkish locales

2010-05-20 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/software-center -- update-software-center does not work properly in Turkish locales https://bugs.launchpad.net/bugs/581207 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bu

[Bug 581207] Re: update-software-center does not work properly in Turkish locales

2010-05-20 Thread Launchpad Bug Tracker
This bug was fixed in the package software-center - 2.1.0 --- software-center (2.1.0) maverick; urgency=low [ Matthew McGowan ] * merged lp:~mmcg069/software-center/backforward-redraw-fix * make the overlaywithpixbuf cellrenderer inherit from a text cellrenderer, does away w

[Bug 581207] Re: update-software-center does not work properly in Turkish locales

2010-05-17 Thread Olivier Tilloy
Right, I had indeed overlooked the issue. Thanks for your patience and the detailed explanation. In this context, the complete patch makes sense indeed, and there are potentially other places in the code (i.e. other source files) that need patching as well. A quick grep on the trunk reveals the

[Bug 581207] Re: update-software-center does not work properly in Turkish locales

2010-05-17 Thread M. Vefa Bicakci
Please do not get offended, but I think you misunderstood the problem. As I explained above in my first post, because the Turkish language (and hence the Turkish locale) has different capitalization rules regarding "i", even if the desktop entries are composed of ASCII characters, we will get probl

[Bug 581207] Re: update-software-center does not work properly in Turkish locales

2010-05-17 Thread Olivier Tilloy
I looked at the code more in depth and it appears that all the calls to str.lower() in softwarecenter/db/update.py are applied on ASCII-only strings, therefore the overhead of using a locale-independent translation table is not needed. For details, see the freedesktop specification for desktop ent

[Bug 581207] Re: update-software-center does not work properly in Turkish locales

2010-05-17 Thread M. Vefa Bicakci
Hello again, Dear Olivier Tilloy, thank you for spotting that I have missed the lower function. I was just after the bug I observed, and for some reason didn't think about the lower function. You are right, the same problem exists with the lower function as well. I am attaching a patch which incl

[Bug 581207] Re: update-software-center does not work properly in Turkish locales

2010-05-17 Thread Michael Vogt
Hello! Thanks for the bugreport and the fix (and thanks to Olivier for importing it into the branch). I merged it into the lucid branch and we can upload it once the previous update moved from -proposed to -updates (should happen relatively soon). Cheers, Michael ** Changed in: software-center

[Bug 581207] Re: update-software-center does not work properly in Turkish locales

2010-05-17 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-core-dev/software-center/lucid ** Branch linked: lp:software-center -- update-software-center does not work properly in Turkish locales https://bugs.launchpad.net/bugs/581207 You received this bug notification because you are a member of Ubuntu Bugs, which is subscri

[Bug 581207] Re: update-software-center does not work properly in Turkish locales

2010-05-17 Thread Michael Vogt
** Also affects: software-center (Ubuntu Lucid) Importance: Undecided Status: New -- update-software-center does not work properly in Turkish locales https://bugs.launchpad.net/bugs/581207 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to

[Bug 581207] Re: update-software-center does not work properly in Turkish locales

2010-05-16 Thread Olivier Tilloy
Note: to reproduce the bug, execute the following commands in a terminal: locale-gen tr_TR.UTF-8 export LANG=tr_TR.UTF-8 sudo update-software-center Expected result: no output. Current result: a large number of warnings like the following: WARNING:root:error processing: /usr/share/ap

[Bug 581207] Re: update-software-center does not work properly in Turkish locales

2010-05-16 Thread Olivier Tilloy
For convenience I linked a branch that contains the patch (slightly reformatted). ** Branch linked: lp:~osomon/software-center/turkish_locale -- update-software-center does not work properly in Turkish locales https://bugs.launchpad.net/bugs/581207 You received this bug notification because you

[Bug 581207] Re: update-software-center does not work properly in Turkish locales

2010-05-16 Thread Olivier Tilloy
I can reproduce the bug, it is indeed pretty bad for users with a Turkish locale. I can also confirm that the attached patch fixes the issue. Note that this is the only place in the code where str.upper() is called, but there are several other places in the code where str.lower() is called, so th

[Bug 581207] Re: update-software-center does not work properly in Turkish locales

2010-05-16 Thread Omer Akram
** Tags added: patch ** Tags removed: center locale software turkish ubuntu -- update-software-center does not work properly in Turkish locales https://bugs.launchpad.net/bugs/581207 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ub

[Bug 581207] Re: update-software-center does not work properly in Turkish locales

2010-05-16 Thread M. Vefa Bicakci
** Patch added: "The mentioned patch which fixes the bug." http://launchpadlibrarian.net/48532242/software_center-turkish_locale_fix.diff -- update-software-center does not work properly in Turkish locales https://bugs.launchpad.net/bugs/581207 You received this bug notification because you