mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
76 lines
2.1 KiB
Perl
Executable File
76 lines
2.1 KiB
Perl
Executable File
#!/usr/bonsaitools/bin/perl
|
|
# $Id: find,v 1.7 2001/03/26 22:10:36 terry%mozilla.org Exp $
|
|
|
|
# find -- Find files
|
|
#
|
|
# Arne Georg Gleditsch <argggh@ifi.uio.no>
|
|
# Per Kristian Gjermshus <pergj@ifi.uio.no>
|
|
#
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
######################################################################
|
|
|
|
use lib 'lib/';
|
|
use LXR::Common;
|
|
use LXR::Config;
|
|
|
|
sub find {
|
|
print("<P ALIGN=CENTER>\n",
|
|
"Search for files (by name) using regular expressions.\n",
|
|
"<BR>(Need some <A HREF=\"search-help.html\">Hints</A> ",
|
|
"on performing searches?)</P>\n");
|
|
|
|
print ("<form method=get action=\"find\">\n");
|
|
|
|
foreach ($Conf->allvariables) {
|
|
if ($Conf->variable($_) ne $Conf->vardefault($_)) {
|
|
print("<input type=hidden name=\"",$_, "\" ",
|
|
"value=\"", $Conf->variable($_), "\">\n");
|
|
}
|
|
}
|
|
|
|
print("<B>Find file: </B><input type=text name=\"string\" ",
|
|
"value=\"",$searchtext,"\" size=50>\n",
|
|
"<input type=submit value=\"search\">\n",
|
|
"</form>\n");
|
|
|
|
|
|
if ($searchtext ne "") {
|
|
my $filename = $Conf->dbdir."/.glimpse_filenames";
|
|
unless (open(FILELLISTING,$filename)) {
|
|
&warning("Could not open $filename");
|
|
return;
|
|
}
|
|
print("<P><hr>\n");
|
|
$sourceroot = $Conf->sourceroot;
|
|
while($file = <FILELLISTING>) {
|
|
$file =~ s/^$sourceroot//;
|
|
if($file =~ /$searchtext/i) {
|
|
print(&fileref("$file", "$file"),"<br>\n");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
($Conf, $HTTP, $Path) = &init;
|
|
$searchtext = $HTTP->{'param'}->{'string'};
|
|
|
|
&makeheader('find');
|
|
&find;
|
|
&makefooter('find');
|
|
|