E5XML/Config.py

Wed, 04 Nov 2015 16:25:25 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Wed, 04 Nov 2015 16:25:25 +0100
branch
6_1_x
changeset 4541
e8ddd9d76414
parent 4021
195a471c327b
child 4555
861e1741985c
permissions
-rw-r--r--

Fixed a few code style issues (forgotten future imports, copyrights,...).

# -*- coding: utf-8 -*-

# Copyright (c) 2004 - 2015 Detlev Offenbach <detlev@die-offenbachs.de>
#

"""
Module implementing some common configuration stuf for the XML package.
"""

from __future__ import unicode_literals

# version number of the multi project file
multiProjectFileFormatVersion = "5.1"

# version number of the project file
projectFileFormatVersion = "5.1"

# version number of the user project file
userProjectFileFormatVersion = "4.0"

# version number of the project session file
sessionFileFormatVersion = "5.0"

# version number of the shortcuts file
shortcutsFileFormatVersion = "3.6"

# version number of the tasks file
tasksFileFormatVersion = "6.0"

# version number of the debugger properties file
debuggerPropertiesFileFormatVersion = "3.9"

# version number of the templates file
templatesFileFormatVersion = "4.0"

# version number of the plugin repository file
pluginRepositoryFileFormatVersion = "4.2"

# version number of the highlighting styles file
highlightingStylesFileFormatVersion = "4.3"

eric ide

mercurial