Diff
Differences From Artifact [cd9934e99a]:
- File channels/youtube.py — part of check-in [bd29eb4ee9] at 2014-06-02 01:43:54 on branch trunk — Add server-search, slim down search dialog. (user: mario, size: 11085) [annotate] [blame] [check-ins using]
To Artifact [f52ff49900]:
- File
channels/youtube.py
— part of check-in
[ac8632bc29]
at
2014-06-03 00:29:43
on branch trunk
— Search dialog offers (x) all channels or (x) just current for server+cache scan
again. Removed search="" parameter from channels that don't implement it.
(To remove extraneous .has_search channel attribute again somewhen..)
External: Xiph IO cache ?search= should be changed to work on station titles instead of genres. (user: mario, size: 11060) [annotate] [blame] [check-ins using]
1 2 3 4 5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | - + - | # encoding: UTF-8 # api: streamtuner2 # title: Youtube # description: Channel, playlist and video browsing for youtube. # type: channel |
182 183 184 185 186 187 188 | 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 | - + | entries = [] channels = self.categories[self.categories.index("my channels") + 1] # plain search request for videos if search is not None: for row in self.api("search", type="video", regionCode=conf.youtube_region, q=search): |