Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Added ATTACH property for saving data from a CalendarEventObject.
authorSteve Brokenshire <sbrokenshire@xestia.co.uk>
Sat, 4 Jun 2016 15:23:15 +0000 (16:23 +0100)
committerSteve Brokenshire <sbrokenshire@xestia.co.uk>
Sat, 4 Jun 2016 15:23:15 +0000 (16:23 +0100)
Added the code and unit tests for the ATTACH property.

source/objects/calendarevent/CalendarEvent-Save.cpp
source/tests/xestiacalendar_icaleventsave.h

index aee9093..2a4c83b 100644 (file)
@@ -647,6 +647,58 @@ void CalendarEventObject::SaveObjectData(string *SaveData){
                
        }
        
+       // Process the ATTACH values.
+       
+       if (AttachList.size() > 0){
+               
+               for (int AttachListSeek = 0; AttachListSeek < AttachList.size();
+                       AttachListSeek++){
+                       
+                       DataLine += "ATTACH";
+
+                       if (AttachListFormatType[AttachListSeek].size() > 0){
+               
+                               DataLine += ";FMTTYPE=";
+                               DataLine += AttachListFormatType[AttachListSeek];
+                       
+                       }
+                               
+                       if (AttachListValue[AttachListSeek].size() > 0){
+               
+                               DataLine += ";VALUE=";
+                               DataLine += AttachListValue[AttachListSeek];
+                       
+                       }
+                               
+                       if (AttachListEncoding[AttachListSeek].size() > 0){
+               
+                               DataLine += ";ENCODING=";
+                               DataLine += AttachListEncoding[AttachListSeek];
+                       
+                       }
+                               
+                       if (AttachListTokens[AttachListSeek].size() > 0){
+               
+                               DataLine += ";";
+                               DataLine += AttachListTokens[AttachListSeek];
+                       
+                       }
+               
+                       DataLine += ":";
+                       DataLine += AttachList[AttachListSeek];
+                       DataLine += "\n";
+               
+                       DataLineProcessed = OutputText(&DataLine);
+               
+                       *SaveData += DataLineProcessed;
+
+                       DataLine.clear();
+                       DataLineProcessed.clear();
+                               
+               }
+               
+       }
+       
        *SaveData += "END:VEVENT\n";
        
 }
\ No newline at end of file
index ccbb1ea..655a980 100644 (file)
@@ -95,6 +95,11 @@ TEST(iCalendarSaveEvent, SaveEventTests){
        "RECURRENCE-ID;TZID=Europe/Truro;RANGE=THISANDFUTURE;VALUE=DATE;EXAMPLE=DATA:2\n"
        " 0160124\n"
        "RRULE;TEST=DATA:FREQ=DAILY;COUNT=10\n"
+       "ATTACH;FMTTYPE=application/internet-shortcut:http://www.example.com/\n"
+       "ATTACH;FMTTYPE=application/internet-shortcut:http://www.example.com/page2.htm\n"
+       " l\n"
+       "ATTACH;FMTTYPE=text/plain;VALUE=BINARY;ENCODING=BASE64;STUPID=EXAMPLE:VGhpcyB\n"
+       " pcyBhbiBleGFtcGxlIGZpbGU=\n"
        "END:VEVENT\n"
        "END:VCARD";
 
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