Custom Query (1173 matches)
Results (340 - 342 of 1173)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #904 | fixed | Errors in Deployment documentation | ||
| Description |
Found a couple small errors in the deployment documentation. First off, after running this command: sudo adduser --system mediagoblin This one doesn't do anything: sudo su - mediagoblin I believe the problem is that there's no shell for system users. The following worked for me: sudo su - mediagoblin -s /bin/bash Second, this line: mkdir -p /srv/mediagoblin.example.org && chown -hR mediagoblin:mediagoblin /srv/mediagobin.example.org has a typo on the final "mediagoblin" (missing 'l') and should be: mkdir -p /srv/mediagoblin.example.org && chown -hR mediagoblin:mediagoblin /srv/mediagoblin.example.org |
|||
| #905 | fixed | Create and use activities | ||
| Description |
Pump.io uses activities to represent when you post, comment, etc. We need to start storing the activities and using them on the feed API. This will involve introducing a new model and making it so commenting, deleting, uploading, etc. via either the API or the webUI creates and saves an activity. |
|||
| #906 | fixed | Sidebar info not showing up in media displays | ||
| Description |
In commit acfcaf6366bd4695c1c37c7aa8ff5a176b412e2a, block mediagoblin_sidebar was removed from user_pages/media.html Although, several media types rely on it to display extra information. I am supposing this was removed by accident, and not by design (which would, in some way, make sense since the commit is related to metadata stuff). I've written a patch to put the block back in place. Actually I've placed it before the media_sideinfo template hook. Anyway, this brings another discussion, since there are many different ways to "add" info to the sidebar: by extending the template, via template hooks, various includes and so on. Maybe we should have further thoughts and developments around this. |
|||
