Vesper:scratchspace

From CDOT Wiki
Revision as of 20:12, 9 September 2008 by Vesper (talk | contribs) (New page: ==Welcome to Vesper's Scratchspace~== ================================================================================================ var noun_type_url = { _name: "Valid URL", ...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Welcome to Vesper's Scratchspace~

================================================================================================

var noun_type_url = {
  _name: "Valid URL",

  suggest: function( text, html ) {
    if (!text)
      return [ CmdUtils.makeSugg("http://") ];


    if(/[A-Za-z0-9_.-]+:\/\/([A-Za-z0-9_.-])/.test(text)){
      return [ CmdUtils.makeSugg(text) ];
    }

    return [ CmdUtils.makeSugg("http://" + text) ];
  }
};


CmdUtils.CreateCommand({
  name: "url",
  takes: {"your shout": noun_type_url},
  preview: function( pblock, theShout ) {
    pblock.innerHTML = "Will verify: " + theShout.text;
  },
  execute: function( theShout ) {
    var msg = theShout.text;
    displayMessage( msg );
  }
})