コード例 #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
ファイル: rss.py プロジェクト: Elmobane/sabnzbd-elmobane
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