[www] r187185 - the old developers.cgi is quait, but way way waaaaay out of date and no longer relevant to the project as a whole.

Chris Lattner sabre at nondot.org
Thu Jul 25 21:03:56 PDT 2013


Author: lattner
Date: Thu Jul 25 23:03:56 2013
New Revision: 187185

URL: http://llvm.org/viewvc/llvm-project?rev=187185&view=rev
Log:
the old developers.cgi is quait, but way way waaaaay out of date and no longer relevant to the project as a whole.

Just zap it.

Removed:
    www/trunk/developers.cgi
    www/trunk/developers.txt
    www/trunk/img/PhotoAlkis.jpg
    www/trunk/img/PhotoAndrew.jpg
    www/trunk/img/PhotoAnton.jpg
    www/trunk/img/PhotoBill.jpg
    www/trunk/img/PhotoBrad.jpg
    www/trunk/img/PhotoBrian.png
    www/trunk/img/PhotoBruno.jpg
    www/trunk/img/PhotoChris.jpg
    www/trunk/img/PhotoDale.png
    www/trunk/img/PhotoDevang.jpg
    www/trunk/img/PhotoDuraid.jpg
    www/trunk/img/PhotoEvan.jpg
    www/trunk/img/PhotoHenrik.jpg
    www/trunk/img/PhotoJeffCohen.jpg
    www/trunk/img/PhotoJim.jpg
    www/trunk/img/PhotoJohn.jpg
    www/trunk/img/PhotoMisha.png
    www/trunk/img/PhotoNate.jpg
    www/trunk/img/PhotoOwen.jpg
    www/trunk/img/PhotoPatJenk.jpg
    www/trunk/img/PhotoRafael.jpg
    www/trunk/img/PhotoReid.jpg
    www/trunk/img/PhotoRob.jpg
    www/trunk/img/PhotoSheng.jpg
    www/trunk/img/PhotoTanya.jpg
    www/trunk/img/PhotoTed.jpg
    www/trunk/img/PhotoVikram.jpg
    www/trunk/img/PhotoZhongxing.jpg
Modified:
    www/trunk/header.incl

