Revision history for Perl module CGI::Perljax
.26 Fri Aug 26 08:07:24 2005
original version; created by ExtUtils::ModuleMaker 0.36
.27
removed Perljax.pm
.28 2005-09-07 10:14:54 Wed, 07 Sep 2005
the user can now send in static parameters on the function call:
the fnargs has been renamed to 'args'
the user can use a parameter as :
onclick=(['args__1234','div'],['result'])
which will form the url &args=1234&args=valueindiv
can also rename parameters via:
onclick=(['parname__'+getVal('div')],['result'])
which will for the url: &parname=valueindiv
this is useful for sending to outside scripts which may not use 'args'
as the cgi parameter name.
renamed getElem to getVal
.32 2005-09-08 14:49:29 Thu, 08 Sep 2005
the url will now be appended to
so if get parameters are on the initial url, they can be used in the
registered ajax function
Lot's of documentation and some code restructures.
Set CPAN version to 0.32
.37 2005-09-12 10:41:13 Mon, 12 Sep 2005
changed perldoc some.
Added newline/space compresson to show_common_js().
Fixed anonymous javascript functions to have semicolons after
definition.
Added JSDEBUG triggered compression of user-exported javascript
wrapper functions. If JSBEDUG is on, the don't compress, otherwise
compress
Incremented CPAN version to 0.37
.43 2005-09-22 09:00:09 Thu, 22 Sep 2005
Fixed missing space in a javascript warning message when an HTML
element id wasn't defined.
Fixed bug in js code to support 'textarea' fields as well as 'test'
can now use POST variables!! no url limit
can take POST variables, previous addition was still broken.
updated POST methods in javascript
incremented version string to .43 - POD touchups
added new example showing multiple returns to a page
(pjx_manyret.pl, in scripts/ dir)
.46 2005-09-28 14:10:08 -0700 Wed, 28 Sep 2005
Added a new example script to show using select boxes, which change
the value of other select boxes based on what was selected.
.47 2005-09-28 16:49:31 -0700 Wed, 28 Sep 2005
added support for multiple select boxes after bug report from
aztecpawn on sourceforge.net. Now the common javascript will return
an array of values if there was a multiple selection in a select box
.49 2005-09-29 08:36:37 -0700 Thu, 29 Sep 2005
Fixed broken fnsplit so it wouldn't split strings. Restructured
javascript code for spaces and indents. Need to give Brent my
vimrc to prevent real tab chars from coming through. Removed
all tab chars and replaced with spaces. Made lots of changes
to pjx_combo.pl to better document and organize the html layout.
.52 2005-10-05 11:14:27 -0700 Wed, 05 Oct 2005
Complete rewrite of POD documentation and expansion of documentation.
Added heretofore undocumented capability of sending POST instead of
the default GET.
.55 2005-10-07 09:33:28 -0700 Fri, 07 Oct 2005
Can now chain functions; ajax[] array holds pjx objects, so pjx
objects don't keep overwriting themselves.
Cleaned up javascript custom function code.
.56 2005-10-07 10:35:33 -0700 Fri, 07 Oct 2005
Changed debugging output for javascript to show multiple URLs is
there are chained commands.
Fixed a bug introduced in .55 that broke IE browsers - IE doesn't
support onload, so switched back to onreadystatechange.
.57 2005-10-10 09:24:37 -0700 Mon, 10 Oct 2005
Added radio to scripts directory;
Added ability to handle radios;
Fixed ghr so it only checks once on page load and returns a closure
of the correct xmlhttp/activeX request object
Changed name of 'radio.pl' to 'pjx_radio.pl'
Version to .58
.59 2005-10-10 09:35:49 -0700 Mon, 10 Oct 2005
Version incremented to .59. Modified Changes and MANIFEST. Modified
output of pjx_radio.pl.
fix docs in pjx_radio
Fixed bug reported by anonymous on SF about encodeURIComponent
encoding '='. Problem was parens were mislocated.
.591
fixed .59 bug that didn't fix the encodeURIComponent bug