##// END OF EJS Templates
feat(svn): improvements to handle SVN protocol 1.4 features...
feat(svn): improvements to handle SVN protocol 1.4 features - added support to actually allow HEAD type calls - support HEAD / DELETE calls properly with new requets - use request session for performance optimization on making a lot of calls.

File last commit:

r5042:4c5af799 default
r5215:e17d6d15 default
Show More
config.py
14 lines | 316 B | text/x-python | PythonLexer
project: added all source files and assets
r1 #!/usr/bin/python
dbmigrate: python3 changes...
r5042
project: added all source files and assets
r1
from sqlalchemy.util import OrderedDict
__all__ = ['databases', 'operations']
databases = ('sqlite', 'postgres', 'mysql', 'oracle', 'mssql', 'firebird')
# Map operation names to function names
operations = OrderedDict()
operations['upgrade'] = 'upgrade'
operations['downgrade'] = 'downgrade'