37c39e130fb6c77d190280310e5e9c357db94b08
[www.jankratochvil.net.git] / project / captive / Index.html.pl
1 #! /usr/bin/perl
2
3 # $Id$
4 # Main page of 'My::Project::captive'
5 # Copyright (C) 2003 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
6
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; exactly version 2 of June 1991 is required
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
20
21 package project::captive::Index;
22 require 5.6.0;  # at least 'use warnings;' but we need some 5.6.0+ modules anyway
23 our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
24 our $CVS_ID=q$Id$;
25 use strict;
26 use warnings;
27
28 BEGIN{ open F,"Makefile"; our $top_dir=pop @{[split /\s/,(grep /^top_srcdir/,<F>)[0]]}; eval "use lib '$top_dir'"; close F; }
29 use My::Web;
30 Wuse 'My::Project';
31 Wuse 'project::captive::ListItem';
32
33
34 my $lang="";
35 do { $lang="de" if $_ && /^de/i; } for ($ENV{"HTTP_ACCEPT_LANGUAGE"});
36
37
38 my $W=My::Project->init_project(
39                 "__PACKAGE__"=>__PACKAGE__,
40                 "ListItem"=>\@project::captive::ListItem::ListItem,
41                 "no_project_data"=>1,
42                 "head_css"=>"
43 .reqpkg { font-style: italic; }
44 .stuff  { font-style: italic; font-size: larger; margin-left: 20%; margin-right: 10%; }
45 .re     { font-style: italic; }
46 table.mailman > * /* FIXME: What is it? */ > tr > th,
47 table.mailman > * /* FIXME: What is it? */ > tr > td { padding: 1ex; text-align: center; }
48 table.download td { padding: 8px; }
49 table.navigate td { padding-bottom: 1ex; padding-left: 15px; padding-right: 15px; }
50 ",
51                 "project_text_after_title"=>""
52                                 .($lang ne "de" ? "" : "<h1>Captive:"
53                                                 ." Das erste kostenlose Programm um auf ein NTFS Dateisystem unter GNU/Linux zu lesen und zu schreiben</h1>")
54                                 .'<table border="0" width="100%"><tr><td align="center">'
55                                         .'<table border="0" class="navigate"><tr>'
56                                                 .'<td>&bull;&nbsp;'.a_href('#download','Download').'</td>'
57                                                 .'<td>&bull;&nbsp;'.a_href('#news','NEWS').'</td>'
58                                                 .'<td>&bull;&nbsp;'.a_href('#testimonials','Testimonials').'</td>'
59                                                 .'<td>&bull;&nbsp;'.a_href('#notes','Installation Notes').'</td>'
60                                                 .'<td>&bull;&nbsp;'.a_href('#lists','Mailing Lists').'</td>'
61                                                 .'<td>&bull;&nbsp;'.a_href('#seealso','See Also').'</td>'
62                                         .'</tr></table>'
63                                 .'</td></tr></table>',
64                 ($lang eq "" ? () : ("force_charset"=>"utf-8")),
65                 );
66
67
68 print <<"HERE" if !$WebConfig::WebConfig{"no_job"};
69 @{[ vskip "3ex" ]}
70
71 <table border="0" width="100%"><tr><td align="center">
72         <table border="0" style="margin: 3ex; padding: 2ex; background: #bb8888;">
73                 <tr><td style="font-size: larger;">
74                         Looking for a challenging job: @{[ a_href $W->{"resume_url"},"My resume" ]}
75                 </td></tr>
76         </table>
77 </table>
78 HERE
79
80 my %version=(
81                 map(($_=>["1.1.4","0"]),qw(captive captive-lufs captive-install)),
82                 "lufs"=>["0.9.7","1captive8"],
83                 );
84
85 print <<"HERE";
86 <a name="download"><h2>Download</h2></a>
87
88 <h3>Choose the one preferred installation format:</h3>
89
90 <table border="0" align="center" width="100%"><tr><td align="center">
91 <table border="1" frame="border" rules="rows" align="center" style="text-align: center;" class="download">
92         <tr>
93                 <td>
94 HERE
95         if ($lang eq "") {
96                 print "RPM i386 binary<br />tested for distributions:";
97                 }
98         if ($lang eq "de") {
99                 print "RPM i386 Binärcode<br />getestet für den Betrieb unter:";
100                 }
101 print <<"HERE";
102                                         <table border="0"><tr><td align="left"><ul>
103                                                 <li>Red&nbsp;Hat&nbsp;9&nbsp;Shrike</li>
104                                                 <li>Red&nbsp;Hat&nbsp;8&nbsp;Psyche</li>
105                                                 <li>Mandrake&nbsp;9.1&nbsp;Bamboo</li>
106                                         </ul></td></tr></table>
107                 </td>
108                 <td>@{[ a_href 'dist/captive-static-'.$version{"captive"}[0].'-'.$version{"captive"}[1].'.i386.rpm',
109                                 undef(),"size"=>1,"basename"=>1 ]}</td>
110         </tr>
111         <tr>
112                 <td>
113 HERE
114         if ($lang eq "") {
115                 print ".tar.gz i386 binary<br />(for non-RPM distributions)";
116                 }
117         if ($lang eq "de") {
118                 print ".tar.gz i386 Binärcode<br />(für Linux Versionen ohne RPM z.B. Knoppix)";
119                 }
120 print <<"HERE";
121                                 </td>
122                 <td>@{[ a_href 'dist/captive-static-'.$version{"captive"}[0].'.tar.gz',undef(),"size"=>1,"basename"=>1 ]}</td>
123         </tr>
124         <tr>
125                 <td>Debian .deb binaries</td>
126                 <td>@{[ a_href 'CVS.html.pl#debian','download link' ]}</td>
127         </tr>
128         <tr>
129                 <td>Source archives</td>
130                 <td>@{[ a_href 'CVS.html.pl#source','download link' ]}</td>
131         </tr>
132 </table>
133 </td></tr></table>
134
135 @{[ vskip "3ex" ]}
136
137 <a name="news"><h2>NEWS</h2></a>
138
139 <dl>
140         <dt>captive-1.1.4 (2003-12-13) [@{[ a_href $W->{"project_viewcvs"}.'/*checkout*/captive/NEWS?rev=HEAD','archive' ]}]</dt>
141         <dd>
142                 <ul>
143                         <li>Unicode/UTF8 localized filenames conversion for GNU/Linux is now supported</li>
144                         <li>Various GNU/Linux distributions compatibility fixes</li>
145                         <li>Fixed omitted captive-install-acquire(1) --microsoft-com progress bar</li>
146                         <li>Fixed captive-install-acquire(1) --scan-disks* memory leaks (Steve Wampler)</li>
147                         <li>Fixed captive-install-acquire(1) --scan-disks* performance</li>
148                 </ul>
149         </dd>
150         <dt>lufs-0.9.7captive8 (2003-12-06) [@{[ a_href $W->{"project_viewcvs"}.'/*checkout*/lufs/NEWS.captive?rev=1.1.2.11','archive' ]}]</dt>
151 </dl>
152
153 @{[ vskip "3ex" ]}
154
155 <a name="testimonials"><h2>Captive NTFS Testimonials</h2></a>
156
157 <ul>
158         <li>Derek J Witt
159                 <p>I commend you for this project. I am currently using this on my XP NTFS
160                 partitions and I am impressed that I can actually move, edit, and remove files
161                 and directories with no apparent ill effects. This is very nice indeed.</p>
162                 <p>I initially was skeptical because it uses wine and parts of ReactOS
163                  (I have messed with this OS a few times), but you have proved me wrong. I have
164                 noticed no lag on my system.  I do notice the initial mounting process does
165                 take slightly longer than the Linux-NTFS project. But, once I'm past that, it's
166                 quite transparent.</p>
167                 <p><span style="font-style: italic;">[ technical question cut ]</span></p>
168         </li>
169         <li>James Van't Slot
170                 <p>Just wanted to drop you a note and say &quot;Excellent work!&quot;</p>
171                 <p>I just installed captive and it worked as advertized right out of the
172                 rpm.  Thanks, I've been holding off recompiling my kernel until NTFS is
173                 supported out of the box for Redhat.  Now I don't have to bother.</p>
174                 <p>Thanks again and keep up the great work.</p>
175         </li>
176 </ul>
177
178 @{[ vskip "3ex" ]}
179
180
181 <a name="notes"><h1>
182 HERE
183         if ($lang eq "") {
184                 print "Installation Notes";
185                 }
186         if ($lang eq "de") {
187                 print "Installationsanleitung";
188                 }
189 print <<"HERE";
190 </h1></a>
191 HERE
192         if ($lang eq "") {
193                 print <<"EOF";
194 <p>You should first run <b>captive-install-acquire</b> command to check your
195 available Microsoft Windows drivers versions. Now you can execute:</p>
196 EOF
197                 }
198         if ($lang eq "de") {
199                 print <<"EOF";
200 <p>Sie sollten als erstes den Befehl <b>captive-install-acquire</b>
201 ausführen um ihre Windows Treiber Version zu überprüfen. Nun können sie folgenden Befehl ausführen:</p>
202 EOF
203                 }
204 print <<"HERE";
205
206 <blockquote>
207         <p class="quote">
208                 # mkdir /mnt/dosc<br />
209                 # mount -t captive-ntfs /dev/hda1 /mnt/dosc
210         </p>
211 </blockquote>
212
213
214 HERE
215         if ($lang eq "") {
216                 print <<"EOF";
217 <h2>Overview</h2>
218
219 <p>Any errors from '<b>captive-lufs</b>' are written to '<b>/var/log/messages</b>'.</p>
220 <p>Needed drivers (at least ntoskrnl.exe+ntfs.sys) must be in '<b>/var/lib/captive</b>'.</p>
221 <p>'<b>captive</b>' package creates '<b>captive</b>' user and '<b>captive</b>' group on your system.</p>
222 EOF
223                 }
224         if ($lang eq "de") {
225                 print <<"EOF";
226 <h2>Übersicht</h2>
227
228 <p>Jegliche Fehler des '<b>captive-lufs</b>' werden im Ordner '<b>/var/log/messages</b>' aufgelistet.</p>
229 <p>Die Dateien ntoskrnl.exe und ntfs.sys müssen in den '<b>/var/lib/captive</b>'-Ordner kopiert werden.
230 (Empfehlendswert über ein Wechseldatenträger [CD-ROM, Diskette].)</p>
231 <p>Das '<b>captive</b>' Packet erstellt einen '<b>captive</b>' Benutzer und eine '<b>captive</b>' Gruppe auf Ihrem System.</p>
232 <p align="right" style="font-size: smaller;">Übersetzung von Botond Beres.</p>
233 EOF
234                 }
235 print <<"HERE";
236
237
238 <h2>LUFS Kernel Driver Module</h2>
239
240 <p>@{[ a_href 'http://lufs.sourceforge.net/lufs/','LUFS' ]} (Linux Userland File
241 System) needs Linux kernel module driver (<i>lufs.o</i>) compatible with your
242 running Linux kernel. The binary driver is supplied already precompiled for many
243 Linux kernel versions in the binary packages above (<b>.i386.rpm</b> and
244 <b>_i386.deb</b> archives).</p>
245
246 <p>If you cannot <b>mount</b>(8) your NTFS filesystem you should run <span
247 class="quote">/usr/share/lufs/prepmod</span> to see the reasons. It is always
248 recommended to upgrade to the latest stable kernel supplied by your GNU/Linux
249 distribution vendor. You may need to install package
250 <b>kernel-source</b> (Red Hat) or <b>kernel-headers</b> (Debian) matching your
251 Linux kernel version (<b>rpm&nbsp;-q&nbsp;kernel</b>) and re-run <span
252 class="quote">/usr/share/lufs/prepmod</span>.</p>
253
254 <p><b>WARNING:</b> This 'captive' package may modify your Linux kernel
255 sources matching your currently running kernel version. These minor
256 modifications may include a dependencies rebuild, compiling build tools, fixes of
257 several include files, etc. All the modifications are done at the mount(8) time
258 by the automatically executed <span class="quote">/usr/share/lufs/prepmod</span> script.
259 This behavior was not present in the original
260 @{[ a_href 'http://lufs.sourceforge.net/lufs/','LUFS' ]} distribution
261 by @{[ a_href 'http://www.malinux.net/main/','Florin Malita' ]}.</p>
262
263
264 HERE
265
266
267 print rightimg <<"HERE",'reactos','ReactOS',"a_href"=>'http://www.reactos.com/';
268         <h2>The First Open Source MS-Windows Kernel API for Free OS</h2>
269
270         <p>Compatibility with the existing binary Microsoft Windows file system drivers has been
271         reached. Microsoft Windows kernel system components required by these drivers
272         were analyzed and successfully emulated in the GNU/Linux operating system.
273         The project brings the Microsoft Windows kernel emulation framework to support even
274         other types of Microsoft Windows drivers in the future.
275         The <span class="productname">@{[ a_href 'http://www.reactos.com/','ReactOS' ]}</span>
276         code base proved to be a big asset for this functionality.</p>
277 HERE
278
279
280 my @lists=qw(captive-announce-list captive-list captive-devel-list);
281
282 print <<"HERE";
283
284 <a name="lists"><h2>Mailing Lists</h2></a>
285
286 <form action="@{[ top_dir("/Mailman.pl") ]}" method="post">
287         <table border="1" class="mailman" style="border-collapse: collapse; border-style: solid; border-width: 1px;">
288                 <tr>@{[ map('<th>'.$_.'@jankratochvil.net</th>',@lists) ]}</tr>
289                 <tr><td>New version announcements<br />
290                         (low traffic, recommended)</td>
291                                 <td>User support,<br />bug reports</td>
292                                 <td>Development</td>
293                                 </tr>
294                 <tr>@{[ map({ "<td>".a_href(&{$W->{"mailman_url_sub"}}()."listinfo/$_",'Mailman Infopage')."</td>"; } @lists) ]}</tr>
295                 <tr>@{[ map({ "<td>".a_href(&{$W->{"pipermail_url_sub"}}()."$_",'Archive')."</td>"; } @lists) ]}</tr>
296                 <tr>@{[
297                         map(('<td><input type="checkbox" name="list" value="'.$_.'"'
298                                         .($_ ne "captive-announce-list" ? '' : ' checked="checked"')
299                                         .' /> Subscribe?</td>'),@lists)
300                         ]}</tr>
301                 <tr><td colspan="3">
302                         <table border="0" style="text-align: left;">
303                                 <tr><td>Email address:            </td><td><input type="text"     name="email"   size="30" /></td></tr>
304                                 <tr><td>Your new Mailman password:</td><td><input type="password" name="pw"      size="15" /></td></tr>
305                                 <tr><td>Reenter your password:    </td><td><input type="password" name="pw-conf" size="15" /></td></tr>
306                         </table>
307                         <p><input type="submit" name="email-button" value="Subscribe me" /></p>
308                 </td></tr>
309         </table>
310 <input type="hidden" name="back" value="/project/captive/#lists" />
311 </form>
312
313
314 @{[ vskip "3ex" ]}
315
316 <a name="seealso"><h1>See Also</h1></a>
317 <ul>
318         <li>@{[ a_href 'Preview.html.pl','Technology Preview' ]}</li>
319         <li>@{[ a_href 'CVS.html.pl','Download Sources, CVS Repository' ]}</li>
320         <li>@{[ a_href 'doc/','Developer Documentation' ]}; highlights:<ul>
321                 <li>@{[ a_href 'doc/About.html.pl#versions','Microsoft Windows Versions Compatibility' ]}</li>
322                 <li>@{[ a_href 'doc/Architecture.html.pl#law','Laws and Licensing Conditions' ]}</li>
323                 <li>@{[ a_href 'doc/Details.html.pl#sandbox','Sandboxing of W32 Filesystem' ]}</li>
324                 <li>@{[ a_href 'doc/TODO.html.pl#todo_fsck','TODO: Fsck of NTFS' ]}</li>
325                 <li>@{[ a_href 'doc/TODO.html.pl#todo_surprise','TODO: NTFS Support for Partition Surprise' ]}</li>
326                 <li>@{[ a_href 'doc/Related.html.pl#LinuxNTFScompet','Related Projects - Linux NTFS' ]}</li>
327                 <li>@{[ a_href 'doc/Related.html.pl#vmware','Related Projects - VMware Workstation' ]}</li>
328                 <li>@{[ a_href 'doc/LinuxNTFS.html.pl',"Re: 7.7 Can't we write a wrapper for Windows' driver?" ]}</li>
329                 </ul></li>
330         <li>@{[ a_href $W->{"project_viewcvs"}.'/*checkout*/captive/TODO?rev=HEAD','Known Bugs' ]}</li>
331         <li>Man Pages<ul>
332                 @{[
333                         do {
334                                 my @mans=(
335                                                 'captive'=>[7,'Microsoft Windows NT kernel emulation for NTFS disk access'],
336                                                 'mount.captive'=>[8,'mount(8) interface for NTFS disk access'],
337                                                 'lufs-captivefs'=>[7,'Linux Userland File System module for NTFS as filesystem'],
338                                                 'captive-cmdline'=>[1,'Command-line client for captive(7) NTFS disk access'],
339 ###                                             'captive-sandbox-server'=>[1,'Security+safety wrapper for NTFS disk access'],
340                                                 'captive-install-acquire'=>[1,'Find MS Windows XP driver files for NTFS'],
341 ###                                             'captive-install-fstab'=>[1,'Manage captive-ntfs /etc/fstab entries'],
342                                                 );
343                                 my @r;
344                                 while (@mans) {
345                                         my $file=shift @mans;
346                                         my($section,$name)=@{shift @mans};
347                                         push @r,"<li>".a_href("man/$file.pod.html",$file)."($section) - $name</li>\n";
348                                         }
349                                 @r;
350                                 }
351                         ]}
352                 </ul></li>
353         <li>@{[ a_href 'Resources.html.pl','Related Pages' ]}</li>
354         <li>@{[ a_href 'Thanks.html.pl','Thanks' ]}</li>
355 </ul>
356 HERE
357
358
359 My::Web->footer();