Changeset - 7109d15c6813
[Not reviewed]
default
0 3 0
Marcin Kuzminski - 15 years ago 2010-05-22 16:07:28
marcin@python-works.com
cleared prints leftoovers, and changed current user fetching in login controller
3 files changed with 4 insertions and 3 deletions:
0 comments (0 inline, 0 general)
pylons_app/controllers/login.py
Show inline comments
 
@@ -12,7 +12,8 @@ log = logging.getLogger(__name__)
 
class LoginController(BaseController):
 

	
 
    def index(self):
 
        if session.get('hg_app_user', AuthUser()).is_authenticated:
 
        #redirect if already logged in
 
        if c.hg_app_user.is_authenticated:
 
            return redirect(url('hg_home'))
 
        
 
        if request.POST:
pylons_app/model/forms.py
Show inline comments
 
@@ -69,7 +69,6 @@ class ValidAuth(formencode.validators.Fa
 
        except (NoResultFound, MultipleResultsFound, OperationalError) as e:
 
            log.error(e)
 
            user = None
 
        print value
 
        if user:
 
            if user.active:
 
                if user.username == username and user.password == crypted_passwd:
pylons_app/model/hg_model.py
Show inline comments
 
@@ -12,10 +12,11 @@ Created on Apr 9, 2010
 
import os
 
from pylons import tmpl_context as c, app_globals as g, session, request, config
 
from pylons.controllers.util import abort
 
import sys
 
try:
 
    from vcs.backends.hg import get_repositories, MercurialRepository
 
except ImportError:
 
    print 'You have to import vcs module'
 
    sys.stderr.write('You have to import vcs module')
 
    raise Exception('Unable to import vcs')
 

	
 
class HgModel(object):
0 comments (0 inline, 0 general)