Multimedia support - Commiting from a not yet finished state - Details below

* DONE Initially testing with arista
** DONE Video display templates
*** TODO Multi-browser support
** TODO Video thumbnails
** TODO Link to original video
** TODO Video cropping

Also contains a lot of "debug" print's
This commit is contained in:
Joar Wandborg
2011-09-23 02:35:57 +02:00
parent 9122a9d047
commit 93bdab9daa
13 changed files with 649 additions and 23 deletions

View File

@@ -29,6 +29,8 @@ from mediagoblin.decorators import (uses_pagination, get_user_media_entry,
from werkzeug.contrib.atom import AtomFeed
from mediagoblin.media_types import get_media_manager
@uses_pagination
def user_home(request, page):
@@ -113,9 +115,11 @@ def media_home(request, media, page, **kwargs):
comment_form = user_forms.MediaCommentForm(request.POST)
media_template_name = get_media_manager(media['media_type'])['display_template']
return render_to_response(
request,
'mediagoblin/user_pages/media.html',
media_template_name,
{'media': media,
'comments': comments,
'pagination': pagination,