Exemple #1
0
 * This file is part of GForge.
 *
 * GForge is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * GForge 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
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with GForge; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
require_once '../../env.inc.php';
require_once $gfwww . 'include/pre.php';
require_once $gfwww . 'project/admin/project_admin_utils.php';
$group_id = getIntFromRequest('group_id');
session_require(array('group' => $group_id, 'admin_flags' => 'A'));
project_admin_header(array('title' => _('History'), 'group' => $group_id));
?>

<p><?php 
echo _('This log will show who made significant changes to your project and when');
?>
.</p>
<?php 
echo show_grouphistory($group_id);
project_admin_footer(array());
Exemple #2
0
<?php

//
// SourceForge: Breaking Down the Barriers to Open Source Development
// Copyright 1999-2000 (c) The SourceForge Crew
// http://sourceforge.net
//
//
require_once 'pre.php';
require_once 'www/project/admin/project_admin_utils.php';
require_once 'www/project/export/project_export_utils.php';
require_once 'www/project/admin/project_history.php';
session_require(array('group' => $group_id, 'admin_flags' => 'A'));
if ($request->exist('export')) {
    export_grouphistory($group_id, $event, $subEvents, $value, $startDate, $endDate, $by);
    exit;
}
project_admin_header(array('title' => $Language->getText('project_admin_history', 'proj_history'), 'group' => $group_id));
echo $Language->getText('project_admin_history', 'proj_change_log_msg');
//for pagination
echo show_grouphistory($group_id, $offset, $limit, $event, $subEvents, $value, $startDate, $endDate, $by);
project_admin_footer(array());
<INPUT type="hidden" name="group_id" value="<?php 
print $group_id;
?>
">
<p>Home Box: <INPUT type="text" name="form_box" value="<?php 
print $row_grp['unix_box'];
?>
">
<p>HTTP Domain: <INPUT size=40 type="text" name="form_domain" value="<?php 
print $row_grp['http_domain'];
?>
">
<p><INPUT type="submit" name="Update" value="Update">
</FORM>

<p><a href="newprojectmail.php?group_id=<?php 
print $group_id;
?>
">[Send New Group Instruction Email]</a>

<?php 
// ########################## OTHER INFO
print "<hr><h3>Other Information</h3>";
print "<p>Registered: " . date($sys_datefmt, $row_grp['register_time']);
print "<p>Unix Group Name: {$row_grp['unix_group_name']}";
print "<p>Submitted Description:</p> <blockquote>{$row_grp['register_purpose']}</blockquote>";
print "<p>License Other: </p> <blockquote>{$row_grp['license_other']}</blockquote>";
echo '
<p>' . show_grouphistory($group_id);
site_admin_footer(array());