Merge John Ralls's 'bug11639' into maintenance/gramps51
This commit is contained in:
commit
823bcaac0d
@ -101,6 +101,7 @@ class Connection:
|
|||||||
self.__cursor = self.__connection.cursor()
|
self.__cursor = self.__connection.cursor()
|
||||||
self.__connection.create_function("regexp", 2, regexp)
|
self.__connection.create_function("regexp", 2, regexp)
|
||||||
self.__collations = []
|
self.__collations = []
|
||||||
|
self.__tmap = str.maketrans('-.@=;', '_____')
|
||||||
self.check_collation(glocale)
|
self.check_collation(glocale)
|
||||||
|
|
||||||
def check_collation(self, locale):
|
def check_collation(self, locale):
|
||||||
@ -110,7 +111,10 @@ class Connection:
|
|||||||
:param locale: Locale to be checked.
|
:param locale: Locale to be checked.
|
||||||
:param type: A GrampsLocale object.
|
:param type: A GrampsLocale object.
|
||||||
"""
|
"""
|
||||||
collation = locale.get_collation()
|
#PySQlite3 permits only ascii alphanumerics and underscores in
|
||||||
|
#collation names so first translate any old-style Unicode locale
|
||||||
|
#delimiters to underscores.
|
||||||
|
collation = locale.get_collation().translate(self.__tmap)
|
||||||
if collation not in self.__collations:
|
if collation not in self.__collations:
|
||||||
self.__connection.create_collation(collation, locale.strcoll)
|
self.__connection.create_collation(collation, locale.strcoll)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user