Removed: www/trunk/developers.cgi
URL: http://llvm.org/viewvc/llvm-project/www/trunk/developers.cgi?rev=187184&view=auto
==============================================================================
--- www/trunk/developers.cgi (original)
+++ www/trunk/developers.cgi (removed)
@@ -1,177 +0,0 @@
-#!/usr/bin/perl -w
-
-
-#
-# CopyInclude - Copy the contents of an include file to page.
-#
-sub CopyInclude {
-  (my $file_name) = @_;
-
-  if (open(INCLUDE, "<".$file_name)) {
-    while ($include = <INCLUDE>) {
-      print $include;
-    }
-    close INCLUDE;
-  } else {
-    print "Could not open file '$file_name' for reading!\n";
-    exit;
-  }
-}
-
-#
-# Prolog - Issue all text prior to table.
-#
-sub Prolog {
-  # Issue the include prolog
-  CopyInclude("header.incl");
-  
-  # Issue the table prolog
-  print <<EOD
-<div class="www_sectiontitle">Meet The LLVM Developers</div>
-
-<p>The developers of LLVM have a variety of backgrounds and interests. This page
-provides links to each developer's home page (or LLVM page if they have one).
-If you'd like to get a link added to this page, email or contact us!</p>
-
-<center>
-<table cellpadding=2 cellspacing=3 border=0>
-  <tr align=center>
-    <td><b>Name</b></td>
-    <td><b>Picture</b></td>
-    <td> </td>
-    <td><b>Name</b></td>
-    <td><b>Picture</b></td>
-  </tr>
-EOD
-;
-}
-
-#
-# Epilog - Issue all text after table.
-#
-sub Epilog {
-  # Issue the table epilog
-  print <<EOD
-</table>
-</center>
-EOD
-;
-
-  # Issue the include epilog
-  CopyInclude("footer.incl");
-}
-
-# Start the html page
-print "Content-type: text/html\n\n";
-
-# Issue the page prolog
-Prolog;
-
-# Open the developer data file
-if (!open(DEVELOPERS, "<"."developers.txt")) {
-   print "Could not open file 'developers.txt' for reading!\n";
-   exit;
-}
-
-# Iterate though all developer data
-my %Developers = ();
-my @Fullnames = ();
-my %Person = ();
-
-while (my $Line = <DEVELOPERS>) {
-  # Clean up line
-  chomp $Line;
-  # Skip blank lines
-  next if $Line =~ /^\s*$/;
-  
-  # Split out firstname surname and parameters
-  if ($Line =~ /\s*(\w+)\s+(\w+)\s+(.*)$/) {
-    my ($Name, $Surname,$Rest) = ($1, $2, $3);
-    # Create sorting name
-    my $Fullname = $Surname.", ".$Name;
-    # Construct developer record
-    my %Developer = ( name => $Name, surname => $Surname );
-    # Break down parameters
-    my @Params = split(/\s+/, $Rest);
-    
-    # For each parameter
-    for my $Param (@Params) {
-      # Break out key and value
-      if ($Param =~ /^\s*(\w+)\s*=\s*(\S*)\s*/) {
-        my ($Key, $Value) = ($1, $2);
-        # Add parameter to developer record
-        $Developer{$Key} = $Value;
-      } else {
-        # Error
-        print "Unrecognized developer parameter: $Param\n";
-        exit;
-      }
-    }
-    
-    # Add developer to database
-    $Developers{$Fullname} = {%Developer};
-    # Add sort name to sort array
-    push @Fullnames, $Fullname;
-  } else {
-    # Error
-    print "Unrecognized developer record\n";
-    print $Line."\n";
-    exit;
-  }
-}
-
-# Close the developer data file
-close DEVELOPERS;
-
-# Sort names
- at Fullnames = sort @Fullnames;
-
-# Track column
-my $Column = 0;
-
-# For each developer in sorted order
-for my $Fullname (@Fullnames) {
-  # Extract fields
-  my $Person = $Developers{$Fullname};
-  my $Name = $Person->{name};
-  my $Surname = $Person->{surname};
-  my $HRef = $Person->{href};
-  my $Image = $Person->{img};
-  my $Width = $Person->{width};
-  my $Height = $Person->{height};
-  my $Alt = $Person->{alt};
-  
-  print "  <tr align=center>\n" if $Column == 0;
-  print "    <td>\n";
-  print "      <a href=\"$HRef\">\n" if (defined $HRef);
-  print "         $Name $Surname\n";
-  print "      </a>\n" if (defined $HRef);
-  print "    </td>\n";
-  
-  print "    <td>\n";
-  print "      <a href=\"$HRef\">\n" if (defined $HRef);
-  print "        <img src=\"img/$Image\"";
-                      print " width=\"$Width\"" if defined $Width;
-                      print " height=\"$Height\"" if defined $Height;
-                      print " alt=\"$Alt\"" if defined $Alt;
-                      print " title=\"$Alt\"" if defined $Alt;
-                      print ">\n";
-  print "      </a>\n" if (defined $HRef);
-  print "    </td>\n";
-  
-  print "  </tr>\n" if $Column == 1;
-  print "  <td> </td>  " if $Column == 0;
-  $Column = $Column ^ 1;
-}
-
-# Clean up if odd number of developers
-if ($Column == 1) {
-  print "    <td>\n";
-  print "    </td>\n";
-  print "  </tr>\n";
-}
-
-# Issue the table epilog
-Epilog;
-
-exit;

