Salome HOME
Updating copyright date information and version
[modules/adao.git] / src / daSalome / daGUI / daGuiImpl / adaoCase.py
index f241af1dcf8b894c3e1c2a9c1223b448cd3dafe5..5a2c9b94a944a5cb0feb4cb35943e7feb97f69f9 100644 (file)
@@ -1,21 +1,23 @@
 # -*- coding: utf-8 -*-
-#  Copyright (C) 2010 EDF R&D
+# Copyright (C) 2008-2015 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
-#  License as published by the Free Software Foundation; either
-#  version 2.1 of the License.
+# This file is part of SALOME ADAO module
 #
-#  This library is distributed in the hope that it will be useful,
-#  but WITHOUT ANY WARRANTY; without even the implied warranty of
-#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-#  Lesser General Public License for more details.
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License.
 #
-#  You should have received a copy of the GNU Lesser General Public
-#  License along with this library; if not, write to the Free Software
-#  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# Lesser General Public License for more details.
 #
-#  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+#
+# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 #
 
 import os
@@ -64,7 +66,7 @@ class AdaoCase:
   def createYACSFile(self):
     rtn = ""
     if (self.filename == ""):
-      return "You need to save your case to export it"
+      return "You need to save your case to export it."
 
     self.yacs_filename = self.filename[:self.filename.rfind(".")] + '.xml'
     yacs_filename_backup = self.filename[:self.filename.rfind(".")] + '.xml.back'
@@ -75,12 +77,12 @@ class AdaoCase:
     self.eficas_editor.saveFile()
     filename = self.filename[:self.filename.rfind(".")] + '.py'
     if not os.path.exists(filename):
-      msg =  "Cannot find the py file for YACS generation \n"
-      msg += "Is your case correct ? \n"
+      msg =  "Cannot find the COMM associated python file for YACS\n"
+      msg += "generation. Is your case correct?\n"
       return msg
 
     if not os.environ.has_key("ADAO_ROOT_DIR"):
-      return "Please add ADAO_ROOT_DIR to your environnement"
+      return "Please add ADAO_ROOT_DIR to your environnement."
 
     adao_path = os.environ["ADAO_ROOT_DIR"]
     adao_exe = adao_path + "/bin/salome/AdaoYacsSchemaCreator.py"
@@ -88,8 +90,9 @@ class AdaoCase:
     p = subprocess.Popen(args)
     (stdoutdata, stderrdata) = p.communicate()
     if not os.path.exists(self.yacs_filename):
-      msg  = "An error occured during the execution of AdaoYacsSchemaCreator.py \n"
-      msg += "See erros details in your terminal \n"
+      msg  = "An error occured during the execution of the ADAO YACS Schema\n"
+      msg += "Creator. If SALOME is launched by command line, see errors\n"
+      msg += "details in your terminal.\n"
       return msg
     return rtn