*** empty log message ***

svn path=/trunk/boinc/; revision=2275
This commit is contained in:
Karl Chen 2003-09-05 22:44:04 +00:00
parent 7f5a69b4c0
commit 0dc50cddba
5 changed files with 8 additions and 2 deletions

View File

@ -30,7 +30,8 @@ class front_App:
class front_AppVersion:
def __repr__(self):
return '<AppVersion#%s %s %s>'%(self.id, self.app.name, self.version_num)
return '<AppVersion#%s %s %s %s>'%(self.id, self.app.name,
self.version_num, self.platform.name)
class front_User:
def __repr__(self):

View File

@ -1,5 +1,6 @@
## $Id$
import boinc_path_config
import configxml
import os, md5, shutil

3
sched/.cvsignore Normal file
View File

@ -0,0 +1,3 @@
transitioner
sign_executable
validate_trivial

1
tools/.cvsignore Normal file
View File

@ -0,0 +1 @@
sign_executable

View File

@ -59,7 +59,7 @@ def find_versions(app, dir):
filepath = os.path.join(dir,file)
if os.path.isdir(filepath):
continue
match = re.match('[^.]+_([0-9]+)[.]([0-9]+)_(.+)(?:[.]gz|[.]exe|[.]sit)$', file)
match = re.match('[^.]+_([0-9]+)[.]([0-9]+)_(.+)(?:[.]gz|[.]exe|[.]sit)?$', file)
if not match:
print >>sys.stderr, " Ignoring unknown file", os.path.join(filepath)
continue