stx_goodies_monticello.st
author Claus Gittinger <cg@exept.de>
Sun, 26 Aug 2018 14:44:04 +0200
changeset 1068 d31a825dfb42
parent 973 8a67537c9bea
child 1082 0fc9d3b9894f
permissions -rw-r--r--
#OTHER by cg update
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
170
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"{ Package: 'stx:goodies/monticello' }"
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
972
e907afea8852 class: stx_goodies_monticello
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
     3
"{ NameSpace: Smalltalk }"
e907afea8852 class: stx_goodies_monticello
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
     4
170
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
LibraryDefinition subclass:#stx_goodies_monticello
767
8054b14c28d5 class: stx_goodies_monticello
Claus Gittinger <cg@exept.de>
parents: 756
diff changeset
     6
	instanceVariableNames:''
8054b14c28d5 class: stx_goodies_monticello
Claus Gittinger <cg@exept.de>
parents: 756
diff changeset
     7
	classVariableNames:''
8054b14c28d5 class: stx_goodies_monticello
Claus Gittinger <cg@exept.de>
parents: 756
diff changeset
     8
	poolDictionaries:''
8054b14c28d5 class: stx_goodies_monticello
Claus Gittinger <cg@exept.de>
parents: 756
diff changeset
     9
	category:'* Projects & Packages *'
170
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
!
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
972
e907afea8852 class: stx_goodies_monticello
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
    12
!stx_goodies_monticello class methodsFor:'documentation'!
e907afea8852 class: stx_goodies_monticello
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
    13
e907afea8852 class: stx_goodies_monticello
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
    14
documentation
e907afea8852 class: stx_goodies_monticello
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
    15
"
e907afea8852 class: stx_goodies_monticello
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
    16
    Package documentation:
e907afea8852 class: stx_goodies_monticello
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
    17
e907afea8852 class: stx_goodies_monticello
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
    18
    This library provides support classes to read and write monticello packages
973
8a67537c9bea class: stx_goodies_monticello
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
    19
    (as used in Squeak and Pharo) and a GUI to browse and load such packages.
972
e907afea8852 class: stx_goodies_monticello
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
    20
973
8a67537c9bea class: stx_goodies_monticello
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
    21
    Notice that Squeak packages usually do not work out-of-the-box in ST/X.
972
e907afea8852 class: stx_goodies_monticello
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
    22
"
e907afea8852 class: stx_goodies_monticello
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
    23
! !
170
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
!stx_goodies_monticello class methodsFor:'description'!
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
excludedFromPreRequisites
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
    "list all packages which should be ignored in the automatic
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
     preRequisites scan. See #preRequisites for more."
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
    ^ #(
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
    )
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
!
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
731
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
    35
mandatoryPreRequisites
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
    36
    "list all required mandatory packages.
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
    37
     Packages are mandatory, if they contain superclasses of the package's classes
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
    38
     or classes which are extended by this package.
170
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
     This list can be maintained manually or (better) generated and
731
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
    40
     updated by scanning the superclass hierarchies
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
    41
     (the browser has a menu function for that)
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
    42
     However, often too much is found, and you may want to explicitely
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
    43
     exclude individual packages in the #excludedFromPreRequisites method."
170
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
    ^ #(
756
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    46
        #'stx:libbasic'    "String - extended "
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    47
        #'stx:libbasic3'    "VersionInfo - extended "
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    48
        #'stx:libtool'    "Tools::NewSystemBrowser - extended "
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    49
        #'stx:libview2'    "ApplicationModel - superclass of extended Tools::NewSystemBrowser "
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    50
        #'stx:libcompat'
731
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
    51
    )
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
    52
!
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
    53
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
    54
referencedPreRequisites
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
    55
    "list all packages containing classes referenced by the packages's members.
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
    56
     This list can be maintained manually or (better) generated and
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
    57
     updated by looking for global variable accesses
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
    58
     (the browser has a menu function for that)
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
    59
     However, often too much is found, and you may want to explicitely
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
    60
     exclude individual packages in the #excludedFromPreRequisites method."
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
    61
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
    62
    ^ #(
