Jump to content
 







Main menu
   


Navigation  



Main page
Contents
Current events
Random article
About Wikipedia
Contact us
Donate
 




Contribute  



Help
Learn to edit
Community portal
Recent changes
Upload file
 








Search  

































Create account

Log in
 









Create account
 Log in
 




Pages for logged out editors learn more  



Contributions
Talk
 

















User:Bobblewik/monobook.js/unitformatter.js

















User page
Talk
 

















Read
View source
View history
 








Tools
   


Actions  



Read
View source
View history
 




General  



What links here
Related changes
User contributions
User logs
View user groups
Upload file
Special pages
Permanent link
Page information
Get shortened URL
Download QR code
 




Print/export  



Download as PDF
Printable version
 
















Appearance
   

 






From Wikipedia, the free encyclopedia
 

< User:Bobblewik | monobook.js

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.
//'winc' function allows buttons to be added toolbar

winc('User:Omegatron/monobook.js/addlink.js');

function formatunits() {
    var txt = document.editform.wpTextbox1;

    // Convert degree symbols into ° symbol, ensure preceding space
    txt.value = txt.value.replace(/&deg;/g, '°');
    txt.value = txt.value.replace(/º/g, '°');

    // Celsius spelling errors
    txt.value = txt.value.replace(/celsius/gi, 'Celsius');
    txt.value = txt.value.replace(/celcius/gi, 'Celsius');
    //Fix common naming error (be careful with this one)
    txt.value = txt.value.replace(/centigrade/gi, 'Celsius');

    //Celsius
    //txt.value = txt.value.replace(/\[\[(celsius)\]\]/gi, '$1');
    //txt.value = txt.value.replace(/\[\[celsius\|([^\]]{1,30})\]\]/gi, '$1');

    //Fahrenheit
    //txt.value = txt.value.replace(/\[\[(Fahrenheit)\]\]/gi, '$1');
   // txt.value = txt.value.replace(/\[\[Fahrenheit\|([^\]]{1,30})\]\]/gi, '$1');

    //Celsius or Fahrenheit
    txt.value = txt.value.replace(/°\s([CF])/g, '°$1');
    txt.value = txt.value.replace(/°\s?(celsius)/gi, '°C');
    txt.value = txt.value.replace(/(\d)\s?(°[CF])/g, '$1 $2');
    txt.value = txt.value.replace(/deg[^\(]([CF])/gi, '°$1');
    txt.value = txt.value.replace(/deg\s([CF])/gi, '°$1');
    txt.value = txt.value.replace(/deg\.?\s?([CF])/gi, '°$1');
    txt.value = txt.value.replace(/degrees?\s([CF])(\W)/gi, '°$1$2');
    txt.value = txt.value.replace(/(\d)\s?°&nbsp;([CF])/g, '$1 °$2');


    // Convert &sup to superscript
    txt.value = txt.value.replace(/&sup2;/g, '²');
    txt.value = txt.value.replace(/&sup3;/g, '³');

    // Convert micro symbol to actual micro symbol, make sure it's spaced
    txt.value = txt.value.replace(/(\d)\s?(&mu;|μ|&micro;)(g|s|m|A|K|mol|cd|rad|sr|Hz|N|J|W|Pa|lm|lx|C|V|Ω|F|Wb|T|H|S|Bq|Gy|Sv|kat|M)(\W)/g, '$1 µ$3$4');

    //metre
    //txt.value = txt.value.replace(/\[\[(metres?)\]\]/gi, '$1');
    //txt.value = txt.value.replace(/\[\[(meters?)\]\]/gi, '$1');
    //txt.value = txt.value.replace(/\[\[metres?\|([^\]]{1,30})\]\]/gi, '$1');
    //space before 'm' only when lower case
    txt.value = txt.value.replace(/(\d)\s?m(\W)/g, '$1 m$2');
    txt.value = txt.value.replace(/(\d)\-m(\W)/g, '$1 m$2');
    txt.value = txt.value.replace(/(\d)\s?sq\.?\s?m(\W)/gi, '$1 m²$2');
    txt.value = txt.value.replace(/(\d)\-?sq\-?m(\W)/gi, '$1 m²$2');
    txt.value = txt.value.replace(/m²\.\)/gi, 'm²)');

    // millimetre
    //txt.value = txt.value.replace(/\[\[(mm)\]\]/gi, '$1');
    //txt.value = txt.value.replace(/\[\[(millimetres?)\]\]/gi, '$1');
    //txt.value = txt.value.replace(/\[\[(millimeters?)\]\]/gi, '$1');
    //txt.value = txt.value.replace(/\[\[millimetres?\|([^\]]{1,30})\]\]/gi, '$1');
    //txt.value = txt.value.replace(/\[\[millimeters?\|([^\]]{1,30})\]\]/gi, '$1');
    txt.value = txt.value.replace(/(\d)\s?mm(\W)/g, '$1 mm$2');
    txt.value = txt.value.replace(/(\d)\-mm(\W)/g, '$1 mm$2');

    // centimetre
    //txt.value = txt.value.replace(/\[\[(cm)\]\]/gi, '$1');
    //txt.value = txt.value.replace(/\[\[(centimetres?)\]\]/gi, '$1');
    //txt.value = txt.value.replace(/\[\[(centimeters?)\]\]/gi, '$1');
    //txt.value = txt.value.replace(/\[\[centimetres?\|([^\]]{1,30})\]\]/gi, '$1');
    //txt.value = txt.value.replace(/\[\[centimeters?\|([^\]]{1,30})\]\]/gi, '$1');

    // kilometre
    //txt.value = txt.value.replace(/\[\[(km)\]\]/gi, '$1');
    //txt.value = txt.value.replace(/\[\[(kilometres?)\]\]/gi, '$1');
    //txt.value = txt.value.replace(/\[\[(kilometers?)\]\]/gi, '$1');
    //txt.value = txt.value.replace(/\[\[kilometres?\|([^\]]{1,30})\]\]/gi, '$1');
    //txt.value = txt.value.replace(/\[\[kilometers?\|([^\]]{1,30})\]\]/gi, '$1');
    txt.value = txt.value.replace(/(\d)\s?kms?(\W)/gi, '$1 km$2');
    txt.value = txt.value.replace(/(\d)\-kms?(\W)/gi, '$1 km$2');
    txt.value = txt.value.replace(/(\d)&nbsp;kms?(\W)/gi, '$1&nbsp;km$2');
    //square kilometre
    //txt.value = txt.value.replace(/\[\[square kilometres?\|([^\]]{1,30})\]\]/gi, '$1');
    txt.value = txt.value.replace(/(\d)\s?sq\.?\s?kms?/gi, '$1 km²');
    txt.value = txt.value.replace(/sq\.?\s?kms?/gi, 'km²');

    // kilometre per hour
    txt.value = txt.value.replace(/km\/hr(\W)/gi, 'km/h$1');
    txt.value = txt.value.replace(/kph(\W)/gi, 'km/h$1');
    txt.value = txt.value.replace(/kmph(\W)/gi, 'km/h$1');
    txt.value = txt.value.replace(/(\d)\s?kmh/gi, '$1 km/h');
    txt.value = txt.value.replace(/km\/h/gi, 'km/h');
    txt.value = txt.value.replace(/(\d)\s?km\/h/gi, '$1 km/h');
    txt.value = txt.value.replace(/(\d)\-km\/h/gi, '$1 km/h');
    txt.value = txt.value.replace(/(\d)&nbsp;km\/h/gi, '$1&nbsp;km/h');

    // cubic centimetre
    txt.value = txt.value.replace(/(\d)\s?cm(\W)/gi, '$1 cm$2');
    txt.value = txt.value.replace(/(\d)\s?cc(\W)/gi, '$1 cc$2');
    txt.value = txt.value.replace(/(\d)\-cc(\W)/gi, '$1 cc$2');

    // millilitre
    txt.value = txt.value.replace(/(\d)\s?ml(\W)/g, '$1 ml$2');
    txt.value = txt.value.replace(/(\d)\-ml(\W)/g, '$1 ml$2');

    // second
    txt.value = txt.value.replace(/\[\[(s)\]\]/gi, '$1');
    txt.value = txt.value.replace(/\[\[(seconds?)\]\]/gi, '$1');
    txt.value = txt.value.replace(/\[\[seconds?\|([^\]]{1,30})\]\]/gi, '$1');
    txt.value = txt.value.replace(/\/sec(\W)/gi, '/s$1');
    txt.value = txt.value.replace(/\/sec\)/gi, '/s)$1');

    txt.value = txt.value.replace(/(\d)\s?ft\/second/gi, '$1 ft/s');
    txt.value = txt.value.replace(/(\d)\s?m\/second/gi, '$1 m/s');
    txt.value = txt.value.replace(/(\d)\s?km\/sec(\W)/gi, '$1 km/s$2');
    txt.value = txt.value.replace(/frames\/s(\W)/gi, 'frame/s$1');

    //minute
    txt.value = txt.value.replace(/\[\[(min)\]\]/gi, '$1');
    txt.value = txt.value.replace(/\[\[(minutes?)\]\]/gi, '$1');
    txt.value = txt.value.replace(/\[\[minutes?\|([^\]]{1,30})\]\]/gi, '$1');

    // hour
    txt.value = txt.value.replace(/\[\[(h)\]\]/gi, '$1');
    txt.value = txt.value.replace(/\[\[(hours?)\]\]/gi, '$1');
    txt.value = txt.value.replace(/\[\[hours?\|([^\]]{1,30})\]\]/gi, '$1');
    txt.value = txt.value.replace(/\/hr(\W)/gi, '/h$1');

    //day
    txt.value = txt.value.replace(/\[\[(d)\]\]/gi, '$1');
    txt.value = txt.value.replace(/\[\[(days?)\]\]/gi, '$1');
    txt.value = txt.value.replace(/\[\[days?\|([^\]]{1,30})\]\]/gi, '$1');

    // kilogram
    txt.value = txt.value.replace(/(kilogram)me/gi, '$1');
    txt.value = txt.value.replace(/(\W)(gram)mes?(\W)/gi, '$1$2$3');
    //txt.value = txt.value.replace(/\[\[(grams?)\]\]/gi, '$1');
    //txt.value = txt.value.replace(/\[\[grams?\|([^\]]{1,30})\]\]/gi, '$1');
    //txt.value = txt.value.replace(/\[\[(kg)\]\]/gi, '$1');
    //txt.value = txt.value.replace(/\[\[(kilograms?)\]\]/gi, '$1');
    //txt.value = txt.value.replace(/\[\[kilograms?\|([^\]]{1,30})\]\]/gi, '$1');
    txt.value = txt.value.replace(/(\d)\s?kg(\W)/gi, '$1 kg$2');
    txt.value = txt.value.replace(/(\d)\-kg(\W)/gi, '$1 kg$2');

    // newton metre
    //txt.value = txt.value.replace(/(\W)N[-.·•\/]m(\W)/gi, '$1N·m$2');

    // kilowatt
    txt.value = txt.value.replace(/(\d)\s?kW(\W)/gi, '$1 kW$2');
    txt.value = txt.value.replace(/(\d)\-kW(\W)/gi, '$1 kW$2');

    // Hertz
    txt.value = txt.value.replace(/(\d)\s?(G|M|k)?hz/gi, '$1 $2Hz');
    txt.value = txt.value.replace(/(\d)\-(G|M|k)?hz/gi, '$1 $2Hz');
    txt.value = txt.value.replace(/khz/gi, 'kHz');


    // ohm
    txt.value = txt.value.replace(/(\d)\s?(Y|Z|E|P|T|G|M|k|K|h|da|d|c|m|µ|μ|µ|n|p|f|a|z|y)?\s?(&Omega;|ohm|Ohm)s?(\W)/g, '$1 $2Ω$4');

    // pound weight
    //txt.value = txt.value.replace(/(\d)\s?(\[\[lbs?\]\])/gi, '$1 lb');
    //txt.value = txt.value.replace(/\[\[\pound\s\(mass\)\|([^\]]{1,30})\]\]/gi, '$1');
    txt.value = txt.value.replace(/(\d)\s?lbs?/gi, '$1 lb');
    txt.value = txt.value.replace(/(\d\+?)\s?lbs?/gi, '$1 lb');
    txt.value = txt.value.replace(/(\d)&nbsp;lbs?/gi, '$1&nbsp;lb');
    txt.value = txt.value.replace(/(\d)\slb.\)/gi, '$1 lb)');

    //inch
    //txt.value = txt.value.replace(/\[\[(inch)\]\]/gi, '$1');
    //txt.value = txt.value.replace(/\[\[(inches)\]\]/gi, '$1');
    //txt.value = txt.value.replace(/\[\[inch\|([^\]]{1,30})\]\]/gi, '$1');
    //txt.value = txt.value.replace(/\[\[inches\|([^\]]{1,30})\]\]/gi, '$1');

    //foot
    //txt.value = txt.value.replace(/\[\[foot\s\(unit\sof\slength\)\|([^\]]{1,30})\]\]/gi, '$1');
    txt.value = txt.value.replace(/(\d)\s?ft(\W)/gi, '$1 ft$2');
    txt.value = txt.value.replace(/(\d)\-ft(\W)/gi, '$1 ft$2');
    txt.value = txt.value.replace(/(\W)ft\.\)/gi, '$1ft)');

    // square foot
    txt.value = txt.value.replace(/sq\.?\s?ft/gi, 'sq ft');

    // foot and inch
    //txt.value = txt.value.replace(/([^;°h]{1,4})(\d{1,4})\s?['’]\s?(\d{1,3})\s?["”]([^NESW])/g, '$1$2 ft $3 in$4');
    txt.value = txt.value.replace(/(ength[.]{1,3})(\d{1,4})\s?['’]\s?(\d{1,3})\s?["”]/gi, '$1$2 ft $3 in');
    txt.value = txt.value.replace(/(idth[.]{1,3})(\d{1,4})\s?['’]\s?(\d{1,3})\s?["”]/gi, '$1$2 ft $3 in');
    txt.value = txt.value.replace(/([\(\|:]\s?\d{1,4})\s?['’]\s?(\d{1,3})\s?["”]([^NESW])/g, '$1 ft $2 in$3');
    txt.value = txt.value.replace(/(\d)\s?ft\s?(\d{1,3})\s?in/gi, '$1 ft $2 in');

    // yard
    txt.value = txt.value.replace(/(\d)\s?yds(\W)/gi, '$1 yd$2');
    txt.value = txt.value.replace(/(\d)&nbsp;yds(\W)/gi, '$1&nbsp;yd$2');
    txt.value = txt.value.replace(/sq\.?\s?yds?/gi, 'sq yd');
    txt.value = txt.value.replace(/yd\.\)/gi, 'yd)');

    // mile and mile per hour
    //txt.value = txt.value.replace(/\[\[miles?\|([^\]]{1,30})\]\]/gi, '$1');
    //txt.value = txt.value.replace(/\[\[(miles?)\]\]/gi, '$1');
    txt.value = txt.value.replace(/m\.p\.h\.(\W)/g, 'mph$1');
    txt.value = txt.value.replace(/(\W)mph(\W)/gi, '$1mph$2');
    txt.value = txt.value.replace(/(\d)\s?mph/gi, '$1 mph');
    txt.value = txt.value.replace(/(\d)\-mph/gi, '$1 mph');

    // square mile
    txt.value = txt.value.replace(/sq\.?\s?mi/gi, 'sq mi');

    // foot pound
    txt.value = txt.value.replace(/ftlbs?(\W)/gi, 'ft·lbf$1');
    txt.value = txt.value.replace(/ft[ -.·•\/]lb(\W)/gi, 'ft·lbf$1');
    txt.value = txt.value.replace(/ft[ -.·•\/]lbs/gi, 'ft·lbf');
    txt.value = txt.value.replace(/ft[ -.·•\/]lbf/gi, 'ft·lbf');
    txt.value = txt.value.replace(/ft[ -.·•\/]lbff/gi, 'ft·lbf');
    //the next two suspended until solution is found for wing loading (i.e. pounds per square foot)
    //txt.value = txt.value.replace(/lb[fs][ -.•\/]ft/gi, 'ft·lbf');
    //txt.value = txt.value.replace(/lb[ -.•\/]ft/gi, 'ft·lbf');

    // Give digital value a percent symbol '%' instead of word
    txt.value = txt.value.replace(/(\d)\s?per ?cent([^aei])/gi, '$1%$2');
    txt.value = txt.value.replace(/(\d)\-per ?cent([^aei])/gi, '$1%$2');

    // knot
    txt.value = txt.value.replace(/(\d)\s?kts(\W)/gi, '$1 knots$2');
    txt.value = txt.value.replace(/(\d)\s?knt(\W)/gi, '$1 knots$2');

    // horsepower
    txt.value = txt.value.replace(/(\d)\s?hp(\W)/gi, '$1 hp$2');
    txt.value = txt.value.replace(/(\d)\s?bhp/gi, '$1 bhp');
    txt.value = txt.value.replace(/(\d)\s?shp/gi, '$1 shp');

    // rpm
    txt.value = txt.value.replace(/(\d)\s?rpm/gi, '$1 rpm');
    txt.value = txt.value.replace(/(\d)\-rpm/gi, '$1 rpm');

    // decibel
    txt.value = txt.value.replace(/(\d)\s?(dB)\b/g, '$1 $2');

    // bits per second
    txt.value = txt.value.replace(/([KkMmGg])(bps|bits?\/s|b\/s)/g, '$1bit/s');
    txt.value = txt.value.replace(/(\d)\s?(bps)/gi, '$1 bit/s');
    txt.value = txt.value.replace(/(\d)&nbsp;bps/gi, '$1&nbsp;bit/s');
    txt.value = txt.value.replace(/bits?\/sec(\W)/gi, 'bit/s$1');

    // bytes per second
    txt.value = txt.value.replace(/([KkMmGg])(Bps|bytes?\/s)/g, ' $1B/s');
    txt.value = txt.value.replace(/bytes?\/s(\W)/gi, 'B/s$1');

    // capitalization of prefix with bits and bytes
    txt.value = txt.value.replace(/K(bit|B)\/s/g, 'k$1/s');
    txt.value = txt.value.replace(/m(bit|B)\/s/g, 'M$1/s');
    txt.value = txt.value.replace(/g(bit|B)\/s/g, 'G$1/s');

    // space with bits and bytes
    txt.value = txt.value.replace(/(\d)\s?(k|M|G)(bit|B)/g, '$1 $2$3');

    // Common error with bits and bytes
    txt.value = txt.value.replace(/mibi(bit|byte)/g, 'mebi$1');

    //Remove 'Easter egg' diversions (linking unit name to orders of magnitude articles)
    txt.value = txt.value.replace(/\[\[1\s?_?E\s?\-?\d{1,2}\s?..?\|([^\]]{1,50})\]\]/gi, '$1');
    txt.value = txt.value.replace(/\[\[Orders\sof\smagnitude\s\([^\)]{1,30}\)\|([^\]]{1,50})\]\]/gi, '$1');

    
    // Add a tag to the summary box
    var txt = document.editform.wpSummary;
    var summary = "units";
 if (txt.value.indexOf(summary) == -1) {
  if (txt.value.match(/[^\*\/\s][^\/\s]?\s*$/)) {
   txt.value += " | ";
  }
  txt.value += summary;
 }

    // Press the diff button to check it
    document.editform.wpDiff.click()
}

$(function () {
    if(document.forms.editform) {
        addLink('p-cactions', 'javascript:formatunits()', 'units', 'ca-unitfixer', 'Fixes some unit formatting', '', '');
    }
});

Retrieved from "https://en.wikipedia.org/w/index.php?title=User:Bobblewik/monobook.js/unitformatter.js&oldid=1005196555"





This page was last edited on 6 February 2021, at 13:08 (UTC).

Text is available under the Creative Commons Attribution-ShareAlike License 4.0; additional terms may apply. By using this site, you agree to the Terms of Use and Privacy Policy. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc., a non-profit organization.



Privacy policy

About Wikipedia

Disclaimers

Contact Wikipedia

Code of Conduct

Developers

Statistics

Cookie statement

Mobile view



Wikimedia Foundation
Powered by MediaWiki