Index: trunk/extensions/SemanticMaps/INSTALL |
— | — | @@ -1,4 +1,4 @@ |
2 | | -[[Semantic Maps 0.7.2]] |
| 2 | +[[Semantic Maps 0.7.3]] |
3 | 3 | |
4 | 4 | Make sure you have Semantic MediaWiki, Maps and Validator successfully installed before proceeding |
5 | 5 | withthe installation. Semantic Maps and Maps are always released together. This means you should |
Index: trunk/extensions/SemanticMaps/includes/services/OpenLayers/SM_OpenLayersQP.php |
— | — | @@ -34,8 +34,6 @@ |
35 | 35 | wfMsg( 'maps-loading-map' ) |
36 | 36 | ); |
37 | 37 | |
38 | | - $this->service->addLayerDependencies( $this->layers[1] ); |
39 | | - |
40 | 38 | $langCode = $wgLang->getCode(); |
41 | 39 | |
42 | 40 | MapsMapper::addInlineScript( $this->service, <<<EOT |
— | — | @@ -44,7 +42,7 @@ |
45 | 43 | $this->centreLat, |
46 | 44 | $this->centreLon, |
47 | 45 | $this->zoom, |
48 | | - {$this->layers[0]}, |
| 46 | + {$this->layers}, |
49 | 47 | [$this->controls], |
50 | 48 | $this->markerJs, |
51 | 49 | "$langCode" |
Index: trunk/extensions/SemanticMaps/includes/services/OpenLayers/SM_OpenLayersFormInput.php |
— | — | @@ -47,8 +47,6 @@ |
48 | 48 | wfMsg( 'maps-loading-map' ) |
49 | 49 | ); |
50 | 50 | |
51 | | - $this->service->addLayerDependencies( $this->layers[1] ); |
52 | | - |
53 | 51 | $langCode = $wgLang->getCode(); |
54 | 52 | |
55 | 53 | MapsMapper::addInlineScript( $this->service,<<<EOT |
— | — | @@ -60,7 +58,7 @@ |
61 | 59 | $this->zoom, |
62 | 60 | {$this->markerCoords['lat']}, |
63 | 61 | {$this->markerCoords['lon']}, |
64 | | - {$this->layers[0]}, |
| 62 | + {$this->layers}, |
65 | 63 | [$this->controls], |
66 | 64 | "$langCode" |
67 | 65 | ); |
Index: trunk/extensions/SemanticMaps/SemanticMaps.php |
— | — | @@ -38,7 +38,7 @@ |
39 | 39 | |
40 | 40 | // Only initialize the extension when all dependencies are present. |
41 | 41 | if ( defined( 'Maps_VERSION' ) && defined( 'SMW_VERSION' ) ) { |
42 | | - define( 'SM_VERSION', '0.7.2' ); |
| 42 | + define( 'SM_VERSION', '0.7.3 alpha' ); |
43 | 43 | |
44 | 44 | $useExtensionPath = version_compare( $wgVersion, '1.16', '>=' ) && isset( $wgExtensionAssetsPath ) && $wgExtensionAssetsPath; |
45 | 45 | $smgScriptPath = ( $useExtensionPath ? $wgExtensionAssetsPath : $wgScriptPath . '/extensions' ) . '/SemanticMaps'; |