Skip to content

Commit

Permalink
Version 7.8.8
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed Jun 12, 2017
1 parent 8f8a215 commit 50dbc9d
Show file tree
Hide file tree
Showing 71 changed files with 173 additions and 155 deletions.
8 changes: 7 additions & 1 deletion CHANGES.txt
@@ -1,6 +1,12 @@
New in master
New in v7.8.8
=============

This release fixes two grave bugs in TOML metadata support (sorry!).
The built-in themes have also been cleaned up and include less unused
assets. In addition, taxonomies now support translations. HTML meta
tags are also possible metadata sources. The default metadata format
to generate can now be changed.

Features
--------

Expand Down
2 changes: 1 addition & 1 deletion docs/extending.txt
Expand Up @@ -9,7 +9,7 @@
Extending Nikola
================

:Version: 7.8.7
:Version: 7.8.8
:Author: Roberto Alsina <ralsina@netmanagers.com.ar>

.. class:: alert alert-info pull-right
Expand Down
Binary file modified docs/man/nikola.1.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/man/nikola.rst
Expand Up @@ -6,7 +6,7 @@ Nikola
A Static Site and Blog Generator
--------------------------------

:Version: Nikola 7.8.7
:Version: Nikola 7.8.8
:Manual section: 1
:Manual group: User Commands

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

:Version: 7.8.7
:Version: 7.8.8

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

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

:Version: 7.8.7
:Version: 7.8.8

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

Expand Down
4 changes: 2 additions & 2 deletions docs/sphinx/conf.py
Expand Up @@ -51,9 +51,9 @@
# built documents.
#
# The short X.Y version.
version = '7.8.7'
version = '7.8.8'
# The full version, including alpha/beta/rc tags.
release = '7.8.7'
release = '7.8.8'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/support.rst
Expand Up @@ -4,7 +4,7 @@
.. description: Get help using Nikola, or contact us.
.. author: The Nikola Team
:Version: 7.8.7
:Version: 7.8.8

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

Expand Down
2 changes: 1 addition & 1 deletion docs/template-variables.rst
Expand Up @@ -3,7 +3,7 @@
.. date: 2017-04-13 12:00:00
.. author: The Nikola Team
:Version: 7.8.7
:Version: 7.8.8
:Author: Chris Warrick <chris@getnikola.com>

Variables available in templates are listed below.
Expand Down
2 changes: 1 addition & 1 deletion docs/theming.txt
Expand Up @@ -9,7 +9,7 @@
Theming Nikola
==============

:Version: 7.8.7
:Version: 7.8.8
:Author: Roberto Alsina <ralsina@netmanagers.com.ar>

.. class:: alert alert-info pull-right
Expand Down
2 changes: 1 addition & 1 deletion nikola/__init__.py
Expand Up @@ -29,7 +29,7 @@
from __future__ import absolute_import
import os

__version__ = '7.8.7'
__version__ = '7.8.8'
DEBUG = bool(os.getenv('NIKOLA_DEBUG'))

from .nikola import Nikola # NOQA
Expand Down
5 changes: 4 additions & 1 deletion nikola/data/themes/base-jinja/templates/base.tmpl
Expand Up @@ -26,7 +26,10 @@
<script src="/assets/js/baguetteBox.min.js"></script>
{% endif %}
{% block extra_js %}{% endblock %}
<script>baguetteBox.run('a.reference');</script>
<script>baguetteBox.run('a.reference', {
captions: function(element) {
return element.getElementsByTagName('img')[0].alt;
}});</script>
{{ body_end }}
{{ template_hooks['body_end']() }}
</body>
Expand Down
7 changes: 5 additions & 2 deletions nikola/data/themes/base-jinja/templates/gallery.tmpl
Expand Up @@ -75,6 +75,7 @@ flowr(document.querySelectorAll("#gallery_container")[0], {
img.setAttribute('src', params.itemData.url_thumb);
img.setAttribute('width', params.width);
img.setAttribute('height', params.height);
img.setAttribute('alt', params.itemData.title);
img.style.maxWidth = '100%';
link = document.createElement("a");
link.setAttribute('href', params.itemData.url);
Expand All @@ -96,7 +97,9 @@ flowr(document.querySelectorAll("#gallery_container")[0], {
}
}
});
baguetteBox.run('#gallery_container');
baguetteBox.run('#gallery_container', {
captions: function(element) {
return element.getElementsByTagName('img')[0].alt;
}});
</script>
{% endblock %}

