##// END OF EJS Templates
str_utils: added common non-ascii replacer
super-admin -
r4989:b0280397 default
parent child Browse files
Show More
@@ -20,6 +20,7 b''
20 20
21 21 import logging
22 22 import rhodecode
23 import unicodedata
23 24 from rhodecode.lib.type_utils import aslist
24 25
25 26 log = logging.getLogger(__name__)
@@ -133,3 +134,14 b' def ascii_str(str_):'
133 134 if not isinstance(str_, bytes):
134 135 raise ValueError('ascii_str cannot convert other types than bytes: got: {}'.format(type(str_)))
135 136 return str_.decode('ascii')
137
138
139 def convert_special_chars(str_):
140 """
141 trie to replace non-ascii letters to their ascii representation eg::
142
143 `żołw` converts into `zolw`
144 """
145 value = safe_str(str_)
146 converted_value = unicodedata.normalize('NFKD', value).encode('ascii', 'ignore').decode()
147 return converted_value
General Comments 0
You need to be logged in to leave comments. Login now