Index: trunk/phase3/skins/simple/main.css |
— | — | @@ -224,6 +224,8 @@ |
225 | 225 | } |
226 | 226 | #bodyContent a[href ^="irc://"], |
227 | 227 | #bodyContent a.extiw[href ^="irc://"], |
| 228 | +#bodyContent a[href ^="ircs://"], |
| 229 | +#bodyContent a.extiw[href ^="ircs://"], |
228 | 230 | .link-irc { |
229 | 231 | background: url("discussionitem_icon.gif") center right no-repeat; |
230 | 232 | padding-right: 18px; |
Index: trunk/phase3/skins/vector/screen.css |
— | — | @@ -1082,6 +1082,8 @@ |
1083 | 1083 | } |
1084 | 1084 | div#content a[href ^="irc://"], |
1085 | 1085 | div#content a.extiw[href ^="irc://"], |
| 1086 | +div#content a[href ^="ircs://"], |
| 1087 | +div#content a.extiw[href ^="ircs://"], |
1086 | 1088 | .link-irc { |
1087 | 1089 | /* @embed */ |
1088 | 1090 | background: url(images/talk-icon.png) center right no-repeat; |
— | — | @@ -1231,4 +1233,4 @@ |
1232 | 1234 | /* Tooltips are outside of the normal body code, so this helps make the size of the text sensible */ |
1233 | 1235 | .tipsy { |
1234 | 1236 | font-size: 0.8em; |
1235 | | -} |
\ No newline at end of file |
| 1237 | +} |
Index: trunk/phase3/skins/monobook/main.css |
— | — | @@ -516,6 +516,7 @@ |
517 | 517 | padding-right: 18px; |
518 | 518 | } |
519 | 519 | #bodyContent a.external[href ^="irc://"], |
| 520 | +#bodyContent a.external[href ^="ircs://"], |
520 | 521 | .link-irc { |
521 | 522 | /* @embed */ |
522 | 523 | background: url(discussionitem_icon.gif) center right no-repeat; |
— | — | @@ -1277,4 +1278,4 @@ |
1278 | 1279 | /* Tooltips are outside of the normal body code, so this helps make the size of the text sensible */ |
1279 | 1280 | .tipsy { |
1280 | 1281 | font-size: 127%; |
1281 | | -} |
\ No newline at end of file |
| 1282 | +} |
Index: trunk/phase3/skins/modern/main.css |
— | — | @@ -441,6 +441,8 @@ |
442 | 442 | } |
443 | 443 | #mw_content a[href ^="irc://"], |
444 | 444 | #mw_content a.extiw[href ^="irc://"], |
| 445 | +#mw_content a[href ^="ircs://"], |
| 446 | +#mw_content a.extiw[href ^="ircs://"], |
445 | 447 | .link-irc { |
446 | 448 | /* @embed */ |
447 | 449 | background: url(discussionitem_icon.gif) center right no-repeat; |
— | — | @@ -913,4 +915,4 @@ |
914 | 916 | /* @noflip */ |
915 | 917 | html > body.rtl div#mw_contentholder ul#filetoc { |
916 | 918 | display: block; |
917 | | -} |
\ No newline at end of file |
| 919 | +} |
Index: trunk/phase3/RELEASE-NOTES-1.19 |
— | — | @@ -20,6 +20,7 @@ |
21 | 21 | === New features in 1.19 === |
22 | 22 | * (bug 28916) A way to to toggle mw.config legacy globals settings from |
23 | 23 | LocalSettings.php has been created by introducing $wgLegacyJavaScriptGlobals. |
| 24 | +* (bug 28503) Support for ircs:// URL protocols |
24 | 25 | |
25 | 26 | === Bug fixes in 1.19 === |
26 | 27 | * (bug 10154) Don't allow user to specify days beyond $wgRCMaxAge. |
Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -2810,6 +2810,7 @@ |
2811 | 2811 | 'https://', |
2812 | 2812 | 'ftp://', |
2813 | 2813 | 'irc://', |
| 2814 | + 'ircs://', // @bug 28503 |
2814 | 2815 | 'gopher://', |
2815 | 2816 | 'telnet://', // Well if we're going to support the above.. -ævar |
2816 | 2817 | 'nntp://', // @bug 3808 RFC 1738 |