@@ -62,7 +62,7 @@ app.controller('ContainersCreateController', ['$filter', '$routeParams', '$scope
62
62
63
63
64
64
$http ( {
65
- url : 'http ://127.0.0.1/github/user/repos/' + $routeParams . id ,
65
+ url : 'https ://127.0.0.1/github/user/repos/' + $routeParams . id ,
66
66
method : 'GET'
67
67
} ) . then (
68
68
function ( response ) {
@@ -78,7 +78,7 @@ app.controller('ContainersCreateController', ['$filter', '$routeParams', '$scope
78
78
if ( $scope . supportedPlatforms . indexOf ( response . data . language ) !== - 1 ) {
79
79
$scope . progressBar = 40 ;
80
80
$http ( {
81
- url : 'http ://127.0.0.1/github/local' ,
81
+ url : 'https ://127.0.0.1/github/local' ,
82
82
method : 'GET'
83
83
} ) . then (
84
84
function ( local ) {
@@ -131,7 +131,7 @@ app.controller('ContainersCreateController', ['$filter', '$routeParams', '$scope
131
131
console . log ( "Nazwa dokeru:" + $scope . id ) ;
132
132
console . log ( "Ilość pamięci ram: " + $scope . rammemory + " i dysku: " + $scope . diskquota ) ;
133
133
$http ( {
134
- url : 'http ://127.0.0.1/srv/container/create' ,
134
+ url : 'https ://127.0.0.1/srv/container/create' ,
135
135
method : 'POST' ,
136
136
params : {
137
137
dockerimage : $scope . dockerImages ,
@@ -185,7 +185,7 @@ app.controller('ContainersCreateController', ['$filter', '$routeParams', '$scope
185
185
186
186
app . controller ( 'ContainersController' , [ '$filter' , '$routeParams' , '$scope' , '$http' , function ( $filter , $routeParams , $scope , $http , $window ) {
187
187
$http ( {
188
- url : 'http ://127.0.0.1/srv/user/container/info' ,
188
+ url : 'https ://127.0.0.1/srv/user/container/info' ,
189
189
method : 'GET' ,
190
190
params : { dockergithubid : $routeParams . id }
191
191
} ) . then (
@@ -204,7 +204,7 @@ app.controller('ContainersController', ['$filter', '$routeParams', '$scope', '$h
204
204
}
205
205
$scope . dockerRestart = function ( ) {
206
206
$http ( {
207
- url : 'http ://127.0.0.1/srv/container/' + $scope . containersId + '/restart' ,
207
+ url : 'https ://127.0.0.1/srv/container/' + $scope . containersId + '/restart' ,
208
208
method : 'POST'
209
209
} ) . then (
210
210
function ( response ) {
@@ -216,7 +216,7 @@ app.controller('ContainersController', ['$filter', '$routeParams', '$scope', '$h
216
216
} ;
217
217
$scope . dockerRemove = function ( ) {
218
218
$http ( {
219
- url : 'http ://127.0.0.1/srv/container/' + $scope . containersId + '/delete' ,
219
+ url : 'https ://127.0.0.1/srv/container/' + $scope . containersId + '/delete' ,
220
220
method : 'DELETE'
221
221
} ) . then (
222
222
function ( ) {
@@ -231,7 +231,7 @@ app.controller('ContainersController', ['$filter', '$routeParams', '$scope', '$h
231
231
232
232
$scope . execCommands = function ( path , args ) {
233
233
$http ( {
234
- url : 'http ://127.0.0.1/srv/container/' + $scope . containersId + '/exec' ,
234
+ url : 'https ://127.0.0.1/srv/container/' + $scope . containersId + '/exec' ,
235
235
method : 'POST' ,
236
236
params : {
237
237
path : path ,
@@ -246,7 +246,7 @@ app.controller('ContainersController', ['$filter', '$routeParams', '$scope', '$h
246
246
} ;
247
247
248
248
$http ( {
249
- url : 'http ://127.0.0.1/srv/container/' + $scope . containersId + '/logs' ,
249
+ url : 'https ://127.0.0.1/srv/container/' + $scope . containersId + '/logs' ,
250
250
method : 'GET'
251
251
} ) . then (
252
252
function ( logGet ) {
@@ -257,7 +257,7 @@ app.controller('ContainersController', ['$filter', '$routeParams', '$scope', '$h
257
257
}
258
258
) ;
259
259
$http ( {
260
- url : 'http ://127.0.0.1/srv/container/' + $scope . containersId + '/top' ,
260
+ url : 'https ://127.0.0.1/srv/container/' + $scope . containersId + '/top' ,
261
261
method : 'GET'
262
262
} ) . then (
263
263
function ( response ) {
@@ -279,7 +279,7 @@ app.controller('ContainersController', ['$filter', '$routeParams', '$scope', '$h
279
279
app . controller ( 'HomeController' , function ( $scope , $http , $cookies ) {
280
280
$scope . lastVal = $cookies . get ( 'token' ) ;
281
281
$http ( {
282
- url : 'http ://127.0.0.1/github/user' ,
282
+ url : 'https ://127.0.0.1/github/user' ,
283
283
method : 'GET'
284
284
} ) . then (
285
285
function ( response ) {
@@ -300,7 +300,7 @@ app.controller('ProjectsController', function ($scope, $http) {
300
300
$scope . supportedPlatforms = [ "Java" , "HTML" , "C" , "C++" , "JavaScript" , "CSS" ] ;
301
301
302
302
$http ( {
303
- url : 'http ://127.0.0.1/github/user/repos/public' ,
303
+ url : 'https ://127.0.0.1/github/user/repos/public' ,
304
304
method : 'GET'
305
305
} ) . then (
306
306
function ( response ) {
@@ -325,7 +325,7 @@ app.controller('VersionController', function ($scope) {
325
325
app . controller ( 'CheckLoginStatus' , function ( $scope , $http , $cookies ) {
326
326
$scope . lastVal = $cookies . get ( 'token' ) ;
327
327
$http ( {
328
- url : 'http ://127.0.0.1/github/user/checktoken' ,
328
+ url : 'https ://127.0.0.1/github/user/checktoken' ,
329
329
method : 'GET' ,
330
330
params : { token : $scope . lastVal }
331
331
} ) . then (
@@ -342,7 +342,7 @@ app.controller('CheckLoginStatus', function ($scope, $http, $cookies) {
342
342
app . controller ( 'dashboardGithub' , function ( $scope , $http , $cookies ) {
343
343
$scope . lastVal = $cookies . get ( 'token' ) ;
344
344
$http ( {
345
- url : 'http ://127.0.0.1/github/user' ,
345
+ url : 'https ://127.0.0.1/github/user' ,
346
346
method : 'GET'
347
347
} ) . then (
348
348
function ( response ) {
@@ -363,7 +363,7 @@ app.controller('dashboardGithub', function ($scope, $http, $cookies) {
363
363
} ) ;
364
364
365
365
app . controller ( 'ProfileController' , function ( $scope , $http ) {
366
- $http . get ( 'http ://127.0.0.1/github/user/subscription' ) . then (
366
+ $http . get ( 'https ://127.0.0.1/github/user/subscription' ) . then (
367
367
function ( response ) {
368
368
$scope . subscriber = response . data . subscriber ;
369
369
} , function ( ) {
0 commit comments