Mod_Survey 3.2.5 (Stable branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Mod_Survey 3.2.5 (Stable branch)
# 1  
Old 03-02-2008
Mod_Survey 3.2.5 (Stable branch)

ImageMod_survey is an Apache mod_perl module whichallows users to create their own Webquestionnaires using an XML-based tag notation. Itsupports exporting of data into several fileformats, including SPSS syntax, semi-colondelimited fields, and SQL script. It also provideslimited support for descriptive statistics of thesubmitted data, and stylesheet customizations oflayout. License: GNU General Public License (GPL)Changes:
Many bugs concerning uniqueness and multipleanswers in MATRIX were fixed. The code has beenupdated and tested to run under IndigoPerl inWindows. IP-based uniqueness checking wasimplemented. It is now possible to customize errormessages. There is now a valid DTD available.Flushing data will now also remove stale keys andlock files for unique answers. A bug with pipesigns as delimiter in exports was fixed. Perlsnippets will no longer block time(), localtime(),and crypt().Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Apache::SmallProf(3pm)					User Contributed Perl Documentation				    Apache::SmallProf(3pm)

NAME
Apache::SmallProf - Hook Devel::SmallProf into mod_perl SYNOPSIS
<IfDefine PERLSMALLPROF> <Perl> use Apache::DB (); Apache::DB->init; </Perl> <Location /> PerlFixupHandler Apache::SmallProf </Location> </IfDefine> DESCRIPTION
Devel::SmallProf is a line-by-line code profiler. Apache::SmallProf provides this profiler in the mod_perl environment. Profiles are written to $ServerRoot/logs/smallprof and unlike Devel::SmallProf the profile is split into several files based on package name. The Devel::SmallProf documentation explains how to analyize the profiles, e.g.: % sort -nrk 2 logs/smallprof/CGI.pm.prof | more 1 0.104736 629: eval "package $pack; $$auto"; 2 0.002831 647: eval "package $pack; $code"; 5 0.002002 259: return $self->all_parameters unless @p; 5 0.000867 258: my($self,@p) = self_or_default(@_); ... LICENSE
This module is distributed under the same terms as Perl itself. SEE ALSO
Devel::SmallProf(3), Apache::DB(3), Apache::DProf(3) AUTHOR
Devel::SmallProf - Ted Ashton Apache::SmallProf derived from Devel::SmallProf - Doug MacEachern Currently maintained by Frank Wiles <frank@wiles.org> perl v5.14.2 2006-07-28 Apache::SmallProf(3pm)