[Mapbender-commits] r6870 - trunk/mapbender/http/plugins

svn_mapbender at osgeo.org svn_mapbender at osgeo.org
Thu Sep 2 04:42:03 EDT 2010


Author: christoph
Date: 2010-09-02 08:42:03 +0000 (Thu, 02 Sep 2010)
New Revision: 6870

Modified:
   trunk/mapbender/http/plugins/mb_pane.js
Log:
added documentation

Modified: trunk/mapbender/http/plugins/mb_pane.js
===================================================================
--- trunk/mapbender/http/plugins/mb_pane.js	2010-09-02 08:41:17 UTC (rev 6869)
+++ trunk/mapbender/http/plugins/mb_pane.js	2010-09-02 08:42:03 UTC (rev 6870)
@@ -1,3 +1,45 @@
+/**
+ * Package: <Application element name>
+ *
+ * Description:
+ * <A description>
+ * 
+ * Files:
+ *  - <path and filename, like http/javascripts/mod_zoomIn1.php>
+ *
+ * SQL:
+ * > INSERT INTO gui_element(fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element, e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires, e_url) VALUES('<appId>','pane',1,1,'','','div','','',NULL ,NULL ,NULL ,NULL ,NULL ,'height:100%;width:100%','','div','../plugins/mb_pane.js','','','jq_layout','http://layout.jquery-dev.net');
+ * > INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES('<appId>', 'outer_pane', 'north', 'outer_pane_north', '' ,'var');
+ * > INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES('<appId>', 'outer_pane', 'south', 'outer_pane_south', '' ,'var');
+ * > INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES('<appId>', 'outer_pane', 'center', 'content_pane', '' ,'var');
+ *
+ * Help:
+ * http://www.mapbender.org/<wiki site name>
+ *
+ * Maintainer:
+ * http://www.mapbender.org/User:<user>
+ * 
+ * Parameters:
+ * <normal element var name>      - <type and description>
+ * <optional element var name>    - *[optional]* <type and description>
+ * <deprecated element var name>  - *[deprecated]* <type and description>
+ *
+ * License:
+ * Copyright (c) 2009, Open Source Geospatial Foundation
+ * This program is dual licensed under the GNU General Public License 
+ * and Simplified BSD license.  
+ * http://svn.osgeo.org/mapbender/trunk/mapbender/license/license.txt
+ */
+
+
+INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES('Metadateneditor_sprint15', 'outer_pane', 'layoutOptions', '{
+resizable: false,
+north__size:225,
+south__size:36
+}', '' ,'var');
+
+
+
 var $pane = $(this);
 
 var PaneApi = function (o) {



More information about the Mapbender_commits mailing list