diff options
| author | Georg Brandl <georg@python.org> | 2010-01-07 16:20:52 +0100 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2010-01-07 16:20:52 +0100 |
| commit | 34d2bc8c08362196e90716156255b408da3caee6 (patch) | |
| tree | cdca5eedce97786325905bf7c74f3c50367f17f9 /sphinx/builders/changes.py | |
| parent | 24c27f6520bb5cc97c6199c6dcff0728f2b205df (diff) | |
| download | sphinx-34d2bc8c08362196e90716156255b408da3caee6.tar.gz | |
``html_static_path`` can now contain single file entries.
Exclusion of static path files is not yet implemented.
HG: Bitte gib eine Versions-Meldung ein. Zeilen beginnend mit 'HG:' werden entfernt.
HG: Leere Versionsmeldung wird das ?bernehmen abbrechen.
HG: --
HG: Benutzer: Georg Brandl <georg@python.org>
HG: branch 'default'
HG: added tests/root/_static/excluded.css
HG: added tests/root/_static/subdir/foo.css
HG: added tests/root/templated.css_t
HG: Ge?ndert CHANGES
HG: Ge?ndert doc/config.rst
HG: Ge?ndert sphinx/builders/html.py
HG: Ge?ndert sphinx/util/__init__.py
HG: Ge?ndert tests/root/_static/README
HG: Ge?ndert tests/root/conf.py
HG: Ge?ndert tests/test_build_html.py
Diffstat (limited to 'sphinx/builders/changes.py')
| -rw-r--r-- | sphinx/builders/changes.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sphinx/builders/changes.py b/sphinx/builders/changes.py index 92c48f16..3bc51d43 100644 --- a/sphinx/builders/changes.py +++ b/sphinx/builders/changes.py @@ -139,11 +139,10 @@ class ChangesBuilder(Builder): self.theme.get_options({}).iteritems()) copy_static_entry(path.join(package_dir, 'themes', 'default', 'static', 'default.css_t'), - path.join(self.outdir, 'default.css_t'), - self, themectx) + self.outdir, self, themectx) copy_static_entry(path.join(package_dir, 'themes', 'basic', 'static', 'basic.css'), - path.join(self.outdir, 'basic.css'), self) + self.outdir, self) def hl(self, text, version): text = escape(text) |
