| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
| |
The * feels like it might confuse no-programmers.
|
| |
|
|
|
|
| |
Addresses #5592.
|
| |
|
|
|
|
|
|
| |
flup is not supported on Python3, so MediaGoblin doesn't have a supported way to enable FastCGI support.
This change removes all references to flup and FastCGI and updates deployment instructions to use simple HTTP forwarding with nginx to access mediagoblin's non-static resources.
|
| |
|
|
|
|
|
|
|
|
|
|
| |
In addition to side-stepping spectrograms completely in Python 3 in 1038aea8,
this commit adds some fallbacks that will help with potential issues in Python 2.
Fixes Issue #5457
Signed-off-by: Ben Sturmfels <ben@sturm.com.au>
Author: Jorge <mediagoblin@gybs.waa>
|
| |
|
|
|
|
|
| |
The `bulkupload` command expects "dc:title", rather than "dcterms:title".
Similar for description.
|
|
|
|
| |
This was partially addressed in eee3e41 but missed many items.
|
| |
|
| |
|
|
|
|
|
|
|
| |
Make the batchaddmedia command look for a 'collection-slug' column, that
for each row may specify the slug of a collection that the media should
be added to. This matches the '--collection-slug' argument of the
addmedia command.
|
|
|
|
|
|
| |
Commit c0ea2bad changed the expected location column header of csv files
used by the batchaddmedia command from 'media:location' to 'location'.
This change updates the docs to match.
|
| |
|
| |
|
| |
|
|\
| |
| |
| |
| |
| |
| |
| | |
Conflicts:
mediagoblin/submit/lib.py -- happened because of creator->actor
change
Fixes issue #915
|
| | |
|
| | |
|
| |
| |
| |
| | |
Fixes #5490
|
| | |
|
| |
| |
| |
| | |
Signed-off-by: Loic Dachary <loic@dachary.org>
|
| | |
|
| |
| |
| |
| | |
* doc/source/siteadmin/relnotes.rst: Add release notes for 0.9.0.
|
| |
| |
| |
| |
| |
| | |
* docs/source/devel/migrations.rst: Update to reflect sqlalchemy-migrate
as being deprecated and Alembic as being the new way of doing
migrations.
|
| |
| |
| |
| |
| |
| |
| | |
* docs/source/siteadmin/plugins.rst:
Added a reminder to run "./bin/gmg dbupdate" after installing a plugin.
Added a new "Deactivating plugins" section.
Renamed "Removing plugins" to "Removing plugin packages".
|
| |
| |
| |
| | |
* docs/source/pluginwriter/database.rst: New paragraph.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Things have gotten both easier and more complex in the branching world
view. Plugins branch off of main with their own migrations.
Generating these has become a bit easier, but the steps for doing this
are a bit wordy to explain.
* docs/source/pluginwriter/database.rst: Update both the
"Creating new Tables" and "Changing the Database Schema Later"
sections accordingly.
|
| |
| |
| |
| | |
Could be better, but "works" for now.
|
| |
| |
| |
| |
| | |
For more context, see:
http://joeyh.name/blog/entry/trademark_nonsense/
|
| |
| |
| |
| |
| |
| | |
Document the location of the config_spec.ini files for media_types.
Signed-off-by: Loic Dachary <loic@dachary.org>
|
| | |
|
|\ \ |
|
| | | |
|
| | | |
|
|/ /
| |
| |
| | |
See also Issue #5373
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The user_dev directory gets created when users get established
and they start uploading media. However, the permissions aren't
correct on the directory as it gets created.
As a workaround, we create the directory at this stage, and then
set the proper permissions.
See this mailing list post for more information:
http://lists.mediagoblin.org/pipermail/devel/2015-May/001201.html
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
Theoretically correct... I need to verify that the steps work as
expected
|
| |
| |
| |
| |
| |
| | |
For some reason, celery wouldn't start if I started it first.
Setting paster to start first. Celery starts just fine on initial run
after paster is running.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Added nginx to installation packages. We say that our install uses
nginx, so users should skip nginx if they want to use apache. Also,
our group permissions depend on a web server being installed.
Changed install directory for mediagoblin acct to /var/lib/mediagoblin
It works better if we need to back up data.
Assigned mediagoblin user to the same group as the web server. This
is needed so that the server can access uploaded media.
Created mediagoblin group for non-web-server things such as logs.
|
| |
| |
| |
| |
| |
| | |
Debian-based platforms start the postgres server by default after
installation. For RPM-based distros, we've already issued these
commands prior to configuring the postgres server.
|
| |
| |
| |
| |
| |
| |
| | |
Need to enable / start postgres database on rpm-based distros
before you create the postgres mediagoblin user and database.
If you don't start the database server, you can't create a
database user or database.
|