Skip to content

Commit

Permalink
7.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ralsina committed Aug 8, 2015
1 parent f2e87b4 commit e7c50e7
Show file tree
Hide file tree
Showing 7 changed files with 51 additions and 8 deletions.
1 change: 1 addition & 0 deletions stories/AUTHORS.txt
Expand Up @@ -10,6 +10,7 @@
* `Boris Kaul <https://github.com/localvoid>`_
* `Brandon W. Maister <https://github.com/quodlibetor>`_
* `Bussonnier Matthias <https://gtihub.com/carreau>`_
* `Carlos Martín Sánchez <https://github.com/carlosvin>`_
* `Carsten Grohmann <https://github.com/CarstenGrohmann>`_
* `Casey M. Bessette <https://github.com/caseybessette>`_
* `Chris Lee <https://github.com/clee>`_
Expand Down
26 changes: 26 additions & 0 deletions stories/CHANGES.txt
@@ -1,3 +1,28 @@
New in v7.6.3
=============

Features
--------

* New translations: Serbian and Bosnian, by saleone
* Added mechanism for rest extensions to depend on configuration options
(Issue #1919)
* Render Jupyter notebooks (ipynb) in listings (Issue #1900)

Bugfixes
--------

* Handle folders without trailing slashes in nikola auto (Issue #1933)
* Set a base element to aid relative URL resolution, stripped on-the-fly
when using the auto or serve command to view site locally. (Issue #1922)
* Rebuild archives when post slugs and titles change (Issue #1931)
* Handle special characters in URLs in nikola auto (Issue #1925)
* Avoid Broken Pipe error in nikola auto (Issue #1906)
* "nikola auto" serving implicit index.html with wrong mime type (Issue #1921)
* Handle non-integer shutter speeds and other variables in WordPress
importer (Issue #1917)


New in v7.6.2
=============

Expand All @@ -12,6 +37,7 @@ Features
Bugfixes
--------

* Don't auto-rebuild on changes to ".foo" or "foo~" or changes in folders.
* Don't assume things are HTML in auto mode (Issue #1915)
* Don’t rebuild Atom syndication files unnecessarily often
* Include .php files in sitemaps
Expand Down
2 changes: 1 addition & 1 deletion stories/conf.txt
@@ -1,4 +1,4 @@
.. title: Nikola v7.6.1 configuration file
.. title: Nikola v7.6.3 configuration file
.. slug: conf
.. date: 2014-11-08 18:51:30 UTC
.. description: The Nikola configuration file.
Expand Down
24 changes: 20 additions & 4 deletions stories/extending.txt
Expand Up @@ -8,7 +8,7 @@
Extending Nikola
================

:Version: 7.6.2
:Version: 7.6.3
:Author: Roberto Alsina <ralsina@netmanagers.com.ar>

.. class:: alert alert-info pull-right
Expand All @@ -34,7 +34,9 @@ of Nikola.
Command Plugins
---------------

When you run ``nikola --help`` you will see something like this::
When you run ``nikola --help`` you will see something like this:

.. code-block:: console

$ nikola help
Nikola is a tool to create static websites and blogs. For full documentation and more
Expand Down Expand Up @@ -146,7 +148,9 @@ For your own plugin, just change the values in a sensible way. The
httpd.serve_forever()

As mentioned above, a plugin can have options, which the user can see by doing
``nikola help command`` and can later use, for example::
``nikola help command`` and can later use, for example:

.. code-block:: console

$ nikola help serve
Purpose: start the test webserver
Expand Down Expand Up @@ -258,7 +262,7 @@ T
and ``TaskMultiplier`` plugins that take a task and create
more tasks out of it.

::
.. code-block:: console

$ nikola list
Scanning posts....done!
Expand Down Expand Up @@ -384,6 +388,18 @@ RestExtension Plugins

Implement directives for reStructuredText, see `media.py <https://github.com/getnikola/nikola/blob/master/nikola/plugins/compile/rest/media.py>`__ for a simple example.

If your output depends on a config value, you need to make your post record a dependency on a pseudo-path, like this:

.. code-block:: text

####MAGIC####CONFIG:OPTIONNAME

Then, whenever the ``OPTIONNAME`` option is changed in conf.py, the file will be rebuilt.

If your directive depends or may depend on the whole timeline (like the post-list directive, where adding new posts
to the site could make it stale), you should record a dependency on the
pseudo-path ``####MAGIC####TIMELINE``.

MarkdownExtension Plugins
-------------------------

Expand Down
2 changes: 1 addition & 1 deletion stories/manual.txt
Expand Up @@ -7,7 +7,7 @@
The Nikola Handbook
===================

:Version: 7.6.2
:Version: 7.6.3

.. class:: alert alert-info pull-right

Expand Down
2 changes: 1 addition & 1 deletion stories/social_buttons.txt
Expand Up @@ -8,7 +8,7 @@
Using Alternative Social Buttons with Nikola
============================================

:Version: 7.6.2
:Version: 7.6.3

.. class:: alert alert-info pull-right

Expand Down
2 changes: 1 addition & 1 deletion stories/theming.txt
Expand Up @@ -8,7 +8,7 @@
Theming Nikola
==============

:Version: 7.6.2
:Version: 7.6.3
:Author: Roberto Alsina <ralsina@netmanagers.com.ar>

.. class:: alert alert-info pull-right
Expand Down

0 comments on commit e7c50e7

Please sign in to comment.