# | Line 19 | Line 19 | $| = 1; | |
---|---|---|
19 | #-------------------------------------------------------------- | |
20 | # Essential Settings | |
21 | #-------------------------------------------------------------- | |
22 | < | my ($build_dir) = "/builds"; |
22 | > | my ($build_dir) = "/downloads"; |
23 | my ($log_file) = "download_log"; | |
24 | my ($left) = "../left.inc" ; | |
25 | my ($title) = "../title.inc"; | |
# | Line 48 | Line 48 | if (!defined($file_name) || $file_name eq "") { | |
48 | ||
49 | if (defined($submit) && $submit eq "Download") { | |
50 | open(LOGFILE, ">>$log_file"); | |
51 | < | print LOGFILE "$date|$file_name|$your_name|$email_address|$country\n"; |
51 | > | print LOGFILE "$date|$ENV{'REMOTE_ADDR'}|$file_name|$your_name|$email_address|$country\n"; |
52 | close(LOGFILE); | |
53 | print $query->redirect("$build_dir/$file_name"); | |
54 | } | |
# | Line 96 | Line 96 | END | |
96 | <font face="arial,sans-serif"> | |
97 | <center><h3>i-scream builds</h3></center> | |
98 | <font size="2"> | |
99 | < | At the current moment, all i-scream builds may be downloaded <b>free |
100 | < | of charge</b>. If you wish to be alerted infrequently about important issues |
101 | < | regarding the i-scream montoring system, then we would recommend that |
102 | < | you provide your contact details below. All fields are optional. |
99 | > | If you wish your details to be kept so we can contact you in the |
100 | > | future about i-scream, please enter them below. At the moment we |
101 | > | are not using this information, but we may collate a list of |
102 | > | details for when we make a new major release. All details are |
103 | > | optional - do not feel obliged to enter anything! |
104 | </font> | |
105 | </font> | |
106 | </td> | |
# | Line 108 | Line 109 | END | |
109 | ||
110 | <p> </p> | |
111 | ||
112 | < | <form action="download.cgi" method="POST"> |
112 | > | <form action="/cgi-bin/download.cgi" method="POST"> |
113 | <table border="0" align="center"> | |
114 | <tr> | |
115 | <td><font face="arial,sans-serif">Filename:</font></td> | |
# | Line 154 | Line 155 | exit; | |
155 | # Print a file without escaping HTML: - | |
156 | sub print_html ($) { | |
157 | my ($filename) = @_; | |
158 | < | print `cat $filename`; |
159 | < | } |
158 | > | print `cat $filename 2>&1`; |
159 | > | } |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |