OpenLayers OpenLayers

Changeset 8037

Show
Ignore:
Timestamp:
09/19/08 02:00:17 (2 months ago)
Author:
fredj
Message:

Add copyright headers and 'Inherits from'. Comments only modification.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/openlayers/lib/OpenLayers/Control/Attribution.js

    r7627 r8037  
    1111 * Add attribution from layers to the map display. Uses 'attribution' property 
    1212 * of each layer. 
     13 * 
     14 * Inherits from: 
     15 *  - <OpenLayers.Control> 
    1316 */ 
    1417OpenLayers.Control.Attribution =  
  • trunk/openlayers/lib/OpenLayers/Control/EditingToolbar.js

    r7627 r8037  
    1414/** 
    1515 * Class: OpenLayers.Control.EditingToolbar  
     16 * 
     17 * Inherits from: 
     18 *  - <OpenLayers.Control.Panel> 
    1619 */ 
    1720OpenLayers.Control.EditingToolbar = OpenLayers.Class( 
  • trunk/openlayers/lib/OpenLayers/Control/MousePosition.js

    r7163 r8037  
    1010/** 
    1111 * Class: OpenLayers.Control.MousePosition 
     12 * 
     13 * Inherits from: 
     14 *  - <OpenLayers.Control> 
    1215 */ 
    1316OpenLayers.Control.MousePosition = OpenLayers.Class(OpenLayers.Control, { 
  • trunk/openlayers/lib/OpenLayers/Control/Pan.js

    r7950 r8037  
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
     2 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
     3 * full text of the license. */ 
     4 
    15/** 
    26 * @requires OpenLayers/Control.js 
     
    59/** 
    610 * Class: OpenLayers.Control.Pan 
     11 * 
     12 * Inherits from: 
     13 *  - <OpenLayers.Control> 
    714 */ 
    815OpenLayers.Control.Pan = OpenLayers.Class(OpenLayers.Control, { 
  • trunk/openlayers/lib/OpenLayers/Control/PanPanel.js

    r7956 r8037  
    1414 *   <link rel="stylesheet" href="../theme/default/ie6-style.css" type="text/css" /> 
    1515 * <![endif]--> 
    16  *  
     16 * 
     17 * Inherits from: 
     18 *  - <OpenLayers.Control.Panel>  
    1719 */ 
    1820OpenLayers.Control.PanPanel = OpenLayers.Class(OpenLayers.Control.Panel, { 
  • trunk/openlayers/lib/OpenLayers/Control/Scale.js

    r6727 r8037  
    1111 * Class: OpenLayers.Control.Scale 
    1212 * Display a small scale indicator on the map. 
     13 * 
    1314 * Inherits from: 
    1415 *  - <OpenLayers.Control> 
  • trunk/openlayers/lib/OpenLayers/Control/ZoomIn.js

    r7950 r8037  
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
     2 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
     3 * full text of the license. */ 
     4 
    15/** 
    26 * @requires OpenLayers/Control.js 
     
    59/** 
    610 * Class: OpenLayers.Control.ZoomIn 
     11 * 
     12 * Inherits from: 
     13 *  - <OpenLayers.Control> 
    714 */ 
    815OpenLayers.Control.ZoomIn = OpenLayers.Class(OpenLayers.Control, { 
  • trunk/openlayers/lib/OpenLayers/Control/ZoomOut.js

    r7950 r8037  
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
     2 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
     3 * full text of the license. */ 
     4 
    15/** 
    26 * @requires OpenLayers/Control.js 
     
    59/** 
    610 * Class: OpenLayers.Control.ZoomOut 
     11 * 
     12 * Inherits from: 
     13 *  - <OpenLayers.Control> 
    714 */ 
    815OpenLayers.Control.ZoomOut = OpenLayers.Class(OpenLayers.Control, { 
  • trunk/openlayers/lib/OpenLayers/Control/ZoomPanel.js

    r7956 r8037  
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
     2 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
     3 * full text of the license. */ 
     4 
    15/** 
    26 * @requires OpenLayers/Control/Panel.js 
     
    1721 * <![endif]--> 
    1822 *  
     23 * Inherits from: 
     24 *  - <OpenLayers.Control.Panel> 
    1925 */ 
    2026OpenLayers.Control.ZoomPanel = OpenLayers.Class(OpenLayers.Control.Panel, { 
  • trunk/openlayers/lib/OpenLayers/Format/WFS.js

    r7675 r8037  
    1010 * Class: OpenLayers.Format.WFS 
    1111 * Read/Write WFS.  
     12 * 
     13 * Inherits from: 
     14 *  - <OpenLayers.Format.GML> 
    1215 */ 
    1316OpenLayers.Format.WFS = OpenLayers.Class(OpenLayers.Format.GML, {