Mercurial > judyates
diff perl/recent_sales.pl @ 0:60668cf4f443 judyates
[svn r1] initial import
author | rlm |
---|---|
date | Sun, 03 Jan 2010 04:38:50 -0500 |
parents | |
children | 903b91a97990 |
line wrap: on
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/perl/recent_sales.pl Sun Jan 03 04:38:50 2010 -0500 1.3 @@ -0,0 +1,53 @@ 1.4 +open FILE, ">../recent_sales.html"; 1.5 +select FILE; 1.6 +print <<HERE; 1.7 + 1.8 + 1.9 +<html> 1.10 +<head> 1.11 +<link rel="stylesheet" type="text/css" 1.12 +href="firetest.css"> </link> 1.13 +</head> 1.14 +<body> 1.15 + 1.16 + 1.17 + 1.18 +<Title> 1.19 +Judy Yates -- Wildlife and Pets on Stone 1.20 +</title> 1.21 + 1.22 +<span> 1.23 +<img src = "./album_pics/3_logo.jpg"> 1.24 +</span> 1.25 +HERE 1.26 +open MENU, "<../menu.html"; 1.27 +while (<MENU>){print;} 1.28 +close MENU; 1.29 + 1.30 + 1.31 +$finla = "recent_sales"; 1.32 + 1.33 +if (open TXT, "<../texts/$finla.txt"){ 1.34 + while (<TXT>){print;} 1.35 +close TXT; 1.36 +} 1.37 + 1.38 + 1.39 + 1.40 + 1.41 +open MENU, "<../menu.html"; 1.42 +while (<MENU>){print;} 1.43 +close MENU; 1.44 +print <<HERE; 1.45 + 1.46 +<div class = "copyright"><br><br>Copyright © 2007 Robert McIntyre. All pictures Copyright © Judy Yates.<br>Special thanks to Dylan Holmes for designing the main banner.</div> 1.47 + 1.48 + 1.49 + 1.50 + 1.51 +</body> 1.52 + 1.53 + 1.54 +</html> 1.55 + 1.56 +HERE