stx_goodies_monticello.st
author Claus Gittinger <cg@exept.de>
Sat, 01 Sep 2018 17:33:17 +0200
changeset 1093 9ae1f3f8b1f4
parent 1082 0fc9d3b9894f
permissions -rw-r--r--
#OTHER by cg initial checkin class: MCFileTreeFileSystemUtils class: MCFileTreeFileSystemUtils class added:17 methods
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
1082
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    36
    "list packages which are mandatory as a prerequisite.
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    37
     This are packages containing superclasses of my classes and classes which
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    38
     are extended by myself.
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    39
     They are mandatory, because we need these packages as a prerequisite for loading and compiling.
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    40
     This method is generated automatically,
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    41
     by searching along the inheritance chain of all of my classes.
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    42
     Please take a look at the #referencedPreRequisites method as well."
170
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
    ^ #(
1082
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    45
        #'stx:libbasic'    "AbstractTime - extended"
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    46
        #'stx:libbasic3'    "AbstractSourceCodeManager - superclass of MCSourceCodeManager"
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    47
        #'stx:libcompat'    "PackageInfo - extended"
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    48
        #'stx:libtool'    "AbstractSettingsApplication - superclass of MCSettingsApp"
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    49
        #'stx:libview2'    "ApplicationModel - extended"
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    50
        #'stx:libwidg2'    "AbstractHierarchicalItem - superclass of MCPackageEntry"
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
1082
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    55
    "list packages which are a prerequisite, because they contain
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    56
     classes which are referenced by my classes.
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    57
     These packages are NOT needed as a prerequisite for compiling or loading,
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    58
     however, a class from it may be referenced during execution and having it
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    59
     unloaded then may lead to a runtime doesNotUnderstand error, unless the caller
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    60
     includes explicit checks for the package being present.
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    61
     This method is generated automatically,
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    62
     by searching all classes (and their packages) which are referenced by my classes.
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    63
     Please also take a look at the #mandatoryPreRequisites method"
731
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
    64
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
    65
    ^ #(
1082
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    66
        #'stx:goodies/communication'    "FTPClient - referenced by MCFtpRepository>>clientDo:"
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    67
        #'stx:libbasic2'    "Iterator - referenced by MCPackageList>>makeGenerator"
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    68
        #'stx:libcomp'    "Parser - referenced by MCRepositoryBrowser>>repositoryAddFromExpressionString"
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    69
        #'stx:libhtml'    "HTMLDocumentView - referenced by MCRepositoryBrowser>>openDocumentation"
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    70
        #'stx:libview'    "Color - referenced by MCCommitDialog>>findUniqueVersionNumber"
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    71
        #'stx:libwidg'    "PopUpMenu - referenced by MCVersionInspector>>pickAncestor"
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    72
    )
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    73
!
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    74
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    75
subProjects
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    76
    "list packages which are known as subprojects.
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    77
     The generated makefile will enter those and make there as well.
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    78
     However: they are not forced to be loaded when a package is loaded;
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    79
     for those, redefine #referencedPrerequisites or #mandatoryPreRequisites."
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    80
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
    81
    ^ #(
170
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    82
    )
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    83
! !
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    84
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    85
!stx_goodies_monticello class methodsFor:'description - contents'!
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    86
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    87
classNamesAndAttributes
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    88
    "lists the classes which are to be included in the project.
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    89
     Each entry in the list may be: a single class-name (symbol),
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    90
     or an array-literal consisting of class name and attributes.
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    91
     Attributes are: #autoload or #<os> where os is one of win32, unix,..."
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    92
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    93
    ^ #(
756
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    94
        "<className> or (<className> attributes...) in load order"
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    95
        InMidstOfFileinNotification
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    96
        MCAncestry
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    97
        MCBrowserList
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    98
        MCChangeSelectionRequest
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
    99
        MCConflict
1068
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   100
        MCCredentialsRequest
756
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   101
        MCDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   102
        MCDefinitionIndex
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   103
        MCDependencySorter
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   104
        MCDialog
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   105
        MCDirtyPackageInfo
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   106
        MCDoItParser
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   107
        MCEmptyPackageInfo
1093
9ae1f3f8b1f4 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
   108
        MCFileTreeFileUtils
756
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   109
        MCFrontier
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   110
        MCInteractiveLoadingQuery
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   111
        MCLazyPropertyDictionary
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   112
        MCMergeRecord
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   113
        MCMergeResolutionRequest
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   114
        MCMerger
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   115
        MCMock
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   116
        MCMockAPoolDictionary
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   117
        MCMockDependency
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   118
        MCMockPackageInfo
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   119
        MCNoChangesException
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   120
        MCPackage
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   121
        MCPackageCache
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   122
        MCPackageEntry
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   123
        MCPackageLoader
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   124
        MCPackageManager
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   125
        MCPatch
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   126
        MCPatchOperation
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   127
        MCPatcher
1068
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   128
        MCPermissionDenied
