[Lada-commits] [PATCH 2 of 3] Removed trailing commas

Wald Commits scm-commit at wald.intevation.org
Thu Nov 7 12:15:17 CET 2013


# HG changeset patch
# User Raimund Renkert <rrenkert at intevation.de>
# Date 1383822095 -3600
# Node ID f9bb1ecf646249834411c4ff4b784e21ba9821c7
# Parent  f06a882ab7760997b94b12f19543b515e38fe68b
Removed trailing commas.

diff -r f06a882ab776 -r f9bb1ecf6462 app/controller/Sql.js
--- a/app/controller/Sql.js	Thu Nov 07 11:59:40 2013 +0100
+++ b/app/controller/Sql.js	Thu Nov 07 12:01:35 2013 +0100
@@ -10,7 +10,7 @@
         'Proben',    // List of found Proben
         'ProbenList',    // List of found Proben
         'Queries',
-        'Info',
+        'Info'
     ],
     requires: [
         'Lada.view.widgets.Mst',
diff -r f06a882ab776 -r f9bb1ecf6462 app/controller/Status.js
--- a/app/controller/Status.js	Thu Nov 07 11:59:40 2013 +0100
+++ b/app/controller/Status.js	Thu Nov 07 12:01:35 2013 +0100
@@ -67,5 +67,5 @@
         store.reload();
         var win = form.up('window');
         win.close();
-    },
+    }
 });
diff -r f06a882ab776 -r f9bb1ecf6462 app/model/Query.js
--- a/app/model/Query.js	Thu Nov 07 11:59:40 2013 +0100
+++ b/app/model/Query.js	Thu Nov 07 12:01:35 2013 +0100
@@ -9,7 +9,7 @@
         {name: "description"},
         {name: "sql"},
         {name: "results"},
-        {name: "filters"},
+        {name: "filters"}
     ],
     proxy: {
         type: 'rest',
diff -r f06a882ab776 -r f9bb1ecf6462 app/store/Ortedetails.js
--- a/app/store/Ortedetails.js	Thu Nov 07 11:59:40 2013 +0100
+++ b/app/store/Ortedetails.js	Thu Nov 07 12:01:35 2013 +0100
@@ -5,7 +5,7 @@
     extend: 'Ext.data.Store',
     model: 'Lada.model.Ortdetail',
     sorters: [{
-        property: 'bezeichnung',
+        property: 'bezeichnung'
     }],
     autoLoad: true
 });
diff -r f06a882ab776 -r f9bb1ecf6462 app/store/Probenzusatzwerte.js
--- a/app/store/Probenzusatzwerte.js	Thu Nov 07 11:59:40 2013 +0100
+++ b/app/store/Probenzusatzwerte.js	Thu Nov 07 12:01:35 2013 +0100
@@ -4,7 +4,7 @@
 Ext.define('Lada.store.Probenzusatzwerte', {
     extend: 'Ext.data.Store',
     sorters: [{
-        property: 'beschreibung',
+        property: 'beschreibung'
     }],
     autoLoad: true,
     model: 'Lada.model.Probenzusatzwert'
diff -r f06a882ab776 -r f9bb1ecf6462 app/store/Queries.js
--- a/app/store/Queries.js	Thu Nov 07 11:59:40 2013 +0100
+++ b/app/store/Queries.js	Thu Nov 07 12:01:35 2013 +0100
@@ -4,5 +4,5 @@
 Ext.define('Lada.store.Queries', {
     extend: 'Ext.data.Store',
     autoLoad: true,
-    model: 'Lada.model.Query',
+    model: 'Lada.model.Query'
 });
diff -r f06a882ab776 -r f9bb1ecf6462 app/store/Staaten.js
--- a/app/store/Staaten.js	Thu Nov 07 11:59:40 2013 +0100
+++ b/app/store/Staaten.js	Thu Nov 07 12:01:35 2013 +0100
@@ -4,7 +4,7 @@
 Ext.define('Lada.store.Staaten', {
     extend: 'Ext.data.Store',
     sorters: [{
-        property: 'staat',
+        property: 'staat'
     }],
     model: 'Lada.model.Staat',
     autoLoad: true,
diff -r f06a882ab776 -r f9bb1ecf6462 app/store/Verwaltungseinheiten.js
--- a/app/store/Verwaltungseinheiten.js	Thu Nov 07 11:59:40 2013 +0100
+++ b/app/store/Verwaltungseinheiten.js	Thu Nov 07 12:01:35 2013 +0100
@@ -5,7 +5,7 @@
     extend: 'Ext.data.Store',
     fields: ['gemId', 'bezeichnung'],
     sorters: [{
-        property: 'bezeichnung',
+        property: 'bezeichnung'
     }],
     autoLoad: false,
     proxy: {
diff -r f06a882ab776 -r f9bb1ecf6462 app/view/About.js
--- a/app/view/About.js	Thu Nov 07 11:59:40 2013 +0100
+++ b/app/view/About.js	Thu Nov 07 12:01:35 2013 +0100
@@ -22,13 +22,13 @@
             {
                 text: 'Abbrechen',
                 scope: this,
-                handler: this.close,
+                handler: this.close
             }
         ];
         this.items = [ 
             { html: "<h1>Lada</h1>Server version: " + sver + "<br>Client version: " + cver }
         ];
         this.callParent();
-    },
+    }
 });
 
