Custom Query (1173 matches)
Results (214 - 216 of 1173)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#475 | fixed | Checkbox for email notifications sits above its label | ||
Description |
On the "Changing account settings" page, the checkbox for email comment notifications looks like this: [✓] Email me when others comment on my media It should look like this: [✓] Email me when others comment on my media And clicking the label should check or uncheck the checkbox. To do this, the HTML should be changed from the current: <input type="checkbox"> <p>Email me when others comment on my media</p> To this: <label><input type="checkbox">Email me when others comment on my media</label> But I have no idea how to do this, because it's generated by WTForms. |
|||
#927 | fixed | Clean up Federation | ||
Description |
Elrond found some issues over his review of the federation code recently merged. These need fixing before 0.7.0. Garbage Collection
Feed Endpoint
Whoami Endpoint
MediaComment.unserialize
Mediagoblin INI/Config file
json_error
media_type/image: api_* upload utils
views.py security
view.py style
If any more issues are found please add them to this ticket. This is a rather large issue but most of the tasks in them are so small it doesn't warrant splitting them up. |
|||
#242 | FIXED | Closing storage objects | ||
Description |
As I don't have any simple way to test cloud storage, I'm filing this as a bug. 1. StorageObjectWrapper should have a close() method 2. ``process_media/__init__.py`` should use the real ``closing()`` function from ``contextlib`` instead of the current dummy one. I would also suggest to rename StorageObjectWrapper to include something about CloudFiles. |