756
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   129
        MCReader
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   130
        MCRepository
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   131
        MCRepositoryBrowser
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   132
        MCRepositoryEntry
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   133
        MCRepositoryGroup
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   134
        MCScanner
1068
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   135
        MCServerCredentials
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   136
        MCServerRegistry
756
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   137
        MCSettingsApp
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   138
        MCSnapshot
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   139
        MCSourceCodeManager
958
e00dfdc68a4a added class: MCClassComment
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
   140
        MCStXNamespaceQuery
e00dfdc68a4a added class: MCClassComment
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
   141
        MCStXPackageInfo
756
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   142
        MCStXPackageQuery
958
e00dfdc68a4a added class: MCClassComment
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
   143
        MCStXSnapshotTransformation
e00dfdc68a4a added class: MCClassComment
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
   144
        MCStxVersionInfo
756
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   145
        MCTimestampAnnotation
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   146
        MCTool
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   147
        MCVariableDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   148
        MCVersion
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   149
        MCVersionDependency
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   150
        MCVersionEntry
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   151
        MCVersionLoader
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   152
        MCVersionMerger
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   153
        MCVersionNameAndMessageRequest
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   154
        MCVersionNotification
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   155
        MCVersionSorter
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   156
        MCWriter
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   157
        MethodReference
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   158
        PackageOrganizer
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   159
        #'stx_goodies_monticello'
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   160
        MCAddition
958
e00dfdc68a4a added class: MCClassComment
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
   161
        MCClassComment
756
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   162
        MCClassDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   163
        MCClassInstanceVariableDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   164
        MCClassTraitDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   165
        MCClassTraitParser
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   166
        MCClassVariableDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   167
        MCCodeTool
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   168
        MCCommitDialog
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   169
        MCDictionaryRepository
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   170
        MCDiffyVersion
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   171
        MCFileBasedRepository
1093
9ae1f3f8b1f4 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
   172
        MCFileTreeFileSystemUtils
756
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   173
        MCFilteredVersionSorter
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   174
        MCGOODSRepository
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   175
        MCInstanceVariableDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   176
        MCMczWriter
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   177
        MCMethodDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   178
        MCMockDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   179
        MCMockDependentItem
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   180
        MCModification
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   181
        MCMultiPackageLoader
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   182
        MCOrganizationDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   183
        MCPackageList
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   184
        MCPoolImportDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   185
        MCRemoval
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   186
        MCRepositoryDialog
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   187
        MCRepositoryList
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   188
        MCScriptDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   189
        MCSnapshotReader
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   190
        MCStWriter
958
e00dfdc68a4a added class: MCClassComment
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
   191
        MCStXSnapshotPostReadTransformation
e00dfdc68a4a added class: MCClassComment
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
   192
        MCStXSnapshotPreWriteTransformation
756
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   193
        MCSystemCategoryParser
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   194
        MCThreeWayMerger
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   195
        MCTraitParser
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   196
        MCVersionHistoryBrowser
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   197
        MCVersionInfo
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   198
        MCVersionInfoWriter
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   199
        MCVersionInspector
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   200
        MCVersionList
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   201
        MCVersionReader
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   202
        MCWorkingAncestry
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   203
        MCWorkingCopy
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   204
        MCWriteOnlyRepository
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   205
        MCDirectoryRepository
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   206
        MCFtpRepository
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   207
        MCHttpRepository
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   208
        MCLazyVersionInfo
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   209
        MCMcdWriter
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   210
        MCMczReader
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   211
        MCPatchBrowser
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   212
        MCPostscriptDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   213
        MCPreambleDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   214
        MCRemovalPostscriptDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   215
        MCRemovalPreambleDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   216
        MCSMReleaseRepository
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   217
        MCSmtpRepository
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   218
        MCStReader
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   219
        MCStxMczWriter
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   220
        MCStxStWriter
958
e00dfdc68a4a added class: MCClassComment
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
   221
        MCTraitDefinition
1068
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   222
        MCCacheRepository
1093
9ae1f3f8b1f4 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
   223
        MCFileTreeRepository
1068
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   224
        MCGemstoneRepository
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   225
        MCMcdReader
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   226
        MCSmalltalkhubRepository
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   227
        MCSqueaksourceRepository
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   228
        MCSubDirectoryRepository
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   229
        (MCDependentsWrapper autoload)
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   230
        (MCToolWindowBuilder autoload)
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   231
        (MCSaveVersionDialog autoload)
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   232
        (MCWorkingCopyBrowser autoload)
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   233
        (MCFileRepositoryInspector autoload)
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   234
        (MCRepositoryInspector autoload)
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   235
        (MCSMCacheRepository autoload)
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   236
        (MCSnapshotBrowser autoload)
958
e00dfdc68a4a added class: MCClassComment
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
   237
        (MCWorkingHistoryBrowser autoload)
e00dfdc68a4a added class: MCClassComment
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
   238
        (MCChangeSelector autoload)
e00dfdc68a4a added class: MCClassComment
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
   239
        (MCMergeBrowser autoload)
