Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Added CONTACT property for saving data from a CalendarJournalObject.
authorSteve Brokenshire <sbrokenshire@xestia.co.uk>
Sun, 5 Jun 2016 22:46:33 +0000 (23:46 +0100)
committerSteve Brokenshire <sbrokenshire@xestia.co.uk>
Sun, 5 Jun 2016 22:46:33 +0000 (23:46 +0100)
Added the code and unit tests for the CONTACT property.

source/objects/calendarjournal/CalendarJournal-Save.cpp
source/tests/xestiacalendar_icaljournalsave.h

index 4bd9fea..e866df6 100644 (file)
@@ -664,6 +664,52 @@ void CalendarJournalObject::SaveObjectData(string *SaveData){
                
        }
        
+       // Process the CONTACT value.
+       
+       if (ContactList.size() > 0){
+               
+               for (int ContactListSeek = 0; ContactListSeek < ContactList.size();
+                       ContactListSeek++){
+       
+                       DataLine += "CONTACT";
+                       
+                       if (ContactListAltRep[ContactListSeek].size() > 0){
+               
+                               DataLine += ";ALTREP=\"";
+                               DataLine += ContactListAltRep[ContactListSeek];
+                               DataLine += "\"";
+                       
+                       }
+                               
+                       if (ContactListLanguage[ContactListSeek].size() > 0){
+               
+                               DataLine += ";LANGUAGE=";
+                               DataLine += ContactListLanguage[ContactListSeek];
+                       
+                       }
+                       
+                       if (ContactListTokens[ContactListSeek].size() > 0){
+               
+                               DataLine += ";";
+                               DataLine += ContactListTokens[ContactListSeek];
+                       
+                       }
+                               
+                       DataLine += ":";
+                       DataLine += ContactList[ContactListSeek];
+                       DataLine += "\n";
+               
+                       DataLineProcessed = OutputText(&DataLine);
+               
+                       *SaveData += DataLineProcessed;
+
+                       DataLine.clear();
+                       DataLineProcessed.clear();
+                               
+               }
+               
+       }
+       
        *SaveData += "END:VJOURNAL\n";
        
 }
\ No newline at end of file
index a075a41..0ddb69d 100644 (file)
@@ -97,6 +97,9 @@ TEST(iCalendarSaveJournal, SaveEventTests){
        "COMMENT:This is the first comment.\n"
        "COMMENT;ALTREP=\"null:nodata\";LANGUAGE=en:This is the second comment.\n"
        "COMMENT;ZEBRAS=YES:This is the third comment.\n"
+       "CONTACT:First Contact\n"
+       "CONTACT;ALTREP=\"null:nodata\";LANGUAGE=en-GB:Second Contact\n"
+       "CONTACT;ZEBRAS=NO:Third Contact\n"
        "END:VJOURNAL\n"
        "END:VCALENDAR";
        
Xestia Software Development
Yn Maystri
© 2006 - 2019 Xestia Software Development
Software

Xestia Address Book
Xestia Calendar
Development

Xestia Gelforn
Everything else

About
News
Privacy Policy