From 1a1d81e8f9d1cb7f56b46a33fcff52f340f57788 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sun, 11 May 2014 08:55:21 +1700 Subject: [PATCH] [PATCH] doc/conf.py: Remove _static from html_static_path --- dd/8028be99fd633bbd151a13185fce3061542019 | 93 +++++++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 dd/8028be99fd633bbd151a13185fce3061542019 diff --git a/dd/8028be99fd633bbd151a13185fce3061542019 b/dd/8028be99fd633bbd151a13185fce3061542019 new file mode 100644 index 000000000..faa4d73a5 --- /dev/null +++ b/dd/8028be99fd633bbd151a13185fce3061542019 @@ -0,0 +1,93 @@ +Return-Path: +X-Original-To: notmuch@notmuchmail.org +Delivered-To: notmuch@notmuchmail.org +Received: from localhost (localhost [127.0.0.1]) + by olra.theworths.org (Postfix) with ESMTP id 276F4431FC0 + for ; Sat, 10 May 2014 08:56:11 -0700 (PDT) +X-Virus-Scanned: Debian amavisd-new at olra.theworths.org +X-Spam-Flag: NO +X-Spam-Score: 0 +X-Spam-Level: +X-Spam-Status: No, score=0 tagged_above=-999 required=5 + tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, RCVD_IN_DNSWL_NONE=-0.0001] + autolearn=disabled +Received: from olra.theworths.org ([127.0.0.1]) + by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) + with ESMTP id gngICtQAz9No for ; + Sat, 10 May 2014 08:56:03 -0700 (PDT) +Received: from qmta08.westchester.pa.mail.comcast.net + (qmta08.westchester.pa.mail.comcast.net [76.96.62.80]) + by olra.theworths.org (Postfix) with ESMTP id DE0B5431FBF + for ; Sat, 10 May 2014 08:56:02 -0700 (PDT) +Received: from omta20.westchester.pa.mail.comcast.net ([76.96.62.71]) + by qmta08.westchester.pa.mail.comcast.net with comcast + id 0FGr1o0011YDfWL58Fw2F5; Sat, 10 May 2014 15:56:02 +0000 +Received: from odin.tremily.us ([24.18.63.50]) + by omta20.westchester.pa.mail.comcast.net with comcast + id 0Fw01o00a152l3L3gFw1dh; Sat, 10 May 2014 15:56:02 +0000 +Received: from mjolnir.tremily.us (unknown [192.168.0.140]) + by odin.tremily.us (Postfix) with ESMTPS id B30251196909; + Sat, 10 May 2014 08:56:00 -0700 (PDT) +Received: (nullmailer pid 12751 invoked by uid 1000); + Sat, 10 May 2014 15:55:29 -0000 +From: "W. Trevor King" +To: notmuch@notmuchmail.org +Subject: [PATCH] doc/conf.py: Remove _static from html_static_path +Date: Sat, 10 May 2014 08:55:21 -0700 +Message-Id: + <4244e9c2c0e64eedcd8e4bcca5c24f942f747548.1399737242.git.wking@tremily.us> +X-Mailer: git-send-email 1.9.1.353.gc66d89d +DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=comcast.net; + s=q20140121; t=1399737362; + bh=N7mtX7l3+4pM576AVrwl0qBp7Pes/4b9k9O19bbQXiM=; + h=Received:Received:Received:Received:From:To:Subject:Date: + Message-Id; + b=NGgJX34QSI3o2RCfzOmHUPZukMaKL508x9ZcjC/YKTNu487Gr3sTMprOOvJUoOB19 + 715XY14P5gz4WvLhtH33PlLQlpkL5aBLfYsO8PdeFmr3Rl0QCahUzK2E61uLQRVlt8 + 15l0U7Yo/uwVArz4zKPpgoyA+zQEVqrdhNqZa/Zwcqnxg69cHnyA/6N4LwX5Q922jD + 9H43KBZpSL2UwzSf4EhZI9l6Cdbs6nSYBQIAyxtQfWFRJHnjMd3qOY6OYga6PFaazH + T87mYBQog5ZOcBMoaKKbS6iLSYaB7q6SzXAZQ/zvO56dgkVjLhIOzWo5O3s1ca7H0l + SF8HlQyw2dZCQ== +X-BeenThere: notmuch@notmuchmail.org +X-Mailman-Version: 2.1.13 +Precedence: list +List-Id: "Use and development of the notmuch mail system." + +List-Unsubscribe: , + +List-Archive: +List-Post: +List-Help: +List-Subscribe: , + +X-List-Received-Date: Sat, 10 May 2014 15:56:11 -0000 + +Avoid: + + $ make HAVE_SPHINX=1 sphinx-html + python ./doc/mkdocdeps.py ./doc doc/_build doc/docdeps.mk + sphinx-build -b html -d doc/_build/doctrees -q ./doc doc/_build/html + Making output directory... + WARNING: html_static_path entry '/home/wking/src/notmuch/notmuch/doc/_static' does not exist + +because we have no static source in doc/_static. +--- + doc/conf.py | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/doc/conf.py b/doc/conf.py +index a926fe4..70ba1b8 100644 +--- a/doc/conf.py ++++ b/doc/conf.py +@@ -42,7 +42,7 @@ html_theme = 'default' + # Add any paths that contain custom static files (such as style sheets) here, + # relative to this directory. They are copied after the builtin static files, + # so a file named "default.css" will overwrite the builtin "default.css". +-html_static_path = ['_static'] ++html_static_path = [] + + # Output file base name for HTML help builder. + htmlhelp_basename = 'notmuchdoc' +-- +1.9.1.353.gc66d89d + -- 2.26.2