Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Added code to process the ATTACH property in CalendarJournalObject.
authorSteve Brokenshire <sbrokenshire@xestia.co.uk>
Sun, 31 Jan 2016 15:05:29 +0000 (15:05 +0000)
committerSteve Brokenshire <sbrokenshire@xestia.co.uk>
Sun, 31 Jan 2016 15:05:29 +0000 (15:05 +0000)
source/objects/calendarjournal/CalendarJournal.cpp

index e6e6f96..f174df3 100644 (file)
@@ -539,4 +539,66 @@ void CalendarJournalObject::ProcessData(){
                
        }
        
+       // Process the data from ATTACH.
+       
+       DataReceived = ProcessTextVectors(&ObjectName, &ObjectData, true, "ATTACH");
+       
+       for(multimap<string,string>::iterator iter = DataReceived.begin(); 
+               iter != DataReceived.end(); 
+               ++iter){
+               
+               AttachListEncoding.push_back("");
+               AttachListValue.push_back("");
+               AttachListFormatType.push_back("");
+               AttachListTokens.push_back("");
+               AttachList.push_back("");
+                       
+               bool TokenData = false;
+               string PropertyTokens;
+               
+               PropertyNameData = (string*)&iter->first;
+               
+               PropertyData = SplitValues(*PropertyNameData);
+                       
+               for(map<string,string>::iterator dataiter = PropertyData.begin();
+                       dataiter != PropertyData.end(); dataiter++){
+                       
+                       if (dataiter->first == "ENCODING"){
+                               
+                               AttachListEncoding[ObjectSeekCount] = dataiter->second;
+                               
+                       } else if (dataiter->first == "VALUE"){
+                               
+                               AttachListValue[ObjectSeekCount] = dataiter->second;
+                               
+                       } else if (dataiter->first == "FMTTYPE"){
+                               
+                               AttachListFormatType[ObjectSeekCount] = dataiter->second;
+                               
+                       } else {
+                               
+                               if (TokenData == false){
+                                       TokenData = true;
+                               } else {
+                                       PropertyTokens += ";";
+                               }
+                               
+                               PropertyTokens += dataiter->first;
+                               PropertyTokens += "=";
+                               PropertyTokens += dataiter->second;
+                               
+                       }
+                               
+               }
+               
+               if (PropertyTokens.size() > 0){
+                       AttachListTokens[ObjectSeekCount] = PropertyTokens;
+               }
+                       
+               AttachList[ObjectSeekCount] = iter->second;
+               
+               ObjectSeekCount++;
+               
+       }
+       
 }
\ No newline at end of file
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