Custom Query (1173 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (202 - 204 of 1173)

Ticket Resolution Summary Owner Reporter
#588 fixed Make profile editing URL consistent Christopher Allan Webber spaetz
Description

A users hompage is u/spaetz/, yet for editing the profile one has to visit edit/profile/. This is somewhat inconsistent and awkward. If people agree we could enable the profile page at u/spaetz/edit (plus keep the old location working or redirect from it).

#614 fixed Ability to swap app configuration for different unit tests Christopher Allan Webber Christopher Allan Webber
Description

We need the ability to load different app configurations for different types of tests.

This sounds easier than it is; technically we should be able to just have the function in mediagoblin.tests.tools that loads the mediagoblin app (get_app) just use a different configuration that we specify. However, it isn't that easy for SQLAlchemy reasons. We currently use the "cascading delete" feature in SQLAlchemy... however, if we load one "application" that has the video media type enabled, then that imports and sees the VideoData table. If we create another mediagoblin app instance without the video media type enabled, sqlalchemy will try to delete related entries during a cascading delete from the videodata table but won't be able to and will thus throw an exception.

There's one of two solutions to this:

  • Figure out how to fiddle with sqlalchemy's metadata information to add/remove the link manually.
  • Don't use sqlalchemy's built in cascading delete and roll our own instead. We could have models register themselves on a method's delete registry so that when deleted in our "manual cascading" pattern it'll be smart about it.

I'd like this fixed soon so we can start writing proper tests for plugins.

#622 fixed MediaGoblin outdated on PyPi Christopher Allan Webber warp
Description

http://pypi.python.org/pypi/mediagoblin/ is very outdated.

If the release process is documented that should probably include pushing to PyPi.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.