Change all Quay.io references to Quay, fix tour and change logo
Fixes #741
This commit is contained in:
parent
cca18f8ede
commit
f6a53f7cc5
30 changed files with 56 additions and 270 deletions
|
@ -74,7 +74,7 @@ quayApp.config(['$tooltipProvider', function ($tooltipProvider) {
|
|||
|
||||
// Configure the routes.
|
||||
quayApp.config(['$routeProvider', '$locationProvider', 'pages', function($routeProvider, $locationProvider, pages) {
|
||||
var title = window.__config['REGISTRY_TITLE'] || 'Quay.io';
|
||||
var title = window.__config['REGISTRY_TITLE'] || 'Quay';
|
||||
|
||||
$locationProvider.html5Mode(true);
|
||||
|
||||
|
@ -203,7 +203,7 @@ if (window.__config && window.__config.SENTRY_PUBLIC_DSN) {
|
|||
quayApp.run(['$location', '$rootScope', 'Restangular', 'UserService', 'PlanService', '$http', '$timeout', 'CookieService', 'Features', '$anchorScroll', 'UtilService', 'MetaService', 'UIService',
|
||||
function($location, $rootScope, Restangular, UserService, PlanService, $http, $timeout, CookieService, Features, $anchorScroll, UtilService, MetaService, UIService) {
|
||||
|
||||
var defaultTitle = window.__config['REGISTRY_TITLE'] || 'Quay.io';
|
||||
var defaultTitle = window.__config['REGISTRY_TITLE'] || 'Quay';
|
||||
|
||||
// Handle session security.
|
||||
Restangular.setDefaultRequestParams(['post', 'put', 'remove', 'delete'], {'_csrf_token': window.__token || ''});
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
angular.module('quayPages').config(['pages', function(pages) {
|
||||
pages.create('about', 'about.html', null, {
|
||||
'title': 'About Us',
|
||||
'description': 'About Quay.io'
|
||||
'description': 'About Us'
|
||||
});
|
||||
}]);
|
||||
}());
|
|
@ -5,7 +5,7 @@
|
|||
angular.module('quayPages').config(['pages', function(pages) {
|
||||
pages.create('tour', 'tour.html', TourCtrl, {
|
||||
'title': 'Feature Tour',
|
||||
'description': 'Take a tour of Quay.io\'s features'
|
||||
'description': 'Take a tour of Quay\'s features'
|
||||
});
|
||||
}]);
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
pages.create('tutorial', 'tutorial.html', TutorialCtrl, {
|
||||
'newLayout': true,
|
||||
'title': 'Tutorial',
|
||||
'description': 'Basic tutorial on using Quay.io'
|
||||
'description': 'Basic tutorial on using Quay'
|
||||
})
|
||||
}]);
|
||||
|
||||
|
|
|
@ -363,7 +363,7 @@ function(KeyService, UserService, CookieService, ApiService, Features, Config) {
|
|||
email: email,
|
||||
amount: planDetails.price,
|
||||
currency: 'usd',
|
||||
name: 'Quay.io ' + planDetails.title + ' Subscription',
|
||||
name: 'Quay ' + planDetails.title + ' Subscription',
|
||||
description: 'Up to ' + planDetails.privateRepos + ' private repositories',
|
||||
panelLabel: opt_title || 'Subscribe',
|
||||
token: submitToken,
|
||||
|
|
Reference in a new issue