767
8054b14c28d5 class: stx_goodies_monticello
Claus Gittinger <cg@exept.de>
parents: 756
diff changeset
    63
        'stx:goodies/communication'     "/ HTTPInterface
170
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
    )
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
! !
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
!stx_goodies_monticello class methodsFor:'description - contents'!
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
classNamesAndAttributes
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
    "lists the classes which are to be included in the project.
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
     Each entry in the list may be: a single class-name (symbol),
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
     or an array-literal consisting of class name and attributes.
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
     Attributes are: #autoload or #<os> where os is one of win32, unix,..."
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    74
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    75
    ^ #(
756
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    76
        "<className> or (<className> attributes...) in load order"
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    77
        InMidstOfFileinNotification
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    78
        MCAncestry
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    79
        MCBrowserList
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    80
        MCChangeSelectionRequest
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    81
        MCConflict
1068
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
    82
        MCCredentialsRequest
756
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    83
        MCDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    84
        MCDefinitionIndex
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    85
        MCDependencySorter
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    86
        MCDialog
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    87
        MCDirtyPackageInfo
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    88
        MCDoItParser
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    89
        MCEmptyPackageInfo
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    90
        MCFrontier
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    91
        MCInteractiveLoadingQuery
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    92
        MCLazyPropertyDictionary
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    93
        MCMergeRecord
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    94
        MCMergeResolutionRequest
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    95
        MCMerger
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    96
        MCMock
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    97
        MCMockAPoolDictionary
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    98
        MCMockDependency
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    99
        MCMockPackageInfo
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   100
        MCNoChangesException
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   101
        MCPackage
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   102
        MCPackageCache
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   103
        MCPackageEntry
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   104
        MCPackageLoader
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   105
        MCPackageManager
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   106
        MCPatch
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   107
        MCPatchOperation
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   108
        MCPatcher
1068
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   109
        MCPermissionDenied
756
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   110
        MCReader
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   111
        MCRepository
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   112
        MCRepositoryBrowser
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   113
        MCRepositoryEntry
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   114
        MCRepositoryGroup
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   115
        MCScanner
1068
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   116
        MCServerCredentials
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   117
        MCServerRegistry
756
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   118
        MCSettingsApp
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   119
        MCSnapshot
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   120
        MCSourceCodeManager
958
e00dfdc68a4a added class: MCClassComment
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
   121
        MCStXNamespaceQuery
e00dfdc68a4a added class: MCClassComment
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
   122
        MCStXPackageInfo
756
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   123
        MCStXPackageQuery
958
e00dfdc68a4a added class: MCClassComment
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
   124
        MCStXSnapshotTransformation
e00dfdc68a4a added class: MCClassComment
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
   125
        MCStxVersionInfo
756
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   126
        MCTimestampAnnotation
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   127
        MCTool
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   128
        MCVariableDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   129
        MCVersion
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   130
        MCVersionDependency
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   131
        MCVersionEntry
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   132
        MCVersionLoader
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   133
        MCVersionMerger
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   134
        MCVersionNameAndMessageRequest
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   135
        MCVersionNotification
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   136
        MCVersionSorter
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   137
        MCWriter
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   138
        MethodReference
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   139
        PackageOrganizer
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   140
        #'stx_goodies_monticello'
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   141
        MCAddition
958
e00dfdc68a4a added class: MCClassComment
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
   142
        MCClassComment
