[Lada-commits] [PATCH 2 of 6] even more jsduck... for widgets this time

Wald Commits scm-commit at wald.intevation.org
Thu Jul 23 17:43:15 CEST 2015


# HG changeset patch
# User Dustin Demuth <dustin at intevation.de>
# Date 1437663418 -7200
# Node ID 777bf66dbb1196c3195a78a89e19c9a2496c8724
# Parent  8054232535ba155ac5f9afdebed22819f701839c
even more jsduck... for widgets this time

diff -r 8054232535ba -r 777bf66dbb11 app/view/widget/MapToolbar.js
--- a/app/view/widget/MapToolbar.js	Thu Jul 23 16:47:48 2015 +0200
+++ b/app/view/widget/MapToolbar.js	Thu Jul 23 16:56:58 2015 +0200
@@ -6,6 +6,9 @@
  * the documentation coming with IMIS-Labordaten-Application for details.
  */
 
+/**
+ * This is a Toolbar for the Map.
+ */
 Ext.define('Lada.view.widget.MapToolbar', {
     extend: 'Ext.toolbar.Toolbar',
     alias: 'widget.maptoolbar',
diff -r 8054232535ba -r 777bf66dbb11 app/view/widget/base/CheckBox.js
--- a/app/view/widget/base/CheckBox.js	Thu Jul 23 16:47:48 2015 +0200
+++ b/app/view/widget/base/CheckBox.js	Thu Jul 23 16:56:58 2015 +0200
@@ -6,6 +6,9 @@
  * the documentation coming with IMIS-Labordaten-Application for details.
  */
 
+/**
+ * This Widget extends a Panel to create a custom Checkbox
+ */
 Ext.define('Lada.view.widget.base.CheckBox', {
     extend: 'Ext.form.Panel',
     alias: 'widget.chkbox',
diff -r 8054232535ba -r 777bf66dbb11 app/view/widget/base/ComboBox.js
--- a/app/view/widget/base/ComboBox.js	Thu Jul 23 16:47:48 2015 +0200
+++ b/app/view/widget/base/ComboBox.js	Thu Jul 23 16:56:58 2015 +0200
@@ -6,6 +6,9 @@
  * the documentation coming with IMIS-Labordaten-Application for details.
  */
 
+/**
+ * This Widget extends a Panel to creat a custom Combobox
+ */
 Ext.define('Lada.view.widget.base.ComboBox', {
     extend: 'Ext.form.Panel',
     alias: 'widget.cbox',
diff -r 8054232535ba -r 777bf66dbb11 app/view/widget/base/DateField.js
--- a/app/view/widget/base/DateField.js	Thu Jul 23 16:47:48 2015 +0200
+++ b/app/view/widget/base/DateField.js	Thu Jul 23 16:56:58 2015 +0200
@@ -6,6 +6,9 @@
  * the documentation coming with IMIS-Labordaten-Application for details.
  */
 
+/**
+ * This Widget extends a Panel in order to create a custom Datefield
+ */
 Ext.define('Lada.view.widget.base.DateField', {
     extend: 'Ext.form.Panel',
     alias: 'widget.datef',
diff -r 8054232535ba -r 777bf66dbb11 app/view/widget/base/DateTimeField.js
--- a/app/view/widget/base/DateTimeField.js	Thu Jul 23 16:47:48 2015 +0200
+++ b/app/view/widget/base/DateTimeField.js	Thu Jul 23 16:56:58 2015 +0200
@@ -1,3 +1,15 @@
+/* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz
+ * Software engineering by Intevation GmbH
+ *
+ * This file is Free Software under the GNU GPL (v>=3)
+ * and comes with ABSOLUTELY NO WARRANTY! Check out
+ * the documentation coming with IMIS-Labordaten-Application for details.
+ */
+
+/**
+ * This Widget extends a Datefield in order to create a
+ * something like a DateTimePicker
+ */
 Ext.define('Lada.view.widget.base.DateTimeField', {
     extend: 'Ext.form.field.Date',
     alias: 'widget.datetimefield',
diff -r 8054232535ba -r 777bf66dbb11 app/view/widget/base/DateTimePicker.js
--- a/app/view/widget/base/DateTimePicker.js	Thu Jul 23 16:47:48 2015 +0200
+++ b/app/view/widget/base/DateTimePicker.js	Thu Jul 23 16:56:58 2015 +0200
@@ -1,3 +1,15 @@
+/* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz
+ * Software engineering by Intevation GmbH
+ *
+ * This file is Free Software under the GNU GPL (v>=3)
+ * and comes with ABSOLUTELY NO WARRANTY! Check out
+ * the documentation coming with IMIS-Labordaten-Application for details.
+ */
+
+/**
+ * This Widget extends a DateTimePicker in order to create a
+ * something like a DateTimePicker
+ */
 Ext.define('Lada.view.widget.base.DateTimePicker', {
     extend: 'Ext.picker.Date',
     alias: 'widget.datetimepicker',
diff -r 8054232535ba -r 777bf66dbb11 app/view/widget/base/FieldSet.js
--- a/app/view/widget/base/FieldSet.js	Thu Jul 23 16:47:48 2015 +0200
+++ b/app/view/widget/base/FieldSet.js	Thu Jul 23 16:56:58 2015 +0200
@@ -6,6 +6,9 @@
  * the documentation coming with IMIS-Labordaten-Application for details.
  */
 
+/**
+ * This Widget extends a Fieldset
+ */
 Ext.define('Lada.view.widget.base.FieldSet', {
     extend: 'Ext.form.FieldSet',
     alias: 'widget.fset',
diff -r 8054232535ba -r 777bf66dbb11 app/view/widget/base/TextField.js
--- a/app/view/widget/base/TextField.js	Thu Jul 23 16:47:48 2015 +0200
+++ b/app/view/widget/base/TextField.js	Thu Jul 23 16:56:58 2015 +0200
@@ -6,6 +6,9 @@
  * the documentation coming with IMIS-Labordaten-Application for details.
  */
 
+/**
+ * This Widget extends a Panel to create a Textfield
+ */
 Ext.define('Lada.view.widget.base.TextField', {
     extend: 'Ext.panel.Panel',
     alias: 'widget.tfield',


More information about the Lada-commits mailing list