Salome HOME
implementation of algorithms for DTM
[modules/hydro.git] / check_copyright.py
index c1353dac85d6b3b8c2632e031d361dd9c07b3096..49775fe57f120ff9a84d631a4902f876e2530f48 100644 (file)
@@ -1,10 +1,15 @@
 
 import os
 
-theCopyright = '// Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE'
+theCopyright_line1 = '// Copyright (C) 2014-2015  EDF-R&D'
+theCopyright_line2 = '// This library is free software; you can redistribute it and/or'
 
 def check_file( theFile ):
   global files
+
+  if theFile=='src/HYDRO_tests/test_HYDROData_LandCoverMap.cxx':
+    return True; #in the file the unicode is used
+
   #print 'Checking %s...' % theFile
   aLines = open( theFile, 'r' ).readlines()
   if( len( aLines )==0 ):
@@ -12,10 +17,9 @@ def check_file( theFile ):
     return False
 
   aFirstLine = aLines[0][:-1]
-  if( aFirstLine != theCopyright ):
+  aSecondLine = aLines[1][:-1]
+  if( aFirstLine != theCopyright_line1 or aSecondLine != theCopyright_line2 ):
     print 'Incorrect copyright in the', theFile
-    #print aFirstLine
-    #print theCopyright
  
 
 def check_folder( theFolder ):
@@ -34,3 +38,4 @@ def check_folder( theFolder ):
 check_folder( 'src/HYDROData' )
 check_folder( 'src/HYDROGUI' )
 check_folder( 'src/HYDROPy' )
+check_folder( 'src/HYDRO_tests' )