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

index 9ce0ff0..ad2939c 100644 (file)
@@ -877,4 +877,63 @@ void CalendarJournalObject::ProcessData(){
                
        }
        
+       // Process the data from Description.
+       
+       DataReceived = ProcessTextVectors(&ObjectName, &ObjectData, true, "DESCRIPTION");
+
+       ObjectSeekCount = 0;
+       
+       for(multimap<string,string>::iterator iter = DataReceived.begin(); 
+               iter != DataReceived.end(); 
+               ++iter){
+               
+               DescriptionListTokens.push_back("");
+               DescriptionListAltRep.push_back("");
+               DescriptionListLanguage.push_back("");
+               DescriptionList.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 == "ALTREP"){
+                               
+                               DescriptionListAltRep[ObjectSeekCount] = dataiter->second;
+                               
+                       } else if (dataiter->first == "LANGUAGE"){
+                               
+                               DescriptionListLanguage[ObjectSeekCount] = dataiter->second;
+                               
+                       } else {
+                               
+                               if (TokenData == false){
+                                       TokenData = true;
+                               } else {
+                                       PropertyTokens += ";";
+                               }
+                               
+                               PropertyTokens += dataiter->first;
+                               PropertyTokens += "=";
+                               PropertyTokens += dataiter->second;
+                               
+                       }
+                               
+               }
+               
+               if (PropertyTokens.size() > 0){
+                       DescriptionListTokens[ObjectSeekCount] = PropertyTokens;
+               }
+                       
+               DescriptionList[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