Zim

Comment 3 for bug 518323

Revision history for this message
Jaap Karssenberg (jaap.karssenberg) wrote : Re: Automatic link creation doesn't work with accented characters

Fixed the cases for page links, see rev201.

For camelcase there is a problem that the python regex engine does not have a class for unicode uppercase and lowercase letters. Supposedly they are now taken from the locale, but if you run under english locale it will not work.

The following command will show you which letters are included under your locale.

   $ python -c 'import string; print string.lowercase'

If there is an other way in python to get a list of lowercase and uppercase chars (or test a char for being uppercase) that is unicode compatible, I can fix it.