Mercurial > rlmcintyre
view BoosterPack/.svn/text-base/cards.pl.svn-base @ 0:0d795f02a8bb tip
initial committ. what was I thinking?
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Mon, 27 Sep 2010 16:57:26 -0400 |
parents | |
children |
line wrap: on
line source
1 #!C:/strawberry/perl/bin/perl.exe4 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 };