Custom Query (1174 matches)
Results (340 - 342 of 1174)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #866 | fixed | tour.html: typo | ||
| Description |
on: http://mediagoblin.org/pages/tour.html 'No compromises on taste'... "Just change the looks of MediaGoblin in any way you want _be_" <by> |
|||
| #868 | fixed | don't reload media page, use more ajax | ||
| Description |
i noticed this issue when i listened to a cool song, send a comment and the song stops playing because the page is reloaded. the same problem when you watch a video. this should be solved with the use of ajax for commenting, add to collection, on page edit of title, description etc like flickr or youtube. |
|||
| #874 | fixed | The core__privileges_users table has the foreign key columns reversed | ||
| Description |
The Here is the offending code: class PrivilegeUserAssociation(Base):
'''
This table holds the many-to-many relationship between User and Privilege
'''
__tablename__ = 'core__privileges_users'
privilege_id = Column(
'core__privilege_id',
Integer,
ForeignKey(User.id),
primary_key=True)
user_id = Column(
'core__user_id',
Integer,
ForeignKey(Privilege.id),
primary_key=True)
|
|||
