[BACK]Return to createfulllist.pl CVS log [TXT][DIR] Up to [local] / mp3 / bin

Diff for /mp3/bin/createfulllist.pl between version 1.3 and 1.4

version 1.3, 2007/02/08 20:04:03 version 1.4, 2010/03/26 14:21:55
Line 1 
Line 1 
 #!/usr/bin/perl -w  #!/usr/bin/perl -w
 # $RedRiver: createfulllist.pl,v 1.2 2006/08/12 00:14:53 andrew Exp $  # $RedRiver: createfulllist.pl,v 1.3 2007/02/08 20:04:03 andrew Exp $
 ########################################################################  ########################################################################
 # showall.pl *** Displays all MP3's in all subdirs  # showall.pl *** Displays all MP3's in all subdirs
 #  #
Line 20 
Line 20 
 # *** MAIN ***  # *** MAIN ***
 #######################################################################  #######################################################################
   
 my ($prefix, $subdir) = split /\&/, $ENV{'QUERY_STRING'};  my $query_string = $ENV{'QUERY_STRING'} || q{};
   my ($prefix, $subdir) = split /\&/, $query_string;
 if ($subdir) {  if ($subdir) {
         $subdir =~ s/%(..)/pack("c",hex($1))/ge;          $subdir =~ s/%(..)/pack("c",hex($1))/ge;
 } else {  } else {

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>