Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: getnikola/nikola
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 68ad92afe35c
Choose a base ref
...
head repository: getnikola/nikola
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3f7a7745586e
Choose a head ref
  • 2 commits
  • 16 files changed
  • 1 contributor

Commits on Aug 29, 2016

  1. v7.8.0

    ralsina committed Aug 29, 2016
    Copy the full SHA
    1a7226e View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3f7a774 View commit details
2 changes: 1 addition & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
New in master
New in v7.8.0
=============

Features
2 changes: 1 addition & 1 deletion docs/extending.txt
Original file line number Diff line number Diff line change
@@ -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
Binary file modified docs/man/nikola.1.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/man/nikola.rst
Original file line number Diff line number Diff line change
@@ -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

2 changes: 1 addition & 1 deletion docs/manual.txt
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@
The Nikola Handbook
===================

:Version: 7.7.12
:Version: 7.8.0

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

14 changes: 13 additions & 1 deletion docs/path_handlers.txt
Original file line number Diff line number Diff line change
@@ -157,6 +157,18 @@ listing
link://listing/tutorial/hello.py => /listings/tutorial/hello.py.html


listing_source
A link to the source code for a listing.

It will try to use the file name if it's not ambiguous, or the file path.

Example:

link://listing_source/hello.py => /listings/tutorial/hello.py

link://listing_source/tutorial/hello.py => /listings/tutorial/hello.py


post_path
Link to the destination of an element in the POSTS/PAGES settings.

@@ -204,7 +216,7 @@ section_index_rss

Example:

link://section_index_atom/cars => /cars/rss.xml
link://section_index_rss/cars => /cars/rss.xml


slug
2 changes: 1 addition & 1 deletion docs/social_buttons.txt
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@
Using Alternative Social Buttons with Nikola
============================================

:Version: 7.7.12
:Version: 7.8.0

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

4 changes: 2 additions & 2 deletions docs/sphinx/conf.py
Original file line number Diff line number Diff line change
@@ -51,9 +51,9 @@
# built documents.
#
# The short X.Y version.
version = '7.7.12'
version = '7.8.0'
# The full version, including alpha/beta/rc tags.
release = '7.7.12'
release = '7.8.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
2 changes: 1 addition & 1 deletion docs/support.rst
Original file line number Diff line number Diff line change
@@ -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

2 changes: 1 addition & 1 deletion docs/theming.txt
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion nikola/__init__.py
Original file line number Diff line number Diff line change
@@ -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
8 changes: 4 additions & 4 deletions nikola/data/themes/base/messages/messages_tr.py
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@
"Comments": "Yorumlar",
"LANGUAGE": "Türkçe",
"Languages:": "Diller:",
"More posts about %s": "%s ilgili diğer yazılar",
"More posts about %s": "%s hakkında diğer yazılar",
"Newer posts": "Daha yeni yazılar",
"Next post": "Sonraki yazı",
"No posts found.": "Yazı bulunamadı.",
@@ -20,9 +20,9 @@
"Original site": "Orjinal web sayfası",
"Posted:": "Yayın tarihi:",
"Posts about %s": "%s ile ilgili yazılar",
"Posts by %s": "%s tarafından yazılar",
"Posts by %s": "%s tarafından yazılanlar",
"Posts for year %s": "%s yılındaki yazılar",
"Posts for {month} {day}, {year}": "{month} {day}, {year} 'den beri olan yazılar",
"Posts for {month} {day}, {year}": "{month} {day}, {year} tarihinden itibaren yazılar",
"Posts for {month} {year}": "{month} {year} göre yazılar",
"Previous post": "Önceki yazı",
"Publication date": "Yayınlanma tarihi",
@@ -31,7 +31,7 @@
"Read more": "Devamını oku",
"Skip to main content": "Ana içeriğe geç",
"Source": "Kaynak",
"Subcategories:": "Altkategoriler:",
"Subcategories:": "Alt kategoriler:",
"Tags and Categories": "Etiketler ve Kategoriler",
"Tags": "Etiketler",
"Uncategorized": "Kategorisiz",
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -112,7 +112,7 @@ def run(self):


setup(name='Nikola',
version='7.7.12',
version='7.8.0',
description='A modular, fast, simple, static website and blog generator',
long_description=open('README.rst').read(),
author='Roberto Alsina and others',
6 changes: 3 additions & 3 deletions snapcraft/nikola.py
Original file line number Diff line number Diff line change
@@ -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')()
)
4 changes: 2 additions & 2 deletions snapcraft/stable/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: nikola
version: 7.7.12
version: 7.8.0
summary: A static website generator
description: A static website generator
confinement: strict
@@ -17,7 +17,7 @@ parts:
nikola-source:
plugin: python3
source: git://github.com/getnikola/nikola.git
source-tag: v7.7.12
source-tag: v7.8.0
requirements: requirements.txt
stage-packages:
- locales
14 changes: 7 additions & 7 deletions translations/nikola.messages/tr.po
Original file line number Diff line number Diff line change
@@ -7,16 +7,16 @@
# Translators:
# Translators:
# Translators:
# Batuhan Büyükgüzel <bbuyukguzel@gmail.com>, 2013-2015
# Batuhan Büyükgüzel <bbuyukguzel@gmail.com>, 2013-2016
# Caner Başaran <basaran.caner@gmail.com>, 2013-2014,2016
# Caner Başaran <basaran.caner@gmail.com>, 2013
msgid ""
msgstr ""
"Project-Id-Version: Nikola\n"
"Report-Msgid-Bugs-To: ralsina@netmanagers.com.ar\n"
"POT-Creation-Date: 2013-03-15 12:24-0300\n"
"PO-Revision-Date: 2016-01-14 21:40+0000\n"
"Last-Translator: Caner Başaran <basaran.caner@gmail.com>\n"
"PO-Revision-Date: 2016-04-18 10:26+0000\n"
"Last-Translator: Batuhan Büyükgüzel <bbuyukguzel@gmail.com>\n"
"Language-Team: Turkish (http://www.transifex.com/ralsina/nikola/language/tr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -25,7 +25,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"

msgid "More posts about %s"
msgstr "%s ilgili diğer yazılar"
msgstr "%s hakkında diğer yazılar"

#. Here your translation should NOT say English but the name of your language
#. instead
@@ -101,7 +101,7 @@ msgid "Posts for {month} {year}"
msgstr "{month} {year} göre yazılar"

msgid "Posts for {month} {day}, {year}"
msgstr "{month} {day}, {year} 'den beri olan yazılar"
msgstr "{month} {day}, {year} tarihinden itibaren yazılar"

msgid "Nothing found."
msgstr "Hiçbir şey bulunamadı."
@@ -119,7 +119,7 @@ msgid "Skip to main content"
msgstr "Ana içeriğe geç"

msgid "Subcategories:"
msgstr "Altkategoriler:"
msgstr "Alt kategoriler:"

#. Used for active navigation links, for screen readers only
msgid "(active)"
@@ -144,4 +144,4 @@ msgid "Authors"
msgstr "Yazarlar"

msgid "Posts by %s"
msgstr "%s tarafından yazılar"
msgstr "%s tarafından yazılanlar"