8 changes: 4 additions & 4 deletions nikola/data/themes/base/messages/messages_de.py
Expand Up @@ -8,7 +8,7 @@
"(active)": "(aktiv)",
"Also available in:": "Auch verfügbar in:",
"Archive": "Archiv",
"Atom feed": "",
"Atom feed": "Atom-Feed",
"Authors": "Autoren",
"Categories": "Kategorien",
"Comments": "Kommentare",
Expand All @@ -17,7 +17,7 @@
"More posts about %s": "Weitere Einträge über %s",
"Newer posts": "Neuere Einträge",
"Next post": "Nächster Eintrag",
"Next": "",
"Next": "Nächster Eintrag",
"No posts found.": "Keine Einträge gefunden.",
"Nothing found.": "Nichts gefunden.",
"Older posts": "Ältere Einträge",
Expand All @@ -29,7 +29,7 @@
"Posts for {month} {day}, {year}": "Einträge vom {day}. {month} {year}",
"Posts for {month} {year}": "Einträge aus {month} {year}",
"Previous post": "Vorheriger Eintrag",
"Previous": "",
"Previous": "Vorheriger Eintrag",
"Publication date": "Veröffentlichungsdatum",
"RSS feed": "RSS-Feed",
"Read in English": "Auf Deutsch lesen",
Expand All @@ -41,7 +41,7 @@
"Tags": "Tags",
"Toggle navigation": "Navigation umschalten",
"Uncategorized": "Nicht kategorisiert",
"Up": "",
"Up": "Nach oben",
"Updates": "Updates",
"Write your page here.": "Schreibe hier deinen Seiteninhalt hin.",
"Write your post here.": "Schreibe hier deinen Eintrag hin.",
Expand Down
12 changes: 6 additions & 6 deletions nikola/data/themes/base/messages/messages_es.py
Expand Up @@ -8,7 +8,7 @@
"(active)": "(activo)",
"Also available in:": "También disponible en:",
"Archive": "Archivo",
"Atom feed": "",
"Atom feed": "Canal Atom",
"Authors": "Autores",
"Categories": "Categorías",
"Comments": "Comentarios",
Expand All @@ -17,7 +17,7 @@
"More posts about %s": "Más publicaciones sobre %s",
"Newer posts": "Publicaciones posteriores",
"Next post": "Siguiente publicación",
"Next": "",
"Next": "Siguiente",
"No posts found.": "No se encontraron publicaciones.",
"Nothing found.": "No se encontró nada.",
"Older posts": "Publicaciones anteriores",
Expand All @@ -29,7 +29,7 @@
"Posts for {month} {day}, {year}": "Publicaciones del {day} de {month} de {year}",
"Posts for {month} {year}": "Posts de {month} de {year}",
"Previous post": "Publicación anterior",
"Previous": "",
"Previous": "Anterior",
"Publication date": "Fecha de publicación",
"RSS feed": "Canal RSS",
"Read in English": "Leer en español",
Expand All @@ -41,12 +41,12 @@
"Tags": "Etiquetas",
"Toggle navigation": "Mostrar navegación",
"Uncategorized": "Sin categoría",
"Up": "",
"Up": "Arriba",
"Updates": "Actualizaciones",
"Write your page here.": "Escriba su página aquí.",
"Write your post here.": "Escriba su publicación aquí.",
"old posts, page %d": "publicaciones antiguas, página %d",
"page %d": "página %d",
"{month} {day}, {year}": "",
"{month} {year}": "",
"{month} {day}, {year}": "{month} {day}, {year}",
"{month} {year}": "{month} {year}",
}
2 changes: 1 addition & 1 deletion nikola/data/themes/base/messages/messages_fi.py
Expand Up @@ -8,7 +8,7 @@
"(active)": "(aktiivinen)",
"Also available in:": "Saatavilla myös:",
"Archive": "Arkisto",
"Atom feed": "",
"Atom feed": "Atom-syöte",
"Authors": "Kirjoittajat",
"Categories": "Kategoriat",
"Comments": "Kommentit",
Expand Down
14 changes: 7 additions & 7 deletions nikola/data/themes/base/messages/messages_ja.py
Expand Up @@ -8,7 +8,7 @@
"(active)": "(有効)",
"Also available in:": "他の言語で読む:",
"Archive": "文書一覧",
"Atom feed": "",
"Atom feed": "Atomフィード",
"Authors": "著者一覧",
"Categories": "カテゴリ",
"Comments": "コメント",
Expand All @@ -17,7 +17,7 @@
"More posts about %s": "%sに関する文書一覧",
"Newer posts": "新しい文書",
"Next post": "次の文書",
"Next": "",
"Next": "",
"No posts found.": "文書はありません。",
"Nothing found.": "なにも見つかりませんでした。",
"Older posts": "過去の文書",
Expand All @@ -29,7 +29,7 @@
"Posts for {month} {day}, {year}": "{year}年{month}{day}日の文書",
"Posts for {month} {year}": "{year}年{month}の文書",
"Previous post": "一つ前の文書",
"Previous": "",
"Previous": "",
"Publication date": "公開日",
"RSS feed": "RSSフィード",
"Read in English": "日本語で読む",
Expand All @@ -39,14 +39,14 @@
"Subcategories:": "サブカテゴリ",
"Tags and Categories": "カテゴリおよびタグ一覧",
"Tags": "タグ",
"Toggle navigation": "",
"Toggle navigation": "ナビゲーションを隠す",
"Uncategorized": "uncategorized",
"Up": "",
"Up": "",
"Updates": "フィード",
"Write your page here.": "ここに文書を記述してください。",
"Write your post here.": "ここに文書を記述してください。",
"old posts, page %d": "過去の文書 %dページ目",
"page %d": "ページ%d",
"{month} {day}, {year}": "",
"{month} {year}": "",
"{month} {day}, {year}": "{月} {日}, {年}",
"{month} {year}": "{月} {年}",
}
2 changes: 1 addition & 1 deletion nikola/data/themes/base/messages/messages_nl.py
Expand Up @@ -8,7 +8,7 @@
"(active)": "(actief)",
"Also available in:": "Ook beschikbaar in:",
"Archive": "Archief",
"Atom feed": "",
"Atom feed": "Atom-feed",
"Authors": "Auteurs",
"Categories": "Categorieën",
"Comments": "Commentaar",
Expand Down
12 changes: 6 additions & 6 deletions nikola/data/themes/base/messages/messages_pa.py
Expand Up @@ -17,7 +17,7 @@
"More posts about %s": "%s ਬਾਰੇ ਹੋਰ ਲਿਖਤਾਂ",
"Newer posts": "ਨਵੀਆਂ ਲਿਖਤਾਂ",
"Next post": "ਅਗਲੀ ਲਿਖਤ",
"Next": "",
"Next": "ਅੱਗੇ ",
"No posts found.": "ਕੋਈ ਲਿਖਤ ਨਹੀਂ ਲੱਭੀ |",
"Nothing found.": "ਕੁਝ ਨਹੀਂ ਲੱਭਿਆ |",
"Older posts": "ਪੁਰਾਣੀਆਂ ਲਿਖਤਾਂ",
Expand All @@ -29,7 +29,7 @@
"Posts for {month} {day}, {year}": "{day} {month} {year} ਦੀਆਂ ਲਿਖਤਾਂ",
"Posts for {month} {year}": "{month} {year} ਦੀਆਂ ਲਿਖਤਾਂ",
"Previous post": "ਪਿਛਲੀ ਲਿਖਤ",
"Previous": "",
"Previous": "ਪਿੱਛੇ ",
"Publication date": "ਛਪਾਈ ਦੀ ਤਰੀਕ",
"RSS feed": "ਆਰ ਐੱਸ ਐੱਸ ਫੀਡ",
"Read in English": "ਪੰਜਾਬੀ ਵਿੱਚ ਪੜ੍ਹੋ",
Expand All @@ -39,14 +39,14 @@
"Subcategories:": "ਉਪਸ਼੍ਰੇਣੀਆਂ:",
"Tags and Categories": "ਟੈਗ ਅਤੇ ਸ਼੍ਰੇਣੀਆਂ",
"Tags": "ਟੈਗ",
"Toggle navigation": "",
"Toggle navigation": "ਨੈਵੀਗੇਸ਼ਨ ਬਦਲੋ ",
"Uncategorized": "ਇਤਾਹਾਸ",
"Up": "",
"Up": "ਉੱਤੇ ",
"Updates": "ਅੱਪਡੇਟਸ",
"Write your page here.": "ਆਪਣਾ ਸਫ਼ਾ ਏਥੇ ਲਿਖੋ |",
"Write your post here.": "ਆਪਣੀ ਲਿਖਤ ਏਥੇ ਲਿਖੋ |",
"old posts, page %d": "ਪੁਰਾਣੀਆਂ ਲਿਖਤਾਂ , ਸਫ਼ਾ %d",
"page %d": "ਸਫ਼ਾ %d",
"{month} {day}, {year}": "",
"{month} {year}": "",
"{month} {day}, {year}": "{ਮਹੀਨਾ} {ਦਿਨ}, {ਸਾਲ} ",
"{month} {year}": "{ਮਹੀਨਾ} {ਸਾਲ}",
}
22 changes: 11 additions & 11 deletions nikola/data/themes/base/messages/messages_sk.py
Expand Up @@ -8,28 +8,28 @@
"(active)": "(aktívne)",
"Also available in:": "Tiež dostupné v:",
"Archive": "Archív",
"Atom feed": "",
"Authors": "",
"Atom feed": "Atom kanál",
"Authors": "Autori",
"Categories": "Kategórie",
"Comments": "Komentáre",
"LANGUAGE": "Slovenčina",
"Languages:": "Jazyky:",
"More posts about %s": "Viac príspevkov o %s",
"Newer posts": "Novšie príspevky",
"Next post": "Nasledujúci príspevok",
"Next": "",
"Next": "Nasledujúci",
"No posts found.": "Žiadne príspevky nenájdené",
"Nothing found.": "Nič nenájdené.",
"Older posts": "Staršie príspevky",
"Original site": "Pôvodná stránka",
"Posted:": "Zverejnené:",
"Posts about %s": "Príspevky o %s",
"Posts by %s": "",
"Posts by %s": "Príspevky od %s",
"Posts for year %s": "Príspevky z roku %s",
"Posts for {month} {day}, {year}": "Príspevky zo dňa {day}. {month} {year}",
"Posts for {month} {year}": "Príspevky za mesiac {month} z roku {year}",
"Previous post": "Predchádzajúci príspevok",
"Previous": "",
"Previous": "Predchádzajúci",
"Publication date": "Dátum zverejnenia",
"RSS feed": "RSS kanál",
"Read in English": "Čítať v slovenčine",
Expand All @@ -39,14 +39,14 @@
"Subcategories:": "Podkategórie:",
"Tags and Categories": "Štítky a kategórie",
"Tags": "Štítky",
"Toggle navigation": "",
"Uncategorized": "",
"Up": "",
"Updates": "",
"Toggle navigation": "Prepnúť navigáciu",
"Uncategorized": "Nekategorizované",
"Up": "Dohora",
"Updates": "Aktualizácie",
"Write your page here.": "Tu napíšte svoju stránku.",
"Write your post here.": "Tu napíšte svoj príspevok.",
"old posts, page %d": "staré príspevky, strana %d",
"page %d": "stránka %d",
"{month} {day}, {year}": "",
"{month} {year}": "",
"{month} {day}, {year}": "{day}. {monts} {year}",
"{month} {year}": "{month} {year}",
}

0 comments on commit 50dbc9d

Please sign in to comment.