Changeset 1328

Show
Ignore:
Timestamp:
11/20/08 08:09:21 (2 months ago)
Author:
pvalsecc
Message:

Fixed natural docs

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/MapFish/client/mfbase/mapfish/widgets/print/Base.js

    r1307 r1328  
    5454    /** 
    5555     * APIProperty: map 
    56      * {<OpenLayers.Map>} - The OpenLayers Map object. 
     56     * {<OpenLayers.Map>} The OpenLayers Map object. 
    5757     */ 
    5858    map: null, 
     
    6868    /** 
    6969     * APIProperty: configUrl 
    70      * {String} - The URL to access .../config.json. Either this property or 
    71      *            config must be set. 
     70     * {String} The URL to access .../config.json. Either this property or 
     71     *          config must be set. 
    7272     */ 
    7373    configUrl: null, 
     
    7575    /** 
    7676     * APIProperty: config 
    77      * {Object} - The response from .../config.json. Either this property or 
    78      *            configUrl must be set. 
     77     * {Object} The response from .../config.json. Either this property or 
     78     *          configUrl must be set. 
    7979     */ 
    8080    config: null, 
     
    8282    /** 
    8383     * APIProperty: layerTree 
    84      * {<mapfish.widgets.LayerTree>} - An optional layer tree. Needed only if you 
    85       *                                want to display legends. 
     84     * {<mapfish.widgets.LayerTree>} An optional layer tree. Needed only if you 
     85      *                              want to display legends. 
    8686     */ 
    8787    layerTree: null, 
     
    8989    /** 
    9090     * APIProperty: grids 
    91      * {Object} - An optional dictionary of {Ext.grid.GridPanel}. Needed only 
    92      *            if you want to display search results. Can be function 
    93      *            (returning the dictionary) that will be called each time the 
    94      *            information is needed. 
     91     * {Object} An optional dictionary of {Ext.grid.GridPanel}. Needed only 
     92     *          if you want to display search results. Can be function 
     93     *          (returning the dictionary) that will be called each time the 
     94     *          information is needed. 
    9595     */ 
    9696    grids: null, 
     
    105105    /** 
    106106     * Property: pageDrag 
    107      * {<OpenLayers.Control.DragFeature>} - The control to move the extent. 
     107     * {<OpenLayers.Control.DragFeature>} The control to move the extent. 
    108108     */ 
    109109    pageDrag: null, 
     
    111111    /** 
    112112     * Property: rotateHandle 
    113      * {<OpenLayers.Feature.Vector>} - The handle used to rotate the page. 
     113     * {<OpenLayers.Feature.Vector>} The handle used to rotate the page. 
    114114     */ 
    115115    rotateHandle: null, 
     
    117117    /** 
    118118     * Property: layer 
    119      * {<OpenLayers.Layer.Vector>} - The layer to draw the extent 
     119     * {<OpenLayers.Layer.Vector>} The layer to draw the extent 
    120120     */ 
    121121    layer: null, 
     
    123123    /** 
    124124     * Property: mask 
    125      * {Ext.LoadingMask} - The mask used when loading the configuration or 
    126      *                     when generating the PDF 
     125     * {Ext.LoadingMask} The mask used when loading the configuration or 
     126     *                   when generating the PDF 
    127127     */ 
    128128    mask: null, 
  • trunk/MapFish/client/mfbase/mapfish/widgets/print/MultiPage.js

    r1299 r1328  
    4848    /** 
    4949     * APIProperty: formConfig 
    50      * {Object} - The configuration options passed to the form that edits the 
    51      *            options common to every pages. 
     50     * {Object} The configuration options passed to the form that edits the 
     51     *          options common to every pages. 
    5252     * 
    5353     * Can contain additional items for custom fields. Their values will be 
     
    5858    /** 
    5959     * APIProperty: columns 
    60      * {Array} - The Additionnal columns for "per page" custom fields. 
     60     * {Array} The Additionnal columns for "per page" custom fields. 
    6161     */ 
    6262    columns: null, 
     
    6464    /** 
    6565     * APIProperty: zoomToExtentEnabled 
    66      * {Boolean} - If true, the map will try to always show the selected page's 
    67      *             extent by zooming out if necessary. 
     66     * {Boolean} If true, the map will try to always show the selected page's 
     67     *           extent by zooming out if necessary. 
    6868     */ 
    6969    zoomToExtentEnabled: true, 
     
    7171    /** 
    7272     * Property: grid 
    73      * {Ext.grid.EditorGridPanel} - The pages. 
     73     * {Ext.grid.EditorGridPanel} The pages. 
    7474     */ 
    7575    grid: null, 
     
    7777    /** 
    7878     * Property: printButton 
    79      * {Ext.Button} - The "print" button. 
     79     * {Ext.Button} The "print" button. 
    8080     */ 
    8181    printButton: null, 
  • trunk/MapFish/client/mfbase/mapfish/widgets/print/SimpleForm.js

    r1251 r1328  
    4848    /** 
    4949     * APIProperty: formConfig 
    50      * {Object} - The configuration options passed to the form. 
     50     * {Object} The configuration options passed to the form. 
    5151     * 
    5252     * Can contain additionnal items for custom fields. Their values will be 
     
    5757    /** 
    5858     * Property: scale 
    59      * {Ext.form.ComboBox} - The scale combobox. 
     59     * {Ext.form.ComboBox} The scale combobox. 
    6060     */ 
    6161    scale: null, 
     
    6363    /** 
    6464     * Property: rectangle 
    65      * {<OpenLayers.Feature.Vector>} - The rectangle representing the extent. 
     65     * {<OpenLayers.Feature.Vector>} The rectangle representing the extent. 
    6666     */ 
    6767    rectangle: null, 
     
    6969    /** 
    7070     * Property: rotation 
    71      * {Ext.form.TextField} - The text field for editing the rotation. 
     71     * {Ext.form.TextField} The text field for editing the rotation. 
    7272     */ 
    7373    rotation: null, 
     
    7575    /** 
    7676     * APIProperty: infoPanel 
    77      * {Ext.Panel} - An optional panel displayed after form fields. 
     77     * {Ext.Panel} An optional panel displayed after form fields. 
    7878     */ 
    7979    infoPanel: null,