Index: trunk/extensions/SemanticMediaWiki/RELEASE-NOTES |
— | — | @@ -500,10 +500,10 @@ |
501 | 501 | relations and attributes is now counted |
502 | 502 | * Improved ontology import feature, allowing to import ontologies and to |
503 | 503 | update existing pages with new ontological information |
504 | | -* Experimental suport for date/time datatype |
505 | | -* More datypes with units: mass and time duration |
| 504 | +* Experimental support for date/time datatype |
| 505 | +* More datatypes with units: mass and time duration |
506 | 506 | * Support for EXP-notation with numbers, as e.g. 2.345e13. Improved number |
507 | | - formating in infobox. |
| 507 | + formatting in infobox. |
508 | 508 | * Configurable infobox: infobox can be hidden if empty, or switched off |
509 | 509 | completely. This also works around a bug with MediaWiki galeries. |
510 | 510 | * Prototype version of Special:Types, showing all available datatypes with |
— | — | @@ -676,4 +676,4 @@ |
677 | 677 | * support for typed links [[link type::link target|link label]], |
678 | 678 | * rendering of fact sheet on semantic relations at article bottom, |
679 | 679 | * Special:SearchSemantic (alpha), featuring autocompletion for |
680 | | - link types. |
\ No newline at end of file |
| 680 | + link types. |
Index: trunk/extensions/SemanticMediaWiki/includes/SMW_ParseData.php |
— | — | @@ -139,7 +139,7 @@ |
140 | 140 | * |
141 | 141 | * @param $parseroutput ParserOutput object that contains the results of parsing which will |
142 | 142 | * be stored. |
143 | | - * @param $title Title object specifying the page that should be safed. |
| 143 | + * @param $title Title object specifying the page that should be saved. |
144 | 144 | * @param $makejobs Bool stating whether jobs should be created to trigger further updates if |
145 | 145 | * this appears to be necessary after this update. |
146 | 146 | * |
— | — | @@ -410,4 +410,4 @@ |
411 | 411 | return true; // always return true, in order not to stop MW's hook processing! |
412 | 412 | } |
413 | 413 | |
414 | | -} |
\ No newline at end of file |
| 414 | +} |
Index: trunk/extensions/SemanticMediaWiki/includes/SMW_SetupLight.php |
— | — | @@ -9,7 +9,7 @@ |
10 | 10 | * If used, this file replaces SMW_Setup.php. The files are never used together |
11 | 11 | * since they define some functions of the same name. |
12 | 12 | * |
13 | | - * SMWLight does not supoert versions of MediaWiki older than 1.14.0. |
| 13 | + * SMWLight does not support versions of MediaWiki older than 1.14.0. |
14 | 14 | * @file |
15 | 15 | * @ingroup SMW |
16 | 16 | */ |
— | — | @@ -221,7 +221,7 @@ |
222 | 222 | $wgHooks['InternalParseBeforeLinks'][] = 'SMWParserExtensions::onInternalParseBeforeLinks'; // parse annotations in [[link syntax]] |
223 | 223 | $wgHooks['ArticleDelete'][] = 'SMWParseData::onArticleDelete'; // delete annotations |
224 | 224 | $wgHooks['TitleMoveComplete'][] = 'SMWParseData::onTitleMoveComplete'; // move annotations |
225 | | - $wgHooks['LinksUpdateConstructed'][] = 'SMWParseData::onLinksUpdateConstructed'; // update data after template change and at safe |
| 225 | + $wgHooks['LinksUpdateConstructed'][] = 'SMWParseData::onLinksUpdateConstructed'; // update data after template change and at save |
226 | 226 | $wgHooks['ParserAfterTidy'][] = 'SMWParseData::onParserAfterTidy'; // fetch some MediaWiki data for replication in SMW's store |
227 | 227 | $wgHooks['NewRevisionFromEditComplete'][] = 'SMWParseData::onNewRevisionFromEditComplete'; // fetch some MediaWiki data for replication in SMW's store |
228 | 228 | // $wgHooks['OutputPageParserOutput'][] = 'SMWFactbox::onOutputPageParserOutput'; // copy some data for later Factbox display |
Index: trunk/extensions/SemanticMediaWiki/includes/SMW_SemanticData.php |
— | — | @@ -21,7 +21,7 @@ |
22 | 22 | class SMWSemanticData { |
23 | 23 | |
24 | 24 | /** |
25 | | - * States whether this is a stub object. Stubbing might happen on serialisation to safe DB space. |
| 25 | + * States whether this is a stub object. Stubbing might happen on serialisation to save DB space. |
26 | 26 | * |
27 | 27 | * @var boolean |
28 | 28 | */ |
— | — | @@ -73,7 +73,7 @@ |
74 | 74 | |
75 | 75 | /** |
76 | 76 | * States whether repeated values should be avoided. Not needing duplicte elimination |
77 | | - * (e.g. when loading from store) can safe much time, since objects can remain stubs until someone |
| 77 | + * (e.g. when loading from store) can save much time, since objects can remain stubs until someone |
78 | 78 | * really acesses their value. |
79 | 79 | * |
80 | 80 | * @var boolean |
— | — | @@ -345,4 +345,4 @@ |
346 | 346 | } |
347 | 347 | } |
348 | 348 | |
349 | | -} |
\ No newline at end of file |
| 349 | +} |
Index: trunk/extensions/SemanticMediaWiki/includes/SMW_DV_String.php |
— | — | @@ -148,7 +148,7 @@ |
149 | 149 | } |
150 | 150 | |
151 | 151 | /** |
152 | | - * Special features for Type:Code formating. |
| 152 | + * Special features for Type:Code formatting. |
153 | 153 | */ |
154 | 154 | protected function getCodeDisplay( $value, $scroll = false ) { |
155 | 155 | SMWOutputs::requireHeadItem( SMW_HEADER_STYLE ); |
Index: trunk/extensions/SemanticMediaWiki/includes/SMW_Setup.php |
— | — | @@ -199,7 +199,7 @@ |
200 | 200 | $wgHooks['InternalParseBeforeLinks'][] = 'SMWParserExtensions::onInternalParseBeforeLinks'; // parse annotations in [[link syntax]] |
201 | 201 | $wgHooks['ArticleDelete'][] = 'SMWParseData::onArticleDelete'; // delete annotations |
202 | 202 | $wgHooks['TitleMoveComplete'][] = 'SMWParseData::onTitleMoveComplete'; // move annotations |
203 | | - $wgHooks['LinksUpdateConstructed'][] = 'SMWParseData::onLinksUpdateConstructed'; // update data after template change and at safe |
| 203 | + $wgHooks['LinksUpdateConstructed'][] = 'SMWParseData::onLinksUpdateConstructed'; // update data after template change and at save |
204 | 204 | $wgHooks['ParserAfterTidy'][] = 'SMWParseData::onParserAfterTidy'; // fetch some MediaWiki data for replication in SMW's store |
205 | 205 | $wgHooks['NewRevisionFromEditComplete'][] = 'SMWParseData::onNewRevisionFromEditComplete'; // fetch some MediaWiki data for replication in SMW's store |
206 | 206 | $wgHooks['OutputPageParserOutput'][] = 'SMWFactbox::onOutputPageParserOutput'; // copy some data for later Factbox display |