ProjectDefinition.st
branchjv
changeset 18037 4cf874da38c9
parent 18033 c90d8fdd805d
parent 14930 5fe8a9868547
child 18038 cb89906f69f9
--- a/ProjectDefinition.st	Mon Mar 18 22:12:08 2013 +0000
+++ b/ProjectDefinition.st	Fri Mar 22 09:18:54 2013 +0000
@@ -2329,7 +2329,6 @@
     "Created: / 18-08-2006 / 12:51:38 / cg"
 ! !
 
-
 !ProjectDefinition class methodsFor:'description - project information'!
 
 applicationAdditionalIconFileNames
@@ -2506,16 +2505,20 @@
     self module = 'stx' ifTrue:[
         "hardwired-default"
         ^ 'Copyright Claus Gittinger 1988-%1\nCopyright eXept Software AG 1998-%1'
-            bindWith:(Date today year printString)
+            bindWith:(Date today year)
     ].
     self module = 'exept' ifTrue:[
         "hardwired-default"
         ^ 'Copyright eXept Software AG 1998-%1'
-            bindWith:(Date today year printString)
+            bindWith:(Date today year)
     ].
 
     ^ 'My CopyRight or CopyLeft'
 
+    "
+        self legalCopyright
+    "
+
     "Modified: / 30-08-2006 / 18:53:36 / cg"
 !
 
@@ -2806,6 +2809,9 @@
 !
 
 forEachFileNameAndGeneratedContentsDo:aTwoArgBlock
+    "for build-support file generation, checkin etc., use this common method which
+     enumerates all fileNames with their generated contents to be built."
+
     |pairs|
 
     pairs := OrderedCollection new.
@@ -2822,6 +2828,8 @@
 !
 
 forEachFileNameAndGeneratorMethodDo:aTwoArgBlock
+    "helper for build-support file generation"
+
     self fileNamesToGenerate keysAndValuesDo:aTwoArgBlock
 
     "Modified: / 14-09-2006 / 21:02:37 / cg"
@@ -7149,11 +7157,11 @@
 !ProjectDefinition class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.431 2013-03-15 15:49:12 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.433 2013-03-21 16:41:42 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.431 2013-03-15 15:49:12 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.433 2013-03-21 16:41:42 cg Exp $'
 !
 
 version_HG