* Define __file__ during conf.py execution.

* Make staticpath relative to conf.py dir.
This commit is contained in:
Georg Brandl 2008-03-16 20:52:34 +00:00
parent 2f37a14939
commit ae7273b9ae
3 changed files with 6 additions and 5 deletions

View File

@ -11,10 +11,10 @@
# All configuration values have a default value; values that are commented out
# serve to show the default value.
import sys
import sys, os
# If your extensions are in another directory, add it here.
sys.path.append('.')
sys.path.append(os.path.dirname(__file__))
# General configuration
# ---------------------

View File

@ -448,7 +448,8 @@ class StandaloneHTMLBuilder(Builder):
self.info(bold('copying static files...'))
ensuredir(path.join(self.outdir, 'static'))
staticdirnames = [path.join(path.dirname(__file__), 'static')] + \
self.config.html_static_path
[path.join(self.srcdir, spath)
for spath in self.config.html_static_path]
for staticdirname in staticdirnames:
for filename in os.listdir(staticdirname):
if not filename.startswith('.'):

View File

@ -68,11 +68,11 @@ class Config(object):
def __init__(self, dirname, filename):
self.values = self.config_values.copy()
config = {}
config = {'__file__': path.join(dirname, filename)}
olddir = os.getcwd()
try:
os.chdir(dirname)
execfile(path.join(dirname, filename), config)
execfile(config['__file__'], config)
finally:
os.chdir(olddir)
# remove potentially pickling-problematic values