VersionInfo.st
author Claus Gittinger <cg@exept.de>
Fri, 28 Nov 2014 18:28:19 +0100
changeset 3655 2f83480a5df4
parent 3517 b94e2737c469
child 3662 576a064f048e
permissions -rw-r--r--
class: VersionInfo comment/format in: #documentation
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2177
ec8a8ef58c34 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
     1
"
ec8a8ef58c34 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
     2
 COPYRIGHT (c) 2008 by eXept Software AG
ec8a8ef58c34 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
     3
              All Rights Reserved
ec8a8ef58c34 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
     4
ec8a8ef58c34 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
     5
 This software is furnished under a license and may be used
ec8a8ef58c34 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
     6
 only in accordance with the terms of that license and with the
ec8a8ef58c34 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
ec8a8ef58c34 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
     8
 be provided or otherwise made available to, or used by, any
ec8a8ef58c34 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
     9
 other person.  No title to or ownership of the software is
ec8a8ef58c34 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
    10
 hereby transferred.
ec8a8ef58c34 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
    11
"
2028
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libbasic3' }"
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
Object subclass:#VersionInfo
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:'revision binaryRevision user date time fileName'
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	category:'System-SourceCodeManagement'
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!VersionInfo class methodsFor:'documentation'!
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
2177
ec8a8ef58c34 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
    23
copyright
ec8a8ef58c34 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
    24
"
ec8a8ef58c34 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
    25
 COPYRIGHT (c) 2008 by eXept Software AG
ec8a8ef58c34 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
    26
              All Rights Reserved
ec8a8ef58c34 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
    27
ec8a8ef58c34 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
    28
 This software is furnished under a license and may be used
ec8a8ef58c34 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
    29
 only in accordance with the terms of that license and with the
ec8a8ef58c34 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
ec8a8ef58c34 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
    31
 be provided or otherwise made available to, or used by, any
ec8a8ef58c34 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
    32
 other person.  No title to or ownership of the software is
ec8a8ef58c34 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
    33
 hereby transferred.
ec8a8ef58c34 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
    34
"
ec8a8ef58c34 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
    35
!
ec8a8ef58c34 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
    36
2028
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
documentation
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
"
3655
2f83480a5df4 class: VersionInfo
Claus Gittinger <cg@exept.de>
parents: 3517
diff changeset
    39
    In ancient times, Class used to return a Dictionary when asked for versionInfo.
2028
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
    This has been replaced by instances of this class and subclasses.
3655
2f83480a5df4 class: VersionInfo
Claus Gittinger <cg@exept.de>
parents: 3517
diff changeset
    41
2f83480a5df4 class: VersionInfo
Claus Gittinger <cg@exept.de>
parents: 3517
diff changeset
    42
    Notice, that subclasses may add more info for specific source repositories
2f83480a5df4 class: VersionInfo
Claus Gittinger <cg@exept.de>
parents: 3517
diff changeset
    43
    (CVSVersionInfo, MonticelloVersionInfo etc.).
2f83480a5df4 class: VersionInfo
Claus Gittinger <cg@exept.de>
parents: 3517
diff changeset
    44
    However, any generic tools/ui should only depend on the values (and getters) found here.
2028
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
    [author:]
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
        cg (cg@AQUA-DUO)
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
"
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
! !
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
!VersionInfo methodsFor:'accessing'!
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
at:aKey
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
    "backward compatible dictionary-like accessing"
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
    (self respondsTo:aKey) ifTrue:[
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
        ^ self perform:aKey
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
    ].
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
    ^ self errorKeyNotFound:aKey
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
    "
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
     self new at:#binaryRevision
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
     self new at:#foo
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
    "
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
    "Modified: / 22-10-2008 / 20:23:31 / cg"
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
!
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
at:aKey ifAbsent:replacement
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
    "backward compatible dictionary-like accessing"
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
    (self respondsTo:aKey) ifTrue:[
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
        ^ (self perform:aKey) ? replacement
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    74
    ].
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    75
    ^ replacement
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    76
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    77
    "
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    78
     self new at:#binaryRevision
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    79
     self new at:#foo ifAbsent:#bar
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    80
    "
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    81
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    82
    "Created: / 22-10-2008 / 20:19:42 / cg"
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    83
!
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    84
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    85
at:aKey put:value
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    86
    "backward compatible dictionary-like accessing"
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    87
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    88
    (self respondsTo:aKey) ifTrue:[
3517
b94e2737c469 class: VersionInfo
Claus Gittinger <cg@exept.de>
parents: 2667
diff changeset
    89
        self perform:aKey asMutator with:value.
2028
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    90
        ^ value "/ sigh
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    91
    ].
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    92
    ^ self errorKeyNotFound:aKey
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    93
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    94
    "
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    95
     self new at:#binaryRevision put:#bar
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    96
     self new at:#foo put:#bar
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    97
    "
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    98
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    99
    "Created: / 22-10-2008 / 20:20:54 / cg"
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   100
!
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   101
2667
c496ecfe718d added: #author
Claus Gittinger <cg@exept.de>
parents: 2640
diff changeset
   102
