view buy.pl @ 66:5a490c918444 laserkard

[svn r67] New format, brings down the (new) image to left-align with text
author hong
date Sun, 04 Apr 2010 22:44:40 -0400
parents 95fa4bcc5d67
children 343dc947f999
line wrap: on
line source
1 #!/usr/bin/perl
5 use Laserkard;
8 my $q = new CGI;
10 #print Laserkard::gen();
12 my %hash =
13 (
14 'material' => \&Laserkard::material,
15 'template' => \&Laserkard::template,
16 'inputbox' => \&Laserkard::inputbox,
17 'display' => \&Laserkard::display,
18 'change_rules' => \&Laserkard::change_rules,
19 'vanish' => \&Laserkard::vanish,
20 'updateForm' => \&Laserkard::updateForm,
21 'cardType' => \&Laserkard::cardType
22 );
26 my $pjx = CGI::Ajax->new(%hash);
29 # this outputs the html for the page
30 print $pjx->build_html($q,\&Laserkard::genBuy,{-Cache_Control => 'no-store, no-cache, must-revalidate', -Pragma => 'no-cache'});
33 # it's a refrence to a function, not a function itself.