예제 #1
0
파일: rss.py 프로젝트: labrys/sabnzbd
def special_rss_site(url):
    """ Return True if url describes an RSS site with odd titles """
    return cfg.rss_filenames() or match_str(url, cfg.rss_odd_titles())
예제 #2
0
def special_rss_site(url):
    """ Return True if url describes an RSS site with odd titles
    """
    return cfg.rss_filenames() or 'nzbindex.nl/' in url or 'nzbindex.com/' in url or 'nzbclub.com/' in url
예제 #3
0
파일: rss.py 프로젝트: rivy/sabnzbd
def special_rss_site(url):
    """ Return True if url describes an RSS site with odd titles """
    return cfg.rss_filenames() or match_str(url, cfg.rss_odd_titles())
예제 #4
0
파일: rss.py 프로젝트: claytonbrown/sabnzbd
def special_rss_site(url):
    """ Return True if url describes an RSS site with odd titles
    """
    return cfg.rss_filenames(
    ) or 'nzbindex.nl/' in url or 'nzbindex.com/' in url or 'nzbclub.com/' in url