Index: trunk/phase3/resources/mediawiki.util/mediawiki.util.js |
— | — | @@ -455,7 +455,7 @@ |
456 | 456 | "|" / "}" / |
457 | 457 | "~" |
458 | 458 | */ |
459 | | - var rfc5322_atext = "a-z0-9!#$%&'*+-/=?^_`{|}�~", |
| 459 | + var rfc5322_atext = "a-z0-9!#$%&'*+-/=?^_`{|}�~", |
460 | 460 | |
461 | 461 | /** |
462 | 462 | * Next define the RFC 1034 'ldh-str' |
Index: trunk/phase3/resources/mediawiki.special/mediawiki.special.preferences.js |
— | — | @@ -7,37 +7,38 @@ |
8 | 8 | .addClass( 'jsprefs' ) |
9 | 9 | .before( $( '<ul id="preftoc"></ul>' ) ) |
10 | 10 | .children( 'fieldset' ) |
11 | | - .hide() |
12 | | - .addClass( 'prefsection' ) |
13 | | - .children( 'legend' ) |
14 | | - .addClass( 'mainLegend' ) |
15 | | - .each( function( i ) { |
16 | | - $(this).parent().attr( 'id', 'prefsection-' + i ); |
17 | | - if ( i === 0 ) { |
18 | | - $(this).parent().show(); |
19 | | - } |
20 | | - $( '#preftoc' ).append( |
21 | | - $( '<li></li>' ) |
22 | | - .addClass( i === 0 ? 'selected' : null ) |
23 | | - .append( |
24 | | - $( '<a></a>') |
25 | | - .text( $(this).text() ) |
26 | | - .attr( 'href', '#prefsection-' + i ) |
27 | | - .mousedown( function( e ) { |
28 | | - $(this).parent().parent().find( 'li' ).removeClass( 'selected' ); |
29 | | - $(this).parent().addClass( 'selected' ); |
30 | | - e.preventDefault(); |
31 | | - return false; |
32 | | - } ) |
33 | | - .click( function( e ) { |
34 | | - $( '#preferences > fieldset' ).hide(); |
35 | | - $( '#prefsection-' + i ).show(); |
36 | | - e.preventDefault(); |
37 | | - return false; |
38 | | - } ) |
39 | | - ) |
40 | | - ); |
41 | | - } ); |
| 11 | + .hide() |
| 12 | + .addClass( 'prefsection' ) |
| 13 | + .children( 'legend' ) |
| 14 | + .addClass( 'mainLegend' ) |
| 15 | + .each( function( i ) { |
| 16 | + $(this).parent().attr( 'id', 'prefsection-' + i ); |
| 17 | + if ( i === 0 ) { |
| 18 | + $(this).parent().show(); |
| 19 | + } |
| 20 | + $( '#preftoc' ).append( |
| 21 | + $( '<li></li>' ) |
| 22 | + .addClass( i === 0 ? 'selected' : null ) |
| 23 | + .append( |
| 24 | + $( '<a></a>') |
| 25 | + .text( $(this).text() ) |
| 26 | + .attr( 'href', '#prefsection-' + i ) |
| 27 | + .mousedown( function( e ) { |
| 28 | + $(this).parent().parent().find( 'li' ).removeClass( 'selected' ); |
| 29 | + $(this).parent().addClass( 'selected' ); |
| 30 | + e.preventDefault(); |
| 31 | + return false; |
| 32 | + } ) |
| 33 | + .click( function( e ) { |
| 34 | + $( '#preferences > fieldset' ).hide(); |
| 35 | + $( '#prefsection-' + i ).show(); |
| 36 | + e.preventDefault(); |
| 37 | + return false; |
| 38 | + } ) |
| 39 | + ) |
| 40 | + ); |
| 41 | + } |
| 42 | + ); |
42 | 43 | |
43 | 44 | /** |
44 | 45 | * Given an email validity status (true, false, null) update the label CSS class |