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 | c9345b33b28e38d646200e4d7986f73aa1203789 (patch) | |
tree | cdca5eedce97786325905bf7c74f3c50367f17f9 /sphinx/builders/changes.py | |
parent | 6db07840d1d8e68e7c9ace04197e4c153b2f8d24 (diff) | |
download | sphinx-git-c9345b33b28e38d646200e4d7986f73aa1203789.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 92c48f16e..3bc51d43d 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) |