r19587 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r19586‎ | r19587 | r19588 >
Date:17:59, 22 January 2007
Author:brion
Status:old
Tags:
Comment:
* (bug 8719) Firefox release notes lie! Fix tooltips for Firefox 2 on x11;
accesskeys default settings appear to be same as Windows.
Modified paths:
  • /trunk/phase3/RELEASE-NOTES (modified) (history)
  • /trunk/phase3/includes/DefaultSettings.php (modified) (history)
  • /trunk/phase3/skins/common/wikibits.js (modified) (history)

Diff [purge]

Index: trunk/phase3/skins/common/wikibits.js
@@ -484,9 +484,7 @@
485485 || navigator.userAgent.toLowerCase().indexOf('mac') != -1
486486 || navigator.userAgent.toLowerCase().indexOf('konqueror') != -1 ) {
487487 tooltipAccessKeyPrefix = 'ctrl-';
488 -} else if (is_ff2_x11) {
489 - tooltipAccessKeyPrefix = 'ctrl-shift-';
490 -} else if (is_ff2_win) {
 488+} else if (is_ff2_x11 || is_ff2_win) {
491489 tooltipAccessKeyPrefix = 'alt-shift-';
492490 }
493491 var tooltipAccessKeyRegexp = /\[(ctrl-)?(alt-)?(shift-)?(esc-)?.\]$/;
Index: trunk/phase3/includes/DefaultSettings.php
@@ -1109,7 +1109,7 @@
11101110 * to ensure that client-side caches don't keep obsolete copies of global
11111111 * styles.
11121112 */
1113 -$wgStyleVersion = '51';
 1113+$wgStyleVersion = '52';
11141114
11151115
11161116 # Server-side caching:
Index: trunk/phase3/RELEASE-NOTES
@@ -141,6 +141,8 @@
142142 made with the new field left blank.
143143 * Allow sending per-user contribution requests to "contributions" query group
144144 * (bug 3717) Update user count for AuthPlugin account autocreation
 145+* (bug 8719) Firefox release notes lie! Fix tooltips for Firefox 2 on x11;
 146+ accesskeys default settings appear to be same as Windows.
145147
146148
147149 == Languages updated ==

Follow-up revisions

RevisionCommit summaryAuthorDate
r19620Merge a couple more cosmetic fixes for tooltips and bump to 1.9.1:...brion08:08, 24 January 2007