756
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   143
        MCClassDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   144
        MCClassInstanceVariableDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   145
        MCClassTraitDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   146
        MCClassTraitParser
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   147
        MCClassVariableDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   148
        MCCodeTool
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   149
        MCCommitDialog
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   150
        MCDictionaryRepository
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   151
        MCDiffyVersion
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   152
        MCFileBasedRepository
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   153
        MCFilteredVersionSorter
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   154
        MCGOODSRepository
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   155
        MCInstanceVariableDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   156
        MCMczWriter
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   157
        MCMethodDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   158
        MCMockDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   159
        MCMockDependentItem
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   160
        MCModification
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   161
        MCMultiPackageLoader
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   162
        MCOrganizationDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   163
        MCPackageList
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   164
        MCPoolImportDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   165
        MCRemoval
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   166
        MCRepositoryDialog
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   167
        MCRepositoryList
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   168
        MCScriptDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   169
        MCSnapshotReader
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   170
        MCStWriter
958
e00dfdc68a4a added class: MCClassComment
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
   171
        MCStXSnapshotPostReadTransformation
e00dfdc68a4a added class: MCClassComment
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
   172
        MCStXSnapshotPreWriteTransformation
756
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   173
        MCSystemCategoryParser
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   174
        MCThreeWayMerger
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   175
        MCTraitParser
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   176
        MCVersionHistoryBrowser
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   177
        MCVersionInfo
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   178
        MCVersionInfoWriter
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   179
        MCVersionInspector
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   180
        MCVersionList
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   181
        MCVersionReader
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   182
        MCWorkingAncestry
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   183
        MCWorkingCopy
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   184
        MCWriteOnlyRepository
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   185
        MCDirectoryRepository
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   186
        MCFtpRepository
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   187
        MCHttpRepository
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   188
        MCLazyVersionInfo
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   189
        MCMcdWriter
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   190
        MCMczReader
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   191
        MCPatchBrowser
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   192
        MCPostscriptDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   193
        MCPreambleDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   194
        MCRemovalPostscriptDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   195
        MCRemovalPreambleDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   196
        MCSMReleaseRepository
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   197
        MCSmtpRepository
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   198
        MCStReader
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   199
        MCStxMczWriter
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   200
        MCStxStWriter
958
e00dfdc68a4a added class: MCClassComment
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
   201
        MCTraitDefinition
1068
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   202
        MCCacheRepository
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   203
        MCGemstoneRepository
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   204
        MCMcdReader
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   205
        MCSmalltalkhubRepository
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   206
        MCSqueaksourceRepository
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   207
        MCSubDirectoryRepository
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   208
        (MCDependentsWrapper autoload)
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   209
        (MCToolWindowBuilder autoload)
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   210
        (MCSaveVersionDialog autoload)
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   211
        (MCWorkingCopyBrowser autoload)
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   212
        (MCFileRepositoryInspector autoload)
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   213
        (MCRepositoryInspector autoload)
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   214
        (MCSMCacheRepository autoload)
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   215
        (MCSnapshotBrowser autoload)
958
e00dfdc68a4a added class: MCClassComment
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
   216
        (MCWorkingHistoryBrowser autoload)
e00dfdc68a4a added class: MCClassComment
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
   217
        (MCChangeSelector autoload)
e00dfdc68a4a added class: MCClassComment
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
   218
        (MCMergeBrowser autoload)
170
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   219
    )
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   220
!
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   221
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   222
extensionMethodNames
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   223
    "lists the extension methods which are to be included in the project.
843
a4ea1147dd16 More support Squeak/Pharo interoperability - part 1:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 767
diff changeset
   224
     Entries are pairwise elements, consisting of class-name and selector."
170
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   225
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   226
    ^ #(
756
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   227
        Behavior traitCompositionString
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   228
        Behavior typeOfClass
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   229
        Class asClassDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   230
        Class classDefinitions
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   231
        Class poolDictionaryNames
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   232
        ClassDescription mcDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   233
        Object isConflict
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   234
        SequenceableCollection copyReplaceAll:with:asTokens:
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   235
        Stream isMessageStream
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   236
        String extractNumber
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   237
        String withSqueakLineEndings
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   238
        StringCollection asStringWithNativeLineEndings
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   239
        StringCollection asStringWithSqueakLineEndings
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   240
        Symbol isDoIt
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   241
        #'Tools::NewSystemBrowser' projectMenuMonticelloCommit
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   242
        UndefinedObject typeOfClass
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   243
        UserPreferences mcEnabled
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   244
        UserPreferences mcEnabled:
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   245
        UserPreferences mcRepositories
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   246
        UserPreferences mcRepositories:
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   247
        VersionInfo timeStamp
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   248
        'Annotation class' mctimestamp:
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   249
        'ProjectDefinition class' #'monticelloTimestamps_code'
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   250
        'ProjectDefinition class' #'monticelloTimestamps_codeFor:'
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   251
        'Timestamp class' fromMethodTimeStamp:
