-
-
Save andrewsomething/47848 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Launchpad Ubuntu Package Search | |
| * Andrew Starr-Bochicchio <[email protected]> | |
| * MIT/X11 License | |
| */ | |
| CmdUtils.CreateCommand({ | |
| name: "lp-packages", | |
| icon: "https://launchpadlibrarian.net/16114928/gem-sm.png", | |
| /* homepage: "http://packages.qa.debian.org/common/index.html", */ | |
| author: { name: "Andrew Starr-Bochicchio", email: "[email protected]"}, | |
| license: "MIT", | |
| description: "Launchpad Ubuntu Package Search", | |
| help: "lp-packages [package]", | |
| takes: {"package": noun_arb_text}, | |
| preview: function(pblock, package) { | |
| var template = "Search for ${name} on Launchpd"; | |
| pblock.innerHTML = CmdUtils.renderTemplate(template, {"name": package.text}); | |
| }, | |
| execute: function(package) { | |
| var url = "https://edge.launchpad.net/ubuntu/+search?text=" + package.text; | |
| Utils.openUrlInBrowser(url); | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment