Custom Query (1173 matches)
Results (118 - 120 of 1173)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#448 | fixed | SQLAlchemy session error [was: JPG upload fails] | ||
Description |
After I had set up a completely fresh MediaGoblin development environment, started I can upload PNG files, though. (And I am using the PIL from the package manager of Ubuntu (12.04). ;)) |
|||
#450 | fixed | Theming support | ||
Description |
We should have proper theming support in MediaGoblin. We *kind of* have theming in MediaGoblin at present, but not really. Okay, so the things that are needed are really: Requirements:
ie, you don't want all .png and css files for a theme to be served by apache/nginx, so you might have a file with something like: location /mg_themes { alias /srv/mediagoblin/themes/static/; } and a line in mediagoblin.ini like: theme_install_dir = /srv/mediagoblin/themes/static/ People could possibly push theme static content to something like this with such a command: ./bin/gmg install_theme coolthemebro.tar.gz This might install the theme to something like: themes/ themes/templates/theme1/ themes/templates/theme2/ themes/static/theme1/ themes/static/theme2/
Questions:
|
|||
#451 | fixed | Convert all mongokit style .find, .find_one, .one calls over to SQLAlchemy queries | ||
Description |
Right now (esp thanks to Elrond) we managed to have a nice transitional period between Mongo and SQL by having mongokit like queries via .find() .find_one() and .one() reproduction for SQLAlchemy. But it's time to remove those from the codebase. We should start removing all instances of those and replacing them with proper queries. |