From e64e690b5b91dc7255f92c43347c7e02c59a2bc4 Mon Sep 17 00:00:00 2001 From: Renaud Le Gac <legac@cppm.in2p3.fr> Date: Tue, 9 Sep 2014 16:54:06 +0200 Subject: [PATCH] Release version 0.6.1.7 --- buildVersion.py | 15 --------------- static/plugin_dbui/CHANGELOG | 5 ++++- static/plugin_dbui/src/App.js | 2 +- 3 files changed, 5 insertions(+), 17 deletions(-) diff --git a/buildVersion.py b/buildVersion.py index 2571d41d..ce4f12c8 100755 --- a/buildVersion.py +++ b/buildVersion.py @@ -80,14 +80,6 @@ def epydoc(): if not os.path.exists(PYDOC): os.makedirs(PYDOC) - # inhibit the __init__.py files - # to avoid long modules path in the documentation - if os.path.exists("__init__.py"): - os.rename("__init__.py", "__init__.py.ref") - - if os.path.exists("modules/__init__.py"): - os.rename("modules/__init__.py", "modules/__init__.py.ref") - # clean the directory cmd = ["rm", "-rf", PYDOC] subprocess.call(cmd) @@ -103,13 +95,6 @@ def epydoc(): subprocess.call(cmd) - # restore the __init__.py files - if os.path.exists("__init__.py.ref"): - os.rename("__init__.py.ref", "__init__.py") - - if os.path.exists("modules/__init__.py.ref"): - os.rename("modules/__init__.py.ref", "modules/__init__.py") - print "HTML documentation in", PYDOC diff --git a/static/plugin_dbui/CHANGELOG b/static/plugin_dbui/CHANGELOG index 0abca4b1..61815a4e 100644 --- a/static/plugin_dbui/CHANGELOG +++ b/static/plugin_dbui/CHANGELOG @@ -2,8 +2,11 @@ HEAD - - Use inline script and Ext.grid.Panel to display software versions. +0.6.1.7 (Sep 2014) + - Use inline script and Ext.grid.Panel to display software versions + as well as documentation. - Migrate to HTML5 sysntax. + - Remove some obsolete code and import. 0.6.1.6 (Jul 2014) - Add protection to avoid Direct transaction with null TableId identifier diff --git a/static/plugin_dbui/src/App.js b/static/plugin_dbui/src/App.js index 60b8cda8..af7d3a0e 100644 --- a/static/plugin_dbui/src/App.js +++ b/static/plugin_dbui/src/App.js @@ -15,7 +15,7 @@ Ext.define('App', { * The version of the plugin * @property {String} */ - version: '0.6.1.6', + version: '0.6.1.7', /** * The name of the application -- GitLab