From owner-freebsd-www Mon May 6 17:30:14 2002 Delivered-To: freebsd-www@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C592237B406 for ; Mon, 6 May 2002 17:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g470U1c50385; Mon, 6 May 2002 17:30:01 -0700 (PDT) (envelope-from gnats) Received: from numeri.campus.luth.se (numeri.campus.luth.se [130.240.197.103]) by hub.freebsd.org (Postfix) with ESMTP id 7A6E037B408 for ; Mon, 6 May 2002 17:23:39 -0700 (PDT) Received: (from k@localhost) by numeri.campus.luth.se (8.11.6/8.11.6) id g470NbY59719; Tue, 7 May 2002 02:23:37 +0200 (CEST) (envelope-from k) Message-Id: <200205070023.g470NbY59719@numeri.campus.luth.se> Date: Tue, 7 May 2002 02:23:37 +0200 (CEST) From: Johan Karlsson Reply-To: Johan Karlsson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: pending/37808: [PATCH] prstats does not include 'patched' PRs Sender: owner-freebsd-www@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37808 >Category: pending >Synopsis: [PATCH] prstats does not include 'patched' PRs >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-www >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon May 06 17:30:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Johan Karlsson >Release: FreeBSD 4.5-RC i386 >Organization: >Environment: System: FreeBSD numeri.campus.luth.se 4.5-RC FreeBSD 4.5-RC #1: Sat Jan 19 14:40:08 CET 2002 k@numeri.campus.luth.se:/usr/home/builds/usr/src/sys/NUMERI i386 >Description: prstats does not include 'patched' PRs when generating the png graphs for the statistics page. >How-To-Repeat: http://www.FreeBSD.org/prstats/index.html >Fix: Index: tools/prstats/eval.tcl =================================================================== RCS file: /home/ncvs/www/tools/prstats/eval.tcl,v retrieving revision 1.1 diff -u -r1.1 eval.tcl --- tools/prstats/eval.tcl 2001/10/29 01:58:12 1.1 +++ tools/prstats/eval.tcl 2002/05/07 00:06:18 @@ -5,7 +5,7 @@ set fi [open "|sort -n _"] set fo [open "__" w] -set v {open feedback analyzed suspended closed } +set v {open feedback analyzed suspended patched closed } foreach i $v { set $i 0 Index: tools/prstats/g =================================================================== RCS file: /home/ncvs/www/tools/prstats/g,v retrieving revision 1.1 diff -u -r1.1 g --- tools/prstats/g 2001/10/29 01:58:12 1.1 +++ tools/prstats/g 2002/05/07 00:06:18 @@ -12,14 +12,16 @@ plot '__' using 1:4 title "open", \ '__' using 1:5 title "feedback", \ '__' using 1:6 title "analyzed" , \ - '__' using 1:7 title "suspended" + '__' using 1:7 title "suspended", \ + '__' using 1:8 title "patched" set output "gnats1.png" set format x "%H:%M" plot '__1' using 1:4 title "open" with linespo, \ '__1' using 1:5 title "feedback", \ '__1' using 1:6 title "analyzed" , \ - '__1' using 1:7 title "suspended" + '__1' using 1:7 title "suspended", \ + '__1' using 1:8 title "patched" set output "gnats1r.png" plot '__1' using 1:4 title "open" with linespo @@ -29,7 +31,8 @@ plot '__7' using 1:4 title "open", \ '__7' using 1:5 title "feedback", \ '__7' using 1:6 title "analyzed" , \ - '__7' using 1:7 title "suspended" + '__7' using 1:7 title "suspended", \ + '__7' using 1:8 title "patched" set output "gnats7r.png" plot '__7' using 1:4 title "open" @@ -39,7 +42,8 @@ plot '__30' using 1:4 title "open", \ '__30' using 1:5 title "feedback", \ '__30' using 1:6 title "analyzed" , \ - '__30' using 1:7 title "suspended" + '__30' using 1:7 title "suspended", \ + '__30' using 1:8 title "patched" set output "gnats30r.png" plot '__30' using 1:4 title "open" @@ -49,7 +53,8 @@ plot '__365' using 1:4 title "open", \ '__365' using 1:5 title "feedback", \ '__365' using 1:6 title "analyzed" , \ - '__365' using 1:7 title "suspended" + '__365' using 1:7 title "suspended", \ + '__365' using 1:8 title "patched" set output "gnats365r.png" plot '__365' using 1:4 title "open" >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-www" in the body of the message