Custom Query (1173 matches)
Results (109 - 111 of 1173)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#94 | wontfix | exif data handling for users | ||
Description |
At some point, we will need to address exif data. I think it would be nice for the user to be able to access and search for their exif data, but we also want to be able to let the user scrub it before posting to their network. The best case is where the user has access to exif data by default and the viewer does not. Usecase 1: I want to search for all the photos from my trip to Greece 4 years ago using my exif data. Usecase 2: I do not want people to access the exif info for my kid's elementary school or my company's colo. Usecase 3: I want to see the exif info for last year's awesome mushroom foraging spot, but absolutely do not want it made public. Finely tuned control of exif data would represent a tangible feature that we could offer that is not offered by flickr. I don't have a strong opinion about how this would look on the back end. On the front end it should be very clear what's happening and the default should be to strip it out before posting so no one posts exif data unless they specifically choose to. |
|||
#218 | fixed | Announce only mailing list | ||
Description |
I'd like people to be able to get news from us without comments. The target is press and other busy, but interested, people who would get notes when we blog and **occasional** press type email from me. If there's an off the rack way to have the blogs contents converted via html2text or using a rss2email script, that's cool but otherwise I will write a 1-2 sentence abstract and include the blog link. I'd be the only poster on this list. People who sign up for it can't reply to the list. In the nitty gritty of permissions, it probably makes sense for Will and Chris to be able to post, but in practice, I don't picture you ever needing to post to that list. Deb |
|||
#972 | fixed | Upgrade system python | ||
Description |
After a system python upgrade, Mediagoblin won't be able to start any more because the local virtualenv python will still look for the old python modules (if I understood correctly). Mediagoblin will output errors like this and refuse to start: Traceback (most recent call last): File "./bin/gmg", line 9, in <module> load_entry_point('mediagoblin==0.7.1.dev', 'console_scripts', 'gmg')() File "/var/mediagoblin/mediagoblin/gmg_commands/__init__.py", line 108, in main_cli setup_func = import_component(command_struct['setup']) File "/var/mediagoblin/mediagoblin/tools/common.py", line 34, in import_component __import__(module_name) File "/var/mediagoblin/mediagoblin/gmg_commands/shell.py", line 21, in <module> from mediagoblin.gmg_commands import util as commands_util File "/var/mediagoblin/mediagoblin/gmg_commands/util.py", line 18, in <module> from mediagoblin import app File "/var/mediagoblin/mediagoblin/app.py", line 20, in <module> from mediagoblin.routing import get_url_map File "/var/mediagoblin/mediagoblin/routing.py", line 19, in <module> from mediagoblin.tools.routing import add_route, mount, url_map File "/var/mediagoblin/mediagoblin/tools/routing.py", line 20, in <module> from werkzeug.routing import Map, Rule File "/var/mediagoblin/local/lib/python2.7/site-packages/Werkzeug-0.9.6-py2.7.egg/werkzeug/__init__.py", line 154, in <module> __import__('werkzeug.exceptions') File "/var/mediagoblin/local/lib/python2.7/site-packages/Werkzeug-0.9.6-py2.7.egg/werkzeug/exceptions.py", line 67, in <module> from werkzeug._internal import _get_environ File "/var/mediagoblin/local/lib/python2.7/site-packages/Werkzeug-0.9.6-py2.7.egg/werkzeug/_internal.py", line 15, in <module> from datetime import datetime, date ImportError: No module named datetime To update virtualenv python you can issue: virtualenv --system-site-packages <path/to/env> as mediagoblin user, where <path/to/env> is the path to your mediagoblin instance. |