Issue status update for http://drupal.org/node/29985 Post a follow up: http://drupal.org/project/comments/add/29985 Project: Drupal -Version: 4.6.3 +Version: cvs Component: other Category: feature requests Priority: normal Assigned to: Anonymous Reported by: mathiaz Updated by: gordon Status: patch (code needs review) This is really a new contribution. I would recommend reading Contributing to Drupal [1] and putting this into the contribution list. [1] http://drupal.org/node/10259 gordon Previous comments: ------------------------------------------------------------------------ Tue, 30 Aug 2005 03:26:56 +0000 : mathiaz Attachment: http://drupal.org/files/issues/bittorrent.module (7.17 KB) This is simple node type that handles bittorrent files. Users can upload bittorrent files (created via btmaketorrent.py for example). The module stores the uploaded file and the original filename into the drupal database. The bittorrent file can then be published and downloaded by users. The module needs its own table to store the filename and the file (as a blob) : CREATE TABLE `bittorrent_metainfo` ( `nid` int(10) unsigned NOT NULL default '0', `filename` varchar(255) NOT NULL, `metainfo_info` MEDIUMBLOB NOT NULL, PRIMARY KEY (`nid`) ) Let me know what you think about this simple module.