| <?php |
| #***************************************************************************** |
| # |
| # en_cq_part1.inc |
| # |
| # Author: Denis Roy & others |
| # Date: 2006-08-24 |
| # |
| # Description: UI for contribution questionnaire |
| # |
| # HISTORY: |
| # |
| #**************************************************************************** |
| |
| include("../html/header.php"); |
| |
| $Menu = new Menu("en"); |
| |
| include("../modules/menu.php"); |
| $IPZillaHome = "https://dev.eclipse.org/ipzilla"; |
| |
| #TODO: TBD mechanism |
| |
| ?> |
| <br /> |
| <td width="100%" valign="top" class="normal"> |
| <font class="large_title">Contribution Questionnaire</font><br /><br /> |
| Thank you for taking the time to complete the questionnaire. <br /><br /> |
| |
| <font class="red"><b>WAIT! You're not done yet!</b></font> You need to attach the source code (not binary) to all the requested packages below. |
| <ul> |
| <li>If the file size is 20MB or less, log in to IPZilla (using the links below and your bugs.eclipse.org committer account) and use the attachment feature.</li> |
| <li>If the file size exceeds 20MB, please use an SFTP or SCP client to transfer the file to the correct ipzilla subdirectory of dev.eclipse.org:/home/data/common/ip, according the the IP Bug number. Log into IPZilla and submit the file name in a comment.</li> |
| </ul> |
| Once the source is attached or transferred, your PMC must approve this package by having one representative of the PMC vote +1 on the IPZilla entry.<br /><br /> |
| |
| <b>The Eclipse IP team will NOT review your contribution until this is done.</b><br /><br /> |
| |
| List of IPZilla entries that require your attention (open in a new window):<br /><ul> |
| <?php |
| foreach ($bug_ids as $bug_id) { |
| ?> |
| <li><a href="<?= $IPZillaHome . "/show_bug.cgi?id=" . $bug_id ?>" target="_new"><?= $IPZillaHome . "/show_bug.cgi?id=" . $bug_id ?></a></li> |
| <?php |
| } |
| ?> |
| </ul> |
| </td> |
| |
| <?php |
| include("../html/footer.php"); |
| ?> |