Skip to content

Commit

Permalink
fix github_feed that was removed in merge
Browse files Browse the repository at this point in the history
  • Loading branch information
bernardobarreto committed Oct 8, 2011
1 parent 3f144d8 commit e8e8d72
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 3 additions & 0 deletions apps/members/models.py
Expand Up @@ -42,6 +42,9 @@ class Member(models.Model):
def github_link(self):
return "http://github.com/" + self.github

def github_feed(self):
return "http://github.com/" + self.github + ".atom"

def twitter_link(self):
return "http://twitter.com/" + self.twitter

Expand Down
1 change: 0 additions & 1 deletion site_media/javascripts/github_activities.js
Expand Up @@ -10,7 +10,6 @@ function parseRSS(url, callback) {
}

function placeActivities(feed) {
xunda = feed;
if (feed.entries.length > 0) {
$('div.github_activities span.text_highlight').show();
var div_activities = $('ul.activities');
Expand Down

0 comments on commit e8e8d72

Please sign in to comment.