From owner-svn-doc-head@FreeBSD.ORG Sun Jun 8 08:17:35 2014 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BEEAEA5D; Sun, 8 Jun 2014 08:17:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9F7492E74; Sun, 8 Jun 2014 08:17:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s588HZml030133; Sun, 8 Jun 2014 08:17:35 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s588HZ9A030131; Sun, 8 Jun 2014 08:17:35 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201406080817.s588HZ9A030131@svn.freebsd.org> From: Eitan Adler Date: Sun, 8 Jun 2014 08:17:35 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r45030 - head/en_US.ISO8859-1/htdocs/cgi X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jun 2014 08:17:35 -0000 Author: eadler Date: Sun Jun 8 08:17:34 2014 New Revision: 45030 URL: http://svnweb.freebsd.org/changeset/doc/45030 Log: During the temporary period, make it more obvious that this script is old and incomplete. It needs to live for debugging, while people ensure that their bugs are correct. this has already caught issues. Eventually it will turn into a proper redirect for any old bugs, and a warning for newer IDs. Modified: head/en_US.ISO8859-1/htdocs/cgi/query-pr-summary.cgi head/en_US.ISO8859-1/htdocs/cgi/query-pr.cgi Modified: head/en_US.ISO8859-1/htdocs/cgi/query-pr-summary.cgi ============================================================================== --- head/en_US.ISO8859-1/htdocs/cgi/query-pr-summary.cgi Sun Jun 8 08:06:13 2014 (r45029) +++ head/en_US.ISO8859-1/htdocs/cgi/query-pr-summary.cgi Sun Jun 8 08:17:34 2014 (r45030) @@ -116,75 +116,10 @@ sub header_info { print "Current $project problem reports\n"; } if (!$input{'quiet'}) { - print "The following is a listing of current problems submitted by $project users. " . - 'These represent problem reports covering all versions including ' . - 'experimental development code and obsolete releases. '; + print "The following is an old and incomplete of current problems submitted by $project users. "; if ($html_mode) { print < -Bugs can be in one of several states: -

-
-
o - open
-
A problem report has been submitted, no sanity checking -performed.
- -
a - analyzed
-
The problem is understood and a solution is being sought.
- -
f - feedback
-
Further work requires additional information from the originator -or the community—possibly confirmation of the effectiveness of a -proposed solution.
- -
p - patched
-
A patch has been committed, but some issues (MFC and / or -confirmation from originator) are still open.
- -
s - suspended
-
The problem is not being worked on, due to lack of information or -resources. This is a prime candidate for somebody who is looking for a -project to do. If the problem cannot be solved at all, it will be -closed, rather than suspended.
- -
c - closed
-
A problem report is closed when any changes have been integrated, -documented, and tested—or when fixing the problem is abandoned.
-
-EOM - - } else { - -print <FreeBSD has migrated to Bugzilla. Please update your bookmarks and try your search there. EOM } } @@ -292,7 +227,7 @@ if ($input{'sort'} eq 'lastmod') { } if ($#prs < $[) { - print "${h1}Please try bugzilla for an update to date search mechanism.${h1_e}\n"; + print "${h1}Please try bugzilla for an up to date search mechanism.${h1_e}\n"; } elsif ($input{'responsible'} eq 'summary') { &resp_summary; @@ -453,6 +388,7 @@ sub read_gnats { $syn = &getline($_); $syn =~ s/[\t]+/ /g; + } elsif (/^$/) { $_ = sprintf("%s/%s", $cat, $number); Modified: head/en_US.ISO8859-1/htdocs/cgi/query-pr.cgi ============================================================================== --- head/en_US.ISO8859-1/htdocs/cgi/query-pr.cgi Sun Jun 8 08:06:13 2014 (r45029) +++ head/en_US.ISO8859-1/htdocs/cgi/query-pr.cgi Sun Jun 8 08:17:34 2014 (r45030) @@ -34,14 +34,6 @@ # malformed header) # - ports/138672 - Lots of attachments, multi-level MIME. # - ports/132344 - Base64-encoded attachment. -# -# TODO: -# -# - Charset and transfer encoding transformation. -# - Refine linkifier. -# - Better end-of-diff detection. -# - Inline patches inside MIME parts (probably just the first part). -# - Modernise HTML (may require altering site-wide CSS) #------------------------------------------------------------------------------ BEGIN { push @INC, '.'; }