跳转到内容

User:Wctaiwan/rewritePathVariant.js

维基百科,自由的百科全书

这是本页的一个历史版本,由Wctaiwan留言 | 贡献2021年12月18日 (六) 08:30 (make regex stricter)编辑。这可能和当前版本存在着巨大的差异。

注意:保存之后,你必须清除浏览器缓存才能看到做出的更改。Google ChromeFirefoxMicrosoft EdgeSafari:按住⇧ Shift键并单击工具栏的“刷新”按钮。参阅Help:绕过浏览器缓存以获取更多帮助。
/**
 * Work around https://phabricator.wikimedia.org/T223053 by rewriting link URLs
 *
 * Thanks to User:Legoktm for the idea and for technical assistance, and to
 * User:Jack Phoenix for reviewing the implementation.
 */

(function ($, mw) {
'use strict';

// Matches /zh-*/Foo and the variant query parameter in the current URL
var matchedPath = window.location.pathname.match(/^\/(zh-(?:cn|hk|mo|my|sg|tw))\//)
	|| window.location.search.match(/[&?]variant=(zh-(?:cn|hk|mo|my|sg|tw))/);

if (matchedPath == null) {
	return; // Path doesn't start with /zh-*/ or have a variant query paramter
}

var variant = matchedPath[1];

// Rewrite /wiki/Foo links to /zh-*/Foo
// touchstart is needed to handle "Open in Background" in Safari on iOS
$(document).on('click contextmenu touchstart', 'a[href^="/wiki/"]', function() {
	$(this).attr('href', function (_, originalPath) {
		return originalPath.replace(/^\/wiki\//, '/' + variant + '/');
	});
});

// Append &variant=zh-* to /zhwiki/w/index.php links
$(document).on('click contextmenu touchstart', 'a[href^="/zhwiki/w/index.php?"]', function() {
	$(this).attr('href', function (_, originalPath) {
		if (originalPath.indexOf('variant=') !== -1) {
			return originalPath; // Already has variant query parameter
		}
		return originalPath + '&variant=' + variant;
	});
});

})(jQuery, mediaWiki);