diff -r f06a882ab776 -r f9bb1ecf6462 app/view/kommentare/Create.js
--- a/app/view/kommentare/Create.js	Thu Nov 07 11:59:40 2013 +0100
+++ b/app/view/kommentare/Create.js	Thu Nov 07 12:01:35 2013 +0100
@@ -25,7 +25,7 @@
             {
                 text: 'Abbrechen',
                 scope: this,
-                handler: this.close,
+                handler: this.close
             }
         ];
         var form = Ext.create('Lada.view.kommentare.CreateForm', this.initialConfig);
diff -r f06a882ab776 -r f9bb1ecf6462 app/view/messungen/Create.js
--- a/app/view/messungen/Create.js	Thu Nov 07 11:59:40 2013 +0100
+++ b/app/view/messungen/Create.js	Thu Nov 07 12:01:35 2013 +0100
@@ -25,7 +25,7 @@
             {
                 text: 'Abbrechen',
                 scope: this,
-                handler: this.close,
+                handler: this.close
             }
         ];
         var form = Ext.create('Lada.view.messungen.CreateForm', this.initialConfig);
diff -r f06a882ab776 -r f9bb1ecf6462 app/view/messungen/Edit.js
--- a/app/view/messungen/Edit.js	Thu Nov 07 11:59:40 2013 +0100
+++ b/app/view/messungen/Edit.js	Thu Nov 07 12:01:35 2013 +0100
@@ -25,7 +25,7 @@
             {
                 text: 'Abbrechen',
                 scope: this,
-                handler: this.close,
+                handler: this.close
             }
         ];
         var form = Ext.create('Lada.view.messungen.EditForm', this.initialConfig);
diff -r f06a882ab776 -r f9bb1ecf6462 app/view/messwerte/Create.js
--- a/app/view/messwerte/Create.js	Thu Nov 07 11:59:40 2013 +0100
+++ b/app/view/messwerte/Create.js	Thu Nov 07 12:01:35 2013 +0100
@@ -20,7 +20,7 @@
             {
                 text: 'Abbrechen',
                 scope: this,
-                handler: this.close,
+                handler: this.close
             }
         ];
         var form = Ext.create('Lada.view.messwerte.CreateForm', this.initialConfig);
diff -r f06a882ab776 -r f9bb1ecf6462 app/view/mkommentare/Create.js
--- a/app/view/mkommentare/Create.js	Thu Nov 07 11:59:40 2013 +0100
+++ b/app/view/mkommentare/Create.js	Thu Nov 07 12:01:35 2013 +0100
@@ -25,7 +25,7 @@
             {
                 text: 'Abbrechen',
                 scope: this,
-                handler: this.close,
+                handler: this.close
             }
         ];
         var form = Ext.create('Lada.view.mkommentare.CreateForm', this.initialConfig);
diff -r f06a882ab776 -r f9bb1ecf6462 app/view/orte/Create.js
--- a/app/view/orte/Create.js	Thu Nov 07 11:59:40 2013 +0100
+++ b/app/view/orte/Create.js	Thu Nov 07 12:01:35 2013 +0100
@@ -23,7 +23,7 @@
             {
                 text: 'Abbrechen',
                 scope: this,
-                handler: this.close,
+                handler: this.close
             }
         ];
         var form = Ext.create('Lada.view.orte.CreateForm', this.initialConfig);
diff -r f06a882ab776 -r f9bb1ecf6462 app/view/proben/Create.js
--- a/app/view/proben/Create.js	Thu Nov 07 11:59:40 2013 +0100
+++ b/app/view/proben/Create.js	Thu Nov 07 12:01:35 2013 +0100
@@ -17,12 +17,12 @@
         this.buttons = [
             {
                 text: 'Speichern',
-                action: 'save',
+                action: 'save'
             },
             {
                 text: 'Abbrechen',
                 scope: this,
-                handler: this.close,
+                handler: this.close
             }
         ];
         var form = Ext.create('Lada.view.proben.CreateForm');
diff -r f06a882ab776 -r f9bb1ecf6462 app/view/proben/Edit.js
--- a/app/view/proben/Edit.js	Thu Nov 07 11:59:40 2013 +0100
+++ b/app/view/proben/Edit.js	Thu Nov 07 12:01:35 2013 +0100
@@ -18,12 +18,12 @@
         this.buttons = [
             {
                 text: 'Speichern',
-                action: 'save',
+                action: 'save'
             },
             {
                 text: 'Abbrechen',
                 scope: this,
-                handler: this.close,
+                handler: this.close
             }
         ];
         // InitialConfig is the config object passed to the constructor on
