Ver a proveniência

remove inused print

master
tr4ck3ur des JM2L há 9 anos
ascendente
cometimento
e3d6c9839f
6 ficheiros alterados com 11 adições e 21 eliminações
  1. +5
    -2
      development.ini
  2. +0
    -1
      jm2l/models.py
  3. +2
    -11
      jm2l/upload.py
  4. +1
    -6
      jm2l/views.py
  5. +2
    -0
      production.ini
  6. +1
    -1
      wsgi.py

+ 5
- 2
development.ini Ver ficheiro

@@ -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]


+ 0
- 1
jm2l/models.py Ver ficheiro

@@ -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


+ 2
- 11
jm2l/upload.py Ver ficheiro

@@ -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'
except OSError:
pass
try:
os.remove(self.thumbnailpath(filename+".jpg"))
except IOError:
pass
except OSError:
print self.thumbnailpath(filename), 'Not found'
except OSError:
pass
try:
os.remove(self.mediapath(filename))


+ 1
- 6
jm2l/views.py Ver ficheiro

@@ -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)
@@ -553,10 +551,7 @@ def Modal(request):
created_by=1
)
DBSession.add(Itinerary)
DBSession.flush()
print form.start_place.data
print form.arrival_place.data
print form.itin_id.data
DBSession.flush()
Exch.itin_id = Itinerary.itin_id
# Start Time
StartEvent = DBSession.query(JM2L_Year.start_time).filter(JM2L_Year.year_uid==year).first()


+ 2
- 0
production.ini Ver ficheiro

@@ -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



+ 1
- 1
wsgi.py Ver ficheiro

@@ -1,4 +1,4 @@
APP_CONFIG = "production.ini"
APP_CONFIG = "prod.ini"

#Setup logging
import logging.config


Carregando…
Cancelar
Guardar