/WebSVN/index.php
1,8 → 1,6
<?php
# vim:et:ts=3:sts=3:sw=3:fdm=marker:
 
// WebSVN - Subversion repository viewing via the web using PHP
// Copyright © 2004-2006 Tim Armes, Matt Sicker
// Copyright (C) 2004-2006 Tim Armes
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
11,102 → 9,111
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// --
//
// index.php
//
// Main page. Lists all the projects
// Main page which lists all configured repositories (optionally by groups).
 
require_once("include/setup.inc");
require_once("include/svnlook.inc");
require_once("include/template.inc");
require_once 'include/setup.php';
require_once 'include/svnlook.php';
require_once 'include/template.php';
 
$vars["action"] = $lang["PROJECTS"];
$vars["repname"] = "";
$vars["rev"] = 0;
$vars["path"] = "";
$vars['action'] = $lang['PROJECTS'];
$vars['repname'] = '';
$vars['rev'] = 0;
$vars['path'] = '';
$vars['safepath'] = escape('');
$vars['showlastmod'] = $config->showLastModInIndex();
 
// Sort the repositories by group
$config->sortByGroup();
$projects = $config->getRepositories();
 
if ($config->flatIndex)
{
// Create the flat view
$projects = $config->getRepositories();
$i = 0;
$listing = array ();
foreach ($projects as $project)
{
if ($project->hasReadAccess("/", true))
{
$url = $config->getURL($project, "/", "dir");
$listing[$i]["rowparity"] = $i % 2;
$listing[$i++]["projlink"] = "<a href=\"${url}sc=0\">".$project->getDisplayName()."</a>";
}
}
$vars["flatview"] = true;
$vars["treeview"] = false;
if (count($projects) == 1 && $projects[0]->hasReadAccess('/')) {
header('Location: '.str_replace('&amp;', '', $config->getURL($projects[0], '', 'dir')));
exit;
}
else
{
// Create the tree view
$projects = $config->getRepositories();
reset($projects);
$i = 0;
$listing = array ();
$curgroup = NULL;
$parity = 0;
foreach ($projects as $project)
{
if ($project->hasReadAccess("/", true))
{
$listing[$i]["rowparity"] = $parity % 2;
$url = $config->getURL($project, "/", "dir");
if ($curgroup != $project->group)
{
# TODO: this should be de-soupified
if (!empty($curgroup))
$listing[$i]["listitem"] = "</div>\n"; // Close the switchcontent div
else
$listing[$i]["listitem"] = "";
 
$listing[$i]["isprojlink"] = false;
$listing[$i]["isgrouphead"] = true;
$curgroup = $project->group;
$listing[$i++]["listitem"] .= "<div class=\"groupname\" onclick=\"expandcontent(this, '$curgroup');\" style=\"cursor:hand; cursor:pointer\"><div class=\"a\"><span class=\"showstate\"></span>$curgroup</div></div>\n<div id=\"$curgroup\" class=\"switchcontent\">";
}
$i = 0;
$parity = 0; // Alternates between every entry, whether it is a group or project
$groupparity = 0; // The first project (and first of any group) resets this to 0
$curgroup = null;
$groupcount = 0;
 
$parity++;
$listing[$i]["isgrouphead"] = false;
$listing[$i]["isprojlink"] = true;
$listing[$i++]["listitem"] = "<a href=\"${url}sc=0\">".$project->name."</a>\n";
}
}
// Create listing of all configured projects (includes groups if they are used).
foreach ($projects as $project) {
if (!$project->hasReadAccess('/'))
continue;
 
if (!empty($curgroup))
$listing[$i]["isprojlink"] = false;
$listing[$i]["isgrouphead"] = false;
$listing[$i]["listitem"] = "</div>"; // Close the switchcontent div
$listvar = &$listing[$i];
// If this is the first project in a group, add an entry for the group.
if ($curgroup != $project->group) {
$groupcount++;
$groupparity = 0;
$listvar['notfirstgroup'] = !empty($curgroup);
$curgroup = $project->group;
$listvar['groupname'] = $curgroup; // Applies until next group is set.
$listvar['groupid'] = strtr(base64_encode('grp'.$curgroup), array('+' => '-', '/' => '_', '=' => ''));
 
$vars["flatview"] = false;
$vars["treeview"] = true;
$vars["opentree"] = $config->openTree;
// setting to null because template.php won't unset them
$listvar['projectlink'] = null;
$listvar['projectname'] = null;
$listvar['projecturl'] = null;
$i++; // Causes the subsequent lines to store data in the next array slot.
$listvar = &$listing[$i];
$listvar['groupid'] = null;
}
$listvar['clientrooturl'] = $project->clientRootURL;
 
// Populate variables for latest modification to the current repository
if ($config->showLastModInIndex()) {
$svnrep = new SVNRepository($project);
$log = $svnrep->getLog('/', '', '', true, 1);
 
if (isset($log->entries[0])) {
$head = $log->entries[0];
$listvar['revision'] = $head->rev;
$listvar['date'] = $head->date;
$listvar['age'] = datetimeFormatDuration(time() - strtotime($head->date));
$listvar['author'] = $head->author;
} else {
$listvar['revision'] = 0;
$listvar['date'] = '';
$listvar['age'] = '';
$listvar['author'] = '';
}
}
 
// Create project (repository) listing
$url = str_replace('&amp;', '', $config->getURL($project, '', 'dir'));
$name = ($config->flatIndex) ? $project->getDisplayName() : $project->name;
$listvar['projectlink'] = '<a href="'.$url.'">'.escape($name).'</a>';
$listvar['projectname'] = escape($name);
$listvar['projecturl'] = $url;
$listvar['rowparity'] = $parity % 2;
$parity++;
$listvar['groupparity'] = $groupparity % 2;
$groupparity++;
$listvar['groupname'] = ($curgroup != null) ? $curgroup : '';
$i++;
}
 
$vars["version"] = $version;
parseTemplate($config->getTemplatePath()."header.tmpl", $vars, $listing);
parseTemplate($config->getTemplatePath()."index.tmpl", $vars, $listing);
parseTemplate($config->getTemplatePath()."footer.tmpl", $vars, $listing);
if (empty($listing) && !empty($projects)) {
$vars['error'] = $lang['NOACCESS'];
sendHeaderForbidden();
}
 
?>
$vars['flatview'] = $config->flatIndex;
$vars['treeview'] = !$config->flatIndex;
$vars['opentree'] = $config->openTree;
$vars['groupcount'] = $groupcount; // Indicates whether any groups were present.
 
renderTemplate('index');