170
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   240
    )
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   241
!
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   242
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   243
extensionMethodNames
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   244
    "lists the extension methods which are to be included in the project.
1082
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
   245
     Entries are 2-element array literals, consisting of class-name and selector.
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
   246
     A correponding method with real names must be present in my concrete subclasses
0fc9d3b9894f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
   247
     if it has extensions."
170
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   248
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   249
    ^ #(
756
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   250
        Behavior traitCompositionString
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   251
        Behavior typeOfClass
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   252
        Class asClassDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   253
        Class classDefinitions
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   254
        Class poolDictionaryNames
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   255
        ClassDescription mcDefinition
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   256
        Object isConflict
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   257
        SequenceableCollection copyReplaceAll:with:asTokens:
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   258
        Stream isMessageStream
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   259
        String extractNumber
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   260
        String withSqueakLineEndings
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   261
        StringCollection asStringWithNativeLineEndings
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   262
        StringCollection asStringWithSqueakLineEndings
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   263
        Symbol isDoIt
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   264
        #'Tools::NewSystemBrowser' projectMenuMonticelloCommit
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   265
        UndefinedObject typeOfClass
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   266
        UserPreferences mcEnabled
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   267
        UserPreferences mcEnabled:
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   268
        UserPreferences mcRepositories
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   269
        UserPreferences mcRepositories:
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   270
        VersionInfo timeStamp
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   271
        'Annotation class' mctimestamp:
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   272
        'ProjectDefinition class' #'monticelloTimestamps_code'
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   273
        'ProjectDefinition class' #'monticelloTimestamps_codeFor:'
2bdeb427dc46 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
   274
        'Timestamp class' fromMethodTimeStamp:
843
a4ea1147dd16 More support Squeak/Pharo interoperability - part 1:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 767
diff changeset
   275
        Change mcDefinition
a4ea1147dd16 More support Squeak/Pharo interoperability - part 1:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 767
diff changeset
   276
        Change mcDefinition:
a4ea1147dd16 More support Squeak/Pharo interoperability - part 1:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 767
diff changeset
   277
        'ProjectDefinition class' monticelloName
a4ea1147dd16 More support Squeak/Pharo interoperability - part 1:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 767
diff changeset
   278
        'ProjectDefinition class' #'monticelloAncestry_code'
a4ea1147dd16 More support Squeak/Pharo interoperability - part 1:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 767
diff changeset
   279
        PackageInfo isMCStXPackageInfo
a4ea1147dd16 More support Squeak/Pharo interoperability - part 1:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 767
diff changeset
   280
        CharacterArray asStringWithSqueakLineEndings
a4ea1147dd16 More support Squeak/Pharo interoperability - part 1:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 767
diff changeset
   281
        CharacterArray asStringWithNativeLineEndings
884
ad72b9928675 Added ProjectDefinition>>monticelloNameForMCZ
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 861
diff changeset
   282
        'ProjectDefinition class' monticelloNameForMCZ
170
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   283
    )
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
!stx_goodies_monticello class methodsFor:'description - project information'!
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   287
731
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
   288
applicationIconFileName
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
   289
    "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
   290
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
   291
    ^ nil
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
   292
    "/ ^ self applicationName
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
   293
!
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
   294
170
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   295
companyName
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   296
    "Return a companyname which will appear in <lib>.rc"
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   297
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   298
    ^ 'eXept Software AG'
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   299
!
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   300
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   301
description
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   302
    "Return a description string which will appear in vc.def / bc.def"
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   303
426
a3c68303028c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
   304
    ^ 'Smalltalk/X Monticello Class library'
a3c68303028c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
   305
a3c68303028c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
   306
    "Modified: / 20-08-2011 / 16:57:40 / cg"
170
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   307
!
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   308
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   309
legalCopyright
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   310
    "Return a copyright string which will appear in <lib>.rc"
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   311
426
a3c68303028c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
   312
    ^ 'Public - See SqueakSource'
a3c68303028c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
   313
a3c68303028c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 420
diff changeset
   314
    "Modified: / 20-08-2011 / 16:58:01 / cg"
170
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   315
!
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   316
731
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
   317
productInstallDirBaseName
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
   318
    "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
   319
     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
   320
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
   321
    ^ (self package asCollectionOfSubstringsSeparatedByAny:':/') last
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
   322
!
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
   323
170
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   324
productName
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   325
    "Return a product name which will appear in <lib>.rc"
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   326
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   327
    ^ 'Smalltalk/X'
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   328
! !
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   329
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   330
!stx_goodies_monticello class methodsFor:'documentation'!
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   331
413
dc9d07e446b1 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   332
version
1068
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   333
    ^ '$Header$'
413
dc9d07e446b1 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   334
!
dc9d07e446b1 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   335
170
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   336
version_CVS
1068
d31a825dfb42 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   337
    ^ '$Header$'
170
af0405ebc5a5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   338
! !
731
a5381bbaee2e Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 551
diff changeset
   339