diff --git a/CHANGES b/CHANGES index 82308bb23..be4f3aa38 100644 --- a/CHANGES +++ b/CHANGES @@ -154,6 +154,16 @@ Features added - Added Danish translation, thanks to Hjorth Larsen. +Release 0.6.8 (in development) +============================== + +* #445: Fix links to result pages when using the search function + of HTML built with the ``dirhtml`` builder. + +* #444: In templates, properly re-escape values treated with the + "striptags" Jinja filter. + + Release 0.6.7 (Jun 05, 2010) ============================ diff --git a/sphinx/builders/html.py b/sphinx/builders/html.py index 2ca0edb70..6b3eada79 100644 --- a/sphinx/builders/html.py +++ b/sphinx/builders/html.py @@ -800,6 +800,10 @@ class DirectoryHTMLBuilder(StandaloneHTMLBuilder): return outfilename + def prepare_writing(self, docnames): + StandaloneHTMLBuilder.prepare_writing(self, docnames) + self.globalcontext['no_search_suffix'] = True + class SingleFileHTMLBuilder(StandaloneHTMLBuilder): """ diff --git a/sphinx/themes/agogo/layout.html b/sphinx/themes/agogo/layout.html index f1429770b..4a7e263ba 100644 --- a/sphinx/themes/agogo/layout.html +++ b/sphinx/themes/agogo/layout.html @@ -23,7 +23,7 @@ {%- endblock %}