/* * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include #include "UBOEmbedParser.h" /********************************************************************************** ---------------------------------------------------------------- Here is an example of an embed content in an XML representation ---------------------------------------------------------------- http://www.youtube.com/ EPISODE 36 Traditional Mediums FZDSCHOOL 270 480 480 1.0 http://www.youtube.com/user/FZDSCHOOL YouTube http://i4.ytimg.com/vi/C3lApsNmdwM/hqdefault.jpg video 360 ***********************************************************************************/ typedef struct{ QString providerUrl; QString title; QString author; int height; int thumbWidth; float version; QString authorUrl; QString providerName; QString thumbUrl; QString type; QString thumbHeight; QString sourceUrl; }sOEmbedContent; UBOEmbedParser::UBOEmbedParser(QObject *parent, const char* name) { setObjectName(name); mParsedTitles.clear(); } UBOEmbedParser::~UBOEmbedParser() { } void UBOEmbedParser::parse(const QString& html, QList *pList) { // get all the oembed links and parse their informations QString query = ""; } /** /brief Extract the oembed infos from the JSON @param jsonUrl as the url of the JSON file */ void UBOEmbedParser::getJSONInfos(const QString &jsonUrl) { } /** /brief Extract the oembed infos from the XML @param xmlUrl as the url of the XML file */ void UBOEmbedParser::getXMLInfos(const QString &xmlUrl) { }