Page MenuHomePhabricator
Paste P3313

git.wmflabs.js
ActivePublic

Authored by mmodell on Jun 29 2016, 3:11 PM.
// for testing gitblit redirects, this bit of javascript will
// replace all links on the current page that point to git.wikimedia.org,
// with equivalent links to git.wmflabs.org
for (link of document.querySelectorAll('a[href]')) {
link.href = link.href.replace('git.wikimedia', 'git.wmflabs' );
}