aboutsummaryrefslogtreecommitdiff
path: root/plugins/video_multidownload/video_multidownload.module
AgeCommit message (Collapse)Author
2010-03-23removing old files and commenting new file field and other files to the ↵Heshan Wanigasooriya
vidoe module page.
2009-07-25Updating TODO and authorHeshan Wanigasooriya
2009-05-27updating 6--2 devHeshan Wanigasooriya
2009-04-27adding plugins to the HEADHeshan Wanigasooriya
2007-01-12Patch #108661 by omar (http://drupal.org/user/7909):Fabio Varesano
Adding Ogg Theora media type help links for video_multidownload Other minor fixes
2007-01-03First letter capitalization.Fabio Varesano
2006-11-05Patch #89065 by Moxide : Page not found error when trying to download other ↵Fabio Varesano
formats
2006-09-21Patch #82224 by vhmauery (http://drupal.org/user/28957)Fabio Varesano
Bring Video up to date with HEAD: updated all video modules to be used on next drupal 5.0
2006-06-20Changed check_url to check_plain in _video_get_fileurlFabio Varesano
in order to make mms:// or rstp:// links usable. Fixed some grammar errors on video_upload Thanks Darryl (http://drupal.org/user/64435) for pointing this out. Fixed an error on video_multidownload which generated a function undefined error. Moved some video_multidownload specific ssettings from video.module to video_multidownload Added global $user to video_access. Thanks kungfoo (http://drupal.org/user/65090) for pointing this out.
2006-06-19Some debugging for plugins.Fabio Varesano
Patch #69330 by geodan (http://drupal.org/user/37266) Allow users to edit own videos: This patch adds an 'edit own videos' permission to allow users to edit their own video nodes without having the 'administer nodes' privelage.
2006-06-19Corrected some XSS vulnerabilities.Fabio Varesano
Thanks to Dries Buytaert for pointing them out. Chænged '%d' to %d for Postgres SQL compatibility
2006-06-18List of changes:Fabio Varesano
Pluginization: Video.module file was too big and complex. I isolated each different feature which was not excencial and removed from the video.module file. Those features are now added by helper modules called plugins under the directory "plugins". The download has been separed from multidownload. There is now a separated plugin called video_multidownload which add multidownload feature. There are also some hooks being defined. See file hooks.php for details. XHTML Compliace: I worked hard to remove unvalid code from video module. Now the code generated by the module validates on W3C validator. This will probæbly generate some problems with uncommon browsers we will try to solve them as soon as reported. Thanks a lot to Karl Rudd who point me to the right direction towards compliace. Thumbnailing: There is plugin called video_image.module which add thumbnails support for the video module. Thumbnails are uploaded throught the video creation form and a image node is created with it. Video file Uploads: There is a plugin called video_upload.module which add a file upload field to the node creation form. The uploaded file is automatically set as path of the video. Then usable for plays/downloads. NOTE ON BUGS: I tryed to test new features the most as possible but I can't guarantee that all this code is bugfree. Video module is becaming too big to be tested by only one person (me). Hope you guys will be able to help with debugging. Fabio