Custom Query (1174 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (310 - 312 of 1174)

Ticket Resolution Summary Owner Reporter
#432 fixed Upload media button should be more visible Jef van Schendel Christopher Allan Webber
Description

Since moving things over to the user dropdown menu (which is generally great!) one bad thing has happened, which is that the "add media" button we used to have has disappeared. Users who used to probably know where to look for that button now might have no idea where to find how to upload media, since it's basically "hidden".

We should probably keep this one item in its former position. All other items make sense to exist in the user dropdown menu!

#1074 duplicate Upload audio to GNU MediaGoblin via the API Jessica Tallon
Description

Currently it's not possible to upload audio to GNU MediaGoblin via the API, this would be very useful. Activity Streams 1.0 does support audio they should look something like:

{
    "id": "https://gmg.site.tld/api/audio/someid",
    "objectType": "audio",
    "displayName": "Title of this audio",
    "embedCode": "<html><to><embed></embed></to></html>",
    "stream": {
        "url": "https://gmg.site.tld/path/to/audio.ogg",
    },
    "author": {
        "id": "acct:someone@gmg.site.tld",
        ...
    },
    "url": "https://gmg.site.tld/html/version/for/users/click"
}

Pump.io does look like it is able to store audio, they have the model which is here. This defines:

They also have all the usual properties possible on a object and can be interacted as such (liking, commenting, etc.)

#972 fixed Upgrade system python Elinvention
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.

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