From c73864264aff5fcc69c24cdcbc84af0d3e0179a6 Mon Sep 17 00:00:00 2001 From: Jean-Philippe ARGAUD Date: Wed, 30 Jan 2013 15:28:31 +0100 Subject: [PATCH] Correcting date copyright and version name information --- doc/conf.py | 4 ++-- resources/SalomeApp.xml | 2 +- src/daComposant/daAlgorithms/3DVAR.py | 2 +- src/daComposant/daAlgorithms/AdjointTest.py | 2 +- src/daComposant/daAlgorithms/Blue.py | 2 +- src/daComposant/daAlgorithms/EnsembleBlue.py | 2 +- src/daComposant/daAlgorithms/GradientTest.py | 2 +- src/daComposant/daAlgorithms/KalmanFilter.py | 2 +- src/daComposant/daAlgorithms/LinearLeastSquares.py | 2 +- src/daComposant/daAlgorithms/NonLinearLeastSquares.py | 2 +- src/daComposant/daAlgorithms/ParticleSwarmOptimization.py | 2 +- src/daComposant/daAlgorithms/QuantileRegression.py | 2 +- src/daComposant/daAlgorithms/__init__.py | 2 +- src/daComposant/daCore/AssimilationStudy.py | 2 +- src/daComposant/daCore/BasicObjects.py | 2 +- src/daComposant/daCore/Logging.py | 2 +- src/daComposant/daCore/Persistence.py | 2 +- src/daComposant/daCore/PlatformInfo.py | 2 +- src/daComposant/daCore/__init__.py | 2 +- src/daComposant/daCore/version.py | 6 +++--- src/daComposant/daDiagnostics/PlotVector.py | 2 +- src/daComposant/daDiagnostics/PlotVectors.py | 2 +- src/daComposant/daDiagnostics/RMS.py | 2 +- src/daComposant/daDiagnostics/ReduceVariance.py | 2 +- src/daComposant/daDiagnostics/__init__.py | 2 +- src/daComposant/daMatrices/__init__.py | 2 +- src/daComposant/daNumerics/ApproximatedDerivatives.py | 2 +- src/daComposant/daNumerics/__init__.py | 2 +- src/daComposant/daNumerics/mmqr.py | 2 +- 29 files changed, 32 insertions(+), 32 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index aa1efa2..304be3f 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -65,9 +65,9 @@ copyright = u'2008-2012, Jean-Philippe ARGAUD' # built documents. # # The short X.Y version. -version = '6.6.0' +version = '7.main' # The full version, including alpha/beta/rc tags. -release = '6.6.0' +release = '7.main' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/resources/SalomeApp.xml b/resources/SalomeApp.xml index c6aa039..df8cad1 100644 --- a/resources/SalomeApp.xml +++ b/resources/SalomeApp.xml @@ -26,7 +26,7 @@ - +
diff --git a/src/daComposant/daAlgorithms/3DVAR.py b/src/daComposant/daAlgorithms/3DVAR.py index 7650d80..78ca36e 100644 --- a/src/daComposant/daAlgorithms/3DVAR.py +++ b/src/daComposant/daAlgorithms/3DVAR.py @@ -1,6 +1,6 @@ #-*-coding:iso-8859-1-*- # -# Copyright (C) 2008-2012 EDF R&D +# Copyright (C) 2008-2013 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/daComposant/daAlgorithms/AdjointTest.py b/src/daComposant/daAlgorithms/AdjointTest.py index 3a69c97..77849fd 100644 --- a/src/daComposant/daAlgorithms/AdjointTest.py +++ b/src/daComposant/daAlgorithms/AdjointTest.py @@ -1,6 +1,6 @@ #-*-coding:iso-8859-1-*- # -# Copyright (C) 2008-2012 EDF R&D +# Copyright (C) 2008-2013 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/daComposant/daAlgorithms/Blue.py b/src/daComposant/daAlgorithms/Blue.py index 79f4d65..1a5278f 100644 --- a/src/daComposant/daAlgorithms/Blue.py +++ b/src/daComposant/daAlgorithms/Blue.py @@ -1,6 +1,6 @@ #-*-coding:iso-8859-1-*- # -# Copyright (C) 2008-2012 EDF R&D +# Copyright (C) 2008-2013 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/daComposant/daAlgorithms/EnsembleBlue.py b/src/daComposant/daAlgorithms/EnsembleBlue.py index 9fc1281..c50f2e1 100644 --- a/src/daComposant/daAlgorithms/EnsembleBlue.py +++ b/src/daComposant/daAlgorithms/EnsembleBlue.py @@ -1,6 +1,6 @@ #-*-coding:iso-8859-1-*- # -# Copyright (C) 2008-2012 EDF R&D +# Copyright (C) 2008-2013 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/daComposant/daAlgorithms/GradientTest.py b/src/daComposant/daAlgorithms/GradientTest.py index b969e33..1e574cb 100644 --- a/src/daComposant/daAlgorithms/GradientTest.py +++ b/src/daComposant/daAlgorithms/GradientTest.py @@ -1,6 +1,6 @@ #-*-coding:iso-8859-1-*- # -# Copyright (C) 2008-2012 EDF R&D +# Copyright (C) 2008-2013 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/daComposant/daAlgorithms/KalmanFilter.py b/src/daComposant/daAlgorithms/KalmanFilter.py index f521066..3cfd1f0 100644 --- a/src/daComposant/daAlgorithms/KalmanFilter.py +++ b/src/daComposant/daAlgorithms/KalmanFilter.py @@ -1,6 +1,6 @@ #-*-coding:iso-8859-1-*- # -# Copyright (C) 2008-2012 EDF R&D +# Copyright (C) 2008-2013 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/daComposant/daAlgorithms/LinearLeastSquares.py b/src/daComposant/daAlgorithms/LinearLeastSquares.py index fa5fccc..3d59e9e 100644 --- a/src/daComposant/daAlgorithms/LinearLeastSquares.py +++ b/src/daComposant/daAlgorithms/LinearLeastSquares.py @@ -1,6 +1,6 @@ #-*-coding:iso-8859-1-*- # -# Copyright (C) 2008-2012 EDF R&D +# Copyright (C) 2008-2013 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/daComposant/daAlgorithms/NonLinearLeastSquares.py b/src/daComposant/daAlgorithms/NonLinearLeastSquares.py index cfa552c..c325988 100644 --- a/src/daComposant/daAlgorithms/NonLinearLeastSquares.py +++ b/src/daComposant/daAlgorithms/NonLinearLeastSquares.py @@ -1,6 +1,6 @@ #-*-coding:iso-8859-1-*- # -# Copyright (C) 2008-2012 EDF R&D +# Copyright (C) 2008-2013 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/daComposant/daAlgorithms/ParticleSwarmOptimization.py b/src/daComposant/daAlgorithms/ParticleSwarmOptimization.py index 5628005..1c9b869 100644 --- a/src/daComposant/daAlgorithms/ParticleSwarmOptimization.py +++ b/src/daComposant/daAlgorithms/ParticleSwarmOptimization.py @@ -1,6 +1,6 @@ #-*-coding:iso-8859-1-*- # -# Copyright (C) 2008-2012 EDF R&D +# Copyright (C) 2008-2013 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/daComposant/daAlgorithms/QuantileRegression.py b/src/daComposant/daAlgorithms/QuantileRegression.py index 965c7bc..76743ec 100644 --- a/src/daComposant/daAlgorithms/QuantileRegression.py +++ b/src/daComposant/daAlgorithms/QuantileRegression.py @@ -1,6 +1,6 @@ #-*-coding:iso-8859-1-*- # -# Copyright (C) 2008-2012 EDF R&D +# Copyright (C) 2008-2013 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/daComposant/daAlgorithms/__init__.py b/src/daComposant/daAlgorithms/__init__.py index 0384387..246f8b1 100644 --- a/src/daComposant/daAlgorithms/__init__.py +++ b/src/daComposant/daAlgorithms/__init__.py @@ -1,6 +1,6 @@ #-*-coding:iso-8859-1-*- # -# Copyright (C) 2008-2012 EDF R&D +# Copyright (C) 2008-2013 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/daComposant/daCore/AssimilationStudy.py b/src/daComposant/daCore/AssimilationStudy.py index c6bde4e..b415835 100644 --- a/src/daComposant/daCore/AssimilationStudy.py +++ b/src/daComposant/daCore/AssimilationStudy.py @@ -1,6 +1,6 @@ #-*-coding:iso-8859-1-*- # -# Copyright (C) 2008-2012 EDF R&D +# Copyright (C) 2008-2013 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/daComposant/daCore/BasicObjects.py b/src/daComposant/daCore/BasicObjects.py index b6c9e68..bb26ee2 100644 --- a/src/daComposant/daCore/BasicObjects.py +++ b/src/daComposant/daCore/BasicObjects.py @@ -1,6 +1,6 @@ #-*-coding:iso-8859-1-*- # -# Copyright (C) 2008-2012 EDF R&D +# Copyright (C) 2008-2013 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/daComposant/daCore/Logging.py b/src/daComposant/daCore/Logging.py index da4c1c8..d96eea0 100644 --- a/src/daComposant/daCore/Logging.py +++ b/src/daComposant/daCore/Logging.py @@ -1,6 +1,6 @@ #-*-coding:iso-8859-1-*- # -# Copyright (C) 2008-2012 EDF R&D +# Copyright (C) 2008-2013 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/daComposant/daCore/Persistence.py b/src/daComposant/daCore/Persistence.py index c1b6211..a2a36c2 100644 --- a/src/daComposant/daCore/Persistence.py +++ b/src/daComposant/daCore/Persistence.py @@ -1,6 +1,6 @@ #-*-coding:iso-8859-1-*- # -# Copyright (C) 2008-2012 EDF R&D +# Copyright (C) 2008-2013 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/daComposant/daCore/PlatformInfo.py b/src/daComposant/daCore/PlatformInfo.py index 91dfb5f..8c03022 100644 --- a/src/daComposant/daCore/PlatformInfo.py +++ b/src/daComposant/daCore/PlatformInfo.py @@ -1,6 +1,6 @@ #-*-coding:iso-8859-1-*- # -# Copyright (C) 2008-2012 EDF R&D +# Copyright (C) 2008-2013 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/daComposant/daCore/__init__.py b/src/daComposant/daCore/__init__.py index 25c58d2..4c3e8ef 100644 --- a/src/daComposant/daCore/__init__.py +++ b/src/daComposant/daCore/__init__.py @@ -1,6 +1,6 @@ #-*-coding:iso-8859-1-*- # -# Copyright (C) 2008-2012 EDF R&D +# Copyright (C) 2008-2013 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/daComposant/daCore/version.py b/src/daComposant/daCore/version.py index 560377d..5f92c1b 100644 --- a/src/daComposant/daCore/version.py +++ b/src/daComposant/daCore/version.py @@ -1,6 +1,6 @@ #-*-coding:iso-8859-1-*- # -# Copyright (C) 2008-2012 EDF R&D +# Copyright (C) 2008-2013 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -21,5 +21,5 @@ # Author: Jean-Philippe Argaud, jean-philippe.argaud@edf.fr, EDF R&D name = "Data Assimilation Package" -version = "0.6.0" -date = "jeudi 08 juin 2012, 11:11:11 (UTC+0200)" +version = "0.7.0" +date = "mercredi 12 décembre 2012, 12:12:12 (UTC+0100)" diff --git a/src/daComposant/daDiagnostics/PlotVector.py b/src/daComposant/daDiagnostics/PlotVector.py index e6d667d..939d268 100644 --- a/src/daComposant/daDiagnostics/PlotVector.py +++ b/src/daComposant/daDiagnostics/PlotVector.py @@ -1,6 +1,6 @@ #-*-coding:iso-8859-1-*- # -# Copyright (C) 2008-2012 EDF R&D +# Copyright (C) 2008-2013 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/daComposant/daDiagnostics/PlotVectors.py b/src/daComposant/daDiagnostics/PlotVectors.py index 8cca6f1..d029289 100644 --- a/src/daComposant/daDiagnostics/PlotVectors.py +++ b/src/daComposant/daDiagnostics/PlotVectors.py @@ -1,6 +1,6 @@ #-*-coding:iso-8859-1-*- # -# Copyright (C) 2008-2012 EDF R&D +# Copyright (C) 2008-2013 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/daComposant/daDiagnostics/RMS.py b/src/daComposant/daDiagnostics/RMS.py index 6a27f30..bba6934 100644 --- a/src/daComposant/daDiagnostics/RMS.py +++ b/src/daComposant/daDiagnostics/RMS.py @@ -1,6 +1,6 @@ #-*-coding:iso-8859-1-*- # -# Copyright (C) 2008-2012 EDF R&D +# Copyright (C) 2008-2013 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/daComposant/daDiagnostics/ReduceVariance.py b/src/daComposant/daDiagnostics/ReduceVariance.py index a0ceaca..ccd287a 100644 --- a/src/daComposant/daDiagnostics/ReduceVariance.py +++ b/src/daComposant/daDiagnostics/ReduceVariance.py @@ -1,6 +1,6 @@ #-*-coding:iso-8859-1-*- # -# Copyright (C) 2008-2012 EDF R&D +# Copyright (C) 2008-2013 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/daComposant/daDiagnostics/__init__.py b/src/daComposant/daDiagnostics/__init__.py index 0384387..246f8b1 100644 --- a/src/daComposant/daDiagnostics/__init__.py +++ b/src/daComposant/daDiagnostics/__init__.py @@ -1,6 +1,6 @@ #-*-coding:iso-8859-1-*- # -# Copyright (C) 2008-2012 EDF R&D +# Copyright (C) 2008-2013 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/daComposant/daMatrices/__init__.py b/src/daComposant/daMatrices/__init__.py index 0384387..246f8b1 100644 --- a/src/daComposant/daMatrices/__init__.py +++ b/src/daComposant/daMatrices/__init__.py @@ -1,6 +1,6 @@ #-*-coding:iso-8859-1-*- # -# Copyright (C) 2008-2012 EDF R&D +# Copyright (C) 2008-2013 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/daComposant/daNumerics/ApproximatedDerivatives.py b/src/daComposant/daNumerics/ApproximatedDerivatives.py index e53ef35..9089cb5 100644 --- a/src/daComposant/daNumerics/ApproximatedDerivatives.py +++ b/src/daComposant/daNumerics/ApproximatedDerivatives.py @@ -1,6 +1,6 @@ #-*-coding:iso-8859-1-*- # -# Copyright (C) 2008-2012 EDF R&D +# Copyright (C) 2008-2013 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/daComposant/daNumerics/__init__.py b/src/daComposant/daNumerics/__init__.py index 0384387..246f8b1 100644 --- a/src/daComposant/daNumerics/__init__.py +++ b/src/daComposant/daNumerics/__init__.py @@ -1,6 +1,6 @@ #-*-coding:iso-8859-1-*- # -# Copyright (C) 2008-2012 EDF R&D +# Copyright (C) 2008-2013 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/daComposant/daNumerics/mmqr.py b/src/daComposant/daNumerics/mmqr.py index 551d059..1395fcb 100644 --- a/src/daComposant/daNumerics/mmqr.py +++ b/src/daComposant/daNumerics/mmqr.py @@ -1,6 +1,6 @@ #-*-coding:iso-8859-1-*- # -# Copyright (C) 2008-2012 EDF R&D +# Copyright (C) 2008-2013 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public -- 2.39.2