Changeset 1888
- Timestamp:
- 16/11/08 18:56:51 (8 weeks ago)
- svm:headrev:
cc3e1ea1-1e01-0410-8d68-8b121e83a9d5:11170- Location:
- freevo
- Files:
-
- 3 modified
-
local_conf.py.example (modified) (3 diffs)
-
setup.py (modified) (1 diff)
-
src/main.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
freevo/local_conf.py.example
r1834 r1888 1632 1632 # WWW_PAGES = [ 1633 1633 # # 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'), 1640 1640 # ('Config', 'Configuration Information', 'config.rpy'), 1641 1641 # ('Plugins', 'Plug-in Configuration Information', 'pluginconfig.rpy'), … … 1644 1644 # ('My Page', 'My Page Title' 'mypage.html'), 1645 1645 # ('My Site', 'My Site Title' 'mysite/'), 1646 # (_('Search'), _('Advanced Search Page'), 'search.rpy'), 1646 # (_('Search'), _('Advanced Search Page'), 'search.rpy'), 1647 1647 # (_('Help'), _('View Online Help and Documentation'), 'help/') 1648 1648 # ] … … 1691 1691 # 1692 1692 # 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 1693 1701 1694 1702 -
freevo/setup.py
r1655 r1888 27 27 ('twisted', 'http://www.twistedmatrix.com/'), 28 28 ('twisted.web.microdom', 'http://www.twistedmatrix.com/'), 29 ('Numeric', 'http://numeric.scipy.org/'), 29 30 ] 30 31 -
freevo/src/main.py
r1783 r1888 109 109 sys.exit(0) 110 110 111 import rc # The RemoteControl class. 111 112 import util # Various utilities 112 113 import osd # The OSD class, used to communicate with the OSD daemon 113 114 import menu # The menu widget class 114 import skin # The skin class 115 import rc # The RemoteControl class. 115 try: 116 import skin # The skin class 117 except pygame.error, why: 118 sys.exit(why) 116 119 117 120 from item import Item
