-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Remove dead #classCategory (we do not want categories anymore!) - Replace references to RPackageOrganizer for PackageOrganizer - Remove usage of RPackageSet. Monticello does not use the cache anymore! So we can remove everything about it (especially since RPackageSet will be deprecated)
- Loading branch information
Showing
295 changed files
with
3,185 additions
and
2,752 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#( 'BaselineOfLibGit' 'BaselineOfIceberg' ) do: [ :each | | ||
(RPackageOrganizer default packageNamed: each ifAbsent: [ nil ]) | ||
(PackageOrganizer default packageNamed: each ifAbsent: [ nil ]) | ||
ifNotNil: [ :aPackage | aPackage removeFromSystem ] ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Extension { #name : #FTRootItem } | ||
Extension { #name : 'FTRootItem' } | ||
|
||
{ #category : #'*Iceberg-TipUI' } | ||
{ #category : '*Iceberg-TipUI' } | ||
FTRootItem >> isRoot [ | ||
^ true | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Extension { #name : #FTTreeItem } | ||
Extension { #name : 'FTTreeItem' } | ||
|
||
{ #category : #'*Iceberg-TipUI' } | ||
{ #category : '*Iceberg-TipUI' } | ||
FTTreeItem >> isRoot [ | ||
^ false | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
Extension { #name : #IceAbstractCredentials } | ||
Extension { #name : 'IceAbstractCredentials' } | ||
|
||
{ #category : #'*Iceberg-TipUI' } | ||
{ #category : '*Iceberg-TipUI' } | ||
IceAbstractCredentials >> askForModelClass [ | ||
^ self subclassResponsibility | ||
] | ||
|
||
{ #category : #'*Iceberg-TipUI' } | ||
{ #category : '*Iceberg-TipUI' } | ||
IceAbstractCredentials >> editModelClass [ | ||
^ self subclassResponsibility | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Extension { #name : #IceCheckoutAllPackages } | ||
Extension { #name : 'IceCheckoutAllPackages' } | ||
|
||
{ #category : #'*Iceberg-TipUI' } | ||
{ #category : '*Iceberg-TipUI' } | ||
IceCheckoutAllPackages class >> description [ | ||
^ 'Checkout ALL packages in the repository' | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Extension { #name : #IceCheckoutAlreadyLoadedPackages } | ||
Extension { #name : 'IceCheckoutAlreadyLoadedPackages' } | ||
|
||
{ #category : #'*Iceberg-TipUI' } | ||
{ #category : '*Iceberg-TipUI' } | ||
IceCheckoutAlreadyLoadedPackages class >> description [ | ||
^ 'Checkout packages ALREADY LOADED in the image' | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Extension { #name : #IceCheckoutDoNotLoadPackages } | ||
Extension { #name : 'IceCheckoutDoNotLoadPackages' } | ||
|
||
{ #category : #'*Iceberg-TipUI' } | ||
{ #category : '*Iceberg-TipUI' } | ||
IceCheckoutDoNotLoadPackages class >> description [ | ||
^ 'DO NOT CHECKOUT any packages, I will load them manually (for experts only)' | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
Extension { #name : #IceCheckoutStrategy } | ||
Extension { #name : 'IceCheckoutStrategy' } | ||
|
||
{ #category : #'*Iceberg-TipUI' } | ||
{ #category : '*Iceberg-TipUI' } | ||
IceCheckoutStrategy >> description [ | ||
|
||
^ self class description | ||
] | ||
|
||
{ #category : #'*Iceberg-TipUI' } | ||
{ #category : '*Iceberg-TipUI' } | ||
IceCheckoutStrategy class >> description [ | ||
^ self subclassResponsibility | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Extension { #name : #IceClassDefinition } | ||
Extension { #name : 'IceClassDefinition' } | ||
|
||
{ #category : #'*Iceberg-TipUI' } | ||
{ #category : '*Iceberg-TipUI' } | ||
IceClassDefinition >> icon [ | ||
^ self iconNamed: #class | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Extension { #name : #IceDirectoryDefinition } | ||
Extension { #name : 'IceDirectoryDefinition' } | ||
|
||
{ #category : #'*Iceberg-TipUI' } | ||
{ #category : '*Iceberg-TipUI' } | ||
IceDirectoryDefinition >> icon [ | ||
^ self iconNamed: #emptyPackage | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
Extension { #name : #IceErrorVisitor } | ||
Extension { #name : 'IceErrorVisitor' } | ||
|
||
{ #category : #'*Iceberg-TipUI' } | ||
{ #category : '*Iceberg-TipUI' } | ||
IceErrorVisitor >> visitExperimentalFeature: aWarning [ | ||
|
||
"By default experimental features are just accepted when we are not in an interactive mode". | ||
aWarning resume | ||
] | ||
|
||
{ #category : #'*Iceberg-TipUI' } | ||
{ #category : '*Iceberg-TipUI' } | ||
IceErrorVisitor >> visitNoCommitMessage: aWarning [ | ||
self visitGenericError: aWarning | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Extension { #name : #IceExtensionDefinition } | ||
Extension { #name : 'IceExtensionDefinition' } | ||
|
||
{ #category : #'*Iceberg-TipUI' } | ||
{ #category : '*Iceberg-TipUI' } | ||
IceExtensionDefinition >> icon [ | ||
^ self iconNamed: #group | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Extension { #name : #IceFileDefinition } | ||
Extension { #name : 'IceFileDefinition' } | ||
|
||
{ #category : #'*Iceberg-TipUI' } | ||
{ #category : '*Iceberg-TipUI' } | ||
IceFileDefinition >> icon [ | ||
^ self iconNamed: #book | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.