From 416d4af8718e6720778d27260d59586cb6f1bc7d Mon Sep 17 00:00:00 2001 From: charltonaustin Date: Thu, 6 Oct 2016 11:38:43 -0400 Subject: [PATCH 1/5] Fixing .gitignore so that I don't have to deal with idea files. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 7080f312c..4977dad15 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ static/fonts stack_local test/data/registry/ GIT_HEAD +.idea From 217cd7162763a5723f8c96f663afa5fb22c52aee Mon Sep 17 00:00:00 2001 From: charltonaustin Date: Thu, 6 Oct 2016 11:39:27 -0400 Subject: [PATCH 2/5] Removing unneeded dependency. --- app.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app.py b/app.py index f0f5b3069..2ad2fe618 100644 --- a/app.py +++ b/app.py @@ -35,7 +35,6 @@ from util.security.signing import Signer from util.security.instancekeys import InstanceKeys from util.saas.cloudwatch import start_cloudwatch_sender from util.config.provider import get_config_provider -from util.config.provider.baseprovider import SetupIncompleteException from util.config.configutil import generate_secret_key from util.config.superusermanager import SuperUserManager from util.secscan.api import SecurityScannerAPI From df4e58f3e44ad2ae44e75757735c62f62a64eae1 Mon Sep 17 00:00:00 2001 From: charltonaustin Date: Thu, 6 Oct 2016 11:41:51 -0400 Subject: [PATCH 3/5] Fixing some pylint stuff (was trying to get it to work and stumbled on this guy). --- config.py | 1 - 1 file changed, 1 deletion(-) diff --git a/config.py b/config.py index d693ee73f..f877afb7e 100644 --- a/config.py +++ b/config.py @@ -382,4 +382,3 @@ class DefaultConfig(object): # Overridable list of reverse DNS prefixes that are reserved for internal use on labels. LABEL_KEY_RESERVED_PREFIXES = [] - From 1dbd27934fb16a3a398acc230bbd889dcc5ef3f7 Mon Sep 17 00:00:00 2001 From: charltonaustin Date: Thu, 6 Oct 2016 15:58:47 -0400 Subject: [PATCH 4/5] Adding in an outline of a front-end for retrieving messages from the backend api. --- static/directives/quay-message-bar.html | 5 +++++ static/js/directives/quay-message-bar.js | 17 +++++++++++++++++ templates/base.html | 1 + 3 files changed, 23 insertions(+) create mode 100644 static/directives/quay-message-bar.html create mode 100644 static/js/directives/quay-message-bar.js diff --git a/static/directives/quay-message-bar.html b/static/directives/quay-message-bar.html new file mode 100644 index 000000000..f5b512511 --- /dev/null +++ b/static/directives/quay-message-bar.html @@ -0,0 +1,5 @@ + diff --git a/static/js/directives/quay-message-bar.js b/static/js/directives/quay-message-bar.js new file mode 100644 index 000000000..55d4b1b8a --- /dev/null +++ b/static/js/directives/quay-message-bar.js @@ -0,0 +1,17 @@ +/** + * An element which displays a message for users to read. + */ +angular.module('quay').directive('quayMessageBar', function () { + return { + priority: 0, + templateUrl: '/static/directives/quay-message-bar.html', + replace: false, + transclude: false, + restrict: 'C', + scope: {}, + controller: function ($scope, $element, ApiService) { + $scope.messages = []; + // ApiService.getMessages().then(function(data){ $scope.messages = data['messages'] || []; }); + } + }; +}); diff --git a/templates/base.html b/templates/base.html index c67835a93..f860cef37 100644 --- a/templates/base.html +++ b/templates/base.html @@ -229,6 +229,7 @@ mixpanel.init("{{ mixpanel_key }}", { track_pageview : false, debug: {{ is_debug {% endif %} +
From 980e79d6121e9a095932afdfafaac8187c75e29b Mon Sep 17 00:00:00 2001 From: charltonaustin Date: Thu, 6 Oct 2016 16:54:04 -0400 Subject: [PATCH 5/5] Removing commented out code for merging into master. --- static/js/directives/quay-message-bar.js | 1 - 1 file changed, 1 deletion(-) diff --git a/static/js/directives/quay-message-bar.js b/static/js/directives/quay-message-bar.js index 55d4b1b8a..a85ae0b17 100644 --- a/static/js/directives/quay-message-bar.js +++ b/static/js/directives/quay-message-bar.js @@ -11,7 +11,6 @@ angular.module('quay').directive('quayMessageBar', function () { scope: {}, controller: function ($scope, $element, ApiService) { $scope.messages = []; - // ApiService.getMessages().then(function(data){ $scope.messages = data['messages'] || []; }); } }; });