0
votes
1answer
93 views

tt_news rss feed <link>

I'm trying to set up an RSS Feed through tt_news in Typo3: http://www.familieistzukunft.ch/home/?type=100 The Links in the RSS feed are not proper HTML. They turn up like this: <link ...
1
vote
1answer
479 views

Can I embed an atom feed in HTML5 with the <embed> tag?

I'd like to be able to display information from an atom feed embedded on a html webpage. I thought this might be possible with the HTML5 <embed> tag, something like: <object ...
0
votes
1answer
62 views

Easily extracting article text from an online publication

In recent versions of Safari, there is a "Reader" button that appears in the address bar on certain web pages. When you click this button, it will give you a text-only version of the article on the ...
1
vote
2answers
832 views

how to get the RSS url in an html page?

Many html page has an url link to the RSS feed. If you have used google reader, you'll see if you add a site url (i.e: codemacro.com), it will automatically find the rss feed url which is ...
0
votes
1answer
109 views

How to setup Atom 1.0 feed?

I'm brand new to Atom feeds. I'd like to set-up a basic feed. What url do I create (and call from my app?). How many documents do I need for my feed? Perhaps just the document containing xml like ...
0
votes
1answer
202 views

Twitter API Atom Aggregator with C#

My issue is that I have inherited the launch of a site which has a Twitter feed ticker placed as an absolute footer on the page. The administration has decided they do not want any retweets or ...
4
votes
5answers
2k views

Link to RSS/Atom feed, relative, doesn't work in Firefox

I have a weird problem. I generate a HTML page, hosted let's say at http://www.x.com/stuff which contains <head> <link type="application/atom+xml" rel="alternate" href="/stuff/feed"/> ...
1
vote
1answer
567 views

Distinguish between HTML/XHTML and plain text in a RSS description-element

Long version: Those familiar to the standardization nightmare of the RSS-family, may know that RSS does not provide you with information if for example the "description" element contains just plain ...
0
votes
2answers
126 views

Using and formating an RSS feed

Ok, here is my RSS feed link http://jacobnlsn.com/wordpress/?feed=rss. And I am looking to format it so it fits in the upper right hand spot of my header. My website is here http://jacobnlsn.com/. ...
4
votes
2answers
458 views

How To Tell Web Browsers About Atom Feeds

My website has an Atom feed and I want to make it easier to subscribe to it. I see that many sites such as StackOverflow have the Atom icon in the location bar in Firefox 3. I haven't, however, been ...
3
votes
1answer
361 views

IE7 missing Atom feed autodiscovery

I've been showing a website to a customer who insists on using IE and found out, to my surprise, that IE7 does not autodiscover the Atom newsfeed. The feed is linked to within the HEAD element of a ...
4
votes
3answers
2k views

adding html to my RSS/Atom feed in Rails

The default rails XML builder escapes all html so something like: atom_feed do |feed| @stories.each do |story| feed.entry story do |entry| entry.title story.title ...