gnatsweb user interface tweak

Zack Weinberg zackw@stanford.edu
Fri Jun 8 09:16:00 GMT 2001


When I go look up PRs with the web interface I always want to see the
audit trail.  The CGI script is rather slow, and I have to wait for
the 'view' page to load before I can ask it to redisplay with the
audit trail.  I think it would be better if it just automatically
displayed the audit trail.

This patch for gnatsweb.pl accomplishes that.  Reaction?

zw

===================================================================
Index: cgi-bin/gnatsweb.pl
--- cgi-bin/gnatsweb.pl	2001/06/07 11:38:42	1.34
+++ cgi-bin/gnatsweb.pl	2001/06/08 16:15:59
@@ -3354,7 +3354,8 @@ sub main
   elsif($cmd eq 'view')
   {
     initialize();
-    view(0);
+    # GCC LOCAL: always display the audit trail.
+    view(1);
   }
   elsif($cmd eq 'view audit-trail')
   {



More information about the Gcc-patches mailing list