git://git.exim.org
/
buildfarm-server.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ad6efd5
)
allow dot in stage name
author
Andrew Dunstan
<andrew@dunslane.net>
Mon, 2 Feb 2009 14:08:27 +0000
(14:08 +0000)
committer
Andrew Dunstan
<andrew@dunslane.net>
Mon, 2 Feb 2009 14:08:27 +0000
(14:08 +0000)
cgi-bin/show_stage_log.pl
patch
|
blob
|
history
diff --git
a/cgi-bin/show_stage_log.pl
b/cgi-bin/show_stage_log.pl
index 5dd1ae43fb5c378781f7e87d1422ea64c6e15872..fe2e3caf940f1432a2253708e7dd29368e5889eb 100755
(executable)
--- a/
cgi-bin/show_stage_log.pl
+++ b/
cgi-bin/show_stage_log.pl
@@
-23,7
+23,7
@@
my $query = new CGI;
my $system = $query->param('nm'); $system =~ s/[^a-zA-Z0-9_ -]//g;
my $logdate = $query->param('dt');$logdate =~ s/[^a-zA-Z0-9_ -]//g;
-my $stage = $query->param('stg');$stage =~ s/[^a-zA-Z0-9_ -]//g;
+my $stage = $query->param('stg');$stage =~ s/[^a-zA-Z0-9
.
_ -]//g;
use vars qw($tgz);