OpenLayers OpenLayers

Changeset 5616

Show
Ignore:
Timestamp:
01/01/08 13:47:37 (1 year ago)
Author:
tschaub
Message:

merge r5561:HEAD from trunk

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • sandbox/tschaub/wmc/build/license.txt

    r5017 r5616  
    33  OpenLayers.js -- OpenLayers Map Viewer Library 
    44 
    5   Copyright 2005-2007 MetaCarta, Inc., released under the Clear BSD license. 
     5  Copyright 2005-2008 MetaCarta, Inc., released under the Clear BSD license. 
    66  Please see http://svn.openlayers.org/trunk/openlayers/license.txt 
    77  for the full text of the license. 
  • sandbox/tschaub/wmc/examples/multiserver.html

    r5362 r5616  
    3939    <div id="map"></div> 
    4040    <div id="docs"> 
    41   This is an example of using a WFS layer type. 
     41    Browsers typically limit the number of concurrent requests to the same server, based on hostname. In order to ake tiles load more quickly, it often makes sense to distribute requests over multiple hostnames to achieve more concurrency. Typically, browsers perform best with 3 different hostnames -- your performance may vary. (For example, if your server can't handle more than 2 requests simultaneously, then additional hostnames will not help you.)     
    4242   </div> 
    4343    
  • sandbox/tschaub/wmc/lib/OpenLayers.js

    r5615 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Ajax.js

    r5539 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
     
    249249            method:       'post', 
    250250            asynchronous: true, 
    251             contentType:  'application/x-www-form-urlencoded', 
    252             encoding:     'UTF-8', 
     251            contentType:  'application/xml', 
    253252            parameters:   '' 
    254253        }; 
     
    494493    /** 
    495494     * Method: dispatchException 
     495     * If the optional onException function is set, execute it 
     496     * and then dispatch the call to any other listener registered 
     497     * for onException. 
     498     *  
     499     * If no optional onException function is set, we suspect that 
     500     * the user may have also not used 
     501     * OpenLayers.Ajax.Responders.register to register a listener 
     502     * for the onException call.  To make sure that something 
     503     * gets done with this exception, only dispatch the call if there 
     504     * are listeners. 
     505     * 
     506     * If you explicitly want to swallow exceptions, set 
     507     * request.options.onException to an empty function (function(){}) 
     508     * or register an empty function with <OpenLayers.Ajax.Responders> 
     509     * for onException. 
    496510     *  
    497511     * Parameters: 
     
    499513     */ 
    500514    dispatchException: function(exception) { 
    501         (this.options.onException || 
    502             OpenLayers.Ajax.emptyFunction)(this, exception); 
    503         OpenLayers.Ajax.Responders.dispatch('onException', this, exception); 
     515        var handler = this.options.onException; 
     516        if(handler) { 
     517            // call options.onException and alert any other listeners 
     518            handler(this, exception); 
     519            OpenLayers.Ajax.Responders.dispatch('onException', this, exception); 
     520        } else { 
     521            // check if there are any other listeners 
     522            var listener = false; 
     523            var responders = OpenLayers.Ajax.Responders.responders; 
     524            for (var i = 0; i < responders.length; i++) { 
     525                if(responders[i].onException) { 
     526                    listener = true; 
     527                    break; 
     528                } 
     529            } 
     530            if(listener) { 
     531                // call all listeners 
     532                OpenLayers.Ajax.Responders.dispatch('onException', this, exception); 
     533            } else { 
     534                // let the exception through 
     535                throw exception; 
     536            } 
     537        } 
    504538    } 
    505539}); 
  • sandbox/tschaub/wmc/lib/OpenLayers/BaseTypes.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/BaseTypes/Bounds.js

    r5452 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/BaseTypes/Class.js

    r5002 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/BaseTypes/Element.js

    r4985 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/BaseTypes/LonLat.js

    r5452 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/BaseTypes/Pixel.js

    r4985 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/BaseTypes/Size.js

    r4985 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Console.js

    r4985 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Control.js

    r4985 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Control/ArgParser.js

    r5553 r5616  
    1 /* Cpyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Cpyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Control/Attribution.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Control/DragFeature.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Control/DragPan.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Control/DrawFeature.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Control/EditingToolbar.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Control/KeyboardDefaults.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Control/LayerSwitcher.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Control/MouseDefaults.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Control/MousePosition.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Control/MouseToolbar.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Control/NavToolbar.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Control/Navigation.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
     
    77 * @requires OpenLayers/Control/DragPan.js 
    88 * @requires OpenLayers/Handler/MouseWheel.js 
     9 * @requires OpenLayers/Handler/Click.js 
    910 */ 
    1011 
  • sandbox/tschaub/wmc/lib/OpenLayers/Control/OverviewMap.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Control/PanZoom.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Control/PanZoomBar.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Control/Panel.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Control/Permalink.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Control/Scale.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Control/SelectFeature.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Control/ZoomBox.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Control/ZoomToMaxExtent.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Events.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Feature.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Feature/Vector.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Feature/WFS.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Format.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Format/GML.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Format/GeoJSON.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Format/GeoRSS.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Format/JSON.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Format/KML.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Format/Text.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under a modified BSD license. 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under a modified BSD license. 
    22 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt  
    33 * for the full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Format/WFS.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Format/WKT.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Format/XML.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Geometry.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Geometry/Collection.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
    22 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
    33 * full text of the license. */ 
  • sandbox/tschaub/wmc/lib/OpenLayers/Geometry/Curve.js

    r5553 r5616  
    1 /* Copyright (c) 2006-2007 MetaCarta, Inc., published under the Clear BSD 
     1/* Copyright (c) 2006-2008 MetaC