diff --git a/static/js/app.js b/static/js/app.js index 3440468d4..2ffde83b5 100644 --- a/static/js/app.js +++ b/static/js/app.js @@ -1,7 +1,7 @@ var TEAM_PATTERN = '^[a-zA-Z][a-zA-Z0-9]+$'; var ROBOT_PATTERN = '^[a-zA-Z][a-zA-Z0-9]{3,29}$'; -$.fn.clipboardCopy = function() { +$.fn.clipboardCopy = function() { if (zeroClipboardSupported) { (new ZeroClipboard($(this))); return true; @@ -17,7 +17,7 @@ ZeroClipboard.config({ }); ZeroClipboard.on("error", function(e) { - zeroClipboardSupported = false; + zeroClipboardSupported = false; }); ZeroClipboard.on('aftercopy', function(e) { @@ -67,7 +67,7 @@ function clickElement(el){ function getFirstTextLine(commentString) { if (!commentString) { return ''; } - + var lines = commentString.split('\n'); var MARKDOWN_CHARS = { '#': true, @@ -113,7 +113,7 @@ function createOrganizationTeam(ApiService, orgname, teamname, callback) { 'orgname': orgname, 'teamname': teamname }; - + ApiService.updateOrganizationTeam(data, params) .then(callback, ApiService.errorDisplay('Cannot create team')); } @@ -206,7 +206,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading that.showAdditionalEntries_(); }, 10); }; - + _ViewArray.prototype.stopTimer_ = function() { if (this.timerRef_) { $interval.cancel(this.timerRef_); @@ -286,7 +286,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading that.call_(); }, this.sleeptime_) }; - + var service = { 'create': function(scope, requester, opt_sleeptime) { return new _PollChannel(scope, requester, opt_sleeptime); @@ -307,7 +307,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading dataFileService.tryAsZip_ = function(buf, success, failure) { var zip = null; var zipFiles = null; - try { + try { var zip = new JSZip(buf); zipFiles = zip.files; } catch (e) { @@ -391,7 +391,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading success(processed); break; } - }); + }); }; dataFileService.blobToString = function(blob, callback) { @@ -462,7 +462,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading $provide.factory('UIService', [function() { var uiService = {}; - + uiService.hidePopover = function(elem) { var popover = $(elem).data('bs.popover'); if (popover) { @@ -482,7 +482,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading popover.show(); }, 500); }; - + uiService.showFormError = function(elem, result) { var message = result.data['message'] || result.data['error_description'] || ''; if (message) { @@ -491,7 +491,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading uiService.hidePopover(elem); } }; - + return uiService; }]); @@ -510,14 +510,14 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading .replace(/>/g, ">") .replace(/"/g, """) .replace(/'/g, "'"); - + return adjusted; }; - + utilService.textToSafeHtml = function(text) { return $sanitize(utilService.escapeHtmlString(text)); }; - + return utilService; }]); @@ -578,7 +578,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading }, 1000); } }; - + var pingUrlInternal = function($scope, url, callback) { var path = url + '?cb=' + (Math.random() * 100); var start = new Date(); @@ -605,7 +605,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading pingService.pingUrl = function($scope, url, callback) { if (pingCache[url]) { - invokeCallback($scope, pingCache[url]['pings'], callback); + invokeCallback($scope, pingCache[url]['pings'], callback); return; } @@ -615,12 +615,12 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading pingUrlInternal($scope, url, callback); }, 1000); }; - + return pingService; }]); - $provide.factory('TriggerService', ['UtilService', '$sanitize', 'KeyService', + $provide.factory('TriggerService', ['UtilService', '$sanitize', 'KeyService', function(UtilService, $sanitize, KeyService) { var triggerService = {}; @@ -643,13 +643,13 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading ], 'get_redirect_url': function(namespace, repository) { - var redirect_uri = KeyService['githubRedirectUri'] + '/trigger/' + + var redirect_uri = KeyService['githubRedirectUri'] + '/trigger/' + namespace + '/' + repository; var authorize_url = KeyService['githubTriggerAuthorizeUrl']; var client_id = KeyService['githubTriggerClientId']; - return authorize_url + 'client_id=' + client_id + + return authorize_url + 'client_id=' + client_id + '&scope=repo,user:email&redirect_uri=' + redirect_uri; } } @@ -758,7 +758,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading if (typeof description != 'string') { description = description(metadata); } - + for (var key in metadata) { if (metadata.hasOwnProperty(key)) { var value = metadata[key] != null ? metadata[key] : '(Unknown)'; @@ -807,7 +807,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading if (command.length > 2 && command[0] == '/bin/sh' && command[1] == '-c') { return command[2]; } - + return command.join(' '); }; @@ -838,7 +838,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading features.hasFeature = function(name) { return !!features.getFeature(name); }; - + features.matchesFeatures = function(list) { for (var i = 0; i < list.length; ++i) { var value = features.getFeature(list[i]); @@ -982,7 +982,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading if (userRelatedResource) { var operations = userRelatedResource['operations']; for (var i = 0; i < operations.length; ++i) { - var operation = operations[i]; + var operation = operations[i]; if (operation['method'].toLowerCase() == method) { return operation['nickname']; } @@ -996,7 +996,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading var name = endpointResource['name']; var operations = endpointResource['operations']; for (var i = 0; i < operations.length; ++i) { - var operation = operations[i]; + var operation = operations[i]; buildMethodsForOperation(operation, endpointResource, resourceMap); } }; @@ -1004,7 +1004,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading var freshLoginFailCheck = function(opName, opArgs) { return function(resp) { var deferred = $q.defer(); - + // If the error is a fresh login required, show the dialog. if (resp.status == 401 && resp.data['error_type'] == 'fresh_login_required') { var verifyNow = function() { @@ -1028,12 +1028,12 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading deferred.reject({'data': {'message': 'Invalid verification credentials'}}); }); }; - + var box = bootbox.dialog({ "message": 'It has been more than a few minutes since you last logged in, ' + - 'so please verify your password to perform this sensitive operation:' + + 'so please verify your password to perform this sensitive operation:' + '
' + - '' + + '' + '
', "title": 'Please Verify', "buttons": { @@ -1056,7 +1056,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading box.find("input").focus(); box.find("form").submit(function() { if (!$('#freshPassword').val()) { return; } - + box.modal('hide'); verifyNow(); }); @@ -1085,7 +1085,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading 'ignoreLoadingBar': true }); } - + var opObj = one['custom' + method.toUpperCase()](opt_options); // If the operation requires_fresh_login, then add a specialized error handler that @@ -1176,7 +1176,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading return apiService; }]); - + $provide.factory('CookieService', ['$cookies', '$cookieStore', function($cookies, $cookieStore) { var cookieService = {}; cookieService.putPermanent = function(name, value) { @@ -1219,7 +1219,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading scope.$watch(function () { return userService.currentUser(); }, function (currentUser) { scope.user = currentUser; if (opt_callback) { - opt_callback(currentUser); + opt_callback(currentUser); } }, true); }; @@ -1273,7 +1273,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading ApiService.getLoggedInUser().then(function(loadedUser) { handleUserResponse(loadedUser); }, function() { - handleUserResponse({'anonymous': true}); + handleUserResponse({'anonymous': true}); }); }; @@ -1310,7 +1310,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading var org = userService.getOrganization(namespace); return !!org; }; - + userService.currentUser = function() { return userResponse; }; @@ -1337,22 +1337,22 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading if (Features.BUILD_SUPPORT) { var buildEvents = [ - { + { 'id': 'build_queued', 'title': 'Dockerfile Build Queued', 'icon': 'fa-tasks' }, - { + { 'id': 'build_start', 'title': 'Dockerfile Build Started', 'icon': 'fa-circle-o-notch' }, - { + { 'id': 'build_success', 'title': 'Dockerfile Build Successfully Completed', 'icon': 'fa-check-circle-o' }, - { + { 'id': 'build_failure', 'title': 'Dockerfile Build Failed', 'icon': 'fa-times-circle-o' @@ -1376,7 +1376,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading } ] }, - { + { 'id': 'email', 'title': 'E-mail', 'icon': 'fa-envelope', @@ -1612,7 +1612,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading var params = { 'uuid': notification.id }; - + ApiService.updateUserNotification(notification, params, function() { notificationService.update(); }, ApiService.errorDisplay('Could not update notification')); @@ -1762,7 +1762,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading return keyService; }]); - + $provide.factory('PlanService', ['KeyService', 'UserService', 'CookieService', 'ApiService', 'Features', 'Config', function(KeyService, UserService, CookieService, ApiService, Features, Config) { var plans = null; @@ -1842,7 +1842,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading CookieService.clear('quay.notedplan'); return planId; }; - + planService.handleCardError = function(resp) { if (!planService.isCardError(resp)) { return; } @@ -1902,14 +1902,14 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading planService.getPlanIncludingDeprecated = function(planId, callback) { planService.verifyLoaded(function() { - if (planDict[planId]) { + if (planDict[planId]) { callback(planDict[planId]); } }); }; planService.getMinimumPlan = function(privateCount, isBusiness, callback) { - planService.getPlans(function(plans) { + planService.getPlans(function(plans) { for (var i = 0; i < plans.length; i++) { var plan = plans[i]; if (plan.privateRepos >= privateCount) { @@ -1975,7 +1975,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading planService.showSubscribeDialog($scope, orgname, planId, callbacks, title, /* async */true); return; } - + previousSubscribeFailure = false; planService.setSubscription(orgname, planId, callbacks['success'], function(resp) { @@ -1998,11 +1998,11 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading var submitToken = function(token) { if (submitted) { return; } submitted = true; - $scope.$apply(function() { + $scope.$apply(function() { if (callbacks['started']) { callbacks['started'](); } - + var cardInfo = { 'token': token.id }; @@ -2069,7 +2069,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading "className": "btn-default" } } - }); + }); return; } @@ -2120,7 +2120,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading return { require: 'ngModel', link: function(scope, elem, attrs, ctrl) { - scope.$watch(function() { + scope.$watch(function() { return $parse(attrs.match)(scope) === ctrl.$modelValue; }, function(currentValue) { ctrl.$setValidity('mismatch', currentValue); @@ -2215,7 +2215,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading if (window.__config && window.__config.MIXPANEL_KEY) { quayApp.config(['$analyticsProvider', function($analyticsProvider) { - $analyticsProvider.virtualPageviews(true); + $analyticsProvider.virtualPageviews(true); }]); } @@ -2331,7 +2331,7 @@ quayApp.directive('quayClasses', function(Features, Config) { priority: 580, restrict: 'A', link: function($scope, $element, $attr, ctrl, $transclude) { - + // Borrowed from ngClass. function flattenClasses(classVal) { if(angular.isArray(classVal)) { @@ -2345,10 +2345,10 @@ quayApp.directive('quayClasses', function(Features, Config) { }); return classes.join(' '); } - + return classVal; } - + function removeClass(classVal) { $attr.$removeClass(flattenClasses(classVal)); } @@ -2416,7 +2416,7 @@ quayApp.directive('quayInclude', function($compile, $templateCache, $http, Featu if (!templatePath) { return; } - + var promise = getTemplate(templatePath).success(function(html) { $element.html(html); }).then(function (response) { @@ -2495,7 +2495,7 @@ quayApp.directive('applicationInfo', function () { 'application': '=application' }, controller: function($scope, $element, ApiService) { - + } }; return directiveDefinitionObject; @@ -2572,7 +2572,7 @@ quayApp.directive('repoBreadcrumb', function () { 'subsection': '=subsection', 'subsectionIcon': '=subsectionIcon' }, - controller: function($scope, $element) { + controller: function($scope, $element) { } }; return directiveDefinitionObject; @@ -2586,7 +2586,7 @@ quayApp.directive('focusablePopoverContent', ['$timeout', '$popover', function ( var hide = function() { $body.off('click'); - if (!scope) { return; } + if (!scope) { return; } scope.$apply(function() { if (!scope) { return; } scope.$hide(); @@ -2594,7 +2594,7 @@ quayApp.directive('focusablePopoverContent', ['$timeout', '$popover', function ( }; scope.$on('$destroy', function() { - $body.off('click'); + $body.off('click'); }); $timeout(function() { @@ -2646,7 +2646,7 @@ quayApp.directive('copyBox', function () { var number = $rootScope.__copyBoxIdCounter || 0; $rootScope.__copyBoxIdCounter = number + 1; $scope.inputId = "copy-box-input-" + number; - + var button = $($element).find('.copy-icon'); var input = $($element).find('input'); @@ -2727,7 +2727,7 @@ quayApp.directive('externalLoginButton', function () { $scope.signInStarted({'service': service}); var url = KeyService.getExternalLoginUrl(service, $scope.action || 'login'); - + // Save the redirect URL in a cookie so that we can redirect back after the service returns to us. var redirectURL = $scope.redirectUrl || window.location.toString(); CookieService.putPermanent('quay.redirectAfterLoad', redirectURL); @@ -2825,7 +2825,7 @@ quayApp.directive('signinForm', function () { $scope.cancelInterval(); $scope.tryAgainSoon = result.headers('Retry-After'); - $scope.tryAgainInterval = $interval(function() { + $scope.tryAgainInterval = $interval(function() { $scope.tryAgainSoon--; if ($scope.tryAgainSoon <= 0) { $scope.cancelInterval(); @@ -2855,10 +2855,10 @@ quayApp.directive('signupForm', function () { 'userRegistered': '&userRegistered' }, - controller: function($scope, $location, $timeout, ApiService, KeyService, UserService, Config, UIService) { + controller: function($scope, $location, $timeout, ApiService, KeyService, UserService, Config, UIService) { $('.form-signup').popover(); - $scope.awaitingConfirmation = false; + $scope.awaitingConfirmation = false; $scope.registering = false; $scope.register = function() { @@ -2872,7 +2872,7 @@ quayApp.directive('signupForm', function () { ApiService.createNewUser($scope.newUser).then(function(resp) { $scope.registering = false; $scope.awaitingConfirmation = !!resp['awaiting_verification']; - + if (Config.MIXPANEL_KEY) { mixpanel.alias($scope.newUser.username); } @@ -3016,7 +3016,7 @@ quayApp.directive('dockerAuthDialog', function (Config) { $('#dockerauthmodal').modal('hide'); return; } - + $('#copyClipboard').clipboardCopy(); $('#dockerauthmodal').modal({}); }; @@ -3047,7 +3047,7 @@ quayApp.filter('regex', function() { if (m && m[0].length == input[i].length) { out.push(input[i]); } - } + } return out; }; }); @@ -3076,7 +3076,7 @@ quayApp.filter('visibleLogFilter', function () { if (!allowed) { return logs; } - + var filtered = []; angular.forEach(logs, function (log) { if (allowed[log.kind]) { @@ -3117,7 +3117,7 @@ quayApp.directive('billingInvoices', function () { if (!$scope.makevisible || !isValid) { return; } - + $scope.loading = true; ApiService.listInvoices($scope.organization).then(function(resp) { @@ -3158,7 +3158,7 @@ quayApp.directive('logsView', function () { $scope.kindsAllowed = null; $scope.chartVisible = true; $scope.logsPath = ''; - + var datetime = new Date(); $scope.logStartDate = new Date(datetime.getUTCFullYear(), datetime.getUTCMonth(), datetime.getUTCDate() - 7); $scope.logEndDate = new Date(datetime.getUTCFullYear(), datetime.getUTCMonth(), datetime.getUTCDate()); @@ -3269,7 +3269,7 @@ quayApp.directive('logsView', function () { return 'Create default permission: {role} for {delegate_team}' + defaultPermSuffix(metadata); } }, - 'modify_prototype_permission': function(metadata) { + 'modify_prototype_permission': function(metadata) { if (metadata.delegate_user) { return 'Modify default permission: {role} (from {original_role}) for {delegate_user}' + defaultPermSuffix(metadata); } else if (metadata.delegate_team) { @@ -3442,7 +3442,7 @@ quayApp.directive('logsView', function () { return $scope.chart.getColor(kind); }; - $scope.getDescription = function(log) { + $scope.getDescription = function(log) { log.metadata['_ip'] = log.ip ? log.ip : null; return StringBuilderService.buildString(logDescriptions[log.kind] || log.kind, log.metadata); }; @@ -3472,10 +3472,10 @@ quayApp.directive('applicationManager', function () { 'organization': '=organization', 'makevisible': '=makevisible' }, - controller: function($scope, $element, ApiService) { + controller: function($scope, $element, ApiService) { $scope.loading = false; $scope.applications = []; - + $scope.createApplication = function(appName) { if (!appName) { return; } @@ -3552,7 +3552,7 @@ quayApp.directive('robotsManager', function () { $scope.shownRobot = info; $scope.showRobotCounter++; }; - + $scope.findRobotIndexByName = function(name) { for (var i = 0; i < $scope.robots.length; ++i) { if ($scope.robots[i].name == name) { @@ -3942,13 +3942,13 @@ quayApp.directive('repoSearch', function () { $scope.$watch( function () { return UserService.currentUser(); }, function (currentUser) { ++searchToken; }, true); - + var repoHound = new Bloodhound({ name: 'repositories', remote: { url: '/api/v1/find/repository?query=%QUERY', replace: function (url, uriEncodedQuery) { - url = url.replace('%QUERY', uriEncodedQuery); + url = url.replace('%QUERY', uriEncodedQuery); url += '&cb=' + searchToken; return url; }, @@ -3965,8 +3965,8 @@ quayApp.directive('repoSearch', function () { return datums; } }, - datumTokenizer: function(d) { - return Bloodhound.tokenizers.whitespace(d.val); + datumTokenizer: function(d) { + return Bloodhound.tokenizers.whitespace(d.val); }, queryTokenizer: Bloodhound.tokenizers.whitespace }); @@ -3974,7 +3974,7 @@ quayApp.directive('repoSearch', function () { var element = $($element[0].childNodes[0]); element.typeahead({ 'highlight': true }, { - source: repoHound.ttAdapter(), + source: repoHound.ttAdapter(), templates: { 'suggestion': function (datum) { template = '
'; @@ -4014,23 +4014,23 @@ quayApp.directive('headerBar', function () { }, controller: function($scope, $element, $location, UserService, PlanService, ApiService, NotificationService) { $scope.notificationService = NotificationService; - + // Monitor any user changes and place the current user into the scope. UserService.updateUserIn($scope); - + $scope.signout = function() { ApiService.logout().then(function() { UserService.load(); $location.path('/'); }); }; - + $scope.appLinkTarget = function() { if ($("div[ng-view]").length === 0) { return "_self"; } return ""; - }; + }; } }; return directiveDefinitionObject; @@ -4100,7 +4100,7 @@ quayApp.directive('entitySearch', function () { // Reset the cached teams and robots. $scope.teams = null; $scope.robots = null; - + // Load the organization's teams (if applicable). if ($scope.isOrganization && isSupported('team')) { // Note: We load the org here again so that we always have the fully up-to-date @@ -4128,7 +4128,7 @@ quayApp.directive('entitySearch', function () { bootbox.prompt('Enter the name of the new team', function(teamname) { if (!teamname) { return; } - + var regex = new RegExp(TEAM_PATTERN); if (!regex.test(teamname)) { bootbox.alert('Invalid team name'); @@ -4138,7 +4138,7 @@ quayApp.directive('entitySearch', function () { createOrganizationTeam(ApiService, $scope.namespace, teamname, function(created) { $scope.setEntity(created.name, 'team', false); $scope.teams[teamname] = created; - }); + }); }); }; @@ -4157,7 +4157,7 @@ quayApp.directive('entitySearch', function () { createRobotAccount(ApiService, $scope.isOrganization, $scope.namespace, robotname, function(created) { $scope.setEntity(created.name, 'user', true); $scope.robots.push(created); - }); + }); }); }; @@ -4251,8 +4251,8 @@ quayApp.directive('entitySearch', function () { return datums; } }, - datumTokenizer: function(d) { - return Bloodhound.tokenizers.whitespace(d.val); + datumTokenizer: function(d) { + return Bloodhound.tokenizers.whitespace(d.val); }, queryTokenizer: Bloodhound.tokenizers.whitespace }); @@ -4293,7 +4293,7 @@ quayApp.directive('entitySearch', function () { var class_string = ''; for (var i = 0; i < classes.length; ++i) { - if (i > 0) { + if (i > 0) { if (i == classes.length - 1) { class_string += ' or '; } else { @@ -4308,17 +4308,17 @@ quayApp.directive('entitySearch', function () { } return null; - }, + }, 'suggestion': function (datum) { template = '
'; if (datum.entity.kind == 'user' && !datum.entity.is_robot) { template += ''; } else if (datum.entity.kind == 'user' && datum.entity.is_robot) { - template += ''; + template += ''; } else if (datum.entity.kind == 'team') { template += ''; } else if (datum.entity.kind == 'org') { - template += ''; } @@ -4360,7 +4360,7 @@ quayApp.directive('entitySearch', function () { if (!input) { return; } $(input).typeahead('val', ''); - $scope.clearEntityInternal(); + $scope.clearEntityInternal(); }); $scope.$watch('placeholder', function(title) { @@ -4410,7 +4410,7 @@ quayApp.directive('roleGroup', function () { controller: function($scope, $element) { $scope.setRole = function(role) { if ($scope.currentRole == role) { return; } - if ($scope.roleChanged) { + if ($scope.roleChanged) { $scope.roleChanged({'role': role}); } else { $scope.currentRole = role; @@ -4489,10 +4489,10 @@ quayApp.directive('billingOptions', function () { 'diners club': 'diners', 'discover': 'discover', 'jcb': 'jcb', - 'mastercard': 'mastercard', + 'mastercard': 'mastercard', 'visa': 'visa' }; - + kind = supported[kind] || 'credit'; return kind + '.png'; }; @@ -4524,7 +4524,7 @@ quayApp.directive('billingOptions', function () { save(); } }; - + $scope.$watch('invoice_email', checkSave); $scope.$watch('organization', update); $scope.$watch('user', update); @@ -4533,7 +4533,7 @@ quayApp.directive('billingOptions', function () { return directiveDefinitionObject; }); - + quayApp.directive('planManager', function () { var directiveDefinitionObject = { priority: 0, @@ -4549,7 +4549,7 @@ quayApp.directive('planManager', function () { }, controller: function($scope, $element, PlanService, ApiService) { $scope.isExistingCustomer = false; - + $scope.parseDate = function(timestamp) { return new Date(timestamp * 1000); }; @@ -4575,7 +4575,7 @@ quayApp.directive('planManager', function () { 'opened': function() { $scope.planChanging = true; }, 'closed': function() { $scope.planChanging = false; }, 'success': subscribedToPlan, - 'failure': function(resp) { + 'failure': function(resp) { $scope.planChanging = false; } }; @@ -4594,7 +4594,7 @@ quayApp.directive('planManager', function () { PlanService.getPlanIncludingDeprecated(sub.plan, function(subscribedPlan) { $scope.subscribedPlan = subscribedPlan; $scope.planUsagePercent = sub.usedPrivateRepos * 100 / $scope.subscribedPlan.privateRepos; - + if ($scope.planChanged) { $scope.planChanged({ 'plan': subscribedPlan }); } @@ -4622,7 +4622,7 @@ quayApp.directive('planManager', function () { PlanService.verifyLoaded(function(plans) { $scope.plans = plans; update(); - + if ($scope.readyForPlan) { var planRequested = $scope.readyForPlan(); if (planRequested && planRequested != PlanService.getFreePlan()) { @@ -4688,7 +4688,7 @@ quayApp.directive('namespaceSelector', function () { namespaceObj = $scope.namespaces[$scope.user.username]; } - var newNamespace = namespaceObj.name || namespaceObj.username; + var newNamespace = namespaceObj.name || namespaceObj.username; $scope.namespaceObj = namespaceObj; $scope.namespace = newNamespace; @@ -4778,7 +4778,7 @@ quayApp.directive('buildLogError', function () { var repo = repo_and_tag.substring(0, tagIndex); localInfo['repo_url'] = repo_url; - localInfo['repo'] = repo; + localInfo['repo'] = repo; localInfo['isLocal'] = repo_url.indexOf(Config.SERVER_HOSTNAME + '/') == 0; } @@ -4957,7 +4957,7 @@ quayApp.directive('dropdownSelect', function ($compile) { // Setup lookahead. var input = $($element).find('.lookahead-input'); - + $scope.$watch('clearValue', function(cv) { if (cv) { $scope.selectedItem = null; @@ -5001,7 +5001,7 @@ quayApp.directive('dropdownSelect', function ($compile) { datumTokenizer: function(d) { return Bloodhound.tokenizers.whitespace(d.val || d.value || ''); }, - queryTokenizer: Bloodhound.tokenizers.whitespace + queryTokenizer: Bloodhound.tokenizers.whitespace }); dropdownHound.initialize(); @@ -5044,7 +5044,7 @@ quayApp.directive('dropdownSelect', function ($compile) { var iconContainer = element.find('div.dropdown-select-icon-transclude'); var menuContainer = element.find('div.dropdown-select-menu-transclude'); - + angular.forEach(transcludedElements, function(elem) { if (angular.element(elem).hasClass('dropdown-select-icon')) { iconContainer.append(elem); @@ -5053,7 +5053,7 @@ quayApp.directive('dropdownSelect', function ($compile) { } }); - transcludedBlock.remove(); + transcludedBlock.remove(); } }; return directiveDefinitionObject; @@ -5217,7 +5217,7 @@ quayApp.directive('setupTriggerDialog', function () { $scope.currentView = 'analyzed'; return; } - + var params = { 'repository': $scope.repository.namespace + '/' + $scope.repository.name, 'trigger_uuid': $scope.trigger.id @@ -5336,7 +5336,7 @@ quayApp.directive('triggerSetupGithub', function () { if ($scope.isMatching(kind, name, $scope.state.branchTagFilter)) { return; } - + var newFilter = kind + '/' + name; var existing = $scope.state.branchTagFilter; if (existing) { @@ -5380,7 +5380,7 @@ quayApp.directive('triggerSetupGithub', function () { if (ref.kind == 'branch') { $scope.branchNames.push(ref.name); } else { - $scope.tagNames.push(ref.name); + $scope.tagNames.push(ref.name); } } @@ -5414,9 +5414,9 @@ quayApp.directive('triggerSetupGithub', function () { } callback(); - }, ApiService.errorDisplay('Cannot load locations')); + }, ApiService.errorDisplay('Cannot load locations')); } - + $scope.handleLocationInput = function(location) { $scope.state.isInvalidLocation = $scope.locations.indexOf(location) < 0; $scope.trigger['config']['subdir'] = location || ''; @@ -5433,7 +5433,7 @@ quayApp.directive('triggerSetupGithub', function () { $scope.trigger['config']['subdir'] = location || ''; $scope.trigger.$ready = true; }; - + $scope.selectRepo = function(repo, org) { $scope.state.currentRepo = { 'repo': repo, @@ -5459,7 +5459,7 @@ quayApp.directive('triggerSetupGithub', function () { }; }; - var setupTypeahead = function() { + var setupTypeahead = function() { var repos = []; for (var i = 0; i < $scope.orgs.length; ++i) { var org = $scope.orgs[i]; @@ -5487,7 +5487,7 @@ quayApp.directive('triggerSetupGithub', function () { }; $scope.$watch('state.currentRepo', function(repo) { - if (repo) { + if (repo) { $scope.selectRepoInternal(repo); } }); @@ -5523,7 +5523,7 @@ quayApp.directive('buildLogCommand', function () { if (colon <= 0) { return ''; } - + return $.trim(fullTitle.substring(colon + 1)); }; } @@ -5547,7 +5547,7 @@ quayApp.directive('dockerfileCommand', function () { 'quay.io': function(pieces) { var rnamespace = pieces[pieces.length - 2]; var rname = pieces[pieces.length - 1].split(':')[0]; - return '/repository/' + rnamespace + '/' + rname + '/'; + return '/repository/' + rnamespace + '/' + rname + '/'; }, '': function(pieces) { @@ -5566,11 +5566,11 @@ quayApp.directive('dockerfileCommand', function () { if (!registryHandlers[registry]) { return title; } - + return ' ' + title + ''; } }; - + $scope.getCommandKind = function(title) { var space = title.indexOf(' '); return title.substring(0, space); @@ -5581,17 +5581,17 @@ quayApp.directive('dockerfileCommand', function () { if (space <= 0) { return UtilService.textToSafeHtml(title); } - + var kind = $scope.getCommandKind(title); var sanitized = UtilService.textToSafeHtml(title.substring(space + 1)); - + var handler = kindHandlers[kind || '']; if (handler) { return handler(sanitized); } else { return sanitized; } - }; + }; } }; return directiveDefinitionObject; @@ -5671,7 +5671,7 @@ quayApp.directive('buildMessage', function () { case 'starting': case 'initializing': return 'Starting Dockerfile build'; - + case 'waiting': return 'Waiting for available build worker'; @@ -5680,24 +5680,24 @@ quayApp.directive('buildMessage', function () { case 'pulling': return 'Pulling base image'; - + case 'building': return 'Building image from Dockerfile'; case 'priming-cache': return 'Priming cache for build'; - + case 'pushing': return 'Pushing image built from Dockerfile'; - + case 'complete': return 'Dockerfile build completed and pushed'; - + case 'error': return 'Dockerfile build failed'; case 'internalerror': - return 'A system error occurred while building - Will be retried shortly'; + return 'An internal system error occurred while building; the build will be retried in the next few minutes.'; } }; } @@ -5747,7 +5747,7 @@ quayApp.directive('buildProgress', function () { return 0; break; } - + return -1; }; } @@ -5796,7 +5796,7 @@ quayApp.directive('externalNotificationView', function () { "className": "btn-primary" } } - }); + }); }); }; @@ -5835,7 +5835,7 @@ quayApp.directive('createExternalNotificationDialog', function () { $scope.events = ExternalNotificationData.getSupportedEvents(); $scope.methods = ExternalNotificationData.getSupportedMethods(); - + $scope.setEvent = function(event) { $scope.currentEvent = event; }; @@ -5892,7 +5892,7 @@ quayApp.directive('createExternalNotificationDialog', function () { $scope.handleEmailCheck = function(isAuthorized) { if (isAuthorized) { $scope.performCreateNotification(); - return; + return; } if ($scope.status == 'authorizing-email-sent') { @@ -5943,7 +5943,7 @@ quayApp.directive('createExternalNotificationDialog', function () { $scope.unauthorizedEmail = false; $('#createNotificationModal').modal({}); } - }); + }); } }; return directiveDefinitionObject; @@ -6074,7 +6074,7 @@ quayApp.directive('notificationView', function () { } else { var parts = url.split('?') $location.path(parts[0]); - + if (parts.length > 1) { $location.search(parts[1]); } @@ -6137,7 +6137,7 @@ quayApp.directive('dockerfileBuildDialog', function () { $scope.errorMessage = null; $scope.startCounter++; }; - + $scope.$watch('showNow', function(sn) { if (sn && $scope.repository) { $('#dockerfilebuildModal').modal({}); @@ -6295,11 +6295,11 @@ quayApp.directive('dockerfileBuildForm', function () { }; request.send(file); }; - + var startFileUpload = function(repo) { $scope.uploading = true; $scope.uploading_progress = 0; - + var uploader = $('#file-drop')[0]; if (uploader.files.length == 0) { handleMissingFile(); @@ -6309,18 +6309,18 @@ quayApp.directive('dockerfileBuildForm', function () { var file = uploader.files[0]; $scope.upload_file = file.name; - + var mimeType = file.type || 'application/octet-stream'; var data = { 'mimeType': mimeType }; - + var getUploadUrl = ApiService.getFiledropUrl(data).then(function(resp) { conductUpload(file, resp.url, resp.file_id, mimeType); }, function() { handleUploadFailed('Could not retrieve upload URL'); }); - }; + }; $scope.$watch('internal.hasDockerfile', function(d) { $scope.hasDockerfile = d; @@ -6465,12 +6465,12 @@ quayApp.directive('tagSpecificImagesView', function () { if (image.ancestors.length > 1) { classes += 'child '; } - + var currentTag = $scope.repository.tags[$scope.tag]; if (image.id == currentTag.image_id) { classes += 'tag-image '; } - + return classes; }; @@ -6489,7 +6489,7 @@ quayApp.directive('tagSpecificImagesView', function () { if (!tag_image) { return; } - + callback(tag_image); var ancestors = tag_image.ancestors.split('/').reverse(); @@ -6499,7 +6499,7 @@ quayApp.directive('tagSpecificImagesView', function () { if (image == opt_cutoff) { return; } - + callback(image); } } @@ -6516,7 +6516,7 @@ quayApp.directive('tagSpecificImagesView', function () { $scope.tagSpecificImages = []; return; } - + var getIdsForTag = function(currentTag) { var ids = {}; forAllTagImages(currentTag, function(image) { @@ -6544,7 +6544,7 @@ quayApp.directive('tagSpecificImagesView', function () { images.push(image); } } - + images.sort(function(a, b) { var result = new Date(b.created) - new Date(a.created); if (result != 0) { @@ -6614,7 +6614,7 @@ quayApp.directive('ngVisible', function () { quayApp.config( [ '$compileProvider', function( $compileProvider ) - { + { $compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|ftp|mailto|tel|irc):/); } ]); @@ -6695,11 +6695,11 @@ quayApp.run(['$location', '$rootScope', 'Restangular', 'UserService', 'PlanServi if (!description) { description = 'Hosted private docker repositories. Includes full user management and history. Free for public repositories.'; } - + // Note: We set the content of the description tag manually here rather than using Angular binding // because we need the tag to have a default description that is not of the form "{{ description }}", // we read by tools that do not properly invoke the Angular code. - $('#descriptionTag').attr('content', description); + $('#descriptionTag').attr('content', description); }); $rootScope.$on('$routeUpdate', function(){ @@ -6752,8 +6752,8 @@ quayApp.run(['$location', '$rootScope', 'Restangular', 'UserService', 'PlanServi $location.search(newSearch); }); - - e.preventDefault(); + + e.preventDefault(); }); if (activeTab) {