User:Iceblock/vector.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.
importScript('User:Iceblock/Scripts/Seeking-help.js');
importScript('User:Iceblock/Scripts/Helpdesk.js');
importScript('User:Iceblock/prefixindexonecolumn.js');
// importScript('User:Iceblock/wlh.js');

// Adds a toolbox link to make a list of articles whose title begins with the current page title
$(function () {
    if ( wgNamespaceNumber == -1 )
        return;  // don't display for special pages
    var url = mw.config.get('wgServer')+mw.config.get('wgScript')+'?title=Special:Prefixindex&prefix=' + encodeURIComponent(mw.config.get('wgPageName'));
    mw.util.addPortletLink("p-tb", url, "Prefix index", "pt-prefixindex", "Make a list of articles whose title begins with the current page title");
});
 
// Adds a toolbox link to make an alphabetical list (Special:AllPages) of 345 articles, starting at the current page title 
$(function () {
    if ( wgNamespaceNumber == -1 )
        return;  // don't display for special pages
    var url = mw.config.get('wgServer')+mw.config.get('wgScript')+'?title=Special:Allpages&from=' + encodeURIComponent(mw.config.get('wgPageName'));
    mw.util.addPortletLink("p-tb", url, "All pages", "pt-allpages", "Make an alphabetical list of 345 artikler, starting at the current page title");
});