Legend:  D=Done, X=Keep Off!, n/a=Not Applicable

File                  | Krazy | Doxygen | D-Ptr | UnitTst | Qt4Port | Who
===============================================================================
alarm                 |   D   |    D    |   D   |    D    |    D    | Allen
attachment            |   D   |    D    |   D   |    D    |    D    | Allen
attendee              |   D   |    D    |   D   |    D    |    D    | Allen
calendar              |   D   |         |   D   |   n/a   |         | Allen
calendarlocal         |       |         |       |    D    |    D    | Allen
calendarnull          |   D   |    D    |   D   |    D    |    D    | Allen
calendarresources     |   D   |         |       |         |         | Allen
calfilter             |       |         |       |         |         |
calformat             |       |         |       |         |         |
calstorage            |       |         |       |         |         |
compat                |       |         |       |         |         |
confirmsavedialog     |       |         |       |         |         |
customproperties      |       |         |       |         |         |
dndfactory            |       |         |       |         |         |
dummyscheduler        |       |         |       |         |         |
duration              |   D   |    D    |   D   |    D    |    D    | Allen
event                 |   D   |         |       |    D    |         | Allen
exceptions            |       |         |       |         |         |
filestorage           |       |         |       |         |         |
freebusycache         |       |         |       |         |         |
freebusy              |       |         |       |         |         |
freebusyurlstore      |       |         |       |         |         |
htmlexport            |       |         |       |         |         |
icaldrag              |       |         |       |         |    D    |
icalformat            |       |         |       |         |         |
icalformatimpl        |       |         |       |         |         |
icaltimezones         |       |         |       |         |         |
imipscheduler         |       |         |       |         |         |
incidencebase         |   D   |         |   D   |   n/a   |         | Allen
incidenceformatter    |       |         |       |         |         | Allen
incidence             |       |         |       |   n/a   |         | Allen
journal               |       |         |       |         |         | Allen
kresult               |   D   |         |       |         |    D    |
listbase              |       |         |       |         |         |
period                |   D   |    D    |   D   |    D    |         | Narayan
person                |   D   |    D    |   D   |    D    |         | Narayan
qtopiaformat          |       |         |       |         |         |
recurrence            |       |         |       |         |         |
recurrencerule        |       |         |       |         |         |
resourcecachedconfig  |       |         |       |         |         |
resourcecached        |       |         |       |         |         |
resourcecalendar      |       |         |       |         |         |
resourcelocalconfig   |       |         |       |         |         |
resourcelocaldirconfig|       |         |       |         |         |
resourcelocaldir      |       |         |       |         |         |
resourcelocal         |   D   |    D    |   D   |    X    |    X    | Narayan
scheduler             |       |         |       |         |         |
sortablelist.h        |   D   |    D    |  n/a  |    D    |    D    |
todo                  |   D   |         |   D   |    D    |    D    | Allen
vcaldrag              |       |         |       |         |    D    |
vcalformat            |       |         |       |         |         |

Qt4Port -> no deprecated warnings; thiago says do NO replace const iterator
          loops with 'foreach()'

TODO: revert foreach() loops?
TODO: change "todo" to "to-do" in comments
TODO: put KDE_VERSION stuff into kcal.h and remove kde_version.h??

TODO: rename doesRecur() to recurs()
TODO: rename doesFloat() to floats()

thiago: rule of thumb: ConstIterators, constBegin, constEnd, all of the time
if it doesn't compile (i.e., you're doing a non-const operation), then use
the non-const version
dfaure: better than ConstIterator, const_iterator. This one will always remain
since it's the STL name for it ;)
dfaure: foreach is convenient when writing throwable code, unit tests,
or code where performance doesn't matter, but better leave existing
iterator-using code unchanged.
