forked from spicyjack/perl-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
make_html.pl
executable file
·61 lines (53 loc) · 1.9 KB
/
make_html.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/perl -w
# created 11/22/00 for makeing web pages out of directories of pictures
# (C) 1999 by Brian Manning <[email protected]>
#
# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
@filedir= <*.jpg>;
$start = time;
$counter = 0;
$row = 1;
$column = 1;
open (OUT, "> index.html");
print OUT "<html>\n<head>\n";
print OUT "<title>Thumbnail Page</title>\n</head>\n";
print OUT "<body bgcolor=\"#ffffff\">\n\n";
print OUT "<h3>Click on the below thumbnail to open the picture in a new
browser window</h3>\n";
print OUT "<table border=0 width=\"90%\">";
print OUT "<tr>\n";
foreach $oldname (@filedir) {
print "oldname = $oldname\n";
if ($oldname =~ /thumb/) {
$newname = $oldname;
$newname =~ s/\.thumb\.jpg/\.jpg/;
print "adding $oldname/$newname to html file in row $row, column $column\n";
print OUT "<td align=\"center\">\n";
print OUT "<a href=\"$newname\" target=\"_new\">\n";
print OUT "<img src=\"$oldname\"></a>\n";
print OUT "</td>\n";
$column++;
$counter++;
if ($column == 4) {
print OUT "</tr>\n\n<tr>\n";
$column = 1;
$row++;
}
}
}
print OUT "</tr>\n</table>\n";
print OUT "</body>\n</html>";
$end = time - $start;
print "Added $counter jpegs in $end seconds\n";