Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
23 changed files
with
96 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1,4 +1,4 @@ | ||
New in master | ||
New in v7.8.0 | ||
============= | ||
|
||
Features | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -9,7 +9,7 @@ | ||
Extending Nikola | ||
================ | ||
|
||
:Version: 7.7.12 | ||
:Version: 7.8.0 | ||
:Author: Roberto Alsina <ralsina@netmanagers.com.ar> | ||
|
||
.. class:: alert alert-info pull-right | ||
BIN
-3 Bytes
(100%)
docs/man/nikola.1.gz
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -6,7 +6,7 @@ Nikola | ||
A Static Site and Blog Generator | ||
-------------------------------- | ||
|
||
:Version: Nikola 7.7.12 | ||
:Version: Nikola 7.8.0 | ||
:Manual section: 1 | ||
:Manual group: User Commands | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -9,7 +9,7 @@ | ||
The Nikola Handbook | ||
=================== | ||
|
||
:Version: 7.7.12 | ||
:Version: 7.8.0 | ||
|
||
.. class:: alert alert-info pull-right | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -9,7 +9,7 @@ | ||
Using Alternative Social Buttons with Nikola | ||
============================================ | ||
|
||
:Version: 7.7.12 | ||
:Version: 7.8.0 | ||
|
||
.. class:: alert alert-info pull-right | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -4,7 +4,7 @@ | ||
.. description: Get help using Nikola, or contact us. | ||
.. author: The Nikola Team | ||
:Version: 7.7.12 | ||
:Version: 7.8.0 | ||
|
||
.. class:: alert alert-info pull-right | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -9,7 +9,7 @@ | ||
Theming Nikola | ||
============== | ||
|
||
:Version: 7.7.12 | ||
:Version: 7.8.0 | ||
:Author: Roberto Alsina <ralsina@netmanagers.com.ar> | ||
|
||
.. class:: alert alert-info pull-right | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -29,7 +29,7 @@ | ||
from __future__ import absolute_import | ||
import os | ||
|
||
__version__ = '7.7.12' | ||
__version__ = '7.8.0' | ||
DEBUG = bool(os.getenv('NIKOLA_DEBUG')) | ||
|
||
from .nikola import Nikola # NOQA | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1,10 +1,10 @@ | ||
#!/snap/nikola/current/usr/bin/python3 | ||
# EASY-INSTALL-ENTRY-SCRIPT: 'Nikola==master' | ||
__requires__ = 'Nikola==7.7.12' | ||
# EASY-INSTALL-ENTRY-SCRIPT: 'Nikola==7.8.0' | ||
__requires__ = 'Nikola==7.8.0' | ||
import sys | ||
from pkg_resources import load_entry_point | ||
|
||
if __name__ == '__main__': | ||
sys.exit( | ||
load_entry_point('Nikola==7.7.12', 'console_scripts', 'nikola')() | ||
load_entry_point('Nikola==7.8.0')() | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.