Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 41567da

Browse files
author
Roberto Alsina
committedMay 9, 2018
Make post-list and post_list synonymous (Fix #3083)
1 parent 26c8f2b commit 41567da

14 files changed

+6
-6556
lines changed
 

‎CHANGES.txt

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Features
99
Bugfixes
1010
--------
1111

12+
* Make post-list and post_list synonimous (Issue #3083)
1213
* Make ``CATEGORY_PAGES_FOLLOW_DESTPATH`` more resilient (Issue #3081)
1314
* Guard against null items in gallery meta files (Issues #3076, #3077)
1415
* Respect ``USE_FILENAME_AS_TITLE`` in galleries with a meta file

‎nikola/plugins/compile/rest/post_list.py

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ def set_site(self, site):
4646
"""Set Nikola site."""
4747
self.site = site
4848
directives.register_directive('post-list', PostListDirective)
49+
directives.register_directive('post_list', PostListDirective)
4950
PostListDirective.site = site
5051
return super(Plugin, self).set_site(site)
5152

‎nikola/plugins/shortcode/emoji.plugin

-13
This file was deleted.

‎nikola/plugins/shortcode/emoji/__init__.py

-46
This file was deleted.

‎nikola/plugins/shortcode/emoji/data/Activity.json

-418
This file was deleted.

‎nikola/plugins/shortcode/emoji/data/Flags.json

-998
This file was deleted.

‎nikola/plugins/shortcode/emoji/data/Food.json

-274
This file was deleted.

‎nikola/plugins/shortcode/emoji/data/LICENSE

-25
This file was deleted.

‎nikola/plugins/shortcode/emoji/data/Nature.json

-594
This file was deleted.

‎nikola/plugins/shortcode/emoji/data/Objects.json

-718
This file was deleted.

‎nikola/plugins/shortcode/emoji/data/People.json

-1,922
This file was deleted.

‎nikola/plugins/shortcode/emoji/data/Symbols.json

-1,082
This file was deleted.

‎nikola/plugins/shortcode/emoji/data/Travel.json

-466
This file was deleted.

‎nikola/plugins/shortcode/post_list.py

+4
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,10 @@ class PostListShortcode(ShortcodePlugin):
120120

121121
name = "post_list"
122122

123+
def set_site(self, site):
124+
super(PostListShortcode, self).set_site(site)
125+
site.register_shortcode('post-list', self.handler)
126+
123127
def handler(self, start=None, stop=None, reverse=False, tags=None, require_all_tags=False, categories=None,
124128
sections=None, slugs=None, post_type='post', type=False,
125129
lang=None, template='post_list_directive.tmpl', sort=None,

0 commit comments

Comments
 (0)
Please sign in to comment.