package Favorites; # This metadata is separate from the historical database, so that the exact URL's can be changed at any # point (eg. especially if I want to change the "MyURL" value at some later point) # key should be LOWERCASE only our %favoriteWebsites = ( reddit => { SiteURL => "http://reddit.com/", MyURL => "http://all.reddit.com/user/interiot/", }, 'reddit wiki' => { SiteURL => "http://reddit.scribblewiki.com/", MyURL => "http://reddit.scribblewiki.com/Special:Contributions/Interiot", }, slashdot => { DisplayName => 'Slashdot', SiteURL => 'http://slashdot.org/', MyURL => 'http://slashdot.org/~interiot#users-lists', }, 'digg videos' => { DisplayName => 'Digg videos', SiteURL => 'http://digg.com/videos', MyURL => 'http://digg.com/users/interiot/videos/dugg', }, stumbleupon => { DisplayName => 'StumbleUpon', SiteURL => 'http://stumbleupon.com/', MyURL => 'http://interiot.stumbleupon.com/', }, wikipedia => { DisplayName => 'Wikipedia', SiteURL => 'http://en.wikipedia.org/', MyURL => 'http://en.wikipedia.org/wiki/Special:Contributions/Dawdler', }, ); our %favoriteOther = ( 'diane rehm show' => { DisplayName => 'NPR - The Diane Rehm Show', SiteURL => 'http://wamu.org/programs/dr/', Type => 'podcast', }, 'brian lehrer show' => { DisplayName => 'NPR - The Brian Lehrer Show', SiteURL => 'http://www.wnyc.org/shows/bl/', Type => 'podcast', }, ); 1;