1
0
Fork 0
forked from github/pelican

Provide 'all_articles' variable to period pages

This allows 'recent posts' functionality to work properly.
This commit is contained in:
Marcin Juszkiewicz 2019-04-19 16:55:17 +02:00
commit 8520840be6
2 changed files with 7 additions and 4 deletions

View file

@ -526,7 +526,7 @@ class ArticlesGenerator(CachingGenerator):
write(save_as, template, context, articles=articles,
dates=archive, template_name='period_archives',
blog=True, url=url)
blog=True, url=url, all_articles=self.articles)
for period in 'year', 'month', 'day':
save_as = period_save_as[period]

View file

@ -420,7 +420,8 @@ class TestArticlesGenerator(unittest.TestCase):
generator.get_template("period_archives"),
context, blog=True, articles=articles,
dates=dates, template_name='period_archives',
url="posts/1970/")
url="posts/1970/",
all_articles=generator.articles)
settings['MONTH_ARCHIVE_SAVE_AS'] = \
'posts/{date:%Y}/{date:%b}/index.html'
@ -444,7 +445,8 @@ class TestArticlesGenerator(unittest.TestCase):
generator.get_template("period_archives"),
context, blog=True, articles=articles,
dates=dates, template_name='period_archives',
url="posts/1970/Jan/")
url="posts/1970/Jan/",
all_articles=generator.articles)
settings['DAY_ARCHIVE_SAVE_AS'] = \
'posts/{date:%Y}/{date:%b}/{date:%d}/index.html'
@ -476,7 +478,8 @@ class TestArticlesGenerator(unittest.TestCase):
generator.get_template("period_archives"),
context, blog=True, articles=articles,
dates=dates, template_name='period_archives',
url="posts/1970/Jan/01/")
url="posts/1970/Jan/01/",
all_articles=generator.articles)
locale.setlocale(locale.LC_ALL, old_locale)
def test_nonexistent_template(self):