RE: CGI.pm internals question

2005-07-14 Thread Bob Showalter
Scott R. Godin wrote: [snip] > So if I were to say, override it thusly: > > package CGI; > > sub STORE { > my $self = shift; > my $tag = shift; > my $vals = shift; > #my @vals = index($vals,"\0")!=-1 ? split("\0",$vals) : $vals; > my @vals = @{$vals}; > $self->param

Re: CGI.pm internals question

2005-07-14 Thread Scott R. Godin
Bob Showalter wrote: Scott R. Godin wrote: under what circumstances is the CGI.pm's STORE autoloaded method called? is it used only when you assign values to the object, or is it only used when receiving values (or multi-values) from the webserver query? It is part of the tied hash interf

RE: CGI.pm internals question

2005-07-13 Thread Bob Showalter
Scott R. Godin wrote: > under what circumstances is the CGI.pm's STORE autoloaded method > called? > > is it used only when you assign values to the object, or is it only > used when receiving values (or multi-values) from the webserver query? It is part of the tied hash interface returned by th