--- Webpacus/lib/Webpacus.pm 2005/12/15 02:03:25 250 +++ Webpacus/lib/Webpacus.pm 2006/01/07 23:43:38 357 @@ -15,10 +15,11 @@ FillInForm SubRequest Static::Simple + StackTrace /; # FormValidator -our $VERSION = '0.19-dev'; +our $VERSION = '0.30-dev'; # # Configure the application @@ -70,13 +71,15 @@ if ($c->response->body) { $c->log->debug("at end body exists, we won't touch it!"); } else { - $c->fillform( $c->req->parameters ); + $c->fillform( $c->req->params ); - # Forward to View unless response body is already defined - $c->forward('View::TT'); + # Forward to View unless response body is already defined + $c->forward('View::TT'); - $c->response->{body} =~ s#\Qnew Ajax.Autocompleter(\E#new Ajax.Suggest(#gs; -# $c->log->debug( $c->response->body ); + $c->response->{body} =~ s#\Qnew Ajax.Autocompleter(\E#new WebPAC.Suggest(#gs; + $c->response->{body} =~ s#\Qnew Ajax.Updater(\E#new WebPAC.Updater(#gs; + +# $c->log->debug( $c->response->body ); } }