Jump to content

User:Fran Rogers/dimorphism.js

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by MBisanz (talk | contribs) at 19:09, 20 February 2012 (moved User:Fran Rogers/dimorphism.js to User:Fran McCrory/dimorphism.js: Automatically moved page while renaming the user "Fran Rogers" to "Fran McCrory"). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
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.
/**
 * Gender dimorphism script by [[User:Fran Rogers]]
 * Displays a user's gender in the title of their user/user talk page for you 
 * if they've specified it in their preferences. Say goodbye to embarrassing 
 * pronoun mistakes!
 */

// If on a user or user talk page, and not a subpage...
if ((wgNamespaceNumber == 2 || wgNamespaceNumber == 3) &&
    !/\//.test(wgTitle)) {
  // add a hook to...
  addOnloadHook(function() {
    // init AJAX and request the user's gender from the API
    var a = sajax_init_object();
    a.open("GET", wgServer + wgScriptPath + 
                  "/api.php?format=json&action=query&list=users&ususers=" + 
                  escape(wgTitle.replace(/ /, "_")) + "&usprop=gender",
           true);

    // when response arrives...
    a.onreadystatechange = function() {
      if(a.readyState == 4 && a.status == 200) {
        // parse the JSON response
        var genderText = 
          eval("(" + a.responseText + ")").query.users[0].gender;

        // U+2640 and U+2642 are female and male signs respectively.
        var genderSymbol = "";
        if (genderText == "female") {
          genderSymbol = "♀";
        } else if (genderText == "male") {
          genderSymbol = "♂";
        }


        // if gender was specified, append the symbol
        if (genderSymbol != "") {
          document.getElementById("firstHeading").innerHTML += 
            " " + genderSymbol;
        }
      }
    };

    // send the API request
    a.send();
  });
}