OpenLayers OpenLayers

Changeset 7979

Show
Ignore:
Timestamp:
09/08/08 13:43:34 (3 months ago)
Author:
pagameba
Message:

apply missing semicolons from r7975 (in 2.7 branch) to trunk

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/openlayers/lib/OpenLayers/Filter/Comparison.js

    r7866 r7979  
    145145         
    146146        this.value = this.value.replace( 
    147                 new RegExp("\\"+escapeChar+"(.|$)", "g"), "\\$1") 
     147                new RegExp("\\"+escapeChar+"(.|$)", "g"), "\\$1"); 
    148148        this.value = this.value.replace( 
    149149                new RegExp("\\"+singleChar, "g"), "."); 
  • trunk/openlayers/lib/OpenLayers/Format/Filter/v1.js

    r7951 r7979  
    6060     */ 
    6161    read: function(data) { 
    62         var obj = {} 
     62        var obj = {}; 
    6363        var filter = this.readers.ogc["Filter"].apply(this, [data, obj]); 
    6464        return obj.filter; 
  • trunk/openlayers/lib/OpenLayers/Format/GPX.js

    r7627 r7979  
    8787            for (var i=0, len=tracks.length; i<len; i++) { 
    8888                // Attributes are only in trk nodes, not trkseg nodes 
    89                 var attrs = {} 
     89                var attrs = {}; 
    9090                if(this.extractAttributes) { 
    9191                    attrs = this.parseAttributes(tracks[i]); 
     
    105105            var routes = doc.getElementsByTagName("rte"); 
    106106            for (var k=0, klen=routes.length; k<klen; k++) { 
    107                 var attrs = {} 
     107                var attrs = {}; 
    108108                if(this.extractAttributes) { 
    109109                    attrs = this.parseAttributes(routes[k]); 
  • trunk/openlayers/lib/OpenLayers/Handler/Box.js

    r7649 r7979  
    189189                yOffset: yOffset, 
    190190                newBoxModel: newBoxModel 
    191             } 
     191            }; 
    192192        } 
    193193        return this.boxCharacteristics; 
  • trunk/openlayers/lib/OpenLayers/Layer/FixedZoomLevels.js

    r7948 r7979  
    160160            // set on either the layer or the map. So we just use the  
    161161            // maximum limit as calculated by the layer's constants. 
    162             this.numZoomLevels = limitZoomLevels 
     162            this.numZoomLevels = limitZoomLevels; 
    163163        } 
    164164 
  • trunk/openlayers/lib/OpenLayers/Renderer/VML.js

    r7930 r7979  
    340340                    style.graphicWidth = size * aspectRatio; 
    341341                    style.graphicHeight = size; 
    342                     this.graphicRotate(node, xOffset, yOffset) 
     342                    this.graphicRotate(node, xOffset, yOffset); 
    343343                } 
    344344            }, this); 
     
    386386            "progid:DXImageTransform.Microsoft.Matrix(M11=" + costheta + 
    387387            ",M12=" + (-sintheta) + ",M21=" + sintheta + ",M22=" + costheta + 
    388             ",SizingMethod='auto expand')\n" 
     388            ",SizingMethod='auto expand')\n"; 
    389389 
    390390        // set the opacity (needed for the imagedata) 
     
    494494                } else if (parts.length == 4) { 
    495495                    return (1*parts[0] >= 2*parts[1]) ? "longdashdot" : 
    496                         "dashdot" 
     496                        "dashdot"; 
    497497                } 
    498498                return "solid"; 
  • trunk/openlayers/lib/OpenLayers/Request.js

    r7609 r7979  
    133133                } 
    134134            } 
    135         } 
     135        }; 
    136136         
    137137        // send request (optionally with data) and return 
  • trunk/openlayers/lib/OpenLayers/Util.js

    r7973 r7979  
    374374                } 
    375375            } 
    376             var guess = Math.floor(urls.length * Math.random()) 
     376            var guess = Math.floor(urls.length * Math.random()); 
    377377            var new_url = urls[guess]; 
    378378            k = 0; 
    379379            while(new_url == current_url && k++ < 4){ 
    380                 guess = Math.floor(urls.length * Math.random()) 
     380                guess = Math.floor(urls.length * Math.random()); 
    381381                new_url = urls[guess]; 
    382382            } 
     
    14031403            container.style.width = w + "px"; 
    14041404        } else if (size.h) { 
    1405             h = size.h 
     1405            h = size.h; 
    14061406            container.style.height = h + "px"; 
    14071407        }