Category: rss

Switching to Atom from RSS

I've added an Atom feed for this blog that carries complete xHTML content. The old RSS feed carries just simple text. I'll leave the RSS feed in place for the time being, but I will likely pull the plug on it in the future.

I've also created an Atom feed that carries just my Emacs-related content. This might be useful for anyone following mk-project happenings.

Both feeds should be auto-discoverable by your browser.

--Matt

Technorati tags for this post:

Creative Commons Metadata

This site is licensed under a Creative Commons Attribution License, and I wanted to mark each page to somehow indicate that fact. CreativeCommons.org recommends that we mark our pages using RDF data embedded in our HTML (commented out). However, embedding the RDF in each page has a few downsides:
  1. It increases the size of each page by a several hundred bytes.
  2. In xhtml pages, it potentially hides the copyright information from xml parsers.
As an alternative (which I didn't invent, I'm just describing), I link to the copyright information with metadata attributes to indicate its role. The pages on this site use 2 methods of specifying the copyright. In the <head> section, I included a <link> to the copyright URL with a rel="copyright" attribute. The copyright link type is defined in HTML4. For example:

<link rel="copyright" href="http://creativecommons.org/licenses/by/2.5/" />

The second method can be used within the body of the document. My footer section includes a link to the CC license. I added a rel="license" attribute to that link. The license relation is a common microformat.

To guarantee that search engines understand the licensing of my site, I ran a few of my URLs through Creative Commons License Validator tool. Everything checks out!

Finally, I also wanted my RSS feed to be covered by the CC license. There is a Creative Commons RSS Module defined for this purpose: you insert a


<cc:license>http://creativecommons.org/licenses/by/2.5/</cc:license>

line into the <channel> section of your feed. I use XML::RSS to generate my feeds (this is a mod_perl/HTML::Mason site) to generate my feed, so I added code like this (new code is bolded):

my $rss = new XML::RSS (version => '1.0'); 

# add the creative commons namespace
$rss->add_module(prefix=>'cc', uri=>'http://web.resource.org/cc/');

$rss->channel(
       title        => "littleredbat/mk: blog",
       link         => "http://www.littleredbat.net/mk/blog/",
       description  => "Matt Keller's Blog",
       dc           => { language => 'en-us', },
       cc           => { license => 'http://creativecommons.org/licenses/by/2.5/', },
     );

There you have it - my site has been CreativeCommonsIfied.

Technorati tags for this post:

< Future 10 | Past 10 >