From: Steve Brokenshire Date: Sun, 31 Jan 2016 11:45:05 +0000 (+0000) Subject: Added code to process GEO and LAST-MODIFIED in CalendarTaskObject. X-Git-Tag: release-0.02~570 X-Git-Url: http://Server1/repobrowser/?a=commitdiff_plain;h=68bf1de92b63681708e9f3ae04290b3f09bcc923;p=xestiacalendar%2F.git Added code to process GEO and LAST-MODIFIED in CalendarTaskObject. --- diff --git a/source/objects/calendartask/CalendarTask.cpp b/source/objects/calendartask/CalendarTask.cpp index 3eb05c6..216f372 100644 --- a/source/objects/calendartask/CalendarTask.cpp +++ b/source/objects/calendartask/CalendarTask.cpp @@ -341,4 +341,40 @@ void CalendarTaskObject::ProcessData(){ } + // Process the data from GEO. + + DataReceived = ProcessTextVectors(&ObjectName, &ObjectData, false, "GEO"); + + if (DataReceived.begin() != DataReceived.end()){ + + try { + GeographicTokens = DataReceived.begin()->first.substr(4); + } + + catch(const out_of_range &oor){ + // Do nothing as there is no data. + } + + GeographicData = DataReceived.begin()->second; + + } + + // Process the data from LAST-MODIFIED. + + DataReceived = ProcessTextVectors(&ObjectName, &ObjectData, false, "LAST-MODIFIED"); + + if (DataReceived.begin() != DataReceived.end()){ + + try { + LastModifiedTokens = DataReceived.begin()->first.substr(14); + } + + catch(const out_of_range &oor){ + // Do nothing as there is no data. + } + + LastModifiedData = DataReceived.begin()->second; + + } + } \ No newline at end of file