Commit 3dcbf5310f32945651e9da2b075384cabc7d78eb
- Diff rendering mode:
- inline
- side by side
entry.py
(7 / 0)
|   | |||
| 293 | 293 | class BackTypeComment(Comment): | |
| 294 | 294 | pass | |
| 295 | 295 | ||
| 296 | class BlipFMUpdate(MicroBlogEntry): | ||
| 297 | pass | ||
| 298 | |||
| 296 | 299 | class DeliciousBookmark(SharedItem): | |
| 297 | 300 | """Delicious puts tags together, space separated.""" | |
| 298 | 301 | def get_tags(self): | |
| … | … | ||
| 382 | 382 | return cursor._rows[0][0] | |
| 383 | 383 | else: | |
| 384 | 384 | #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?""" | ||
| 385 | 389 | raise Exception("Cannot determine unqiue entry_id") | |
| 386 | 390 | ||
| 387 | 391 | class MySpaceBlogEntry(BlogEntry): |
feed.py
(3 / 0)
|   | |||
| 185 | 185 | class BackType(Comments): | |
| 186 | 186 | entryClass = entry.BackTypeComment | |
| 187 | 187 | ||
| 188 | class BlipFM(MicroBlog): | ||
| 189 | entryClass = entry.BlipFMUpdate | ||
| 190 | |||
| 188 | 191 | class Delicious(SharedItems): | |
| 189 | 192 | entryClass = entry.DeliciousBookmark | |
| 190 | 193 |

