~om26er/ubuntu/natty/totem/totem-fix-696171

« back to all changes in this revision

Viewing changes to src/plugins/iplayer/iplayer.py

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2010-08-12 13:09:09 UTC
  • mfrom: (1.11.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20100812130909-hzn8tsoh9z7t3dbx
Tags: 2.31.6-0ubuntu1
* New upstream version:
  - Add support for Web-M to browser, movie player, and YouTube plugin
  Movie Player:
  - Add deinterlacing support, automatically used for interlaced content
  - Do not block when loading playlists
  - Remove libunique dependency
  - Make auto-resize use half-scale or 2x if the player would fit on the 
    screen
  - Make screensaver preference clearer
  - Support running with RGBA (semi-transparent) GTK+ themes
  Plugins:
  - Update for YouTube website changes
  Browser plugin:
  - Fix running browser plugin in non-GTK+ front-ends
  - VLC-compatible browser plugin:
  - Support input.time and input.length property
  - Support togglePause function
  - Support toolbar plugin argument
* debian/control.in:
  - updated the build requirements to match the configure
* debian/patches/80_webm.patch,
  debian/patches/81_mpegts.patch,
  debian/patches/91_git_correct_rgba_use.patch:
  - the changes are in the new version

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
        def _populate_channel_list_cb (self, tree_store, parent_path, values):
55
55
                # Callback from PopulateChannelsThread to add stuff to the tree store
56
56
                if values == None:
57
 
                        self.totem.action_error (_('Error Listing Channel Categories'), _('There was an unknown error getting the list of television channels available on BBC iPlayer.'))
 
57
                        self.totem.action_error (_('Error listing channel categories'), _('There was an unknown error getting the list of television channels available on BBC iPlayer.'))
58
58
                        return False
59
59
 
60
60
                parent_iter = tree_store.get_iter (parent_path)
103
103
        def _populate_programme_list_cb (self, tree_store, category_path, values, remove_placeholder):
104
104
                # Callback from PopulateProgrammesThread to add stuff to the tree store
105
105
                if values == None:
106
 
                        self.totem.action_error (_('Error getting programme feed'), _('There was an unknown error getting the list of programmes for this channel and category combination.'))
 
106
                        self.totem.action_error (_('Error getting programme feed'), _('There was an error getting the list of programmes for this channel and category combination.'))
107
107
                        return False
108
108
 
109
109
                category_iter = tree_store.get_iter (category_path)