Custom Query (1168 matches)
Results (28 - 30 of 1168)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#727 | fixed | ./setup.py install broken because of missing packages | ||
Description |
right now the setuptools variable packages only includes 'mediagoblin'. This causes './setup.py install' or './setup.py build' to only pull in things that are in the package 'mediagoblin$', and nothing else, like mediagoblin.* |
|||
#1050 | fixed | .mo files should not be in the repo | ||
Description |
Only .po files should be there. .mo files can be generated on various stages, including package building or setup.py installation. https://www.mail-archive.com/openstack-dev@lists.openstack.org/msg00872.html can be used as a starting point for investigation how to do it; I also saw other openstack fellas doing it. |
|||
#1078 | fixed | /api/user/<user>/inbox gives error 500 | ||
Description |
Error - <type 'exceptions.AttributeError'>: 'list' object has no attribute 'order_by' URL: http://mediagoblin.jonash.local/api/user/kabniel/inbox File '/srv/mediagoblin.local/mediagoblin/local/lib/python2.7/site-packages/Paste-1.7.5.1-py2.7.egg/paste/exceptions/errormiddleware.py', line 144 in __call__ app_iter = self.application(environ, sr_checker) File '/srv/mediagoblin.local/mediagoblin/mediagoblin/app.py', line 342 in __call__ return self.call_backend(environ, start_response) File '/srv/mediagoblin.local/mediagoblin/local/lib/python2.7/site-packages/Werkzeug-0.9.6-py2.7.egg/werkzeug/wsgi.py', line 588 in __call__ return self.app(environ, start_response) File '/srv/mediagoblin.local/mediagoblin/mediagoblin/app.py', line 276 in call_backend return self._finish_call_backend(request, environ, start_response) File '/srv/mediagoblin.local/mediagoblin/mediagoblin/app.py', line 318 in _finish_call_backend response = controller(request) File '/srv/mediagoblin.local/mediagoblin/mediagoblin/decorators.py', line 427 in wrapper return controller(request, *args, **kwargs) File '/srv/mediagoblin.local/mediagoblin/mediagoblin/federation/views.py', line 163 in inbox_endpoint inbox = inbox.order_by(Activity.published.desc()) AttributeError: 'list' object has no attribute 'order_by' |