Skip to content

Commit c9e6d8c

Browse files
committedJul 5, 2015
Revert "Trying to de-duplicate code."
This reverts commit ceda8e9.
1 parent ceda8e9 commit c9e6d8c

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed
 

‎nikola/nikola.py

+1
Original file line numberDiff line numberDiff line change
@@ -831,6 +831,7 @@ def __init__(self, **config):
831831

832832
def _activate_plugins_of_category(self, category):
833833
"""Activate all the plugins of a given category and return them."""
834+
# this code duplicated in tests/base.py
834835
plugins = []
835836
for plugin_info in self.plugin_manager.getPluginsOfCategory(category):
836837
if plugin_info.name in self.config.get('DISABLED_PLUGINS'):

‎tests/base.py

+12-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
MarkdownExtension,
3535
RestExtension
3636
)
37-
import nikola
3837

3938

4039
if sys.version_info < (2, 7):
@@ -243,7 +242,18 @@ def __init__(self):
243242
self.template_system = self
244243
self.name = 'mako'
245244

246-
_activate_plugins_of_category = nikola.Nikola._activate_plugins_of_category
245+
def _activate_plugins_of_category(self, category):
246+
"""Activate all the plugins of a given category and return them."""
247+
# this code duplicated in nikola/nikola.py
248+
plugins = []
249+
for plugin_info in self.plugin_manager.getPluginsOfCategory(category):
250+
if plugin_info.name in self.config.get('DISABLED_PLUGINS'):
251+
self.plugin_manager.removePluginFromCategory(plugin_info, category)
252+
else:
253+
self.plugin_manager.activatePluginByName(plugin_info.name)
254+
plugin_info.plugin_object.set_site(self)
255+
plugins.append(plugin_info)
256+
return plugins
247257

248258
def render_template(self, name, _, context):
249259
return('<img src="IMG.jpg">')

0 commit comments

Comments
 (0)
Please sign in to comment.