From fdfc4d875d446dc6d1bce368bc30be03915e1695 Mon Sep 17 00:00:00 2001 From: Fabio Varesano Date: Fri, 12 Jan 2007 16:35:40 +0000 Subject: Patch #108661 by omar (http://drupal.org/user/7909): Adding Ogg Theora media type help links for video_multidownload Other minor fixes --- plugins/video_ffmpeg_helper/video_ffmpeg_helper.info | 2 +- plugins/video_multidownload/video_multidownload.module | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'plugins') diff --git a/plugins/video_ffmpeg_helper/video_ffmpeg_helper.info b/plugins/video_ffmpeg_helper/video_ffmpeg_helper.info index 5799a90..f2ed8e6 100644 --- a/plugins/video_ffmpeg_helper/video_ffmpeg_helper.info +++ b/plugins/video_ffmpeg_helper/video_ffmpeg_helper.info @@ -1,5 +1,5 @@ ; $Id$ name = Video ffmpeg Helper description = Provide apis for ffmpeg. Simplify video nodes creation. -dependencies = video +dependencies = video video_upload package = "Video" diff --git a/plugins/video_multidownload/video_multidownload.module b/plugins/video_multidownload/video_multidownload.module index 25bbea7..992b852 100644 --- a/plugins/video_multidownload/video_multidownload.module +++ b/plugins/video_multidownload/video_multidownload.module @@ -260,7 +260,7 @@ function video_multidownload_download() { function theme_video_multidownload_download($node) { $output = ''; //Replace some common file types with full name and links. - $find = array('mov', 'wmv', 'rm', 'avi', 'zip', 'divx', 'flv'); + $find = array('mov', 'wmv', 'rm', 'avi', 'zip', 'divx', 'flv', 'ogg'); $replace = array('' . t('Quicktime') . '' , '' . t('Windows Media') . '' , '' . t('Real Media') . '' @@ -268,6 +268,7 @@ function theme_video_multidownload_download($node) { , '' . t('ZIP') . '' , '' . t('DIVX') . '' , '' .t('Flash FLV') . '' + , ''.t('Ogg Theora FAQ') .', ' . t('Ogg Theora help') . '' ); $output .= '
'; //Enclose all HTML in "videodownload" class. foreach($node->file_array as $file) { //Goes through the array of video files and gets them ready for display. -- cgit v1.2.3