Re: PerlAddVar: documentation bug (regression?)

2009-01-14 Thread Michael Ludwig
Adam Prime schrieb: Michael Ludwig wrote: http://perl.apache.org/docs/2.0/user/config/config.html#C_PerlAddVar_ | my @foos = $r-dir_config('foo'); This is wrong. You have to say: my @foos = $r-dir_config-get('foo'); Committed revision 734312, which updates the two examples on that

Re: PerlAddVar: documentation bug (regression?)

2009-01-14 Thread Adam Prime
Michael Ludwig wrote: Adam Prime schrieb: Michael Ludwig wrote: http://perl.apache.org/docs/2.0/user/config/config.html#C_PerlAddVar_ | my @foos = $r-dir_config('foo'); This is wrong. You have to say: my @foos = $r-dir_config-get('foo'); Committed revision 734312, which updates

Re: PerlAddVar: documentation bug (regression?)

2009-01-14 Thread Philip M. Gollucci
Adam Prime wrote: The PDF's are regenerated once a day. They should update at some point over the next 12 hours I think. Adam # every monday rebuild all, including pdf 30 03 * * 1 /home/perlwww/apache.org/modperl-docs/bin/site_build_force_pdf_index # update all (only changes/no pdf) every

PerlAddVar: documentation bug (regression?)

2009-01-13 Thread Michael Ludwig
http://perl.apache.org/docs/2.0/user/config/config.html#C_PerlAddVar_ |PerlAddVar foo bar |PerlAddVar foo bar1 |PerlAddVar foo bar2 | | You would retrieve these values with: | | my @foos = $r-dir_config('foo'); This is wrong. You have to say: my @foos =

Re: PerlAddVar: documentation bug (regression?)

2009-01-13 Thread Adam Prime
Michael Ludwig wrote: http://perl.apache.org/docs/2.0/user/config/config.html#C_PerlAddVar_ |PerlAddVar foo bar |PerlAddVar foo bar1 |PerlAddVar foo bar2 | | You would retrieve these values with: | | my @foos = $r-dir_config('foo'); This is wrong. You have to say: