-rw-r--r-- | noncore/net/ubrowser/httpfactory.cpp | 5 | ||||
-rw-r--r-- | noncore/net/ubrowser/httpfactory.h | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/noncore/net/ubrowser/httpfactory.cpp b/noncore/net/ubrowser/httpfactory.cpp index 0586e96..4ace4cb 100644 --- a/noncore/net/ubrowser/httpfactory.cpp +++ b/noncore/net/ubrowser/httpfactory.cpp | |||
@@ -222,8 +222,13 @@ const QByteArray HttpFactory::processResponse( int sockfd, bool &isText ) const | |||
222 | if( currentLine.contains( "Content-Type: text", false ) >= 1 ) | 222 | if( currentLine.contains( "Content-Type: text", false ) >= 1 ) |
223 | { | 223 | { |
224 | isText = true; | 224 | isText = true; |
225 | printf( "HttpFactory::processResponse: content type text\n" ); | 225 | printf( "HttpFactory::processResponse: content type text\n" ); |
226 | if( currentLine.contains( "html", false ) ) | ||
227 | { | ||
228 | browser->setTextFormat(Qt::RichText); | ||
229 | printf( "HttpFactory::processResponse: content type html\n" ); | ||
230 | } | ||
226 | } | 231 | } |
227 | 232 | ||
228 | if( currentLine.contains( "Content-Type: image", false ) >= 1 ) | 233 | if( currentLine.contains( "Content-Type: image", false ) >= 1 ) |
229 | { | 234 | { |
diff --git a/noncore/net/ubrowser/httpfactory.h b/noncore/net/ubrowser/httpfactory.h index 214120c..ec59ebb 100644 --- a/noncore/net/ubrowser/httpfactory.h +++ b/noncore/net/ubrowser/httpfactory.h | |||
@@ -29,9 +29,9 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |||
29 | #include <netinet/in.h> | 29 | #include <netinet/in.h> |
30 | #include <netdb.h> | 30 | #include <netdb.h> |
31 | #include <arpa/inet.h> | 31 | #include <arpa/inet.h> |
32 | 32 | ||
33 | #include "httpcomm.h" | 33 | //#include "httpcomm.h" |
34 | 34 | ||
35 | class HttpFactory : public QMimeSourceFactory | 35 | class HttpFactory : public QMimeSourceFactory |
36 | { | 36 | { |
37 | public: | 37 | public: |
@@ -39,9 +39,9 @@ public: | |||
39 | const QMimeSource * data(const QString &abs_name) const; | 39 | const QMimeSource * data(const QString &abs_name) const; |
40 | const QMimeSource * data(const QString &abs_or_rel_name, const QString & context) const; | 40 | const QMimeSource * data(const QString &abs_or_rel_name, const QString & context) const; |
41 | private: | 41 | private: |
42 | //QSocket *socket; | 42 | //QSocket *socket; |
43 | HttpComm *comm; | 43 | //HttpComm *comm; |
44 | QTextDrag *text; | 44 | QTextDrag *text; |
45 | QImageDrag *image; | 45 | QImageDrag *image; |
46 | QTextBrowser *browser; | 46 | QTextBrowser *browser; |
47 | 47 | ||