On Mon, Apr 19, 2010 at 4:10 AM, mark <mark.fi...@googlemail.com> wrote:
> Hi Georg,
>
> I pulled 0.66 from the repository this morning. Now the sidebars
> disappeared. I tried to fix it with additional configurations but so
> far I had no luck. I created a new documentation with quickstart and
> this has no sidebars, too.
>
> here is the modified conf.py for the new configuration
> ...
> html_sidebars = {'index': ['indexsidebar.html', 'searchbox.html']}
>
> html_theme = 'sphinxdoc'
> #html_theme = 'default'
> html_theme_options = {
>   "nosidebar": "false"
> }
> ...
> Hopefully you have an idea on how I get my sidebar back without going
> back to ~0.62.
>
> Cheers,
> Mark

Don't know if this has propagated to 0.66 but the development version
of sphinx has new format for html_sidebars. See
http://sphinx.pocoo.org/latest/config.html#options-for-html-output for
details. In particular, you use '**' as the key to specify *all*
documents.

In you case try saying:

html_sidebars = {'**': ['indexsidebar.html', 'searchbox.html']}

-- 
You received this message because you are subscribed to the Google Groups 
"sphinx-dev" group.
To post to this group, send email to sphinx-...@googlegroups.com.
To unsubscribe from this group, send email to 
sphinx-dev+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sphinx-dev?hl=en.

Reply via email to