2004-06-09 19:09:16 +00:00
|
|
|
<?php
|
2003-08-19 06:44:58 +00:00
|
|
|
require_once("docutil.php");
|
|
|
|
page_head("Source code road map");
|
|
|
|
echo "
|
2002-09-10 17:04:05 +00:00
|
|
|
<p>
|
2005-06-08 23:55:21 +00:00
|
|
|
BOINC tree includes the following directories:
|
2003-08-19 06:44:58 +00:00
|
|
|
";
|
2005-06-08 23:55:21 +00:00
|
|
|
list_start();
|
|
|
|
list_item("RSAEuro",
|
|
|
|
"An RSA implementation (included for convenience; not covered
|
|
|
|
under the BOINC public license)."
|
|
|
|
);
|
|
|
|
list_item("api",
|
|
|
|
"The BOINC API (for applications)"
|
|
|
|
);
|
|
|
|
list_item("apps",
|
|
|
|
"Some test applications."
|
|
|
|
);
|
|
|
|
list_item("client",
|
|
|
|
"The BOINC core client."
|
|
|
|
);
|
|
|
|
list_item("db",
|
|
|
|
"The database schema and interface functions."
|
|
|
|
);
|
|
|
|
list_item("doc",
|
|
|
|
"HTML documentation files."
|
|
|
|
);
|
|
|
|
list_item("html/ops",
|
|
|
|
"PHP files for the operational web interface."
|
|
|
|
);
|
|
|
|
list_item("html/user",
|
|
|
|
"PHP files for the participant web interface."
|
|
|
|
);
|
|
|
|
list_item("lib",
|
|
|
|
"Code that is shared by more than one component
|
|
|
|
(core client, scheduling server, etc.)."
|
|
|
|
);
|
|
|
|
list_item("sched",
|
|
|
|
"The scheduling server, feeder, and file upload handler."
|
|
|
|
);
|
|
|
|
list_item("test",
|
|
|
|
"Test scripts."
|
|
|
|
);
|
|
|
|
list_item("tools",
|
|
|
|
"Operational utility programs."
|
|
|
|
);
|
|
|
|
list_end();
|
2003-08-19 06:44:58 +00:00
|
|
|
page_tail();
|
|
|
|
?>
|