libo26 / feedparser

Automatically exported from code.google.com/p/feedparser
Other
0 stars 0 forks source link

rss images not shown in the following rss link #194

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
http://download.chip.eu/tr/rss/rss_feed_tr_229715.xml?mode=0&category=9

What steps will reproduce the problem?
1. d = feedparser.parse
(http://download.chip.eu/tr/rss/rss_feed_tr_229715.xml?
mode=0&category=9)

2. the entry[i].description value was put into html

3. Although description content are seen in the generated HTML code (even 
the <img src="etc...> data is also available but ie was unable to load 
images (also images were not loaded on chrome)

What is the expected output? What do you see instead?
content of rss entry description should be seen clearly

What version of the product are you using? On what operating system?
feedparser 4.1

Please provide any additional information below.
on windows os, python 2.5, mod_python, apache webserver

Regards,
Kutlu

Original issue reported on code.google.com by kursat.k...@gmail.com on 17 Nov 2009 at 8:51

GoogleCodeExporter commented 9 years ago
Can you try to reproduce this problem with the current version of the code in 
source 
control.

Original comment by adewale on 2 Mar 2010 at 10:50

GoogleCodeExporter commented 9 years ago
Hi, I've just seen your message, sorry.. I'm going to try it tomorrow.

Thanks

Original comment by kursat.k...@gmail.com on 4 Apr 2010 at 9:34

GoogleCodeExporter commented 9 years ago
@Adewale: Please close this report.

Tested using svn trunk and provided URL; feedparser parses the feed, and keys 
are populated as expected. Reporter is experiencing a problem with application 
code using feedparser to generate an HTML file.

@kursat: It's possible that the HTML your program is generating is escaped. If 
that's the case, you would see what looks like raw HTML code when viewing the 
page in IE or Chrome, like this:

    <img src="http://url.com/image.jpg" />

If you view the source of the webpage, you would see something like:

    <img src="http://url.com/image.jpg" />

That's my best guess what's going on. I hope that helps you figure out what's 
going on!

Original comment by kurtmckee on 5 Dec 2010 at 9:51

GoogleCodeExporter commented 9 years ago

Original comment by adewale on 13 Dec 2010 at 12:48