]> git.openstreetmap.org Git - nominatim.git/blobdiff - nominatim/tokenizer/token_analysis/generic.py
reorganize and complete tests around generic token analysis
[nominatim.git] / nominatim / tokenizer / token_analysis / generic.py
index b8cfde3997640788fa36a686d65d63c4367a6e32..4b47889ebeeb74211ac323d7e0b5e25ad2037ae8 100644 (file)
@@ -76,7 +76,7 @@ class _VariantMaker:
 
         decompose = parts[1] is None
         src_terms = [self._parse_variant_word(t) for t in parts[0].split(',')]
-        repl_terms = (self.norm.transliterate(t.strip()) for t in parts[3].split(','))
+        repl_terms = (self.norm.transliterate(t).strip() for t in parts[3].split(','))
 
         # If the source should be kept, add a 1:1 replacement
         if parts[2] == '-':
@@ -96,7 +96,7 @@ class _VariantMaker:
         match = re.fullmatch(r'([~^]?)([^~$^]*)([~$]?)', name)
         if match is None or (match.group(1) == '~' and match.group(3) == '~'):
             raise UsageError("Invalid variant word descriptor '{}'".format(name))
-        norm_name = self.norm.transliterate(match.group(2))
+        norm_name = self.norm.transliterate(match.group(2)).strip()
         if not norm_name:
             return None
 
@@ -142,10 +142,10 @@ def _create_variants(src, preflag, postflag, repl, decompose):
 
 ### Analysis section
 
-def create(trans_rules, config):
+def create(transliterator, config):
     """ Create a new token analysis instance for this module.
     """
-    return GenericTokenAnalysis(trans_rules, config)
+    return GenericTokenAnalysis(transliterator, config)
 
 
 class GenericTokenAnalysis: