From: jason <ja...@gr...> - 2001-09-24 22:27:21
|
A 'little' thing i noticed as i was looking at the entity definition again... I'm noticing a slight indifference to boolean values. Here we see true/false: <!-- must this field be valid to do a post of this entity? --> <required>true</required> Yet here we use 0/1: <!-- is this the default field in the db table? --> <default>0</default> <!-- can the field be null? --> <notnull>1</notnull> While the parser does not care, it sure would be nice to have a standard boolean value. The above example may be the only case, but I would imagine that there are other places where this is true. (no pun intended) jason |