This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

PATCH: cgi-bin/gnatsweb.pl


I have now started the process of either merging all changes made to
our local copy of gnatsweb into the official gnatsweb CVS (sub)tree,
or removing them or marking them appropriately.

This is part 1:
  Suitably mark all local changes up to and including revision 1.5.

Gerald

Index: gnatsweb.pl
===================================================================
RCS file: /cvs/gcc/wwwdocs/cgi-bin/gnatsweb.pl,v
retrieving revision 1.15
diff -u -3 -p -r1.15 gnatsweb.pl
--- gnatsweb.pl	2000/12/29 16:21:22	1.15
+++ gnatsweb.pl	2001/01/10 03:22:02
@@ -21,7 +21,9 @@
 $site_gnats_host = 'localhost';
 $site_gnats_port = 1529;

+#GCC-LOCAL begin.
 $submitter_id = 'net';
+#GCC-LOCAL end.

 # Set to true if you compiled gnats with GNATS_RELEASE_BASED defined.
 $site_release_based = 0;
@@ -32,7 +34,10 @@ $site_banner_background = '#000000';
 $site_banner_foreground = '#ffffff';

 # Page background color -- not used unless defined.
+#$site_background = '#c0c0c0';
+#GCC-LOCAL begin.
 $site_background = '#ffffff';
+#GCC-LOCAL end.

 # Program to send email notifications.
 if (-x '/usr/sbin/sendmail')
@@ -2836,6 +2841,11 @@ sub interested_parties
   foreach $list ($fields{'Reply-To'},
                  $fields{'Responsible'},
                  $fields{'X-GNATS-Notify'},
+#GCC-LOCAL begin.
+#                 $category_notify{$fields{'Category'}},
+#                 $submitter_contact{$fields{'Submitter-Id'}},
+#                 $submitter_notify{$fields{'Submitter-Id'}},
+#GCC-LOCAL end.
                  $config{'GNATS_ADDR'})
   {
     if (defined($list)) {
@@ -2936,8 +2946,9 @@ sub login_page

   client_init();
   my(@dbs) = client_cmd("dbla");
-  # GCC-LOCAL: Do not offer all database, just "gcc".
+  #GCC-LOCAL begin: Do not offer all database, just "gcc".
   @dbs = ("gcc");
+  #GCC-LOCAL end.
   my $def_user = $db_prefs{'user'} || $ENV{'REMOTE_USER'};
   # Lousy assumption alert!  Assume that if the site is requiring browser
   # authentication (REMOTE_USER is defined), then their gnats passwords


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]