I don't know how I never looked at Inline before today, but today I did,
and I've got to say it's the most freaking cool thing I've seen since I
first saw a CGI in action in 1994. All I can say is "wow".
I'm pleased to be able to help in even the most miniscule say, and it's
with a doc bug report. The main 'perldoc Inline' docs say:
|> If a particular config option has value options of 1 and
|> 0, you can use the ENABLE and DISABLE modifiers. In other
|> words, this:
|>
|> use Inline Config =>
|> FORCE_BUILD => 1,
|> CLEAN_AFTER_BUILD => 0;
|>
|> could be reworded as
|>
|> use Inline Config =>
|> ENABLE => FORCE_BUILD,
|> DISABLE => CLEAN_AFTER_BUILD;
The right side of the => need to be quoted:
ENABLE => 'FORCE_BUILD',
DISABLE => 'CLEAN_AFTER_BUILD';
Everyone uses 'strict', right? :-)
Jeffrey
------------------------------------------------------------------------------
Jeffrey Friedl <[EMAIL PROTECTED]> Yahoo! Finance http://finance.yahoo.com
O'Reilly's Regular Expression book: http://public.yahoo.com/~jfriedl/regex/