Skip to content

Commit 0b263d5

Browse files
committed
fix: Replace http with https, drop iframe
1 parent 80efb38 commit 0b263d5

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ repos:
3838
- id: eslint
3939
additional_dependencies:
4040
- eslint@8.0.1
41-
- http://diracproject.web.cern.ch/diracproject/externalLibraries/@sencha_eslint-plugin-extjs.7.0.0.tgz
41+
- https://diracproject.web.cern.ch/diracproject/externalLibraries/@sencha_eslint-plugin-extjs.7.0.0.tgz
4242

4343
- repo: https://github.com/ikamensh/flynt/
4444
rev: "0.77"

src/WebAppDIRAC/WebApp/static/core/js/views/tabs/RightContainer.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,12 @@ Ext.define("Ext.dirac.views.tabs.RightContainer", {
9797
layout: "fit",
9898
closable: false,
9999
xtype: "component",
100+
/*
100101
autoEl: {
101102
tag: "iframe",
102-
src: "http://diracgrid.org",
103+
src: "https://diracgrid.org",
103104
},
105+
*/
104106
});
105107
},
106108
getStateData: function () {

src/WebAppDIRAC/WebApp/web.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ WebApp
3939

4040
Schema
4141
{
42-
Help = link|http://dirac.readthedocs.io/en/latest/UserGuide/index.html
42+
Help = link|https://dirac.readthedocs.io/en/latest/UserGuide/index.html
4343
Tools
4444
{
4545
Application Wizard = DIRAC.ApplicationWizard
@@ -71,7 +71,7 @@ WebApp
7171
#ExampleApp = DIRAC.ExampleApp
7272
}
7373

74-
DIRAC = link|http://diracgrid.org
74+
DIRAC = link|https://diracgrid.org
7575
}
7676

7777
}

0 commit comments

Comments
 (0)