Common subdirectories: video/CVS and video.new/CVS Common subdirectories: video/po and video.new/po diff -uN video/video.css video.new/video.css --- video/video.css 1970-01-01 01:00:00.000000000 +0100 +++ video.new/video.css 2005-09-13 16:28:05.000000000 +0200 @@ -0,0 +1,14 @@ +/* hides the second object from all versions of IE */ +* html object.mov { + display: none; +} + +/* displays the second object in all versions of IE apart from 5 on PC */ +* html object.mov/**/ { + display: inline; +} + +/* hides the second object from all versions of IE >= 5.5 */ +* html object.mov { + display/**/: none; +} \ No newline at end of file diff -uN video/video.module video.new/video.module --- video/video.module 2005-09-13 22:19:43.000000000 +0200 +++ video.new/video.module 2005-09-13 16:35:56.000000000 +0200 @@ -746,17 +746,35 @@ * string of content to display */ function theme_video_play_quicktime(&$node) { + + drupal_set_html_head(''); + + $height = $node->videoy + 16; //Increase the height to accommodate the player controls on the bottom. +/* $output = ' - '; + ';*/ + + $output = ' + + + + + Please download a QuickTime player for your browser/platform. + +'; + $output = _theme_video_format_play($output, t('http://www.apple.com/quicktime/download'), t('Link to QuickTime Download Page'), t('Download latest Quicktime Player')); + + + return theme('page', $output); }