Changeset 1888

Show
Ignore:
Timestamp:
16/11/08 18:56:51 (8 weeks ago)
Author:
duncan
svm:headrev:

cc3e1ea1-1e01-0410-8d68-8b121e83a9d5:11170
Message:

Small bug fixes

Location:
freevo
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • freevo/local_conf.py.example

    r1834 r1888  
    16321632# WWW_PAGES = [ 
    16331633#     #   Label                      Title                                  Page 
    1634 #     (_('Home'),                 _('Home'),                               'index.rpy'),  
    1635 #     (_('TV Guide'),             _('View TV Listings'),                   'guide.rpy'),  
    1636 #     (_('Scheduled Recordings'), _('View Scheduled Recordings'),          'record.rpy'),  
    1637 #     (_('Favorites'),            _('View Favorites'),                     'favorites.rpy'),  
    1638 #     (_('Media Library'),        _('View Media Library'),                 'library.rpy'),  
    1639 #     (_('Manual Recording'),     _('Schedule a Manual Recording'),        'manualrecord.rpy'),  
     1634#     (_('Home'),                 _('Home'),                               'index.rpy'), 
     1635#     (_('TV Guide'),             _('View TV Listings'),                   'guide.rpy'), 
     1636#     (_('Scheduled Recordings'), _('View Scheduled Recordings'),          'record.rpy'), 
     1637#     (_('Favorites'),            _('View Favorites'),                     'favorites.rpy'), 
     1638#     (_('Media Library'),        _('View Media Library'),                 'library.rpy'), 
     1639#     (_('Manual Recording'),     _('Schedule a Manual Recording'),        'manualrecord.rpy'), 
    16401640#     ('Config',                    'Configuration Information',           'config.rpy'), 
    16411641#     ('Plugins',                   'Plug-in Configuration Information',   'pluginconfig.rpy'), 
     
    16441644#     ('My Page',                   'My Page Title'                        'mypage.html'), 
    16451645#     ('My Site',                   'My Site Title'                        'mysite/'), 
    1646 #     (_('Search'),               _('Advanced Search Page'),               'search.rpy'),  
     1646#     (_('Search'),               _('Advanced Search Page'),               'search.rpy'), 
    16471647#     (_('Help'),                 _('View Online Help and Documentation'), 'help/') 
    16481648# ] 
     
    16911691# 
    16921692# VIDEO_SHOW_REGEXP = "s?([0-9]|[0-9][0-9])[xe]([0-9]|[0-9][0-9])[^0-9]" 
     1693 
     1694# 
     1695# Directory containing images for TV shows. A TV show matches the regular 
     1696# expression VIDEO_SHOW_REGEXP, e.g. "Name 3x10 - Title". If an image 
     1697# name.(png|jpg) (lower-case) is in this directory, it will be taken as cover 
     1698# image 
     1699# 
     1700# VIDEO_SHOW_DATA_DIR = None 
    16931701 
    16941702 
  • freevo/setup.py

    r1655 r1888  
    2727    ('twisted', 'http://www.twistedmatrix.com/'), 
    2828    ('twisted.web.microdom', 'http://www.twistedmatrix.com/'), 
     29    ('Numeric', 'http://numeric.scipy.org/'), 
    2930] 
    3031 
  • freevo/src/main.py

    r1783 r1888  
    109109    sys.exit(0) 
    110110 
     111import rc      # The RemoteControl class. 
    111112import util    # Various utilities 
    112113import osd     # The OSD class, used to communicate with the OSD daemon 
    113114import menu    # The menu widget class 
    114 import skin    # The skin class 
    115 import rc      # The RemoteControl class. 
     115try: 
     116    import skin    # The skin class 
     117except pygame.error, why: 
     118    sys.exit(why) 
    116119 
    117120from item import Item