Hack out some CLA bits.
Replace the link to the settings/agreements page in the git push error message with a hardcoded link to the OpenStack wiki. Remove the form widgets that permit agreeing to a CLA. Change-Id: Ibfbb8bec245ae494a49cb905925fd2c4f34686f2
This commit is contained in:
parent
cdcd5193d4
commit
e707725ee6
@ -143,7 +143,6 @@ public class NewAgreementScreen extends AccountScreen {
|
||||
}
|
||||
});
|
||||
finalGroup.add(submit);
|
||||
formBody.add(finalGroup);
|
||||
new OnEditEnabler(submit, yesIAgreeBox);
|
||||
|
||||
final FormPanel form = new FormPanel();
|
||||
|
@ -524,11 +524,7 @@ public class ReceiveCommits implements PreReceiveHook, PostReceiveHook {
|
||||
final StringBuilder msg = new StringBuilder();
|
||||
msg.append(" A Contributor Agreement must be completed before uploading");
|
||||
if (canonicalWebUrl != null) {
|
||||
msg.append(":\n\n ");
|
||||
msg.append(canonicalWebUrl);
|
||||
msg.append("#");
|
||||
msg.append(PageLinks.SETTINGS_AGREEMENTS);
|
||||
msg.append("\n");
|
||||
msg.append(":\n\n http://wiki.openstack.org/HowToContribute\n");
|
||||
} else {
|
||||
msg.append(".");
|
||||
}
|
||||
@ -1671,7 +1667,7 @@ public class ReceiveCommits implements PreReceiveHook, PostReceiveHook {
|
||||
}
|
||||
}
|
||||
|
||||
// Check for people
|
||||
// Check for people
|
||||
if (project.isRequireShortMessage() &&
|
||||
(COMMIT_SUBJECT_LENGTH < c.getShortMessage().length())) {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user