mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	Complemented 1.6 release notes for 457c16d0d6
				
					
				
			And accessorily added missing bits fixing #23293.
Forward port of 2cbafd814 from stable/1.7.x
			
			
This commit is contained in:
		| @@ -359,13 +359,13 @@ MapWidget.prototype.getControls = function(layer) { | ||||
|     this.controls = [new OpenLayers.Control.Navigation()]; | ||||
|     if (!this.options.modifiable && layer.features.length) | ||||
|         return; | ||||
|     if (this.options.geom_name.indexOf('LineString') >= 0 || this.options.geom_name == 'Unknown') { | ||||
|     if (this.options.geom_name.indexOf('LineString') >= 0 || this.options.geom_name == 'GeometryCollection' || this.options.geom_name == 'Unknown') { | ||||
|         this.controls.push(new OpenLayers.Control.DrawFeature(layer, OpenLayers.Handler.Path, {'displayClass': 'olControlDrawFeaturePath'})); | ||||
|     } | ||||
|     if (this.options.geom_name.indexOf('Polygon') >= 0 || this.options.geom_name == 'Unknown') { | ||||
|     if (this.options.geom_name.indexOf('Polygon') >= 0 || this.options.geom_name == 'GeometryCollection' || this.options.geom_name == 'Unknown') { | ||||
|         this.controls.push(new OpenLayers.Control.DrawFeature(layer, OpenLayers.Handler.Polygon, {'displayClass': 'olControlDrawFeaturePolygon'})); | ||||
|     } | ||||
|     if (this.options.geom_name.indexOf('Point') >= 0 || this.options.geom_name == 'Unknown') { | ||||
|     if (this.options.geom_name.indexOf('Point') >= 0 || this.options.geom_name == 'GeometryCollection' || this.options.geom_name == 'Unknown') { | ||||
|         this.controls.push(new OpenLayers.Control.DrawFeature(layer, OpenLayers.Handler.Point, {'displayClass': 'olControlDrawFeaturePoint'})); | ||||
|     } | ||||
|     if (this.options.modifiable) { | ||||
|   | ||||
| @@ -36,3 +36,7 @@ Bugfixes | ||||
|  | ||||
| * Prevented ``UnicodeDecodeError`` in ``runserver`` with non-UTF-8 and | ||||
|   non-English locale (`#23265 <https://code.djangoproject.com/ticket/23265>`_). | ||||
|  | ||||
| * Fixed JavaScript errors while editing multi-geometry objects in the OpenLayers | ||||
|   widget (`#23137 <https://code.djangoproject.com/ticket/23137>`_, | ||||
|   `#23293 <https://code.djangoproject.com/ticket/23293>`_). | ||||
|   | ||||
		Reference in New Issue
	
	Block a user