Index: trunk/extensions/SemanticImageInput/RELEASE-NOTES |
— | — | @@ -3,8 +3,14 @@ |
4 | 4 | Extension page on mediawiki.org: https://www.mediawiki.org/wiki/Extension:Semantic_Image_Input |
5 | 5 | Latest version of the release notes: http://svn.wikimedia.org/viewvc/mediawiki/trunk/extensions/SemanticImageInput/RELEASE-NOTES?view=co |
6 | 6 | |
| 7 | + |
| 8 | +=== Version 0.2 === |
| 9 | +201x-xx-xx |
| 10 | + |
| 11 | +* Fixed some Internet Explorer specific JavaScript issues. |
| 12 | + |
7 | 13 | === Version 0.1 === |
8 | | -2011-11-xx |
| 14 | +2011-11-10 |
9 | 15 | |
10 | 16 | Initial release with these features: |
11 | 17 | |
Index: trunk/extensions/SemanticImageInput/resources/sii.instantImage.js |
— | — | @@ -3,6 +3,7 @@ |
4 | 4 | * |
5 | 5 | * TODO: this was written in a sprint; could be made less evil. |
6 | 6 | * |
| 7 | + * @licence GNU GPL v3+ |
7 | 8 | * @author Jeroen De Dauw <jeroendedauw at gmail dot com> |
8 | 9 | */ |
9 | 10 | |
Index: trunk/extensions/SemanticImageInput/resources/jquery.instantImage.js |
— | — | @@ -3,6 +3,7 @@ |
4 | 4 | * |
5 | 5 | * TODO: this was written in a sprint; could be made less evil. |
6 | 6 | * |
| 7 | + * @licence GNU GPL v3+ |
7 | 8 | * @author Jeroen De Dauw <jeroendedauw at gmail dot com> |
8 | 9 | */ |
9 | 10 | |
— | — | @@ -31,7 +32,7 @@ |
32 | 33 | 'action': 'query', |
33 | 34 | 'format': 'json', |
34 | 35 | 'titles': this.options.imagename, |
35 | | - 'redirects': 1, |
| 36 | + 'redirects': 1 |
36 | 37 | }, |
37 | 38 | function( data ) { |
38 | 39 | if ( data.query && data.query.redirects ) { |
— | — | @@ -192,7 +193,7 @@ |
193 | 194 | _this.getRaw( _this.dispReqResult ); |
194 | 195 | } ); |
195 | 196 | } |
196 | | - } |
| 197 | + }; |
197 | 198 | |
198 | 199 | this.init = function() { |
199 | 200 | $.extend( this.options, opts ); |
Index: trunk/extensions/SemanticImageInput/SemanticImageInput.php |
— | — | @@ -34,7 +34,7 @@ |
35 | 35 | die( '<b>Error:</b> You need to have <a href="https://www.mediawiki.org/wiki/Extension:Semantic_Forms">Semantic Forms</a> installed in order to use Semantic Image Input.<br />' ); |
36 | 36 | } |
37 | 37 | |
38 | | -define( 'SII_VERSION', '0.1' ); |
| 38 | +define( 'SII_VERSION', '0.2 alpha' ); |
39 | 39 | |
40 | 40 | $wgExtensionCredits['semantic'][] = array( |
41 | 41 | 'path' => __FILE__, |