Changeset 9976
- Timestamp:
- 04/03/10 03:09:04 (3 years ago)
- Location:
- ossiedev/trunk/tools/WaveDev/wavedev/generate
- Files:
-
- 5 modified
-
genNode.py (modified) (1 diff)
-
generic_preamble (modified) (1 diff)
-
templates/basic_ports/genStructure.py (modified) (1 diff)
-
templates/custom_ports/genStructure.py (modified) (1 diff)
-
templates/py_comp/genStructure.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ossiedev/trunk/tools/WaveDev/wavedev/generate/genNode.py
r9721 r9976 1026 1026 for line in inFile.readlines(): 1027 1027 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) 1030 1030 outFile.write(l_out) 1031 1031 -
ossiedev/trunk/tools/WaveDev/wavedev/generate/generic_preamble
r8728 r9976 1 1 /**************************************************************************** 2 2 3 Copyright __YEAR__ by __DEVELOPER__, all rights reserved. 3 Copyright 2007 Virginia Polytechnic Institute and State University 4 5 This file is part of the OSSIE __COMP_NAME__. 6 7 OSSIE __COMP_NAME__ is free software; you can redistribute it and/or modify 8 it under the terms of the GNU General Public License as published by 9 the Free Software Foundation; either version 2 of the License, or 10 (at your option) any later version. 11 12 OSSIE __COMP_NAME__ is distributed in the hope that it will be useful, 13 but WITHOUT ANY WARRANTY; without even the implied warranty of 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 GNU General Public License for more details. 16 17 You should have received a copy of the GNU General Public License 18 along with OSSIE __COMP_NAME__; if not, write to the Free Software 19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 4 20 5 21 ****************************************************************************/ -
ossiedev/trunk/tools/WaveDev/wavedev/generate/templates/basic_ports/genStructure.py
r9912 r9976 1689 1689 for line in inFile.readlines(): 1690 1690 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) 1693 1693 outFile.write(l_out) 1694 1694 -
ossiedev/trunk/tools/WaveDev/wavedev/generate/templates/custom_ports/genStructure.py
r9727 r9976 1220 1220 for line in inFile.readlines(): 1221 1221 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) 1224 1224 outFile.write(l_out) 1225 1225 -
ossiedev/trunk/tools/WaveDev/wavedev/generate/templates/py_comp/genStructure.py
r9975 r9976 573 573 for line in inFile.readlines(): 574 574 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) 577 577 outFile.write(l_out) 578 578 outFile.write("'''\n\n")