Update of /cvsroot/freevo/freevo/src/www
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13473/src/www
Modified Files:
__init__.py wap_types.py web_types.py
Log Message:
header cleanup
Index: web_types.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/www/web_types.py,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** web_types.py 9 Mar 2004 00:14:35 -0000 1.24
--- web_types.py 10 Jul 2004 12:33:43 -0000 1.25
***************
*** 1,3 ****
! #if 0 /*
# -----------------------------------------------------------------------
# web_types.py - Classes useful for the web interface.
--- 1,3 ----
! # -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
# web_types.py - Classes useful for the web interface.
***************
*** 10,13 ****
--- 10,16 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.25 2004/07/10 12:33:43 dischi
+ # header cleanup
+ #
# Revision 1.24 2004/03/09 00:14:35 rshortt
# Add advanced search and link to search page. Next will probably add genre
***************
*** 20,75 ****
# foot, ...)
#
- # Revision 1.22 2004/02/19 04:57:59 gsbarbieri
- # Support Web Interface i18n.
- # To use this, I need to get the gettext() translations in unicode, so some changes
are required to files that use "print _('string')", need to make them "print
String(_('string'))".
- #
- # Revision 1.21 2004/02/10 18:32:57 outlyer
- # Anyone notice that the entire content was missing? Apparently Mozilla is
- # more forgiving than IE... this <span> was used to hide some text so people
- # who wanted to make a different skin could do so. I didn't close it and it
- # was styled to "display: none" so it made the whole page invisible.
- #
- # Revision 1.20 2004/02/09 21:29:32 outlyer
- # New web functions...
- #
- # Revision 1.19 2004/01/28 03:35:01 outlyer
- # Cleanup...
- #
- # o Indent paragraphs
- # o Use normal 'href' links in the main bar as well as the javascript so
- # non-javascript browsers can still work.
- #
- # Revision 1.18 2004/01/14 22:07:26 outlyer
- # The new header code...
- #
- # Revision 1.17 2004/01/09 19:35:49 outlyer
- # Inherit DEBUG parameter from config, move some prints into DEBUG
- #
- # Revision 1.16 2003/11/06 19:55:28 mikeruelle
- # remove hard links so we can run when proxied
- #
- # Revision 1.15 2003/09/23 18:22:42 dischi
- # use absolute path names
- #
- # Revision 1.14 2003/09/12 20:34:16 dischi
- # start internal help system
- #
- # Revision 1.13 2003/09/12 19:39:35 gsbarbieri
- # <thead>, <tbody> and <tfoot> support.
- #
- # Revision 1.12 2003/09/06 22:11:40 gsbarbieri
- # Rewoked Popup box so it looks better in Internet Exploder.
- # Guide now has configurable precision, defaults to 5 minutes.
- #
- # Revision 1.11 2003/09/02 22:41:08 mikeruelle
- # adding icecast if the user asks for it.
- #
- # Revision 1.10 2003/08/23 12:51:43 dischi
- # removed some old CVS log messages
- #
- # Revision 1.9 2003/07/14 19:30:36 rshortt
- # Library update from Mike Ruelle. Now you can view other media types and
- # download as well.
- #
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 23,26 ----
***************
*** 92,96 ****
#
# ----------------------------------------------------------------------- */
! #endif
import os, sys, time
--- 43,47 ----
#
# ----------------------------------------------------------------------- */
!
import os, sys, time
Index: wap_types.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/www/wap_types.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** wap_types.py 19 Feb 2004 04:57:59 -0000 1.3
--- wap_types.py 10 Jul 2004 12:33:43 -0000 1.4
***************
*** 1,3 ****
! #if 0 /*
# -----------------------------------------------------------------------
# wap_types.py - Classes useful for the wap interface.
--- 1,3 ----
! # -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
# wap_types.py - Classes useful for the wap interface.
***************
*** 10,29 ****
# -----------------------------------------------------------------------
# $Log$
# Revision 1.3 2004/02/19 04:57:59 gsbarbieri
# Support Web Interface i18n.
- # To use this, I need to get the gettext() translations in unicode, so some changes
are required to files that use "print _('string')", need to make them "print
String(_('string'))".
- #
- # Revision 1.2 2004/01/09 19:35:49 outlyer
- # Inherit DEBUG parameter from config, move some prints into DEBUG
- #
- # Revision 1.1 2003/09/02 22:36:27 mikeruelle
- # commit bart heremans wap recording page
- #
- # Revision 1.1 2003/09/02 21:14:22 mikeruelle
- # First rev of a wap recording interface contributed by Bart Heremans
- #
- # Revision 1.0 2003/07/14 19:30:36 BHeremans
#
- # First Version
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 10,19 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.4 2004/07/10 12:33:43 dischi
+ # header cleanup
+ #
# Revision 1.3 2004/02/19 04:57:59 gsbarbieri
# Support Web Interface i18n.
#
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
***************
*** 46,50 ****
#
# ----------------------------------------------------------------------- */
! #endif
import os, sys, time
--- 36,40 ----
#
# ----------------------------------------------------------------------- */
!
import os, sys, time
Index: __init__.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/www/__init__.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** __init__.py 8 Jul 2004 12:44:40 -0000 1.8
--- __init__.py 10 Jul 2004 12:33:43 -0000 1.9
***************
*** 1,2 ****
--- 1,40 ----
+ # -*- coding: iso-8859-1 -*-
+ # -----------------------------------------------------------------------
+ # __init__.py - web init function
+ # -----------------------------------------------------------------------
+ # $Id$
+ #
+ # Notes:
+ #
+ # Todo:
+ #
+ # -----------------------------------------------------------------------
+ # $Log$
+ # Revision 1.9 2004/07/10 12:33:43 dischi
+ # header cleanup
+ #
+ #
+ # -----------------------------------------------------------------------
+ # Freevo - A Home Theater PC framework
+ # Copyright (C) 2002 Krister Lagerstrom, et al.
+ # Please see the file freevo/Docs/CREDITS for a complete list of authors.
+ #
+ # This program is free software; you can redistribute it and/or modify
+ # it under the terms of the GNU General Public License as published by
+ # the Free Software Foundation; either version 2 of the License, or
+ # (at your option) any later version.
+ #
+ # This program is distributed in the hope that it will be useful, but
+ # WITHOUT ANY WARRANTY; without even the implied warranty of MER-
+ # CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
+ # Public License for more details.
+ #
+ # You should have received a copy of the GNU General Public License along
+ # with this program; if not, write to the Free Software Foundation, Inc.,
+ # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ #
+ # ----------------------------------------------------------------------- */
+
+
import os
import config
-------------------------------------------------------
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 -
digital self defense, top technical experts, no vendor pitches,
unmatched networking opportunities. Visit www.blackhat.com
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog