Show
Ignore:
Timestamp:
07/04/08 14:32:49 (5 months ago)
Author:
cyrusdaboo
Message:

Provide offline indication for inbox and outbox.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Mulberry/branches/v4.1d1/Sources_Common/Calendar_Store/CCalendarStoreXML.cpp

    r113 r165  
    4646        <!ELEMENT calendarnode  (name, last-sync?, webcal?, calendarnode*) > 
    4747        <!ATTLIST calendarnode  directory               (true|false) "false" 
    48                                                         has_expanded    (true|false) > 
     48                                                        has_expanded    (true|false)  
     49                                                        inbox           (true|false) "false" 
     50                                                        outbox          (true|false) "false"> 
    4951 
    5052        <!ELEMENT name                  (#PCDATA) > 
     
    7577const char* cXMLAttribute_directory = "directory"; 
    7678const char* cXMLAttribute_has_expanded = "has_expanded"; 
     79const char*     cXMLAttribute_inbox = "inbox"; 
     80const char*     cXMLAttribute_outbox = "outbox"; 
    7781 
    7882const xmllib::XMLName cXMLElement_name("name");