Removed: www/trunk/developers.txt
URL: http://llvm.org/viewvc/llvm-project/www/trunk/developers.txt?rev=187184&view=auto
==============================================================================
--- www/trunk/developers.txt (original)
+++ www/trunk/developers.txt (removed)
@@ -1,28 +0,0 @@
-Vikram	Adve	href=http://www-sal.cs.uiuc.edu/~vadve/	img=PhotoVikram.jpg	width=120	height=120	alt=vadve
-Owen	Anderson	href=http://www.silentcentre.net/	img=PhotoOwen.jpg	width=154	height=175	alt=Resistor
-Henrik	Bach	href=mailto:henrik.bach.llvm at gmail.com	img=PhotoHenrik.jpg	width=156	height=178	alt=Henrik
-Nate	Begeman	href=http://sampo.lasthome.net/	img=PhotoNate.jpg	width=160	height=130	alt=Sampo
-Rob	Bocchino href=http://llvm.cs.uiuc.edu/~bocchino	img=PhotoRob.jpg	width=140	height=187	alt=Rob
-Misha	Brukman	href=http://misha.brukman.net/	img=PhotoMisha.png	width=175	height=198	alt=Misha
-Evan	Cheng	href=mailto:evan.cheng at apple.com	img=PhotoEvan.jpg	width=152	height=198	alt=Grawp
-Jeff	Cohen	href=http://jolt-lang.org/	img=PhotoJeffCohen.jpg	width=165	height=134	alt=jeffc
-John	Criswell	href=http://www.bigw.org/~jcriswel/	img=PhotoJohn.jpg	width=76	height=76	alt=Dogbert
-Rafael  Espindola       href=mailto:rafael.espindola at gmail.com  img=PhotoRafael.jpg     width=174       height=200      alt=Rafael
-Alkis	Evlogimenos	href=http://alkis.evlogimenos.com	img=PhotoAlkis.jpg	width=200	height=170	alt=alkis
-Brian	Gaeke	href=http://netfiles.uiuc.edu/gaeke/www/	img=PhotoBrian.png	width=155	height=163	alt=brg
-Patrick	Jenkins	href=http://www.patjenk.com    img=PhotoPatJenk.jpg width=200  width=173  height=130  alt=PatJenk
-Dale	Johannesen	href=http://llvm.org/	img=PhotoDale.png width=132	height=107	alt=Dale
-Brad	Jones	href=http://www.nondot.org/~kungfoomaster/	img=PhotoBrad.jpg	width=200	height=171	alt=KungFooMaster
-Anton	Korobeynikov	href=mailto:asl_at_math_dot_spbu_dot_ru	img=PhotoAnton.jpg	width=239	height=207	alt=Anton
-Ted	Kremenek	href=http://metacomp.stanford.edu/~kremenek/ img=PhotoTed.jpg width=159	height=240	alt=Ted
-Jim	Laskey	href=mailto:jlaskey at mac.com	img=PhotoJim.jpg	width=128	height=128	alt=Wickund
-Chris	Lattner	href=http://nondot.org/sabre/LLVMNotes/	img=PhotoChris.jpg	width=150	height=152	alt=Sabre
-Tanya	Lattner	href=http://nondot.org/tonic/	img=PhotoTanya.jpg	width=200	height=217	alt=tonic
-Andrew	Lenharth	href=http://www.lenharth.org/~andrewl/	img=PhotoAndrew.jpg	width=140	height=177	alt=Andrew
-Bruno	Lopes	href=http://brunocardoso.cc	img=PhotoBruno.jpg	width=190	height=178	alt=Bruno
-Duraid	Madina	href=http://kinoko.c.u-tokyo.ac.jp/~duraid/llvm.html	img=PhotoDuraid.jpg	width=138	height=195	alt=camel_
-Devang	Patel	href=mailto:dpatel at apple.com		img=PhotoDevang.jpg	width=145       height=172       alt=Devang
-Reid	Spencer	href=http://illuvium.net/rspencer/	img=PhotoReid.jpg	width=145	height=172	alt=Reid
-Bill	Wendling	href=http://www.isanbard.org/~wendling/	img=PhotoBill.jpg	width=173	height=240	alt=Bill
-Zhongxing	Xu	href=http://lcs.ios.ac.cn/~xzx/	img=PhotoZhongxing.jpg	width=125	height=175	alt=Zhongxing
-Sheng	Zhou	href=mailto:zhousheng at gmail.com	img=PhotoSheng.jpg	width=200	height=231	alt=Sheng

