Open
Description
WebSupport class accepts doctreedir
where .doctree files are placed. By default it should be <builddir>/doctrees/
where buildir is another WebSupport class parameter.
However I've noticed that doctreedir
argument is ignored in the source code. Specifically in the sphinxcontrib.websupport.core.py:58 is this line
self.doctreedir = staticdir or path.join(self.builddir, 'doctrees')
I.e. doctrees are created under specified staticdir. It shoudl respect constructor parameter:
self.doctreedir = doctreedir or path.join(self.builddir, 'doctrees')