From 5b0a004105337af527700af90a4d6ff8508f24d6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Amadeusz=20=C5=BBo=C5=82nowski?= Date: Mon, 12 May 2014 10:04:56 +0200 Subject: [PATCH] [PATCH] Unset html_static_path --- 54/38c78c769f381775ef8765fdb8faf1ff5cdac9 | 85 +++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 54/38c78c769f381775ef8765fdb8faf1ff5cdac9 diff --git a/54/38c78c769f381775ef8765fdb8faf1ff5cdac9 b/54/38c78c769f381775ef8765fdb8faf1ff5cdac9 new file mode 100644 index 000000000..c221a0032 --- /dev/null +++ b/54/38c78c769f381775ef8765fdb8faf1ff5cdac9 @@ -0,0 +1,85 @@ +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 B3837431FC0 + for ; Mon, 12 May 2014 01:05:14 -0700 (PDT) +X-Virus-Scanned: Debian amavisd-new at olra.theworths.org +X-Spam-Flag: NO +X-Spam-Score: -0.7 +X-Spam-Level: +X-Spam-Status: No, score=-0.7 tagged_above=-999 required=5 + tests=[RCVD_IN_DNSWL_LOW=-0.7] 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 rCfoERWIEOnk for ; + Mon, 12 May 2014 01:05:10 -0700 (PDT) +Received: from mail-la0-f45.google.com (mail-la0-f45.google.com + [209.85.215.45]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) + (No client certificate requested) + by olra.theworths.org (Postfix) with ESMTPS id 5516A431FBF + for ; Mon, 12 May 2014 01:05:10 -0700 (PDT) +Received: by mail-la0-f45.google.com with SMTP id gl10so1615413lab.4 + for ; Mon, 12 May 2014 01:05:07 -0700 (PDT) +X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; + d=1e100.net; s=20130820; + h=x-gm-message-state:from:to:cc:subject:date:message-id; + bh=aBvisjTIUPCswUuksqSiLYHCMWN4wAI5U2eH6Asf1ls=; + b=VBoKfVV0dXiT5M8rDK5qX34CmaOIgmetMdkjdlKljxHl+86vce/varyx5Ou/MQHveH + r7BwNCWutnHAu2FXhSECLqLaHCOEohCwaARW+ZlXh2miFkSIj5saVSn8H4hUimeadoCT + aI9Yr5vdJDDykjtCLXwq+IvNIQAHjwMIjDseyWLi0rnTV8EsYZLLo/P7aY/QtRBP+1B0 + aoyiYVneAg/XdcJP9ZqMcEcuDvgdxy1sLPBEoymoTzXgtWiTTJW2W7ct8UGhAUmnFs0s + 5/qJwLBp+B4NuKZwmPgEIorQEbW2sIKhPZHg+EYPfcNxkLr5vMh1pBMpm5aAqc3UFSIj + 7i/Q== +X-Gm-Message-State: + ALoCoQnGSwQMRchSe6PAd3J2Ov4l9++9nA6cssh9kohifiTe5/alxOI49GNq3m3ROaDep5h45o0K +X-Received: by 10.112.149.36 with SMTP id tx4mr376182lbb.59.1399881906460; + Mon, 12 May 2014 01:05:06 -0700 (PDT) +Received: from localhost (217-67-221-143.itsa.net.pl. [217.67.221.143]) + by mx.google.com with ESMTPSA id z1sm10848181lal.6.2014.05.12.01.05.04 + for + (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); + Mon, 12 May 2014 01:05:05 -0700 (PDT) +From: =?UTF-8?q?Amadeusz=20=C5=BBo=C5=82nowski?= +To: notmuch@notmuchmail.org +Subject: [PATCH] Unset html_static_path +Date: Mon, 12 May 2014 10:04:56 +0200 +Message-Id: <1399881896-1735-1-git-send-email-aidecoe@aidecoe.name> +X-Mailer: git-send-email 1.9.2 +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: Mon, 12 May 2014 08:05:14 -0000 + +html_static_path is a kind of source directory and it was set to +destination directory (../html) which caused infinite recursion with +Sphinx 1.2 and above. +--- + bindings/python/docs/source/conf.py | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/bindings/python/docs/source/conf.py b/bindings/python/docs/source/conf.py +index 9db377f..c93b2ee 100644 +--- a/bindings/python/docs/source/conf.py ++++ b/bindings/python/docs/source/conf.py +@@ -140,7 +140,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 = ['../html'] ++#html_static_path = ['../html'] + + # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, + # using the given strftime format. +-- +1.9.2 + -- 2.26.2