Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
7.6.2
  • Loading branch information
ralsina committed Jul 29, 2015
1 parent 88ff7c0 commit ea48126
Show file tree
Hide file tree
Showing 7 changed files with 53 additions and 16 deletions.
27 changes: 16 additions & 11 deletions listings/conf.py
Expand Up @@ -859,26 +859,31 @@
# it appears on the navigation bar:
#
# SEARCH_FORM = """
# <!-- Custom search -->
# <!-- DuckDuckGo custom search -->
# <form method="get" id="search" action="//duckduckgo.com/"
# class="navbar-form pull-left">
# <input type="hidden" name="sites" value="%s"/>
# <input type="hidden" name="k8" value="#444444"/>
# <input type="hidden" name="k9" value="#D51920"/>
# <input type="hidden" name="kt" value="h"/>
# <input type="hidden" name="sites" value="%s">
# <input type="hidden" name="k8" value="#444444">
# <input type="hidden" name="k9" value="#D51920">
# <input type="hidden" name="kt" value="h">
# <input type="text" name="q" maxlength="255"
# placeholder="Search&hellip;" class="span2" style="margin-top: 4px;"/>
# <input type="submit" value="DuckDuckGo Search" style="visibility: hidden;" />
# placeholder="Search&hellip;" class="span2" style="margin-top: 4px;">
# <input type="submit" value="DuckDuckGo Search" style="visibility: hidden;">
# </form>
# <!-- End of custom search -->
# """ % SITE_URL
#
# If you prefer a Google search form, here's an example that should just work:
# SEARCH_FORM = """
# <!-- Custom search with Google-->
# <form id="search" action="//www.google.com/search" method="get" class="navbar-form pull-left">
# <input type="hidden" name="q" value="site:%s" />
# <input type="text" name="q" maxlength="255" results="0" placeholder="Search"/>
# <!-- Google custom search -->
# <form method="get" action="http://www.google.com/search" class="navbar-form navbar-right" role="search">
# <div class="form-group">
# <input type="text" name="q" class="form-control" placeholder="Search">
# </div>
# <button type="submit" class="btn btn-primary">
# <span class="glyphicon glyphicon-search"></span>
# </button>
# <input type="hidden" name="sitesearch" value="%s">
# </form>
# <!-- End of custom search -->
# """ % SITE_URL
Expand Down
29 changes: 29 additions & 0 deletions stories/CHANGES.txt
@@ -1,3 +1,30 @@
New in v7.6.2
=============

Features
--------

* Make the Google Search example prettier, integrating well with
Bootstrap 3 (Issue #1912)
* Add categories filter to post list directive (via Issue #1889)
* Remove empty directories with nikola check --clean-files (Issue #1873)

Bugfixes
--------

* Don't assume things are HTML in auto mode (Issue #1915)
* Don’t rebuild Atom syndication files unnecessarily often
* Include .php files in sitemaps
* Retry all client errors (4xx) to HEAD as GET reques when checking remote links
* Graceful fallback in ``nikola serve --detach`` on Windows (Issue #1913)
* Don't auto-rebuild on changes to ".foo" or "foo~" or changes in folders
* auto should also rebuild in response to move events
* Don’t get metadata from file if compiler-specific metadata exist (Issue #1904)
* Fix PRETTY_URLS prompt for Windows (Issue #1901)
* Fix reST and Markdown title extraction from documents (Issue #1895, #1898)
* Minor improvements to the extending document
* Re-add the hack to kill nikola auto on ^C (Issue #1893)

New in v7.6.1
=============

Expand Down Expand Up @@ -35,6 +62,8 @@ Features
Bugfixes
--------

* Use ``http`` as fallback in plugin/theme installers if a SSL error occurs
(Issue getnikola/nikola-themes#49)
* Add missing ``xmlns:xhtml`` namespace to sitemaps (Issue #1890)
* Fixed superfluous rebuild problems with Python 3. Note that this will cause
rebuilds for most sites. (Issue #1887)
Expand Down
2 changes: 1 addition & 1 deletion stories/conf.txt
Expand Up @@ -4,6 +4,6 @@
.. description: The Nikola configuration file.
.. type: text

The default config file for Nikola v7.6.1 is reproduced below.
The default config file for Nikola v7.6.2 is reproduced below.

.. listing:: conf.py python
2 changes: 1 addition & 1 deletion stories/extending.txt
Expand Up @@ -8,7 +8,7 @@
Extending Nikola
================

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

.. class:: alert alert-info pull-right
Expand Down
5 changes: 4 additions & 1 deletion stories/manual.txt
Expand Up @@ -7,7 +7,7 @@
The Nikola Handbook
===================

:Version: 7.6.1
:Version: 7.6.2

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

Expand Down Expand Up @@ -1737,7 +1737,10 @@ The following options are recognized:

* ``tags`` : string [, string...]
Filter posts to show only posts having at least one of the ``tags``.
Defaults to None.

* ``categories`` : string [, string...]
Filter posts to show only posts having one of the ``categories``.
Defaults to None.

* ``slugs`` : string [, string...]
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.1
:Version: 7.6.2

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

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

0 comments on commit ea48126

Please sign in to comment.