Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Added PRIORITY property for saving data from a CalendarEventObject.
authorSteve Brokenshire <sbrokenshire@xestia.co.uk>
Thu, 2 Jun 2016 21:44:28 +0000 (22:44 +0100)
committerSteve Brokenshire <sbrokenshire@xestia.co.uk>
Thu, 2 Jun 2016 21:44:28 +0000 (22:44 +0100)
Added the code and unit tests for the PRIORITY property.

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

index 2219f1a..d993212 100644 (file)
@@ -437,6 +437,32 @@ void CalendarEventObject::SaveObjectData(string *SaveData){
                
        }
        
+       // Process the PRIORITY value.
+       
+       if (PriorityData > -1 && PriorityData < 10){
+               
+               DataLine += "PRIORITY";
+               
+               if (PriorityTokens.size() > 0){
+               
+                       DataLine += ";";
+                       DataLine += PriorityTokens;
+                       
+               }
+               
+               DataLine += ":";
+               DataLine += to_string(PriorityData);
+               DataLine += "\n";
+               
+               DataLineProcessed = OutputText(&DataLine);
+               
+               *SaveData += DataLineProcessed;
+
+               DataLine.clear();
+               DataLineProcessed.clear();
+               
+       }
+       
        *SaveData += "END:VEVENT\n";
        
 }
\ No newline at end of file
index 247773f..bc2b843 100644 (file)
@@ -87,6 +87,7 @@ TEST(iCalendarSaveEvent, SaveEventTests){
        "LOCATION;ALTREP=\"null:nodata\";LANGUAGE=kw;EXACT=NO:The Basement, Truro\n"
        "ORGANIZER;CN=ExampleOrganiser;DIR=\"null:nodata\";SENT-BY=\"mailto:organiser.nor\n"
        " eply@example.com\";LANGUAGE=kw;HAPPY=DAYS:mailto:organiser@example.com\n"
+       "PRIORITY;STATUS=DEFAULT:5\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