Modified: www/trunk/header.incl
URL: http://llvm.org/viewvc/llvm-project/www/trunk/header.incl?rev=187185&r1=187184&r2=187185&view=diff
==============================================================================
--- www/trunk/header.incl (original)
+++ www/trunk/header.incl Thu Jul 25 23:03:56 2013
@@ -31,7 +31,6 @@
 <a href="/ProjectsWithLLVM/">LLVM Projects</a><br>
 <a href="/OpenProjects.html">Open Projects</a><br>
 <a href="/Users.html">LLVM Users</a><br>
-<a href="/developers.cgi">LLVM Developers</a><br>
 <a href="/bugs/">Bug Database</a><br>
 <a href="/Logo.html">LLVM Logo</a><br>
 <a href="http://blog.llvm.org/">Blog</a><br>

Removed: www/trunk/img/PhotoAlkis.jpg
URL: http://llvm.org/viewvc/llvm-project/www/trunk/img/PhotoAlkis.jpg?rev=187184&view=auto
==============================================================================
Binary file - no diff available.

Removed: www/trunk/img/PhotoAndrew.jpg
URL: http://llvm.org/viewvc/llvm-project/www/trunk/img/PhotoAndrew.jpg?rev=187184&view=auto
==============================================================================
Binary file - no diff available.

Removed: www/trunk/img/PhotoAnton.jpg
URL: http://llvm.org/viewvc/llvm-project/www/trunk/img/PhotoAnton.jpg?rev=187184&view=auto
==============================================================================
Binary file - no diff available.

Removed: www/trunk/img/PhotoBill.jpg
URL: http://llvm.org/viewvc/llvm-project/www/trunk/img/PhotoBill.jpg?rev=187184&view=auto
==============================================================================
Binary file - no diff available.

Removed: www/trunk/img/PhotoBrad.jpg
URL: http://llvm.org/viewvc/llvm-project/www/trunk/img/PhotoBrad.jpg?rev=187184&view=auto
==============================================================================
Binary file - no diff available.

Removed: www/trunk/img/PhotoBrian.png
URL: http://llvm.org/viewvc/llvm-project/www/trunk/img/PhotoBrian.png?rev=187184&view=auto
==============================================================================
Binary file - no diff available.

Removed: www/trunk/img/PhotoBruno.jpg
URL: http://llvm.org/viewvc/llvm-project/www/trunk/img/PhotoBruno.jpg?rev=187184&view=auto
==============================================================================
Binary file - no diff available.

Removed: www/trunk/img/PhotoChris.jpg
URL: http://llvm.org/viewvc/llvm-project/www/trunk/img/PhotoChris.jpg?rev=187184&view=auto
==============================================================================
Binary file - no diff available.

Removed: www/trunk/img/PhotoDale.png
URL: http://llvm.org/viewvc/llvm-project/www/trunk/img/PhotoDale.png?rev=187184&view=auto
==============================================================================
Binary file - no diff available.

Removed: www/trunk/img/PhotoDevang.jpg
URL: http://llvm.org/viewvc/llvm-project/www/trunk/img/PhotoDevang.jpg?rev=187184&view=auto
==============================================================================
Binary file - no diff available.

Removed: www/trunk/img/PhotoDuraid.jpg
URL: http://llvm.org/viewvc/llvm-project/www/trunk/img/PhotoDuraid.jpg?rev=187184&view=auto
==============================================================================
Binary file - no diff available.

Removed: www/trunk/img/PhotoEvan.jpg
URL: http://llvm.org/viewvc/llvm-project/www/trunk/img/PhotoEvan.jpg?rev=187184&view=auto
==============================================================================
Binary file - no diff available.

