forked from github/pelican
* Creates pelican.plugins
* Moves plugin related code under pelican.plugins
* pelican.plugins.signals is now the location for signals, pelican.signals is kept
for backwards compatibility
* pelican.plugins._utils contains necessary bits for plugin discovery and loading.
Logic from Pelican class is moved here. Pelican class now just asks for plugins
and registers them
* Contains tests for old and new plugin loading
4 lines
113 B
Python
4 lines
113 B
Python
# -*- coding: utf-8 -*-
|
|
# This file is for backwards compatibility
|
|
|
|
from pelican.plugins.signals import * # noqa
|