From: SourceForge.net <no...@so...> - 2006-08-25 19:04:06
|
/mod/phpwsrssfeeds item #1389985, was opened at 2005-12-25 02:44 Message generated for change (Comment added) made by wendall911 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=563513&aid=1389985&group_id=81360 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Closed Resolution: Fixed Priority: 8 Submitted By: Josh Rogers (silverfox541) Assigned to: Wendall Cada (wendall911) Summary: Channel URL seems to truncate Initial Comment: When I add an RSS feed for http://my.bzflag.org/rss.php? feed=players\&server=silvercat.tybox.net&order=score it seems to display the feed for http://my.bzflag.org/rss.php?feed=players I'm guessing that everything after the first & gets truncated/ignored? I can't seem to see where in the source that this is done so I can fix it. Any help would be appreciated. -Silverfox ---------------------------------------------------------------------- >Comment By: Wendall Cada (wendall911) Date: 2006-08-25 12:04 Message: Logged In: YES user_id=711566 fixed in cvs, was an error in encoding & Wendall ---------------------------------------------------------------------- Comment By: Josh Rogers (silverfox541) Date: 2006-08-23 22:34 Message: Logged In: YES user_id=941893 I'm curious about how this was resolved (besides the workaround) ---------------------------------------------------------------------- Comment By: Josh Rogers (silverfox541) Date: 2006-08-22 22:20 Message: Logged In: YES user_id=941893 >In the summary here you've a slash in front of the first & >It's not that is it? No, it behaves the same regardless of whether the & is escaped by a \ ---------------------------------------------------------------------- Comment By: Shaun Murray (singletrack) Date: 2006-02-19 22:42 Message: Logged In: YES user_id=722742 In the summary here you've a slash in front of the first & It's not that is it? ---------------------------------------------------------------------- Comment By: Josh Rogers (silverfox541) Date: 2005-12-25 14:44 Message: Logged In: YES user_id=941893 I've created a local wrapper which overcomes this problem (and confirms that something is mangling the URL) Below is the content of my local nowplaying.php file I created and am refencing in the RSS feed: <?php header("Content-Type: text/xml"); $url = "http://my.bzflag.org/rss.php? feed=players&server=silvercat.tybox.net&order=score"; $fp = fopen($url,"r"); while(!feof($fp)) { echo( fread($fp,1024) ); } fclose($fp); exit(); ?> ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=563513&aid=1389985&group_id=81360 |