RSS?

The hub of Aura activity, the cortex that binds the forum together.
Post Reply
User avatar
kaos
Noble Warrior
Posts: 4089
Joined: Mon Jun 14, 2004 3:09 pm
Location: Atlanta, Ga

RSS?

Post by kaos » Thu Dec 16, 2010 11:24 pm

anybody know how to do the RSS feed thing?

I'm putting a site together, and need to let people know when updates happen.
there a way I can manually type up a message and send it?

everything I've use so far that does rss just kinda does it without me.
User avatar
Chewi
Anti-Hero
Posts: 3521
Joined: Sat Jun 12, 2004 3:51 pm
Location: Edinburgh, Scotland

Re: RSS?

Post by Chewi » Thu Dec 16, 2010 11:32 pm

An ATOM or RSS feed is just a standardised XML file. It can be dynamically generated from database content so you don't usually have to update it manually. There's no reason why you can't but you'd have to make sure you get the markup 100% accurate. XML is very strict and doesn't cope with failure well. It's probably not a good idea. Are you building the site from scratch or is it based on something? You might want to read this.
User avatar
kaos
Noble Warrior
Posts: 4089
Joined: Mon Jun 14, 2004 3:09 pm
Location: Atlanta, Ga

Re: RSS?

Post by kaos » Fri Dec 17, 2010 1:19 am

complely from scratch.

http://www.johnnykaotic.com/sitemockup/gameportal3.html

I want to notify people when I change the "currently testing" bit

don't mind the unity webplayer
it doesnt work on purpose.

[EDIT]

Maybe I'm thinking of this the wrong way.

I just wanna update the rss to say "Hey a new test is running come check it out."
the twitter and facebook updates will say just about the same.
User avatar
Chewi
Anti-Hero
Posts: 3521
Joined: Sat Jun 12, 2004 3:51 pm
Location: Edinburgh, Scotland

Re: RSS?

Post by Chewi » Fri Dec 17, 2010 9:39 am

Then that's not really something you'd attach to the site itself. The closest example I can think of is Opera, who post to their blog when there's a preview version out. So why not just post to your blog? If you want a separate feed just for these announcements, Blogger lets you use labels.

That's not to say you can't have that nifty feed icon that appears in the browser. It doesn't matter that the feed is hosted somewhere else. Just put these tags in the header like this. There's two tags because Blogger supports ATOM and RSS.

Code: Select all

<link rel="alternate" type="application/atom+xml" title="Johnny Kaotic Announcements - ATOM" href="http://johnnykaotic.blogspot.com/feeds/posts/default/-/announcements" />
<link rel="alternate" type="application/rss+xml" title="Johnny Kaotic Announcements - RSS" href="http://johnnykaotic.blogspot.com/feeds/posts/default/-/announcements?alt=rss" />
User avatar
kaos
Noble Warrior
Posts: 4089
Joined: Mon Jun 14, 2004 3:09 pm
Location: Atlanta, Ga

Re: RSS?

Post by kaos » Fri Dec 17, 2010 8:36 pm

thanks for the info.
I'll probably see about integrating the blog completely...if that's possible.
Post Reply