コード例 #1
0
<h3>Create New Release:</h3>
<p>
<form action="<?php 
    echo $PHP_SELF;
    ?>
" method="post">
<input type="hidden" name="group_id" value="<?php 
    echo $group_id;
    ?>
">
<table border="0" cellpadding="2" cellspacing="2">
<tr>
	<td>New release name:</td>
	<td><input type="text" name="release_name" value="" size="20" maxlength="25"></td>
</tr>
<tr>
	<td>Of which package:</b></td>
	<td><?php 
    echo frs_show_package_popup($group_id, 'package_id', $package_id);
    ?>
</td>
</tr>
<tr>
	<td colspan="2"><input type="submit" name="submit" value="Create This Release"></td>
</tr>
</table>
</form>

<?php 
}
project_admin_footer(array());
コード例 #2
0
    echo htmlspecialchars(db_result($result, 0, 'release_name'));
    ?>
"></td>
</tr>
<tr>
	<td><b>Status:</b></td>
	<td>
		<?php 
    echo frs_show_status_popup('status_id', db_result($result, 0, 'status_id'));
    ?>
	</td>
</tr>
<tr>
	<td><b>Of Package:</b></td>
	<td><?php 
    echo frs_show_package_popup($group_id, 'new_package_id', db_result($result, 0, 'package_id'));
    ?>
</td>
</tr>
<tr>
	<td colspan="2">
		<br>
		Edit the Release Notes or Change Log for this release of this package. These changes will apply to all files attached to this release.<br>
		You can either upload the release notes and change log individually, or paste them in together below.<br>
	</td>
</tr>
<tr>
	<td><b>Upload Release Notes:</b></td>
	<td><input type="file" name="uploaded_notes" size="30"></td>
</tr>
<tr>