@@ -32,6 +32,6 @@
         var form = Ext.create('Lada.view.proben.EditForm', this.initialConfig);
         this.items = [form];
         this.callParent();
-    },
+    }
 });
 
diff -r f06a882ab776 -r f9bb1ecf6462 app/view/proben/Import.js
--- a/app/view/proben/Import.js	Thu Nov 07 11:59:40 2013 +0100
+++ b/app/view/proben/Import.js	Thu Nov 07 12:01:35 2013 +0100
@@ -13,12 +13,12 @@
         this.buttons = [
             {
                 text: 'Speichern',
-                action: 'save',
+                action: 'save'
             },
             {
                 text: 'Abbrechen',
                 scope: this,
-                handler: this.close,
+                handler: this.close
             }
         ];
         var form = Ext.create('Lada.view.proben.ImportForm');
diff -r f06a882ab776 -r f9bb1ecf6462 app/view/status/Create.js
--- a/app/view/status/Create.js	Thu Nov 07 11:59:40 2013 +0100
+++ b/app/view/status/Create.js	Thu Nov 07 12:01:35 2013 +0100
@@ -20,7 +20,7 @@
             {
                 text: 'Abbrechen',
                 scope: this,
-                handler: this.close,
+                handler: this.close
             }
         ];
         var form = Ext.create('Lada.view.status.CreateForm', this.initialConfig);
diff -r f06a882ab776 -r f9bb1ecf6462 app/view/widgets/Datenbasis.js
--- a/app/view/widgets/Datenbasis.js	Thu Nov 07 11:59:40 2013 +0100
+++ b/app/view/widgets/Datenbasis.js	Thu Nov 07 12:01:35 2013 +0100
@@ -1,7 +1,7 @@
 var datenbasisStore = Ext.create('Ext.data.Store', {
     fields: ['datenbasisId', 'beschreibung', 'datenbasis'],
     sorters: [{
-        property: 'datenbasis',
+        property: 'datenbasis'
     }],
     autoLoad: true,
     proxy: {
diff -r f06a882ab776 -r f9bb1ecf6462 app/view/widgets/Messmethode.js
--- a/app/view/widgets/Messmethode.js	Thu Nov 07 11:59:40 2013 +0100
+++ b/app/view/widgets/Messmethode.js	Thu Nov 07 12:01:35 2013 +0100
@@ -1,7 +1,7 @@
 var mmtStore = Ext.create('Ext.data.Store', {
     fields: ['mmtId', 'messmethhode'],
     sorters: [{
-        property: 'mmtId',
+        property: 'mmtId'
     }],
     autoLoad: true,
     proxy: {
diff -r f06a882ab776 -r f9bb1ecf6462 app/view/widgets/Mst.js
--- a/app/view/widgets/Mst.js	Thu Nov 07 11:59:40 2013 +0100
+++ b/app/view/widgets/Mst.js	Thu Nov 07 12:01:35 2013 +0100
@@ -1,7 +1,7 @@
 var mstStore = Ext.create('Ext.data.Store', {
     fields: ['mstId', 'messStelle'],
     sorters: [{
-        property: 'messStelle',
+        property: 'messStelle'
     }],
     autoLoad: true,
     proxy: {
diff -r f06a882ab776 -r f9bb1ecf6462 app/view/widgets/Netzbetreiber.js
--- a/app/view/widgets/Netzbetreiber.js	Thu Nov 07 11:59:40 2013 +0100
+++ b/app/view/widgets/Netzbetreiber.js	Thu Nov 07 12:01:35 2013 +0100
@@ -1,7 +1,7 @@
 var netzbetreiberStore = Ext.create('Ext.data.Store', {
     fields: ['netzbetreiberId', 'netzbetreiber'],
     sorters: [{
-        property: 'netzbetreiber',
+        property: 'netzbetreiber'
     }],
     autoLoad: true,
     proxy: {
diff -r f06a882ab776 -r f9bb1ecf6462 app/view/widgets/Uwb.js
--- a/app/view/widgets/Uwb.js	Thu Nov 07 11:59:40 2013 +0100
+++ b/app/view/widgets/Uwb.js	Thu Nov 07 12:01:35 2013 +0100
@@ -1,7 +1,7 @@
 var uwbStore = Ext.create('Ext.data.Store', {
     fields: ['umwId', 'umweltBereich'],
     sorters: [{
-        property: 'umwId',
+        property: 'umwId'
     }],
     autoLoad: true,
     proxy: {
diff -r f06a882ab776 -r f9bb1ecf6462 app/view/zusatzwerte/Create.js
--- a/app/view/zusatzwerte/Create.js	Thu Nov 07 11:59:40 2013 +0100
+++ b/app/view/zusatzwerte/Create.js	Thu Nov 07 12:01:35 2013 +0100
@@ -20,7 +20,7 @@
             {
                 text: 'Abbrechen',
                 scope: this,
-                handler: this.close,
+                handler: this.close
             }
         ];
         var form = Ext.create('Lada.view.zusatzwerte.CreateForm', this.initialConfig);


More information about the Lada-commits mailing list