ZF-2023: Zend_Gdata_Calendar sample code doesn't list setReminder or addExtendedProperty when listing valid commands
Description
When running demos/Zend/Gdata/Calendar.php without any arguments, a list of valid commands is output to stdout. This list is missing the following commands:
- setReminder
- addExtendedProperty
These commands are already recognized properly and have interactive help, so they just need to be added to the help text which is output when a command isn't issued by the user.
Comments
Posted by Ryan Boyd (rboyd) on 2007-12-06T17:07:16.000+0000
Added additional commands to output and verified that the commands outputted are equal to those in the case statements.
Posted by Ryan Boyd (rboyd) on 2007-12-06T17:07:38.000+0000
Trevor - can you do the code review on this one pleae.
Posted by Trevor Johns (tjohns) on 2007-12-07T13:42:16.000+0000
Code review for r7056
The fix looks good conceptually, though there's a syntax error. The new strings end with a semi-colon (;) rather than the concatenation operator (.). Since fixing this is trivial, I've gone ahead and corrected this in r7059.
With that applied, it looks good to me.