diff --git a/luciexpress/Gruntfile.js b/luciexpress/Gruntfile.js
index 121db88a2..6cb275038 100644
--- a/luciexpress/Gruntfile.js
+++ b/luciexpress/Gruntfile.js
@@ -97,6 +97,7 @@ module.exports = function(grunt){
console.log(files);
});
grunt.registerTask("compile", "Compile all files into a single file", function(){
+ var OUTDIR = "bin/";
var libfiles = [
"htdocs/lib/js/async.js",
"htdocs/lib/js/js-schema.min.js",
@@ -161,9 +162,10 @@ module.exports = function(grunt){
pluginfiles.map(function(name){
plugins[name.replace(/^htdocs\//, "")] = JSON.parse(String(fs.readFileSync(name)));
});
- fs.writeFileSync("htdocs/__all.css", css);
+ if(!fs.existsSync(OUTDIR)) fs.mkdirSync(OUTDIR);
+ fs.writeFileSync(OUTDIR+"__all.css", css);
// TODO: really do not do it in memory!
- fs.writeFileSync("htdocs/__all.js",
+ fs.writeFileSync(OUTDIR+"__all.js",
//uglifyjs.minify(
"var JUCI_COMPILED = 1; var JUCI_TEMPLATES = "+
JSON.stringify(templates)+";"+
diff --git a/luciexpress/Makefile b/luciexpress/Makefile
index b75217fe2..0d572438f 100644
--- a/luciexpress/Makefile
+++ b/luciexpress/Makefile
@@ -43,7 +43,12 @@ define Package/luciexpress/install
npm install
grunt compile
$(INSTALL_DIR) $(1)/www
- $(CP) ./htdocs/* $(1)/www/
+ $(CP) ./bin/* $(1)/www/
+ $(CP) ./htdocs/index.html $(1)/www/
+ $(CP) ./htdocs/config.json $(1)/www/
+ $(INSTALL_DIR) $(1)/www/themes/vodafone/
+ $(CP) ./htdocs/themes/vodafone/img $(1)/www/themes/vodafone/
+ $(CP) ./htdocs/themes/vodafone/fonts $(1)/www/themes/vodafone/
$(INSTALL_DIR) $(1)/usr/share/rpcd
$(CP) ./share/* $(1)/usr/share/rpcd/
./install_menus.sh $(1)
diff --git a/luciexpress/htdocs/plugins/core/widgets/luci.select.js b/luciexpress/htdocs/plugins/core/widgets/luci.select.js
new file mode 100644
index 000000000..410e54196
--- /dev/null
+++ b/luciexpress/htdocs/plugins/core/widgets/luci.select.js
@@ -0,0 +1,93 @@
+$juci.module("core")
+.directive('luciSelect', function ($compile) {
+ return {
+ restrict: 'E',
+ scope: {
+ selectedItem: '=ngModel',
+ items: '=ngItems',
+ onChange: '&onChange',
+ placeholder: '@placeholder',
+ prefix: "@",
+ size: '=size'
+ },
+ link: function (scope, element, attrs) {
+ var html = '';
+ switch (attrs.type) {
+ case "dropdown":
+ html += '
{{((selectedItem||{}).label || placeholder) | translate}}';
+ break;
+ default:
+ html += '
';
+ break;
+ }
+ html += '
';
+ element.append($compile(html)(scope));
+
+ if(scope.size)
+ scope.size_class = "btn-"+scope.size;
+
+ scope.$watch("size", function(){
+ scope.size_class = "btn-"+scope.size;
+ });
+ scope.selectedText = scope.placeholder;
+
+ scope.$watch("items", function(value){
+ if(value){
+ scope.itemList = value.map(function(x){
+ //console.log(JSON.stringify(x)+" "+JSON.stringify(scope.selectedItem));
+ if(typeof x == "object" && "value" in x){
+ if(scope.selectedItem != undefined && scope.selectedItem.value == x.value)
+ scope.selectedText = scope.selectedItem.label || scope.placeholder;
+ else if(scope.selectedItem == x.value){
+ scope.selectedText = x.label || scope.placeholder;
+ }
+ //alert(JSON.stringify(x)+" "+JSON.stringify(scope.selectedItem));
+ return { label: x.label, value: x.value };
+ } else {
+ if(scope.selectedItem == x){
+ scope.selectedText = scope.selectedItem || scope.placeholder;
+ }
+ return { label: x, value: x };
+ }
+ });
+ }
+ });
+ scope.$watch("selectedItem", function(value){
+ //console.log("Selected item: "+JSON.stringify(value));
+ if(value != undefined && (typeof value) == "object" && "value" in value) scope.selectedText = value.value;
+ else if(value != undefined && scope.itemList != undefined) {
+ scope.itemList.map(function(x){
+ if(x.value == value) scope.selectedText = x.label;
+ });
+ }
+ else scope.selectedText = value || scope.placeholder;
+ });
+
+ scope.selectVal = function (item) {
+ if(!item) return;
+ switch (attrs.type) {
+ case "dropdown":
+ $('a.dropdown-toggle', element).html('
' + item.label);
+ break;
+ default:
+ $('button.button-label', element).html(item.label);
+ break;
+ }
+ //console.log("DROPDOWN: "+JSON.stringify(scope.selectedItem)+", "+item.value);
+ var value = item;
+ if("value" in item)
+ value = item.value;
+ if(value instanceof Array) { // make it work for lists without changing reference
+ if(!(scope.selectedItem instanceof Array)) scope.selectedItem = [];
+ value.map(function(x){ scope.selectedItem.push(x); });
+ } else if(value instanceof Object){ // make it work for objects without changing reference
+ Object.assign(scope.selectedItem, value);
+ } else {
+ scope.selectedItem = value; // make it work for primitive types
+ }
+ scope.onChange(item);
+ };
+ //scope.selectVal(scope.selectedItem);
+ }
+ };
+});
diff --git a/luciexpress/htdocs/plugins/settings/pages/settings.upgrade.js b/luciexpress/htdocs/plugins/settings/pages/settings.upgrade.js
index 2131bf4ad..678bfc687 100644
--- a/luciexpress/htdocs/plugins/settings/pages/settings.upgrade.js
+++ b/luciexpress/htdocs/plugins/settings/pages/settings.upgrade.js
@@ -119,12 +119,13 @@ JUCI.app
function upgradeStart(path){
$scope.error = "";
$scope.progress = 'progress';
- $rpc.luci2.system.upgrade_test().done(function(result){
+ console.log("Trying to upgrade from "+path);
+ /*$rpc.luci2.system.upgrade_test({"path": path}).done(function(result){
if(result.stderr){
$scope.error = "Upgrade test has failed: "+result.stderr;
$scope.$apply();
return;
- }
+ }*/
$rpc.luci2.system.upgrade_start({"path": path}).done(function(result){
if(result && result.stderr) {
$scope.error = gettext("Upgrade process failed") + ": "+result.stderr;
@@ -147,10 +148,10 @@ JUCI.app
$scope.error = gettext("Upgrade process failed") + "! "+JSON.stringify(result||"");
$scope.$apply();
});
- }).fail(function(result){
+ /*}).fail(function(result){
$scope.error = gettext("Upgrade test has failed") + ": "+result.stderr;
$scope.$apply();
- });
+ }); */
}
/*$uci.sync("system").done(function(){
diff --git a/luciexpress/htdocs/themes/vodafone/img/activation/boxes/easybox-2.5.jpg b/luciexpress/htdocs/themes/vodafone/img/activation/boxes/easybox-2.5.jpg
deleted file mode 100644
index 43ec9ee0b..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/activation/boxes/easybox-2.5.jpg and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/activation/boxes/easybox-password.jpg b/luciexpress/htdocs/themes/vodafone/img/activation/boxes/easybox-password.jpg
deleted file mode 100644
index 3a6d293a1..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/activation/boxes/easybox-password.jpg and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/activation/boxes/mic.jpg b/luciexpress/htdocs/themes/vodafone/img/activation/boxes/mic.jpg
deleted file mode 100644
index 3932d68f5..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/activation/boxes/mic.jpg and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/activation/boxes/plugDSL-804.jpg b/luciexpress/htdocs/themes/vodafone/img/activation/boxes/plugDSL-804.jpg
deleted file mode 100644
index 4b8685db5..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/activation/boxes/plugDSL-804.jpg and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/activation/easybox-804-reskin-old.png b/luciexpress/htdocs/themes/vodafone/img/activation/easybox-804-reskin-old.png
deleted file mode 100644
index 2f22e21c7..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/activation/easybox-804-reskin-old.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/activation/easybox-804-reskin.png b/luciexpress/htdocs/themes/vodafone/img/activation/easybox-804-reskin.png
deleted file mode 100644
index 63d4feccf..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/activation/easybox-804-reskin.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/buttons/button-add.png b/luciexpress/htdocs/themes/vodafone/img/buttons/button-add.png
deleted file mode 100644
index 409911f80..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/buttons/button-add.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/buttons/button-delete.png b/luciexpress/htdocs/themes/vodafone/img/buttons/button-delete.png
deleted file mode 100644
index 42e011e1d..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/buttons/button-delete.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/buttons/button-edit.png b/luciexpress/htdocs/themes/vodafone/img/buttons/button-edit.png
deleted file mode 100644
index 5ded7f862..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/buttons/button-edit.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/buttons/button-left.png b/luciexpress/htdocs/themes/vodafone/img/buttons/button-left.png
deleted file mode 100644
index de7acf0d7..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/buttons/button-left.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/buttons/button-reload.png b/luciexpress/htdocs/themes/vodafone/img/buttons/button-reload.png
deleted file mode 100644
index 409911f80..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/buttons/button-reload.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/buttons/button-right.png b/luciexpress/htdocs/themes/vodafone/img/buttons/button-right.png
deleted file mode 100644
index 666122ba7..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/buttons/button-right.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/checkbox/check-white.png b/luciexpress/htdocs/themes/vodafone/img/checkbox/check-white.png
deleted file mode 100644
index 5d7b57b95..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/checkbox/check-white.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/icons/arrow-down.png b/luciexpress/htdocs/themes/vodafone/img/icons/arrow-down.png
deleted file mode 100644
index de546f5da..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/icons/arrow-down.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/icons/arrow-up.png b/luciexpress/htdocs/themes/vodafone/img/icons/arrow-up.png
deleted file mode 100644
index 83b00d4d8..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/icons/arrow-up.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/logo/easybox-804-reskin-old.png b/luciexpress/htdocs/themes/vodafone/img/logo/easybox-804-reskin-old.png
deleted file mode 100644
index 46c0cb049..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/logo/easybox-804-reskin-old.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/logo/easybox-804-reskin.png b/luciexpress/htdocs/themes/vodafone/img/logo/easybox-804-reskin.png
deleted file mode 100644
index a77d9e6da..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/logo/easybox-804-reskin.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/game.png b/luciexpress/htdocs/themes/vodafone/img/overview/game.png
deleted file mode 100644
index 5fbbf1501..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/game.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/game@2x.png b/luciexpress/htdocs/themes/vodafone/img/overview/game@2x.png
deleted file mode 100644
index 27737a655..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/game@2x.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/icon-small-arrow-up.png b/luciexpress/htdocs/themes/vodafone/img/overview/icon-small-arrow-up.png
deleted file mode 100644
index 23223146e..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/icon-small-arrow-up.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/icon-small-arrow.png b/luciexpress/htdocs/themes/vodafone/img/overview/icon-small-arrow.png
deleted file mode 100644
index 08429b436..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/icon-small-arrow.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/incoming.png b/luciexpress/htdocs/themes/vodafone/img/overview/incoming.png
deleted file mode 100644
index 3f48ecb4a..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/incoming.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/incomingl@2x.png b/luciexpress/htdocs/themes/vodafone/img/overview/incomingl@2x.png
deleted file mode 100644
index 8402be70b..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/incomingl@2x.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/laptop.png b/luciexpress/htdocs/themes/vodafone/img/overview/laptop.png
deleted file mode 100644
index 50c87381e..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/laptop.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/laptop@2x.png b/luciexpress/htdocs/themes/vodafone/img/overview/laptop@2x.png
deleted file mode 100644
index b54720c7d..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/laptop@2x.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/map.jpg b/luciexpress/htdocs/themes/vodafone/img/overview/map.jpg
deleted file mode 100644
index 1f9ea066f..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/map.jpg and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/miseedcall@2x.png b/luciexpress/htdocs/themes/vodafone/img/overview/miseedcall@2x.png
deleted file mode 100644
index f9c81d8de..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/miseedcall@2x.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/missedcall.png b/luciexpress/htdocs/themes/vodafone/img/overview/missedcall.png
deleted file mode 100644
index bfd010091..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/missedcall.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/network.png b/luciexpress/htdocs/themes/vodafone/img/overview/network.png
deleted file mode 100644
index d31824d4b..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/network.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/network@2x.png b/luciexpress/htdocs/themes/vodafone/img/overview/network@2x.png
deleted file mode 100644
index fce96a4be..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/network@2x.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/outgoing.png b/luciexpress/htdocs/themes/vodafone/img/overview/outgoing.png
deleted file mode 100644
index 7328bb550..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/outgoing.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/outgoing@2x.png b/luciexpress/htdocs/themes/vodafone/img/overview/outgoing@2x.png
deleted file mode 100644
index e32b13e08..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/outgoing@2x.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/overview-background-bot.jpg b/luciexpress/htdocs/themes/vodafone/img/overview/overview-background-bot.jpg
deleted file mode 100644
index 26738908c..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/overview-background-bot.jpg and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/overview-background-top-left-vdsl.jpg b/luciexpress/htdocs/themes/vodafone/img/overview/overview-background-top-left-vdsl.jpg
deleted file mode 100644
index 78ac8bf91..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/overview-background-top-left-vdsl.jpg and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/phone.png b/luciexpress/htdocs/themes/vodafone/img/overview/phone.png
deleted file mode 100644
index cac07c8fe..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/phone.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/phone@2x.png b/luciexpress/htdocs/themes/vodafone/img/overview/phone@2x.png
deleted file mode 100644
index 112c13d88..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/phone@2x.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/phone_U1.png b/luciexpress/htdocs/themes/vodafone/img/overview/phone_U1.png
deleted file mode 100644
index 64d680610..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/phone_U1.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/phone_U1@2x.png b/luciexpress/htdocs/themes/vodafone/img/overview/phone_U1@2x.png
deleted file mode 100644
index 23a30654c..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/phone_U1@2x.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/phone_U2.png b/luciexpress/htdocs/themes/vodafone/img/overview/phone_U2.png
deleted file mode 100644
index 6077f7b8c..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/phone_U2.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/schedule.png b/luciexpress/htdocs/themes/vodafone/img/overview/schedule.png
deleted file mode 100644
index d662b69be..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/schedule.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/schedule@2x.png b/luciexpress/htdocs/themes/vodafone/img/overview/schedule@2x.png
deleted file mode 100644
index 382ae1098..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/schedule@2x.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/signal_full.png b/luciexpress/htdocs/themes/vodafone/img/overview/signal_full.png
deleted file mode 100644
index b11f28664..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/signal_full.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/signal_full@2x.png b/luciexpress/htdocs/themes/vodafone/img/overview/signal_full@2x.png
deleted file mode 100644
index 6d7a3b98e..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/signal_full@2x.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/smartphone.png b/luciexpress/htdocs/themes/vodafone/img/overview/smartphone.png
deleted file mode 100644
index 2484f710d..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/smartphone.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/smartphone@2x.png b/luciexpress/htdocs/themes/vodafone/img/overview/smartphone@2x.png
deleted file mode 100644
index 932c7aa54..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/smartphone@2x.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/tablet.png b/luciexpress/htdocs/themes/vodafone/img/overview/tablet.png
deleted file mode 100644
index 17747739e..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/tablet.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/tablet@2x.png b/luciexpress/htdocs/themes/vodafone/img/overview/tablet@2x.png
deleted file mode 100644
index 939aa4692..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/tablet@2x.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/tv.png b/luciexpress/htdocs/themes/vodafone/img/overview/tv.png
deleted file mode 100644
index 4fe154ebb..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/tv.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/tv@2x.png b/luciexpress/htdocs/themes/vodafone/img/overview/tv@2x.png
deleted file mode 100644
index 4475659a9..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/tv@2x.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/vox-2.5-804.jpg b/luciexpress/htdocs/themes/vodafone/img/overview/vox-2.5-804.jpg
deleted file mode 100644
index 30551c3d9..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/vox-2.5-804.jpg and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/wifi.png b/luciexpress/htdocs/themes/vodafone/img/overview/wifi.png
deleted file mode 100644
index 7f4eef36f..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/wifi.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/wifi@2x.png b/luciexpress/htdocs/themes/vodafone/img/overview/wifi@2x.png
deleted file mode 100644
index 37e3e896f..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/wifi@2x.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/wps.png b/luciexpress/htdocs/themes/vodafone/img/overview/wps.png
deleted file mode 100644
index 4a4c6aed5..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/wps.png and /dev/null differ
diff --git a/luciexpress/htdocs/themes/vodafone/img/overview/wps@2x.png b/luciexpress/htdocs/themes/vodafone/img/overview/wps@2x.png
deleted file mode 100644
index 3d708ad60..000000000
Binary files a/luciexpress/htdocs/themes/vodafone/img/overview/wps@2x.png and /dev/null differ