summaryrefslogtreecommitdiff
path: root/www/p5-CGI-Ajax
AgeCommit message (Collapse)AuthorFilesLines
2012-10-28Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2012-10-03Bump all packages that use perl, or depend on a p5-* package, orwiz1-2/+2
are called p5-*. I hope that's all of them.
2011-08-14Revision bump after updating perl5 to 5.14.1.obache1-2/+2
2010-08-21Bump the PKGREVISION for all packages which depend directly on perl,seb1-1/+2
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1. The list of packages is computed by finding all packages which end up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl, or PERL5_PACKLIST defined in their make setup (tested via "make show-vars VARNAMES=..."), minus the packages updated after the perl package update. sno@ was right after all, obache@ kindly asked and he@ led the way. Thanks!
2009-04-24PkgSrc changes:sno2-8/+7
- Updating package for p5 module CGI::Ajax to 0.707 Upstream changes: 0.707 (154) | Jan Franczak | 2008-10-07 Fixed an issue in the declaration of the javascript cache variable as a local variable in the exported methods. This was causing NO_CACHE to never generate the pjxrand in the query string. Changed the code so that cache is set as a global javascript variable. Thanks to Shivanandham Karunanithi for identifying this. 0.706 (153) | Shibi Ns | 2008-09-04 Wrongly coded one line of code for the fix 0.705 Changed this: # return '' if $cgi->isa('header') || $cgi->isa('header_type') ; To this: # return '' if $cgi->isa('CGI') || $cgi->isa('CGI::Application') ; 0.705 (152) | Shibi Ns | 2008-08-26 Changed function call from "can" to "isa" in order this to work with new version of CGI 3.37. CGI 3.37 has overloaded the function "can" which causes some of the functions to fail. 0.703 (150) | Jan Franczak | 2008-08-20 Added support for CACHE() which allows default behaviour of disabling page cache. Added fname() support to allow the names of exported functions to be specified. Added skip_header support to prevent two headers being produced for applications producing their own headers. Two new test scripts.
2008-10-19Bump the PKGREVISION for all packages which depend directly on perl,he1-1/+2
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0. The list of packages is computed by finding all packages which end up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl, or PERL5_PACKLIST defined in their make setup (tested via "make show-vars VARNAMES=...").
2008-04-08Import www/p5-CGI-Ajax-0.7.01 into pkgsrcabs3-0/+31
CGI::Ajax is an object-oriented module that provides a unique mechanism for using perl code asynchronously from javascript- enhanced HTML pages. CGI::Ajax unburdens the user from having to write extensive javascript, except for associating an exported method with a document-defined event (such as onClick, onKeyUp, etc). CGI::Ajax also mixes well with HTML containing more complex javascript.