Jump to content

User:Mike Dillon/Scripts/build-urls.js

From Wikipedia, the free encyclopedia
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
// <pre><nowiki>

function buildUrl(base, params) {
    var url = base;
    if (url == null) return null;

    var queryString = "";
    if (params != null) {
        var delim = "?";
        for (var p in params) {
            queryString += delim + escape(p) + "=" + escape(params[p]);
            delim = "&";
        }
    }
    url += queryString;

    return url;
}

function buildActionUrl(action, title, params) {
    if (params == null) params = {};
    params['title'] = title;
    params['action'] = action;
    return buildUrl(mw.config.get('wgServer') + mw.config.get('wgScriptPath') + '/index.php', params);
}

function buildRawJavascriptUrl(title, params) {
    if (params == null) params = {};
    params['ctype'] = 'text/javascript';
    params['dontcountme'] = 's';
    return buildActionUrl('raw', title, params);
}

// </nowiki></pre>