|  | <?php  																														require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");	require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); 	require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); 	$App 	= new App();	$Nav	= new Nav();	$Menu 	= new Menu();		include($App->getProjectCommon());    # All on the same line to unclutter the user's desktop' | 
|  | #***************************************************************************** | 
|  | # template.php | 
|  | #**************************************************************************** | 
|  |  | 
|  | # | 
|  | # Begin: page-specific settings.  Change these. | 
|  | $pageTitle 		= "OSEE - User's Guide"; | 
|  | $pageKeywords	= "OSEE, Open, System, Engineering, Environment, Eclipse, Define, ATS, OTE, Application Framework"; | 
|  | $pageAuthor		= "Roberto E. Escobar"; | 
|  |  | 
|  | # Paste your HTML content between the EOHTML markers! | 
|  | $html = <<<EOHTML | 
|  |  | 
|  | <div id="midcolumn"> | 
|  | <h1>$pageTitle</h1> | 
|  |  | 
|  | <b><font color="red">Documentation moved to <a href="http://wiki.eclipse.org/OSEE">OSEE Wiki<a></font></b> | 
|  | <ol type="upper-roman"> | 
|  | <li><a href="overview/what_is.php">What is OSEE?</a></li> | 
|  | <li><b>Installation & Initialization</b></li> | 
|  | <ol type="lower-alpha"> | 
|  | <li><a href="installation/requirements.php">Requirements</a></li> | 
|  | <li><a href="installation/eclipse_install.php">Eclipse Installation</a></li> | 
|  | <li><a href="installation/supported_databases.php">Supported Databases</a></li> | 
|  | <ol type="lower-roman"> | 
|  | <li><a href="installation/derby_install.php">Derby Installation</a></li> | 
|  | <li><a href="installation/postgresql_install.php">PostgreSQL Installation</a></li> | 
|  | </ol> | 
|  | <li><a href="launch/launch_application_server.php">Launch Application Server</a></li> | 
|  | <li><a href="installation/db_init.php">Database Initialization</a></li> | 
|  | <li><a href="launch/osee_launch.php">Launch & Configuration</a></li> | 
|  | </ol> | 
|  | <li><b>System Overview</b></li> | 
|  | <li><a href="overview/components.php">Components</a></li> | 
|  | <ol type="lower-alpha"> | 
|  | <li><a href="overview/components.php#framework">Application Framework Component</a></li> | 
|  | <li><a href="overview/components.php#define">Define</a></li> | 
|  | <li><a href="overview/components.php#ats">Action Tracking System (ATS)</a></li> | 
|  | <ol> | 
|  | <li><a href="ats/ats.php">ATS Users Guide</a></li> | 
|  | <li><a href="ats/atsConfiguration.php">Configuring ATS for Change Tracking</a></li> | 
|  | </ol> | 
|  | <li><a href="overview/components.php#ote">Test Environment Component</a></li> | 
|  | </ol> | 
|  | <li><a href="">Architeture</a></li> | 
|  | <ol type="lower-alpha"> | 
|  | <li><a href="architecture/client_server_overview.php">Client/Server Overview</a></li> | 
|  | <li><a href="architecture/client_architecture.php">Client Architecture</a></li> | 
|  | <li><a href="architecture/server_architecture.php">Server Architecture</a></li> | 
|  | <li><a href="architecture/data_model.php">Data Model</a></li> | 
|  | </ol> | 
|  | <li><a href="/osee/screencasts.php">Screencasts</a></li> | 
|  | <li><a href="/osee/faq.php">FAQ</a></li> | 
|  | </ol> | 
|  |  | 
|  | <br/> | 
|  | <br/> | 
|  |  | 
|  | <h1>OSEE - Developer's Guide</h1> | 
|  | <ol type="upper-roman"> | 
|  | <li><a href="configuration/configandargs.php">Configuration and VM Arguments</a></li> | 
|  | <li><a href="configuration/dbconnection.php">Custom Database Connection Information</a></li> | 
|  | <li><a href="gettingStarted/concepts/TypeConfiguration.php">Data Model Customization</a></li> | 
|  | <li><a href="configuration/developmentRuntime.php">Configuration of a Development Runtime</a></li> | 
|  | <li><a href="ats/atsConfiguration.php">Configuring ATS for Change Tracking</a></li> | 
|  | </ol> | 
|  |  | 
|  | <h1>Needs Categorization</h1> | 
|  | <ul> | 
|  | <li><a href="ote/OSEE_Test_and_Simulation_Component.php">OSEE Test and Simulation Component</a></li> | 
|  | <li><a href="core/search/quick_search_view.php">Quick Search View</a></li> | 
|  | <li><a href="core/search/attribute_tagging.php">Attribute Tagging </a></li> | 
|  |  | 
|  | <li><a href="http://www.eclipse.org/osee/xviewer/">XViewer - Advanced TreeViewer Widget</a></li> | 
|  | </ul> | 
|  |  | 
|  | <h1>External References</h1> | 
|  | <li><a href="http://www.acq.osd.mil/jctd/articles/OTDRoadmapFinal.pdf">U.S. Department of Defense Open Technology Development</a></li> | 
|  |  | 
|  | </div> | 
|  |  | 
|  | EOHTML; | 
|  |  | 
|  |  | 
|  | # Generate the web page | 
|  | $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); | 
|  | ?> |