r68450 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r68449‎ | r68450 | r68451 >
Date:12:23, 23 June 2010
Author:yaron
Status:deferred
Tags:
Comment:
Fixed various spelling errors
Modified paths:
  • /trunk/extensions/SemanticMediaWiki/RELEASE-NOTES (modified) (history)
  • /trunk/extensions/SemanticMediaWiki/includes/SMW_DV_String.php (modified) (history)
  • /trunk/extensions/SemanticMediaWiki/includes/SMW_ParseData.php (modified) (history)
  • /trunk/extensions/SemanticMediaWiki/includes/SMW_SemanticData.php (modified) (history)
  • /trunk/extensions/SemanticMediaWiki/includes/SMW_Setup.php (modified) (history)
  • /trunk/extensions/SemanticMediaWiki/includes/SMW_SetupLight.php (modified) (history)

Diff [purge]

Index: trunk/extensions/SemanticMediaWiki/RELEASE-NOTES
@@ -500,10 +500,10 @@
501501 relations and attributes is now counted
502502 * Improved ontology import feature, allowing to import ontologies and to
503503 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
506506 * Support for EXP-notation with numbers, as e.g. 2.345e13. Improved number
507 - formating in infobox.
 507+ formatting in infobox.
508508 * Configurable infobox: infobox can be hidden if empty, or switched off
509509 completely. This also works around a bug with MediaWiki galeries.
510510 * Prototype version of Special:Types, showing all available datatypes with
@@ -676,4 +676,4 @@
677677 * support for typed links [[link type::link target|link label]],
678678 * rendering of fact sheet on semantic relations at article bottom,
679679 * 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 @@
140140 *
141141 * @param $parseroutput ParserOutput object that contains the results of parsing which will
142142 * 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.
144144 * @param $makejobs Bool stating whether jobs should be created to trigger further updates if
145145 * this appears to be necessary after this update.
146146 *
@@ -410,4 +410,4 @@
411411 return true; // always return true, in order not to stop MW's hook processing!
412412 }
413413
414 -}
\ No newline at end of file
 414+}
Index: trunk/extensions/SemanticMediaWiki/includes/SMW_SetupLight.php
@@ -9,7 +9,7 @@
1010 * If used, this file replaces SMW_Setup.php. The files are never used together
1111 * since they define some functions of the same name.
1212 *
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.
1414 * @file
1515 * @ingroup SMW
1616 */
@@ -221,7 +221,7 @@
222222 $wgHooks['InternalParseBeforeLinks'][] = 'SMWParserExtensions::onInternalParseBeforeLinks'; // parse annotations in [[link syntax]]
223223 $wgHooks['ArticleDelete'][] = 'SMWParseData::onArticleDelete'; // delete annotations
224224 $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
226226 $wgHooks['ParserAfterTidy'][] = 'SMWParseData::onParserAfterTidy'; // fetch some MediaWiki data for replication in SMW's store
227227 $wgHooks['NewRevisionFromEditComplete'][] = 'SMWParseData::onNewRevisionFromEditComplete'; // fetch some MediaWiki data for replication in SMW's store
228228 // $wgHooks['OutputPageParserOutput'][] = 'SMWFactbox::onOutputPageParserOutput'; // copy some data for later Factbox display
Index: trunk/extensions/SemanticMediaWiki/includes/SMW_SemanticData.php
@@ -21,7 +21,7 @@
2222 class SMWSemanticData {
2323
2424 /**
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.
2626 *
2727 * @var boolean
2828 */
@@ -73,7 +73,7 @@
7474
7575 /**
7676 * 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
7878 * really acesses their value.
7979 *
8080 * @var boolean
@@ -345,4 +345,4 @@
346346 }
347347 }
348348
349 -}
\ No newline at end of file
 349+}
Index: trunk/extensions/SemanticMediaWiki/includes/SMW_DV_String.php
@@ -148,7 +148,7 @@
149149 }
150150
151151 /**
152 - * Special features for Type:Code formating.
 152+ * Special features for Type:Code formatting.
153153 */
154154 protected function getCodeDisplay( $value, $scroll = false ) {
155155 SMWOutputs::requireHeadItem( SMW_HEADER_STYLE );
Index: trunk/extensions/SemanticMediaWiki/includes/SMW_Setup.php
@@ -199,7 +199,7 @@
200200 $wgHooks['InternalParseBeforeLinks'][] = 'SMWParserExtensions::onInternalParseBeforeLinks'; // parse annotations in [[link syntax]]
201201 $wgHooks['ArticleDelete'][] = 'SMWParseData::onArticleDelete'; // delete annotations
202202 $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
204204 $wgHooks['ParserAfterTidy'][] = 'SMWParseData::onParserAfterTidy'; // fetch some MediaWiki data for replication in SMW's store
205205 $wgHooks['NewRevisionFromEditComplete'][] = 'SMWParseData::onNewRevisionFromEditComplete'; // fetch some MediaWiki data for replication in SMW's store
206206 $wgHooks['OutputPageParserOutput'][] = 'SMWFactbox::onOutputPageParserOutput'; // copy some data for later Factbox display

Status & tagging log