843
a4ea1147dd16 More support Squeak/Pharo interoperability - part 1:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 767
diff changeset
   252
        Change mcDefinition
a4ea1147dd16 More support Squeak/Pharo interoperability - part 1:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 767
diff changeset
   253
        Change mcDefinition:
a4ea1147dd16 More support Squeak/Pharo interoperability - part 1:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 767
diff changeset
   254
        'ProjectDefinition class' monticelloName
a4ea1147dd16 More support Squeak/Pharo interoperability - part 1:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 767
diff changeset
   255
        'ProjectDefinition class' #'monticelloAncestry_code'
a4ea1147dd16 More support Squeak/Pharo interoperability - part 1:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 767
diff changeset
   256
        PackageInfo isMCStXPackageInfo
a4ea1147dd16 More support Squeak/Pharo interoperability - part 1:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 767
diff changeset
   257
        CharacterArray asStringWithSqueakLineEndings
a4ea1147dd16 More support Squeak/Pharo interoperability - part 1:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 767
diff changeset
   258
        CharacterArray asStringWithNativeLineEndings
884
ad72b9928675 Added ProjectDefinition>>monticelloNameForMCZ
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 861
diff changeset
   259
        'ProjectDefinition class' monticelloNameForMCZ
170
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   260
    )
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   261
! !
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   262
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   263
!stx_goodies_monticello class methodsFor:'description - project information'!
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   264
731
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
   265
applicationIconFileName
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
   266
    "Return the name (without suffix) of an icon-file (the app's icon); will be included in the rc-resource file"
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
   267
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
   268
    ^ nil
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
   269
    "/ ^ self applicationName
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
   270
!
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
   271
170
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   272
companyName
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   273
    "Return a companyname which will appear in <lib>.rc"
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   274
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   275
    ^ 'eXept Software AG'
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   276
!
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   277
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   278
description
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   279
    "Return a description string which will appear in vc.def / bc.def"
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   280
426
a3c68303028c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
   281
    ^ 'Smalltalk/X Monticello Class library'
a3c68303028c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
   282
a3c68303028c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
   283
    "Modified: / 20-08-2011 / 16:57:40 / cg"
170
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   284
!
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   285
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   286
legalCopyright
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   287
    "Return a copyright string which will appear in <lib>.rc"
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   288
426
a3c68303028c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
   289
    ^ 'Public - See SqueakSource'
a3c68303028c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
   290
a3c68303028c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
   291
    "Modified: / 20-08-2011 / 16:58:01 / cg"
170
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   292
!
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   293
731
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
   294
productInstallDirBaseName
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
   295
    "Returns a default installDir which will appear in <app>.nsi.
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
   296
     This is usually not the one you want to keep"
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
   297
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
   298
    ^ (self package asCollectionOfSubstringsSeparatedByAny:':/') last
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
   299
!
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
   300
170
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   301
productName
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   302
    "Return a product name which will appear in <lib>.rc"
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   303
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   304
    ^ 'Smalltalk/X'
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   305
! !
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   306
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   307
!stx_goodies_monticello class methodsFor:'documentation'!
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   308
413
dc9d07e446b1 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   309
version
1068
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   310
    ^ '$Header$'
413
dc9d07e446b1 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   311
!
dc9d07e446b1 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   312
170
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   313
version_CVS
1068
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   314
    ^ '$Header$'
170
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   315
! !
731
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
   316