makeSearchCommand({
  name: "social-actions",
  homepage: "http://ext337.org",
  author: { name: "Marnie Webb", email: "webb@ext337.org"},
  license: "MPL",	
  url: "http://mashup.socialactions.com/actions?q={QUERY}&created=all&commit=Search",
  description: "Searches Social Actions for related actions.",
  help: "It searches Social Actions for actions related to a highilighted word or phrase. A word or phrase can also be entered.",
  preview: function(pblock, directObject) {
    var searchTerm = directObject.text;
    var pTemplate = "Searches Social Actions for actions related to <b>${query}</b>";
    var pData = {query: searchTerm};
    pblock.innerHTML = CmdUtils.renderTemplate(pTemplate, pData);

    var url = "http://mashup.socialactions.com/actions.json";
   

  }


});

