Skip to content

Commit ecedddd

Browse files
committedMay 1, 2018
Add ATOM_FILENAME_BASE, use feed.atom instead of index.atom for new sites
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
1 parent c55f840 commit ecedddd

File tree

6 files changed

+22
-5
lines changed

6 files changed

+22
-5
lines changed
 

‎CHANGES.txt

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ Important compatibility changes
1616
Features
1717
--------
1818

19+
* Add ``ATOM_FILENAME_BASE`` setting (defaults to ``index`` for
20+
existing sites, but ``feed`` for new sites) (Issue #3016)
1921
* Produce a better error message when a template referenced in another
2022
template is missing (Issue #3055)
2123
* Support captioned images and image ordering in galleries (Issue #3017)

‎nikola/conf.py.in

+8-4
Original file line numberDiff line numberDiff line change
@@ -528,10 +528,17 @@ USE_BASE_TAG = False
528528
# RSS_PATH = ""
529529

530530
# Final location for the blog main Atom feed is:
531-
# output / TRANSLATION[lang] / ATOM_PATH / index.atom
531+
# output / TRANSLATION[lang] / ATOM_PATH / ATOM_FILENAME_BASE ATOM_EXTENSION
532532
# (translatable)
533533
# ATOM_PATH = ""
534534

535+
# Atom filename base (without extension); used for indexes.
536+
# (translatable)
537+
ATOM_FILENAME_BASE = "feed"
538+
539+
# Extension for Atom feed files
540+
# ATOM_EXTENSION = ".atom"
541+
535542
# Slug the Tag URL. Easier for users to type, special characters are
536543
# often removed or replaced as well.
537544
# SLUG_TAG_PATH = True
@@ -1071,9 +1078,6 @@ MARKDOWN_EXTENSIONS = ['markdown.extensions.fenced_code', 'markdown.extensions.c
10711078
# between each other. Old Atom feeds with no changes are marked as archived.
10721079
# GENERATE_ATOM = False
10731080

1074-
# Extension for Atom feed files
1075-
# ATOM_EXTENSION = ".atom"
1076-
10771081
# Only include teasers in Atom and RSS feeds. Disabling include the full
10781082
# content. Defaults to True.
10791083
# FEED_TEASERS = True

‎nikola/nikola.py

+4
Original file line numberDiff line numberDiff line change
@@ -540,6 +540,7 @@ def __init__(self, **config):
540540
'GENERATE_ATOM': False,
541541
'ATOM_EXTENSION': '.atom',
542542
'ATOM_PATH': '',
543+
'ATOM_FILENAME_BASE': 'index',
543544
'FEED_TEASERS': True,
544545
'FEED_PLAIN': False,
545546
'FEED_PREVIEWIMAGE': True,
@@ -665,6 +666,7 @@ def __init__(self, **config):
665666
'ATOM_PATH',
666667
'RSS_PATH',
667668
'RSS_FILENAME_BASE',
669+
'ATOM_FILENAME_BASE',
668670
'AUTHOR_PATH',
669671
'DATE_FORMAT',
670672
'JS_DATE_FORMAT',
@@ -695,6 +697,7 @@ def __init__(self, **config):
695697
self._ALL_PAGE_DEPS_TRANSLATABLE = ('atom_path',
696698
'rss_path',
697699
'rss_filename_base',
700+
'atom_filename_base',
698701
)
699702
# WARNING: navigation_links SHOULD NOT be added to the list above.
700703
# Themes ask for [lang] there and we should provide it.
@@ -1196,6 +1199,7 @@ def _set_all_page_deps_from_config(self):
11961199
self.ALL_PAGE_DEPS['rss_extension'] = self.config.get('RSS_EXTENSION')
11971200
self.ALL_PAGE_DEPS['rss_path'] = self.config.get('RSS_PATH')
11981201
self.ALL_PAGE_DEPS['rss_filename_base'] = self.config.get('RSS_FILENAME_BASE')
1202+
self.ALL_PAGE_DEPS['atom_filename_base'] = self.config.get('ATOM_FILENAME_BASE')
11991203
self.ALL_PAGE_DEPS['slug_author_path'] = self.config.get('SLUG_AUTHOR_PATH')
12001204
self.ALL_PAGE_DEPS['slug_tag_path'] = self.config.get('SLUG_TAG_PATH')
12011205

‎nikola/plugins/misc/taxonomies_classifier.py

+2
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,8 @@ def _postprocess_path(self, path, lang, append_index='auto', dest_type='page', p
241241
if force_extension is not None:
242242
if len(path) == 0 and dest_type == 'rss':
243243
path = [self.site.config['RSS_FILENAME_BASE'](lang)]
244+
elif len(path) == 0 and dest_type == 'feed':
245+
path = [self.site.config['ATOM_FILENAME_BASE'](lang)]
244246
elif len(path) == 0 or append_index == 'always':
245247
path = path + [os.path.splitext(self.site.config['INDEX_FILE'])[0]]
246248
elif len(path) > 0 and append_index == 'never':

‎nikola/plugins/task/indexes.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,10 @@ def get_path(self, classification, lang, dest_type='page'):
9696
self.site.config['RSS_FILENAME_BASE'](lang)
9797
], 'auto'
9898
if dest_type == 'feed':
99-
return [self.site.config['ATOM_PATH'](lang)], 'always'
99+
return [
100+
self.site.config['ATOM_PATH'](lang),
101+
self.site.config['ATOM_FILENAME_BASE'](lang)
102+
], 'auto'
100103
page_number = None
101104
if dest_type == 'page':
102105
# Interpret argument as page number

‎nikola/plugins/task/sections.py

+2
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,8 @@ def get_path(self, section, lang, dest_type='page'):
101101
result = [_f for _f in [self.site.config['SECTION_PATH'](lang), section] if _f]
102102
if dest_type == 'rss':
103103
return result + [self.site.config['RSS_FILENAME_BASE'](lang)], 'auto'
104+
elif dest_type == 'feed':
105+
return result + [self.site.config['ATOM_FILENAME_BASE'](lang)], 'auto'
104106
return result, 'always'
105107

106108
def provide_context_and_uptodate(self, classification, lang, node=None):

0 commit comments

Comments
 (0)
Please sign in to comment.