rss

How can I integrate Laconica update stream into SharePoint?

时光总嘲笑我的痴心妄想 提交于 2019-12-05 16:08:57
I have Laconica (self hosted twitter ) configured on my local intranet and would like to integrate the public stream into SharePoint site with a web part. How can I do this? spoon16 You can point an RSS Viewer web part at the laconi.ca public stream RSS feed and use this XSLT to ensure attractive output. Result screen shot: Screenshot of Laconica update stream in SharePoint Team Site http://friendfeed.s3.amazonaws.com/9e1759e689923f47ed4aa8721c9e104980db4b1c XSL transform: <xsl:stylesheet xmlns:x="http://www.w3.org/2001/XMLSchema" version="1.0" exclude-result-prefixes="xsl ddwrt msxsl

Get Full-Text Feed with Delphi

♀尐吖头ヾ 提交于 2019-12-05 15:54:44
I'm developing a Delphi program that reads the source of a feed through the component Indy idHTTP.. but the feed does not appear complete, appears only its summary, I mean the feed does not show the "content" tag. I think it is possible to get full-text feeds because I have found some sites on the Internet (like http://fulltextrssfeed.com/ ) that can show the full-text feed, even for feeds that show only the summary. What should I do to be able to read the full-text feed via Delphi? Is there a specific Delphi component to do this or can I do it with idHTTP? Any help will be very very

SyndicationItem.Content is Null

巧了我就是萌 提交于 2019-12-05 13:38:27
问题 I'm trying to pull the contents of an RSS feed into an object that can be manipulated in code. It looks like the SyndicationFeed and SyndicationItem classes in .NET 3.5 will do what I need, except for one thing. Every time I've tried to read in the contents of an RSS feed using the SyndicationFeed class, the .Content element for each SyndicationItem is null. I've run my feed through FeedValidator and have tried this with feeds from several other sources, but to no avail. XmlReader xr =

What's the best library for parsing RSS/Atom in Perl?

戏子无情 提交于 2019-12-05 13:11:52
问题 I notice that XML::RSS::Parser hasn't been updated since 2005. Is this still the recommended library for parsing RSS or Atom? Is there a better one or a better way? 回答1: I'm not sure it's ever been the "recommended library". If I know which kind of feed I need to parse, I use XML::RSS or XML::Atom as appropriate, but if (as is more likely) I just know it's a web feed, I use XML::Feed. Adding an example of using XML::Feed as requested.. use XML::Feed; my $feed = XML::Feed->parse(\$string

Building a Google Product Feed in .Net (C#)?

限于喜欢 提交于 2019-12-05 12:56:39
Below is the schema I am trying to conform to: <?xml version="1.0"?> <rss version="2.0" xmlns:g="http://base.google.com/ns/1.0"> <channel> <title>The name of your data feed</title> <link>http://www.example.com</link> <description>A description of your content</description> <item> <title>Red wool sweater</title> <link> http://www.example.com/item1-info-page.html</link> <description>Comfortable and soft ... cold winter nights.</description> <g:image_link>http://www.example.com/image1.jpg</g:image_link> <g:price>25</g:price> <g:condition>new</g:condition> <g:id>1a</g:id> </item> </channel> </rss>

iOS UIWebView of RSS to look more like Safari and stay inside app

别来无恙 提交于 2019-12-05 11:48:22
Im creating an RSS reader app...but I have noticed that UIWebView renders the RSS feed very differently than Safari does. This is the RSS feed... http://www.sigmapi2.org/index.php?option=com_ninjarsssyndicator&feed_id=2&format=raw This is what I want my UIWebView to look like...this is a screenshot from iOS' Mobile Safari NSURL *url = [NSURL URLWithString:@"http://www.sigmapi2.org/index.php?option=com_ninjarsssyndicator&feed_id=1&format=raw"]; NSURLRequest *request = [NSURLRequest requestWithURL:url]; [webView1 loadRequest:request];} produces a blank page in the UIWebView And this code below..

facebook rss - how to increase thumbs image size?

↘锁芯ラ 提交于 2019-12-05 10:35:58
I'm accessing a facebook-rss through http://www.facebook.com/feeds/page.php?format=rss20&id=... Update: Actual URL: http://www.facebook.com/feeds/page.php?format=rss20&id=170589069647190 However, the thumbs for the images are way to small. Is it possible to change the size of the tumbs with rss-arg or FB-page setting? (or should I get the FB-posts in another way) regards, You should use the Facebook Graph API for this, it's far more robust, versatile, and better maintained. Start at the /PAGE_ID/feed endpoint, so in your example /170589069647190/feed . (Play around in the explorer to test it)

Is it possible to get RSS archive

▼魔方 西西 提交于 2019-12-05 09:03:46
I know that rss feeds is news...Is it possible to get rss feed's from yesterday or day before yesterday...(more exactly, archive of rss feeds). No, the server decides what posts to feed you. Your RSS server might be configured to let you have more posts by supplying arguments to the feed url - but thats unlikely. 来源: https://stackoverflow.com/questions/2123918/is-it-possible-to-get-rss-archive

Xcode Get image url from rss feed

懵懂的女人 提交于 2019-12-05 06:54:01
问题 Newbie to Xcode and would be thrilled to get an answer to this question. I am trying to get the image url tag from a rss feed and add it to my custom table view cell. The other text I get fine. This is the rss row: <Item> <title>this is a title</title> <description>this is a description</description> <link>http://www.something.com</link> <pubDate>Fri, 09 Aug 2013</pubDate> <enclosure type="image/jpg" url="http://www.ThisIsTheUrlIWant.com" /> </item> This is part of my code without any image

Safely generating XML in Lua

冷暖自知 提交于 2019-12-05 04:58:34
问题 I'm writing a Lua application that generates an Atom feed. Right now, I'm generating XML "by hand" -- writing strings to files. This doesn't seem like the best way, although it may be. I am getting nervous about having the escaping exactly right. Has anyone done anything like this in Lua before? Should I stick with generating "by hand"? Or write a wrapper for an existing C library? (Perl, by comparison, seems to have a plethora of options.) 回答1: I've generated XML by hand too. I created an