From 136e269facb560418360e740a46797af2281c804 Mon Sep 17 00:00:00 2001 From: Xavier Morel Date: Mon, 23 Nov 2015 10:39:11 +0100 Subject: [PATCH] [FIX] project-specific static files Turns out exclude_patterns is used when looking for markup source files but also when looking for HTML static files, which is noted in the documentation but apparently not in the sample conf.py Don't exclude_patterns _-prefixed directories, or _static isn't copied and a bunch of images and JS files break. --- conf.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/conf.py b/conf.py index 196acdeab..1b2a21c6c 100644 --- a/conf.py +++ b/conf.py @@ -73,8 +73,6 @@ today_fmt = '%B %d, %Y' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. exclude_patterns = [ - # build, extensions, statics, templates - '_*', # translations 'locale', 'README.*',