r40881 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r40880‎ | r40881 | r40882 >
Date:20:44, 15 September 2008
Author:siebrand
Status:old
Tags:
Comment:
* Fix common spelling error (seperate -> separate)
Modified paths:
  • /trunk/extensions/CentralAuth/central-auth.sql (modified) (history)
  • /trunk/extensions/CentralAuth/db_patches/patch-wikisets.sql (modified) (history)
  • /trunk/extensions/MetavidWiki/skins/mv_embed/jquery/jquery-1.2.6.js (modified) (history)
  • /trunk/extensions/MetavidWiki/skins/mv_embed/jquery/plugins/jquery.datePicker.js (modified) (history)
  • /trunk/extensions/MetavidWiki/skins/mv_embed/mv_embed.js (modified) (history)
  • /trunk/extensions/SemanticMediaWiki/RELEASE-NOTES (modified) (history)
  • /trunk/extensions/Translate/README (modified) (history)
  • /trunk/phase3/HISTORY (modified) (history)

Diff [purge]

Index: trunk/phase3/HISTORY
@@ -3046,7 +3046,7 @@
30473047 * (bug 6701) Kazakh language variants in MessagesEn.php
30483048 * (bug 7335) SVN revision check in Special:Version fails on SVN 1.4 working copy
30493049 * (bug 6518) Replaced 'lastmodified' with 'lastmodifiedat' and 'lastmodifiedby' with 'lastmodifiedatby'
3050 - with seperated parameters for date and time to allow better localisation. Updated all message files
 3050+ with separated parameters for date and time to allow better localisation. Updated all message files
30513051 to display the old format for compatibility.
30523052 * (bug 7357) Make supposedly static methods of Skin actually static
30533053 * Added info text to Special:Deadendpages and Special:Lonelypages
@@ -5119,7 +5119,7 @@
51205120 * Fixed a bug in Special:Contributions that caused the namespace selection to
51215121 be forgotten between submits
51225122 * Special:Watchlist/edit now has namespace subheadings
5123 -* (bug 1714) the "Save page" button now has right margin to seperate it from
 5123+* (bug 1714) the "Save page" button now has right margin to separate it from
51245124 "Show preview" and "Show changes"
51255125 * Special:Statistics now supports action=raw, useful for bots designed to
51265126 harwest e.g. article counts from multiple wikis.
Index: trunk/extensions/SemanticMediaWiki/RELEASE-NOTES
@@ -295,7 +295,7 @@
296296 * New output format "timeline" for inline queries that deal with dates. Available
297297 parameters are: timelinestart (name of start date attribute), timelineend (name
298298 of end date attribute, if any), tiemlinesize (CSS-encoded height), timelinebands
299 - (comma-seperated list of bands such as DAY, WEEK, MONTH, YEAR, ...), and
 299+ (comma-separated list of bands such as DAY, WEEK, MONTH, YEAR, ...), and
300300 timelineposition (one of start, end, today, middle).
301301 * Complete RDF export is now possible with a maintenance script, which can e.g. be
302302 run periodically on a server to create RDF files.
Index: trunk/extensions/CentralAuth/central-auth.sql
@@ -144,7 +144,7 @@
145145 ws_name varchar(255) not null,
146146 -- Type of set: opt-in or opt-out
147147 ws_type enum ('optin', 'optout'),
148 - -- Wikis in that set. Why isn't it a seperate table?
 148+ -- Wikis in that set. Why isn't it a separate table?
149149 -- Because we can just use such simple list, we don't need complicated queries on it
150150 -- Let's suppose that max length of db name is 31 (32 with ","), then we have space for
151151 -- 2048 wikis. More than we need
Index: trunk/extensions/CentralAuth/db_patches/patch-wikisets.sql
@@ -7,7 +7,7 @@
88 ws_name varchar(255) not null,
99 -- Type of set: opt-in or opt-out
1010 ws_type enum ('optin', 'optout'),
11 - -- Wikis in that set. Why isn't it a seperate table?
 11+ -- Wikis in that set. Why isn't it a separate table?
1212 -- Because we can just use such simple list, we don't need complicated queries on it
1313 -- Let's suppose that max length of db name is 31 (32 with ","), then we have space for
1414 -- 2048 wikis. More than we need
Index: trunk/extensions/MetavidWiki/skins/mv_embed/jquery/plugins/jquery.datePicker.js
@@ -182,7 +182,7 @@
183183 * @option Number horizontalPosition The horizontal alignment of the popped up date picker to the matched element. One of $.dpConst.POS_LEFT and $.dpConst.POS_RIGHT.
184184 * @option Number verticalOffset The number of pixels offset from the defined verticalPosition of this date picker that it should pop up in. Default in 0.
185185 * @option Number horizontalOffset The number of pixels offset from the defined horizontalPosition of this date picker that it should pop up in. Default in 0.
186 - * @option (Function|Array) renderCallback A reference to a function (or an array of seperate functions) that is called as each cell is rendered and which can add classes and event listeners to the created nodes. Each callback function will receive four arguments; a jquery object wrapping the created TD, a Date object containing the date this TD represents, a number giving the currently rendered month and a number giving the currently rendered year. Default is no callback.
 186+ * @option (Function|Array) renderCallback A reference to a function (or an array of separate functions) that is called as each cell is rendered and which can add classes and event listeners to the created nodes. Each callback function will receive four arguments; a jquery object wrapping the created TD, a Date object containing the date this TD represents, a number giving the currently rendered month and a number giving the currently rendered year. Default is no callback.
187187 * @option String hoverClass The class to attach to each cell when you hover over it (to allow you to use hover effects in IE6 which doesn't support the :hover pseudo-class on elements other than links). Default is dp-hover. Pass false if you don't want a hover class.
188188 * @type jQuery
189189 * @name datePicker
Index: trunk/extensions/MetavidWiki/skins/mv_embed/jquery/jquery-1.2.6.js
@@ -1923,7 +1923,7 @@
19241924 types = types.type;
19251925 }
19261926
1927 - // Handle multiple events seperated by a space
 1927+ // Handle multiple events separated by a space
19281928 // jQuery(...).unbind("mouseover mouseout", fn);
19291929 jQuery.each(types.split(/\s+/), function(index, type){
19301930 // Namespaced event handlers
Index: trunk/extensions/MetavidWiki/skins/mv_embed/mv_embed.js
@@ -1065,7 +1065,7 @@
10661066 //parse roe if not already done:
10671067 this.getParseCMML();
10681068 },
1069 - //@@todo seperate out data loader & data display
 1069+ //@@todo separate out data loader & data display
10701070 getParseCMML:function(){
10711071 js_log("load cmml from roe: "+ this.pe.roe);
10721072 //read the current play head time (if embed object is playing)
Index: trunk/extensions/Translate/README
@@ -156,6 +156,6 @@
157157 == Changes in version 4 ==
158158 * New "task-based" interface
159159 * Paging of messages
160 -* Seperation of translation and interface language
 160+* Separation of translation and interface language
161161 * New mediawiki extensions available for translation
162162 * Support for extensions which use splitted i18n files

Status & tagging log