Mercurial > boosterpack
view cards.pl @ 8:8c6d2ce90677 boosterpack
[svn r11] saving for transference to cd
author | rlm |
---|---|
date | Fri, 19 Mar 2010 07:28:10 -0400 |
parents | c702488ef795 |
children |
line wrap: on
line source
1 #!/usr/bin/perl4 use CGI::Ajax;5 use CGI;7 my $q = new CGI;10 my %hash = ( 'card_list' => \&CardList, 'display_card' => \&DisplayCard , 'tags' => \&getAllTags);15 my $pjx = CGI::Ajax->new(%hash);16 $pjx->JSDEBUG(1);17 $pjx->DEBUG(1);18 print $pjx->build_html($q,\&gen); # this outputs the html for the page24 sub getAllTags25 {26 return 14;27 };31 sub DisplayCard32 {33 return 13;34 };37 sub CardList38 {40 return 15;42 };45 sub gen46 {47 open FILE, "<cards.html";48 return do { local $/; <FILE> };49 };