Index: trunk/extensions/SemanticMaps/INSTALL |
— | — | @@ -1,4 +1,4 @@ |
2 | | -[[Semantic Maps 0.7.1]] |
| 2 | +[[Semantic Maps 0.7.2]] |
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/RELEASE-NOTES |
— | — | @@ -7,6 +7,11 @@ |
8 | 8 | http://www.mediawiki.org/wiki/Extension:Semantic_Maps/Version_history#Semantic_Maps_change_log |
9 | 9 | |
10 | 10 | |
| 11 | +=== Semantic Maps 0.7.2 === |
| 12 | +(2010-1x-xx) |
| 13 | + |
| 14 | +* ... |
| 15 | + |
11 | 16 | === Semantic Maps 0.7.1 === |
12 | 17 | (2010-10-20) |
13 | 18 | |
Index: trunk/extensions/SemanticMaps/includes/forminputs/SM_FormInput.php |
— | — | @@ -397,8 +397,6 @@ |
398 | 398 | ) |
399 | 399 | ); |
400 | 400 | |
401 | | - $params['centre']->lowerCaseValue = false; |
402 | | - |
403 | 401 | //$params['foobar'] = new Parameter('foobar'); |
404 | 402 | |
405 | 403 | // TODO |
Index: trunk/extensions/SemanticMaps/includes/queryprinters/SM_QueryPrinters.php |
— | — | @@ -71,7 +71,6 @@ |
72 | 72 | $params['staticlocations']->addAliases( 'locations' ); |
73 | 73 | $params['staticlocations']->addCriteria( new CriterionIsLocation( '~' ) ); |
74 | 74 | $params['staticlocations']->addManipulations( new MapsParamCoordSet( '~' ) ); |
75 | | - $params['staticlocations']->lowerCaseValue = false; |
76 | 75 | $params['staticlocations']->setDefault( array() ); |
77 | 76 | |
78 | 77 | $params['centre'] = new Parameter( |
— | — | @@ -83,7 +82,6 @@ |
84 | 83 | new CriterionIsLocation(), |
85 | 84 | ) |
86 | 85 | ); |
87 | | - $params['centre']->lowerCaseValue = false; |
88 | 86 | |
89 | 87 | $params['icon'] = new Parameter( |
90 | 88 | 'icon', |
— | — | @@ -94,7 +92,6 @@ |
95 | 93 | New CriterionNotEmpty() |
96 | 94 | ) |
97 | 95 | ); |
98 | | - $params['icon']->lowerCaseValue = false; |
99 | 96 | |
100 | 97 | $params['forceshow'] = new Parameter( |
101 | 98 | 'forceshow', |
— | — | @@ -121,14 +118,12 @@ |
122 | 119 | New CriterionNotEmpty() |
123 | 120 | ) |
124 | 121 | ); |
125 | | - $params['template']->lowerCaseValue = false; |
126 | 122 | |
127 | 123 | $params['title'] = new Parameter( |
128 | 124 | 'title', |
129 | 125 | Parameter::TYPE_STRING, |
130 | 126 | $egMapsDefaultTitle |
131 | 127 | ); |
132 | | - $params['title']->lowerCaseValue = false; |
133 | 128 | |
134 | 129 | $params['label'] = new Parameter( |
135 | 130 | 'label', |
— | — | @@ -136,7 +131,6 @@ |
137 | 132 | $egMapsDefaultLabel, |
138 | 133 | array( 'text' ) |
139 | 134 | ); |
140 | | - $params['label']->lowerCaseValue = false; |
141 | 135 | |
142 | 136 | return $params; |
143 | 137 | } |
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.1' ); |
| 42 | + define( 'SM_VERSION', '0.7.2 alpha' ); |
43 | 43 | |
44 | 44 | $useExtensionPath = version_compare( $wgVersion, '1.16', '>=' ) && isset( $wgExtensionAssetsPath ) && $wgExtensionAssetsPath; |
45 | 45 | $smgScriptPath = ( $useExtensionPath ? $wgExtensionAssetsPath : $wgScriptPath . '/extensions' ) . '/SemanticMaps'; |