| <?php  | 
 | 	set_include_path($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common" . PATH_SEPARATOR . $_SERVER['DOCUMENT_ROOT'] . "/projects" . PATH_SEPARATOR . get_include_path()); | 
 | 	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 | 
 | 	# | 
 | 	# Author: 		Igor Vinnykov | 
 | 	# Date:			2008-07-01 | 
 | 	# | 
 | 	# Description: Autogenerated for eclipse.org site pages from Eclipse IDE help | 
 | 	# | 
 | 	# | 
 | 	#**************************************************************************** | 
 | 	 | 
 | 	# | 
 | 	# Begin: page-specific settings.  Change these.  | 
 | 	$pageTitle 		= "Eclipse Subversive - Documentation"; | 
 | 	$pageKeywords	= "Subversive, Subversion, SVN, Team Provider, documentation, user guid"; | 
 | 	$pageAuthor		= "Igor Vinnykov"; | 
 | 		 | 
 | 	include("_projectCommon.php");    # All on the same line to unclutter the user's desktop' | 
 | 	 | 
 | 	# Paste your HTML content between the EOHTML markers!	 | 
 | 	$html = <<<EOHTML | 
 |  | 
 | 	<div id="midcolumn">	 | 
 | 	 | 
 | 	<h2>SVN Repository Dialog</h2> | 
 | 	 | 
 | 	<p> | 
 | 		This facility provides a probability to create a new repository on local drive.  | 
 | 		There are two kinds of file system type: File System and Berkley DB which the user can select. | 
 | 		There is option to create a repository location for just created repository which uses file:/// scheme (direct repository access).		  | 
 | 		Accessible from 'SVN Repository View' (click on 'New Repository' button). | 
 | 	</p> | 
 | 	<table cellpadding="1" cellspacing="0" border="0"> | 
 | 		<tr> | 
 | 			<td valign="top" align="left"> | 
 | 				<p align="left"> | 
 | 					<i> | 
 | 						<b>Note:</b> | 
 | 					</i> | 
 | 				</p> | 
 | 			</td> | 
 | 			<td valign="top"> | 
 | 				<p> | 
 | 					<i> | 
 | 						The Create Repository operation is available only for JavaHL SVN Connector.  | 
 | 						If the user selects SVN Kit connector the action is not enabled. | 
 | 					</i> | 
 | 				</p> | 
 | 			</td> | 
 | 		</tr> | 
 | 	</table> | 
 | 	<p>This is how <i>'Create Repository'</i> looks like:</p> | 
 | 	<img border = "0" src="../images/create_repository.png" alt="Create Repository dialog"/> | 
 | 	 | 
 | 	<br/> | 
 | 	<img border="0" src="../images/rel_tops.png" alt="Related topics"/> | 
 | 	<br/> | 
 | 	<a href="new_location_wiz.php">SVN Repository Location Wizard</a>	 | 
 | 	 | 
 |     </div> | 
 |      | 
 | EOHTML; | 
 |  | 
 |  | 
 | 	# Generate the web page | 
 | 	$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); | 
 | ?>	 |