Removed: www/trunk/img/PhotoHenrik.jpg
URL: http://llvm.org/viewvc/llvm-project/www/trunk/img/PhotoHenrik.jpg?rev=187184&view=auto
==============================================================================
Binary file - no diff available.

Removed: www/trunk/img/PhotoJeffCohen.jpg
URL: http://llvm.org/viewvc/llvm-project/www/trunk/img/PhotoJeffCohen.jpg?rev=187184&view=auto
==============================================================================
Binary file - no diff available.

Removed: www/trunk/img/PhotoJim.jpg
URL: http://llvm.org/viewvc/llvm-project/www/trunk/img/PhotoJim.jpg?rev=187184&view=auto
==============================================================================
Binary file - no diff available.

Removed: www/trunk/img/PhotoJohn.jpg
URL: http://llvm.org/viewvc/llvm-project/www/trunk/img/PhotoJohn.jpg?rev=187184&view=auto
==============================================================================
Binary file - no diff available.

Removed: www/trunk/img/PhotoMisha.png
URL: http://llvm.org/viewvc/llvm-project/www/trunk/img/PhotoMisha.png?rev=187184&view=auto
==============================================================================
Binary file - no diff available.

Removed: www/trunk/img/PhotoNate.jpg
URL: http://llvm.org/viewvc/llvm-project/www/trunk/img/PhotoNate.jpg?rev=187184&view=auto
==============================================================================
Binary file - no diff available.

Removed: www/trunk/img/PhotoOwen.jpg
URL: http://llvm.org/viewvc/llvm-project/www/trunk/img/PhotoOwen.jpg?rev=187184&view=auto
==============================================================================
Binary file - no diff available.

Removed: www/trunk/img/PhotoPatJenk.jpg
URL: http://llvm.org/viewvc/llvm-project/www/trunk/img/PhotoPatJenk.jpg?rev=187184&view=auto
==============================================================================
Binary file - no diff available.

Removed: www/trunk/img/PhotoRafael.jpg
URL: http://llvm.org/viewvc/llvm-project/www/trunk/img/PhotoRafael.jpg?rev=187184&view=auto
==============================================================================
Binary file - no diff available.

Removed: www/trunk/img/PhotoReid.jpg
URL: http://llvm.org/viewvc/llvm-project/www/trunk/img/PhotoReid.jpg?rev=187184&view=auto
==============================================================================
Binary file - no diff available.

Removed: www/trunk/img/PhotoRob.jpg
URL: http://llvm.org/viewvc/llvm-project/www/trunk/img/PhotoRob.jpg?rev=187184&view=auto
==============================================================================
Binary file - no diff available.

Removed: www/trunk/img/PhotoSheng.jpg
URL: http://llvm.org/viewvc/llvm-project/www/trunk/img/PhotoSheng.jpg?rev=187184&view=auto
==============================================================================
Binary file - no diff available.

Removed: www/trunk/img/PhotoTanya.jpg
URL: http://llvm.org/viewvc/llvm-project/www/trunk/img/PhotoTanya.jpg?rev=187184&view=auto
==============================================================================
Binary file - no diff available.

Removed: www/trunk/img/PhotoTed.jpg
URL: http://llvm.org/viewvc/llvm-project/www/trunk/img/PhotoTed.jpg?rev=187184&view=auto
==============================================================================
Binary file - no diff available.

Removed: www/trunk/img/PhotoVikram.jpg
URL: http://llvm.org/viewvc/llvm-project/www/trunk/img/PhotoVikram.jpg?rev=187184&view=auto
==============================================================================
Binary file - no diff available.

Removed: www/trunk/img/PhotoZhongxing.jpg
URL: http://llvm.org/viewvc/llvm-project/www/trunk/img/PhotoZhongxing.jpg?rev=187184&view=auto
==============================================================================
Binary file - no diff available.





More information about the llvm-commits mailing list