<?php
/****************************************************************************************/
/* ACollab */
/****************************************************************************************/
/* Copyright (c) 2002-2005 Adaptive Technology Resource Centre / University of Toronto */
/* */
/* http://atutor.ca/acollab */
/* */
/* This program is free software. You may 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. */
/* */
/* 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 GNU General Public License for more details. */
/* */
/* You may access the GNU General Public License at: */
/* http://www.opensource.org/licenses/gpl-license.php */
/* */
/* You may contact the Adaptive Technology Resource Centre at */
/* Robarts Library, University of Toronto */
/* 130 St. George Street, Toronto, Ontario, Canada M5S 1A5 */
/* Further contact information is available at http://www.utoronto.ca/atrc/ */
/****************************************************************************************/
/* Programmer: */
/* Joel Kronenberg - ATRC */
/****************************************************************************************/
// $Id: step1.php 294 2005-01-17 18:27:03Z joel $
if (!defined('AC_INCLUDE_PATH')) { exit; }
if (isset($_POST['submit'])) {
if ($_POST['submit'] == 'I Agree') {
unset($_POST['submit']);
$step++;
unset($_POST['action']);
return;
} else {
header('Location: index.php');
exit;
}
}
print_progress($step);
?>
<p>ACollab is licensed under the terms of the <a href="http://atutor.ca/services/licensing_gpl.php" target="_new">GNU General Public License (GPL)</a>, which essentially allows for the free distribution and modification of ACollab. ACollab has its own license that governs its use outside the bounds of the GPL.</p>
<p>Please see <a href="http://atutor.ca/services/licensing.php" target="_new">ATutor.ca</a> for additional details.</p>
<p>If you do not agree to the Terms of Use then you may not install and use ATutor.</p>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" name="form">
<input type="hidden" name="action" value="process" />
<input type="hidden" name="step" value="1" />
<input type="hidden" name="new_version" value="<?php echo $new_version; ?>" />
<input type="submit" name="submit" class="button" value="I Agree" /> - <input type="submit" name="cancel" class="button" value="I Disagree" /><br />
</form>