mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=2275
This commit is contained in:
parent
7f5a69b4c0
commit
0dc50cddba
|
@ -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):
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
## $Id$
|
||||
|
||||
import boinc_path_config
|
||||
import configxml
|
||||
import os, md5, shutil
|
||||
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
transitioner
|
||||
sign_executable
|
||||
validate_trivial
|
|
@ -0,0 +1 @@
|
|||
sign_executable
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue