Predefined Playlist selections and titles
()
| 205 | |
| 206 | |
| 207 | def selectors(): |
| 208 | """Predefined Playlist selections and titles |
| 209 | """ |
| 210 | selections = {'historyToday': 'Aired Today {month}-{day} in History', |
| 211 | 'historyWeek': 'Aired This Week ({week}) in History', |
| 212 | 'historyMonth': 'Aired in {month}', |
| 213 | 'popularTv': 'Most Popular TV Shows ({days} days)', |
| 214 | 'popularMovies': 'Most Popular Movies ({days} days)', |
| 215 | 'custom': '{custom} Playlist', |
| 216 | 'random': '{count} Random {libraries} Playlist', |
| 217 | 'label': '{custom}', |
| 218 | 'collection': '{custom}' |
| 219 | } |
| 220 | |
| 221 | return selections |
| 222 | |
| 223 | |
| 224 | def exclusions(all_true, select, all_items): |
no outgoing calls
no test coverage detected