From e037fc1d73ba895e6ff2da3cebf6300966b6a382 Mon Sep 17 00:00:00 2001 From: Claudio Valerio <=claudio@open-sankore.org> Date: Wed, 11 Jan 2012 09:59:43 +0100 Subject: [PATCH] removed file wrongly commited --- src/web/browser/UBOEmbedParser.cpp | 91 ------------------------------ 1 file changed, 91 deletions(-) delete mode 100644 src/web/browser/UBOEmbedParser.cpp diff --git a/src/web/browser/UBOEmbedParser.cpp b/src/web/browser/UBOEmbedParser.cpp deleted file mode 100644 index 9b2a7d6e..00000000 --- a/src/web/browser/UBOEmbedParser.cpp +++ /dev/null @@ -1,91 +0,0 @@ -/* - * 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) -{ - -}