[application/connect] simplify connection logic
``application.connect`` now either sets a full featured ``DBAPISession`` to the
``WebRequest`` object or raises ``AuthenticationError``. The creation and usage
of a fake DBAPISession is now handled by ``main_handle_request`` when needed.
This means that fake DBAPISession are no longer tracked by the session manager
and that user are not given anyway to retrieve them for a later request.
This fake DBAPISession is still passed to ``core_handle`` because multiple cubes
like registration or forgotten password need this behavior. We would like to get
ride of it in the future.
This clarification of the connection API greatly simplifies ``DBAPISession``
retrieval//creation process opening the
way to improvements in this area.
Related to #2503918
# pylint: disable=W0622"""%(distname)s application packaging information"""modname = '%(cubename)s'distname = '%(distname)s'numversion = (0, 1, 0)version = '.'.join(str(num) for num in numversion)license = '%(license)s'author = '%(author)s'author_email = '%(author-email)s'description = '%(shortdesc)s'web = 'http://www.cubicweb.org/project/%%s' %% distname__depends__ = %(dependencies)s__recommends__ = {}classifiers = [ 'Environment :: Web Environment', 'Framework :: CubicWeb', 'Programming Language :: Python', 'Programming Language :: JavaScript', ]from os import listdir as _listdirfrom os.path import join, isdirfrom glob import globTHIS_CUBE_DIR = join('share', 'cubicweb', 'cubes', modname)def listdir(dirpath): return [join(dirpath, fname) for fname in _listdir(dirpath) if fname[0] != '.' and not fname.endswith('.pyc') and not fname.endswith('~') and not isdir(join(dirpath, fname))]data_files = [ # common files [THIS_CUBE_DIR, [fname for fname in glob('*.py') if fname != 'setup.py']], ]# check for possible extended cube layoutfor dname in ('entities', 'views', 'sobjects', 'hooks', 'schema', 'data', 'wdoc', 'i18n', 'migration'): if isdir(dname): data_files.append([join(THIS_CUBE_DIR, dname), listdir(dname)])# Note: here, you'll need to add subdirectories if you want# them to be included in the debian package