@@ -62,7 +62,7 @@ app.controller('ContainersCreateController', ['$filter', '$routeParams', '$scope
6262
6363
6464 $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 ,
6666 method : 'GET'
6767 } ) . then (
6868 function ( response ) {
@@ -78,7 +78,7 @@ app.controller('ContainersCreateController', ['$filter', '$routeParams', '$scope
7878 if ( $scope . supportedPlatforms . indexOf ( response . data . language ) !== - 1 ) {
7979 $scope . progressBar = 40 ;
8080 $http ( {
81- url : 'http ://127.0.0.1/github/local' ,
81+ url : 'https ://127.0.0.1/github/local' ,
8282 method : 'GET'
8383 } ) . then (
8484 function ( local ) {
@@ -131,7 +131,7 @@ app.controller('ContainersCreateController', ['$filter', '$routeParams', '$scope
131131 console . log ( "Nazwa dokeru:" + $scope . id ) ;
132132 console . log ( "Ilość pamięci ram: " + $scope . rammemory + " i dysku: " + $scope . diskquota ) ;
133133 $http ( {
134- url : 'http ://127.0.0.1/srv/container/create' ,
134+ url : 'https ://127.0.0.1/srv/container/create' ,
135135 method : 'POST' ,
136136 params : {
137137 dockerimage : $scope . dockerImages ,
@@ -185,7 +185,7 @@ app.controller('ContainersCreateController', ['$filter', '$routeParams', '$scope
185185
186186app . controller ( 'ContainersController' , [ '$filter' , '$routeParams' , '$scope' , '$http' , function ( $filter , $routeParams , $scope , $http , $window ) {
187187 $http ( {
188- url : 'http ://127.0.0.1/srv/user/container/info' ,
188+ url : 'https ://127.0.0.1/srv/user/container/info' ,
189189 method : 'GET' ,
190190 params : { dockergithubid : $routeParams . id }
191191 } ) . then (
@@ -204,7 +204,7 @@ app.controller('ContainersController', ['$filter', '$routeParams', '$scope', '$h
204204 }
205205 $scope . dockerRestart = function ( ) {
206206 $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' ,
208208 method : 'POST'
209209 } ) . then (
210210 function ( response ) {
@@ -216,7 +216,7 @@ app.controller('ContainersController', ['$filter', '$routeParams', '$scope', '$h
216216 } ;
217217 $scope . dockerRemove = function ( ) {
218218 $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' ,
220220 method : 'DELETE'
221221 } ) . then (
222222 function ( ) {
@@ -231,7 +231,7 @@ app.controller('ContainersController', ['$filter', '$routeParams', '$scope', '$h
231231
232232 $scope . execCommands = function ( path , args ) {
233233 $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' ,
235235 method : 'POST' ,
236236 params : {
237237 path : path ,
@@ -246,7 +246,7 @@ app.controller('ContainersController', ['$filter', '$routeParams', '$scope', '$h
246246 } ;
247247
248248 $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' ,
250250 method : 'GET'
251251 } ) . then (
252252 function ( logGet ) {
@@ -257,7 +257,7 @@ app.controller('ContainersController', ['$filter', '$routeParams', '$scope', '$h
257257 }
258258 ) ;
259259 $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' ,
261261 method : 'GET'
262262 } ) . then (
263263 function ( response ) {
@@ -279,7 +279,7 @@ app.controller('ContainersController', ['$filter', '$routeParams', '$scope', '$h
279279app . controller ( 'HomeController' , function ( $scope , $http , $cookies ) {
280280 $scope . lastVal = $cookies . get ( 'token' ) ;
281281 $http ( {
282- url : 'http ://127.0.0.1/github/user' ,
282+ url : 'https ://127.0.0.1/github/user' ,
283283 method : 'GET'
284284 } ) . then (
285285 function ( response ) {
@@ -300,7 +300,7 @@ app.controller('ProjectsController', function ($scope, $http) {
300300 $scope . supportedPlatforms = [ "Java" , "HTML" , "C" , "C++" , "JavaScript" , "CSS" ] ;
301301
302302 $http ( {
303- url : 'http ://127.0.0.1/github/user/repos/public' ,
303+ url : 'https ://127.0.0.1/github/user/repos/public' ,
304304 method : 'GET'
305305 } ) . then (
306306 function ( response ) {
@@ -325,7 +325,7 @@ app.controller('VersionController', function ($scope) {
325325app . controller ( 'CheckLoginStatus' , function ( $scope , $http , $cookies ) {
326326 $scope . lastVal = $cookies . get ( 'token' ) ;
327327 $http ( {
328- url : 'http ://127.0.0.1/github/user/checktoken' ,
328+ url : 'https ://127.0.0.1/github/user/checktoken' ,
329329 method : 'GET' ,
330330 params : { token : $scope . lastVal }
331331 } ) . then (
@@ -342,7 +342,7 @@ app.controller('CheckLoginStatus', function ($scope, $http, $cookies) {
342342app . controller ( 'dashboardGithub' , function ( $scope , $http , $cookies ) {
343343 $scope . lastVal = $cookies . get ( 'token' ) ;
344344 $http ( {
345- url : 'http ://127.0.0.1/github/user' ,
345+ url : 'https ://127.0.0.1/github/user' ,
346346 method : 'GET'
347347 } ) . then (
348348 function ( response ) {
@@ -363,7 +363,7 @@ app.controller('dashboardGithub', function ($scope, $http, $cookies) {
363363} ) ;
364364
365365app . 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 (
367367 function ( response ) {
368368 $scope . subscriber = response . data . subscriber ;
369369 } , function ( ) {
0 commit comments