Disable the Most Popular functionality in the nytimes recipes as the NYT is now transitioning to a new "Trending" page

This commit is contained in:
Kovid Goyal 2015-10-02 09:17:02 +05:30
parent 103ec370d4
commit 9561f32287
2 changed files with 6 additions and 2 deletions

View File

@ -27,7 +27,9 @@ class NYTimes(BasicNewsRecipe):
# set getPopularArticles to False if you don't want the Most E-mailed and Most Viewed articles
# otherwise you will get up to 20 of the most popular e-mailed and viewed articles (in each category)
getPopularArticles = True
# This is currently disabled because the NYT is changing this functionality
# on their website to a new "Trending" page
getPopularArticles = False
popularPeriod = '1' # set this to the number of days to include in the measurement
# e.g. 7 will get the most popular measured over the last 7 days
# and 30 will get the most popular measured over 30 days.

View File

@ -27,7 +27,9 @@ class NYTimes(BasicNewsRecipe):
# set getPopularArticles to False if you don't want the Most E-mailed and Most Viewed articles
# otherwise you will get up to 20 of the most popular e-mailed and viewed articles (in each category)
getPopularArticles = True
# This is currently disabled because the NYT is changing this functionality
# on their website to a new "Trending" page
getPopularArticles = False
popularPeriod = '1' # set this to the number of days to include in the measurement
# e.g. 7 will get the most popular measured over the last 7 days
# and 30 will get the most popular measured over 30 days.