<?php
@header ("Expires: Sun, 16 Mar 2003 05:00:00 GMT");
@header ("Last-Modified: " . gmdate ("D, d M Y H:i:s") . " GMT");
@header ("Cache-Control: no-store, no-cache, must-revalidate");
@header ("Cache-Control: post-check=0, pre-check=0", false);
@header ("Pragma: no-cache");
include( "../include/output.inc.php" );
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title><?php print _("SVN Access Manager")." - ".$_SERVER['HTTP_HOST']; ?></title>
<meta name="GENERATOR" content="Quanta Plus">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15">
<link rel="stylesheet" href="../stylesheet.css" type="text/css" />
</head>
<body>
<div id="wrap">
<div id="header_login">
<div id="header_left">
<img src="../images/svn-access-manager_200_60_white.jpg" width="200" height="60" border="0" />
</div>
<div id="header_right">
<br /><h1><?php print _("SVN Access Manager Installation"); ?></h1>
</div>
<div id="subheader">
</div>
</div>
<div id="login">
<table>
<tr>
<td colspan="3"> </td>
<td> </td>
</tr>
<tr>
<td colspan="3"><h3><?php print _("Installation results"); ?></h3></td>
<td> </td>
</tr>
<tr>
<td colspan="3"><?php print _("Results of the installation process:"); ?></td>
<td> </td>
</tr>
<tr>
<td colspan="3">
<blockquote>
<?php
foreach( $tResult as $entry ) {
print "\t\t\t\t\t\t\t- ".$entry."<br />\n";
}
?>
</blockquote>
</td>
<td> </td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3">
<?php print _("You can now proceed to login to the application with the administrator user created during installation."); ?><br />
<?php print _("Click <a href='../' target='_self'>here</a> to go to the login screen."); ?>
</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3">
<?php print _("And don't forget to setup your apache webserver with a configuration similar to this:"); ?>
</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3">
<?php print <<<EOM
<----- snip -----><br />
<br />
Alias /svnstyle /var/www/apache2-default<br />
<br />
<Location /svn/repos><br />
<br />
DAV svn<br />
<br />
SVNParentPath /svn/repos<br />
<br />
AuthType Basic<br />
AuthName \"Subversion Repository\"<br />
AuthUserFile $tAuthUserFile<br />
Require valid-user<br />
<br />
AuthzSVNAccessFile $tSvnAccessFile<br />
<br />
SVNIndexXSLT /svnstyle/svnindex.xsl<br />
<br />
</Location><br />
<br />
CustomLog logs/svn.log \"%t %u %{SVN-ACTION}e\" env=SVN-ACTION<br />
<br />
<----- snip ----->
EOM;
?>
</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
</table>
</div>
</div>
<div id="footer">
<?php $datetime = strftime("%c"); ?>
<table width="100%" cellspacing="0" border="0" cellpadding="0">
<tr>
<td nowrap>
<?php print $CONF['copyright']; ?>
</td>
<td nowrap align="right">
<?php print $datetime; ?>
</td>
</tr>
</table>
</div>
</body>
</html>