view perl/make_website.pl @ 16:e902d48caadf judyates

added access.log and error.log
author Robert McIntyre <rlm@mit.edu>
date Tue, 22 Jun 2010 13:41:04 -0400
parents b6ba604307fc
children
line wrap: on
line source
1 #!/usr/bin/perl
4 print "Generating:\n";
5 `perl menu.pl`;
6 print "menu\n";
7 `perl artwork_descriptions.pl`;
8 print "artwork_descriptions\n";
9 `perl Contact.pl`;
10 print "Contact\n";
11 `perl feedback.pl`;
12 print "feedback\n";
13 `perl gallery.pl`;
14 print "gallery\n";
15 `perl How_to_Order.pl`;
16 print "How_to_Order\n";
17 `perl meet_the_artist.pl`;
18 print "meet_the_artist\n";
19 `perl meet_the_artist_descriptions.pl`;
20 print "meet_the_artist_descriptions\n";
21 `perl pricing.pl`;
22 print "pricing\n";
23 `perl pets.pl`;
24 print "pets\n";
25 `perl pet_descriptions.pl`;
26 print "pet_descriptions\n";
27 #`perl recent_sales.pl`; #broken due to gallery stuff...
28 #print "recent_sales\n";
29 `perl index.pl`;
30 print "index\n";