Mercurial > judyates
view perl/make_website.pl @ 15:b6ba604307fc judyates
[svn r16] changed the menus to a parenthesized form. Final tests for live site completed.
author | rlm |
---|---|
date | Mon, 12 Apr 2010 05:20:34 -0400 |
parents | 60668cf4f443 |
children |
line wrap: on
line source
1 #!/usr/bin/perl4 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";