Exemplo n.º 1
0
    def __init__(self, parent):
        panel.Panel.__init__(self, parent, "podcasts", _("Podcasts"))
        self.podcasts = []
        self.podcast_playlists = playlist.PlaylistManager("podcast_plugin_playlists")

        self._setup_widgets()
        self._connect_events()
        self.podcast_file = os.path.join(xdg.get_plugin_data_dir(), "podcasts_plugin.db")
        self._load_podcasts()
Exemplo n.º 2
0
    def __init__(self, parent):
        panel.Panel.__init__(self, parent, 'podcasts', _('Podcasts'))
        self.podcasts = []
        self.podcast_playlists = playlist.PlaylistManager(
            'podcast_plugin_playlists')

        self._setup_widgets()
        self._connect_events()
        self.podcast_file = os.path.join(xdg.get_plugin_data_dir(),
                                         'podcasts_plugin.db')
        self._load_podcasts()