User:EpochFail/wikignome.js: Difference between revisions

Content deleted Content added
No edit summary
m Maintenance: Fixing deprecated call to importScriptURI (mw:ResourceLoader/Migration_guide_(users)#importScriptURI)
 
(17 intermediate revisions by 3 users not shown)
Line 1:
 
/*******************************************************************************
,, ,,
`7MMF' A `7MF' db `7MM db
`7MMF' A `7MF' db `7MM db MA ,MA ,V MM
`MA VM: ,MA VVM: ,V `7MM MM ,MP' `7MM
VM: ,VVM: ,V `7MM MM. M' MM. ,MPM' `7MM MM MM ;Y MM
`MM. MA' `MM. MA' MM MM ;YMm MM
:MM; :MM; MM MM `Mb. MM
`MM A' `MM A' MM MM;Mm MM VF VF .JMML. .JMML. YA. .JMML.
:MM; :MM; MM MM `Mb. MM
VF VF .JMML. .JMML. YA. .JMML.
 
.g8"""bgd
.dP' `M
dM' ` `7MMpMMMb. ,pW"Wq. `7MMpMMMb.pMMMb. .gP"Ya
.dP' `M MM MM MM 6W' `Wb MM MM MM ,M' Yb
dMMM. `7MMF' MM `MM `7MMpMMMb.8M ,pW"Wq. M8 `7MMpMMMb.pMMMb. MM .gP"Ya MM MM 8M""""""
MM `Mb. MM MM MM 6W'YA. `Wb,A9 MM MM MM ,M'YM. Yb ,
MM. `7MMF'"bmmmdPY MM.JMML JMML. MM`Ybmd9' .JMML 8M JMML JMML. M8 MM MM MM 8M"""""" `Mbmmd'
`Mb. MM MM MM YA. ,A9 MM MM MM YM. ,
`"bmmmdPY .JMML JMML. `Ybmd9' .JMML JMML JMML. `Mbmmd'
................................................................................
 
WikiGnome
* Copyright 20112012, Aaron Halfaker
* MIT licensed (http://en.wikipedia.org/wiki/MIT_License)
* http://halfaker.info
* Version 1.0
 
WikiGnome is a collection of utilities that allow for easy minor modifications
to wiki content. It was designed for use withing the English Wikipedia, but
should be compatible with other language Wikipedia's and MediaWiki installations
in general.
 
**MIT LICENSE**
 
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
 
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
 
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*******************************************************************************/
Line 57 ⟶ 59:
}
function importCSS(page) {
var url = mw.config.get('wgScript') + '?title=' +
encodeURIComponent(page.replace(' ','_')).replace('%2F','/').replace('%3A',':') +
'&action=raw&ctype=text/css'
Line 73 ⟶ 75:
else
return decodeURIComponent(results[1].replace(/\+/g, " "));
}
 
function getNamepaceNumber() {
return mw.config.get('wgNamespaceNumber');
}
 
function getPageName() {
return mw.config.get('wgPageName');
}
 
//Decide whether to import the body of the script or not.
if(
getNamepaceNumber() % 2 == 0 && //Main articles (not talk)
(
getNamepaceNumber() != 10 && //No templates
wgPageName.search("Sandbox") > -1 || //Sandboxes
wgNamespaceNumber getNamepaceNumber() == 0 != 14 && //MainNo namespacecategory articlespages
getNamepaceNumber() >= 0 && //No Special pages
) &&
getParameterByName('action') == '' && //No preview or edit
getParameterByName('diff') == '' && //No diffs
getParameterByName('oldid') == '' && //No old revisions
wgPageNamegetPageName().search(/.(js|css)$/) == -1 //No javascript or css
){
//Import CSS
importCSS("User:EpochFail/wikignome.css")
if(window.WIKIGNOME_DEV){
//Import script Body
importCSSURI("localhost:9001/wikignome.css")
importScript("User:EpochFail/wg_system.js")
mw.loader.load("localhost:9001/wg_system.js")
}else if(window.WIKIGNOME_TESTING){
importCSS("User:EpochFail/test_wikignome.css")
importScript("User:EpochFail/test_wg_system.js")
}else{
importCSS("User:EpochFail/wikignome.css")
importScript("User:EpochFail/wg_system.js")
(}
}