#! /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"=>"NTFS filesystem, MS-Windows NT kernel emulation", "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",

The first full read/write access to NTFS disk drivers 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.

Involvement of the original driver files was chosen to achieve the best and unprecedented filesystem compatibility and safety.

HERE ); 1;