Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 7 May 2002 02:23:37 +0200 (CEST)
From:      Johan Karlsson <k@numeri.campus.luth.se>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   pending/37808: [PATCH] prstats does not include 'patched' PRs
Message-ID:  <200205070023.g470NbY59719@numeri.campus.luth.se>

next in thread | raw e-mail | index | archive | help

>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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200205070023.g470NbY59719>