active questions tagged rss - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T19:41:57Zhttp://stackoverflow.com/feeds/tag/rsshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1813559/using-rss-net-with-stack-overflow-feeds-how-to-handle-special-properties0Using RSS.NET with Stack Overflow Feeds: How To Handle Special Properties?Maxim Z.2009-11-28T19:41:43Z2009-11-28T19:41:43Z
<p>I'm <a href="http://meta.stackoverflow.com/questions/31200/net-library-for-stack-overflow-api">writing a Stack Overflow API wrapper</a>, currently at <a href="http://soapidotnet.googlecode.com/" rel="nofollow">http://soapidotnet.googlecode.com/</a>. I have a few questions about parsing SO RSS feeds.</p>
<p>I've chosen to use RSS.NET to parse RSS, and below is my current code for parsing recent question feeds. </p>
<pre><code> /// <summary>
/// Utilises recent question feeds to obtain recently updated questions on a certain site.
/// </summary>
/// <param name="site">Trilogy site in question.</param>
/// <returns>A list of objects of type Question, which represents the recent questions on a trilogy site.</returns>
public static List<Question> GetRecentQuestions(TrilogySite site)
{
List<Question> RecentQuestions = new List<Question>();
RssFeed feed = RssFeed.Load(string.Format("http://{0}.com/feeds",GetSiteUrl(site)));
RssChannel channel = (RssChannel)feed.Channels[0];
foreach (RssItem item in channel.Items)
{
Question toadd = new Question();
foreach(RssCategory cat in item.Categories)
{
toadd.Categories.Add(cat.Name);
}
toadd.Author = item.Author;
toadd.CreatedDate = ConvertToUnixTimestamp(item.PubDate).ToString();
toadd.Id = item.Link.Url.ToString();
toadd.Link = item.Link.Url.ToString();
toadd.Summary = item.Description;
//TODO: OTHER PROPERTIES
RecentQuestions.Add(toadd);
}
return RecentQuestions;
}
</code></pre>
<p>Here is the code of that SO RSS feed:</p>
<pre><code><feed xmlns="http://www.w3.org/2005/Atom" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:re="http://purl.org/atompub/rank/1.0">
<title type="text">Top Questions - Stack Overflow</title>
<link rel="self" href="http://stackoverflow.com/feeds" type="application/atom+xml" />
<link rel="alternate" href="http://stackoverflow.com/questions" type="text/html" />
<subtitle>most recent 30 from stackoverflow.com</subtitle>
<updated>2009-11-28T19:26:49Z</updated>
<id>http://stackoverflow.com/feeds</id>
<creativeCommons:license>http://www.creativecommons.org/licenses/by-nc/2.5/rdf</creativeCommons:license>
<entry>
<id>http://stackoverflow.com/questions/1813483/averaging-angles-again</id>
<re:rank scheme="http://stackoverflow.com">0</re:rank>
<title type="text">Averaging angles... Again</title>
<category scheme="http://stackoverflow.com/feeds/tags" term="algorithm"/><category scheme="http://stackoverflow.com/feeds/tags" term="math"/><category scheme="http://stackoverflow.com/feeds/tags" term="geometry"/><category scheme="http://stackoverflow.com/feeds/tags" term="calculation"/>
<author><name>Lior Kogan</name></author>
<link rel="alternate" href="http://stackoverflow.com/questions/1813483/averaging-angles-again" />
<published>2009-11-28T19:19:13Z</published>
<updated>2009-11-28T19:26:39Z</updated>
<summary type="html">
&lt;p&gt;I want to calculate the average of a set of angles.&lt;/p&gt;
&lt;p&gt;I know it has been discussed before (several times). The accepted answer was &lt;strong&gt;Compute unit vectors from the angles and take the angle of their average&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;However this answer defines the average in a non intuitive way. The average of 0, 0 and 90 will be &lt;strong&gt;atan( (sin(0)+sin(0)+sin(90)) / (cos(0)+cos(0)+cos(90)) ) = atan(1/2)= 26.56 deg&lt;/strong&gt; &lt;/p&gt;
&lt;p&gt;I would expect the average of 0, 0 and 90 to be 30 degrees.&lt;/p&gt;
&lt;p&gt;So I think it is fair to ask the question again: How would you calculate the average, so such examples will give the intuitive expected answer.&lt;/p&gt;
</summary>
</entry>
</code></pre>
<p>etc.</p>
<p><hr></p>
<h2>My Questions:</h2>
<p>First of all, am I <strong>parsing those attributes correctly</strong>? I have a class named Question, which has those properties.</p>
<p>Next, how can I <strong>parse the RSS property</strong> (used for # of votes)? I'm not sure how RSS.NET lets us do that. </p>
<p>Finally, do I have to add all the properties manually, like currently in my code? Is their some sort of <strong>deserialization</strong> that I can use?</p>
<p><hr></p>
<p>Here is my Question class, if it will help:</p>
<pre><code> /// <summary>
/// Represents a question.
/// </summary>
public class Question : Post //TODO: Have Question and Answer derive from Post
{
/// <summary>
/// # of favorites.
/// </summary>
public double FavCount { get; set; }
/// <summary>
/// # of answers.
/// </summary>
public double AnswerCount { get; set; }
/// <summary>
/// Tags.
/// </summary>
public string Tags { get; set; }
}
/// <summary>
/// Represents a post on Stack Overflow (question, answer, or comment).
/// </summary>
public class Post
{
/// <summary>
/// Id (link)
/// </summary>
public string Id { get; set; }
/// <summary>
/// Number of votes.
/// </summary>
public double VoteCount { get; set; }
/// <summary>
/// Number of views.
/// </summary>
public double ViewCount { get; set; }
/// <summary>
/// Title.
/// </summary>
public string Title { get; set; }
/// <summary>
/// Created date of the post (expressed as a Unix timestamp)
/// </summary>
public string CreatedDate
{
get
{
return CreatedDate;
}
set
{
CreatedDate = value;
dtCreatedDate = StackOverflow.ConvertFromUnixTimestamp(StackOverflow.ExtractTimestampFromJsonTime(value));
}
}
/// <summary>
/// Created date of the post (expressed as a DateTime)
/// </summary>
public DateTime dtCreatedDate { get; set; }
/// <summary>
/// Last edit date of the post (expressed as a Unix timestamp)
/// </summary>
public string LastEditDate
{
get
{
return LastEditDate;
}
set
{
LastEditDate = value;
dtLastEditDate = StackOverflow.ConvertFromUnixTimestamp(StackOverflow.ExtractTimestampFromJsonTime(value));
}
}
/// <summary>
/// Last edit date of the post (expressed as a DateTime)
/// </summary>
public DateTime dtLastEditDate { get; set; }
/// <summary>
/// Author of the post.
/// </summary>
public string Author { get; set; }
/// <summary>
/// HTML of the post.
/// </summary>
public string Summary { get; set; }
/// <summary>
/// URL of the post.
/// </summary>
public string Link { get; set; }
/// <summary>
/// RSS Categories (or tags) of the post.
/// </summary>
public List<string> Categories { get; set; }
}
</code></pre>
http://stackoverflow.com/questions/1811655/how-to-show-youtube-video-embed-code-video-preview-snapshot-in-rss0How to show youtube video/ Embed code video Preview/snapshot in rssvamsivanka2009-11-28T05:16:32Z2009-11-28T05:16:32Z
<p>I am trying to generate rss feed for myclips <a href="http://webclip.in/user.aspx?u=iamgame" rel="nofollow">http://webclip.in/user.aspx?u=iamgame</a>
Some of the clips have image snap shot, but some of them are youtube flash video.</p>
<p>is there a way to show the embed video in the rss just like we show image in the rss eg:<a href="http://www.amazon.com/rss/tag/sci-fi/popular/ref=tag%5Frsh%5Fhl%5Ferso" rel="nofollow">http://www.amazon.com/rss/tag/sci-fi/popular/ref=tag_rsh_hl_erso</a></p>
<p>Please let me know. Thanks</p>
http://stackoverflow.com/questions/1733310/is-it-exists-any-rss-hosting-with-api-for-creating-feeds0Is it exists any "rss hosting" with API for creating feeds Maciek Sawicki2009-11-14T04:46:14Z2009-11-25T20:38:18Z
<p>Hi,
I am creating a desktop app that will create some reports. I want to export these reports as RSS or ATOM feeds. I can easily create feeds with Rome lib for Java. But I have no idea how to spread them. I thought about embedding httpd into my app, but it's bad idea, because a computer can be behind NAT or turned off.</p>
<p>I need some kind of "proxy" server, where can I push my feeds, and clients will be able to pull content from that server.</p>
<p>I can probable write server side app fore this, but first I'd like to find out if some dedicated solution is available for problems like this.</p>
<p>I was also thinking about using some blogging platform and using its API. What do you think about this approach?</p>
<p>One more thing I have to consider when choosing platform ability to handle lot of updates. Sometimes desktop app will be shut down but when it will be running, it generates quite a lot of updates. </p>
http://stackoverflow.com/questions/1127120/how-do-i-data-mine-various-news-sources0How do I data mine various news sources?David Brown2009-07-14T18:27:18Z2009-11-25T15:00:04Z
<p>I'm working on a free web application that will analyze top news stories throughout the day and provide stats. Most news websites offer RSS feeds, which works fine for knowing which stories to retrieve. However, the problems arise when attempting to get the full news story from the news website itself. At the moment, I have separate <strong>NewsSource</strong> classes for each source (CNN, NY Times, etc) that read the appropriate RSS feed(s), follows each link, and strips out the body. This seems tedious and very unmanageable when a news website decides to change the HTML structure of their articles.</p>
<p>Is there a service (preferably free) that already aggregates multiple news sources with the <strong>full</strong> article content (not just a summary)? If not, do you have any suggestions for handling multiple sources with different HTML structures that may change without notice?</p>
http://stackoverflow.com/questions/576780/id-like-to-scrape-the-itunes-top-x-rss-feed-and-insert-into-a-db0I'd like to scrape the iTunes top X RSS feed and insert into a dB...2009-02-23T07:19:33Z2009-11-25T14:13:23Z
<p>Preferably I'd like to do so with some bash shell scripting, maybe some PHP or PERL and a MySQL db. Thoughts?</p>
http://stackoverflow.com/questions/1797043/how-does-this-rss-feed-work0How does this RSS feed work [closed]unknown (yahoo)2009-11-25T13:52:44Z2009-11-25T14:00:07Z
<p>I found <a href="http://www.jooria.com/rss/script" rel="nofollow">this RSS feed</a></p>
<p>It seems strange to me that it works though it doesn't end in <code>.rss</code>. I thought RSS feeds should always end with <code>.rss</code>.</p>
<p>How can I make my RSS feed work like that?</p>
<p>I would like to make it dynamic - not using a sitemap generator</p>
http://stackoverflow.com/questions/1796545/how-can-insert-new-line-after-each-syndicationitem-when-using-synicationfeed-clas0How can insert new line after each syndicationitem when using SynicationFeed class in dotnet 3.5?mmtemporary2009-11-25T12:15:26Z2009-11-25T12:21:57Z
<p>How can insert new line after each syndicationitem when using SynicationFeed class in dotnet 3.5?</p>
<p>when you see result of googlebot fetch (in webmasters), it its ONE LINE!!!!!!</p>
http://stackoverflow.com/questions/1766823/how-can-i-generate-rss-with-arbitrary-tags-and-enclosures1How can I generate RSS with arbitrary tags and enclosuresCev2009-11-19T21:51:20Z2009-11-25T06:58:28Z
<p>Right now, I'm using PyRSS2Gen to generate an RSS document (resyndicating a modification of an rss feed that was parsed with feedparser), but I can't figure out how to add uncommon tags to the item.</p>
<pre><code>items = [
PyRSS2Gen.RSSItem(
title = x.title,
link = x.link,
description = x.summary,
guid = x.link,
pubDate = datetime(
x.modified_parsed[0],
x.modified_parsed[1],
x.modified_parsed[2],
x.modified_parsed[3],
x.modified_parsed[4],
x.modified_parsed[5])
)
for x in parsed_feed.entries]
rss = PyRSS2Gen.RSS2(
title = "Resyndicator",
link = parsed_feed['feed'].get("link"),
description = "etc",
language = parsed_feed['feed'].get("language"),
copyright = parsed_feed['feed'].get("copyright"),
managingEditor = parsed_feed['feed'].get("managingEditor"),
webMaster = parsed_feed['feed'].get("webMaster"),
pubDate = parsed_feed['feed'].get("pubDate"),
lastBuildDate = parsed_feed['feed'].get("lastBuildDate"),
categories = parsed_feed['feed'].get("categories"),
generator = parsed_feed['feed'].get("generator"),
docs = parsed_feed['feed'].get("docs"),
items = items
)
</code></pre>
<p>The original feed has a <code><show_id></show_id></code> tag, as well as an enclosure
<code><enclosure url="http://url.com" length="10" type="" /></code> and I need to include that in the generated version as well.</p>
http://stackoverflow.com/questions/1790746/how-to-create-a-web-widget-for-my-website-users-to-insert-on-their-blog0How to create a web widget for my website users to insert on their blog ?Nikkel2009-11-24T15:20:08Z2009-11-24T18:21:34Z
<p>Hello,</p>
<p>For my wishlist site, I would like to propose widgets to my users in order to publish their wishlist on their blog or personal website. The idea is to propose a few lines of code to my users that they only need to copy/paste to insert the widget displaying their wishlist. </p>
<p>What is the best way to create/develop a widget ?</p>
<ul>
<li>I have a RSS feed for each wishlist</li>
<li>Since the code need to be dynamic, I
prefer not to use service like
WidgetBox</li>
<li>Flash ? iFrame ?</li>
<li>Possibility to use jQuery</li>
</ul>
<p>Thanks for your input...</p>
http://stackoverflow.com/questions/763805/how-to-fill-rss-feeds-in-datagrid1How to fill RSS feeds in datagrid ?Kartik2009-04-18T17:30:11Z2009-11-24T04:53:57Z
<p>Hello Friends,</p>
<p>I am using .net c# and i want to fill datagrid with rss feed.</p>
<p>Problem is </p>
<p>When i return rss feed in to dataset then i got multiple table wich storing diffrent data.</p>
<p>Means i want to fill grid with "Title" and "Picture" here is my code example</p>
<pre><code>protected void Button1_Click(object sender, System.EventArgs e)
{
XmlTextReader reader = new XmlTextReader(txtUrl.Text);
DataSet ds = new DataSet();
ds.ReadXml(reader);
myDataGrid.DataSource = ds.Tables[2] ;
myDataGrid.DataBind();
}
</code></pre>
<p>All the details regarding Title and description and posted date is sitting in tables #2 and related image and size of image related information is stored in table #3 so how can i feel grid with this two column ?</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1787853/how-do-you-properly-use-xmlns-namespaces-with-custom-extensions-to-net-syndicati0How do you properly use xmlns namespaces with custom extensions to .NET SyndicationFeeds?Kirk Liemohn2009-11-24T04:47:59Z2009-11-24T04:47:59Z
<p>I am using the .NET SyndicationFeed class and have added some of my own extensions using SyndicationItem.ElementExtensions.Add() as well as setting SyndicationItem.Content to some Xml content.</p>
<p>My problem is that my namespace shows up multiple times in the XML output. Ideally I would apply a xmlns attribute to the root node and use its alias throughout the document.</p>
<p>I have seen examples that discuss using SyndicationFeed.AttributeExtensions as seen <a href="http://hyperthink.net/blog/declaring-xml-namespaces-on-a-syndicationfeed/" rel="nofollow">here</a>. For example:</p>
<pre><code>feed.AttributeExtensions.Add(
new System.Xml.XmlQualifiedName("myns", "http://www.w3.org/2000/xmlns"),
"http://myNamespace.com");
</code></pre>
<p>But, none of these examples show how to utilize the namespace later. For example, here are two ways I extend the feed:</p>
<pre><code>XNamespace myNs = "http://myNamespace.com";
SyndicationItem item = new SyndicationItem();
XElement myMetadata = new XElement(myNs + "metadata");
myMetadata.Add(new XElement(myNs + "meta1", "value1"));
myMetadata.Add(new XElement(myNs + "meta2", "value2"));
item.Content = SyndicationContent.CreateXmlContent(myMetadata);
XElement myExtensions = new XElement(myNs + "myExtensions");
myExtensions.Add(new XElement(myNs + "ext1", "value1"));
myExtensions.Add(new XElement(myNs + "ext2", "value2"));
item.ElementExtensions.Add(myExtensions);
</code></pre>
<p>Hopefully I'm missing something simple. With the AttribuetExtensions.Add() method further above, my feed has the following for the initial XML:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<rss xmlns:a10="http://www.w3.org/2005/Atom" version="2.0">
<channel p3:myns="http://myNamespace.com" xmlns:p3="http://www.w3.org/2000/xmlns">
</code></pre>
<p>Granted, I'd prefer that the xmlns for myns be on the root rss node and not the channel, but I can live with it being on the channel. Unfortunately, the syndication item xml looks like:</p>
<pre><code><item>
...
<a10:content type="text/xml">
<metadata xmlns="http://myNamespace.com">
<meta1>value1</meta2>
<meta2>value2</meta2>
</metadata>
</a10:content>
<myExtensions xmlns="http://myNamespace.com">
<ext1>value1</ext1>
<ext2>value2</ext2>
</myExtensions>
</item>
</code></pre>
<p>Of course, what I'd prefer to see is:</p>
<pre><code><item>
...
<a10:content type="text/xml">
<myns:metadata>
<meta1>value1</meta2>
<meta2>value2</meta2>
</myns:metadata>
</a10:content>
<myns:myExtensions>
<ext1>value1</ext1>
<ext2>value2</ext2>
</myns:myExtensions>
</item>
</code></pre>
<p>Is there some special way of linking the namespace defined by SyndicationFeed.AttributeExtensions with that used when extending a SyndicationItem?</p>
http://stackoverflow.com/questions/1787520/code-crash-on-iphone-simulator-but-works-on-actual-iphone-device0Code crash on iPhone Simulator but works on actual iPhone device?isaaclimdc2009-11-24T03:03:39Z2009-11-24T03:12:20Z
<p>This is an extremely weird problem: wondering if anybody has experienced this before. My code, an RSS parser of Flickr photos (RSS feed), works perfectly on an actual device, but allocates a ton of memory and freezes up my entire computer when run on the simulator.</p>
<p>I know usually it's the other way round for people, but this is acting weird. Any clue why? In the app, I have 2 other places using the exact same code, but used to parse youtube feeds and general rss feeds, and they work fine, but not this.</p>
http://stackoverflow.com/questions/1785899/the-rss-feed-of-wordpress-blog-goes-wild0The RSS Feed of Wordpress blog goes wildSkuta2009-11-23T20:56:39Z2009-11-23T22:19:05Z
<p>Hi,</p>
<p>I've installed the wordpress.org script however the RSS feed just sends me errors. I've tried to edit files within the wordpress like wp-rss2.php to remove "?" from the first line but it does not work and I am not sure what else could be wrong.</p>
<p>The feed is here: <a href="http://www.donaha.sk/feed" rel="nofollow">http://www.donaha.sk/feed</a></p>
<p>I haven't found anything on Mr. Google so far.</p>
<p>ANSWER: I was running in Slovak language mode. I changed back to EN_US and problem was resolved. The solution is not evident but it works for me. Thank you for help but none of the answers were correct.</p>
http://stackoverflow.com/questions/1784075/runing-continues-proccess-on-a-web-server1Runing continues proccess on a web serverRoy Tsabari2009-11-23T15:58:59Z2009-11-23T16:11:17Z
<p>I' am building some RSS web service in ASP.net (using IIS as the web server). In it I wand to create some king of RSS reader.
I 'am creating some process that will retrieve the content from the RSS feed every 3 hours.
I want to create a control panel that will give me the ability to start/stop the process, and will have some simple dashboard that will sum the current activity.</p>
<p>I 'am looking for the best way to do that.</p>
<p>I thought about creating a Windows Service on the server, but there are security issues in starting and stopping the service from a web interface.</p>
<p><strong>What is the right way to do it?</strong></p>
<p>Thank you in advance.</p>
http://stackoverflow.com/questions/1777081/how-to-auto-log-into-gmail-atom-feed-with-python4How to auto log into gmail atom feed with Python?Demon Labs2009-11-21T23:01:16Z2009-11-21T23:44:11Z
<p>Gmail has this sweet thing going on to get an atom feed:</p>
<pre><code>def gmail_url(user, pwd):
return "https://"+str(user)+":"+str(pwd)+"@gmail.google.com/gmail/feed/atom"
</code></pre>
<p>Now when you do this in a browser, it authenticates and forwards you. But in Python, at least what I'm trying, isn't working right.</p>
<pre><code>url = gmail_url(settings.USER, settings.PASS)
print url
opener = urllib.FancyURLopener()
f = opener.open(url)
print f.read()
</code></pre>
<p>Instead of forwarding correctly, it's doing this:</p>
<pre><code>>>>
https://user:pass@gmail.google.com/gmail/feed/atom
Enter username for New mail feed at mail.google.com:
</code></pre>
<p>This is BAD! I shouldn't have to type in the username and password again!! How can I make it just auto-forward in python as it does in my web browser, so I can get the feed contents without all the BS?</p>
http://stackoverflow.com/questions/1754656/best-way-to-get-informed-of-new-questions-on-stackoverflow0Best way to get informed of new questions on stackoverflow? [closed]1passenger2009-11-18T09:13:08Z2009-11-21T18:12:58Z
<p>What is your preferred way to get informed of new interessting questions on stackoverflow? Do you use RSS feeds? Do you keep an eye on your "interesting tags"? Are there other alternatives?</p>
<p>I'm new to stackoverflow and I'm wondering all the time why getting so quickly answers to my questions.</p>
http://stackoverflow.com/questions/1731210/converting-rss-feed-to-atom-via-feedburner-for-existing-blog0Converting RSS feed to Atom via Feedburner for existing blogrutherford2009-11-13T19:07:06Z2009-11-21T14:22:30Z
<p>I have an RSS based blog that I now want to convert to Atom. Feedburner can change the output format in one click. Will my existing subscribers notice any change on the reader side? (other than taking advantage of the extra atom functionality)</p>
http://stackoverflow.com/questions/1774456/java-based-atom-rss-library-that-works-in-google-app-engine0Java based Atom/RSS Library that works in Google App EngineLittlejon2009-11-21T03:56:44Z2009-11-21T04:01:46Z
<p>I am trying to publish an Atom/RSS feed in my Java based Google App Engine code. I have tried using Rome and keep getting the following error (tried googling without success), also the code I am running that generates the error is the demo code (so I get the feeling Rome won't work with GAE)</p>
<pre><code>java.lang.NoClassDefFoundError: org/jdom/JDOMException
at com.sun.syndication.io.SyndFeedOutput.<init>(SyndFeedOutput.java:44)
</code></pre>
<p>What I am looking for is recommendations for a simple Java library to create and publish an Atom feed from within Google App Engine.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/772785/gmail-rss-dont-see-tag-description-how-to-see-request-headers-of-my-iis-5-websi1GMAIL rss don't see tag description.How to see Request headers of my iis 5 website.yandex.rudiplom7652009-04-21T14:12:51Z2009-11-20T08:56:22Z
<p>Hi i create my rss feed
217.76.185.140/18.rss asp.net server
If i add to webclip (gmail) rss <a href="http://www.brainyquote.com/link/quotebr.rss" rel="nofollow">http://www.brainyquote.com/link/quotebr.rss</a> it works fine
(See up of the inbox there are rss feed)
But my own rss feed don't see description tag.
1.I want copy request header (that send gmail to my iis server)
HTTP 101. etc
content-type</p>
<p>2.Than i want copy it and send this httrrequest with fiddler to <a href="http://www.brainyquote.com/link/quotebr.rss" rel="nofollow">http://www.brainyquote.com/link/quotebr.rss</a>
3.Than i will saw http response from quotebr.rss
4. I copy this resopnse and replace description,title etc to my own</p>
<p>1.I want to know how i can safe(log, trace request to iis 5 windows xp) fiddler don't saw it
2. How to see request from gmail to my site 3.Do y have rss samle,wich work in gmail?</p>
http://stackoverflow.com/questions/319591/reading-non-standard-elements-in-a-syndicationitem-with-syndicationfeed4Reading non-standard elements in a SyndicationItem with SyndicationFeedJared2008-11-26T02:34:38Z2009-11-20T04:34:27Z
<p>With .net 3.5, there is a SyndicationFeed that will load in a RSS feed and allow you to run LINQ on it. </p>
<p>Here is an example of the RSS that I am loading:</p>
<pre><code><rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/">
<channel>
<title>Title of RSS feed</title>
<link>http://www.google.com</link>
<description>Details about the feed</description>
<pubDate>Mon, 24 Nov 08 21:44:21 -0500</pubDate>
<language>en</language>
<item>
<title>Article 1</title>
<description><![CDATA[How to use StackOverflow.com]]></description>
<link>http://youtube.com/?v=y6_-cLWwEU0</link>
<media:player url="http://youtube.com/?v=y6_-cLWwEU0" />
<media:thumbnail url="http://img.youtube.com/vi/y6_-cLWwEU0/default.jpg" width="120" height="90" />
<media:title>Jared on StackOverflow</media:title>
<media:category label="Tags">tag1, tag2</media:category>
<media:credit>Jared</media:credit>
<enclosure url="http://youtube.com/v/y6_-cLWwEU0.swf" length="233" type="application/x-shockwave-flash"/>
</item>
</channel>
</code></pre>
<p>When I loop through the items, I can get back the title and the link through the public properties of SyndicationItem.</p>
<p>I can't seem to figure out how to get the attributes of the enclosure tag, or the values of the media tags. I tried using </p>
<pre><code>SyndicationItem.ElementExtensions.ReadElementExtensions<string>("player", "http://search.yahoo.com/mrss/")
</code></pre>
<p>Any help with either of these?</p>
http://stackoverflow.com/questions/1762987/iphone-formatting-an-nsdate0[iPhone] Formatting an NSDateMick Walker2009-11-19T12:35:14Z2009-11-19T12:49:11Z
<p>Hi, I am pulling data from an RSS Feed. One of the keys in the feed is is a string representing the date and time the item was created.</p>
<p>I am trying to convert this string value to an NSDate. The string value is returned from the RSS feed as: 2009-11-18T22:08:00+00:00</p>
<p>I tried the following code to no avail:</p>
<pre><code> NSDateFormatter *df = [[NSDateFormatter alloc] init];
[df setDateFormat:@"yyyyMMdd HH:mm"];
NSDate *myDate = [df dateFromString: [[storedDates objectAtIndex:indexPath.row] objectForKey: @"UsersDate"]];
</code></pre>
<p>Ideally; on top of converting the value to a NSDate value, I would also like to format it using the localised date format on the handset.</p>
<p>Any pointers would be a great help.</p>
<p>Kind Regards</p>
http://stackoverflow.com/questions/1762874/how-to-determine-whether-a-web-page-has-rss-or-not-in-c2How to determine whether a web page has RSS or not in C#Jack2009-11-19T12:12:31Z2009-11-19T12:22:43Z
<p>Hello all,</p>
<p>I have a task to do.</p>
<p>I need to download a web page and to see if the page contains any RSS feeds.</p>
<p>I know how to download a web page to string using Http APIs in C#, but how can I determine the http page string contains any RSS feeds or not?</p>
<p>Thanks</p>
<p>Jack</p>
http://stackoverflow.com/questions/1718025/sharepoint-anonymous-access-does-not-work-on-dispform-aspx-within-list0SharePoint anonymous access does not work on DispForm.aspx within liststrongopinions2009-11-11T20:58:18Z2009-11-18T19:53:06Z
<p>I have a MOSS site that uses anonymous access, which works everywhere I need it except on DispForm.aspx for a custom list.</p>
<p>Basically there is a custom list containing links to news articles on the internet. I have made the list available as an RSS feed, and you can pull up the feed itself just fine anonymously. However, the feed contains links to the individual items in SharePoint, e.g. /Lists/My List/DispForm.aspx?ID=23.</p>
<p>Anonymous users have "view items" access to the list in question and NT AUTHORITY\authenticated users Read access to the list and to the individual items in question. I tried it with Full Control too.</p>
<p>I tried adding a location exception in the web.config, i.e.</p>
<pre>
<location path="Lists/My%20List/DispForm.aspx">
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>
</pre>
<p>But that doesn't seem to help.</p>
<p>I checked the SharePoint log and I have this error:</p>
<pre>
PermissionMask check failed: asking for 0x00001000, have 0x00000000
</pre>
http://stackoverflow.com/questions/1226416/finding-the-content-of-html-section-document1Finding the content of HTML section documentRan2009-08-04T09:04:32Z2009-11-18T16:00:06Z
<p>This is not really a programming question, more of an algorithmic one.</p>
<p>The problem: Finding the "content" section of an HTML page. </p>
<p>By "content" I mean the dom that contains the page content as seen by humans, without the noise, simply the "page actual content".
I know the problem is not well defined, but let's continue...
For example in blog sites, this is is usually easy, when browsing to a specific post you usually have some toolbars at the top of the page, maybe some navigation elements on the LHS and then you have the div that contains the content. Trying to figure this out from the HTML can be tricky. Luckily, however, most blogs have RSS feeds and in the feed for this specific post you'd find a <description> section (or <content:encoded>) and this is exactly what you want.
So, to refine the definition of content, this is the actual thing on the page that contains the interesting part, removing all the ads, navigation elements etc.
So finding content from blogs is relatively easy, assuming they have RSS. Same goes for other RSS supportive sites.</p>
<p>What about news sites? In many cases news sites have RSS, but not always. How does one find content on news sites then?
What about more general sites? Many web pages (of course not all of them) have content section and other sections. Can you think of a good algorithm to find the sections that are "interesting" v/s the less interesting? Perhaps the sections that change from those that do not change?</p>
<p>Hope I've made myself clear... Thanks!</p>
http://stackoverflow.com/questions/1740173/are-there-any-legal-issues-while-extracting-content-from-rss-feeds0Are there any legal issues while extracting content from RSS feedsKalinga2009-11-16T05:08:12Z2009-11-17T09:53:18Z
<p>I would like to know whether these free SMS alert sites such as My Today SMS, Alertix pay for the sites such as religate, oneindia.in e.t.c, Or they just mention in their website that this service powered by <a href="http://www.oneindia.in/" rel="nofollow">Oneindia</a></p>
<p>What I would like to know is whether these people pay any royalty/monthly/annual fee for these religate/oneindia, by which I also mean, Are there any legal issues attached to extracting data from the RSS feeds these websites provide for services like free SMS alerts?</p>
<p>Please Let me know</p>
<p>Thanks inadvance</p>
http://stackoverflow.com/questions/1738276/how-do-i-use-regex-in-yahoo-pipes0How do I use Regex in Yahoo Pipes?Baabaa Barfi2009-11-15T18:03:24Z2009-11-15T18:03:24Z
<p>I am not Yahoo Pipes user but I do not know anything about programming.
I use Yahoo Pipes to generate RSS feeds from several websites that allow me to use their feeds on my site. What I need is to clean up these sites from all the unwanted styles like this:</p>
<pre><code><div style="font-family:Tahoma, Geneva, sans-serif;font-size:12px;direction:rtl;text-align:justify;">
</code></pre>
<p>I also need to remove some unwanted text from the titles and the content of the feeds. I think I need to use Regex for that, but I cannot figure out how. </p>
<p>How should I do that in Yahoo Pipes?</p>
http://stackoverflow.com/questions/1310796/update-rss-from-another-xml-file0Update RSS from another XML file?Andreas2009-08-21T08:51:11Z2009-11-15T06:00:03Z
<p>Hey. I am quite new to the whole web development/programming. I am trying to create an RSS feed which gets info from a separate XML file. </p>
<p>I know basics about XML and RSS, but I don't know how to make it updade. Lets say I update the XML then how would the RSS update automatically? Can someone maybe put me on the right track? Thanks in advance.</p>
http://stackoverflow.com/questions/1464543/rss-feeds-in-php1RSS feeds in PHPWrath2009-09-23T07:51:35Z2009-11-14T23:35:49Z
<p>Just wondering if someone could suggest a PHP library that would allow me to read the data of an RSS feed and write it to a MySQL database. Also, if possible, provide a link to documentation about how to do this?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1731524/is-there-a-way-to-display-javascript-content-in-blog-feeds0Is there a way to display javascript content in blog feedsrutherford2009-11-13T19:56:59Z2009-11-13T20:14:05Z
<p>Does RSS/Atom have a semi-official method of including active (read:javascript) content in it's items?</p>
<p>I know about RSS enclosures, but I'm presuming that's for true multimedia - ie mp3 and the likes.</p>
<p>Say I have a bit of remote javascript I want to include in my post to display a dynamic graph etc, can this be done? Or flash, etc for that matter?</p>
<p>And if possible, how many feedreaders would support rendering it? I guess all the ones with build in browser components would be ok with it, for example Omea Reader. The web-based ones I'm guessing would have issues though?</p>
http://stackoverflow.com/questions/1728373/how-do-i-set-up-an-additional-rss-feed-on-wordpress0How do I set up an additional RSS feed on WordPress?Angus2009-11-13T10:23:24Z2009-11-13T20:06:18Z
<p>I need to add an additional RSS2 feed to my <a href="http://en.wikipedia.org/wiki/WordPress" rel="nofollow">WordPress</a> site but I'm getting the following error when trying to access it by <a href="http://mysite.com/?feed=myfeed" rel="nofollow">http://mysite.com/?feed=myfeed</a>:</p>
<blockquote>
<p>"ERROR: gamesrss is not a valid feed template"</p>
</blockquote>
<p>I've created the template file and lumped it into the includes directory. What else do I need to do? </p>