aboutsummaryrefslogtreecommitdiff
path: root/INSTALL.txt
diff options
context:
space:
mode:
authorFabio Varesano <fax8@13637.no-reply.drupal.org>2006-06-18 14:41:32 +0000
committerFabio Varesano <fax8@13637.no-reply.drupal.org>2006-06-18 14:41:32 +0000
commitbff6fafe62a4201c99bdba20144313276d654bca (patch)
tree3f58c4adad06446274c6e842f9f9fb6155ba4b34 /INSTALL.txt
parent2540b23c26f79ed8b223d6ec8b00ca4bfc76e7ef (diff)
downloadvideo-bff6fafe62a4201c99bdba20144313276d654bca.tar.gz
video-bff6fafe62a4201c99bdba20144313276d654bca.tar.bz2
List of changes:
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
Diffstat (limited to 'INSTALL.txt')
-rw-r--r--INSTALL.txt21
1 files changed, 11 insertions, 10 deletions
diff --git a/INSTALL.txt b/INSTALL.txt
index b47cff8..e328a58 100644
--- a/INSTALL.txt
+++ b/INSTALL.txt
@@ -6,6 +6,7 @@ INSTALL INSTRUCTIONS FOR VIDEO.MODULE
- Copy video folder to modules/
- Login as site administrator
- Activate video.module as usual (administer->modules)
+- Activate optional plugin modules (called video_something)
- Set access control as you like (administer->access control)
- (optional) Activate video.module blocks (administer->blocks)
@@ -61,11 +62,11 @@ VIDEO UPDATE.PHP VERSION 2
video_bitrate int(11) default NULL,
audio_bitrate int(11) default NULL,
audio_sampling_rate int(11) default NULL,
- audio_channels enum('','stereo','mono') default NULL,
+ audio_channels enum('','stereo','mono') default NULL,
playtime_seconds int(11) default NULL,
PRIMARY KEY (nid)
) TYPE=MyISAM COMMENT='size is in bytes';
-
+
VIDEO UPDATE.PHP VERSION 3
--------------------------
@@ -81,7 +82,7 @@ VIDEO UPDATE.PHP VERSION 3
video_bitrate int(11) default NULL,
audio_bitrate int(11) default NULL,
audio_sampling_rate int(11) default NULL,
- audio_channels enum('','5.1','stereo','mono') default NULL,
+ audio_channels enum('','5.1','stereo','mono') default NULL,
playtime_seconds int(11) default NULL,
download_folder varchar(255) NULL default NULL,
disable_multidownload tinyint(1) NOT NULL default '0',
@@ -94,7 +95,7 @@ VIDEO UPDATE.PHP VERSION 3
custom_field_6 text NULL default NULL,
PRIMARY KEY (nid)
) TYPE=MyISAM COMMENT='size is in bytes';
-
+
VIDEO UPDATE.PHP VERSION 4
--------------------------
@@ -111,7 +112,7 @@ VIDEO UPDATE.PHP VERSION 4
video_bitrate int(11) unsigned default NULL,
audio_bitrate int(11) unsigned default NULL,
audio_sampling_rate int(11) unsigned default NULL,
- audio_channels enum('','5.1','stereo','mono') default NULL,
+ audio_channels enum('','5.1','stereo','mono') default NULL,
playtime_seconds int(11) unsigned default NULL,
download_folder varchar(255) NULL default NULL,
disable_multidownload tinyint(1) unsigned NOT NULL default '0',
@@ -124,7 +125,7 @@ VIDEO UPDATE.PHP VERSION 4
custom_field_6 text NULL default NULL,
PRIMARY KEY (nid)
) TYPE=MyISAM COMMENT='size is in bytes';
-
+
VIDEO UPDATE.PHP VERSION 5
--------------------------
@@ -142,7 +143,7 @@ VIDEO UPDATE.PHP VERSION 5
video_bitrate int(10) unsigned default NULL,
audio_bitrate int(10) unsigned default NULL,
audio_sampling_rate int(10) unsigned default NULL,
- audio_channels enum('','5.1','stereo','mono') default NULL,
+ audio_channels enum('','5.1','stereo','mono') default NULL,
playtime_seconds int(10) unsigned default NULL,
download_folder varchar(255) NULL default NULL,
disable_multidownload tinyint(1) unsigned NOT NULL default '0',
@@ -155,8 +156,8 @@ VIDEO UPDATE.PHP VERSION 5
custom_field_6 text NULL default NULL,
serialized_data text NULL default NULL,
PRIMARY KEY (vid)
- ) TYPE=MyISAM COMMENT='size is in bytes';
-
+ ) TYPE=MyISAM COMMENT='size is in bytes';
+
VIDEO UPDATE.PHP VERSION 6
--------------------------
@@ -173,7 +174,7 @@ VIDEO UPDATE.PHP VERSION 6
video_bitrate int(10) unsigned default NULL,
audio_bitrate int(10) unsigned default NULL,
audio_sampling_rate int(10) unsigned default NULL,
- audio_channels enum('','5.1','stereo','mono') default NULL,
+ audio_channels enum('','5.1','stereo','mono') default NULL,
playtime_seconds int(10) unsigned default NULL,
download_folder varchar(255) NULL default NULL,
disable_multidownload tinyint(1) unsigned NOT NULL default '0',