Skip to content

Instantly share code, notes, and snippets.

@slambert
Created May 20, 2013 17:02
Show Gist options
  • Save slambert/5613603 to your computer and use it in GitHub Desktop.
Save slambert/5613603 to your computer and use it in GitHub Desktop.
a sample RSS feed to flesh out how it would work
<?xml version="1.0"?>
<rss version="2.0">
<channel>
<title>Art Channel Name</title>
<link>http://museum.art/add-art/</link>
<description>Brief description of the venue providing the images.</description> <!-- limit what's displayed in the Add-Art interface to a couple sentences. -->
<image>http://museum.art/add-art/icon.png</image> <!-- a small, standarized size logo image for the organization. To be displayed in the interface. -->
<pubDate>Tue, 10 Jun 2003 04:00:00 GMT</pubDate> <!-- show in interface as 12 June '13 -->
<lastBuildDate>Tue, 10 Jun 2003 09:41:01 GMT</lastBuildDate> <!-- needed? -->
<docs>http://blogs.law.harvard.edu/tech/rss</docs>
<generator>Weblog Editor 2.0</generator> <!-- or, eventually, WordPress or whetever -->
<managingEditor>[email protected]</managingEditor> <!-- the show creator -->
<webMaster>[email protected]</webMaster> <!-- the channel administrator -->
<ttl>2880</ttl> <!-- How long to cache this show in minutes -->
<item>
<title>Art Show Title</title>
<link>http://museum.art/add-art/show-name/</link>
<description>This is a show description. It should be short with a link to more info. If the show is NSFW, it should say that here.</description>
<author>artist\@studio.net</author> <!-- artist or curator email -->
<enclosure>http://museum.art/add-art/files/images.jar</enclosure>
<pubDate>Tue, 03 Jun 2003 09:39:21 GMT</pubDate>
<guid>http://museum.art/2003/06/03.html#item573</guid>
</item>
<!--
<item>
[PREVIOUS SHOW]
</item>
<item>
[PREVIOUS SHOW]
</item>
<item>
[PREVIOUS SHOW]
</item>
-->
</item>
</channel>
</rss>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment