mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-10 22:56:01 +01:00
2017-01-31 Fred Gleason <fredg@paravelsystems.com>
* Added an 'AddLog' method to the Web API. * Added an 'DeleteLog' method to the Web API. * Added a 'SaveLog' method to the Web API. * Added 'eventLength', 'linkEventName', 'linkStartSlop', 'linkEndSlop', 'linkId', 'linkEmbedded', 'extStartTime', 'extLength', 'extCartName', 'extData', 'extEventId', and 'extAnncType' XML fields to the return of the ListLog web API method
This commit is contained in:
@@ -1206,6 +1206,18 @@ QDateTime RDGetWebDateTime(const QString &str,bool *ok)
|
||||
}
|
||||
|
||||
|
||||
QDate RDGetWebDate(const QString &str,bool *ok)
|
||||
{
|
||||
QDate ret;
|
||||
|
||||
ret=QDate::fromString(str,Qt::ISODate);
|
||||
if(ok!=NULL) {
|
||||
*ok=ret.isValid();
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
QTime RDGetWebTime(const QString &str,bool *ok)
|
||||
{
|
||||
QTime ret;
|
||||
|
||||
Reference in New Issue
Block a user