author
c496ecfe718d added: #author
Claus Gittinger <cg@exept.de>
parents: 2640
diff changeset
   103
    ^ self user
c496ecfe718d added: #author
Claus Gittinger <cg@exept.de>
parents: 2640
diff changeset
   104
c496ecfe718d added: #author
Claus Gittinger <cg@exept.de>
parents: 2640
diff changeset
   105
    "Created: / 21-12-2011 / 23:09:54 / cg"
c496ecfe718d added: #author
Claus Gittinger <cg@exept.de>
parents: 2640
diff changeset
   106
!
c496ecfe718d added: #author
Claus Gittinger <cg@exept.de>
parents: 2640
diff changeset
   107
2028
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   108
binaryRevision
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   109
    ^ binaryRevision
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   110
!
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   111
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   112
binaryRevision:something
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   113
    binaryRevision := something.
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   114
!
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   115
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   116
date
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   117
    ^ date
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   118
!
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   119
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   120
date:something
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   121
    date := something.
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   122
!
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   123
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   124
fileName
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   125
    ^ fileName
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   126
!
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   127
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   128
fileName:something
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   129
    fileName := something.
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   130
!
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   131
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   132
keysAndValuesDo:aBlock
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   133
    self class instVarNames do:[:nm |
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   134
        aBlock value:(nm asSymbol) value:(self perform:nm asSymbol)
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   135
    ].
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   136
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   137
    "Created: / 22-10-2008 / 20:48:08 / cg"
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   138
!
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   139
2608
vrany
parents: 2382
diff changeset
   140
repositoryPathName
vrany
parents: 2382
diff changeset
   141
    "raise an error: must be redefined in concrete subclass(es)"
vrany
parents: 2382
diff changeset
   142
vrany
parents: 2382
diff changeset
   143
    ^ nil "Not known"
vrany
parents: 2382
diff changeset
   144
vrany
parents: 2382
diff changeset
   145
    "Modified: / 23-11-2011 / 23:33:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
vrany
parents: 2382
diff changeset
   146
!
vrany
parents: 2382
diff changeset
   147
2028
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   148
revision
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   149
    ^ revision
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   150
!
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   151
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   152
revision:something
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   153
    revision := something.
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   154
!
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   155
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   156
time
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   157
    ^ time
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   158
!
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   159
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   160
time:something
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   161
    time := something.
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   162
!
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   163
2640
f214ff2248ed added: #timeStamp:
Claus Gittinger <cg@exept.de>
parents: 2608
diff changeset
   164
timeStamp:aTimestamp
2667
c496ecfe718d added: #author
Claus Gittinger <cg@exept.de>
parents: 2640
diff changeset
   165
    date := aTimestamp asDate.
c496ecfe718d added: #author
Claus Gittinger <cg@exept.de>
parents: 2640
diff changeset
   166
    time := aTimestamp asTime.
2640
f214ff2248ed added: #timeStamp:
Claus Gittinger <cg@exept.de>
parents: 2608
diff changeset
   167
f214ff2248ed added: #timeStamp:
Claus Gittinger <cg@exept.de>
parents: 2608
diff changeset
   168
    "Created: / 04-12-2011 / 10:06:02 / cg"
f214ff2248ed added: #timeStamp:
Claus Gittinger <cg@exept.de>
parents: 2608
diff changeset
   169
!
f214ff2248ed added: #timeStamp:
Claus Gittinger <cg@exept.de>
parents: 2608
diff changeset
   170
2608
vrany
parents: 2382
diff changeset
   171
timezone
vrany
parents: 2382
diff changeset
   172
    "raise an error: must be redefined in concrete subclass(es)"
vrany
parents: 2382
diff changeset
   173
vrany
parents: 2382
diff changeset
   174
    ^ nil "Not known"
vrany
parents: 2382
diff changeset
   175
vrany
parents: 2382
diff changeset
   176
    "Modified: / 23-11-2011 / 13:54:56 / Jan Vrany <jan.vrany@fit.cvut.cz>"
vrany
parents: 2382
diff changeset
   177
!
vrany
parents: 2382
diff changeset
   178
2028
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   179
user
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   180
    ^ user
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   181
!
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   182
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   183
user:something
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   184
    user := something.
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   185
! !
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   186
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   187
!VersionInfo class methodsFor:'documentation'!
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   188
2177
ec8a8ef58c34 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
   189
version_CVS
3655
2f83480a5df4 class: VersionInfo
Claus Gittinger <cg@exept.de>
parents: 3517
diff changeset
   190
    ^ '$Header: /cvs/stx/stx/libbasic3/VersionInfo.st,v 1.8 2014-11-28 17:28:19 cg Exp $'
2028
1f54c88269b2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   191
! !
3517
b94e2737c469 class: VersionInfo
Claus Gittinger <cg@exept.de>
parents: 2667
diff changeset
   192