# HG changeset patch # User Atul Varma # Date 1247247852 25200 # Node ID 3f9cc6c21849a3120a8edce472d60543d285b72d # Parent 0921b3bb553dd61e1cf17ed20ae91b86da630d8a Fixed to support the new about:mozilla blog at http://blog.mozilla.com/about_mozilla/. diff -r 0921b3bb553d -r 3f9cc6c21849 about-mozilla.js --- a/about-mozilla.js Wed Apr 22 11:38:27 2009 -0700 +++ b/about-mozilla.js Fri Jul 10 10:44:12 2009 -0700 @@ -1,4 +1,4 @@ -var ATOM_URL = "https://developer.mozilla.org/devnews/index.php/feed/atom/"; +var ATOM_URL = "http://blog.mozilla.com/about_mozilla/feed/"; var MONTHS = ["January", "February", @@ -62,13 +62,7 @@ function(result) { var qs = new Querystring(); var issue = qs.get("issue", "0"); - var feeds = []; - jQuery.each( - result.feed.entries, - function() { - if (jQuery.inArray("about-mozilla", this.categories) != -1) - feeds.push(this); - }); + var feeds = result.feed.entries; var entry = feeds[issue]; $("#raw-issue").html(entry.content); var pubDate = new Date(entry.publishedDate);