aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2017-03-28 14:15:02 +0500
committerAbyss777 <abyss@fox5.ru>2017-03-28 14:18:26 +0500
commit6c0d7e512c585fe159aa30c8bb844b02bb9d99be (patch)
tree1da6153cd3f9d864ac55481fb563371bcfde7945
parent9a5d244db1fe558388ecddccd0d60b674dc53d22 (diff)
downloadetbsa-traccar-web-6c0d7e512c585fe159aa30c8bb844b02bb9d99be.tar.gz
etbsa-traccar-web-6c0d7e512c585fe159aa30c8bb844b02bb9d99be.tar.bz2
etbsa-traccar-web-6c0d7e512c585fe159aa30c8bb844b02bb9d99be.zip
Move map related classes to subfolder
-rw-r--r--web/app/view/GeofenceDialogController.js4
-rw-r--r--web/app/view/Main.js4
-rw-r--r--web/app/view/MainMobile.js4
-rw-r--r--web/app/view/map/BaseMap.js (renamed from web/app/view/BaseMap.js)4
-rw-r--r--web/app/view/map/GeofenceMap.js (renamed from web/app/view/GeofenceMap.js)8
-rw-r--r--web/app/view/map/GeofenceMapController.js (renamed from web/app/view/GeofenceMapController.js)4
-rw-r--r--web/app/view/map/Map.js (renamed from web/app/view/Map.js)8
-rw-r--r--web/app/view/map/MapController.js (renamed from web/app/view/MapController.js)4
-rw-r--r--web/app/view/map/MapMarkerController.js (renamed from web/app/view/MapMarkerController.js)6
9 files changed, 23 insertions, 23 deletions
diff --git a/web/app/view/GeofenceDialogController.js b/web/app/view/GeofenceDialogController.js
index 936c46d..e6bb753 100644
--- a/web/app/view/GeofenceDialogController.js
+++ b/web/app/view/GeofenceDialogController.js
@@ -1,5 +1,5 @@
/*
- * Copyright 2016 Anton Tananaev (anton@traccar.org)
+ * Copyright 2016 - 2017 Anton Tananaev (anton@traccar.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -21,7 +21,7 @@ Ext.define('Traccar.view.GeofenceDialogController', {
requires: [
'Traccar.view.BaseWindow',
- 'Traccar.view.GeofenceMap'
+ 'Traccar.view.map.GeofenceMap'
],
config: {
diff --git a/web/app/view/Main.js b/web/app/view/Main.js
index da6e539..c186efd 100644
--- a/web/app/view/Main.js
+++ b/web/app/view/Main.js
@@ -1,5 +1,5 @@
/*
- * Copyright 2015 Anton Tananaev (anton@traccar.org)
+ * Copyright 2015 - 2017 Anton Tananaev (anton@traccar.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -23,7 +23,7 @@ Ext.define('Traccar.view.Main', {
'Traccar.view.Devices',
'Traccar.view.State',
'Traccar.view.Report',
- 'Traccar.view.Map'
+ 'Traccar.view.map.Map'
],
layout: 'border',
diff --git a/web/app/view/MainMobile.js b/web/app/view/MainMobile.js
index 347db31..b0d4223 100644
--- a/web/app/view/MainMobile.js
+++ b/web/app/view/MainMobile.js
@@ -1,5 +1,5 @@
/*
- * Copyright 2015 Anton Tananaev (anton@traccar.org)
+ * Copyright 2015 - 2017 Anton Tananaev (anton@traccar.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -25,7 +25,7 @@ Ext.define('Traccar.view.MainMobile', {
'Traccar.view.Devices',
'Traccar.view.State',
'Traccar.view.Report',
- 'Traccar.view.Map'
+ 'Traccar.view.map.Map'
],
layout: 'card',
diff --git a/web/app/view/BaseMap.js b/web/app/view/map/BaseMap.js
index c755b6c..ac3b269 100644
--- a/web/app/view/BaseMap.js
+++ b/web/app/view/map/BaseMap.js
@@ -1,5 +1,5 @@
/*
- * Copyright 2016 Anton Tananaev (anton@traccar.org)
+ * Copyright 2016 - 2017 Anton Tananaev (anton@traccar.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -15,7 +15,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-Ext.define('Traccar.view.BaseMap', {
+Ext.define('Traccar.view.map.BaseMap', {
extend: 'Ext.panel.Panel',
xtype: 'baseMapView',
diff --git a/web/app/view/GeofenceMap.js b/web/app/view/map/GeofenceMap.js
index 0a56b33..37d3be7 100644
--- a/web/app/view/GeofenceMap.js
+++ b/web/app/view/map/GeofenceMap.js
@@ -1,5 +1,5 @@
/*
- * Copyright 2016 Anton Tananaev (anton@traccar.org)
+ * Copyright 2016 - 2017 Anton Tananaev (anton@traccar.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -15,12 +15,12 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-Ext.define('Traccar.view.GeofenceMap', {
- extend: 'Traccar.view.BaseMap',
+Ext.define('Traccar.view.map.GeofenceMap', {
+ extend: 'Traccar.view.map.BaseMap',
xtype: 'geofenceMapView',
requires: [
- 'Traccar.view.GeofenceMapController',
+ 'Traccar.view.map.GeofenceMapController',
'Traccar.GeofenceConverter'
],
diff --git a/web/app/view/GeofenceMapController.js b/web/app/view/map/GeofenceMapController.js
index ff5c70c..ffafb7f 100644
--- a/web/app/view/GeofenceMapController.js
+++ b/web/app/view/map/GeofenceMapController.js
@@ -1,5 +1,5 @@
/*
- * Copyright 2016 Anton Tananaev (anton@traccar.org)
+ * Copyright 2016 - 2017 Anton Tananaev (anton@traccar.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -15,7 +15,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-Ext.define('Traccar.view.GeofenceMapController', {
+Ext.define('Traccar.view.map.GeofenceMapController', {
extend: 'Ext.app.ViewController',
alias: 'controller.geofenceMap',
diff --git a/web/app/view/Map.js b/web/app/view/map/Map.js
index a3879ab..d4e654e 100644
--- a/web/app/view/Map.js
+++ b/web/app/view/map/Map.js
@@ -1,5 +1,5 @@
/*
- * Copyright 2015 - 2016 Anton Tananaev (anton@traccar.org)
+ * Copyright 2015 - 2017 Anton Tananaev (anton@traccar.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -15,12 +15,12 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-Ext.define('Traccar.view.Map', {
- extend: 'Traccar.view.BaseMap',
+Ext.define('Traccar.view.map.Map', {
+ extend: 'Traccar.view.map.BaseMap',
xtype: 'mapView',
requires: [
- 'Traccar.view.MapController',
+ 'Traccar.view.map.MapController',
'Traccar.view.SettingsMenu'
],
diff --git a/web/app/view/MapController.js b/web/app/view/map/MapController.js
index 04e8c44..8a5e81c 100644
--- a/web/app/view/MapController.js
+++ b/web/app/view/map/MapController.js
@@ -15,8 +15,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-Ext.define('Traccar.view.MapController', {
- extend: 'Traccar.view.MapMarkerController',
+Ext.define('Traccar.view.map.MapController', {
+ extend: 'Traccar.view.map.MapMarkerController',
alias: 'controller.map',
requires: [
diff --git a/web/app/view/MapMarkerController.js b/web/app/view/map/MapMarkerController.js
index fa380e7..9dcb356 100644
--- a/web/app/view/MapMarkerController.js
+++ b/web/app/view/map/MapMarkerController.js
@@ -1,6 +1,6 @@
/*
- * Copyright 2015 - 2016 Anton Tananaev (anton@traccar.org)
- * Copyright 2016 Andrey Kunitsyn (andrey@traccar.org)
+ * Copyright 2015 - 2017 Anton Tananaev (anton@traccar.org)
+ * Copyright 2016 - 2017 Andrey Kunitsyn (andrey@traccar.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-Ext.define('Traccar.view.MapMarkerController', {
+Ext.define('Traccar.view.map.MapMarkerController', {
extend: 'Ext.app.ViewController',
alias: 'controller.mapMarker',