forked from tr4ck3ur/jm2l
remove inused print
This commit is contained in:
+5
-2
@@ -6,7 +6,8 @@
|
||||
[app:main]
|
||||
use = egg:JM2L
|
||||
|
||||
pyramid.reload_templates = true
|
||||
pyramid.reload_templates = false
|
||||
#true
|
||||
pyramid.debug_authorization = false
|
||||
pyramid.debug_notfound = false
|
||||
pyramid.debug_routematch = false
|
||||
@@ -14,6 +15,8 @@ pyramid.default_locale_name = en
|
||||
pyramid.includes =
|
||||
pyramid_debugtoolbar
|
||||
pyramid_tm
|
||||
pyramid_mako
|
||||
pyramid_exclog
|
||||
|
||||
sqlalchemy.url = sqlite:///%(here)s/JM2L.sqlite
|
||||
|
||||
@@ -64,7 +67,7 @@ qualname = sqlalchemy.engine
|
||||
[handler_console]
|
||||
class = StreamHandler
|
||||
args = (sys.stderr,)
|
||||
level = NOTSET
|
||||
level = DEBUG
|
||||
formatter = generic
|
||||
|
||||
[formatter_generic]
|
||||
|
||||
@@ -153,7 +153,6 @@ class User(Base):
|
||||
@classmethod
|
||||
def by_hash(cls, tsthash):
|
||||
for u in DBSession.query(cls):
|
||||
print u.nom, u.my_hash
|
||||
if u.my_hash==tsthash:
|
||||
return u
|
||||
return None
|
||||
|
||||
@@ -48,11 +48,9 @@ class MediaPath():
|
||||
def get_list(self, media_table, linked_id):
|
||||
filelist = list()
|
||||
curpath = self.get_mediapath(media_table, linked_id, None)
|
||||
print curpath
|
||||
if not os.path.isdir(curpath):
|
||||
return list()
|
||||
for f in os.listdir(curpath):
|
||||
print curpath
|
||||
if os.path.isdir(os.path.join(curpath,f)):
|
||||
continue
|
||||
if f.endswith('.type'):
|
||||
@@ -69,7 +67,6 @@ class MediaPath():
|
||||
if not os.path.isdir(curpath):
|
||||
return list()
|
||||
for f in os.listdir(curpath):
|
||||
print curpath
|
||||
if os.path.isdir(os.path.join(curpath,f)):
|
||||
continue
|
||||
if f.endswith('.type'):
|
||||
@@ -154,9 +151,7 @@ class MediaUpload(MediaPath):
|
||||
result['error'] = 'Ce type fichier n\'est malheureusement pas supporté. '
|
||||
result['error'] += 'Les fichiers acceptées sont les images et pdf.'
|
||||
return False
|
||||
print result['size']
|
||||
if result['size'] < MIN_FILE_SIZE:
|
||||
raise
|
||||
result['error'] = 'le fichier est trop petit'
|
||||
elif result['size'] > MAX_FILE_SIZE:
|
||||
result['error'] = 'le fichier est trop voluminueux'
|
||||
@@ -254,7 +249,6 @@ class MediaUpload(MediaPath):
|
||||
def fileinfo(self,name):
|
||||
filename = self.mediapath(name)
|
||||
f, ext = os.path.splitext(name)
|
||||
print "fileinfo ? '%s'" % name, filename
|
||||
if ext!='.type' and os.path.isfile(filename):
|
||||
info = {}
|
||||
info['name'] = name
|
||||
@@ -318,21 +312,18 @@ class MediaUpload(MediaPath):
|
||||
except IOError:
|
||||
pass
|
||||
except OSError:
|
||||
print self.mediapath(filename) + '.type', 'Not found'
|
||||
pass
|
||||
try:
|
||||
os.remove(self.thumbnailpath(filename))
|
||||
except IOError:
|
||||
pass
|
||||
except OSError:
|
||||
print self.thumbnailpath(filename), 'Not found'
|
||||
pass
|
||||
try:
|
||||
os.remove(self.thumbnailpath(filename+".jpg"))
|
||||
except IOError:
|
||||
pass
|
||||
except OSError:
|
||||
print self.thumbnailpath(filename), 'Not found'
|
||||
pass
|
||||
try:
|
||||
os.remove(self.mediapath(filename))
|
||||
|
||||
@@ -477,8 +477,6 @@ def Modal(request):
|
||||
request=request)
|
||||
response.content_type = 'text/javascript'
|
||||
return response
|
||||
else:
|
||||
print form.errors
|
||||
if modtype in ['AskC', 'AskH', 'AskM', 'PropC', 'PropH', 'PropM']:
|
||||
if uid>0:
|
||||
Exch = Exchange.by_id(uid)
|
||||
@@ -554,9 +552,6 @@ def Modal(request):
|
||||
)
|
||||
DBSession.add(Itinerary)
|
||||
DBSession.flush()
|
||||
print form.start_place.data
|
||||
print form.arrival_place.data
|
||||
print form.itin_id.data
|
||||
Exch.itin_id = Itinerary.itin_id
|
||||
# Start Time
|
||||
StartEvent = DBSession.query(JM2L_Year.start_time).filter(JM2L_Year.year_uid==year).first()
|
||||
|
||||
@@ -13,6 +13,8 @@ pyramid.debug_routematch = false
|
||||
pyramid.default_locale_name = fr
|
||||
pyramid.includes =
|
||||
pyramid_tm
|
||||
pyramid_mako
|
||||
pyramid_exclog
|
||||
|
||||
sqlalchemy.url = sqlite:///%(here)s/JM2L.sqlite
|
||||
|
||||
|
||||
Reference in New Issue
Block a user