#! /usr/bin/perl # # $Id$ # Definition of 'My::Project::captive' for list.cgi.pl # Copyright (C) 2003 Jan Kratochvil # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; exactly version 2 of June 1991 is required # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA package project::captive::ListItem; require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; }; our $CVS_ID=q$Id$; use strict; use warnings; use My::Web; our @ListItem=( "name"=>"Captive", "platform"=>"unixuser", "priority"=>666, "summary"=>"First free NTFS read/write filesystem for GNU/Linux", "license"=>"GPL", "maintenance"=>"active", "language"=>"i386 asm, C, Perl", "icon"=>"captive-install-acquire-icon", "cvs-of main tree"=>"captive", "cvs-of branched ".a_href('http://www.reactos.com/','reactos')." subdir"=>"reactos:captive", "cvs-of branched ".a_href('http://lufs.sourceforge.net/lufs/','lufs')=>"lufs:captive", "cvs-of 'httpcaptive://' method"=>"gnome-vfs-httpcaptive:captive", "cvs-of 'libntfs://' method"=>"ntfsprogs-gnomevfs", "description"=><<"HERE",

Project implements the first full read/write free access to NTFS disk drives. You can mount your Microsoft Windows NT, 200x or XP partition as a transparently accessible volume for your GNU/Linux.

This compatibility was achieved in the @{[ a_href 'http://www.winehq.com/','Wine' ]} way by using the original Microsoft Windows ntfs.sys driver. It emulates the required subsystems of the Microsoft Windows kernel by reusing one of the original ntoskrnl.exe, @{[ a_href 'http://www.reactos.com/','ReactOS' ]} parts, or this project's own reimplementations, on a case by case basis. Project includes the first open source MS-Windows kernel API for Free operating systems. Involvement of the original driver files was chosen to achieve the best and unprecedented filesystem compatibility and safety.

As opposite to other projects this is currently the only software supporting the full read/write access including the possibility to create/delete files, modify directories etc.

HERE ); 1;