Changeset 1876
- Timestamp:
- 10/11/08 20:37:07 (2 months ago)
- svm:headrev:
cc3e1ea1-1e01-0410-8d68-8b121e83a9d5:11158- Files:
-
- 1 modified
-
freevo/src/video/plugins/applelib.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
freevo/src/video/plugins/applelib.py
r1839 r1876 41 41 ( 'home/feeds/exclusive.json', 'Exclusive' ), 42 42 ( 'home/feeds/just_hd.json', 'HD' ), 43 ( 'home/feeds/upcoming.json', 'Featured' ),44 43 ( 'home/feeds/most_pop.json', 'Most Popular' ), 45 44 ( 'home/feeds/genres.json', None ), … … 62 61 re.compile(r'''<param[^>]*name="src"[^>]*value="(?P<url>[^"]*)"[^>]*>''', re.IGNORECASE), 63 62 re.compile(r'''XHTML[(]([^)]*\'href\',)?\'(?P<url>[^\']*)\'''', re.IGNORECASE), 64 re.compile(r'''\'(?P<url>http[^\']*mov)\'''', re.IGNORECASE), 65 re.compile(r'''<a[^>]+href="(?P<url>http[^\"]*.mov)\?width=[0-9]+&height=[0-9]+"[^>]*>''', re.IGNORECASE) 63 re.compile(r'''\'(?P<url>http[^\']*.mov)\'''', re.IGNORECASE), 64 re.compile(r'''"(?P<url>http[^"]*.mov)"''', re.IGNORECASE), 65 re.compile(r'''<a[^>]+href="(?P<url>http[^"]*.mov)\?width=[0-9]+&height=[0-9]+"[^>]*>''', re.IGNORECASE) 66 66 ) 67 67 # Stream exclude regexps … … 69 69 re.compile(r'''trailers/images.*btn''', re.IGNORECASE), 70 70 ) 71 72 # Old regexps73 # re.compile(r'''XHTML[(]\'(?P<url>[^\']*)\'''', re.IGNORECASE)74 71 75 72 # Stream URLs in script based pages
