Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Skovhede <kenneth@hexad.dk>2013-04-11 11:49:19 +0400
committerKenneth Skovhede <kenneth@hexad.dk>2013-04-11 11:49:19 +0400
commit64f7eb5cd1d4b6ca4b90ffe712eb81ccaafc3a66 (patch)
tree46e036cf2e14863031c359966e062eab29dabb32
parent03931923b130aabbcc8c2da5e5200c402a36e4b3 (diff)
Changed default html to use the CDN version of extjs, which makes it easier to get started with developing on the UI
-rw-r--r--.gitignore3
-rw-r--r--Duplicati/Server/webroot/app.js2
-rw-r--r--Duplicati/Server/webroot/status-window.html4
3 files changed, 5 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore
index 270d2943a..0f1872b41 100644
--- a/.gitignore
+++ b/.gitignore
@@ -12,4 +12,5 @@ Duplicati/Localization/*.diff.csv
Duplicati/Localization/*.new.csv
Duplicati/Localization/*.updated.csv
Duplicati/Localization/report.*.xml
-Installer/incLocFiles.*.wxs \ No newline at end of file
+Installer/incLocFiles.*.wxs
+Duplicati/Server/webroot/extjs-*
diff --git a/Duplicati/Server/webroot/app.js b/Duplicati/Server/webroot/app.js
index 08cdd528c..23f8bc280 100644
--- a/Duplicati/Server/webroot/app.js
+++ b/Duplicati/Server/webroot/app.js
@@ -2,7 +2,7 @@
// This helps in a debug setup
var extdefined = false;
try { extdefined = Ext !== undefined; } catch (e) {}
-if (!extdefined) { alert('ExtJS failed to load!\n If this is a debug build,\nplease download and extract:\n\nExtJS 4.1.1\n\ninto the folder:\nDuplicati/Server/webroot'); }
+if (!extdefined) { alert('ExtJS failed to load!\n If this is a debug build,\nplease download and extract:\n\nExtJS 4.2.0\n\ninto the folder:\nDuplicati/Server/webroot/extjs-4.2.0'); }
delete extdefined;
}
diff --git a/Duplicati/Server/webroot/status-window.html b/Duplicati/Server/webroot/status-window.html
index e6eb29c16..52673340a 100644
--- a/Duplicati/Server/webroot/status-window.html
+++ b/Duplicati/Server/webroot/status-window.html
@@ -5,12 +5,12 @@
<meta http-equiv="X-UA-Compatible" content="IE=9" />
<title>Duplicati Backup</title>
- <link rel="stylesheet" type="text/css" href="extjs-4.1.1/resources/css/ext-all.css" />
+ <link rel="stylesheet" type="text/css" href="http://cdn.sencha.io/ext-4.2.0-gpl/resources/css/ext-all.css" />
<link rel="stylesheet" type="text/css" href="stylesheets/common.css" />
<link rel="stylesheet" type="text/css" href="stylesheets/status-window.css" />
<link rel="stylesheet" type="text/css" href="stylesheets/customized.css" />
- <script type="text/javascript" src="extjs-4.1.1/ext-debug.js"></script>
+ <script type="text/javascript" src="http://cdn.sencha.io/ext-4.2.0-gpl/ext-all.js"></script>
<script type="text/javascript" src="app.js"></script>
<script type="text/javascript" src="scripts/customized.js"></script>