9f37d417f350deea60aeba6ed814eb9291c7936b
[www.jankratochvil.net.git] / project / captive / doc / Index.html.pl
1 #! /usr/bin/perl
2
3 # $Id$
4 # Captive project doc Index page Perl template.
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::doc::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 require "CGI";
31 use project::captive::doc::Macros;
32
33
34 My::Web->init(
35                 "__PACKAGE__"=>__PACKAGE__,
36                 "title"=>'Captive NTFS Developer Documentation',
37                 "head_css"=>$doc_Macros_head_css,
38                 );
39 My::Web->heading();
40
41
42 print <<"HERE";
43
44
45 <ul>
46
47 <li><a href="About.html.pl">About</a>
48         <ul>
49         <li><a href="About.html.pl#reasons">Reasons for the Implementation</a></li>
50         <li><a href="About.html.pl#challenges">Challenges of the Project</a></li>
51         <li><a href="About.html.pl#versions">Microsoft Windows Versions Compatibility</a></li>
52         </ul></li>
53
54 <li><a href="Architecture.html.pl">Architecture</a>
55         <ul>
56         <li><a href="Architecture.html.pl#existing_emulation">Existing Emulation Projects</a></li>
57         <li><a href="Architecture.html.pl#law">Laws and Licensing Conditions</a>
58                 <ul>
59                 <li><a href="Architecture.html.pl#law_servicepack">Microsoft Service Pack</a></li>
60                 </ul></li>
61
62         <li><a href="Components.html.pl">Project Components</a></li>
63
64         <li><a href="Reverse.html.pl">Reverse Engineering</a>
65                 <ul>
66                 <li><a href="Reverse.html.pl#dumpbin"><span class="productname">dumpbin.exe</span></a></li>
67                 <li><a href="Reverse.html.pl#WinDbg"><span class="productname">WinDbg</span> Windows NT kernel debugging</a>
68                         <ul>
69                         <li><a href="Reverse.html.pl#WinDbg_WinDbg"><span class="productname">WinDbg</span> side setup</a></li>
70                         <li><a href="Reverse.html.pl#WinDbg_kern">Setup of the side being kernel-debugged</a></li>
71                         </ul></li>
72                 </ul></li>
73         </ul></li>
74
75 <li><a href="Details.html.pl">Implementation Details</a>
76
77         <ul>
78         <li><a href="CacheManager.html.pl">NT Cache Manager</a>
79                 <ul>
80                 <li><a href="CacheManager.html.pl#TraceFS">TraceFS NT Cache Manager Tracer</a>
81                         <ul>
82                         <li><a href="CacheManager.html.pl#TraceFS_general">TraceFS for general API tracing</a></li>
83                         </ul></li>
84                 </ul></li>
85
86         <li><a href="Details.html.pl#emulmeth">Choice of the Emulation Methods</a>
87                 <ul>
88                 <li><a href="Details.html.pl#emulmeth_vm">Virtualmachine Running the Original W32 Subsystem</a></li>
89                 <li><a href="Details.html.pl#method_ntoskrnl">&quot;ntoskrnl.exe&quot; Inside Virtual Address Space</a></li>
90                 <li><a href="Details.html.pl#emulmeth_fs">Filesystem Driver Inside Virtual Address Space</a></li>
91                 </ul></li>
92         <li><a href="Details.html.pl#apichoice">API Function Implementation Choices</a></li>
93         <li><a href="Details.html.pl#sandbox">Sandboxing of W32 filesystem</a></li>
94         <li><a href="Details.html.pl#patched">&quot;patched&quot; vs. &quot;unpatched&quot; Libraries</a></li>
95         <li><a href="Details.html.pl#mman">Memory Management</a></li>
96         <li><a href="Details.html.pl#unicode">Unicode Strings and Characters</a></li>
97         <li><a href="Details.html.pl#binfmt">Supported Binary Formats</a></li>
98         <li><a href="Details.html.pl#mounted_one">At Most One Mounted Filesystem</a></li>
99         <li><a href="Details.html.pl#synchronous">Multithreading and Multiple Processors</a></li>
100         <li><a href="Details.html.pl#paranoia">Paranoia Checks</a></li>
101         <li><a href="Details.html.pl#logfile">STATUS_LOG_FILE_FULL</a></li>
102         <li><a href="Details.html.pl#parent_connector"><span class="constant">ParentConnector</span> volume remounter</a></li>
103
104         <li><a href="APITypes.html.pl">API Function Implementation Choices</a>
105                 <ul>
106                 <li><a href="APITypes.html.pl#functype_pass">Direct Pass to Original &quot;ntoskrnl.exe&quot;</a>
107                         <ul>
108                         <li><a href="APITypes.html.pl#functype_pass_fromunix">Pass from UNIX Code</a></li>
109                         <li><a href="APITypes.html.pl#functype_pass_fromw32">Pass from W32 Code</a></li>
110                         </ul></li>
111                 <li><a href="APITypes.html.pl#functype_wrap">Wrap of the Original "ntoskrnl.exe" Function</a>
112                         <ul>
113                         <li><a href="APITypes.html.pl#functype_wrap_fromunix">Wrapping of Call from UNIX Code</a></li>
114                         <li><a href="APITypes.html.pl#functype_wrap_fromw32">Wrapping of Call from W32 Code</a></li>
115                         </ul></li>
116                 <li><a href="APITypes.html.pl#functype_native">Native Implementation</a>
117                         <ul>
118                         <li><a href="APITypes.html.pl#functype_native_fromunix">Native Implementation Called from UNIX Code</a></li>
119                         <li><a href="APITypes.html.pl#functype_native_fromw32">Native Implementation of &quot;unpatched&quot;
120                                         Library Function Called from W32 Code</a></li>
121                         <li><a href="APITypes.html.pl#functype_native_fromw32_patched">Native Implementation of &quot;patched&quot;
122                                         Library Function Called from W32 Code</a></li>
123                         <li><a href="APITypes.html.pl#functype_native_reactos">Native Implementation
124                                         - <span class="productname">ReactOS</span></a></li>
125                         <li><a href="APITypes.html.pl#functype_native_wine">Native Implementation &ndash;
126                                         <span class="productname">Wine</span></a></li>
127                         <li><a href="APITypes.html.pl#functype_native_libcaptive">Native Implementation &ndash; Project Specific</a></li>
128                         </ul></li>
129                 <li><a href="APITypes.html.pl#functype_undef">Undefined Function</a></li>
130                 </ul></li>
131
132         <li><a href="CallType.html.pl">API Function Calling Conventions</a>
133                 <ul>
134                 <li><a href="CallType.html.pl#calltype_cdecl">W32 Calling Convention &quot;cdecl&quot;</a></li>
135                 <li><a href="CallType.html.pl#calltype_stdcall">W32 Calling Convention &quot;stdcall&quot;</a></li>
136                 <li><a href="CallType.html.pl#calltype_fastcall">W32 Calling Convention &quot;fastcall&quot;</a></li>
137                 </ul></li>
138         </ul></li>
139
140 <li><a href="TODO.html.pl#todo_fsck">TODO: Fsck of NTFS</a></li>
141 <li><a href="TODO.html.pl#todo_surprise">TODO: NTFS Support for <span class="productname">Partition Surprise</span></a></li>
142
143 <li><a href="Related.html.pl">Related Projects</a>
144         <ul>
145         <li><a href="Related.html.pl#LinuxNTFScompet">$LinuxNTFS</a></li>
146         <li><a href="Related.html.pl#NTPwd"><span class="productname">NTPwd NTFS Driver</span></a></li>
147         <li><a href="Related.html.pl#vmware">VMware Workstation</a></li>
148         <li><a href="Related.html.pl#wine">Wine Project</a></li>
149         <li><a href="Related.html.pl#ntfs98">NTFS for Windows 98</a></li>
150         <li><a href="Related.html.pl#ntfsdos">NTFSDOS Professional</a></li>
151         </ul></li>
152
153 <li><a href="LinuxNTFS.html.pl">Re: 7.7 Can't we write a wrapper for Windows' driver?</a></li>
154
155 </ul>
156
157
158 HERE
159
160
161 My::Web->footer();