From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gnu.wildebeest.org (gnu.wildebeest.org [45.83.234.184]) by sourceware.org (Postfix) with ESMTPS id D14133857B8F for ; Sat, 2 Jul 2022 23:07:37 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org D14133857B8F Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=klomp.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=klomp.org Received: from reform (deer0x0e.wildebeest.org [172.31.17.144]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by gnu.wildebeest.org (Postfix) with ESMTPSA id CEC46302AB2C; Sun, 3 Jul 2022 01:07:36 +0200 (CEST) Received: by reform (Postfix, from userid 1000) id B4A602E83139; Sun, 3 Jul 2022 01:07:36 +0200 (CEST) From: Mark Wielaard To: buildbot@sourceware.org Cc: Mark Wielaard Subject: [COMMITTED] htdocs: add bse href, add robots.txt and testruns link Date: Sun, 3 Jul 2022 01:07:05 +0200 Message-Id: <20220702230704.115051-1-mark@klomp.org> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-11.6 required=5.0 tests=BAYES_00, GIT_PATCH_0, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: buildbot@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "The https://builder.sourceware.org/ buildbot" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Jul 2022 23:07:39 -0000 Add base href to make local hacking easier. Add robots.txt to keep crawlers out. Add bunsen testruns link and icon explanation. --- htdocs/index.html.pre | 11 ++++++++++- htdocs/robots.txt | 3 +++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 htdocs/robots.txt diff --git a/htdocs/index.html.pre b/htdocs/index.html.pre index f0502b5..dcb377a 100644 --- a/htdocs/index.html.pre +++ b/htdocs/index.html.pre @@ -6,6 +6,7 @@ + GNU Toolchain sourceware buildbot @@ -21,7 +22,15 @@

buildbot

- The buildbot (note: uses javascript and websockets). + The buildbot + (note: uses javascript and websockets). +

+

+ The + + bunsen testrun logs + (click the + below for per project or builder logs).

The builder git config files: diff --git a/htdocs/robots.txt b/htdocs/robots.txt new file mode 100644 index 0000000..0c75670 --- /dev/null +++ b/htdocs/robots.txt @@ -0,0 +1,3 @@ +User-agent: * +Disallow: /buildbot/ +Disallow: /testruns/ -- 2.30.2