provide separate 'normalizeName()' method
git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@3925 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
parent
8ecf2645f1
commit
2fb16b5c24
1 changed files with 31 additions and 28 deletions
15
common.py
15
common.py
|
@ -224,6 +224,13 @@ class NameChooser(BaseNameChooser):
|
||||||
return self.normalizeName(title)
|
return self.normalizeName(title)
|
||||||
|
|
||||||
def normalizeName(self, baseName):
|
def normalizeName(self, baseName):
|
||||||
|
return normalizeName(baseName)
|
||||||
|
|
||||||
|
|
||||||
|
def normalizeName(baseName):
|
||||||
|
specialCharacters = {
|
||||||
|
'\xc4': 'Ae', '\xe4': 'ae', '\xd6': 'Oe', '\xf6': 'oe',
|
||||||
|
'\xdc': 'Ue', '\xfc': 'ue', '\xdf': 'ss'}
|
||||||
result = []
|
result = []
|
||||||
for c in baseName:
|
for c in baseName:
|
||||||
try:
|
try:
|
||||||
|
@ -235,9 +242,9 @@ class NameChooser(BaseNameChooser):
|
||||||
# separator and special characters to keep
|
# separator and special characters to keep
|
||||||
result.append(c)
|
result.append(c)
|
||||||
continue
|
continue
|
||||||
if c in self.specialCharacters:
|
if c in specialCharacters:
|
||||||
# transform umlauts and other special characters
|
# transform umlauts and other special characters
|
||||||
result.append(self.specialCharacters[c].lower())
|
result.append(specialCharacters[c].lower())
|
||||||
continue
|
continue
|
||||||
if ord(c) > 127:
|
if ord(c) > 127:
|
||||||
# map to ASCII characters
|
# map to ASCII characters
|
||||||
|
@ -253,10 +260,6 @@ class NameChooser(BaseNameChooser):
|
||||||
name = unicode(''.join(result))
|
name = unicode(''.join(result))
|
||||||
return name
|
return name
|
||||||
|
|
||||||
specialCharacters = {
|
|
||||||
'\xc4': 'Ae', '\xe4': 'ae', '\xd6': 'Oe', '\xf6': 'oe',
|
|
||||||
'\xdc': 'Ue', '\xfc': 'ue', '\xdf': 'ss'}
|
|
||||||
|
|
||||||
|
|
||||||
# virtual attributes/properties
|
# virtual attributes/properties
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue