IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 14656


Ignore:
Timestamp:
Aug 23, 2007, 2:43:31 PM (19 years ago)
Author:
Paul Price
Message:

Would only read the first 'T' of "TRUE" when parsing a boolean.
Changed to allow it to read "TRUE" or "FALSE" or "T" or "F".

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/PS-IPP-Metadata-Config/config_grammar.txt

    r14032 r14656  
    11# Copyright (c) 2005  Joshua Hoblitt
    22#
    3 # $Id: config_grammar.txt,v 1.13 2007-07-06 02:27:32 jhoblitt Exp $
     3# $Id: config_grammar.txt,v 1.14 2007-08-24 00:43:31 price Exp $
    44
    55{
     
    298298
    299299bool:
    300     /[tf]/i
     300    /(true|false|t|f)/i
    301301        { $item[1] =~ /t/i ? 1 : 0 }
    302302
Note: See TracChangeset for help on using the changeset viewer.