Changeset 1901

Show
Ignore:
Timestamp:
19/11/08 20:54:46 (7 weeks ago)
Author:
duncan
svm:headrev:

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

Added header blocks

Location:
freevo/src
Files:
11 modified

Legend:

Unmodified
Added
Removed
  • freevo/src/dialog/__init__.py

    r1900 r1901  
     1# -*- coding: iso-8859-1 -*- 
     2# ----------------------------------------------------------------------- 
     3# Freevo module to handle channel changing. 
     4# ----------------------------------------------------------------------- 
     5# $Id$ 
     6# 
     7# Notes: 
     8# Todo: 
     9# 
     10# ----------------------------------------------------------------------- 
     11# Freevo - A Home Theater PC framework 
     12# Copyright (C) 2003 Krister Lagerstrom, et al. 
     13# Please see the file freevo/Docs/CREDITS for a complete list of authors. 
     14# 
     15# This program is free software; you can redistribute it and/or modify 
     16# it under the terms of the GNU General Public License as published by 
     17# the Free Software Foundation; either version 2 of the License, or 
     18# (at your option) any later version. 
     19# 
     20# This program is distributed in the hope that it will be useful, but 
     21# WITHOUT ANY WARRANTY; without even the implied warranty of MER- 
     22# CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General 
     23# Public License for more details. 
     24# 
     25# You should have received a copy of the GNU General Public License along 
     26# with this program; if not, write to the Free Software Foundation, Inc., 
     27# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
     28# 
     29# ----------------------------------------------------------------------- 
     30 
    131""" 
    232Module used to display information on top of the menu or video. 
  • freevo/src/dialog/dialogs.py

    r1900 r1901  
    66# 
    77# Notes: 
    8 # 
    9 # 
    108# Todo: 
    11 # 
    129# 
    1310# ----------------------------------------------------------------------- 
  • freevo/src/dialog/display.py

    r1900 r1901  
     1# -*- coding: iso-8859-1 -*- 
     2# ----------------------------------------------------------------------- 
     3# 
     4# ----------------------------------------------------------------------- 
     5# $Id$ 
     6# 
     7# Notes: 
     8# Todo: 
     9# 
     10# ----------------------------------------------------------------------- 
     11# Freevo - A Home Theater PC framework 
     12# Copyright (C) 2003 Krister Lagerstrom, et al. 
     13# Please see the file freevo/Docs/CREDITS for a complete list of authors. 
     14# 
     15# This program is free software; you can redistribute it and/or modify 
     16# it under the terms of the GNU General Public License as published by 
     17# the Free Software Foundation; either version 2 of the License, or 
     18# (at your option) any later version. 
     19# 
     20# This program is distributed in the hope that it will be useful, but 
     21# WITHOUT ANY WARRANTY; without even the implied warranty of MER- 
     22# CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General 
     23# Public License for more details. 
     24# 
     25# You should have received a copy of the GNU General Public License along 
     26# with this program; if not, write to the Free Software Foundation, Inc., 
     27# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
     28# 
     29# ----------------------------------------------------------------------- 
     30 
    131""" 
    232Module defining the Display interface. 
  • freevo/src/dialog/plugins/osd_display.py

    r1900 r1901  
     1# -*- coding: iso-8859-1 -*- 
     2# ----------------------------------------------------------------------- 
     3# 
     4# ----------------------------------------------------------------------- 
     5# $Id$ 
     6# 
     7# Notes: 
     8# Todo: 
     9# 
     10# ----------------------------------------------------------------------- 
     11# Freevo - A Home Theater PC framework 
     12# Copyright (C) 2003 Krister Lagerstrom, et al. 
     13# Please see the file freevo/Docs/CREDITS for a complete list of authors. 
     14# 
     15# This program is free software; you can redistribute it and/or modify 
     16# it under the terms of the GNU General Public License as published by 
     17# the Free Software Foundation; either version 2 of the License, or 
     18# (at your option) any later version. 
     19# 
     20# This program is distributed in the hope that it will be useful, but 
     21# WITHOUT ANY WARRANTY; without even the implied warranty of MER- 
     22# CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General 
     23# Public License for more details. 
     24# 
     25# You should have received a copy of the GNU General Public License along 
     26# with this program; if not, write to the Free Software Foundation, Inc., 
     27# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
     28# 
     29# ----------------------------------------------------------------------- 
     30 
    131import pygame.image 
    232import pygame.draw 
  • freevo/src/dialog/plugins/tiny_xosd_display.py

    r1900 r1901  
     1# -*- coding: iso-8859-1 -*- 
     2# ----------------------------------------------------------------------- 
     3# Freevo module to handle channel changing. 
     4# ----------------------------------------------------------------------- 
     5# $Id$ 
     6# 
     7# Notes: 
     8# Todo: 
     9# 
     10# ----------------------------------------------------------------------- 
     11# Freevo - A Home Theater PC framework 
     12# Copyright (C) 2003 Krister Lagerstrom, et al. 
     13# Please see the file freevo/Docs/CREDITS for a complete list of authors. 
     14# 
     15# This program is free software; you can redistribute it and/or modify 
     16# it under the terms of the GNU General Public License as published by 
     17# the Free Software Foundation; either version 2 of the License, or 
     18# (at your option) any later version. 
     19# 
     20# This program is distributed in the hope that it will be useful, but 
     21# WITHOUT ANY WARRANTY; without even the implied warranty of MER- 
     22# CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General 
     23# Public License for more details. 
     24# 
     25# You should have received a copy of the GNU General Public License along 
     26# with this program; if not, write to the Free Software Foundation, Inc., 
     27# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
     28# 
     29# ----------------------------------------------------------------------- 
    130 
    231import time 
     
    6392        self.osd.display('%s (%d%%)' % (channel, level), pyosd.TYPE_STRING, line=0) 
    6493        self.osd.display(percent, pyosd.TYPE_PERCENT, line=1) 
    65  
    66  
  • freevo/src/dialog/plugins/x11_overlay_display.py

    r1900 r1901  
     1# -*- coding: iso-8859-1 -*- 
     2# ----------------------------------------------------------------------- 
     3# 
     4# ----------------------------------------------------------------------- 
     5# $Id$ 
     6# 
     7# Notes: 
     8# Todo: 
     9# 
     10# ----------------------------------------------------------------------- 
     11# Freevo - A Home Theater PC framework 
     12# Copyright (C) 2003 Krister Lagerstrom, et al. 
     13# Please see the file freevo/Docs/CREDITS for a complete list of authors. 
     14# 
     15# This program is free software; you can redistribute it and/or modify 
     16# it under the terms of the GNU General Public License as published by 
     17# the Free Software Foundation; either version 2 of the License, or 
     18# (at your option) any later version. 
     19# 
     20# This program is distributed in the hope that it will be useful, but 
     21# WITHOUT ANY WARRANTY; without even the implied warranty of MER- 
     22# CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General 
     23# Public License for more details. 
     24# 
     25# You should have received a copy of the GNU General Public License along 
     26# with this program; if not, write to the Free Software Foundation, Inc., 
     27# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
     28# 
     29# ----------------------------------------------------------------------- 
     30 
    131import osd 
    232import config 
     
    4676                        self.volume_dialog.skin = skin 
    4777                super(X11GraphicsDisplay, self).show_volume(level, muted, channel) 
    48                      
     78 
    4979            def show_message(self, message): 
    5080                dialog = MessageDialog(message) 
  • freevo/src/dialog/widgets.py

    r1900 r1901  
    66# 
    77# Notes: 
    8 # 
    9 # 
    108# Todo: 
    11 # 
    129# 
    1310# ----------------------------------------------------------------------- 
  • freevo/src/helpers/svgtodialog.py

    r1900 r1901  
     1# -*- coding: iso-8859-1 -*- 
     2# ----------------------------------------------------------------------- 
     3# Freevo module to handle channel changing. 
     4# ----------------------------------------------------------------------- 
     5# $Id$ 
     6# 
     7# Notes: 
     8# Todo: 
     9# 
     10# ----------------------------------------------------------------------- 
     11# Freevo - A Home Theater PC framework 
     12# Copyright (C) 2003 Krister Lagerstrom, et al. 
     13# Please see the file freevo/Docs/CREDITS for a complete list of authors. 
     14# 
     15# This program is free software; you can redistribute it and/or modify 
     16# it under the terms of the GNU General Public License as published by 
     17# the Free Software Foundation; either version 2 of the License, or 
     18# (at your option) any later version. 
     19# 
     20# This program is distributed in the hope that it will be useful, but 
     21# WITHOUT ANY WARRANTY; without even the implied warranty of MER- 
     22# CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General 
     23# Public License for more details. 
     24# 
     25# You should have received a copy of the GNU General Public License along 
     26# with this program; if not, write to the Free Software Foundation, Inc., 
     27# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
     28# 
     29# ----------------------------------------------------------------------- 
     30 
    131import sys 
    232from xml.dom import * 
  • freevo/src/tv/plugins/livepause/__init__.py

    r1900 r1901  
    11# -*- coding: iso-8859-1 -*- 
    22# ----------------------------------------------------------------------- 
    3 # __init__.py - the Freevo Live Pause module for tv 
     3# the Freevo Live Pause module for tv 
    44# ----------------------------------------------------------------------- 
    55# $Id$ 
  • freevo/src/tv/plugins/livepause/display/text.py

    r1900 r1901  
    11# -*- coding: iso-8859-1 -*- 
    22# ----------------------------------------------------------------------- 
    3 # display.py - the Freevo livepause osd module for tv 
     3# the Freevo livepause osd module for tv 
    44# ----------------------------------------------------------------------- 
    55# $Id$ 
     
    77# Notes: 
    88# 
    9 # 
    109# Todo: 
    11 # 
    1210# 
    1311# ----------------------------------------------------------------------- 
  • freevo/src/tv/plugins/livepause/players.py

    r1900 r1901  
    11# -*- coding: iso-8859-1 -*- 
    22# ----------------------------------------------------------------------- 
    3 # players.py - the Freevo DVBStreamer module for tv 
     3# Freevo DVBStreamer module for tv 
    44# ----------------------------------------------------------------------- 
    55# $Id$