Changeset 9976

Show
Ignore:
Timestamp:
04/03/10 03:09:04 (3 years ago)
Author:
shereef
Message:

reverted preamble to original GPL format

Location:
ossiedev/trunk/tools/WaveDev/wavedev/generate
Files:
5 modified

Legend:

Unmodified
Added
Removed
  • ossiedev/trunk/tools/WaveDev/wavedev/generate/genNode.py

    r9721 r9976  
    10261026      for line in inFile.readlines(): 
    10271027          l_out = line.replace("__COMP_NAME__",name) 
    1028           l_out = l_out.replace("__YEAR__",date.today().year.__str__()) 
    1029           l_out = l_out.replace("__DEVELOPER__",self.developer) 
     1028          #l_out = l_out.replace("__YEAR__",date.today().year.__str__()) 
     1029          #l_out = l_out.replace("__DEVELOPER__",self.developer) 
    10301030          outFile.write(l_out) 
    10311031 
  • ossiedev/trunk/tools/WaveDev/wavedev/generate/generic_preamble

    r8728 r9976  
    11/**************************************************************************** 
    22 
    3 Copyright __YEAR__ by __DEVELOPER__, all rights reserved. 
     3Copyright 2007 Virginia Polytechnic Institute and State University 
     4 
     5This file is part of the OSSIE __COMP_NAME__. 
     6 
     7OSSIE __COMP_NAME__ is free software; you can redistribute it and/or modify 
     8it under the terms of the GNU General Public License as published by 
     9the Free Software Foundation; either version 2 of the License, or 
     10(at your option) any later version. 
     11 
     12OSSIE __COMP_NAME__ is distributed in the hope that it will be useful, 
     13but WITHOUT ANY WARRANTY; without even the implied warranty of 
     14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     15GNU General Public License for more details. 
     16 
     17You should have received a copy of the GNU General Public License 
     18along with OSSIE __COMP_NAME__; if not, write to the Free Software 
     19Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
    420 
    521****************************************************************************/ 
  • ossiedev/trunk/tools/WaveDev/wavedev/generate/templates/basic_ports/genStructure.py

    r9912 r9976  
    16891689      for line in inFile.readlines(): 
    16901690          l_out = line.replace("__COMP_NAME__",name) 
    1691           l_out = l_out.replace("__YEAR__",date.today().year.__str__()) 
    1692           l_out = l_out.replace("__DEVELOPER__",self.developer) 
     1691          #l_out = l_out.replace("__YEAR__",date.today().year.__str__()) 
     1692          #l_out = l_out.replace("__DEVELOPER__",self.developer) 
    16931693          outFile.write(l_out) 
    16941694 
  • ossiedev/trunk/tools/WaveDev/wavedev/generate/templates/custom_ports/genStructure.py

    r9727 r9976  
    12201220      for line in inFile.readlines(): 
    12211221          l_out = line.replace("__COMP_NAME__",name) 
    1222           l_out = l_out.replace("__YEAR__",date.today().year.__str__()) 
    1223           l_out = l_out.replace("__DEVELOPER__",self.developer) 
     1222          #l_out = l_out.replace("__YEAR__",date.today().year.__str__()) 
     1223          #l_out = l_out.replace("__DEVELOPER__",self.developer) 
    12241224          outFile.write(l_out) 
    12251225 
  • ossiedev/trunk/tools/WaveDev/wavedev/generate/templates/py_comp/genStructure.py

    r9975 r9976  
    573573      for line in inFile.readlines(): 
    574574          l_out = line.replace("__COMP_NAME__",name) 
    575           l_out = l_out.replace("__YEAR__",date.today().year.__str__()) 
    576           l_out = l_out.replace("__DEVELOPER__",self.developer) 
     575          #l_out = l_out.replace("__YEAR__",date.today().year.__str__()) 
     576          #l_out = l_out.replace("__DEVELOPER__",self.developer) 
    577577          outFile.write(l_out) 
    578578      outFile.write("'''\n\n")