view buy.pl @ 51:95fa4bcc5d67 laserkard

[svn r52] implemented SVG backend
author rlm
date Wed, 03 Feb 2010 03:14:09 -0500
parents 4431dc7d4bb5
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.