<!-- Savannah - CVS short help about kerberos dev access -->
<!-- $Id: index_krb.txt,v 1.5 2004/01/31 00:56:17 yeupou Exp $ BEGIN -->

<h3>Developer CVS Access via Kerberos 5</h3>

<?php
// This file is part of the Savane project
// <http://gna.org/projects/savane/>
//
// $Id: index_krb.txt,v 1.5 2004/01/31 00:56:17 yeupou Exp $
// 
	global $project;
?>

<p>
Only project developers who also have a kerberos account on 
<?php
// This file is part of the Savane project
// <http://gna.org/projects/savane/>
//
// $Id: index_krb.txt,v 1.5 2004/01/31 00:56:17 yeupou Exp $
// print $project->getTypeBaseHost(); ?>
can access the CVS tree via this method, which gives write permission. 
CVS with GSSAPI support must be installed on your client 
machine (--with-gssapi --enable-encryption configure flags). Substitute
<i>developername</i> with the proper value.
</p>

<?php
// This file is part of the Savane project
// <http://gna.org/projects/savane/>
//
// $Id: index_krb.txt,v 1.5 2004/01/31 00:56:17 yeupou Exp $
//
	if ($project->CanUse("cvs")) {
		print '<h4>'._("Software repository").' :</h4>';
		print '<pre>cvs -z3 -d:gserver:&lt;<em>developername</em>&gt;@'.$project->getTypeBaseHost().':'.$project->getTypeDir("cvs").$project->getUnixName().' co &lt;<em>modulename</em>&gt;';
		print '</pre>';

		print '<h4>'._("Webpages repository").' :</h4>';
		print '<pre>cvs -z3 -d:gserver:&lt;<em>developername</em>&gt@'.$project->getTypeBaseHost().':'.ereg_replace('/$', "", $project->getTypeDir("homepage")).' co '.$project_homepage_module;
		print '</pre>';
	}
?>
<!-- $Id: index_krb.txt,v 1.5 2004/01/31 00:56:17 yeupou Exp $  END -->
