From patchwork Sat Jan 31 23:35:07 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Monjalon X-Patchwork-Id: 2869 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 8AD655AB3; Sun, 1 Feb 2015 00:36:06 +0100 (CET) Received: from mail-we0-f178.google.com (mail-we0-f178.google.com [74.125.82.178]) by dpdk.org (Postfix) with ESMTP id 066335A90 for ; Sun, 1 Feb 2015 00:35:52 +0100 (CET) Received: by mail-we0-f178.google.com with SMTP id k48so32992530wev.9 for ; Sat, 31 Jan 2015 15:35:51 -0800 (PST) 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:in-reply-to :references; bh=TAZbDgX3hqcdmi8gtbTBAVtDZCig57rG7Kt0uauZw5Q=; b=mU2ThUnWO0NqIhkgwieaiVsBgaot3elBS7Q5mVZBBURM/pT5Orn8RWfFtpzIBcxHVm cfJvB/o6MkCGivqjuJLgTtFBtmreJ0FT1BXIv+FNZFHCmJtKYfG5bkAPda48qriecsNX 2hnMmd8rdK5iNnjSM/clW3/lD1U9kiBg56zGXW+zPsdkp0KJQnDRIiDZfLbDgR+q2l6I Xq/mE9wOmFUoYZE5VtNj4FshS2VDuHkcAblrP4X8jx1l6pxhcl9lHOHAascsCfw/+4kZ GbcP7bxPTiYxbeWKp+kWaVGDje2lkPZ9zti8duND26FPhxHT+hvFHbxBaR5OxSJ0trfq 1w4g== X-Gm-Message-State: ALoCoQke261qsmt/Jy1CnIYokh0b3u3UPACVZo24V1RdH+rdCC2+o78mtbKhJTIOZOl4BUv1bb5z X-Received: by 10.180.74.52 with SMTP id q20mr9959109wiv.0.1422747351441; Sat, 31 Jan 2015 15:35:51 -0800 (PST) Received: from localhost.localdomain (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by mx.google.com with ESMTPSA id n6sm21080068wjy.8.2015.01.31.15.35.49 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sat, 31 Jan 2015 15:35:50 -0800 (PST) From: Thomas Monjalon To: dev@dpdk.org Date: Sun, 1 Feb 2015 00:35:07 +0100 Message-Id: <1422747307-13792-5-git-send-email-thomas.monjalon@6wind.com> X-Mailer: git-send-email 2.2.2 In-Reply-To: <1422747307-13792-1-git-send-email-thomas.monjalon@6wind.com> References: <1422747307-13792-1-git-send-email-thomas.monjalon@6wind.com> Subject: [dpdk-dev] [RFC PATCH 4/4] doc: remove copyright footer X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" In order to be more vendor neutral, copyright should not be printed in the footer of every documentation pages. It should help to have documentation from other vendors. Copyright is still written in the source files. Sphinx notice is also removed to make the footer empty in the current theme. Signed-off-by: Thomas Monjalon --- doc/guides/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/guides/conf.py b/doc/guides/conf.py index 385af03..9d9f5c8 100644 --- a/doc/guides/conf.py +++ b/doc/guides/conf.py @@ -32,7 +32,8 @@ import subprocess project = 'DPDK' -copyright = '2014, Intel' +html_show_copyright = False +html_show_sphinx = False version = subprocess.check_output(["make","-sRrC","../../", "showversion"])