[Commits] r1821 - in sandbox/cmoullet/ux/LayerManager/ux: data widgets
commits at geoext.org
commits at geoext.org
Tue Jan 26 18:26:16 CET 2010
Author: asaunier
Date: 2010-01-26 18:26:16 +0100 (Tue, 26 Jan 2010)
New Revision: 1821
Modified:
sandbox/cmoullet/ux/LayerManager/ux/data/Export.js
sandbox/cmoullet/ux/LayerManager/ux/data/Import.js
sandbox/cmoullet/ux/LayerManager/ux/widgets/LayerManagerExportPanel.js
sandbox/cmoullet/ux/LayerManager/ux/widgets/LayerManagerExportWindow.js
sandbox/cmoullet/ux/LayerManager/ux/widgets/LayerManagerImportPanel.js
sandbox/cmoullet/ux/LayerManager/ux/widgets/LayerManagerWindow.js
Log:
added @include statements for LayerManager UX
Modified: sandbox/cmoullet/ux/LayerManager/ux/data/Export.js
===================================================================
--- sandbox/cmoullet/ux/LayerManager/ux/data/Export.js 2010-01-26 16:44:00 UTC (rev 1820)
+++ sandbox/cmoullet/ux/LayerManager/ux/data/Export.js 2010-01-26 17:26:16 UTC (rev 1821)
@@ -8,6 +8,16 @@
Ext.namespace("GeoExt.ux.data");
+/**
+ * @include OpenLayers/Format/GeoJSON.js
+ * @include OpenLayers/Format/GeoRSS.js
+ * @include OpenLayers/Format/GML.js
+ * @include OpenLayers/Format/KML.js
+ * @include OpenLayers/Projection.js
+ * @include OpenLayers/Util.js
+ * @include LayerManager/ux/data/FormatStore.js
+ */
+
/** static: method[GeoExt.ux.data.Export]
* Export the data
*
@@ -162,4 +172,4 @@
GeoExt.ux.data.Export.OpenWindowDownloadify();
}
}
-};
\ No newline at end of file
+};
Modified: sandbox/cmoullet/ux/LayerManager/ux/data/Import.js
===================================================================
--- sandbox/cmoullet/ux/LayerManager/ux/data/Import.js 2010-01-26 16:44:00 UTC (rev 1820)
+++ sandbox/cmoullet/ux/LayerManager/ux/data/Import.js 2010-01-26 17:26:16 UTC (rev 1821)
@@ -8,6 +8,18 @@
Ext.namespace("GeoExt.ux.data");
+/**
+ * @include OpenLayers/Format/GeoJSON.js
+ * @include OpenLayers/Format/GeoRSS.js
+ * @include OpenLayers/Format/GML.js
+ * @include OpenLayers/Format/KML.js
+ * @include OpenLayers/Lang.js
+ * @include OpenLayers/Layer/Vector.js
+ * @include OpenLayers/Projection.js
+ * @include OpenLayers/Util.js
+ * @include LayerManager/ux/data/FormatStore.js
+ */
+
GeoExt.ux.data.importFeatures = null;
/** static: method[GeoExt.ux.data.Import]
@@ -88,4 +100,4 @@
]
});
importWindow.show();
-};
\ No newline at end of file
+};
Modified: sandbox/cmoullet/ux/LayerManager/ux/widgets/LayerManagerExportPanel.js
===================================================================
--- sandbox/cmoullet/ux/LayerManager/ux/widgets/LayerManagerExportPanel.js 2010-01-26 16:44:00 UTC (rev 1820)
+++ sandbox/cmoullet/ux/LayerManager/ux/widgets/LayerManagerExportPanel.js 2010-01-26 17:26:16 UTC (rev 1821)
@@ -8,6 +8,10 @@
Ext.namespace('GeoExt.ux');
+/**
+ * @include LayerManager/ux/data/Export.js
+ */
+
/** api: (define)
* module = GeoExt.ux
* class = LayerManagerExportPanel
@@ -205,4 +209,4 @@
});
/** api: xtype = gxux_layermanagerexportpanel */
-Ext.reg('gxux_layermanagerexportpanel', GeoExt.ux.LayerManagerExportPanel);
\ No newline at end of file
+Ext.reg('gxux_layermanagerexportpanel', GeoExt.ux.LayerManagerExportPanel);
Modified: sandbox/cmoullet/ux/LayerManager/ux/widgets/LayerManagerExportWindow.js
===================================================================
--- sandbox/cmoullet/ux/LayerManager/ux/widgets/LayerManagerExportWindow.js 2010-01-26 16:44:00 UTC (rev 1820)
+++ sandbox/cmoullet/ux/LayerManager/ux/widgets/LayerManagerExportWindow.js 2010-01-26 17:26:16 UTC (rev 1821)
@@ -8,6 +8,12 @@
Ext.namespace('GeoExt.ux');
+/**
+ * @include OpenLayers/Lang.js
+ * @include LayerManager/ux/downloadify/js/downloadify.min.js
+ * @include LayerManager/ux/utils/flash.js
+ */
+
/** private: property[scriptSource]
* ``String`` Source of this script: complete URL
*/
@@ -184,4 +190,4 @@
});
/** api: xtype = gxux_layermanagerexportwindow */
-Ext.reg('gxux_layermanagerexportwindow', GeoExt.ux.LayerManagerExportWindow);
\ No newline at end of file
+Ext.reg('gxux_layermanagerexportwindow', GeoExt.ux.LayerManagerExportWindow);
Modified: sandbox/cmoullet/ux/LayerManager/ux/widgets/LayerManagerImportPanel.js
===================================================================
--- sandbox/cmoullet/ux/LayerManager/ux/widgets/LayerManagerImportPanel.js 2010-01-26 16:44:00 UTC (rev 1820)
+++ sandbox/cmoullet/ux/LayerManager/ux/widgets/LayerManagerImportPanel.js 2010-01-26 17:26:16 UTC (rev 1821)
@@ -8,6 +8,12 @@
Ext.namespace('GeoExt.ux');
+/**
+ * @include LayerManager/ux/data/FormatStore.js
+ * @include LayerManager/ux/data/Import.js
+ * @include OpenLayers/Lang.js
+ */
+
/** api: (define)
* module = GeoExt.ux
* class = LayerManagerImportPanel
@@ -198,4 +204,4 @@
});
/** api: xtype = gxux_layermanagerimportpanel */
-Ext.reg('gxux_layermanagerimportpanel', GeoExt.ux.LayerManagerImportPanel);
\ No newline at end of file
+Ext.reg('gxux_layermanagerimportpanel', GeoExt.ux.LayerManagerImportPanel);
Modified: sandbox/cmoullet/ux/LayerManager/ux/widgets/LayerManagerWindow.js
===================================================================
--- sandbox/cmoullet/ux/LayerManager/ux/widgets/LayerManagerWindow.js 2010-01-26 16:44:00 UTC (rev 1820)
+++ sandbox/cmoullet/ux/LayerManager/ux/widgets/LayerManagerWindow.js 2010-01-26 17:26:16 UTC (rev 1821)
@@ -8,6 +8,12 @@
Ext.namespace('GeoExt.ux');
+/**
+ * @include OpenLayers/Lang.js
+ * @include LayerManager/ux/widgets/LayerManagerExportPanel.js
+ * @include LayerManager/ux/widgets/LayerManagerImportPanel.js
+ */
+
/** api: (define)
* module = GeoExt.ux
* class = LayerManagerWindow
@@ -115,4 +121,4 @@
});
/** api: xtype = gxux_layermanagerwindow */
-Ext.reg('gxux_layermanagerwindow', GeoExt.ux.LayerManagerWindow);
\ No newline at end of file
+Ext.reg('gxux_layermanagerwindow', GeoExt.ux.LayerManagerWindow);
More information about the Commits
mailing list