Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:12.2:ARM
picard
SearchCastAlbums3.py
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File SearchCastAlbums3.py of Package picard
# -*- coding: utf-8 -*- PLUGIN_NAME = u"Search CastAlbums.org for Release (codebase 4.1)" PLUGIN_AUTHOR = u"Brian Schweitzer" PLUGIN_DESCRIPTION = "Search CastAlbums.org" PLUGIN_VERSION = "0.1" PLUGIN_API_VERSIONS = ["0.9.0", "0.10", "0.15"] from PyQt4 import QtCore from picard.cluster import Cluster from picard.util import webbrowser2 from picard.ui.itemviews import BaseAction, register_album_action from picard.ui.itemviews import BaseAction, register_cluster_action class SearchCastAlbums(BaseAction): NAME = "Search with CastAlbums.org" def callback(self, objs): cluster = objs[0] url = "http://www.castalbums.org/shows/search/" url += QtCore.QUrl.toPercentEncoding(cluster.metadata["album"]) webbrowser2.open(url) register_cluster_action(SearchCastAlbums()) register_album_action(SearchCastAlbums())
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor