Merge branch 'master' of ssh://bitbucket.org/yackob03/quay into dindbuilder

This commit is contained in:
Jake Moshenko 2014-05-16 18:41:15 -04:00
commit 334b4634d7
3 changed files with 5 additions and 7 deletions

View file

@ -315,7 +315,7 @@ class GithubBuildTrigger(BuildTrigger):
def handle_trigger_request(self, request, auth_token, config): def handle_trigger_request(self, request, auth_token, config):
payload = request.get_json() payload = request.get_json()
if not payload: if not payload or not 'head_commit' in payload:
raise SkipRequestException() raise SkipRequestException()
if 'zen' in payload: if 'zen' in payload:

View file

@ -1901,7 +1901,7 @@ function NewRepoCtrl($scope, $location, $http, $timeout, UserService, ApiService
$scope.githubClientId = KeyService.githubClientId; $scope.githubClientId = KeyService.githubClientId;
$scope.repo = { $scope.repo = {
'is_public': 1, 'is_public': 0,
'description': '', 'description': '',
'initialize': '' 'initialize': ''
}; };
@ -1920,9 +1920,6 @@ function NewRepoCtrl($scope, $location, $http, $timeout, UserService, ApiService
// Determine whether private repositories are allowed for the namespace. // Determine whether private repositories are allowed for the namespace.
checkPrivateAllowed(); checkPrivateAllowed();
// Default to private repos for organizations.
$scope.repo.is_public = isUserNamespace ? '1' : '0';
}); });
$scope.changeNamespace = function(namespace) { $scope.changeNamespace = function(namespace) {

View file

@ -166,7 +166,8 @@
<div class="col-md-8"> <div class="col-md-8">
<button class="btn btn-large btn-success" type="submit" <button class="btn btn-large btn-success" type="submit"
ng-disabled="uploading || building || newRepoForm.$invalid || (repo.is_public == '0' && (planRequired || checkingPlan)) || ((repo.initialize == 'dockerfile' || repo.initialize == 'zipfile') && !hasDockerfile)"> ng-disabled="uploading || building || newRepoForm.$invalid || (repo.is_public == '0' && (planRequired || checkingPlan)) || ((repo.initialize == 'dockerfile' || repo.initialize == 'zipfile') && !hasDockerfile)">
Create Repository <i class="fa fa-large" ng-class="repo.is_public == '1' ? 'fa-unlock' : 'fa-lock'" style="margin-right: 4px"></i>
Create {{ repo.is_public == '1' ? 'Public' : 'Private' }} Repository
</button> </button>
</div> </div>
</div> </div>