Module: TextUtils::TitleHelper
- Included in:
- TextUtils
- Defined in:
- lib/textutils/helper/title_helper.rb
Instance Method Summary collapse
-
#strip_part_markers(title) ⇒ Object
-
todo: use new additional sub module ??? e.g.
-
- #strip_special_chars(title) ⇒ Object
- #strip_subtitles(title) ⇒ Object
-
#strip_tags(title) ⇒ Object
todo: use an alias or rename for better name ??.
- #strip_translations(title) ⇒ Object
- #strip_whitespaces(title) ⇒ Object
- #title_esc_regex(title_unescaped) ⇒ Object
- #title_to_key(title) ⇒ Object
Instance Method Details
#strip_part_markers(title) ⇒ Object
-
todo: use new additional sub module ???
e.g. TextUtils::Reader::TagHelperlets us use “classic” web helpers a la rails find a good name for sub module - Reader? Fixtures? Values? Parser?
13 14 15 16 17 18 19 |
# File 'lib/textutils/helper/title_helper.rb', line 13 def strip_part_markers( title ) # use different name e.g. strip_name_markers/strip_name_enclosure etc.?? # remove optional part markers # e.g. Bock ‹Damm› becomes => Bock Damm # ‹Estrella› ‹Damm› Inedit becomes => Estrella Damm Inedit title.gsub( /[<>‹›]/, '' ) end |
#strip_special_chars(title) ⇒ Object
51 52 53 54 55 56 57 |
# File 'lib/textutils/helper/title_helper.rb', line 51 def strip_special_chars( title ) # remove special chars (e.g. %°&$) # e.g. +Malta # Minerva 8:60 # $Alianz$ Arena title.gsub( /[%&°+:$]/, '' ) end |
#strip_subtitles(title) ⇒ Object
28 29 30 31 32 33 34 |
# File 'lib/textutils/helper/title_helper.rb', line 28 def strip_subtitles( title ) # remove optional longer title part in () # e.g. Las Palmas (de Gran Canaria) => Las Palmas # Palma (de Mallorca) => Palma title.gsub( /\([^\)]+\)/, '' ) end |
#strip_tags(title) ⇒ Object
todo: use an alias or rename for better name ??
36 37 38 39 40 41 42 43 44 |
# File 'lib/textutils/helper/title_helper.rb', line 36 def ( title ) # todo: use an alias or rename for better name ?? # remove optional longer title part in {} # e.g. Ottakringer {Bio} => Ottakringer # Ottakringer {Alkoholfrei} => Ottakringer # # todo: use for autotags? e.g. {Bio} => bio title.gsub( /\{[^\}]+\}/, '' ) end |
#strip_translations(title) ⇒ Object
21 22 23 24 25 26 |
# File 'lib/textutils/helper/title_helper.rb', line 21 def strip_translations( title ) # remove optional english translation in square brackets ([]) # e.g. Wien [Vienna] => Wien title.gsub( /\[[^\]]+\]/, '' ) end |
#strip_whitespaces(title) ⇒ Object
46 47 48 49 |
# File 'lib/textutils/helper/title_helper.rb', line 46 def strip_whitespaces( title ) # remove all whitespace and punctuation title.gsub( /[ \t_\-\.!()\[\]'"’\/]/, '' ) end |
#title_esc_regex(title_unescaped) ⇒ Object
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 |
# File 'lib/textutils/helper/title_helper.rb', line 199 def title_esc_regex( title_unescaped ) ## escape regex special chars e.g. # . to \. and # ( to \( # ) to \) # ? to \? -- zero or one # * to \* -- zero or more # + to \+ -- one or more # $ to \$ -- end of line # ^ to \^ -- start of line etc. ### add { and } ??? ### add [ and ] ??? ### add \ too ??? ### add | too ??? # e.g. Benfica Lis. # e.g. Club Atlético Colón (Santa Fe) # e.g. Bauer Anton (????) ## NB: cannot use Regexp.escape! will escape space '' to '\ ' ## title = Regexp.escape( title_unescaped ) title = title_unescaped.gsub( '.', '\.' ) title = title.gsub( '(', '\(' ) title = title.gsub( ')', '\)' ) title = title.gsub( '?', '\?' ) title = title.gsub( '*', '\*' ) title = title.gsub( '+', '\+' ) title = title.gsub( '$', '\$' ) title = title.gsub( '^', '\^' ) ## match accented char with or without accents ## add (ü|ue) etc. ## also make - optional change to (-| ) e.g. Blau-Weiss == Blau Weiss ## todo: add some more ## see http://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references for more ## ## reuse for all readers! alternatives = [ ['-', '(-| )'], ## e.g. Blau-Weiß Linz ['æ', '(æ|ae)'], ## e.g. ['ä', '(ä|ae)'], ## e.g. ['Ö', '(Ö|Oe)'], ## e.g. Österreich ['ö', '(ö|oe)'], ## e.g. Mönchengladbach ['ß', '(ß|ss)'], ## e.g. Blau-Weiß Linz ['ü', '(ü|ue)'], ## e.g. ['á', '(á|a)'], ## e.g. Bogotá, Sársfield ['ã', '(ã|a)'], ## e.g São Paulo ['ç', '(ç|c)'], ## e.g. Fenerbahçe ['é', '(é|e)'], ## e.g. Vélez ['ê', '(ê|e)'], ## e.g. Grêmio ['ï', '(ï|i)' ], ## e.g. El Djazaïr ['ñ', '(ñ|n)'], ## e.g. Porteño ['ň', '(ň|n)'], ## e.g. Plzeň ['ó', '(ó|o)'], ## e.g. Colón ['ō', '(ō|o)'], # # e.g. Tōkyō ['ș', '(ș|s)'], ## e.g. Bucarești ['ú', '(ú|u)'] ## e.g. Fútbol ] ### fix/todo: check for dot+space e.g. . and make dot optional ## # e.g. make dot (.) optional plus allow alternative optional space e.g. # -- for U.S.A. => allow USA or U S A # ## e.g. U. de G. or U de G or U.de G. ?? ## collect some more (real-world) examples first!!!!! alternatives.each do |alt| title = title.gsub( alt[0], alt[1] ) end title end |
#title_to_key(title) ⇒ Object
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 |
# File 'lib/textutils/helper/title_helper.rb', line 59 def title_to_key( title ) ## NB: used in/moved from readers/values_reader.rb ## NB: downcase does NOT work for accented chars (thus, include in alternatives) key = title.downcase key = strip_part_markers( key ) # e.g. ‹Estrella› ‹Damm› Inedit becomes => Estrella Damm Inedit key = strip_translations( key ) key = strip_subtitles( key ) key = ( key ) key = strip_whitespaces( key ) key = strip_special_chars( key ) ## turn accented char into ascii look alike if possible ## ## todo: add some more ## see http://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references for more ## todo: add unicode codepoint name alternatives = [ ['ß', 'ss'], ['æ', 'ae'], ['ä', 'ae'], ['ā', 'a' ], # e.g. Liepājas, Kāṭhmāḍaũ ['á', 'a' ], # e.g. Bogotá, Králové ['à', 'a' ], # e.g. Thành Phố Hồ Chí Minh [Saigon] ['ã', 'a' ], # e.g São Paulo ['ă', 'a' ], # e.g. Chișinău ['â', 'a' ], # e.g Goiânia ['å', 'a' ], # e.g. Vålerenga ['ą', 'a' ], # e.g. Śląsk ['ç', 'c' ], # e.g. São Gonçalo, Iguaçu, Neftçi ['ć', 'c' ], # e.g. Budućnost ['č', 'c' ], # e.g. Tradiční, Výčepní ['ḍ', 'd' ], # e.g. Kāṭhmāḍaũ [Kathmandu] ['é', 'e' ], # e.g. Vélez, Králové ['è', 'e' ], # e.g. Rivières ['ê', 'e' ], # e.g. Grêmio ['ě', 'e' ], # e.g. Budějovice ['ĕ', 'e' ], # e.g. Svĕtlý ['ė', 'e' ], # e.g. Vėtra ['ë', 'e' ], # e.g. Skënderbeu ['ğ', 'g' ], # e.g. Qarabağ ['ḥ', 'h' ], # e.g. Ad-Dawḥah [Doha] ['ì', 'i' ], # e.g. Potosì ['í', 'i' ], # e.g. Ústí ['ï', 'i' ], # e.g. El Djazaïr ['ī', 'i' ], # e.g. Al-Iskandarīyah [Alexandria] ['ł', 'l' ], # e.g. Wisła, Wrocław ['ñ', 'n' ], # e.g. Porteño ['ň', 'n' ], # e.g. Plzeň, Třeboň ['ö', 'oe'], ['ő', 'o' ], # e.g. Győri ['ó', 'o' ], # e.g. Colón, Łódź, Kraków ['õ', 'o' ], # e.g. Nõmme ['ô', 'o' ], # e.g. Amazônia (pt) ['ō', 'o' ], # e.g. Tōkyō, Pishōr ['ŏ', 'o' ], # e.g. P'yŏngyang [Pyongyang] ['ø', 'o' ], # e.g. Fuglafjørdur, København ['ố', 'o' ], # e.g. Thành Phố Hồ Chí Minh [Saigon] ['ồ', 'o' ], # e.g. Thành Phố Hồ Chí Minh [Saigon] ['ộ', 'o' ], # e.g. Hà Nội [Hanoi] ['ř', 'r' ], # e.g. Třeboň ['ș', 's' ], # e.g. Chișinău, București ['ş', 's' ], # e.g. Beşiktaş ['š', 's' ], # e.g. Košice ['ṣ', 's' ], # e.g. Al-Mawṣil [Mosul] ['ť', 't' ], # e.g. Měšťan ['ṭ', 't' ], # e.g. Al-Kharṭūm [Khartoum], Kāṭhmāḍaũ ['ü', 'ue'], ['ú', 'u' ], # e.g. Fútbol ['ù', 'u' ], # e.g. Xyauyù (it) ['ū', 'u' ], # e.g. Sūduva ['ů', 'u' ], # e.g. Sládkův ['ũ', 'u' ], # e.g. Kāṭhmāḍaũ [Kathmandu] ['ı', 'u' ], # e.g. Bakı # use u?? (Baku) why-why not? ['x̌', 'x'], # e.g. Pex̌awar [Peshawar] ['ý', 'y' ], # e.g. Nefitrovaný ['ź', 'z' ], # e.g. Łódź ['ž', 'z' ], # e.g. Domžale, Petržalka ['ż', 'z' ], # e.g. Lomża (polish) ['Á', 'a' ], # e.g. Águila (es) ['Č', 'c' ], # e.g. České ['Ḥ', 'h' ], # e.g. Ḥalab [Aleppo] ['Ḫ', 'h' ], # e.g. Ḫamīs Mušayṭ ['İ', 'i' ], # e.g. İnter ['Í', 'i' ], # e.g. ÍBV ['Ł', 'l' ], # e.g. Łódź ['Ö', 'oe' ], # e.g. Örebro ['Ō', 'o' ], # e.g. Ōsaka [Osaka] ['Ø', 'o' ], # e.g. Nogne Ø Imperial Stout (no) ['Ř', 'r' ], # e.g. Řezák ['Ś', 's' ], # e.g. Śląsk ['Š', 's' ], # e.g. MŠK ['Ş', 's' ], # e.g. Şüvälan ['Ṣ', 's' ], # e.g. Ṣan'ā' [Sana'a] ['Ṭ', 't' ], # e.g. Ṭarābulus [Tripoli] ['Ú', 'u' ], # e.g. Ústí, Újpest ['Ž', 'z' ], # e.g. Žilina ['Ż', 'z' ] # e.g. Żywiec (polish) ] alternatives.each do |alt| key = key.gsub( alt[0], alt[1] ) end key end |