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

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

index a5704e1..39789b4 100644 (file)
@@ -413,6 +413,59 @@ void CalendarJournalObject::SaveObjectData(string *SaveData){
                DataLineProcessed.clear();
                
        }
+       
+       // 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:VJOURNAL\n";
        
 }
\ No newline at end of file
index 18ff886..69a7986 100644 (file)
@@ -79,6 +79,11 @@ TEST(iCalendarSaveJournal, SaveEventTests){
        "STATUS;LANGUAGE=kw;FAVOURITE=RICHTEA;NOTLIKE=UNKNOWN:2.0;Success\n"
        "URL;EXTERNAL=YES:http://www.example.com/\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: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