00001 <?php
00002 # This file is part of the Savane project
00003 # <http://gna.org/projects/savane/>
00004 #
00005 # $Id: basicinfo.php 5439 2006-02-19 13:00:17Z toddy $
00006 #
00007 # Copyright 1999-2000 (c) The SourceForge Crew
00008 # Copyright 2000-2003 (c) Free Software Foundation
00009 # Mathieu Roy <yeupou--at--gnu.org>
00010 #
00011 # Copyright 2004 (c) Mathieu Roy <yeupou--at--gnu.org>
00012 #
00013 # The Savane project is free software; you can redistribute it and/or
00014 # modify it under the terms of the GNU General Public License
00015 # as published by the Free Software Foundation; either version 2
00016 # of the License, or (at your option) any later version.
00017 #
00018 # The Savane project is distributed in the hope that it will be useful,
00019 # but WITHOUT ANY WARRANTY; without even the implied warranty of
00020 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
00021 # GNU General Public License for more details.
00022 #
00023 # You should have received a copy of the GNU General Public License
00024 # along with the Savane project; if not, write to the Free Software
00025 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
00026
00027 require "../include/pre.php";
00028 session_require(array('isloggedin'=>'1'));
00029 $HTML->header(array('title'=>_("Project Description and Dependencies")));
00030
00031 print '<h2>'._("Step 2: Project Description and Dependencies").'</h2>';
00032
00033 # get site-specific content
00034 utils_get_content("register/basicinfo");
00035
00036 print '<h3>'._("Project Purpose and Summarization").' :</h3>';
00037 print '<p><span class="error"><strong>'._("REQUIRED").':</strong> '._("Provide detailed, accurate description, with URLs").'.</span></p>';
00038
00039 print '<form action="projectname.php" method="post">';
00040 print '<input type="hidden" name="insert_purpose" value="y" />';
00041
00042
00043 if (isset($re_full_name))
00044 {
00045 echo '<input type="hidden" name="re_full_name" value="'.$re_full_name.'" />';
00046 }
00047 if (isset($re_unix_name))
00048 {
00049 echo '<input type="hidden" name="re_unix_name" value="'.$re_unix_name.'" />';
00050 }
00051 if (isset($re_license_other))
00052 {
00053 echo '<input type="hidden" name="re_license_other" value="'.$re_license_other.'" />';
00054 }
00055
00056 print '<p><textarea name="form_purpose" wrap="virtual" cols="70" rows="20">';
00057
00058 if (isset($re_purpose)) {
00059 print $re_purpose;
00060 } else {
00061 utils_get_content("register/basicinfo_description");
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073 }
00074 print '</textarea><br /></p>';
00075
00076
00077 print '<h3>'._("Software Dependencies").' :</h3>';
00078 # get site-specific content
00079 utils_get_content("register/basicinfo_software");
00080 print '<p><textarea name="form_required_sw" wrap="virtual" cols="70" rows="6">';
00081 if (isset($re_required_sw)) {
00082 print $re_required_sw;
00083 }
00084 print '</textarea><br /></p>';
00085
00086
00087 print '<h3>'._("Other Comments").' :</h3>';
00088 # get site-specific content
00089 utils_get_content("register/basicinfo_comments");
00090
00091 print '<p><textarea name="form_comments" wrap="virtual" cols="70" rows="4">';
00092 if (isset($re_comments)) {
00093 print $re_comments;
00094 }
00095 print '</textarea><br /></p>';
00096
00097
00098 print '<div align="center">';
00099 print '<input type=submit name="Submit" value="'._("Step 3: Project Name").'" />';
00100 print '</div>';
00101 print '</form>';
00102
00103 $HTML->footer(array());
00104 ?>