Christopher Allan Webber [Fri, 22 May 2015 15:04:30 +0000 (10:04 -0500)]
Updating AUTHORS for 0.8.0
Jim Campbell [Tue, 19 May 2015 06:54:50 +0000 (01:54 -0500)]
docs: Set paster service to start before celery
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.
Jim Campbell [Tue, 19 May 2015 06:50:07 +0000 (01:50 -0500)]
docs: Updated permissions. Tweaked install details
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.
Jim Campbell [Tue, 19 May 2015 02:19:42 +0000 (21:19 -0500)]
docs: Removed systemcl enable/start. Already issued.
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.
Jim Campbell [Tue, 19 May 2015 02:12:37 +0000 (21:12 -0500)]
docs: Need to start postgres on rpm distros
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.
Jim Campbell [Fri, 15 May 2015 23:37:21 +0000 (18:37 -0500)]
docs: Formatting tweaks to production-deployments.rst
Corrected typos and fixed rst formatting issues.
Christopher Allan Webber [Thu, 14 May 2015 03:43:35 +0000 (22:43 -0500)]
Switch from "cp --no-clobber" to "cp -n" for bsd compatibility
Jim Campbell [Tue, 12 May 2015 03:38:06 +0000 (22:38 -0500)]
docs: Added systemd info. Reworked init script info.
Added tested systemd service files. Modified the structure of the
section about init scripts.
Jim Campbell [Tue, 12 May 2015 02:16:30 +0000 (21:16 -0500)]
docs: Clean up nginx instructions
Made it more clear what commands to use if you're on deb/rpm-based system.
Added a note that shows the user how to test their nginx configuration.
Jim Campbell [Tue, 12 May 2015 01:41:01 +0000 (20:41 -0500)]
docs: Added 'sudo' to cmd. Made 'exit' from postgres acct more clear.
Added a missing reference to 'sudo' in a command. Made the exit from
the postgres account more clear to reduce the chance for user error.
Jim Campbell [Tue, 12 May 2015 01:15:08 +0000 (20:15 -0500)]
docs: Removed chkconfig cmd. Made 'exit' more explicit.
The chkconfig command is only needed on CentOS 6, which isn't really
a supported multimedia platform. CentOS 7 and Fedora 21+
wouldn't require this command.
Also made the "exit" command (used after setting up the postgres
mediagoblin account and database) more explicit. This will help prevent
user errors for users who may skim through the documentation.
Jim Campbell [Mon, 11 May 2015 18:05:10 +0000 (13:05 -0500)]
docs: Copy paste.ini to paste_local.ini
Some scripts on the internet have referenced paste_local.ini, so
it is safer to have a copy on the filesystem by default, even if
the user doesn't need to change any of the values for a regular
setup.
Jim Campbell [Mon, 11 May 2015 17:48:24 +0000 (12:48 -0500)]
docs: Typo fix. Fixed repated reference to gstreamer1.0-libav
Jim Campbell [Mon, 11 May 2015 17:44:14 +0000 (12:44 -0500)]
docs: Updated gstreamer audio media type requirements to gst-1.0
Previous media type docs referenced gstreamer0.10, but we've updated
to gstreamer1.0.
Also, Debian ships libav instead of ffmpeg now. Updated docs
accordingly
Finally, simplified the install instructions to two commands instead
of four commands.
Christopher Allan Webber [Tue, 28 Apr 2015 19:14:44 +0000 (14:14 -0500)]
Note on what --without-virtualenv does
Christopher Allan Webber [Mon, 27 Apr 2015 22:26:59 +0000 (17:26 -0500)]
#5314 Prevent ZeroDivisionError in exif.py
Christopher Allan Webber [Sat, 25 Apr 2015 02:10:25 +0000 (21:10 -0500)]
Paste 2.0 breaking wsgi
Christopher Allan Webber [Thu, 23 Apr 2015 19:10:47 +0000 (14:10 -0500)]
TinyMCE plugin loading should NOT be here.
This might break the blog plugin, but it's kind of broken already :\
Boris Bobrov [Thu, 19 Mar 2015 23:43:16 +0000 (02:43 +0300)]
Move check that metadata exists earlier
Because of gstreamer-1.0 we need to migrate from old format of storing
metadata to new one. It seems that there are cases when original
metadata is empty for some reason.
The patch adds an earlier check that original metadata exists, skipping
everything is it doesn't.
Closes bug 5071
Christopher Allan Webber [Thu, 23 Apr 2015 16:36:55 +0000 (11:36 -0500)]
#5074: Added set -e to bootstrap.sh
This should make it so that if any of the commands in the script fail,
the whole script fails.
Boris Bobrov [Thu, 19 Mar 2015 23:25:10 +0000 (02:25 +0300)]
fixed 5068
ayleph [Wed, 11 Mar 2015 06:39:18 +0000 (23:39 -0700)]
Redirect which stderr to /dev/null
Jim Campbell [Sun, 19 Apr 2015 17:39:05 +0000 (12:39 -0500)]
docs: Require nodejs-legacy on Debian-based systems. Remove un-needed text.
Per this announcement [0], Debian is using 'nodejs-legacy' as a
compatability package for what they used to call 'node'.
- Fixes bug 5080 [1].
Remove note about warning that users would no longer see.
[0] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=614907#108
[1] https://issues.mediagoblin.org/ticket/5080
Jim Campbell [Sun, 19 Apr 2015 17:26:11 +0000 (12:26 -0500)]
setup.py: Updated version requirement for 'requests'. Fixes 5313.
If we don't speficify a version for 'requests', Debian installs
v2.4.x, but there is an issue with urllib3 and pyopenssl in versions
prior to 2.6.0. This issue caused our installs to fail.
Updating our requirement to 2.6.0 or greater resolves this issue
and allows our installation processes to proceed normally.
`
Jim Campbell [Sun, 19 Apr 2015 17:01:10 +0000 (12:01 -0500)]
docs: Updated deployment docs to use sudo. Other various fixes.
- Use sudo instead of root user but give info on how to configure sudo.
- Changed docs to reference Jessie as the stable version of Debian
- Corrected the command to create the 'mediagoblin' system account
- Fixes https://issues.mediagoblin.org/ticket/5083
Christopher Allan Webber [Fri, 17 Apr 2015 22:09:06 +0000 (17:09 -0500)]
Merge branch 'stable'
Conflicts:
docs/source/siteadmin/deploying.rst
docs/source/siteadmin/relnotes.rst
Christopher Allan Webber [Fri, 17 Apr 2015 22:00:54 +0000 (17:00 -0500)]
Noting the possibility that users may need to update origin to Savannah
Boris Bobrov [Thu, 16 Apr 2015 17:14:39 +0000 (20:14 +0300)]
change git address to savannah's git
Christopher Allan Webber [Fri, 10 Apr 2015 19:10:37 +0000 (14:10 -0500)]
Don't forget to stop the processes, too!
Christopher Allan Webber [Fri, 10 Apr 2015 19:04:04 +0000 (14:04 -0500)]
Always be backing up
Boris Bobrov [Fri, 10 Apr 2015 22:02:08 +0000 (01:02 +0300)]
fix incorrect syntax in docs (bug 5310)
Christopher Allan Webber [Fri, 3 Apr 2015 20:46:10 +0000 (15:46 -0500)]
Whoops, fix --without-virtualenv's helptext
ayleph [Wed, 11 Mar 2015 05:24:20 +0000 (22:24 -0700)]
Use virtualenv set by configure
Christopher Allan Webber [Fri, 3 Apr 2015 11:19:49 +0000 (06:19 -0500)]
Remove the very strange "pybabel" entry point I added in 2011
Why did I do that, past self?
Jim Campbell [Tue, 31 Mar 2015 04:47:49 +0000 (23:47 -0500)]
docs: Removed note about installing from Clarified root/nonroot usage.
There was a note informing the user that they should be aware that we
encourage them to install from the *master* branch, but we no longer
do that. If they follow our deployment docs, they will pull in &
use the *stable* branch.
Also clarified some root / non-root system usage by either specifying
a leading *hash* symbol to indicate a root-based command, or a
dollar sign to indicate a non-root command.
Jim Campbell [Tue, 31 Mar 2015 04:40:01 +0000 (23:40 -0500)]
docs: Updated instructions re: Postgresql setup
Added information about needed packages for RPM-based systems,
and simplified instructions to rely on the root account rather than
sudo-based instructions.
If a user has sudo access, they can easily add "sudo" to the needed
commands.
Also added information about enabling postgres to start on boot
and how to start it for the current session.
Jim Campbell [Mon, 30 Mar 2015 01:10:39 +0000 (20:10 -0500)]
docs: Fixed typo - missing closing bracket in link in api.rst
Jim Campbell [Mon, 30 Mar 2015 00:40:36 +0000 (19:40 -0500)]
docs: Switched to 'useradd', as it is a more cross-distro cmd.
'adduser' is installed on Debian-based systems by default, but is
not installed by default on Fedora-based systems. 'useradd' is
installed by default on Debian-based systems, as well. The
'useradd'-based command provides the same functionality as
'adduser' in this case, though setting up a 'system' user with
no password.
Per bug 886, I've added the '--user-group' flag, which creates a
mediagoblin group, and assigns the mediagoblin user to this
group, too.
Jim Campbell [Sun, 29 Mar 2015 20:14:28 +0000 (15:14 -0500)]
docs: Fix bad link in api.rst. Fixes 1019
Fixed link in the docs/source/pluginwriter/api.rst file.
Resolves https://issues.mediagoblin.org/ticket/1019
Jim Campbell [Sun, 29 Mar 2015 18:39:09 +0000 (13:39 -0500)]
docs: Added npm/nodejs as a dependency. Also added automake.
These new dependencies are required as part of the 0.8 release.
Fixes https://issues.mediagoblin.org/ticket/5075
Christopher Allan Webber [Fri, 20 Mar 2015 01:44:49 +0000 (20:44 -0500)]
Merge branch 'stable'
Conflicts:
docs/source/siteadmin/deploying.rst
Christopher Allan Webber [Fri, 20 Mar 2015 01:38:07 +0000 (20:38 -0500)]
git clone from https instead of git:// because gitorious broke the latter
Boris Bobrov [Thu, 19 Mar 2015 23:35:52 +0000 (02:35 +0300)]
Proper handling of tags in skip_transcode
The function to retrieve tags was used incorrectly in skip_transcode,
assuming that str will be returned.
Now the code is aware of the return format of the function.
Closes bug 5065
Boris Bobrov [Sat, 7 Mar 2015 10:30:43 +0000 (13:30 +0300)]
Prevent exception on transcoding failure (bug 460)
Fix an unhandled exception when video fails to transcode for some
reason. Closes bug 460.
Jessica Tallon [Sat, 14 Mar 2015 08:40:51 +0000 (09:40 +0100)]
Fix #5036 - Add pip-selfcheck.json to .gitignore
Jakob Kramer [Sat, 7 Mar 2015 20:48:13 +0000 (21:48 +0100)]
wtforms.fields.TextField was deprecated
WTForms documentation:
> The TextField alias for StringField is deprecated.
Signed-off-by: Berker Peksag <berker.peksag@gmail.com>
Jaakko Luttinen [Mon, 20 Oct 2014 16:59:28 +0000 (19:59 +0300)]
Fix welcome image URL in the front page template (#902)
The Goblin image URL was hardcoded in the frontpage welcome
template. Now it correctly uses the static directory settings.
Signed-off-by: Berker Peksag <berker.peksag@gmail.com>
ayleph [Wed, 11 Mar 2015 05:41:20 +0000 (22:41 -0700)]
Correct version number
Signed-off-by: Jessica Tallon <jessica@megworld.co.uk>
ayleph [Wed, 11 Mar 2015 06:55:51 +0000 (23:55 -0700)]
Use UTC for all timesince comparisons
Signed-off-by: Jessica Tallon <jessica@megworld.co.uk>
Christopher Allan Webber [Thu, 5 Mar 2015 23:45:54 +0000 (17:45 -0600)]
Patch from breton: fix #5053 (gmg addmedia broken in 0.8.0)
Christopher Allan Webber [Thu, 5 Mar 2015 22:49:06 +0000 (16:49 -0600)]
Merge remote-tracking branch 'refs/remotes/breton/bug/647'
Christopher Allan Webber [Thu, 5 Mar 2015 21:04:25 +0000 (15:04 -0600)]
Committing extracted and compiled translations
Christopher Allan Webber [Thu, 5 Mar 2015 21:03:00 +0000 (15:03 -0600)]
Not sure why these changes never got pushed up ...
Boris Bobrov [Mon, 2 Mar 2015 13:44:13 +0000 (16:44 +0300)]
Fix bug 647
Reading a file into memory resulted in depletion of memory. Now files
are read and written lazily, by chunks.
Boris Bobrov [Wed, 25 Feb 2015 06:20:02 +0000 (09:20 +0300)]
init GStreamer on demand only
Closes-Bug: 5024
Christopher Allan Webber [Sun, 22 Feb 2015 20:47:33 +0000 (14:47 -0600)]
Switch docs over to suggest using bootstrap with configure and make
Christopher Allan Webber [Sun, 22 Feb 2015 19:10:40 +0000 (13:10 -0600)]
Drop Python2.6 support in configure.ac
Christopher Allan Webber [Sun, 22 Feb 2015 05:45:21 +0000 (23:45 -0600)]
Let's try setting up the version number via configure.ac
Why not?
Christopher Allan Webber [Sat, 21 Feb 2015 22:49:58 +0000 (16:49 -0600)]
Removing a lot of stuff from configure.ac that we aren't using
We could probably remove more, but this is a ~reasonable start.
Christopher Allan Webber [Sat, 21 Feb 2015 22:13:31 +0000 (16:13 -0600)]
No longer commit .mo files into the repository!
A stupid thing, really you should never commit binary code into the
repository, but...
This commit sponsored by Richard Fontana. The last sponsored commit!
And one I can imagine Fontana approving of, for he would've disapproved,
surely, of committing .mo files in the first place.
Christopher Allan Webber [Sat, 21 Feb 2015 21:47:33 +0000 (15:47 -0600)]
Make "make check" actually run tests
Christopher Allan Webber [Sat, 21 Feb 2015 21:35:30 +0000 (15:35 -0600)]
A more reliable test, check against expected keys, rather than received
If we check against expected, if we got more than we expected, that's
no problem :)
This commit sponsored by Adan Bolte. Thank you!
Christopher Allan Webber [Sat, 21 Feb 2015 21:08:30 +0000 (15:08 -0600)]
Seems we can get rid of that specific six version dependency!
Horray!
This commit sponsored by Rollo Moore. Thank you!
Christopher Allan Webber [Sat, 21 Feb 2015 21:07:51 +0000 (15:07 -0600)]
Stop looking for exact exif numbers
As the exif library adds data, this keeps breaking, which is silly. Maybe using
This commit sponsored by Mikaël Cluseau. Thank you!
Christopher Allan Webber [Sat, 21 Feb 2015 20:55:17 +0000 (14:55 -0600)]
Skip audio tests if scikits.audiolab not installed
Christopher Allan Webber [Wed, 18 Feb 2015 21:22:52 +0000 (15:22 -0600)]
Merge remote-tracking branch 'refs/remotes/breton/new_gst10'
Boris Bobrov [Wed, 18 Feb 2015 20:25:41 +0000 (23:25 +0300)]
added missing package to deployment instructions
Christopher Allan Webber [Wed, 18 Feb 2015 02:04:15 +0000 (20:04 -0600)]
Fix the token issues in the migration
There's no .id on access/request token tables, so fixed to use the .token field.
Also switched a reference of client_table -> rt_table
Christopher Allan Webber [Wed, 18 Feb 2015 01:44:58 +0000 (19:44 -0600)]
acess_token->access_token
Christopher Allan Webber [Wed, 18 Feb 2015 01:42:43 +0000 (19:42 -0600)]
Fixing typo: notifiction->notification
Christopher Allan Webber [Wed, 18 Feb 2015 01:42:11 +0000 (19:42 -0600)]
This one should be dt_to_utc, not db_to_utc, I believe
Christopher Allan Webber [Wed, 18 Feb 2015 00:06:29 +0000 (18:06 -0600)]
Removing cruft from the makefile
Christopher Allan Webber [Tue, 17 Feb 2015 23:55:00 +0000 (17:55 -0600)]
Clean up makefile, make `make docs` / `make info` actually work!
This commit sponsored by Alon Levy! Thank you, for everything!
Boris Bobrov [Tue, 17 Feb 2015 23:05:57 +0000 (02:05 +0300)]
Missing codecs processing with gst 1.4
Gst 1.4 deprecated DiscovererInfo.get_misc in favour of
DiscovererInfo.get_missing_elements_installer_details. Something in
Python bindings seems to be broken and get_misc seems to be not
deprecated but broken.
The change makes sniffer use the method if get_misc fails.
Christopher Allan Webber [Tue, 17 Feb 2015 22:58:39 +0000 (16:58 -0600)]
Add myself to the copyrights of Makefile.in
Christopher Allan Webber [Tue, 17 Feb 2015 22:46:55 +0000 (16:46 -0600)]
Clarify the "make clean" caution'ing
Christopher Allan Webber [Tue, 17 Feb 2015 22:35:40 +0000 (16:35 -0600)]
Proper cleanup of extlib with a make distclean
Also be sure to build the actual virtualenv target with a "make" if
that's how we're set up.
This commit sponsored by Pablo J. Urbano Santos. Thank you!
Christopher Allan Webber [Sat, 14 Feb 2015 22:49:08 +0000 (16:49 -0600)]
Fixing symlink to jquery.js in post-bower universe
This commit sponsored by Alexander Slovesnik. Thanks!
Christopher Allan Webber [Sat, 14 Feb 2015 22:45:46 +0000 (16:45 -0600)]
Fixing video-js symlink for new bower based checkout
This commit sponsored by Thorbjørn Lindeijer. Thank you!
Christopher Allan Webber [Sat, 14 Feb 2015 20:11:39 +0000 (14:11 -0600)]
Back to pdf.js from git submodules...
Christopher Allan Webber [Sat, 14 Feb 2015 19:39:12 +0000 (13:39 -0600)]
We're now installing through bower, so we can ignore package.json
Christopher Allan Webber [Sat, 14 Feb 2015 19:38:53 +0000 (13:38 -0600)]
ignore things we're now installing through extlib
Christopher Allan Webber [Sat, 14 Feb 2015 19:34:41 +0000 (13:34 -0600)]
Remove extlib deps moved into bower
Christopher Allan Webber [Sat, 14 Feb 2015 17:55:43 +0000 (11:55 -0600)]
Script and makefile adjustments for updating extlib
Christopher Allan Webber [Sat, 14 Feb 2015 17:42:41 +0000 (11:42 -0600)]
Add extlib-installing bower files
Asheesh Laroia [Sun, 8 Feb 2015 01:32:24 +0000 (17:32 -0800)]
wip
Asheesh Laroia [Sun, 8 Feb 2015 01:08:41 +0000 (17:08 -0800)]
Add initial package.json file with two dependencies
Christopher Allan Webber [Tue, 17 Feb 2015 21:38:34 +0000 (15:38 -0600)]
Add a "make docs" target
Jessica Tallon [Tue, 17 Feb 2015 13:25:57 +0000 (14:25 +0100)]
Officially drop support for Python 2.6 (see #966)
Boris Bobrov [Mon, 18 Aug 2014 02:09:53 +0000 (05:09 +0300)]
added missing import to video transcoding
Boris Bobrov [Mon, 11 Aug 2014 17:09:22 +0000 (21:09 +0400)]
added tests skipping if there is no proper gstreamer
Boris Bobrov [Fri, 8 Aug 2014 02:09:28 +0000 (06:09 +0400)]
Added multiple a-v streams handling
Before only single video stream files were suported.
This patch adds support for files with multiple video streams. Metadata
of such files is now correctly stored. This required change of the
schema used to store info and the change is done in a migration.
Boris Bobrov [Mon, 4 Aug 2014 07:59:37 +0000 (11:59 +0400)]
a tiny fix to function doc
Boris Bobrov [Sun, 27 Jul 2014 03:25:14 +0000 (07:25 +0400)]
Add new hook for two-step media type checking
Before uploaded media files were checked by extension. This led to
situations when a plugin can support file with specific extension but
doesn't due to lack of codecs, for example. Since the plugin reported
that it supports uploaded file type, the upload was being declared
successful, but transcoding failed.
The failures were not easy to debug.
The change adds a new hook that could allow two-step checking of the
content. The result of the hook execution returns a tuple with
media type name, manager and a callable sniffer, that can be used to
perform probably expensive checks of the content.
Also the change adds implementation of the hook for video.
Boris Bobrov [Sun, 20 Jul 2014 15:33:18 +0000 (19:33 +0400)]
updated function docs
Boris Bobrov [Fri, 20 Jun 2014 03:18:33 +0000 (07:18 +0400)]
added a/v submission testing
Boris Bobrov [Mon, 16 Feb 2015 02:05:41 +0000 (05:05 +0300)]
added docs about new gstreamer
Boris Bobrov [Fri, 13 Jun 2014 06:02:10 +0000 (10:02 +0400)]
Port of audio to GStreamer 1.0
Includes:
- transcoders
- thumbs
- tests
Boris Bobrov [Thu, 5 Jun 2014 11:42:12 +0000 (15:42 +0400)]
Porting video to GStreamer 1.0
Porting includes:
- thumbnailer
- transcoder
- metadata handling
- new common discoverer for media
- new tests with in-memory test video generating
- handling regardless of audio availability in the file
- Pythonic gst pipelines
Jessica Tallon [Tue, 13 Jan 2015 18:50:20 +0000 (18:50 +0000)]
Fix #1065 - Migrate from native datetimes to UTC