Commit e59d460982bdc671cb7dd0efaf70afc3da3eeb62
- Diff rendering mode:
- inline
- side by side
entry.py
(3 / 0)
|   | |||
| 370 | 370 | def get_content(self): | |
| 371 | 371 | return self.title | |
| 372 | 372 | ||
| 373 | class IdenticaFavorite(IdenticaUpdate): | ||
| 374 | pass | ||
| 375 | |||
| 373 | 376 | class LastFMPlay(SharedItem): | |
| 374 | 377 | """Summary info isn't relevant at all here.""" | |
| 375 | 378 | def parse(self): |
feed.py
(2 / 0)
|   | |||
| 229 | 229 | def parse(self): | |
| 230 | 230 | MicroBlog.parse(self) | |
| 231 | 231 | self.title = 'Identi.ca - ' + self.title | |
| 232 | class IdenticaFavorites(Favorites): | ||
| 233 | entryClass = entry.IdenticaFavorite | ||
| 232 | 234 | ||
| 233 | 235 | class LastFM(SharedItems): | |
| 234 | 236 | entryClass = entry.LastFMPlay |

