? form-license-130054-9.patch
Index: drupalorg.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/drupalorg/drupalorg.module,v
retrieving revision 1.19
diff -u -p -r1.19 drupalorg.module
--- drupalorg.module	12 Apr 2008 19:57:55 -0000	1.19
+++ drupalorg.module	13 Apr 2008 01:31:05 -0000
@@ -85,6 +85,10 @@ function drupalorg_form_alter($form_id, 
     $submit['drupalorg_cvs_user_edit_submit'] = array();
     $form['#submit'] = $form['#submit'] + $submit;
   }
+  elseif ($form_id == 'project_project_node_form') {
+    $form['project']['license']['#type'] = 'value';
+    $form['project']['license']['#value'] = 'http://www.gnu.org/copyleft/gpl.html';
+  }
   elseif (($form_id == 'user_edit' && isset($form['_category']['#value']) && $form['_category']['#value'] == 'newsletter') ||
            ($form_id == 'simplenews_subscription_manager_form')){
     // Alter the newsletter subscription form for CVS account holders only.
@@ -152,4 +156,6 @@ function drupalorg_cvs_user_edit_submit(
 function drupalorg_project_page_link_alter($node, &$all_links) {
   // Link to security handbook page.
   $all_links['support']['links']['report_security_issue'] = l(t('Report a security issue'), 'security-team');
+  // All code on drupal.org must be GPL, so we don't need to show the license.
+  unset($all_links['resources']['links']['license']);
 }
