Custom Query (1174 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (7 - 9 of 1174)

1 2 3 4 5 6 7 8 9 10 11 12 13
Ticket Resolution Summary Owner Reporter
#274 FIXED /auth/resend_verification/ crashes when not logged in Aaron Williamson Elrond
Description

Quite simple to reproduce:

Go to: http://omgmg.dyndns.org:6543/auth/resend_verification/ (if you're still logged in from testing, log out first)

File 'mediagoblin/auth/views.py', line 193 in resend_activation
  request.user[u'verification_key'] = unicode(uuid.uuid4())
TypeError: 'NoneType' object does not support item assignment
#292 duplicate Enable "favoriting" of media Aaron Williamson david kosata
Description

Users should be able to mark media entries as favorites by clicking a button/link in the entry detail view (and probably from gallery views as well). This change will likely require the creation of a new "UserFavorite" model with a structure like:

{'user': user_id, 'media_entry': media_entry_id, 'created': datetime.datetime.now()}

...and also a new field on MediaEntry containing a count of UserFavorites for that entry (to avoid expensive queries to generate this number dynamically for every request).

#87 FIXED Ability to create users from command line Alejandro Villanueva Christopher Allan Webber
Description

A script like:

./bin/gmg adduser <username> <password> <email>

is clearly needed.

We could also use:

./bin/gmg makeadmin <username>
./bin/gmg changepw <username>

for making an existing user an admin or changing a user's password.

1 2 3 4 5 6 7 8 9 10 11 12 13
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.