Commit 3dcbf5310f32945651e9da2b075384cabc7d78eb

Added Blip.fm support
entry.py
(7 / 0)
  
293293class BackTypeComment(Comment):
294294 pass
295295
296class BlipFMUpdate(MicroBlogEntry):
297 pass
298
296299class DeliciousBookmark(SharedItem):
297300 """Delicious puts tags together, space separated."""
298301 def get_tags(self):
382382 return cursor._rows[0][0]
383383 else:
384384 #TODO: need to output warning and move on, not raise exception
385 #BAD BUG HERE
386 """ If I listen to the same song in a period of time
387 between database updates, rec_updated will be the same!
388 I think... but... then why has this never happened before?"""
385389 raise Exception("Cannot determine unqiue entry_id")
386390
387391class MySpaceBlogEntry(BlogEntry):
feed.py
(3 / 0)
  
185185class BackType(Comments):
186186 entryClass = entry.BackTypeComment
187187
188class BlipFM(MicroBlog):
189 entryClass = entry.BlipFMUpdate
190
188191class Delicious(SharedItems):
189192 entryClass = entry.DeliciousBookmark
190193