Author: duncan
Date: Mon Jan  1 12:45:36 2007
New Revision: 8890

Modified:
   branches/rel-1/freevo/src/util/vfs.py
   branches/rel-1/freevo/src/www/htdocs/help/doc.rpy
   branches/rel-1/freevo/src/www/htdocs/help/howto.rpy

Log:
Changed CVS to svn


Modified: branches/rel-1/freevo/src/util/vfs.py
==============================================================================
--- branches/rel-1/freevo/src/util/vfs.py       (original)
+++ branches/rel-1/freevo/src/util/vfs.py       Mon Jan  1 12:45:36 2007
@@ -11,11 +11,11 @@
 # directory, but the user has no write access to it. It's meant to
 # store fxd and image files (covers).
 #
-# Todo:        
+# Todo:
 #
 # -----------------------------------------------------------------------
 # Freevo - A Home Theater PC framework
-# Copyright (C) 2002 Krister Lagerstrom, et al. 
+# 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
@@ -33,7 +33,7 @@
 # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 #
 # -----------------------------------------------------------------------
-            
+
 
 import os
 import copy
@@ -106,7 +106,7 @@
     except (OSError, IOError):
         return t
 
-    
+
 def open(name, mode='r'):
     """
     open the file
@@ -151,7 +151,7 @@
         except IOError, e:
             print 'error opening file %s' % overlay
             raise IOError, e
-    
+
 
 def listdir(directory, handle_exception=True, include_dot_files=False,
             include_overlay=False):
@@ -161,16 +161,16 @@
     try:
         if not directory.endswith('/'):
             directory = directory + '/'
-            
+
         files = []
 
         if include_dot_files:
             for f in os.listdir(directory):
-                if not f in ('CVS', '.xvpics', '.thumbnails', '.pics', 
'folder.fxd'):
+                if not f in ('.svn', '.xvpics', '.thumbnails', '.pics', 
'folder.fxd'):
                     files.append(directory + f)
         else:
             for f in os.listdir(directory):
-                if not f.startswith('.') and not f in ('CVS', 'folder.fxd'):
+                if not f.startswith('.') and not f in ('folder.fxd'):
                     files.append(directory + f)
 
         if not include_overlay:
@@ -186,7 +186,7 @@
                 if not os.path.isdir(f):
                     files.append(f)
         return files
-    
+
     except OSError:
         _debug_('Error in dir %s' % directory)
         traceback.print_exc()
@@ -231,5 +231,3 @@
 exists   = os.path.exists
 isdir    = os.path.isdir
 islink   = os.path.islink
-
-    

Modified: branches/rel-1/freevo/src/www/htdocs/help/doc.rpy
==============================================================================
--- branches/rel-1/freevo/src/www/htdocs/help/doc.rpy   (original)
+++ branches/rel-1/freevo/src/www/htdocs/help/doc.rpy   Mon Jan  1 12:45:36 2007
@@ -59,7 +59,7 @@
             fv.printHeader(_('Freevo Documentation'), '/styles/main.css', 
prefix=request.path.count('/')-1)
             fv.res += '<div id="content">'
             fv.res += '<p class="alert">' + _('ERROR')+': '+(_('unable to load 
%s.html') % file)+'</p>\n'
-            fv.res += '<p class="normal">'+ _('If you use a CVS version of 
Freevo, run <b>autogen.sh</b>.')+'</p>\n'
+            fv.res += '<p class="normal">'+ _('If you use a svn version of 
Freevo, run <b>autogen.sh</b>.')+'</p>\n'
             fv.res += '</div>\n'
         else:
             pos = 0

Modified: branches/rel-1/freevo/src/www/htdocs/help/howto.rpy
==============================================================================
--- branches/rel-1/freevo/src/www/htdocs/help/howto.rpy (original)
+++ branches/rel-1/freevo/src/www/htdocs/help/howto.rpy Mon Jan  1 12:45:36 2007
@@ -82,7 +82,7 @@
             fv.printHeader(name, '/styles/main.css', 
prefix=request.path.count('/')-1)
             fv.res += '<div id="content">\n'
             fv.res += '<p class="alert">'+_('ERROR')+': '+_('unable to load 
html files')+'<br>'
-            fv.res += _('If you use a CVS version of Freevo, run 
<b>autogen.sh</b>.')+'</p>\n' + \
+            fv.res += _('If you use a svn version of Freevo, run 
<b>autogen.sh</b>.')+'</p>\n' + \
                       _('The files are searched in the following 
locations:')+'<ol>'
             for d in SEARCH_PATH:
                 fv.res += '<li>%s/%s</li>\n' % (d, TYPES[type][0])

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to