Skip to content

Commit

Permalink
7.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ralsina committed Aug 22, 2015
1 parent e567bd4 commit 41b6c33
Show file tree
Hide file tree
Showing 8 changed files with 52 additions and 11 deletions.
9 changes: 5 additions & 4 deletions listings/conf.py
Expand Up @@ -56,6 +56,7 @@
# ko Korean
# nb Norwegian Bokmål
# nl Dutch
# pa Punjabi
# pl Polish
# pt_br Portuguese (Brasil)
# ru Russian
Expand Down Expand Up @@ -610,7 +611,7 @@
# ("icon", "/icon_128x128.png", "128x128"),
# )

# Show only teasers in the index pages? Defaults to False.
# Show teasers (instead of full posts) in indexes? Defaults to False.
# INDEX_TEASERS = False

# HTML fragments with the Read more... links.
Expand Down Expand Up @@ -646,10 +647,10 @@
# I recommend using the Creative Commons' wizard:
# http://creativecommons.org/choose/
# LICENSE = """
# <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/2.5/ar/">
# <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">
# <img alt="Creative Commons License BY-NC-SA"
# style="border-width:0; margin-bottom:12px;"
# src="http://i.creativecommons.org/l/by-nc-sa/2.5/ar/88x31.png"></a>"""
# src="http://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png"></a>"""

# A small copyright notice for the page footer (in HTML).
# (translatable)
Expand Down Expand Up @@ -842,7 +843,7 @@
# change it for a FeedBurner feed or something else.
# RSS_LINK = None

# Show only teasers in the RSS and Atom feeds? Default to True
# Show teasers (instead of full posts) in feeds? Defaults to True.
# RSS_TEASERS = True

# Strip HTML in the RSS feed? Default to False
Expand Down
1 change: 1 addition & 0 deletions stories/AUTHORS.txt
Expand Up @@ -86,6 +86,7 @@
* `Tolu Sonaike <https://github.com/tolusonaike>`_
* `Troy Toman <https://github.com/troytoman>`_
* `Udo Spallek <https://github.com/udono>`_
* `Yamila Moreno <https://github.com/yamila-moreno>`_
* `Yaşar Arabacı <https://github.com/yasar11732>`_
* `Yasuhiko Shiga <https://github.com/quoth>`_
* `Zhaojun Meng <https://github.com/zhaojunmeng>`_
Expand Down
26 changes: 26 additions & 0 deletions stories/CHANGES.txt
@@ -1,3 +1,28 @@
New in v7.6.4
=============

Features
--------

* Checking remote links also checks redirects (nikola check -lr)
* Update suggested license to its latest version (Issue #1950)
* Add Punjabi language, by Jasdeep Singh (Issue #1940)
* New option to use custom, and several ``TEASER_END`` values

Bugfixes
--------

* Rewrite srcset links (Issue #1939)
* Add dependencies for include tag in Mako (Issue #1956)
* Don’t duplicate BLOG_TITLE in the front page title (Issue #1952)
* Escape instad of strip HTML in titles (Issue #1952)
* Make LINK_CHECK_WHITELIST apply to remote link checks
* Make STORY_INDEX work together with PRETTY_URLS (Issue #1949)
* Refactor new_post to match lazy plugin loading (Issue #1943)
* Make Nikola startup faster by not loading useless plugins (Issue #1825)
* Ignore sliced multibyte characters when reading metadata for sitemaps
* Fix NameError caused by failed import in auto plugin.

New in v7.6.3
=============

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

* Ignore sliced multibyte characters when reading metadata for sitemaps
* 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)
Expand Down
2 changes: 1 addition & 1 deletion stories/conf.txt
@@ -1,4 +1,4 @@
.. title: Nikola v7.6.3 configuration file
.. title: Nikola v7.6.4 configuration file
.. slug: conf
.. date: 2014-11-08 18:51:30 UTC
.. description: The Nikola configuration file.
Expand Down
2 changes: 1 addition & 1 deletion stories/extending.txt
Expand Up @@ -8,7 +8,7 @@
Extending Nikola
================

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

.. class:: alert alert-info pull-right
Expand Down
19 changes: 16 additions & 3 deletions stories/manual.txt
Expand Up @@ -8,7 +8,7 @@
The Nikola Handbook
===================

:Version: 7.6.3
:Version: 7.6.4

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

Expand Down Expand Up @@ -222,6 +222,10 @@ and more via plugins — for more details, read the `input format documentation
<#multiple-input-formats>`__.
You can learn reStructuredText syntax with the `reST quickstart <https://getnikola.com/quickstart.html>`__.

Please note that Nikola does not guarantee support for encodings other than
UTF-8. We recommend converting your input files to that encoding. It will
prevent bugs, and Nikola will write UTF-8 output anyway.

You can control what markup compiler is used for each file extension with the ``COMPILERS``
option. The default configuration expects them to be placed in ``posts`` but that can be
changed (see below, the ``POSTS`` and ``PAGES`` options)
Expand Down Expand Up @@ -353,7 +357,7 @@ to your configuration:
However, starting with Nikola v7, you can now use ``.meta`` files and put
all metadata you want, complete with the explanations — they look just like
the beginning of our reST files.

.. code:: restructuredtext

.. title: How to make money
Expand Down Expand Up @@ -498,7 +502,16 @@ change that text, you can use a custom teaser:

.. TEASER_END: click to read the rest of the article

Or you can completely customize the link using the ``READ_MORE_LINK`` option
You can override the default value for ``TEASER_END`` in ``conf.py`` — for
example, the following example will work for ``.. more``, and will be
compatible with both WordPress and Nikola posts:

..code:: python

import re
TEASER_REGEXP = re.compile('<!--\s*(more|TEASER_END)(:(.+))?\s*-->', re.IGNORECASE)

Or you can completely customize the link using the ``READ_MORE_LINK`` option.

.. code:: python

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.3
:Version: 7.6.4

.. 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.3
:Version: 7.6.4
:Author: Roberto Alsina <ralsina@netmanagers.com.ar>

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

0 comments on commit 41b6c33

Please sign in to comment.