summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgeorg.brandl <devnull@localhost>2008-04-27 18:08:55 +0000
committergeorg.brandl <devnull@localhost>2008-04-27 18:08:55 +0000
commitbd3f021f64c447e61c157a63d078b8e03b3dda21 (patch)
tree053d245fc46f315e578d4cf7160a8301be9b3cf6
parentdf62fabbb9a4af76588e7fa9c8067b518f44189a (diff)
downloadsphinx-bd3f021f64c447e61c157a63d078b8e03b3dda21.tar.gz
Add OpenSearch capability.
-rw-r--r--CHANGES5
-rw-r--r--TODO1
-rw-r--r--doc/config.rst8
-rw-r--r--sphinx/builder.py18
-rw-r--r--sphinx/config.py1
-rw-r--r--sphinx/quickstart.py4
-rw-r--r--sphinx/templates/layout.html5
-rw-r--r--sphinx/templates/opensearch.xml13
8 files changed, 48 insertions, 7 deletions
diff --git a/CHANGES b/CHANGES
index fe85a13c..91dc4503 100644
--- a/CHANGES
+++ b/CHANGES
@@ -64,8 +64,11 @@ New features added
the default templates.
- Templates now have an XHTML doctype, to be consistent with docutils'
HTML output.
+ - You can now create an OpenSearch description file with the
+ ``html_use_opensearch`` config value.
-Thanks to Jacob Kaplan-Moss, Talin and Sebastian Wiesner for suggestions.
+Thanks to Jacob Kaplan-Moss, Talin, Jeroen Ruigrok van der Werven and
+Sebastian Wiesner for suggestions.
Bugs fixed
----------
diff --git a/TODO b/TODO
index a083158f..4ea32900 100644
--- a/TODO
+++ b/TODO
@@ -9,7 +9,6 @@ Sphinx
- option for compact module index
- HTML section numbers?
- split the general index?
-- add OpenSearch
- "seealso" links to external examples, see http://svn.python.org/projects/sandbox/trunk/seealso/ and http://effbot.org/zone/idea-seealso.htm
- "often used" combo box in sidebar
- source file cross-references?
diff --git a/doc/config.rst b/doc/config.rst
index 7378270f..3de76e8d 100644
--- a/doc/config.rst
+++ b/doc/config.rst
@@ -227,7 +227,13 @@ that use Sphinx' HTMLWriter class.
.. confval:: html_copy_source
If true, the reST sources are included in the HTML build as
- :file:`_sources/{name}`.
+ :file:`_sources/{name}`. The default is ``True``.
+
+.. confval:: html_use_opensearch
+
+ If true, an `OpenSearch <http://opensearch.org>` description file will be
+ output, and all pages will contain a ``<link>`` tag referring to it.
+ The default is ``False``.
.. confval:: html_translator_class
diff --git a/sphinx/builder.py b/sphinx/builder.py
index 39be00b6..effe9c0a 100644
--- a/sphinx/builder.py
+++ b/sphinx/builder.py
@@ -330,6 +330,7 @@ class StandaloneHTMLBuilder(Builder):
copyright = self.config.copyright,
style = self.config.html_style,
use_modindex = self.config.html_use_modindex,
+ use_opensearch = self.config.html_use_opensearch,
builder = self.name,
parents = [],
titles = {},
@@ -468,6 +469,11 @@ class StandaloneHTMLBuilder(Builder):
self.info(' '+pagename, nonl=1)
self.handle_page(pagename, {}, template)
+ if self.config.html_use_opensearch:
+ self.info(' opensearch', nonl=1)
+ fn = path.join(self.outdir, '_static', 'opensearch.xml')
+ self.handle_page('opensearch', {}, 'opensearch.xml', outfilename=fn)
+
self.info()
# copy image files
@@ -544,7 +550,8 @@ class StandaloneHTMLBuilder(Builder):
def get_target_uri(self, docname, typ=None):
return docname + '.html'
- def handle_page(self, pagename, addctx, templatename='page.html'):
+ def handle_page(self, pagename, addctx, templatename='page.html',
+ outfilename=None):
ctx = self.globalcontext.copy()
ctx['current_page_name'] = pagename
@@ -561,7 +568,8 @@ class StandaloneHTMLBuilder(Builder):
ctx.update(addctx)
output = self.templates.render(templatename, ctx)
- outfilename = path.join(self.outdir, os_path(pagename) + '.html')
+ if not outfilename:
+ outfilename = path.join(self.outdir, os_path(pagename) + '.html')
ensuredir(path.dirname(outfilename)) # normally different from self.outdir
try:
f = codecs.open(outfilename, 'w', 'utf-8')
@@ -606,12 +614,14 @@ class PickleHTMLBuilder(StandaloneHTMLBuilder):
return docname[:-5] # up to sep
return docname + SEP
- def handle_page(self, pagename, ctx, templatename='page.html'):
+ def handle_page(self, pagename, ctx, templatename='page.html',
+ outfilename=None):
ctx['current_page_name'] = pagename
sidebarfile = self.config.html_sidebars.get(pagename, '')
if sidebarfile:
ctx['customsidebar'] = path.join(self.srcdir, sidebarfile)
- outfilename = path.join(self.outdir, os_path(pagename) + '.fpickle')
+ if not outfilename:
+ outfilename = path.join(self.outdir, os_path(pagename) + '.fpickle')
ensuredir(path.dirname(outfilename))
f = open(outfilename, 'wb')
try:
diff --git a/sphinx/config.py b/sphinx/config.py
index ffb1ab47..b1d8aa19 100644
--- a/sphinx/config.py
+++ b/sphinx/config.py
@@ -55,6 +55,7 @@ class Config(object):
html_additional_pages = ({}, False),
html_use_modindex = (True, False),
html_copy_source = (True, False),
+ html_use_opensearch = (False, False),
# HTML help options
htmlhelp_basename = ('pydoc', False),
diff --git a/sphinx/quickstart.py b/sphinx/quickstart.py
index f160aeee..3198f41c 100644
--- a/sphinx/quickstart.py
+++ b/sphinx/quickstart.py
@@ -126,6 +126,10 @@ html_last_updated_fmt = '%%b %%d, %%Y'
# If true, the reST sources are included in the HTML build as _sources/<name>.
#html_copy_source = True
+# If true, an OpenSearch description file will be output, and all pages will
+# contain a <link> tag referring to it.
+#html_use_opensearch = False
+
# Output file base name for HTML help builder.
htmlhelp_basename = '%(project)sdoc'
diff --git a/sphinx/templates/layout.html b/sphinx/templates/layout.html
index 71a8d026..5a5ca26c 100644
--- a/sphinx/templates/layout.html
+++ b/sphinx/templates/layout.html
@@ -62,6 +62,11 @@
<script type="text/javascript" src="{{ pathto('_static/interface.js', 1) }}"></script>
<script type="text/javascript" src="{{ pathto('_static/doctools.js', 1) }}"></script>
{%- endif %}
+ {%- if use_opensearch %}
+ <link rel="search" type="application/opensearchdescription+xml"
+ title="Search within {{ docstitle }}"
+ href="{{ pathto('_static/opensearch.xml', 1) }}"/>
+ {%- endif %}
{%- block rellinks %}
{%- if hasdoc('about') %}
<link rel="author" title="About these documents" href="{{ pathto('about') }}" />
diff --git a/sphinx/templates/opensearch.xml b/sphinx/templates/opensearch.xml
new file mode 100644
index 00000000..1f14e9bd
--- /dev/null
+++ b/sphinx/templates/opensearch.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
+ <ShortName>{{ project }}</ShortName>
+ <LongName>{{ docstitle }}</LongName>
+ <Description>Search {{ docstitle }}</Description>
+ <InputEncoding>utf-8</InputEncoding>
+ <Url type="text/html" method="get" template="{{ pathto('search') }}?">
+ <Param name="q" value="{searchTerms}" />
+ <Param name="check_keywords" value="yes" />
+ <Param name="area" value="default" />
+ </Url>
+{% block extra %}{# Put e.g. an <Image> element here. #}{% endblock %}
+</OpenSearchDescription>