From 2908a8f721c2faeae68e9bb114b03bc5d2b204ae Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Thu, 21 May 2020 12:02:21 +0200 Subject: [PATCH 01/46] Implementation of readFileStream and writeFileStream on GRPlatform for Pharo9 --- .../instance/fileStreamOn.do.binary..st | 5 ++++- .../instance/readFileStreamOn.do.binary..st | 3 +++ .../instance/writeFileStreamOn.do.binary..st | 3 +++ .../instance/contentsOfFile.binary..st | 2 +- .../instance/fileStreamOn.do.binary..st | 13 ------------- .../instance/readFileStreamOn.do.binary..st | 7 +++++++ .../instance/write.toFile.inFolder..st | 18 +++++++----------- .../instance/writeFileStreamOn.do.binary..st | 5 +++++ 8 files changed, 30 insertions(+), 26 deletions(-) create mode 100644 repository/Grease-Core.package/GRPlatform.class/instance/readFileStreamOn.do.binary..st create mode 100644 repository/Grease-Core.package/GRPlatform.class/instance/writeFileStreamOn.do.binary..st delete mode 100644 repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/fileStreamOn.do.binary..st create mode 100644 repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/readFileStreamOn.do.binary..st create mode 100644 repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/writeFileStreamOn.do.binary..st diff --git a/repository/Grease-Core.package/GRPlatform.class/instance/fileStreamOn.do.binary..st b/repository/Grease-Core.package/GRPlatform.class/instance/fileStreamOn.do.binary..st index b35e040c..f0155c88 100644 --- a/repository/Grease-Core.package/GRPlatform.class/instance/fileStreamOn.do.binary..st +++ b/repository/Grease-Core.package/GRPlatform.class/instance/fileStreamOn.do.binary..st @@ -1,3 +1,6 @@ file library fileStreamOn: aString do: aBlock binary: aBoolean - self subclassResponsibility \ No newline at end of file + self + greaseDeprecatedApi: 'GRPlatform>>#fileStreamOn:do:binary:' + details: 'Use readFileStreamOn:do:binary:'. + ^ self readFileStreamOn: aString do: aBlock binary: aBoolean \ No newline at end of file diff --git a/repository/Grease-Core.package/GRPlatform.class/instance/readFileStreamOn.do.binary..st b/repository/Grease-Core.package/GRPlatform.class/instance/readFileStreamOn.do.binary..st new file mode 100644 index 00000000..3ffa885a --- /dev/null +++ b/repository/Grease-Core.package/GRPlatform.class/instance/readFileStreamOn.do.binary..st @@ -0,0 +1,3 @@ +file library +readFileStreamOn: aString do: aBlock binary: aBoolean + self subclassResponsibility \ No newline at end of file diff --git a/repository/Grease-Core.package/GRPlatform.class/instance/writeFileStreamOn.do.binary..st b/repository/Grease-Core.package/GRPlatform.class/instance/writeFileStreamOn.do.binary..st new file mode 100644 index 00000000..3d67b1a2 --- /dev/null +++ b/repository/Grease-Core.package/GRPlatform.class/instance/writeFileStreamOn.do.binary..st @@ -0,0 +1,3 @@ +file library +writeFileStreamOn: aString do: aBlock binary: aBoolean + self subclassResponsibility \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/contentsOfFile.binary..st b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/contentsOfFile.binary..st index 119ba39b..ecfdc9d4 100644 --- a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/contentsOfFile.binary..st +++ b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/contentsOfFile.binary..st @@ -1,3 +1,3 @@ file library contentsOfFile: aString binary: aBoolean - ^ self fileStreamOn: aString do: [ :stream | stream contents ] binary: aBoolean \ No newline at end of file + ^ self readFileStreamOn: aString do: [ :stream | stream contents ] binary: aBoolean \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/fileStreamOn.do.binary..st b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/fileStreamOn.do.binary..st deleted file mode 100644 index 2fd81137..00000000 --- a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/fileStreamOn.do.binary..st +++ /dev/null @@ -1,13 +0,0 @@ -file library -fileStreamOn: aString do: aBlock binary: aBoolean - ^ aBoolean - ifTrue: [ - FileStream fileNamed: aString do: [ :stream | - stream binary. - aBlock value: stream ] ] - ifFalse: [ - MultiByteFileStream fileNamed: aString do: [ :stream | - stream - ascii; - wantsLineEndConversion: true. - aBlock value: stream ] ] \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/readFileStreamOn.do.binary..st b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/readFileStreamOn.do.binary..st new file mode 100644 index 00000000..2b7331ab --- /dev/null +++ b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/readFileStreamOn.do.binary..st @@ -0,0 +1,7 @@ +file library +readFileStreamOn: aString do: aBlock binary: aBoolean + "Line end conversion is no longer done for ascii... TBD!" + + ^ aBoolean + ifTrue: [ aString asFileReference binaryReadStreamDo: aBlock ] + ifFalse: [ aString asFileReference readStreamEncoded: 'ascii' do: aBlock ] \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/write.toFile.inFolder..st b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/write.toFile.inFolder..st index e77ae8c1..a2b62b43 100644 --- a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/write.toFile.inFolder..st +++ b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/write.toFile.inFolder..st @@ -1,15 +1,11 @@ file library write: aStringOrByteArray toFile: aFileNameString inFolder: aFolderString "writes aStringOrByteArray to a file named aFilenameString in the folder aFolderString" - | folder stream fullFilePath | + + | folder | folder := FileSystem disk resolveString: aFolderString. - fullFilePath := (folder / aFileNameString) asFileReference. - stream := aStringOrByteArray isString - ifTrue: [ - (MultiByteFileStream forceNewFileNamed: fullFilePath fullName) - ascii; - wantsLineEndConversion: true; - yourself ] - ifFalse: [ (FileStream forceNewFileNamed: fullFilePath fullName) binary ]. - [ stream nextPutAll: aStringOrByteArray ] - ensure: [ stream close ] \ No newline at end of file + "TODO: wantsLineEndConversion: true; ??" + ^ self + writeFileStreamOn: (folder / aFileNameString) asFileReference ensureDelete fullName + do: [ :stream | stream nextPutAll: aStringOrByteArray ] + binary: aStringOrByteArray isString not \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/writeFileStreamOn.do.binary..st b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/writeFileStreamOn.do.binary..st new file mode 100644 index 00000000..762e9cca --- /dev/null +++ b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/writeFileStreamOn.do.binary..st @@ -0,0 +1,5 @@ +file library +writeFileStreamOn: aString do: aBlock binary: aBoolean + ^ aBoolean + ifTrue: [ aString asFileReference binaryWriteStreamDo: aBlock ] + ifFalse: [ aString asFileReference writeStreamEncoded: 'ascii' do: aBlock ] \ No newline at end of file From 74b46bac88e154899b060395892453618b250495 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sat, 23 May 2020 12:06:43 +0200 Subject: [PATCH 02/46] A bit more succinct implementation of write:toFile:inFolder: --- .../GRPharoPlatform.class/instance/write.toFile.inFolder..st | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/write.toFile.inFolder..st b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/write.toFile.inFolder..st index a2b62b43..77cf8f76 100644 --- a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/write.toFile.inFolder..st +++ b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/write.toFile.inFolder..st @@ -1,11 +1,8 @@ file library write: aStringOrByteArray toFile: aFileNameString inFolder: aFolderString "writes aStringOrByteArray to a file named aFilenameString in the folder aFolderString" - - | folder | - folder := FileSystem disk resolveString: aFolderString. "TODO: wantsLineEndConversion: true; ??" ^ self - writeFileStreamOn: (folder / aFileNameString) asFileReference ensureDelete fullName + writeFileStreamOn: (aFolderString asFileReference / aFileNameString) ensureDelete pathString do: [ :stream | stream nextPutAll: aStringOrByteArray ] binary: aStringOrByteArray isString not \ No newline at end of file From 7c87436c31c3af58e99651bdd9bebb2ae4b2260d Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sat, 23 May 2020 12:44:58 +0200 Subject: [PATCH 03/46] read/write filestream api implementation on GRPharoPlatform for Pharo7+8 --- .../instance/fileStreamOn.do.binary..st | 13 ------------- .../instance/readFileStreamOn.do.binary..st | 7 +++++++ .../instance/write.toFile.inFolder..st | 17 +++++------------ .../instance/writeFileStreamOn.do.binary..st | 5 +++++ 4 files changed, 17 insertions(+), 25 deletions(-) delete mode 100644 repository/Grease-Pharo70-Core.package/GRPharoPlatform.class/instance/fileStreamOn.do.binary..st create mode 100644 repository/Grease-Pharo70-Core.package/GRPharoPlatform.class/instance/readFileStreamOn.do.binary..st create mode 100644 repository/Grease-Pharo70-Core.package/GRPharoPlatform.class/instance/writeFileStreamOn.do.binary..st diff --git a/repository/Grease-Pharo70-Core.package/GRPharoPlatform.class/instance/fileStreamOn.do.binary..st b/repository/Grease-Pharo70-Core.package/GRPharoPlatform.class/instance/fileStreamOn.do.binary..st deleted file mode 100644 index 2fd81137..00000000 --- a/repository/Grease-Pharo70-Core.package/GRPharoPlatform.class/instance/fileStreamOn.do.binary..st +++ /dev/null @@ -1,13 +0,0 @@ -file library -fileStreamOn: aString do: aBlock binary: aBoolean - ^ aBoolean - ifTrue: [ - FileStream fileNamed: aString do: [ :stream | - stream binary. - aBlock value: stream ] ] - ifFalse: [ - MultiByteFileStream fileNamed: aString do: [ :stream | - stream - ascii; - wantsLineEndConversion: true. - aBlock value: stream ] ] \ No newline at end of file diff --git a/repository/Grease-Pharo70-Core.package/GRPharoPlatform.class/instance/readFileStreamOn.do.binary..st b/repository/Grease-Pharo70-Core.package/GRPharoPlatform.class/instance/readFileStreamOn.do.binary..st new file mode 100644 index 00000000..2b7331ab --- /dev/null +++ b/repository/Grease-Pharo70-Core.package/GRPharoPlatform.class/instance/readFileStreamOn.do.binary..st @@ -0,0 +1,7 @@ +file library +readFileStreamOn: aString do: aBlock binary: aBoolean + "Line end conversion is no longer done for ascii... TBD!" + + ^ aBoolean + ifTrue: [ aString asFileReference binaryReadStreamDo: aBlock ] + ifFalse: [ aString asFileReference readStreamEncoded: 'ascii' do: aBlock ] \ No newline at end of file diff --git a/repository/Grease-Pharo70-Core.package/GRPharoPlatform.class/instance/write.toFile.inFolder..st b/repository/Grease-Pharo70-Core.package/GRPharoPlatform.class/instance/write.toFile.inFolder..st index e77ae8c1..77cf8f76 100644 --- a/repository/Grease-Pharo70-Core.package/GRPharoPlatform.class/instance/write.toFile.inFolder..st +++ b/repository/Grease-Pharo70-Core.package/GRPharoPlatform.class/instance/write.toFile.inFolder..st @@ -1,15 +1,8 @@ file library write: aStringOrByteArray toFile: aFileNameString inFolder: aFolderString "writes aStringOrByteArray to a file named aFilenameString in the folder aFolderString" - | folder stream fullFilePath | - folder := FileSystem disk resolveString: aFolderString. - fullFilePath := (folder / aFileNameString) asFileReference. - stream := aStringOrByteArray isString - ifTrue: [ - (MultiByteFileStream forceNewFileNamed: fullFilePath fullName) - ascii; - wantsLineEndConversion: true; - yourself ] - ifFalse: [ (FileStream forceNewFileNamed: fullFilePath fullName) binary ]. - [ stream nextPutAll: aStringOrByteArray ] - ensure: [ stream close ] \ No newline at end of file + "TODO: wantsLineEndConversion: true; ??" + ^ self + writeFileStreamOn: (aFolderString asFileReference / aFileNameString) ensureDelete pathString + do: [ :stream | stream nextPutAll: aStringOrByteArray ] + binary: aStringOrByteArray isString not \ No newline at end of file diff --git a/repository/Grease-Pharo70-Core.package/GRPharoPlatform.class/instance/writeFileStreamOn.do.binary..st b/repository/Grease-Pharo70-Core.package/GRPharoPlatform.class/instance/writeFileStreamOn.do.binary..st new file mode 100644 index 00000000..762e9cca --- /dev/null +++ b/repository/Grease-Pharo70-Core.package/GRPharoPlatform.class/instance/writeFileStreamOn.do.binary..st @@ -0,0 +1,5 @@ +file library +writeFileStreamOn: aString do: aBlock binary: aBoolean + ^ aBoolean + ifTrue: [ aString asFileReference binaryWriteStreamDo: aBlock ] + ifFalse: [ aString asFileReference writeStreamEncoded: 'ascii' do: aBlock ] \ No newline at end of file From 79512a2068ddab8e320cb2178ce842747214a02e Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Fri, 3 Jul 2020 10:40:27 +0200 Subject: [PATCH 04/46] seems like sourcetree took mergegrease branch to merge rather than master... removing the artefact of that. --- .travis.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index b95d6c83..ca2dc00b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -45,7 +45,3 @@ matrix: env: BUILD_NAME=GemStone-3.1.0.6 - smalltalk: GemStone-2.4.8 env: BUILD_NAME=GemStone-2.4.8 - -notifications: - slack: gemtalksystems:4YWbzy6sJN9cE0FhxvUPP8nS - From 517e32e4ae0c4ef7c5bc0a3d71af0ad3a8b13de1 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Fri, 3 Jul 2020 11:24:59 +0200 Subject: [PATCH 05/46] Move filestream tests from Pharo-specific tests package to the common tests package so we execute the tests on all platforms --- .../GRPlatform.class/instance/thisContext.st | 2 +- .../monticello.meta/categories.st | 8 ++++---- .../instance/testReadWriteToFileInFolderBinary.st | 2 +- .../instance/testReadWriteToFileInFolderText.st | 2 +- .../instance/writeToFile.withFileNameDo..st | 12 ++++++++++++ 5 files changed, 19 insertions(+), 7 deletions(-) rename repository/{Grease-Tests-Pharo-Core.package/GRPharoPlatformTest.class => Grease-Tests-Core.package/GRPlatformTest.class}/instance/testReadWriteToFileInFolderBinary.st (95%) rename repository/{Grease-Tests-Pharo-Core.package/GRPharoPlatformTest.class => Grease-Tests-Core.package/GRPlatformTest.class}/instance/testReadWriteToFileInFolderText.st (93%) create mode 100644 repository/Grease-Tests-Pharo-Core.package/GRPlatformTest.extension/instance/writeToFile.withFileNameDo..st diff --git a/repository/Grease-Core.package/GRPlatform.class/instance/thisContext.st b/repository/Grease-Core.package/GRPlatform.class/instance/thisContext.st index d1ef063a..22b5c4dd 100644 --- a/repository/Grease-Core.package/GRPlatform.class/instance/thisContext.st +++ b/repository/Grease-Core.package/GRPlatform.class/instance/thisContext.st @@ -2,7 +2,7 @@ processes thisContext "Answer the current activation of a method execution or block activation. - For dialects with a thisContext variable and implementation can lock like this. + For dialects with a thisContext variable and implementation can look like this. ^ thisContext sender" self subclassResponsibility \ No newline at end of file diff --git a/repository/Grease-Core.package/monticello.meta/categories.st b/repository/Grease-Core.package/monticello.meta/categories.st index d33d6435..ffa3065c 100644 --- a/repository/Grease-Core.package/monticello.meta/categories.st +++ b/repository/Grease-Core.package/monticello.meta/categories.st @@ -1,5 +1,5 @@ SystemOrganization addCategory: #'Grease-Core'! -SystemOrganization addCategory: #'Grease-Core-Collections'! -SystemOrganization addCategory: #'Grease-Core-Exceptions'! -SystemOrganization addCategory: #'Grease-Core-Text'! -SystemOrganization addCategory: #'Grease-Core-Utilities'! +SystemOrganization addCategory: 'Grease-Core-Collections'! +SystemOrganization addCategory: 'Grease-Core-Exceptions'! +SystemOrganization addCategory: 'Grease-Core-Text'! +SystemOrganization addCategory: 'Grease-Core-Utilities'! diff --git a/repository/Grease-Tests-Pharo-Core.package/GRPharoPlatformTest.class/instance/testReadWriteToFileInFolderBinary.st b/repository/Grease-Tests-Core.package/GRPlatformTest.class/instance/testReadWriteToFileInFolderBinary.st similarity index 95% rename from repository/Grease-Tests-Pharo-Core.package/GRPharoPlatformTest.class/instance/testReadWriteToFileInFolderBinary.st rename to repository/Grease-Tests-Core.package/GRPlatformTest.class/instance/testReadWriteToFileInFolderBinary.st index c12a405b..ad114bf2 100644 --- a/repository/Grease-Tests-Pharo-Core.package/GRPharoPlatformTest.class/instance/testReadWriteToFileInFolderBinary.st +++ b/repository/Grease-Tests-Core.package/GRPlatformTest.class/instance/testReadWriteToFileInFolderBinary.st @@ -1,4 +1,4 @@ -tests +tests-filestreams testReadWriteToFileInFolderBinary | bytes | bytes := #(80 104 39 110 103 108 117 105 32 109 103 108 119 39 110 97 102 104 32 67 116 104 117 108 104 117 32 82 39 108 121 101 104 32 119 103 97 104 39 110 97 103 108 32 102 104 116 97 103 110) asByteArray. diff --git a/repository/Grease-Tests-Pharo-Core.package/GRPharoPlatformTest.class/instance/testReadWriteToFileInFolderText.st b/repository/Grease-Tests-Core.package/GRPlatformTest.class/instance/testReadWriteToFileInFolderText.st similarity index 93% rename from repository/Grease-Tests-Pharo-Core.package/GRPharoPlatformTest.class/instance/testReadWriteToFileInFolderText.st rename to repository/Grease-Tests-Core.package/GRPlatformTest.class/instance/testReadWriteToFileInFolderText.st index ee0eadd5..2d9fc845 100644 --- a/repository/Grease-Tests-Pharo-Core.package/GRPharoPlatformTest.class/instance/testReadWriteToFileInFolderText.st +++ b/repository/Grease-Tests-Core.package/GRPlatformTest.class/instance/testReadWriteToFileInFolderText.st @@ -1,4 +1,4 @@ -tests +tests-filestreams testReadWriteToFileInFolderText | text | text := 'Ph''nglui mglw''nafh Cthulhu R''lyeh wgah''nagl fhtagn'. diff --git a/repository/Grease-Tests-Pharo-Core.package/GRPlatformTest.extension/instance/writeToFile.withFileNameDo..st b/repository/Grease-Tests-Pharo-Core.package/GRPlatformTest.extension/instance/writeToFile.withFileNameDo..st new file mode 100644 index 00000000..2085b080 --- /dev/null +++ b/repository/Grease-Tests-Pharo-Core.package/GRPlatformTest.extension/instance/writeToFile.withFileNameDo..st @@ -0,0 +1,12 @@ +*Grease-Tests-Pharo-Core +writeToFile: aStringOrByteArray withFileNameDo: aBlock + | fileName directory | + fileName := 'GRPharoPlatformTest'. + directory := FileSystem disk workingDirectory. + [ GRPlatform current + write: aStringOrByteArray + toFile: fileName + inFolder: directory fullName. + aBlock value: directory fullName,GRPlatform current pathSeparator,fileName + ] ensure: [ + (directory / fileName) delete ] \ No newline at end of file From 5d15eb8478f22bd38a089935776c910fb05cd52d Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Fri, 3 Jul 2020 11:59:40 +0000 Subject: [PATCH 06/46] read and write stream methods for GemStone --- .../Array.extension/methodProperties.json | 5 ++ .../Behavior.extension/methodProperties.json | 6 +++ .../methodProperties.json | 5 ++ .../ByteArray.extension/methodProperties.json | 5 ++ .../Character.extension/methodProperties.json | 5 ++ .../methodProperties.json | 21 ++++++++ .../methodProperties.json | 7 +++ .../Date.extension/methodProperties.json | 5 ++ .../methodProperties.json | 5 ++ .../methodProperties.json | 5 ++ .../Duration.extension/methodProperties.json | 6 +++ .../Exception.extension/methodProperties.json | 7 +++ .../methodProperties.json | 8 +++ .../instance/fileStreamOn.do.binary..st | 10 ---- .../instance/readFileStreamOn.do.binary..st | 13 +++++ .../instance/write.toFile.inFolder..st | 21 ++++---- .../instance/writeFileStreamOn.do.binary..st | 9 ++++ .../methodProperties.json | 50 +++++++++++++++++++ .../methodProperties.json | 11 ++++ .../methodProperties.json | 12 +++++ .../GRPackage.extension/methodProperties.json | 5 ++ .../methodProperties.json | 14 ++++++ .../methodProperties.json | 13 +++++ .../GsContext.class/methodProperties.json | 15 ++++++ .../Interval.extension/methodProperties.json | 5 ++ .../methodProperties.json | 10 ++++ .../Number.extension/methodProperties.json | 5 ++ .../Object.extension/methodProperties.json | 7 +++ .../methodProperties.json | 5 ++ .../methodProperties.json | 5 ++ .../methodProperties.json | 6 +++ .../String.extension/methodProperties.json | 5 ++ .../Symbol.extension/methodProperties.json | 5 ++ .../Symbol.extension/properties.json | 3 +- .../methodProperties.json | 7 +++ .../methodProperties.json | 7 +++ .../methodProperties.json | 7 +++ .../methodProperties.json | 6 +++ .../methodProperties.json | 5 ++ .../methodProperties.json | 6 +++ .../monticello.meta/version | 1 + 41 files changed, 336 insertions(+), 22 deletions(-) create mode 100644 repository/Grease-GemStone-Core.package/Array.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Behavior.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/BinaryFloat.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/ByteArray.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Character.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/CharacterCollection.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Collection.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Date.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Dictionary.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/DoubleByteString.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Duration.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Exception.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/GRDynamicVariable.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/instance/fileStreamOn.do.binary..st create mode 100644 repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/instance/readFileStreamOn.do.binary..st create mode 100644 repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/instance/writeFileStreamOn.do.binary..st create mode 100644 repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/GRGemStoneRandomProvider.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/GRLatin1GemStoneCodec.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/GRPackage.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/GRTextOrBinaryCodecStream.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/GsContext.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Interval.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/MessageSend.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Number.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Object.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/PackageInfo.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/PositionableStream.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/SequenceableCollection.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/String.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Symbol.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/SystemAbortTransaction.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/SystemBeginTransaction.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/SystemCommitTransaction.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/SystemTransactionNotification.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/UnorderedCollection.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/WriteStream.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/monticello.meta/version diff --git a/repository/Grease-GemStone-Core.package/Array.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Array.extension/methodProperties.json new file mode 100644 index 00000000..a0a65c20 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Array.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "beMutable" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/Behavior.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Behavior.extension/methodProperties.json new file mode 100644 index 00000000..1592140f --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Behavior.extension/methodProperties.json @@ -0,0 +1,6 @@ +{ + "class" : { + }, + "instance" : { + "fullName" : " 06/08/2020 12:26:37", + "removeSelectorSilently:" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/BinaryFloat.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/BinaryFloat.extension/methodProperties.json new file mode 100644 index 00000000..f329e1e9 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/BinaryFloat.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "greaseString" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/ByteArray.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/ByteArray.extension/methodProperties.json new file mode 100644 index 00000000..f329e1e9 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/ByteArray.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "greaseString" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/Character.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Character.extension/methodProperties.json new file mode 100644 index 00000000..c1ffb9c9 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Character.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "greaseInteger" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/CharacterCollection.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/CharacterCollection.extension/methodProperties.json new file mode 100644 index 00000000..ffe120e7 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/CharacterCollection.extension/methodProperties.json @@ -0,0 +1,21 @@ +{ + "class" : { + }, + "instance" : { + "excerpt:" : " 06/08/2020 12:26:37", + "excerpt:radius:" : " 06/08/2020 12:26:37", + "excerpt:radius:ellipsis:" : " 06/08/2020 12:26:37", + "greaseInteger" : " 06/08/2020 12:26:37", + "pluralize" : " 06/08/2020 12:26:37", + "print:on:" : " 06/08/2020 12:26:37", + "substrings:" : " 07/03/2020 03:01:56", + "trimBoth" : " 06/08/2020 12:26:37", + "trimBoth:" : " 06/08/2020 12:26:37", + "trimLeft" : " 06/08/2020 12:26:37", + "trimLeft:" : " 06/08/2020 12:26:37", + "trimLeft:right:" : " 06/08/2020 12:26:37", + "trimRight" : " 06/08/2020 12:26:37", + "trimRight:" : " 06/08/2020 12:26:37", + "truncate" : " 06/08/2020 12:26:37", + "truncate:" : " 06/08/2020 12:26:37", + "truncate:ellipsis:" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/Collection.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Collection.extension/methodProperties.json new file mode 100644 index 00000000..c3330e3f --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Collection.extension/methodProperties.json @@ -0,0 +1,7 @@ +{ + "class" : { + }, + "instance" : { + "any" : " 06/08/2020 12:26:37", + "sorted" : " 06/08/2020 12:26:37", + "sorted:" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/Date.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Date.extension/methodProperties.json new file mode 100644 index 00000000..6220dbe6 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Date.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + "daysInMonthNumber:forYear:" : " 06/08/2020 12:26:37" }, + "instance" : { + } } diff --git a/repository/Grease-GemStone-Core.package/Dictionary.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Dictionary.extension/methodProperties.json new file mode 100644 index 00000000..f1de10f6 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Dictionary.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "copyFrom:" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/DoubleByteString.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/DoubleByteString.extension/methodProperties.json new file mode 100644 index 00000000..f329e1e9 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/DoubleByteString.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "greaseString" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/Duration.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Duration.extension/methodProperties.json new file mode 100644 index 00000000..a6e4950c --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Duration.extension/methodProperties.json @@ -0,0 +1,6 @@ +{ + "class" : { + "milliseconds:" : " 06/08/2020 12:26:37" }, + "instance" : { + "asMilliseconds" : " 06/08/2020 12:26:37", + "milliseconds" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/Exception.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Exception.extension/methodProperties.json new file mode 100644 index 00000000..05d1a072 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Exception.extension/methodProperties.json @@ -0,0 +1,7 @@ +{ + "class" : { + "raiseSignal" : " 06/08/2020 12:26:37", + "raiseSignal:" : " 06/08/2020 12:26:37" }, + "instance" : { + "raiseSignal" : " 06/08/2020 12:26:37", + "raiseSignal:" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/GRDynamicVariable.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRDynamicVariable.class/methodProperties.json new file mode 100644 index 00000000..13f6d81d --- /dev/null +++ b/repository/Grease-GemStone-Core.package/GRDynamicVariable.class/methodProperties.json @@ -0,0 +1,8 @@ +{ + "class" : { + "default" : " 06/08/2020 12:26:37", + "defaultValue" : " 06/08/2020 12:26:37", + "use:during:" : " 06/08/2020 12:26:37", + "value" : " 06/08/2020 12:26:37" }, + "instance" : { + } } diff --git a/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/instance/fileStreamOn.do.binary..st b/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/instance/fileStreamOn.do.binary..st deleted file mode 100644 index 31fd6fce..00000000 --- a/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/instance/fileStreamOn.do.binary..st +++ /dev/null @@ -1,10 +0,0 @@ -file-library -fileStreamOn: aString do: aBlock binary: aBoolean - | stream dir file | - [ - file := GsFile openReadOnServer: aString. - [stream := RWBinaryOrTextStream on: file contents. - aBoolean - ifTrue: [ stream binary ] - ifFalse: [ stream ascii ]. - ^ aBlock value: stream ] ensure: [ stream close ]] ensure: [ file close ]. \ No newline at end of file diff --git a/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/instance/readFileStreamOn.do.binary..st b/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/instance/readFileStreamOn.do.binary..st new file mode 100644 index 00000000..cf66b203 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/instance/readFileStreamOn.do.binary..st @@ -0,0 +1,13 @@ +file-library +readFileStreamOn: aString do: aBlock binary: aBoolean + | stream dir file | + [ + file := GsFile openReadOnServer: aString. + [ + stream := RWBinaryOrTextStream on: file contents. + aBoolean + ifTrue: [ stream binary ] + ifFalse: [ stream ascii ]. + ^ aBlock value: stream ] + ensure: [ stream close ] ] + ensure: [ file close ] \ No newline at end of file diff --git a/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/instance/write.toFile.inFolder..st b/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/instance/write.toFile.inFolder..st index a5de5279..e0a494a0 100644 --- a/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/instance/write.toFile.inFolder..st +++ b/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/instance/write.toFile.inFolder..st @@ -1,12 +1,13 @@ file-library write: aStringOrByteArray toFile: aFileNameString inFolder: aFolderString - "writes aStringOrByteArray to a file named aFilenameString in the folder aFolderString" - | folder stream fullFilePath | - fullFilePath := ServerFileDirectory default fullNameFor: aFolderString. - folder := ServerFileDirectory on: fullFilePath. - stream := folder forceNewFileNamed: aFileNameString. - stream := aStringOrByteArray isString - ifTrue: [ stream ascii ] - ifFalse: [ stream binary ]. - [ stream nextPutAll: aStringOrByteArray ] - ensure: [ stream close ] \ No newline at end of file + "writes aStringOrByteArray to a file named aFilenameString in the folder aFolderString" + + | folder fullFilePath | + fullFilePath := ServerFileDirectory default fullNameFor: aFolderString. + folder := ServerFileDirectory on: fullFilePath. + (folder fileExists: aFileNameString) + ifTrue: [ folder deleteFileNamed: aFileNameString ]. + ^ self + writeFileStreamOn: (folder / aFileNameString) fullName + do: [ :stream | stream nextPutAll: aStringOrByteArray ] + binary: aStringOrByteArray isString not \ No newline at end of file diff --git a/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/instance/writeFileStreamOn.do.binary..st b/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/instance/writeFileStreamOn.do.binary..st new file mode 100644 index 00000000..5011e5cc --- /dev/null +++ b/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/instance/writeFileStreamOn.do.binary..st @@ -0,0 +1,9 @@ +file-library +writeFileStreamOn: fileName do: aBlock binary: isBinary + | stream | + stream := BinaryOrTextFile open: fileName mode: 'w+b' onClient: false. + stream := isBinary + ifTrue: [ stream binary ] + ifFalse: [ stream ascii ]. + [ aBlock value: stream ] + ensure: [ stream close ] \ No newline at end of file diff --git a/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/methodProperties.json new file mode 100644 index 00000000..eec0a32d --- /dev/null +++ b/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/methodProperties.json @@ -0,0 +1,50 @@ +{ + "class" : { + "initialize" : " 06/08/2020 12:26:37", + "unload" : " 06/08/2020 12:26:37" }, + "instance" : { + "addToShutDownList:" : " 06/08/2020 12:26:37", + "addToStartUpList:" : " 06/08/2020 12:26:37", + "asMethodReturningByteArray:named:" : " 06/08/2020 12:26:37", + "asMethodReturningString:named:" : " 06/08/2020 12:26:37", + "base64Decode:" : " 06/08/2020 12:26:37", + "compile:into:classified:" : " 06/08/2020 12:26:37", + "contentsOfFile:binary:" : " 06/08/2020 12:26:37", + "defaultDispatcherName" : " 06/08/2020 12:26:37", + "deprecationExceptionSet" : " 06/08/2020 12:26:37", + "directoriesIn:" : " 06/08/2020 12:26:37", + "doAbortTransaction" : " 06/08/2020 12:26:37", + "doBeginTransaction" : " 06/08/2020 12:26:37", + "doCommitTransaction" : " 06/08/2020 12:26:37", + "doTransaction:" : " 06/08/2020 12:26:37", + "ensureExistenceOfFolder:" : " 06/08/2020 12:26:37", + "fileExists:" : " 06/08/2020 12:26:37", + "filesIn:" : " 06/08/2020 12:26:37", + "isProcessTerminated:" : " 06/08/2020 12:26:37", + "label" : " 06/08/2020 12:26:37", + "localNameOf:" : " 06/08/2020 12:26:37", + "logError:title:" : " 06/08/2020 12:26:37", + "logError:title:shouldCommit:" : " 06/08/2020 12:26:37", + "newRandom" : " 06/08/2020 12:26:37", + "newline" : " 06/08/2020 12:26:37", + "openDebuggerOn:" : " 06/08/2020 12:26:37", + "pathSeparator" : " 06/08/2020 12:26:37", + "readFileStreamOn:do:binary:" : "JohanBrichau 07/03/2020 04:07", + "readWriteByteStream" : " 06/08/2020 12:26:37", + "readWriteCharacterStream" : " 06/08/2020 12:26:37", + "reducedConflictDictionary" : " 06/08/2020 12:26:37", + "removeFromShutDownList:" : " 06/08/2020 12:26:37", + "removeFromStartUpList:" : " 06/08/2020 12:26:37", + "removeSelector:from:" : " 06/08/2020 12:26:37", + "saveLogEntry:shouldCommit:" : " 06/08/2020 12:26:37", + "secureHashFor:" : " 06/08/2020 12:26:37", + "semaphoreClass" : " 06/08/2020 12:26:37", + "smtpServer" : " 06/08/2020 12:26:37", + "stackDepth" : " 06/08/2020 12:26:37", + "terminateProcess:" : " 06/08/2020 12:26:37", + "thisContext" : " 06/08/2020 12:26:37", + "transactionMutex" : " 06/08/2020 12:26:37", + "weakDictionaryOfSize:" : " 06/08/2020 12:26:37", + "write:toFile:inFolder:" : "JohanBrichau 07/03/2020 04:55", + "writeCharacterStreamOn:" : " 06/08/2020 12:26:37", + "writeFileStreamOn:do:binary:" : "JohanBrichau 07/03/2020 04:57" } } diff --git a/repository/Grease-GemStone-Core.package/GRGemStoneRandomProvider.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRGemStoneRandomProvider.class/methodProperties.json new file mode 100644 index 00000000..8e2f4b76 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/GRGemStoneRandomProvider.class/methodProperties.json @@ -0,0 +1,11 @@ +{ + "class" : { + "generator" : " 06/08/2020 12:26:37", + "initialize" : " 06/08/2020 12:26:37", + "mutex" : " 06/08/2020 12:26:37", + "nextInt:" : " 06/08/2020 12:26:37", + "randomClass" : " 06/08/2020 12:26:37", + "randomFrom:" : " 06/08/2020 12:26:37", + "sessionStart" : " 06/08/2020 12:26:37" }, + "instance" : { + } } diff --git a/repository/Grease-GemStone-Core.package/GRLatin1GemStoneCodec.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRLatin1GemStoneCodec.class/methodProperties.json new file mode 100644 index 00000000..159d03fe --- /dev/null +++ b/repository/Grease-GemStone-Core.package/GRLatin1GemStoneCodec.class/methodProperties.json @@ -0,0 +1,12 @@ +{ + "class" : { + "basicForEncoding:" : " 06/08/2020 12:26:37", + "supportsEncoding:" : " 06/08/2020 12:26:37" }, + "instance" : { + "decode:" : " 06/08/2020 12:26:37", + "encode:" : " 06/08/2020 12:26:37", + "encodeUrl:" : " 06/08/2020 12:26:37", + "encoderFor:" : " 06/08/2020 12:26:37", + "name" : " 06/08/2020 12:26:37", + "name:" : " 06/08/2020 12:26:37", + "url" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/GRPackage.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/GRPackage.extension/methodProperties.json new file mode 100644 index 00000000..09b637e1 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/GRPackage.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + "greaseGemStoneCore" : " 06/08/2020 12:26:37" }, + "instance" : { + "gemstoneUrl" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/GRTextOrBinaryCodecStream.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRTextOrBinaryCodecStream.class/methodProperties.json new file mode 100644 index 00000000..55ebd0b5 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/GRTextOrBinaryCodecStream.class/methodProperties.json @@ -0,0 +1,14 @@ +{ + "class" : { + }, + "instance" : { + "binary" : " 06/08/2020 12:26:37", + "contents" : " 06/08/2020 12:26:37", + "flush" : " 06/08/2020 12:26:37", + "initializeOn:" : " 06/08/2020 12:26:37", + "next" : " 06/08/2020 12:26:37", + "next:" : " 06/08/2020 12:26:37", + "nextPut:" : " 06/08/2020 12:26:37", + "nextPutAll:" : " 06/08/2020 12:26:37", + "size" : " 06/08/2020 12:26:37", + "text" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/methodProperties.json new file mode 100644 index 00000000..6ac0d6a5 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/methodProperties.json @@ -0,0 +1,13 @@ +{ + "class" : { + "basicForEncoding:" : " 06/08/2020 12:26:37", + "supportsEncoding:" : " 06/08/2020 12:26:37" }, + "instance" : { + "decode:" : " 06/08/2020 12:26:37", + "decoderFor:" : " 06/08/2020 12:26:37", + "encode:" : " 06/08/2020 12:26:37", + "encodeUrl:" : " 06/08/2020 12:26:37", + "encoderFor:" : " 06/08/2020 12:26:37", + "initialize" : " 06/08/2020 12:26:37", + "name" : " 06/08/2020 12:26:37", + "url" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/GsContext.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GsContext.class/methodProperties.json new file mode 100644 index 00000000..cb87f664 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/GsContext.class/methodProperties.json @@ -0,0 +1,15 @@ +{ + "class" : { + "fromContinuation:atLevel:" : " 07/03/2020 03:01:56", + "fromLevel:" : " 07/03/2020 03:01:56" }, + "instance" : { + "=" : " 07/03/2020 03:01:56", + "asString" : " 07/03/2020 03:01:56", + "continuation:level:" : " 07/03/2020 03:01:56", + "fullPrintString" : " 07/03/2020 03:01:56", + "greaseString" : " 07/03/2020 03:01:56", + "method" : " 07/03/2020 03:01:56", + "receiver" : " 07/03/2020 03:01:56", + "sender" : " 07/03/2020 03:01:56", + "tempAt:" : " 07/03/2020 03:01:56", + "tempNames" : " 07/03/2020 03:01:56" } } diff --git a/repository/Grease-GemStone-Core.package/Interval.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Interval.extension/methodProperties.json new file mode 100644 index 00000000..b8789236 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Interval.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "any" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/MessageSend.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/MessageSend.extension/methodProperties.json new file mode 100644 index 00000000..44371590 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/MessageSend.extension/methodProperties.json @@ -0,0 +1,10 @@ +{ + "class" : { + }, + "instance" : { + "argumentCount" : " 06/08/2020 12:26:37", + "evaluateWithArguments:" : " 06/08/2020 12:26:37", + "value:" : " 06/08/2020 12:26:37", + "value:value:" : " 06/08/2020 12:26:37", + "valueWithPossibleArgument:" : " 06/08/2020 12:26:37", + "valueWithPossibleArguments:" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/Number.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Number.extension/methodProperties.json new file mode 100644 index 00000000..382e962c --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Number.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "milliseconds" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/Object.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Object.extension/methodProperties.json new file mode 100644 index 00000000..47ab231e --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Object.extension/methodProperties.json @@ -0,0 +1,7 @@ +{ + "class" : { + }, + "instance" : { + "displayString" : " 06/08/2020 12:26:37", + "greaseString" : " 06/08/2020 12:26:37", + "isMessageSend" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/PackageInfo.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/PackageInfo.extension/methodProperties.json new file mode 100644 index 00000000..a03867fc --- /dev/null +++ b/repository/Grease-GemStone-Core.package/PackageInfo.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "versionString" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/PositionableStream.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/PositionableStream.extension/methodProperties.json new file mode 100644 index 00000000..8e44e66f --- /dev/null +++ b/repository/Grease-GemStone-Core.package/PositionableStream.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "greaseUpToAll:" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/SequenceableCollection.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/SequenceableCollection.extension/methodProperties.json new file mode 100644 index 00000000..3b4e7999 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/SequenceableCollection.extension/methodProperties.json @@ -0,0 +1,6 @@ +{ + "class" : { + }, + "instance" : { + "beginsWithSubCollection:" : " 06/08/2020 12:26:37", + "endsWithSubCollection:" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/String.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/String.extension/methodProperties.json new file mode 100644 index 00000000..12c5ef7b --- /dev/null +++ b/repository/Grease-GemStone-Core.package/String.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + "fromString:" : " 06/08/2020 12:26:37" }, + "instance" : { + } } diff --git a/repository/Grease-GemStone-Core.package/Symbol.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Symbol.extension/methodProperties.json new file mode 100644 index 00000000..88ac0c5c --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Symbol.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "greaseAsMutator" : " 07/03/2020 03:12:14" } } diff --git a/repository/Grease-GemStone-Core.package/Symbol.extension/properties.json b/repository/Grease-GemStone-Core.package/Symbol.extension/properties.json index 8c6bce81..565e67b0 100644 --- a/repository/Grease-GemStone-Core.package/Symbol.extension/properties.json +++ b/repository/Grease-GemStone-Core.package/Symbol.extension/properties.json @@ -1,3 +1,2 @@ { - "name" : "Symbol" -} \ No newline at end of file + "name" : "Symbol" } diff --git a/repository/Grease-GemStone-Core.package/SystemAbortTransaction.class/methodProperties.json b/repository/Grease-GemStone-Core.package/SystemAbortTransaction.class/methodProperties.json new file mode 100644 index 00000000..8dbb3df0 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/SystemAbortTransaction.class/methodProperties.json @@ -0,0 +1,7 @@ +{ + "class" : { + }, + "instance" : { + "alternatives" : " 06/08/2020 12:26:37", + "defaultAction" : " 06/08/2020 12:26:37", + "transaction" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/SystemBeginTransaction.class/methodProperties.json b/repository/Grease-GemStone-Core.package/SystemBeginTransaction.class/methodProperties.json new file mode 100644 index 00000000..8dbb3df0 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/SystemBeginTransaction.class/methodProperties.json @@ -0,0 +1,7 @@ +{ + "class" : { + }, + "instance" : { + "alternatives" : " 06/08/2020 12:26:37", + "defaultAction" : " 06/08/2020 12:26:37", + "transaction" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/SystemCommitTransaction.class/methodProperties.json b/repository/Grease-GemStone-Core.package/SystemCommitTransaction.class/methodProperties.json new file mode 100644 index 00000000..8dbb3df0 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/SystemCommitTransaction.class/methodProperties.json @@ -0,0 +1,7 @@ +{ + "class" : { + }, + "instance" : { + "alternatives" : " 06/08/2020 12:26:37", + "defaultAction" : " 06/08/2020 12:26:37", + "transaction" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/SystemTransactionNotification.class/methodProperties.json b/repository/Grease-GemStone-Core.package/SystemTransactionNotification.class/methodProperties.json new file mode 100644 index 00000000..c8a0a9ce --- /dev/null +++ b/repository/Grease-GemStone-Core.package/SystemTransactionNotification.class/methodProperties.json @@ -0,0 +1,6 @@ +{ + "class" : { + }, + "instance" : { + "alternatives" : " 06/08/2020 12:26:37", + "transaction" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/UnorderedCollection.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/UnorderedCollection.extension/methodProperties.json new file mode 100644 index 00000000..f1de10f6 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/UnorderedCollection.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "copyFrom:" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/WriteStream.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/WriteStream.extension/methodProperties.json new file mode 100644 index 00000000..81bfc34b --- /dev/null +++ b/repository/Grease-GemStone-Core.package/WriteStream.extension/methodProperties.json @@ -0,0 +1,6 @@ +{ + "class" : { + }, + "instance" : { + "crlf" : " 06/08/2020 12:26:37", + "greaseNext:putAll:startingAt:" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/monticello.meta/version b/repository/Grease-GemStone-Core.package/monticello.meta/version new file mode 100644 index 00000000..9dfcb729 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/monticello.meta/version @@ -0,0 +1 @@ +(name 'Grease-GemStone-Core-JohanBrichau.2' message 'read and write stream methods for GemStone' id 'b4ba4bca-2279-4d1e-856c-e82ca7c99939' date '07/03/2020' time '04:59:39' author 'JohanBrichau' ancestors ((name 'Grease-GemStone-Core-cypress.1' message 'fabricated from a Cypress format repository' id '040b6540-aac6-4dc1-81b5-79241e4ee99d' date '07/03/2020' time '03:27:10' author '' ancestors () stepChildren ())) stepChildren ()) \ No newline at end of file From 9541cd8f4518b320aee16e75c15e38e75807e854 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Fri, 3 Jul 2020 15:47:22 +0200 Subject: [PATCH 07/46] added a method to the gemstone core tests package (but needed to monkey in the filetree format directly because of the package file name convention violation) --- .../instance/writeToFile.withFileNameDo.st | 12 ++++++++++++ .../GRPlatformTest.extension/properties.json | 2 ++ .../instance/writeToFile.withFileNameDo.st | 12 ++++++++++++ .../GRPlatformTest.extension/properties.json | 2 ++ 4 files changed, 28 insertions(+) create mode 100644 repository/Grease-Tests-GemStone-Core.package/GRPlatformTest.extension/instance/writeToFile.withFileNameDo.st create mode 100644 repository/Grease-Tests-GemStone-Core.package/GRPlatformTest.extension/properties.json create mode 100644 repository/Grease-Tests-GemStone-Core.v32.package/GRPlatformTest.extension/instance/writeToFile.withFileNameDo.st create mode 100644 repository/Grease-Tests-GemStone-Core.v32.package/GRPlatformTest.extension/properties.json diff --git a/repository/Grease-Tests-GemStone-Core.package/GRPlatformTest.extension/instance/writeToFile.withFileNameDo.st b/repository/Grease-Tests-GemStone-Core.package/GRPlatformTest.extension/instance/writeToFile.withFileNameDo.st new file mode 100644 index 00000000..c73ff2de --- /dev/null +++ b/repository/Grease-Tests-GemStone-Core.package/GRPlatformTest.extension/instance/writeToFile.withFileNameDo.st @@ -0,0 +1,12 @@ +*grease-tests-gemstone-core +writeToFile: aStringOrByteArray withFileNameDo: aBlock + | fileName directory | + fileName := 'GRGemStonePlatformTest'. + directory := ServerFileDirectory default. + [ + GRPlatform current + write: aStringOrByteArray + toFile: fileName + inFolder: directory fullName. + aBlock value: directory fullName , GRPlatform current pathSeparator , fileName ] + ensure: [ directory deleteFileNamed: fileName ] \ No newline at end of file diff --git a/repository/Grease-Tests-GemStone-Core.package/GRPlatformTest.extension/properties.json b/repository/Grease-Tests-GemStone-Core.package/GRPlatformTest.extension/properties.json new file mode 100644 index 00000000..ab3f269a --- /dev/null +++ b/repository/Grease-Tests-GemStone-Core.package/GRPlatformTest.extension/properties.json @@ -0,0 +1,2 @@ +{ + "name" : "GRPlatformTest" } diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRPlatformTest.extension/instance/writeToFile.withFileNameDo.st b/repository/Grease-Tests-GemStone-Core.v32.package/GRPlatformTest.extension/instance/writeToFile.withFileNameDo.st new file mode 100644 index 00000000..c73ff2de --- /dev/null +++ b/repository/Grease-Tests-GemStone-Core.v32.package/GRPlatformTest.extension/instance/writeToFile.withFileNameDo.st @@ -0,0 +1,12 @@ +*grease-tests-gemstone-core +writeToFile: aStringOrByteArray withFileNameDo: aBlock + | fileName directory | + fileName := 'GRGemStonePlatformTest'. + directory := ServerFileDirectory default. + [ + GRPlatform current + write: aStringOrByteArray + toFile: fileName + inFolder: directory fullName. + aBlock value: directory fullName , GRPlatform current pathSeparator , fileName ] + ensure: [ directory deleteFileNamed: fileName ] \ No newline at end of file diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRPlatformTest.extension/properties.json b/repository/Grease-Tests-GemStone-Core.v32.package/GRPlatformTest.extension/properties.json new file mode 100644 index 00000000..ab3f269a --- /dev/null +++ b/repository/Grease-Tests-GemStone-Core.v32.package/GRPlatformTest.extension/properties.json @@ -0,0 +1,2 @@ +{ + "name" : "GRPlatformTest" } From 48a57af0b651528486942cf7c4835fab00ee4c65 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Fri, 3 Jul 2020 16:02:52 +0200 Subject: [PATCH 08/46] Changed baseline to use separate test package name from GemStome32 onwards instead of a 'file' spec hack (which breaks working in Tode) --- .../instance/baselineGemStone..st | 23 +++++++++++++------ 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baselineGemStone..st b/repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baselineGemStone..st index 8e654e74..cbfb9c99 100644 --- a/repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baselineGemStone..st +++ b/repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baselineGemStone..st @@ -34,15 +34,13 @@ baselineGemStone: spec package: 'Grease-Tests-Core' with: [ spec - requires: #('Grease-GemStone-Core'); - includes: #('Grease-Tests-GemStone-Core') ]; + requires: #('Grease-GemStone-Core') ]; package: 'Grease-GemStone-Core' with: [ spec requires: - #('Grease-Core' 'GsCore' 'System-Digital-Signatures' 'UTF8' 'SMTPMail') ]; - package: 'Grease-Tests-GemStone-Core' - with: [ spec requires: #('Grease-Tests-Core') ] ]. + #('Grease-Core' 'GsCore' 'System-Digital-Signatures' 'UTF8' 'SMTPMail') ] ]. + spec for: #'gs2.x' do: [ @@ -89,9 +87,20 @@ baselineGemStone: spec spec requires: #('Grease-GemStone-Core'); postLoadDoIt: #'initializeLatin1ToUtf8Encodings' ] ]. + + spec for: #(#'gs2.x' #'gs3.0.x' #'gs3.1.x') + do:[ + spec + package: 'Grease-Tests-GemStone-Core' + with:[ spec requires: 'Grease-Tests-Core' ]; + package: 'Grease-Tests-Core' + with: [ spec includes: 'Grease-Tests-GemStone-Core' ] ]. + spec for: #(#'gs3.2.x' #'gs3.3.x' #'gs3.4.x' #'gs3.5.x' #'gs3.6.x') do: [ spec - package: 'Grease-Tests-GemStone-Core' - with: [ spec file: 'Grease-Tests-GemStone-Core.v32' ] ] \ No newline at end of file + package: 'Grease-Tests-GemStone32-Core' + with:[ spec requires: 'Grease-Tests-Core' ]; + package: 'Grease-Tests-Core' + with: [ spec includes: 'Grease-Tests-GemStone32-Core' ] ] \ No newline at end of file From 9d4fe1af0c5f37cd91434a18f050d0059211a4d5 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Fri, 3 Jul 2020 16:10:33 +0200 Subject: [PATCH 09/46] Renamed Grease-Tests-GemStone-Core.v32 to Grease-Tests-GemStone32-Core to solve issues with working with this package in the tode git tools --- .../monticello.meta/categories.st | 1 - .../monticello.meta/package | 1 - .../.filetree | 0 .../GRDoubleByteStringTest.class/README.md | 0 .../instance/arbitraryCollection.st | 0 .../GRDoubleByteStringTest.class/instance/collectionClass.st | 0 .../GRDoubleByteStringTest.class/properties.json | 2 +- .../GRGemStonePlatformTest.class/README.md | 0 .../instance/testCompileIntoClassified.st | 0 .../instance/testConvertToSmalltalkNewlines.st | 0 .../instance/testEncoderForUtf8Roundtrip.st | 0 .../GRGemStonePlatformTest.class/instance/testFullName.st | 0 .../GRGemStonePlatformTest.class/properties.json | 2 +- .../instance/addBlockToCollection.with..st | 2 +- .../GRNumberTest.extension/instance/expectedFailures.st | 2 +- .../instance/testToDoClosuresGemStone.st | 2 +- .../GRNumberTest.extension/properties.json | 0 .../GRPackage.extension/class/greaseTestsGemStoneCore.st | 4 ++-- .../GRPackage.extension/properties.json | 0 .../instance/writeToFile.withFileNameDo.st | 2 +- .../GRPlatformTest.extension/properties.json | 0 .../GRQuadByteStringTest.class/README.md | 0 .../instance/arbitraryCollection.st | 0 .../GRQuadByteStringTest.class/instance/collectionClass.st | 0 .../GRQuadByteStringTest.class/properties.json | 2 +- .../GRStringTest.extension/instance/multiByteConvert..st | 2 +- .../instance/testMultiByteCapitalized.st | 2 +- .../GRStringTest.extension/instance/testMultiByteExcerpt.st | 2 +- .../instance/testMultiByteSubStrings.st | 2 +- .../GRStringTest.extension/instance/testMultiByteTrimBoth.st | 2 +- .../GRStringTest.extension/instance/testMultiByteTruncate.st | 2 +- .../GRStringTest.extension/properties.json | 0 .../GRUtf8CodecTest.extension/instance/expectedFailures.st | 2 +- .../GRUtf8CodecTest.extension/properties.json | 0 .../monticello.meta/categories.st | 1 + .../monticello.meta/initializers.st | 0 .../monticello.meta/package | 1 + .../properties.json | 0 38 files changed, 18 insertions(+), 18 deletions(-) delete mode 100644 repository/Grease-Tests-GemStone-Core.v32.package/monticello.meta/categories.st delete mode 100644 repository/Grease-Tests-GemStone-Core.v32.package/monticello.meta/package rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/.filetree (100%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRDoubleByteStringTest.class/README.md (100%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRDoubleByteStringTest.class/instance/arbitraryCollection.st (100%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRDoubleByteStringTest.class/instance/collectionClass.st (100%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRDoubleByteStringTest.class/properties.json (81%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRGemStonePlatformTest.class/README.md (100%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRGemStonePlatformTest.class/instance/testCompileIntoClassified.st (100%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRGemStonePlatformTest.class/instance/testConvertToSmalltalkNewlines.st (100%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRGemStonePlatformTest.class/instance/testEncoderForUtf8Roundtrip.st (100%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRGemStonePlatformTest.class/instance/testFullName.st (100%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRGemStonePlatformTest.class/properties.json (80%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRNumberTest.extension/instance/addBlockToCollection.with..st (68%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRNumberTest.extension/instance/expectedFailures.st (85%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRNumberTest.extension/instance/testToDoClosuresGemStone.st (89%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRNumberTest.extension/properties.json (100%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRPackage.extension/class/greaseTestsGemStoneCore.st (67%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRPackage.extension/properties.json (100%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRPlatformTest.extension/instance/writeToFile.withFileNameDo.st (93%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRPlatformTest.extension/properties.json (100%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRQuadByteStringTest.class/README.md (100%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRQuadByteStringTest.class/instance/arbitraryCollection.st (100%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRQuadByteStringTest.class/instance/collectionClass.st (100%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRQuadByteStringTest.class/properties.json (81%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRStringTest.extension/instance/multiByteConvert..st (68%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRStringTest.extension/instance/testMultiByteCapitalized.st (90%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRStringTest.extension/instance/testMultiByteExcerpt.st (96%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRStringTest.extension/instance/testMultiByteSubStrings.st (97%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRStringTest.extension/instance/testMultiByteTrimBoth.st (95%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRStringTest.extension/instance/testMultiByteTruncate.st (93%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRStringTest.extension/properties.json (100%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRUtf8CodecTest.extension/instance/expectedFailures.st (65%) rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/GRUtf8CodecTest.extension/properties.json (100%) create mode 100644 repository/Grease-Tests-GemStone32-Core.package/monticello.meta/categories.st rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/monticello.meta/initializers.st (100%) create mode 100644 repository/Grease-Tests-GemStone32-Core.package/monticello.meta/package rename repository/{Grease-Tests-GemStone-Core.v32.package => Grease-Tests-GemStone32-Core.package}/properties.json (100%) diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/monticello.meta/categories.st b/repository/Grease-Tests-GemStone-Core.v32.package/monticello.meta/categories.st deleted file mode 100644 index 8cff96cd..00000000 --- a/repository/Grease-Tests-GemStone-Core.v32.package/monticello.meta/categories.st +++ /dev/null @@ -1 +0,0 @@ -SystemOrganization addCategory: #'Grease-Tests-GemStone-Core'! diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/monticello.meta/package b/repository/Grease-Tests-GemStone-Core.v32.package/monticello.meta/package deleted file mode 100644 index 59950b6e..00000000 --- a/repository/Grease-Tests-GemStone-Core.v32.package/monticello.meta/package +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-Tests-GemStone-Core') \ No newline at end of file diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/.filetree b/repository/Grease-Tests-GemStone32-Core.package/.filetree similarity index 100% rename from repository/Grease-Tests-GemStone-Core.v32.package/.filetree rename to repository/Grease-Tests-GemStone32-Core.package/.filetree diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRDoubleByteStringTest.class/README.md b/repository/Grease-Tests-GemStone32-Core.package/GRDoubleByteStringTest.class/README.md similarity index 100% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRDoubleByteStringTest.class/README.md rename to repository/Grease-Tests-GemStone32-Core.package/GRDoubleByteStringTest.class/README.md diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRDoubleByteStringTest.class/instance/arbitraryCollection.st b/repository/Grease-Tests-GemStone32-Core.package/GRDoubleByteStringTest.class/instance/arbitraryCollection.st similarity index 100% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRDoubleByteStringTest.class/instance/arbitraryCollection.st rename to repository/Grease-Tests-GemStone32-Core.package/GRDoubleByteStringTest.class/instance/arbitraryCollection.st diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRDoubleByteStringTest.class/instance/collectionClass.st b/repository/Grease-Tests-GemStone32-Core.package/GRDoubleByteStringTest.class/instance/collectionClass.st similarity index 100% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRDoubleByteStringTest.class/instance/collectionClass.st rename to repository/Grease-Tests-GemStone32-Core.package/GRDoubleByteStringTest.class/instance/collectionClass.st diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRDoubleByteStringTest.class/properties.json b/repository/Grease-Tests-GemStone32-Core.package/GRDoubleByteStringTest.class/properties.json similarity index 81% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRDoubleByteStringTest.class/properties.json rename to repository/Grease-Tests-GemStone32-Core.package/GRDoubleByteStringTest.class/properties.json index f72b879e..aac15724 100644 --- a/repository/Grease-Tests-GemStone-Core.v32.package/GRDoubleByteStringTest.class/properties.json +++ b/repository/Grease-Tests-GemStone32-Core.package/GRDoubleByteStringTest.class/properties.json @@ -1,5 +1,5 @@ { - "category" : "Grease-Tests-GemStone-Core", + "category" : "Grease-Tests-GemStone32-Core", "classinstvars" : [ ], "classvars" : [ diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRGemStonePlatformTest.class/README.md b/repository/Grease-Tests-GemStone32-Core.package/GRGemStonePlatformTest.class/README.md similarity index 100% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRGemStonePlatformTest.class/README.md rename to repository/Grease-Tests-GemStone32-Core.package/GRGemStonePlatformTest.class/README.md diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRGemStonePlatformTest.class/instance/testCompileIntoClassified.st b/repository/Grease-Tests-GemStone32-Core.package/GRGemStonePlatformTest.class/instance/testCompileIntoClassified.st similarity index 100% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRGemStonePlatformTest.class/instance/testCompileIntoClassified.st rename to repository/Grease-Tests-GemStone32-Core.package/GRGemStonePlatformTest.class/instance/testCompileIntoClassified.st diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRGemStonePlatformTest.class/instance/testConvertToSmalltalkNewlines.st b/repository/Grease-Tests-GemStone32-Core.package/GRGemStonePlatformTest.class/instance/testConvertToSmalltalkNewlines.st similarity index 100% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRGemStonePlatformTest.class/instance/testConvertToSmalltalkNewlines.st rename to repository/Grease-Tests-GemStone32-Core.package/GRGemStonePlatformTest.class/instance/testConvertToSmalltalkNewlines.st diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRGemStonePlatformTest.class/instance/testEncoderForUtf8Roundtrip.st b/repository/Grease-Tests-GemStone32-Core.package/GRGemStonePlatformTest.class/instance/testEncoderForUtf8Roundtrip.st similarity index 100% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRGemStonePlatformTest.class/instance/testEncoderForUtf8Roundtrip.st rename to repository/Grease-Tests-GemStone32-Core.package/GRGemStonePlatformTest.class/instance/testEncoderForUtf8Roundtrip.st diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRGemStonePlatformTest.class/instance/testFullName.st b/repository/Grease-Tests-GemStone32-Core.package/GRGemStonePlatformTest.class/instance/testFullName.st similarity index 100% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRGemStonePlatformTest.class/instance/testFullName.st rename to repository/Grease-Tests-GemStone32-Core.package/GRGemStonePlatformTest.class/instance/testFullName.st diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRGemStonePlatformTest.class/properties.json b/repository/Grease-Tests-GemStone32-Core.package/GRGemStonePlatformTest.class/properties.json similarity index 80% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRGemStonePlatformTest.class/properties.json rename to repository/Grease-Tests-GemStone32-Core.package/GRGemStonePlatformTest.class/properties.json index bcd1f55d..29396189 100644 --- a/repository/Grease-Tests-GemStone-Core.v32.package/GRGemStonePlatformTest.class/properties.json +++ b/repository/Grease-Tests-GemStone32-Core.package/GRGemStonePlatformTest.class/properties.json @@ -1,5 +1,5 @@ { - "category" : "Grease-Tests-GemStone-Core", + "category" : "Grease-Tests-GemStone32-Core", "classinstvars" : [ ], "classvars" : [ diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRNumberTest.extension/instance/addBlockToCollection.with..st b/repository/Grease-Tests-GemStone32-Core.package/GRNumberTest.extension/instance/addBlockToCollection.with..st similarity index 68% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRNumberTest.extension/instance/addBlockToCollection.with..st rename to repository/Grease-Tests-GemStone32-Core.package/GRNumberTest.extension/instance/addBlockToCollection.with..st index c715445c..d2b2b2b2 100644 --- a/repository/Grease-Tests-GemStone-Core.v32.package/GRNumberTest.extension/instance/addBlockToCollection.with..st +++ b/repository/Grease-Tests-GemStone32-Core.package/GRNumberTest.extension/instance/addBlockToCollection.with..st @@ -1,4 +1,4 @@ -*grease-tests-gemstone-core +*grease-tests-gemstone32-core addBlockToCollection: collection with: ea collection add: [ea] \ No newline at end of file diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRNumberTest.extension/instance/expectedFailures.st b/repository/Grease-Tests-GemStone32-Core.package/GRNumberTest.extension/instance/expectedFailures.st similarity index 85% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRNumberTest.extension/instance/expectedFailures.st rename to repository/Grease-Tests-GemStone32-Core.package/GRNumberTest.extension/instance/expectedFailures.st index f49184f7..95dae186 100644 --- a/repository/Grease-Tests-GemStone-Core.v32.package/GRNumberTest.extension/instance/expectedFailures.st +++ b/repository/Grease-Tests-GemStone32-Core.package/GRNumberTest.extension/instance/expectedFailures.st @@ -1,4 +1,4 @@ -*grease-tests-gemstone-core +*grease-tests-gemstone32-core expectedFailures "GemStone does not conform to the ANSI standard in this case" diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRNumberTest.extension/instance/testToDoClosuresGemStone.st b/repository/Grease-Tests-GemStone32-Core.package/GRNumberTest.extension/instance/testToDoClosuresGemStone.st similarity index 89% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRNumberTest.extension/instance/testToDoClosuresGemStone.st rename to repository/Grease-Tests-GemStone32-Core.package/GRNumberTest.extension/instance/testToDoClosuresGemStone.st index 4ba45664..21ae2a01 100644 --- a/repository/Grease-Tests-GemStone-Core.v32.package/GRNumberTest.extension/instance/testToDoClosuresGemStone.st +++ b/repository/Grease-Tests-GemStone32-Core.package/GRNumberTest.extension/instance/testToDoClosuresGemStone.st @@ -1,4 +1,4 @@ -*grease-tests-gemstone-core +*grease-tests-gemstone32-core testToDoClosuresGemStone "workaround for non-ANSI compliance" diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRNumberTest.extension/properties.json b/repository/Grease-Tests-GemStone32-Core.package/GRNumberTest.extension/properties.json similarity index 100% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRNumberTest.extension/properties.json rename to repository/Grease-Tests-GemStone32-Core.package/GRNumberTest.extension/properties.json diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRPackage.extension/class/greaseTestsGemStoneCore.st b/repository/Grease-Tests-GemStone32-Core.package/GRPackage.extension/class/greaseTestsGemStoneCore.st similarity index 67% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRPackage.extension/class/greaseTestsGemStoneCore.st rename to repository/Grease-Tests-GemStone32-Core.package/GRPackage.extension/class/greaseTestsGemStoneCore.st index 8e8599f8..616e2a89 100644 --- a/repository/Grease-Tests-GemStone-Core.v32.package/GRPackage.extension/class/greaseTestsGemStoneCore.st +++ b/repository/Grease-Tests-GemStone32-Core.package/GRPackage.extension/class/greaseTestsGemStoneCore.st @@ -1,8 +1,8 @@ -*grease-tests-gemstone-core +*grease-tests-gemstone32-core greaseTestsGemStoneCore ^ self new - name: 'Grease-Tests-GemStone-Core'; + name: 'Grease-Tests-GemStone32-Core'; addDependency: 'Grease-GemStone-Core'; addDependency: 'Grease-Tests-Core'; url: #gemstoneUrl; diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRPackage.extension/properties.json b/repository/Grease-Tests-GemStone32-Core.package/GRPackage.extension/properties.json similarity index 100% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRPackage.extension/properties.json rename to repository/Grease-Tests-GemStone32-Core.package/GRPackage.extension/properties.json diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRPlatformTest.extension/instance/writeToFile.withFileNameDo.st b/repository/Grease-Tests-GemStone32-Core.package/GRPlatformTest.extension/instance/writeToFile.withFileNameDo.st similarity index 93% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRPlatformTest.extension/instance/writeToFile.withFileNameDo.st rename to repository/Grease-Tests-GemStone32-Core.package/GRPlatformTest.extension/instance/writeToFile.withFileNameDo.st index c73ff2de..6976c3c7 100644 --- a/repository/Grease-Tests-GemStone-Core.v32.package/GRPlatformTest.extension/instance/writeToFile.withFileNameDo.st +++ b/repository/Grease-Tests-GemStone32-Core.package/GRPlatformTest.extension/instance/writeToFile.withFileNameDo.st @@ -1,4 +1,4 @@ -*grease-tests-gemstone-core +*grease-tests-gemstone32-core writeToFile: aStringOrByteArray withFileNameDo: aBlock | fileName directory | fileName := 'GRGemStonePlatformTest'. diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRPlatformTest.extension/properties.json b/repository/Grease-Tests-GemStone32-Core.package/GRPlatformTest.extension/properties.json similarity index 100% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRPlatformTest.extension/properties.json rename to repository/Grease-Tests-GemStone32-Core.package/GRPlatformTest.extension/properties.json diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRQuadByteStringTest.class/README.md b/repository/Grease-Tests-GemStone32-Core.package/GRQuadByteStringTest.class/README.md similarity index 100% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRQuadByteStringTest.class/README.md rename to repository/Grease-Tests-GemStone32-Core.package/GRQuadByteStringTest.class/README.md diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRQuadByteStringTest.class/instance/arbitraryCollection.st b/repository/Grease-Tests-GemStone32-Core.package/GRQuadByteStringTest.class/instance/arbitraryCollection.st similarity index 100% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRQuadByteStringTest.class/instance/arbitraryCollection.st rename to repository/Grease-Tests-GemStone32-Core.package/GRQuadByteStringTest.class/instance/arbitraryCollection.st diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRQuadByteStringTest.class/instance/collectionClass.st b/repository/Grease-Tests-GemStone32-Core.package/GRQuadByteStringTest.class/instance/collectionClass.st similarity index 100% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRQuadByteStringTest.class/instance/collectionClass.st rename to repository/Grease-Tests-GemStone32-Core.package/GRQuadByteStringTest.class/instance/collectionClass.st diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRQuadByteStringTest.class/properties.json b/repository/Grease-Tests-GemStone32-Core.package/GRQuadByteStringTest.class/properties.json similarity index 81% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRQuadByteStringTest.class/properties.json rename to repository/Grease-Tests-GemStone32-Core.package/GRQuadByteStringTest.class/properties.json index f04548ac..5643404e 100644 --- a/repository/Grease-Tests-GemStone-Core.v32.package/GRQuadByteStringTest.class/properties.json +++ b/repository/Grease-Tests-GemStone32-Core.package/GRQuadByteStringTest.class/properties.json @@ -1,5 +1,5 @@ { - "category" : "Grease-Tests-GemStone-Core", + "category" : "Grease-Tests-GemStone32-Core", "classinstvars" : [ ], "classvars" : [ diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRStringTest.extension/instance/multiByteConvert..st b/repository/Grease-Tests-GemStone32-Core.package/GRStringTest.extension/instance/multiByteConvert..st similarity index 68% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRStringTest.extension/instance/multiByteConvert..st rename to repository/Grease-Tests-GemStone32-Core.package/GRStringTest.extension/instance/multiByteConvert..st index 7e52fede..70c30922 100644 --- a/repository/Grease-Tests-GemStone-Core.v32.package/GRStringTest.extension/instance/multiByteConvert..st +++ b/repository/Grease-Tests-GemStone32-Core.package/GRStringTest.extension/instance/multiByteConvert..st @@ -1,4 +1,4 @@ -*grease-tests-gemstone-core +*grease-tests-gemstone-32core multiByteConvert: aString ^self collectionClass withAll: aString \ No newline at end of file diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRStringTest.extension/instance/testMultiByteCapitalized.st b/repository/Grease-Tests-GemStone32-Core.package/GRStringTest.extension/instance/testMultiByteCapitalized.st similarity index 90% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRStringTest.extension/instance/testMultiByteCapitalized.st rename to repository/Grease-Tests-GemStone32-Core.package/GRStringTest.extension/instance/testMultiByteCapitalized.st index 2b574007..e2b5c14d 100644 --- a/repository/Grease-Tests-GemStone-Core.v32.package/GRStringTest.extension/instance/testMultiByteCapitalized.st +++ b/repository/Grease-Tests-GemStone32-Core.package/GRStringTest.extension/instance/testMultiByteCapitalized.st @@ -1,4 +1,4 @@ -*grease-tests-gemstone-core +*grease-tests-gemstone32-core testMultiByteCapitalized self assert: (self multiByteConvert: 'capitalized') capitalized = 'Capitalized'. self assert: (self multiByteConvert: 'Capitalized') capitalized = 'Capitalized' . diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRStringTest.extension/instance/testMultiByteExcerpt.st b/repository/Grease-Tests-GemStone32-Core.package/GRStringTest.extension/instance/testMultiByteExcerpt.st similarity index 96% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRStringTest.extension/instance/testMultiByteExcerpt.st rename to repository/Grease-Tests-GemStone32-Core.package/GRStringTest.extension/instance/testMultiByteExcerpt.st index f8354583..be28723e 100644 --- a/repository/Grease-Tests-GemStone-Core.v32.package/GRStringTest.extension/instance/testMultiByteExcerpt.st +++ b/repository/Grease-Tests-GemStone32-Core.package/GRStringTest.extension/instance/testMultiByteExcerpt.st @@ -1,4 +1,4 @@ -*grease-tests-gemstone-core +*grease-tests-gemstone32-core testMultiByteExcerpt self assert: ((self multiByteConvert: 'abcde') excerpt: 'c' radius: 0) = '...c...'. self assert: ((self multiByteConvert: 'abcde') excerpt: 'c' radius: 1) = '...bcd...'. diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRStringTest.extension/instance/testMultiByteSubStrings.st b/repository/Grease-Tests-GemStone32-Core.package/GRStringTest.extension/instance/testMultiByteSubStrings.st similarity index 97% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRStringTest.extension/instance/testMultiByteSubStrings.st rename to repository/Grease-Tests-GemStone32-Core.package/GRStringTest.extension/instance/testMultiByteSubStrings.st index 6baae92e..20972006 100644 --- a/repository/Grease-Tests-GemStone-Core.v32.package/GRStringTest.extension/instance/testMultiByteSubStrings.st +++ b/repository/Grease-Tests-GemStone32-Core.package/GRStringTest.extension/instance/testMultiByteSubStrings.st @@ -1,4 +1,4 @@ -*grease-tests-gemstone-core +*grease-tests-gemstone32-core testMultiByteSubStrings "#subStrings: is defined by ANSI 5.7.10.15: Answer an array containing the substrings in the receiver separated by the elements of separators." diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRStringTest.extension/instance/testMultiByteTrimBoth.st b/repository/Grease-Tests-GemStone32-Core.package/GRStringTest.extension/instance/testMultiByteTrimBoth.st similarity index 95% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRStringTest.extension/instance/testMultiByteTrimBoth.st rename to repository/Grease-Tests-GemStone32-Core.package/GRStringTest.extension/instance/testMultiByteTrimBoth.st index 76a0776f..6b73b88b 100644 --- a/repository/Grease-Tests-GemStone-Core.v32.package/GRStringTest.extension/instance/testMultiByteTrimBoth.st +++ b/repository/Grease-Tests-GemStone32-Core.package/GRStringTest.extension/instance/testMultiByteTrimBoth.st @@ -1,4 +1,4 @@ -*grease-tests-gemstone-core +*grease-tests-gemstone32-core testMultiByteTrimBoth self assert: (self multiByteConvert: '') trimBoth = ''. self assert: (self multiByteConvert: ' ') trimBoth = ''. diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRStringTest.extension/instance/testMultiByteTruncate.st b/repository/Grease-Tests-GemStone32-Core.package/GRStringTest.extension/instance/testMultiByteTruncate.st similarity index 93% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRStringTest.extension/instance/testMultiByteTruncate.st rename to repository/Grease-Tests-GemStone32-Core.package/GRStringTest.extension/instance/testMultiByteTruncate.st index 5cbf7eb4..faadc979 100644 --- a/repository/Grease-Tests-GemStone-Core.v32.package/GRStringTest.extension/instance/testMultiByteTruncate.st +++ b/repository/Grease-Tests-GemStone32-Core.package/GRStringTest.extension/instance/testMultiByteTruncate.st @@ -1,4 +1,4 @@ -*grease-tests-gemstone-core +*grease-tests-gemstone32-core testMultiByteTruncate self assert: ((self multiByteConvert: 'abc') truncate) = (self multiByteConvert: 'abc'). self assert: ((self multiByteConvert: 'abc') truncate: 3) = (self multiByteConvert: 'abc'). diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRStringTest.extension/properties.json b/repository/Grease-Tests-GemStone32-Core.package/GRStringTest.extension/properties.json similarity index 100% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRStringTest.extension/properties.json rename to repository/Grease-Tests-GemStone32-Core.package/GRStringTest.extension/properties.json diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRUtf8CodecTest.extension/instance/expectedFailures.st b/repository/Grease-Tests-GemStone32-Core.package/GRUtf8CodecTest.extension/instance/expectedFailures.st similarity index 65% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRUtf8CodecTest.extension/instance/expectedFailures.st rename to repository/Grease-Tests-GemStone32-Core.package/GRUtf8CodecTest.extension/instance/expectedFailures.st index 4a2a790a..86b72193 100644 --- a/repository/Grease-Tests-GemStone-Core.v32.package/GRUtf8CodecTest.extension/instance/expectedFailures.st +++ b/repository/Grease-Tests-GemStone32-Core.package/GRUtf8CodecTest.extension/instance/expectedFailures.st @@ -1,3 +1,3 @@ -*grease-tests-gemstone-core +*grease-tests-gemstone32-core expectedFailures ^ #() "all tests pass in GemStone 3.2" \ No newline at end of file diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRUtf8CodecTest.extension/properties.json b/repository/Grease-Tests-GemStone32-Core.package/GRUtf8CodecTest.extension/properties.json similarity index 100% rename from repository/Grease-Tests-GemStone-Core.v32.package/GRUtf8CodecTest.extension/properties.json rename to repository/Grease-Tests-GemStone32-Core.package/GRUtf8CodecTest.extension/properties.json diff --git a/repository/Grease-Tests-GemStone32-Core.package/monticello.meta/categories.st b/repository/Grease-Tests-GemStone32-Core.package/monticello.meta/categories.st new file mode 100644 index 00000000..601b1fa0 --- /dev/null +++ b/repository/Grease-Tests-GemStone32-Core.package/monticello.meta/categories.st @@ -0,0 +1 @@ +SystemOrganization addCategory: #'Grease-Tests-GemStone32-Core'! diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/monticello.meta/initializers.st b/repository/Grease-Tests-GemStone32-Core.package/monticello.meta/initializers.st similarity index 100% rename from repository/Grease-Tests-GemStone-Core.v32.package/monticello.meta/initializers.st rename to repository/Grease-Tests-GemStone32-Core.package/monticello.meta/initializers.st diff --git a/repository/Grease-Tests-GemStone32-Core.package/monticello.meta/package b/repository/Grease-Tests-GemStone32-Core.package/monticello.meta/package new file mode 100644 index 00000000..8584d7db --- /dev/null +++ b/repository/Grease-Tests-GemStone32-Core.package/monticello.meta/package @@ -0,0 +1 @@ +(name 'Grease-Tests-GemStone32-Core') \ No newline at end of file diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/properties.json b/repository/Grease-Tests-GemStone32-Core.package/properties.json similarity index 100% rename from repository/Grease-Tests-GemStone-Core.v32.package/properties.json rename to repository/Grease-Tests-GemStone32-Core.package/properties.json From d7adb2cecb53e79339317177c388200e3b3c1cf2 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Fri, 3 Jul 2020 16:13:29 +0200 Subject: [PATCH 10/46] missed a rename --- .../GRStringTest.extension/instance/multiByteConvert..st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repository/Grease-Tests-GemStone32-Core.package/GRStringTest.extension/instance/multiByteConvert..st b/repository/Grease-Tests-GemStone32-Core.package/GRStringTest.extension/instance/multiByteConvert..st index 70c30922..f68bfeb2 100644 --- a/repository/Grease-Tests-GemStone32-Core.package/GRStringTest.extension/instance/multiByteConvert..st +++ b/repository/Grease-Tests-GemStone32-Core.package/GRStringTest.extension/instance/multiByteConvert..st @@ -1,4 +1,4 @@ -*grease-tests-gemstone-32core +*grease-tests-gemstone32-core multiByteConvert: aString ^self collectionClass withAll: aString \ No newline at end of file From 0697d0cb72e3e80b01558a0e53f649c1f8a71ae9 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Fri, 3 Jul 2020 16:36:57 +0200 Subject: [PATCH 11/46] Filestream methods in Squeak --- .../Behavior.extension/methodProperties.json | 5 +++ .../methodProperties.json | 5 +++ .../methodProperties.json | 6 +++ .../ByteArray.extension/methodProperties.json | 5 +++ .../Character.extension/methodProperties.json | 5 +++ .../methodProperties.json | 5 +++ .../Duration.extension/methodProperties.json | 6 +++ .../methodProperties.json | 5 +++ .../methodProperties.json | 7 ++++ .../GRPackage.extension/methodProperties.json | 5 +++ .../methodProperties.json | 10 +++++ .../methodProperties.json | 13 ++++++ .../methodProperties.json | 12 ++++++ .../methodProperties.json | 6 +++ .../GRPharoPlatform.class/class/initialize.st | 3 +- .../GRPharoPlatform.class/class/unload.st | 3 -- .../instance/fileStreamOn.do.binary..st | 13 ------ .../instance/write.toFile.inFolder..st | 15 ------- .../methodProperties.json | 41 +++++++++++++++++++ .../methodProperties.json | 10 +++++ .../methodProperties.json | 12 ++++++ .../methodProperties.json | 14 +++++++ .../methodProperties.json | 7 ++++ ...ary..st => readFileStreamOn.do.binary..st} | 4 +- .../instance/write.toFile.inFolder..st | 24 +++++------ .../instance/writeFileStreamOn.do.binary..st | 8 ++++ .../methodProperties.json | 18 ++++++++ .../methodProperties.json | 5 +++ .../Interval.extension/methodProperties.json | 5 +++ .../methodProperties.json | 6 +++ .../Number.extension/methodProperties.json | 5 +++ .../Object.extension/methodProperties.json | 6 +++ .../Point.extension/methodProperties.json | 5 +++ .../methodProperties.json | 5 +++ .../methodProperties.json | 6 +++ .../methodProperties.json | 7 ++++ .../methodProperties.json | 5 +++ .../methodProperties.json | 5 +++ .../String.extension/methodProperties.json | 12 ++++++ .../Symbol.extension/methodProperties.json | 5 +++ .../methodProperties.json | 5 +++ .../monticello.meta/version | 1 + .../GRPackage.extension/methodProperties.json | 5 +++ .../methodProperties.json | 10 +++++ .../methodProperties.json | 11 +++++ .../methodProperties.json | 5 +++ .../methodProperties.json | 11 +++++ .../instance/writeToFile.withFileNameDo..st | 12 ++++++ .../methodProperties.json | 6 +++ .../methodProperties.json | 5 +++ .../methodProperties.json | 5 +++ .../monticello.meta/version | 1 + 52 files changed, 372 insertions(+), 49 deletions(-) create mode 100644 repository/Grease-Squeak5-Core.package/Behavior.extension/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/BlockClosure.extension/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/BlockContext.extension/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/ByteArray.extension/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/Character.extension/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/Collection.extension/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/Duration.extension/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/GRDelegatingStream.extension/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/GRDynamicVariable.class/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/GRPackage.extension/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/GRPharoConverterCodecStream.class/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/GRPharoGenericCodec.class/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/GRPharoLatin1Codec.class/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/GRPharoLatin1CodecStream.class/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/GRPharoPlatform.class/class/unload.st delete mode 100644 repository/Grease-Squeak5-Core.package/GRPharoPlatform.class/instance/fileStreamOn.do.binary..st delete mode 100644 repository/Grease-Squeak5-Core.package/GRPharoPlatform.class/instance/write.toFile.inFolder..st create mode 100644 repository/Grease-Squeak5-Core.package/GRPharoPlatform.class/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/GRPharoRandomProvider.class/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/GRPharoUtf8Codec.class/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/GRPharoUtf8CodecStream.class/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/GRSmallDictionary.extension/methodProperties.json rename repository/Grease-Squeak5-Core.package/GRSqueakPlatform.class/instance/{fileStreamOn.do.binary..st => readFileStreamOn.do.binary..st} (79%) create mode 100644 repository/Grease-Squeak5-Core.package/GRSqueakPlatform.class/instance/writeFileStreamOn.do.binary..st create mode 100644 repository/Grease-Squeak5-Core.package/GRSqueakPlatform.class/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/GRWorkingWriteStream.class/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/Interval.extension/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/MessageSend.extension/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/Number.extension/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/Object.extension/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/Point.extension/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/PositionableStream.extension/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/ScaledDecimal.extension/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/SequenceableCollection.extension/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/SmallInteger.extension/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/SocketStream.extension/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/String.extension/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/Symbol.extension/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/WriteStream.extension/methodProperties.json create mode 100644 repository/Grease-Squeak5-Core.package/monticello.meta/version create mode 100644 repository/Grease-Tests-Squeak5-Core.package/GRPackage.extension/methodProperties.json create mode 100644 repository/Grease-Tests-Squeak5-Core.package/GRPharoCodecTest.class/methodProperties.json create mode 100644 repository/Grease-Tests-Squeak5-Core.package/GRPharoColorTest.class/methodProperties.json create mode 100644 repository/Grease-Tests-Squeak5-Core.package/GRPharoGenericCodecTest.class/methodProperties.json create mode 100644 repository/Grease-Tests-Squeak5-Core.package/GRPharoPlatformTest.class/methodProperties.json create mode 100644 repository/Grease-Tests-Squeak5-Core.package/GRPlatformTest.extension/instance/writeToFile.withFileNameDo..st create mode 100644 repository/Grease-Tests-Squeak5-Core.package/GRPlatformTest.extension/methodProperties.json create mode 100644 repository/Grease-Tests-Squeak5-Core.package/GRPrinterTest.extension/methodProperties.json create mode 100644 repository/Grease-Tests-Squeak5-Core.package/GRUtf8CodecTest.extension/methodProperties.json create mode 100644 repository/Grease-Tests-Squeak5-Core.package/monticello.meta/version diff --git a/repository/Grease-Squeak5-Core.package/Behavior.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/Behavior.extension/methodProperties.json new file mode 100644 index 00000000..2747617d --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/Behavior.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "fullName" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/BlockClosure.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/BlockClosure.extension/methodProperties.json new file mode 100644 index 00000000..c5247d92 --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/BlockClosure.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "valueWithPossibleArguments:" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/BlockContext.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/BlockContext.extension/methodProperties.json new file mode 100644 index 00000000..d487c66d --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/BlockContext.extension/methodProperties.json @@ -0,0 +1,6 @@ +{ + "class" : { + }, + "instance" : { + "tempVarRefs" : " 7/3/2020 16:21:45", + "valueWithPossibleArguments:" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/ByteArray.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/ByteArray.extension/methodProperties.json new file mode 100644 index 00000000..66c63d1a --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/ByteArray.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "greaseString" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/Character.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/Character.extension/methodProperties.json new file mode 100644 index 00000000..b5700e84 --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/Character.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "greaseInteger" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/Collection.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/Collection.extension/methodProperties.json new file mode 100644 index 00000000..b8d3051f --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/Collection.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "any" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/Duration.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/Duration.extension/methodProperties.json new file mode 100644 index 00000000..454b06a9 --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/Duration.extension/methodProperties.json @@ -0,0 +1,6 @@ +{ + "class" : { + "milliseconds:" : " 7/3/2020 16:21:45" }, + "instance" : { + "asMilliseconds" : " 7/3/2020 16:21:45", + "milliseconds" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/GRDelegatingStream.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/GRDelegatingStream.extension/methodProperties.json new file mode 100644 index 00000000..3f83ee19 --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/GRDelegatingStream.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "greaseNext:putAll:startingAt:" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/GRDynamicVariable.class/methodProperties.json b/repository/Grease-Squeak5-Core.package/GRDynamicVariable.class/methodProperties.json new file mode 100644 index 00000000..bb25f832 --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/GRDynamicVariable.class/methodProperties.json @@ -0,0 +1,7 @@ +{ + "class" : { + "default" : " 7/3/2020 16:21:45", + "defaultValue" : " 7/3/2020 16:21:45", + "use:during:" : " 7/3/2020 16:21:45" }, + "instance" : { + } } diff --git a/repository/Grease-Squeak5-Core.package/GRPackage.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/GRPackage.extension/methodProperties.json new file mode 100644 index 00000000..c168d644 --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/GRPackage.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + "greaseSqueak5Core" : " 7/3/2020 16:21:45" }, + "instance" : { + } } diff --git a/repository/Grease-Squeak5-Core.package/GRPharoConverterCodecStream.class/methodProperties.json b/repository/Grease-Squeak5-Core.package/GRPharoConverterCodecStream.class/methodProperties.json new file mode 100644 index 00000000..23a5add2 --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/GRPharoConverterCodecStream.class/methodProperties.json @@ -0,0 +1,10 @@ +{ + "class" : { + "on:converter:" : " 7/3/2020 16:21:45" }, + "instance" : { + "greaseNext:putAll:startingAt:" : " 7/3/2020 16:21:45", + "initializeOn:converter:" : " 7/3/2020 16:21:45", + "next" : " 7/3/2020 16:21:45", + "next:" : " 7/3/2020 16:21:45", + "nextPut:" : " 7/3/2020 16:21:45", + "nextPutAll:" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/GRPharoGenericCodec.class/methodProperties.json b/repository/Grease-Squeak5-Core.package/GRPharoGenericCodec.class/methodProperties.json new file mode 100644 index 00000000..c790b8e8 --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/GRPharoGenericCodec.class/methodProperties.json @@ -0,0 +1,13 @@ +{ + "class" : { + "basicForEncoding:" : " 7/3/2020 16:21:45", + "codecs" : " 7/3/2020 16:21:45", + "supportedEncodingNames" : " 7/3/2020 16:21:45", + "supportsEncoding:" : " 7/3/2020 16:21:45" }, + "instance" : { + "converter" : " 7/3/2020 16:21:45", + "decoderFor:" : " 7/3/2020 16:21:45", + "encoderFor:" : " 7/3/2020 16:21:45", + "initializeWithName:" : " 7/3/2020 16:21:45", + "name" : " 7/3/2020 16:21:45", + "url" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/GRPharoLatin1Codec.class/methodProperties.json b/repository/Grease-Squeak5-Core.package/GRPharoLatin1Codec.class/methodProperties.json new file mode 100644 index 00000000..c6d739f3 --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/GRPharoLatin1Codec.class/methodProperties.json @@ -0,0 +1,12 @@ +{ + "class" : { + "basicForEncoding:" : " 7/3/2020 16:21:45", + "codecs" : " 7/3/2020 16:21:45", + "supportedEncodingNames" : " 7/3/2020 16:21:45", + "supportsEncoding:" : " 7/3/2020 16:21:45" }, + "instance" : { + "decode:" : " 7/3/2020 16:21:45", + "decoderFor:" : " 7/3/2020 16:21:45", + "encoderFor:" : " 7/3/2020 16:21:45", + "initializeWithName:" : " 7/3/2020 16:21:45", + "name" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/GRPharoLatin1CodecStream.class/methodProperties.json b/repository/Grease-Squeak5-Core.package/GRPharoLatin1CodecStream.class/methodProperties.json new file mode 100644 index 00000000..7db39557 --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/GRPharoLatin1CodecStream.class/methodProperties.json @@ -0,0 +1,6 @@ +{ + "class" : { + }, + "instance" : { + "next" : " 7/3/2020 16:21:45", + "next:" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/GRPharoPlatform.class/class/initialize.st b/repository/Grease-Squeak5-Core.package/GRPharoPlatform.class/class/initialize.st index 0c86564c..69106234 100644 --- a/repository/Grease-Squeak5-Core.package/GRPharoPlatform.class/class/initialize.st +++ b/repository/Grease-Squeak5-Core.package/GRPharoPlatform.class/class/initialize.st @@ -1,5 +1,4 @@ class initialization initialize self initializeXmlTable. - self initializeUrlTable. - self select \ No newline at end of file + self initializeUrlTable \ No newline at end of file diff --git a/repository/Grease-Squeak5-Core.package/GRPharoPlatform.class/class/unload.st b/repository/Grease-Squeak5-Core.package/GRPharoPlatform.class/class/unload.st deleted file mode 100644 index 4c8dd650..00000000 --- a/repository/Grease-Squeak5-Core.package/GRPharoPlatform.class/class/unload.st +++ /dev/null @@ -1,3 +0,0 @@ -class initialization -unload - self unselect \ No newline at end of file diff --git a/repository/Grease-Squeak5-Core.package/GRPharoPlatform.class/instance/fileStreamOn.do.binary..st b/repository/Grease-Squeak5-Core.package/GRPharoPlatform.class/instance/fileStreamOn.do.binary..st deleted file mode 100644 index 1aad81ef..00000000 --- a/repository/Grease-Squeak5-Core.package/GRPharoPlatform.class/instance/fileStreamOn.do.binary..st +++ /dev/null @@ -1,13 +0,0 @@ -file library -fileStreamOn: aString do: aBlock binary: aBoolean - ^ aBoolean - ifTrue: [ - FileStream oldFileNamed: aString do: [ :stream | - stream binary. - aBlock value: stream ] ] - ifFalse: [ - MultiByteFileStream oldFileNamed: aString do: [ :stream | - stream - ascii; - wantsLineEndConversion: true. - aBlock value: stream ] ] \ No newline at end of file diff --git a/repository/Grease-Squeak5-Core.package/GRPharoPlatform.class/instance/write.toFile.inFolder..st b/repository/Grease-Squeak5-Core.package/GRPharoPlatform.class/instance/write.toFile.inFolder..st deleted file mode 100644 index 9565ae8b..00000000 --- a/repository/Grease-Squeak5-Core.package/GRPharoPlatform.class/instance/write.toFile.inFolder..st +++ /dev/null @@ -1,15 +0,0 @@ -file library -write: aStringOrByteArray toFile: aFileNameString inFolder: aFolderString - "writes aStringOrByteArray to a file named aFileNameString in the folder aFolderString" - | folder stream fullFilePath | - folder := FileDirectory default directoryNamed: aFolderString. - fullFilePath := folder fullNameFor: aFileNameString. - stream := aStringOrByteArray isString - ifTrue: [ - (MultiByteFileStream forceNewFileNamed: fullFilePath) - ascii; - wantsLineEndConversion: true; - yourself ] - ifFalse: [ (FileStream forceNewFileNamed: fullFilePath) binary ]. - [ stream nextPutAll: aStringOrByteArray ] - ensure: [ stream close ] \ No newline at end of file diff --git a/repository/Grease-Squeak5-Core.package/GRPharoPlatform.class/methodProperties.json b/repository/Grease-Squeak5-Core.package/GRPharoPlatform.class/methodProperties.json new file mode 100644 index 00000000..d0144b17 --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/GRPharoPlatform.class/methodProperties.json @@ -0,0 +1,41 @@ +{ + "class" : { + "initialize" : "JB 7/3/2020 16:34", + "initializeUrlTable" : " 7/3/2020 16:21:45", + "initializeXmlTable" : " 7/3/2020 16:21:45" }, + "instance" : { + "addToShutDownList:" : " 7/3/2020 16:21:45", + "addToStartUpList:" : " 7/3/2020 16:21:45", + "asMethodReturningByteArray:named:" : " 7/3/2020 16:21:45", + "asMethodReturningByteArrayLiteral:named:" : " 7/3/2020 16:21:45", + "asMethodReturningByteArrayWithCache:named:" : " 7/3/2020 16:21:45", + "base64Decode:" : " 7/3/2020 16:21:45", + "bindingOf:" : " 7/3/2020 16:21:45", + "compile:into:classified:" : " 7/3/2020 16:21:45", + "contentsOfFile:binary:" : " 7/3/2020 16:21:45", + "deprecationExceptionSet" : " 7/3/2020 16:21:45", + "directoriesIn:" : " 7/3/2020 16:21:45", + "doSilently:" : " 7/3/2020 16:21:45", + "ensureExistenceOfFolder:" : " 7/3/2020 16:21:45", + "fileExists:" : " 7/3/2020 16:21:45", + "filesIn:" : " 7/3/2020 16:21:45", + "isProcessTerminated:" : " 7/3/2020 16:21:45", + "label" : " 7/3/2020 16:21:45", + "localNameOf:" : " 7/3/2020 16:21:45", + "newRandom" : " 7/3/2020 16:21:45", + "newline" : " 7/3/2020 16:21:45", + "openDebuggerOn:" : " 7/3/2020 16:21:45", + "pathSeparator" : " 7/3/2020 16:21:45", + "readWriteByteStream" : " 7/3/2020 16:21:45", + "readWriteCharacterStream" : " 7/3/2020 16:21:45", + "removeFromShutDownList:" : " 7/3/2020 16:21:45", + "removeFromStartUpList:" : " 7/3/2020 16:21:45", + "removeSelector:from:" : " 7/3/2020 16:21:45", + "secureHashFor:" : " 7/3/2020 16:21:45", + "semaphoreClass" : " 7/3/2020 16:21:45", + "stackDepth" : " 7/3/2020 16:21:45", + "terminateProcess:" : " 7/3/2020 16:21:45", + "thisContext" : " 7/3/2020 16:21:45", + "useByteArrayLiterals" : " 7/3/2020 16:21:45", + "weakDictionaryOfSize:" : " 7/3/2020 16:21:45", + "writeCharacterStreamOn:" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/GRPharoRandomProvider.class/methodProperties.json b/repository/Grease-Squeak5-Core.package/GRPharoRandomProvider.class/methodProperties.json new file mode 100644 index 00000000..5cd17b60 --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/GRPharoRandomProvider.class/methodProperties.json @@ -0,0 +1,10 @@ +{ + "class" : { + "initialize" : " 7/3/2020 16:21:45", + "nextInt:" : " 7/3/2020 16:21:45", + "randomClass" : " 7/3/2020 16:21:45", + "randomFrom:" : " 7/3/2020 16:21:45", + "startUp" : " 7/3/2020 16:21:45", + "unload" : " 7/3/2020 16:21:45" }, + "instance" : { + } } diff --git a/repository/Grease-Squeak5-Core.package/GRPharoUtf8Codec.class/methodProperties.json b/repository/Grease-Squeak5-Core.package/GRPharoUtf8Codec.class/methodProperties.json new file mode 100644 index 00000000..280e7ad2 --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/GRPharoUtf8Codec.class/methodProperties.json @@ -0,0 +1,12 @@ +{ + "class" : { + "basicForEncoding:" : " 7/3/2020 16:21:45", + "codecs" : " 7/3/2020 16:21:45", + "supportsEncoding:" : " 7/3/2020 16:21:45" }, + "instance" : { + "decode:" : " 7/3/2020 16:21:45", + "decoderFor:" : " 7/3/2020 16:21:45", + "encoderFor:" : " 7/3/2020 16:21:45", + "invalidUtf8" : " 7/3/2020 16:21:45", + "name" : " 7/3/2020 16:21:45", + "url" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/GRPharoUtf8CodecStream.class/methodProperties.json b/repository/Grease-Squeak5-Core.package/GRPharoUtf8CodecStream.class/methodProperties.json new file mode 100644 index 00000000..fedc2283 --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/GRPharoUtf8CodecStream.class/methodProperties.json @@ -0,0 +1,14 @@ +{ + "class" : { + "initialize" : " 7/3/2020 16:21:45" }, + "instance" : { + "crlf" : " 7/3/2020 16:21:45", + "encodeDefault:" : " 7/3/2020 16:21:45", + "encodeFast:" : " 7/3/2020 16:21:45", + "greaseNext:putAll:startingAt:" : " 7/3/2020 16:21:45", + "greaseNext:putAllFast:startingAt:" : " 7/3/2020 16:21:45", + "invalidUtf8" : " 7/3/2020 16:21:45", + "next" : " 7/3/2020 16:21:45", + "next:" : " 7/3/2020 16:21:45", + "nextPut:" : " 7/3/2020 16:21:45", + "nextPutAll:" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/GRSmallDictionary.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/GRSmallDictionary.extension/methodProperties.json new file mode 100644 index 00000000..963cad87 --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/GRSmallDictionary.extension/methodProperties.json @@ -0,0 +1,7 @@ +{ + "class" : { + }, + "instance" : { + "customizeExplorerContents" : " 7/3/2020 16:21:45", + "explorerContents" : " 7/3/2020 16:21:45", + "hasContentsInExplorer" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/GRSqueakPlatform.class/instance/fileStreamOn.do.binary..st b/repository/Grease-Squeak5-Core.package/GRSqueakPlatform.class/instance/readFileStreamOn.do.binary..st similarity index 79% rename from repository/Grease-Squeak5-Core.package/GRSqueakPlatform.class/instance/fileStreamOn.do.binary..st rename to repository/Grease-Squeak5-Core.package/GRSqueakPlatform.class/instance/readFileStreamOn.do.binary..st index 2fd81137..9c82d3ff 100644 --- a/repository/Grease-Squeak5-Core.package/GRSqueakPlatform.class/instance/fileStreamOn.do.binary..st +++ b/repository/Grease-Squeak5-Core.package/GRSqueakPlatform.class/instance/readFileStreamOn.do.binary..st @@ -1,5 +1,5 @@ -file library -fileStreamOn: aString do: aBlock binary: aBoolean +as yet unclassified +readFileStreamOn: aString do: aBlock binary: aBoolean ^ aBoolean ifTrue: [ FileStream fileNamed: aString do: [ :stream | diff --git a/repository/Grease-Squeak5-Core.package/GRSqueakPlatform.class/instance/write.toFile.inFolder..st b/repository/Grease-Squeak5-Core.package/GRSqueakPlatform.class/instance/write.toFile.inFolder..st index 08d697b5..f06fa4d4 100644 --- a/repository/Grease-Squeak5-Core.package/GRSqueakPlatform.class/instance/write.toFile.inFolder..st +++ b/repository/Grease-Squeak5-Core.package/GRSqueakPlatform.class/instance/write.toFile.inFolder..st @@ -1,15 +1,11 @@ file library -write: aStringOrByteArray toFile: aFileNameString inFolder: aFolderString - "writes aStringOrByteArray to a file named aFilenameString in the folder aFolderString" - | folder stream fullFilePath | - folder := FileDirectory default directoryNamed: aFolderString. - fullFilePath := folder fullNameFor: aFileNameString. - stream := aStringOrByteArray isString - ifTrue: [ - (MultiByteFileStream forceNewFileNamed: fullFilePath) - ascii; - wantsLineEndConversion: true; - yourself ] - ifFalse: [ (FileStream forceNewFileNamed: fullFilePath) binary ]. - [ stream nextPutAll: aStringOrByteArray ] - ensure: [ stream close ] \ No newline at end of file +write: aStringOrByteArray toFile: aFileNameString inFolder: aFolderString + | folder fullFilePath | + fullFilePath := FileDirectory default fullNameFor: aFolderString. + folder := FileDirectory on: fullFilePath. + (folder fileExists: aFileNameString) + ifTrue: [folder deleteFileNamed: aFileNameString]. + ^ self + writeFileStreamOn: (folder / aFileNameString) fullName + do: [:stream | stream nextPutAll: aStringOrByteArray] + binary: aStringOrByteArray isString not \ No newline at end of file diff --git a/repository/Grease-Squeak5-Core.package/GRSqueakPlatform.class/instance/writeFileStreamOn.do.binary..st b/repository/Grease-Squeak5-Core.package/GRSqueakPlatform.class/instance/writeFileStreamOn.do.binary..st new file mode 100644 index 00000000..1207150a --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/GRSqueakPlatform.class/instance/writeFileStreamOn.do.binary..st @@ -0,0 +1,8 @@ +as yet unclassified +writeFileStreamOn: aString do: aBlock binary: aBoolean + | stream | + stream := aBoolean + ifTrue: [ (MultiByteFileStream fileNamed: aString) ascii; wantsLineEndConversion: true; yourself ] + ifFalse: [ (FileStream fileNamed: aString) binary ]. + [ aBlock value: stream ] + ensure: [ stream close ] \ No newline at end of file diff --git a/repository/Grease-Squeak5-Core.package/GRSqueakPlatform.class/methodProperties.json b/repository/Grease-Squeak5-Core.package/GRSqueakPlatform.class/methodProperties.json new file mode 100644 index 00000000..07a7af69 --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/GRSqueakPlatform.class/methodProperties.json @@ -0,0 +1,18 @@ +{ + "class" : { + "initialize" : " 7/3/2020 16:21:45" }, + "instance" : { + "defaultDirectoryPathString" : " 7/3/2020 16:21:45", + "deleteFile:inFolder:" : " 7/3/2020 16:21:45", + "directoriesIn:" : " 7/3/2020 16:21:45", + "doSilently:" : " 7/3/2020 16:21:45", + "ensureExistenceOfFolder:" : " 7/3/2020 16:21:45", + "fileExists:" : " 7/3/2020 16:21:45", + "fileNameFor:" : " 7/3/2020 16:21:45", + "filesIn:" : " 7/3/2020 16:21:45", + "isDirectory:" : " 7/3/2020 16:21:45", + "localNameOf:" : " 7/3/2020 16:21:45", + "pathSeparator" : " 7/3/2020 16:21:45", + "readFileStreamOn:do:binary:" : "JB 7/3/2020 16:24", + "write:toFile:inFolder:" : "JB 7/3/2020 16:32", + "writeFileStreamOn:do:binary:" : "JB 7/3/2020 16:30" } } diff --git a/repository/Grease-Squeak5-Core.package/GRWorkingWriteStream.class/methodProperties.json b/repository/Grease-Squeak5-Core.package/GRWorkingWriteStream.class/methodProperties.json new file mode 100644 index 00000000..ae5d8e77 --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/GRWorkingWriteStream.class/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "reset" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/Interval.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/Interval.extension/methodProperties.json new file mode 100644 index 00000000..b8d3051f --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/Interval.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "any" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/MessageSend.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/MessageSend.extension/methodProperties.json new file mode 100644 index 00000000..7e1f53b8 --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/MessageSend.extension/methodProperties.json @@ -0,0 +1,6 @@ +{ + "class" : { + }, + "instance" : { + "argumentCount" : " 7/3/2020 16:21:45", + "valueWithPossibleArguments:" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/Number.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/Number.extension/methodProperties.json new file mode 100644 index 00000000..d117fdf9 --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/Number.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "milliseconds" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/Object.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/Object.extension/methodProperties.json new file mode 100644 index 00000000..43db849f --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/Object.extension/methodProperties.json @@ -0,0 +1,6 @@ +{ + "class" : { + }, + "instance" : { + "greaseString" : " 7/3/2020 16:21:45", + "sizeInMemory" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/Point.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/Point.extension/methodProperties.json new file mode 100644 index 00000000..66c63d1a --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/Point.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "greaseString" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/PositionableStream.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/PositionableStream.extension/methodProperties.json new file mode 100644 index 00000000..d5232098 --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/PositionableStream.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "greaseUpToAll:" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/ScaledDecimal.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/ScaledDecimal.extension/methodProperties.json new file mode 100644 index 00000000..0c571458 --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/ScaledDecimal.extension/methodProperties.json @@ -0,0 +1,6 @@ +{ + "class" : { + }, + "instance" : { + "encodeOn:" : " 7/3/2020 16:21:45", + "greaseString" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/SequenceableCollection.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/SequenceableCollection.extension/methodProperties.json new file mode 100644 index 00000000..57c9e038 --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/SequenceableCollection.extension/methodProperties.json @@ -0,0 +1,7 @@ +{ + "class" : { + }, + "instance" : { + "beginsWithSubCollection:" : " 7/3/2020 16:21:45", + "endsWithSubCollection:" : " 7/3/2020 16:21:45", + "sorted" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/SmallInteger.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/SmallInteger.extension/methodProperties.json new file mode 100644 index 00000000..dcb296a7 --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/SmallInteger.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "sizeInMemory" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/SocketStream.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/SocketStream.extension/methodProperties.json new file mode 100644 index 00000000..3f83ee19 --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/SocketStream.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "greaseNext:putAll:startingAt:" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/String.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/String.extension/methodProperties.json new file mode 100644 index 00000000..009c3db8 --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/String.extension/methodProperties.json @@ -0,0 +1,12 @@ +{ + "class" : { + }, + "instance" : { + "substrings:" : " 7/3/2020 16:21:45", + "trimBoth" : " 7/3/2020 16:21:45", + "trimBoth:" : " 7/3/2020 16:21:45", + "trimLeft" : " 7/3/2020 16:21:45", + "trimLeft:" : " 7/3/2020 16:21:45", + "trimLeft:right:" : " 7/3/2020 16:21:45", + "trimRight" : " 7/3/2020 16:21:45", + "trimRight:" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/Symbol.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/Symbol.extension/methodProperties.json new file mode 100644 index 00000000..45e73289 --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/Symbol.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "greaseAsMutator" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/WriteStream.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/WriteStream.extension/methodProperties.json new file mode 100644 index 00000000..3f83ee19 --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/WriteStream.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "greaseNext:putAll:startingAt:" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/monticello.meta/version b/repository/Grease-Squeak5-Core.package/monticello.meta/version new file mode 100644 index 00000000..6e346ee9 --- /dev/null +++ b/repository/Grease-Squeak5-Core.package/monticello.meta/version @@ -0,0 +1 @@ +(name 'Grease-Squeak5-Core-JB.2' message 'File stream methods in Squeak' id 'f1b1e052-0642-4690-b86d-4ebbb85634ce' date '3 July 2020' time '4:36:08.86448 pm' author 'JB' ancestors ((name 'Grease-Squeak5-Core-cypress.1' message 'fabricated from a Cypress format repository' id '76ce6269-9a42-4ce4-a2ce-d5cb307d09fa' date '3 July 2020' time '4:21:45.777619 pm' author '' ancestors () stepChildren ())) stepChildren ()) \ No newline at end of file diff --git a/repository/Grease-Tests-Squeak5-Core.package/GRPackage.extension/methodProperties.json b/repository/Grease-Tests-Squeak5-Core.package/GRPackage.extension/methodProperties.json new file mode 100644 index 00000000..75202285 --- /dev/null +++ b/repository/Grease-Tests-Squeak5-Core.package/GRPackage.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + "greaseTestsSqueak5Core" : " 6/3/2020 21:51:17" }, + "instance" : { + } } diff --git a/repository/Grease-Tests-Squeak5-Core.package/GRPharoCodecTest.class/methodProperties.json b/repository/Grease-Tests-Squeak5-Core.package/GRPharoCodecTest.class/methodProperties.json new file mode 100644 index 00000000..05ddf428 --- /dev/null +++ b/repository/Grease-Tests-Squeak5-Core.package/GRPharoCodecTest.class/methodProperties.json @@ -0,0 +1,10 @@ +{ + "class" : { + }, + "instance" : { + "assert:next:startingAt:gives:" : " 6/3/2020 21:51:17", + "assertEncodingIgnoresLanguageTat:" : " 6/3/2020 21:51:17", + "stripLeadingCharFrom:" : " 6/3/2020 21:51:17", + "testAllCodesIncludesIso88591" : " 6/3/2020 21:51:17", + "testGreaseNextPutAllStartingAt" : " 6/3/2020 21:51:17", + "testLanguageTag" : " 6/3/2020 21:51:17" } } diff --git a/repository/Grease-Tests-Squeak5-Core.package/GRPharoColorTest.class/methodProperties.json b/repository/Grease-Tests-Squeak5-Core.package/GRPharoColorTest.class/methodProperties.json new file mode 100644 index 00000000..912dea1c --- /dev/null +++ b/repository/Grease-Tests-Squeak5-Core.package/GRPharoColorTest.class/methodProperties.json @@ -0,0 +1,11 @@ +{ + "class" : { + }, + "instance" : { + "expectedFailures" : " 6/3/2020 21:51:17", + "testAllColors" : " 6/3/2020 21:51:17", + "testColorAsHtmlColor" : " 6/3/2020 21:51:17", + "testFromSixDigit" : " 6/3/2020 21:51:17", + "testFromStringName" : " 6/3/2020 21:51:17", + "testFromStringSixDigit" : " 6/3/2020 21:51:17", + "testFromStringThreeDigit" : " 6/3/2020 21:51:17" } } diff --git a/repository/Grease-Tests-Squeak5-Core.package/GRPharoGenericCodecTest.class/methodProperties.json b/repository/Grease-Tests-Squeak5-Core.package/GRPharoGenericCodecTest.class/methodProperties.json new file mode 100644 index 00000000..d0aad9c4 --- /dev/null +++ b/repository/Grease-Tests-Squeak5-Core.package/GRPharoGenericCodecTest.class/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "testNoAmbiguities" : " 6/3/2020 21:51:17" } } diff --git a/repository/Grease-Tests-Squeak5-Core.package/GRPharoPlatformTest.class/methodProperties.json b/repository/Grease-Tests-Squeak5-Core.package/GRPharoPlatformTest.class/methodProperties.json new file mode 100644 index 00000000..b469e39c --- /dev/null +++ b/repository/Grease-Tests-Squeak5-Core.package/GRPharoPlatformTest.class/methodProperties.json @@ -0,0 +1,11 @@ +{ + "class" : { + }, + "instance" : { + "testCompileIntoClassified" : " 6/3/2020 21:51:17", + "testFullName" : " 6/3/2020 21:51:17", + "testGreaseIntegerOnCharacter" : " 6/3/2020 21:51:17", + "testMessageSendValueWithPossibleArguments" : " 6/3/2020 21:51:17", + "testWriteToFileInFolderBinary" : " 6/3/2020 21:51:17", + "testWriteToFileInFolderText" : " 6/3/2020 21:51:17", + "writeToFile:" : " 6/3/2020 21:51:17" } } diff --git a/repository/Grease-Tests-Squeak5-Core.package/GRPlatformTest.extension/instance/writeToFile.withFileNameDo..st b/repository/Grease-Tests-Squeak5-Core.package/GRPlatformTest.extension/instance/writeToFile.withFileNameDo..st new file mode 100644 index 00000000..f048cc47 --- /dev/null +++ b/repository/Grease-Tests-Squeak5-Core.package/GRPlatformTest.extension/instance/writeToFile.withFileNameDo..st @@ -0,0 +1,12 @@ +*grease-tests-squeak5-core +writeToFile: aStringOrByteArray withFileNameDo: aBlock + | fileName directory | + fileName := 'GRSqueakPlatformTest'. + directory := FileDirectory default. + [ GRPlatform current + write: aStringOrByteArray + toFile: fileName + inFolder: directory fullName. + aBlock value: directory fullName,GRPlatform current pathSeparator,fileName + ] ensure: [ + directory deleteFileNamed: fileName ] \ No newline at end of file diff --git a/repository/Grease-Tests-Squeak5-Core.package/GRPlatformTest.extension/methodProperties.json b/repository/Grease-Tests-Squeak5-Core.package/GRPlatformTest.extension/methodProperties.json new file mode 100644 index 00000000..9680a77b --- /dev/null +++ b/repository/Grease-Tests-Squeak5-Core.package/GRPlatformTest.extension/methodProperties.json @@ -0,0 +1,6 @@ +{ + "class" : { + }, + "instance" : { + "testScaledDecimalGreaseString" : " 6/3/2020 21:51:17", + "writeToFile:withFileNameDo:" : "JB 7/3/2020 16:19" } } diff --git a/repository/Grease-Tests-Squeak5-Core.package/GRPrinterTest.extension/methodProperties.json b/repository/Grease-Tests-Squeak5-Core.package/GRPrinterTest.extension/methodProperties.json new file mode 100644 index 00000000..d69bcecd --- /dev/null +++ b/repository/Grease-Tests-Squeak5-Core.package/GRPrinterTest.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "testScaledDecimalPrinter" : " 6/3/2020 21:51:17" } } diff --git a/repository/Grease-Tests-Squeak5-Core.package/GRUtf8CodecTest.extension/methodProperties.json b/repository/Grease-Tests-Squeak5-Core.package/GRUtf8CodecTest.extension/methodProperties.json new file mode 100644 index 00000000..8645a3b3 --- /dev/null +++ b/repository/Grease-Tests-Squeak5-Core.package/GRUtf8CodecTest.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "expectedFailures" : " 6/3/2020 21:51:17" } } diff --git a/repository/Grease-Tests-Squeak5-Core.package/monticello.meta/version b/repository/Grease-Tests-Squeak5-Core.package/monticello.meta/version new file mode 100644 index 00000000..901ff46e --- /dev/null +++ b/repository/Grease-Tests-Squeak5-Core.package/monticello.meta/version @@ -0,0 +1 @@ +(name 'Grease-Tests-Squeak5-Core-JB.2' message 'File stream methods in Squeak' id '42566689-41b1-4c74-ac20-f28f3c33de1d' date '3 July 2020' time '4:35:59.065449 pm' author 'JB' ancestors ((name 'Grease-Tests-Squeak5-Core-cypress.1' message 'fabricated from a Cypress format repository' id '39ef0d34-bb0e-4165-998b-1159c495ddeb' date '3 June 2020' time '9:51:17.567506 pm' author '' ancestors () stepChildren ())) stepChildren ()) \ No newline at end of file From 2289733047a6ed0f6c90faa0f9d634d88ee9a49f Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Fri, 3 Jul 2020 16:39:20 +0200 Subject: [PATCH 12/46] remove all the monticello metadata --- .../Array.extension/methodProperties.json | 5 -- .../Behavior.extension/methodProperties.json | 6 --- .../methodProperties.json | 5 -- .../ByteArray.extension/methodProperties.json | 5 -- .../Character.extension/methodProperties.json | 5 -- .../methodProperties.json | 21 -------- .../methodProperties.json | 7 --- .../Date.extension/methodProperties.json | 5 -- .../methodProperties.json | 5 -- .../methodProperties.json | 5 -- .../Duration.extension/methodProperties.json | 6 --- .../Exception.extension/methodProperties.json | 7 --- .../methodProperties.json | 8 --- .../methodProperties.json | 50 ------------------- .../methodProperties.json | 11 ---- .../methodProperties.json | 12 ----- .../GRPackage.extension/methodProperties.json | 5 -- .../methodProperties.json | 14 ------ .../methodProperties.json | 13 ----- .../GsContext.class/methodProperties.json | 15 ------ .../Interval.extension/methodProperties.json | 5 -- .../methodProperties.json | 10 ---- .../Number.extension/methodProperties.json | 5 -- .../Object.extension/methodProperties.json | 7 --- .../methodProperties.json | 5 -- .../methodProperties.json | 5 -- .../methodProperties.json | 6 --- .../String.extension/methodProperties.json | 5 -- .../Symbol.extension/methodProperties.json | 5 -- .../methodProperties.json | 7 --- .../methodProperties.json | 7 --- .../methodProperties.json | 7 --- .../methodProperties.json | 6 --- .../methodProperties.json | 5 -- .../methodProperties.json | 6 --- .../monticello.meta/version | 1 - .../Behavior.extension/methodProperties.json | 5 -- .../methodProperties.json | 5 -- .../methodProperties.json | 6 --- .../ByteArray.extension/methodProperties.json | 5 -- .../Character.extension/methodProperties.json | 5 -- .../methodProperties.json | 5 -- .../Duration.extension/methodProperties.json | 6 --- .../methodProperties.json | 5 -- .../methodProperties.json | 7 --- .../GRPackage.extension/methodProperties.json | 5 -- .../methodProperties.json | 10 ---- .../methodProperties.json | 13 ----- .../methodProperties.json | 12 ----- .../methodProperties.json | 6 --- .../methodProperties.json | 41 --------------- .../methodProperties.json | 10 ---- .../methodProperties.json | 12 ----- .../methodProperties.json | 14 ------ .../methodProperties.json | 7 --- .../methodProperties.json | 18 ------- .../methodProperties.json | 5 -- .../Interval.extension/methodProperties.json | 5 -- .../methodProperties.json | 6 --- .../Number.extension/methodProperties.json | 5 -- .../Object.extension/methodProperties.json | 6 --- .../Point.extension/methodProperties.json | 5 -- .../methodProperties.json | 5 -- .../methodProperties.json | 6 --- .../methodProperties.json | 7 --- .../methodProperties.json | 5 -- .../methodProperties.json | 5 -- .../String.extension/methodProperties.json | 12 ----- .../Symbol.extension/methodProperties.json | 5 -- .../methodProperties.json | 5 -- .../monticello.meta/version | 1 - .../GRPackage.extension/methodProperties.json | 5 -- .../methodProperties.json | 10 ---- .../methodProperties.json | 11 ---- .../methodProperties.json | 5 -- .../methodProperties.json | 11 ---- .../methodProperties.json | 6 --- .../methodProperties.json | 5 -- .../methodProperties.json | 5 -- .../monticello.meta/version | 1 - 80 files changed, 641 deletions(-) delete mode 100644 repository/Grease-GemStone-Core.package/Array.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Behavior.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/BinaryFloat.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/ByteArray.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Character.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/CharacterCollection.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Collection.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Date.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Dictionary.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/DoubleByteString.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Duration.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Exception.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/GRDynamicVariable.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/GRGemStoneRandomProvider.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/GRLatin1GemStoneCodec.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/GRPackage.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/GRTextOrBinaryCodecStream.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/GsContext.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Interval.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/MessageSend.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Number.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Object.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/PackageInfo.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/PositionableStream.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/SequenceableCollection.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/String.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Symbol.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/SystemAbortTransaction.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/SystemBeginTransaction.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/SystemCommitTransaction.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/SystemTransactionNotification.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/UnorderedCollection.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/WriteStream.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/monticello.meta/version delete mode 100644 repository/Grease-Squeak5-Core.package/Behavior.extension/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/BlockClosure.extension/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/BlockContext.extension/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/ByteArray.extension/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/Character.extension/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/Collection.extension/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/Duration.extension/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/GRDelegatingStream.extension/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/GRDynamicVariable.class/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/GRPackage.extension/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/GRPharoConverterCodecStream.class/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/GRPharoGenericCodec.class/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/GRPharoLatin1Codec.class/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/GRPharoLatin1CodecStream.class/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/GRPharoPlatform.class/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/GRPharoRandomProvider.class/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/GRPharoUtf8Codec.class/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/GRPharoUtf8CodecStream.class/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/GRSmallDictionary.extension/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/GRSqueakPlatform.class/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/GRWorkingWriteStream.class/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/Interval.extension/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/MessageSend.extension/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/Number.extension/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/Object.extension/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/Point.extension/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/PositionableStream.extension/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/ScaledDecimal.extension/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/SequenceableCollection.extension/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/SmallInteger.extension/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/SocketStream.extension/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/String.extension/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/Symbol.extension/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/WriteStream.extension/methodProperties.json delete mode 100644 repository/Grease-Squeak5-Core.package/monticello.meta/version delete mode 100644 repository/Grease-Tests-Squeak5-Core.package/GRPackage.extension/methodProperties.json delete mode 100644 repository/Grease-Tests-Squeak5-Core.package/GRPharoCodecTest.class/methodProperties.json delete mode 100644 repository/Grease-Tests-Squeak5-Core.package/GRPharoColorTest.class/methodProperties.json delete mode 100644 repository/Grease-Tests-Squeak5-Core.package/GRPharoGenericCodecTest.class/methodProperties.json delete mode 100644 repository/Grease-Tests-Squeak5-Core.package/GRPharoPlatformTest.class/methodProperties.json delete mode 100644 repository/Grease-Tests-Squeak5-Core.package/GRPlatformTest.extension/methodProperties.json delete mode 100644 repository/Grease-Tests-Squeak5-Core.package/GRPrinterTest.extension/methodProperties.json delete mode 100644 repository/Grease-Tests-Squeak5-Core.package/GRUtf8CodecTest.extension/methodProperties.json delete mode 100644 repository/Grease-Tests-Squeak5-Core.package/monticello.meta/version diff --git a/repository/Grease-GemStone-Core.package/Array.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Array.extension/methodProperties.json deleted file mode 100644 index a0a65c20..00000000 --- a/repository/Grease-GemStone-Core.package/Array.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "beMutable" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/Behavior.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Behavior.extension/methodProperties.json deleted file mode 100644 index 1592140f..00000000 --- a/repository/Grease-GemStone-Core.package/Behavior.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "fullName" : " 06/08/2020 12:26:37", - "removeSelectorSilently:" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/BinaryFloat.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/BinaryFloat.extension/methodProperties.json deleted file mode 100644 index f329e1e9..00000000 --- a/repository/Grease-GemStone-Core.package/BinaryFloat.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/ByteArray.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/ByteArray.extension/methodProperties.json deleted file mode 100644 index f329e1e9..00000000 --- a/repository/Grease-GemStone-Core.package/ByteArray.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/Character.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Character.extension/methodProperties.json deleted file mode 100644 index c1ffb9c9..00000000 --- a/repository/Grease-GemStone-Core.package/Character.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseInteger" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/CharacterCollection.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/CharacterCollection.extension/methodProperties.json deleted file mode 100644 index ffe120e7..00000000 --- a/repository/Grease-GemStone-Core.package/CharacterCollection.extension/methodProperties.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "excerpt:" : " 06/08/2020 12:26:37", - "excerpt:radius:" : " 06/08/2020 12:26:37", - "excerpt:radius:ellipsis:" : " 06/08/2020 12:26:37", - "greaseInteger" : " 06/08/2020 12:26:37", - "pluralize" : " 06/08/2020 12:26:37", - "print:on:" : " 06/08/2020 12:26:37", - "substrings:" : " 07/03/2020 03:01:56", - "trimBoth" : " 06/08/2020 12:26:37", - "trimBoth:" : " 06/08/2020 12:26:37", - "trimLeft" : " 06/08/2020 12:26:37", - "trimLeft:" : " 06/08/2020 12:26:37", - "trimLeft:right:" : " 06/08/2020 12:26:37", - "trimRight" : " 06/08/2020 12:26:37", - "trimRight:" : " 06/08/2020 12:26:37", - "truncate" : " 06/08/2020 12:26:37", - "truncate:" : " 06/08/2020 12:26:37", - "truncate:ellipsis:" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/Collection.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Collection.extension/methodProperties.json deleted file mode 100644 index c3330e3f..00000000 --- a/repository/Grease-GemStone-Core.package/Collection.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "any" : " 06/08/2020 12:26:37", - "sorted" : " 06/08/2020 12:26:37", - "sorted:" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/Date.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Date.extension/methodProperties.json deleted file mode 100644 index 6220dbe6..00000000 --- a/repository/Grease-GemStone-Core.package/Date.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "daysInMonthNumber:forYear:" : " 06/08/2020 12:26:37" }, - "instance" : { - } } diff --git a/repository/Grease-GemStone-Core.package/Dictionary.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Dictionary.extension/methodProperties.json deleted file mode 100644 index f1de10f6..00000000 --- a/repository/Grease-GemStone-Core.package/Dictionary.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "copyFrom:" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/DoubleByteString.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/DoubleByteString.extension/methodProperties.json deleted file mode 100644 index f329e1e9..00000000 --- a/repository/Grease-GemStone-Core.package/DoubleByteString.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/Duration.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Duration.extension/methodProperties.json deleted file mode 100644 index a6e4950c..00000000 --- a/repository/Grease-GemStone-Core.package/Duration.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - "milliseconds:" : " 06/08/2020 12:26:37" }, - "instance" : { - "asMilliseconds" : " 06/08/2020 12:26:37", - "milliseconds" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/Exception.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Exception.extension/methodProperties.json deleted file mode 100644 index 05d1a072..00000000 --- a/repository/Grease-GemStone-Core.package/Exception.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - "raiseSignal" : " 06/08/2020 12:26:37", - "raiseSignal:" : " 06/08/2020 12:26:37" }, - "instance" : { - "raiseSignal" : " 06/08/2020 12:26:37", - "raiseSignal:" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/GRDynamicVariable.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRDynamicVariable.class/methodProperties.json deleted file mode 100644 index 13f6d81d..00000000 --- a/repository/Grease-GemStone-Core.package/GRDynamicVariable.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - "default" : " 06/08/2020 12:26:37", - "defaultValue" : " 06/08/2020 12:26:37", - "use:during:" : " 06/08/2020 12:26:37", - "value" : " 06/08/2020 12:26:37" }, - "instance" : { - } } diff --git a/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/methodProperties.json deleted file mode 100644 index eec0a32d..00000000 --- a/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/methodProperties.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "class" : { - "initialize" : " 06/08/2020 12:26:37", - "unload" : " 06/08/2020 12:26:37" }, - "instance" : { - "addToShutDownList:" : " 06/08/2020 12:26:37", - "addToStartUpList:" : " 06/08/2020 12:26:37", - "asMethodReturningByteArray:named:" : " 06/08/2020 12:26:37", - "asMethodReturningString:named:" : " 06/08/2020 12:26:37", - "base64Decode:" : " 06/08/2020 12:26:37", - "compile:into:classified:" : " 06/08/2020 12:26:37", - "contentsOfFile:binary:" : " 06/08/2020 12:26:37", - "defaultDispatcherName" : " 06/08/2020 12:26:37", - "deprecationExceptionSet" : " 06/08/2020 12:26:37", - "directoriesIn:" : " 06/08/2020 12:26:37", - "doAbortTransaction" : " 06/08/2020 12:26:37", - "doBeginTransaction" : " 06/08/2020 12:26:37", - "doCommitTransaction" : " 06/08/2020 12:26:37", - "doTransaction:" : " 06/08/2020 12:26:37", - "ensureExistenceOfFolder:" : " 06/08/2020 12:26:37", - "fileExists:" : " 06/08/2020 12:26:37", - "filesIn:" : " 06/08/2020 12:26:37", - "isProcessTerminated:" : " 06/08/2020 12:26:37", - "label" : " 06/08/2020 12:26:37", - "localNameOf:" : " 06/08/2020 12:26:37", - "logError:title:" : " 06/08/2020 12:26:37", - "logError:title:shouldCommit:" : " 06/08/2020 12:26:37", - "newRandom" : " 06/08/2020 12:26:37", - "newline" : " 06/08/2020 12:26:37", - "openDebuggerOn:" : " 06/08/2020 12:26:37", - "pathSeparator" : " 06/08/2020 12:26:37", - "readFileStreamOn:do:binary:" : "JohanBrichau 07/03/2020 04:07", - "readWriteByteStream" : " 06/08/2020 12:26:37", - "readWriteCharacterStream" : " 06/08/2020 12:26:37", - "reducedConflictDictionary" : " 06/08/2020 12:26:37", - "removeFromShutDownList:" : " 06/08/2020 12:26:37", - "removeFromStartUpList:" : " 06/08/2020 12:26:37", - "removeSelector:from:" : " 06/08/2020 12:26:37", - "saveLogEntry:shouldCommit:" : " 06/08/2020 12:26:37", - "secureHashFor:" : " 06/08/2020 12:26:37", - "semaphoreClass" : " 06/08/2020 12:26:37", - "smtpServer" : " 06/08/2020 12:26:37", - "stackDepth" : " 06/08/2020 12:26:37", - "terminateProcess:" : " 06/08/2020 12:26:37", - "thisContext" : " 06/08/2020 12:26:37", - "transactionMutex" : " 06/08/2020 12:26:37", - "weakDictionaryOfSize:" : " 06/08/2020 12:26:37", - "write:toFile:inFolder:" : "JohanBrichau 07/03/2020 04:55", - "writeCharacterStreamOn:" : " 06/08/2020 12:26:37", - "writeFileStreamOn:do:binary:" : "JohanBrichau 07/03/2020 04:57" } } diff --git a/repository/Grease-GemStone-Core.package/GRGemStoneRandomProvider.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRGemStoneRandomProvider.class/methodProperties.json deleted file mode 100644 index 8e2f4b76..00000000 --- a/repository/Grease-GemStone-Core.package/GRGemStoneRandomProvider.class/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "class" : { - "generator" : " 06/08/2020 12:26:37", - "initialize" : " 06/08/2020 12:26:37", - "mutex" : " 06/08/2020 12:26:37", - "nextInt:" : " 06/08/2020 12:26:37", - "randomClass" : " 06/08/2020 12:26:37", - "randomFrom:" : " 06/08/2020 12:26:37", - "sessionStart" : " 06/08/2020 12:26:37" }, - "instance" : { - } } diff --git a/repository/Grease-GemStone-Core.package/GRLatin1GemStoneCodec.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRLatin1GemStoneCodec.class/methodProperties.json deleted file mode 100644 index 159d03fe..00000000 --- a/repository/Grease-GemStone-Core.package/GRLatin1GemStoneCodec.class/methodProperties.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "class" : { - "basicForEncoding:" : " 06/08/2020 12:26:37", - "supportsEncoding:" : " 06/08/2020 12:26:37" }, - "instance" : { - "decode:" : " 06/08/2020 12:26:37", - "encode:" : " 06/08/2020 12:26:37", - "encodeUrl:" : " 06/08/2020 12:26:37", - "encoderFor:" : " 06/08/2020 12:26:37", - "name" : " 06/08/2020 12:26:37", - "name:" : " 06/08/2020 12:26:37", - "url" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/GRPackage.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/GRPackage.extension/methodProperties.json deleted file mode 100644 index 09b637e1..00000000 --- a/repository/Grease-GemStone-Core.package/GRPackage.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "greaseGemStoneCore" : " 06/08/2020 12:26:37" }, - "instance" : { - "gemstoneUrl" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/GRTextOrBinaryCodecStream.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRTextOrBinaryCodecStream.class/methodProperties.json deleted file mode 100644 index 55ebd0b5..00000000 --- a/repository/Grease-GemStone-Core.package/GRTextOrBinaryCodecStream.class/methodProperties.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "binary" : " 06/08/2020 12:26:37", - "contents" : " 06/08/2020 12:26:37", - "flush" : " 06/08/2020 12:26:37", - "initializeOn:" : " 06/08/2020 12:26:37", - "next" : " 06/08/2020 12:26:37", - "next:" : " 06/08/2020 12:26:37", - "nextPut:" : " 06/08/2020 12:26:37", - "nextPutAll:" : " 06/08/2020 12:26:37", - "size" : " 06/08/2020 12:26:37", - "text" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/methodProperties.json deleted file mode 100644 index 6ac0d6a5..00000000 --- a/repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/methodProperties.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "class" : { - "basicForEncoding:" : " 06/08/2020 12:26:37", - "supportsEncoding:" : " 06/08/2020 12:26:37" }, - "instance" : { - "decode:" : " 06/08/2020 12:26:37", - "decoderFor:" : " 06/08/2020 12:26:37", - "encode:" : " 06/08/2020 12:26:37", - "encodeUrl:" : " 06/08/2020 12:26:37", - "encoderFor:" : " 06/08/2020 12:26:37", - "initialize" : " 06/08/2020 12:26:37", - "name" : " 06/08/2020 12:26:37", - "url" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/GsContext.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GsContext.class/methodProperties.json deleted file mode 100644 index cb87f664..00000000 --- a/repository/Grease-GemStone-Core.package/GsContext.class/methodProperties.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "class" : { - "fromContinuation:atLevel:" : " 07/03/2020 03:01:56", - "fromLevel:" : " 07/03/2020 03:01:56" }, - "instance" : { - "=" : " 07/03/2020 03:01:56", - "asString" : " 07/03/2020 03:01:56", - "continuation:level:" : " 07/03/2020 03:01:56", - "fullPrintString" : " 07/03/2020 03:01:56", - "greaseString" : " 07/03/2020 03:01:56", - "method" : " 07/03/2020 03:01:56", - "receiver" : " 07/03/2020 03:01:56", - "sender" : " 07/03/2020 03:01:56", - "tempAt:" : " 07/03/2020 03:01:56", - "tempNames" : " 07/03/2020 03:01:56" } } diff --git a/repository/Grease-GemStone-Core.package/Interval.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Interval.extension/methodProperties.json deleted file mode 100644 index b8789236..00000000 --- a/repository/Grease-GemStone-Core.package/Interval.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "any" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/MessageSend.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/MessageSend.extension/methodProperties.json deleted file mode 100644 index 44371590..00000000 --- a/repository/Grease-GemStone-Core.package/MessageSend.extension/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "argumentCount" : " 06/08/2020 12:26:37", - "evaluateWithArguments:" : " 06/08/2020 12:26:37", - "value:" : " 06/08/2020 12:26:37", - "value:value:" : " 06/08/2020 12:26:37", - "valueWithPossibleArgument:" : " 06/08/2020 12:26:37", - "valueWithPossibleArguments:" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/Number.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Number.extension/methodProperties.json deleted file mode 100644 index 382e962c..00000000 --- a/repository/Grease-GemStone-Core.package/Number.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "milliseconds" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/Object.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Object.extension/methodProperties.json deleted file mode 100644 index 47ab231e..00000000 --- a/repository/Grease-GemStone-Core.package/Object.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "displayString" : " 06/08/2020 12:26:37", - "greaseString" : " 06/08/2020 12:26:37", - "isMessageSend" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/PackageInfo.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/PackageInfo.extension/methodProperties.json deleted file mode 100644 index a03867fc..00000000 --- a/repository/Grease-GemStone-Core.package/PackageInfo.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "versionString" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/PositionableStream.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/PositionableStream.extension/methodProperties.json deleted file mode 100644 index 8e44e66f..00000000 --- a/repository/Grease-GemStone-Core.package/PositionableStream.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseUpToAll:" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/SequenceableCollection.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/SequenceableCollection.extension/methodProperties.json deleted file mode 100644 index 3b4e7999..00000000 --- a/repository/Grease-GemStone-Core.package/SequenceableCollection.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "beginsWithSubCollection:" : " 06/08/2020 12:26:37", - "endsWithSubCollection:" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/String.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/String.extension/methodProperties.json deleted file mode 100644 index 12c5ef7b..00000000 --- a/repository/Grease-GemStone-Core.package/String.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "fromString:" : " 06/08/2020 12:26:37" }, - "instance" : { - } } diff --git a/repository/Grease-GemStone-Core.package/Symbol.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Symbol.extension/methodProperties.json deleted file mode 100644 index 88ac0c5c..00000000 --- a/repository/Grease-GemStone-Core.package/Symbol.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseAsMutator" : " 07/03/2020 03:12:14" } } diff --git a/repository/Grease-GemStone-Core.package/SystemAbortTransaction.class/methodProperties.json b/repository/Grease-GemStone-Core.package/SystemAbortTransaction.class/methodProperties.json deleted file mode 100644 index 8dbb3df0..00000000 --- a/repository/Grease-GemStone-Core.package/SystemAbortTransaction.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "alternatives" : " 06/08/2020 12:26:37", - "defaultAction" : " 06/08/2020 12:26:37", - "transaction" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/SystemBeginTransaction.class/methodProperties.json b/repository/Grease-GemStone-Core.package/SystemBeginTransaction.class/methodProperties.json deleted file mode 100644 index 8dbb3df0..00000000 --- a/repository/Grease-GemStone-Core.package/SystemBeginTransaction.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "alternatives" : " 06/08/2020 12:26:37", - "defaultAction" : " 06/08/2020 12:26:37", - "transaction" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/SystemCommitTransaction.class/methodProperties.json b/repository/Grease-GemStone-Core.package/SystemCommitTransaction.class/methodProperties.json deleted file mode 100644 index 8dbb3df0..00000000 --- a/repository/Grease-GemStone-Core.package/SystemCommitTransaction.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "alternatives" : " 06/08/2020 12:26:37", - "defaultAction" : " 06/08/2020 12:26:37", - "transaction" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/SystemTransactionNotification.class/methodProperties.json b/repository/Grease-GemStone-Core.package/SystemTransactionNotification.class/methodProperties.json deleted file mode 100644 index c8a0a9ce..00000000 --- a/repository/Grease-GemStone-Core.package/SystemTransactionNotification.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "alternatives" : " 06/08/2020 12:26:37", - "transaction" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/UnorderedCollection.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/UnorderedCollection.extension/methodProperties.json deleted file mode 100644 index f1de10f6..00000000 --- a/repository/Grease-GemStone-Core.package/UnorderedCollection.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "copyFrom:" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/WriteStream.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/WriteStream.extension/methodProperties.json deleted file mode 100644 index 81bfc34b..00000000 --- a/repository/Grease-GemStone-Core.package/WriteStream.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "crlf" : " 06/08/2020 12:26:37", - "greaseNext:putAll:startingAt:" : " 06/08/2020 12:26:37" } } diff --git a/repository/Grease-GemStone-Core.package/monticello.meta/version b/repository/Grease-GemStone-Core.package/monticello.meta/version deleted file mode 100644 index 9dfcb729..00000000 --- a/repository/Grease-GemStone-Core.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-GemStone-Core-JohanBrichau.2' message 'read and write stream methods for GemStone' id 'b4ba4bca-2279-4d1e-856c-e82ca7c99939' date '07/03/2020' time '04:59:39' author 'JohanBrichau' ancestors ((name 'Grease-GemStone-Core-cypress.1' message 'fabricated from a Cypress format repository' id '040b6540-aac6-4dc1-81b5-79241e4ee99d' date '07/03/2020' time '03:27:10' author '' ancestors () stepChildren ())) stepChildren ()) \ No newline at end of file diff --git a/repository/Grease-Squeak5-Core.package/Behavior.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/Behavior.extension/methodProperties.json deleted file mode 100644 index 2747617d..00000000 --- a/repository/Grease-Squeak5-Core.package/Behavior.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "fullName" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/BlockClosure.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/BlockClosure.extension/methodProperties.json deleted file mode 100644 index c5247d92..00000000 --- a/repository/Grease-Squeak5-Core.package/BlockClosure.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "valueWithPossibleArguments:" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/BlockContext.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/BlockContext.extension/methodProperties.json deleted file mode 100644 index d487c66d..00000000 --- a/repository/Grease-Squeak5-Core.package/BlockContext.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "tempVarRefs" : " 7/3/2020 16:21:45", - "valueWithPossibleArguments:" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/ByteArray.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/ByteArray.extension/methodProperties.json deleted file mode 100644 index 66c63d1a..00000000 --- a/repository/Grease-Squeak5-Core.package/ByteArray.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/Character.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/Character.extension/methodProperties.json deleted file mode 100644 index b5700e84..00000000 --- a/repository/Grease-Squeak5-Core.package/Character.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseInteger" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/Collection.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/Collection.extension/methodProperties.json deleted file mode 100644 index b8d3051f..00000000 --- a/repository/Grease-Squeak5-Core.package/Collection.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "any" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/Duration.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/Duration.extension/methodProperties.json deleted file mode 100644 index 454b06a9..00000000 --- a/repository/Grease-Squeak5-Core.package/Duration.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - "milliseconds:" : " 7/3/2020 16:21:45" }, - "instance" : { - "asMilliseconds" : " 7/3/2020 16:21:45", - "milliseconds" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/GRDelegatingStream.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/GRDelegatingStream.extension/methodProperties.json deleted file mode 100644 index 3f83ee19..00000000 --- a/repository/Grease-Squeak5-Core.package/GRDelegatingStream.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseNext:putAll:startingAt:" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/GRDynamicVariable.class/methodProperties.json b/repository/Grease-Squeak5-Core.package/GRDynamicVariable.class/methodProperties.json deleted file mode 100644 index bb25f832..00000000 --- a/repository/Grease-Squeak5-Core.package/GRDynamicVariable.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - "default" : " 7/3/2020 16:21:45", - "defaultValue" : " 7/3/2020 16:21:45", - "use:during:" : " 7/3/2020 16:21:45" }, - "instance" : { - } } diff --git a/repository/Grease-Squeak5-Core.package/GRPackage.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/GRPackage.extension/methodProperties.json deleted file mode 100644 index c168d644..00000000 --- a/repository/Grease-Squeak5-Core.package/GRPackage.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "greaseSqueak5Core" : " 7/3/2020 16:21:45" }, - "instance" : { - } } diff --git a/repository/Grease-Squeak5-Core.package/GRPharoConverterCodecStream.class/methodProperties.json b/repository/Grease-Squeak5-Core.package/GRPharoConverterCodecStream.class/methodProperties.json deleted file mode 100644 index 23a5add2..00000000 --- a/repository/Grease-Squeak5-Core.package/GRPharoConverterCodecStream.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "class" : { - "on:converter:" : " 7/3/2020 16:21:45" }, - "instance" : { - "greaseNext:putAll:startingAt:" : " 7/3/2020 16:21:45", - "initializeOn:converter:" : " 7/3/2020 16:21:45", - "next" : " 7/3/2020 16:21:45", - "next:" : " 7/3/2020 16:21:45", - "nextPut:" : " 7/3/2020 16:21:45", - "nextPutAll:" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/GRPharoGenericCodec.class/methodProperties.json b/repository/Grease-Squeak5-Core.package/GRPharoGenericCodec.class/methodProperties.json deleted file mode 100644 index c790b8e8..00000000 --- a/repository/Grease-Squeak5-Core.package/GRPharoGenericCodec.class/methodProperties.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "class" : { - "basicForEncoding:" : " 7/3/2020 16:21:45", - "codecs" : " 7/3/2020 16:21:45", - "supportedEncodingNames" : " 7/3/2020 16:21:45", - "supportsEncoding:" : " 7/3/2020 16:21:45" }, - "instance" : { - "converter" : " 7/3/2020 16:21:45", - "decoderFor:" : " 7/3/2020 16:21:45", - "encoderFor:" : " 7/3/2020 16:21:45", - "initializeWithName:" : " 7/3/2020 16:21:45", - "name" : " 7/3/2020 16:21:45", - "url" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/GRPharoLatin1Codec.class/methodProperties.json b/repository/Grease-Squeak5-Core.package/GRPharoLatin1Codec.class/methodProperties.json deleted file mode 100644 index c6d739f3..00000000 --- a/repository/Grease-Squeak5-Core.package/GRPharoLatin1Codec.class/methodProperties.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "class" : { - "basicForEncoding:" : " 7/3/2020 16:21:45", - "codecs" : " 7/3/2020 16:21:45", - "supportedEncodingNames" : " 7/3/2020 16:21:45", - "supportsEncoding:" : " 7/3/2020 16:21:45" }, - "instance" : { - "decode:" : " 7/3/2020 16:21:45", - "decoderFor:" : " 7/3/2020 16:21:45", - "encoderFor:" : " 7/3/2020 16:21:45", - "initializeWithName:" : " 7/3/2020 16:21:45", - "name" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/GRPharoLatin1CodecStream.class/methodProperties.json b/repository/Grease-Squeak5-Core.package/GRPharoLatin1CodecStream.class/methodProperties.json deleted file mode 100644 index 7db39557..00000000 --- a/repository/Grease-Squeak5-Core.package/GRPharoLatin1CodecStream.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "next" : " 7/3/2020 16:21:45", - "next:" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/GRPharoPlatform.class/methodProperties.json b/repository/Grease-Squeak5-Core.package/GRPharoPlatform.class/methodProperties.json deleted file mode 100644 index d0144b17..00000000 --- a/repository/Grease-Squeak5-Core.package/GRPharoPlatform.class/methodProperties.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "class" : { - "initialize" : "JB 7/3/2020 16:34", - "initializeUrlTable" : " 7/3/2020 16:21:45", - "initializeXmlTable" : " 7/3/2020 16:21:45" }, - "instance" : { - "addToShutDownList:" : " 7/3/2020 16:21:45", - "addToStartUpList:" : " 7/3/2020 16:21:45", - "asMethodReturningByteArray:named:" : " 7/3/2020 16:21:45", - "asMethodReturningByteArrayLiteral:named:" : " 7/3/2020 16:21:45", - "asMethodReturningByteArrayWithCache:named:" : " 7/3/2020 16:21:45", - "base64Decode:" : " 7/3/2020 16:21:45", - "bindingOf:" : " 7/3/2020 16:21:45", - "compile:into:classified:" : " 7/3/2020 16:21:45", - "contentsOfFile:binary:" : " 7/3/2020 16:21:45", - "deprecationExceptionSet" : " 7/3/2020 16:21:45", - "directoriesIn:" : " 7/3/2020 16:21:45", - "doSilently:" : " 7/3/2020 16:21:45", - "ensureExistenceOfFolder:" : " 7/3/2020 16:21:45", - "fileExists:" : " 7/3/2020 16:21:45", - "filesIn:" : " 7/3/2020 16:21:45", - "isProcessTerminated:" : " 7/3/2020 16:21:45", - "label" : " 7/3/2020 16:21:45", - "localNameOf:" : " 7/3/2020 16:21:45", - "newRandom" : " 7/3/2020 16:21:45", - "newline" : " 7/3/2020 16:21:45", - "openDebuggerOn:" : " 7/3/2020 16:21:45", - "pathSeparator" : " 7/3/2020 16:21:45", - "readWriteByteStream" : " 7/3/2020 16:21:45", - "readWriteCharacterStream" : " 7/3/2020 16:21:45", - "removeFromShutDownList:" : " 7/3/2020 16:21:45", - "removeFromStartUpList:" : " 7/3/2020 16:21:45", - "removeSelector:from:" : " 7/3/2020 16:21:45", - "secureHashFor:" : " 7/3/2020 16:21:45", - "semaphoreClass" : " 7/3/2020 16:21:45", - "stackDepth" : " 7/3/2020 16:21:45", - "terminateProcess:" : " 7/3/2020 16:21:45", - "thisContext" : " 7/3/2020 16:21:45", - "useByteArrayLiterals" : " 7/3/2020 16:21:45", - "weakDictionaryOfSize:" : " 7/3/2020 16:21:45", - "writeCharacterStreamOn:" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/GRPharoRandomProvider.class/methodProperties.json b/repository/Grease-Squeak5-Core.package/GRPharoRandomProvider.class/methodProperties.json deleted file mode 100644 index 5cd17b60..00000000 --- a/repository/Grease-Squeak5-Core.package/GRPharoRandomProvider.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "class" : { - "initialize" : " 7/3/2020 16:21:45", - "nextInt:" : " 7/3/2020 16:21:45", - "randomClass" : " 7/3/2020 16:21:45", - "randomFrom:" : " 7/3/2020 16:21:45", - "startUp" : " 7/3/2020 16:21:45", - "unload" : " 7/3/2020 16:21:45" }, - "instance" : { - } } diff --git a/repository/Grease-Squeak5-Core.package/GRPharoUtf8Codec.class/methodProperties.json b/repository/Grease-Squeak5-Core.package/GRPharoUtf8Codec.class/methodProperties.json deleted file mode 100644 index 280e7ad2..00000000 --- a/repository/Grease-Squeak5-Core.package/GRPharoUtf8Codec.class/methodProperties.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "class" : { - "basicForEncoding:" : " 7/3/2020 16:21:45", - "codecs" : " 7/3/2020 16:21:45", - "supportsEncoding:" : " 7/3/2020 16:21:45" }, - "instance" : { - "decode:" : " 7/3/2020 16:21:45", - "decoderFor:" : " 7/3/2020 16:21:45", - "encoderFor:" : " 7/3/2020 16:21:45", - "invalidUtf8" : " 7/3/2020 16:21:45", - "name" : " 7/3/2020 16:21:45", - "url" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/GRPharoUtf8CodecStream.class/methodProperties.json b/repository/Grease-Squeak5-Core.package/GRPharoUtf8CodecStream.class/methodProperties.json deleted file mode 100644 index fedc2283..00000000 --- a/repository/Grease-Squeak5-Core.package/GRPharoUtf8CodecStream.class/methodProperties.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "class" : { - "initialize" : " 7/3/2020 16:21:45" }, - "instance" : { - "crlf" : " 7/3/2020 16:21:45", - "encodeDefault:" : " 7/3/2020 16:21:45", - "encodeFast:" : " 7/3/2020 16:21:45", - "greaseNext:putAll:startingAt:" : " 7/3/2020 16:21:45", - "greaseNext:putAllFast:startingAt:" : " 7/3/2020 16:21:45", - "invalidUtf8" : " 7/3/2020 16:21:45", - "next" : " 7/3/2020 16:21:45", - "next:" : " 7/3/2020 16:21:45", - "nextPut:" : " 7/3/2020 16:21:45", - "nextPutAll:" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/GRSmallDictionary.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/GRSmallDictionary.extension/methodProperties.json deleted file mode 100644 index 963cad87..00000000 --- a/repository/Grease-Squeak5-Core.package/GRSmallDictionary.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "customizeExplorerContents" : " 7/3/2020 16:21:45", - "explorerContents" : " 7/3/2020 16:21:45", - "hasContentsInExplorer" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/GRSqueakPlatform.class/methodProperties.json b/repository/Grease-Squeak5-Core.package/GRSqueakPlatform.class/methodProperties.json deleted file mode 100644 index 07a7af69..00000000 --- a/repository/Grease-Squeak5-Core.package/GRSqueakPlatform.class/methodProperties.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "class" : { - "initialize" : " 7/3/2020 16:21:45" }, - "instance" : { - "defaultDirectoryPathString" : " 7/3/2020 16:21:45", - "deleteFile:inFolder:" : " 7/3/2020 16:21:45", - "directoriesIn:" : " 7/3/2020 16:21:45", - "doSilently:" : " 7/3/2020 16:21:45", - "ensureExistenceOfFolder:" : " 7/3/2020 16:21:45", - "fileExists:" : " 7/3/2020 16:21:45", - "fileNameFor:" : " 7/3/2020 16:21:45", - "filesIn:" : " 7/3/2020 16:21:45", - "isDirectory:" : " 7/3/2020 16:21:45", - "localNameOf:" : " 7/3/2020 16:21:45", - "pathSeparator" : " 7/3/2020 16:21:45", - "readFileStreamOn:do:binary:" : "JB 7/3/2020 16:24", - "write:toFile:inFolder:" : "JB 7/3/2020 16:32", - "writeFileStreamOn:do:binary:" : "JB 7/3/2020 16:30" } } diff --git a/repository/Grease-Squeak5-Core.package/GRWorkingWriteStream.class/methodProperties.json b/repository/Grease-Squeak5-Core.package/GRWorkingWriteStream.class/methodProperties.json deleted file mode 100644 index ae5d8e77..00000000 --- a/repository/Grease-Squeak5-Core.package/GRWorkingWriteStream.class/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "reset" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/Interval.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/Interval.extension/methodProperties.json deleted file mode 100644 index b8d3051f..00000000 --- a/repository/Grease-Squeak5-Core.package/Interval.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "any" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/MessageSend.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/MessageSend.extension/methodProperties.json deleted file mode 100644 index 7e1f53b8..00000000 --- a/repository/Grease-Squeak5-Core.package/MessageSend.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "argumentCount" : " 7/3/2020 16:21:45", - "valueWithPossibleArguments:" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/Number.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/Number.extension/methodProperties.json deleted file mode 100644 index d117fdf9..00000000 --- a/repository/Grease-Squeak5-Core.package/Number.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "milliseconds" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/Object.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/Object.extension/methodProperties.json deleted file mode 100644 index 43db849f..00000000 --- a/repository/Grease-Squeak5-Core.package/Object.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : " 7/3/2020 16:21:45", - "sizeInMemory" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/Point.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/Point.extension/methodProperties.json deleted file mode 100644 index 66c63d1a..00000000 --- a/repository/Grease-Squeak5-Core.package/Point.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/PositionableStream.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/PositionableStream.extension/methodProperties.json deleted file mode 100644 index d5232098..00000000 --- a/repository/Grease-Squeak5-Core.package/PositionableStream.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseUpToAll:" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/ScaledDecimal.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/ScaledDecimal.extension/methodProperties.json deleted file mode 100644 index 0c571458..00000000 --- a/repository/Grease-Squeak5-Core.package/ScaledDecimal.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "encodeOn:" : " 7/3/2020 16:21:45", - "greaseString" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/SequenceableCollection.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/SequenceableCollection.extension/methodProperties.json deleted file mode 100644 index 57c9e038..00000000 --- a/repository/Grease-Squeak5-Core.package/SequenceableCollection.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "beginsWithSubCollection:" : " 7/3/2020 16:21:45", - "endsWithSubCollection:" : " 7/3/2020 16:21:45", - "sorted" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/SmallInteger.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/SmallInteger.extension/methodProperties.json deleted file mode 100644 index dcb296a7..00000000 --- a/repository/Grease-Squeak5-Core.package/SmallInteger.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "sizeInMemory" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/SocketStream.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/SocketStream.extension/methodProperties.json deleted file mode 100644 index 3f83ee19..00000000 --- a/repository/Grease-Squeak5-Core.package/SocketStream.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseNext:putAll:startingAt:" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/String.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/String.extension/methodProperties.json deleted file mode 100644 index 009c3db8..00000000 --- a/repository/Grease-Squeak5-Core.package/String.extension/methodProperties.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "substrings:" : " 7/3/2020 16:21:45", - "trimBoth" : " 7/3/2020 16:21:45", - "trimBoth:" : " 7/3/2020 16:21:45", - "trimLeft" : " 7/3/2020 16:21:45", - "trimLeft:" : " 7/3/2020 16:21:45", - "trimLeft:right:" : " 7/3/2020 16:21:45", - "trimRight" : " 7/3/2020 16:21:45", - "trimRight:" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/Symbol.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/Symbol.extension/methodProperties.json deleted file mode 100644 index 45e73289..00000000 --- a/repository/Grease-Squeak5-Core.package/Symbol.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseAsMutator" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/WriteStream.extension/methodProperties.json b/repository/Grease-Squeak5-Core.package/WriteStream.extension/methodProperties.json deleted file mode 100644 index 3f83ee19..00000000 --- a/repository/Grease-Squeak5-Core.package/WriteStream.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseNext:putAll:startingAt:" : " 7/3/2020 16:21:45" } } diff --git a/repository/Grease-Squeak5-Core.package/monticello.meta/version b/repository/Grease-Squeak5-Core.package/monticello.meta/version deleted file mode 100644 index 6e346ee9..00000000 --- a/repository/Grease-Squeak5-Core.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-Squeak5-Core-JB.2' message 'File stream methods in Squeak' id 'f1b1e052-0642-4690-b86d-4ebbb85634ce' date '3 July 2020' time '4:36:08.86448 pm' author 'JB' ancestors ((name 'Grease-Squeak5-Core-cypress.1' message 'fabricated from a Cypress format repository' id '76ce6269-9a42-4ce4-a2ce-d5cb307d09fa' date '3 July 2020' time '4:21:45.777619 pm' author '' ancestors () stepChildren ())) stepChildren ()) \ No newline at end of file diff --git a/repository/Grease-Tests-Squeak5-Core.package/GRPackage.extension/methodProperties.json b/repository/Grease-Tests-Squeak5-Core.package/GRPackage.extension/methodProperties.json deleted file mode 100644 index 75202285..00000000 --- a/repository/Grease-Tests-Squeak5-Core.package/GRPackage.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "greaseTestsSqueak5Core" : " 6/3/2020 21:51:17" }, - "instance" : { - } } diff --git a/repository/Grease-Tests-Squeak5-Core.package/GRPharoCodecTest.class/methodProperties.json b/repository/Grease-Tests-Squeak5-Core.package/GRPharoCodecTest.class/methodProperties.json deleted file mode 100644 index 05ddf428..00000000 --- a/repository/Grease-Tests-Squeak5-Core.package/GRPharoCodecTest.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "assert:next:startingAt:gives:" : " 6/3/2020 21:51:17", - "assertEncodingIgnoresLanguageTat:" : " 6/3/2020 21:51:17", - "stripLeadingCharFrom:" : " 6/3/2020 21:51:17", - "testAllCodesIncludesIso88591" : " 6/3/2020 21:51:17", - "testGreaseNextPutAllStartingAt" : " 6/3/2020 21:51:17", - "testLanguageTag" : " 6/3/2020 21:51:17" } } diff --git a/repository/Grease-Tests-Squeak5-Core.package/GRPharoColorTest.class/methodProperties.json b/repository/Grease-Tests-Squeak5-Core.package/GRPharoColorTest.class/methodProperties.json deleted file mode 100644 index 912dea1c..00000000 --- a/repository/Grease-Tests-Squeak5-Core.package/GRPharoColorTest.class/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "expectedFailures" : " 6/3/2020 21:51:17", - "testAllColors" : " 6/3/2020 21:51:17", - "testColorAsHtmlColor" : " 6/3/2020 21:51:17", - "testFromSixDigit" : " 6/3/2020 21:51:17", - "testFromStringName" : " 6/3/2020 21:51:17", - "testFromStringSixDigit" : " 6/3/2020 21:51:17", - "testFromStringThreeDigit" : " 6/3/2020 21:51:17" } } diff --git a/repository/Grease-Tests-Squeak5-Core.package/GRPharoGenericCodecTest.class/methodProperties.json b/repository/Grease-Tests-Squeak5-Core.package/GRPharoGenericCodecTest.class/methodProperties.json deleted file mode 100644 index d0aad9c4..00000000 --- a/repository/Grease-Tests-Squeak5-Core.package/GRPharoGenericCodecTest.class/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "testNoAmbiguities" : " 6/3/2020 21:51:17" } } diff --git a/repository/Grease-Tests-Squeak5-Core.package/GRPharoPlatformTest.class/methodProperties.json b/repository/Grease-Tests-Squeak5-Core.package/GRPharoPlatformTest.class/methodProperties.json deleted file mode 100644 index b469e39c..00000000 --- a/repository/Grease-Tests-Squeak5-Core.package/GRPharoPlatformTest.class/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "testCompileIntoClassified" : " 6/3/2020 21:51:17", - "testFullName" : " 6/3/2020 21:51:17", - "testGreaseIntegerOnCharacter" : " 6/3/2020 21:51:17", - "testMessageSendValueWithPossibleArguments" : " 6/3/2020 21:51:17", - "testWriteToFileInFolderBinary" : " 6/3/2020 21:51:17", - "testWriteToFileInFolderText" : " 6/3/2020 21:51:17", - "writeToFile:" : " 6/3/2020 21:51:17" } } diff --git a/repository/Grease-Tests-Squeak5-Core.package/GRPlatformTest.extension/methodProperties.json b/repository/Grease-Tests-Squeak5-Core.package/GRPlatformTest.extension/methodProperties.json deleted file mode 100644 index 9680a77b..00000000 --- a/repository/Grease-Tests-Squeak5-Core.package/GRPlatformTest.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "testScaledDecimalGreaseString" : " 6/3/2020 21:51:17", - "writeToFile:withFileNameDo:" : "JB 7/3/2020 16:19" } } diff --git a/repository/Grease-Tests-Squeak5-Core.package/GRPrinterTest.extension/methodProperties.json b/repository/Grease-Tests-Squeak5-Core.package/GRPrinterTest.extension/methodProperties.json deleted file mode 100644 index d69bcecd..00000000 --- a/repository/Grease-Tests-Squeak5-Core.package/GRPrinterTest.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "testScaledDecimalPrinter" : " 6/3/2020 21:51:17" } } diff --git a/repository/Grease-Tests-Squeak5-Core.package/GRUtf8CodecTest.extension/methodProperties.json b/repository/Grease-Tests-Squeak5-Core.package/GRUtf8CodecTest.extension/methodProperties.json deleted file mode 100644 index 8645a3b3..00000000 --- a/repository/Grease-Tests-Squeak5-Core.package/GRUtf8CodecTest.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "expectedFailures" : " 6/3/2020 21:51:17" } } diff --git a/repository/Grease-Tests-Squeak5-Core.package/monticello.meta/version b/repository/Grease-Tests-Squeak5-Core.package/monticello.meta/version deleted file mode 100644 index 901ff46e..00000000 --- a/repository/Grease-Tests-Squeak5-Core.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-Tests-Squeak5-Core-JB.2' message 'File stream methods in Squeak' id '42566689-41b1-4c74-ac20-f28f3c33de1d' date '3 July 2020' time '4:35:59.065449 pm' author 'JB' ancestors ((name 'Grease-Tests-Squeak5-Core-cypress.1' message 'fabricated from a Cypress format repository' id '39ef0d34-bb0e-4165-998b-1159c495ddeb' date '3 June 2020' time '9:51:17.567506 pm' author '' ancestors () stepChildren ())) stepChildren ()) \ No newline at end of file From 6698993fa4d98c5d85721babe85b780cc1a18989 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sun, 12 Jul 2020 11:15:09 +0200 Subject: [PATCH 13/46] update README to show badge for Pharo9 --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index d8812519..63050d11 100644 --- a/README.md +++ b/README.md @@ -20,12 +20,12 @@ The latest Grease version is supported on the following platforms and versions, | Squeak | Pharo | GemStone | | --------------- | ---------------- | -------------------- | -| [![Build status: Squeak-5.2](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Squeak-trunk&label=5.2)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Pharo64-8.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo64-8.0&label=8.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.5.2](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.5.2&label=3.5.2)](http://travis-ci.org/SeasideSt/Grease) | -| [![Build status: Squeak-5.1](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Squeak-5.1&label=5.1)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Pharo64-7.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo64-7.0&label=7.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.4.5](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.4.5&label=3.4.5)](http://travis-ci.org/SeasideSt/Grease) | -| | [![Build status: Pharo-6.1](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo-6.1&label=6.1)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.3.9](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.3.9&label=3.3.9)](http://travis-ci.org/SeasideSt/Grease) | -| | [![Build status: Pharo-5.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo-5.0&label=5.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.2.17](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.2.17&label=3.2.17)](http://travis-ci.org/SeasideSt/Grease) | -| | [![Build status: Pharo-4.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo-4.0&label=4.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.1.0.6](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.1.0.6&label=3.1.0.6)](http://travis-ci.org/SeasideSt/Grease) | -| | | [![Build status: Gemstone-2.4.8](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-2.4.8&label=2.4.8)](http://travis-ci.org/SeasideSt/Grease) | +| [![Build status: Squeak-5.2](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Squeak-trunk&label=5.2)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Pharo64-9.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo64-9.0&label=9.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.5.2](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.5.2&label=3.5.2)](http://travis-ci.org/SeasideSt/Grease) | +| [![Build status: Squeak-5.1](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Squeak-5.1&label=5.1)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Pharo64-8.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo64-8.0&label=8.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.4.5](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.4.5&label=3.4.5)](http://travis-ci.org/SeasideSt/Grease) | +| | [![Build status: Pharo64-7.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo-7.0&label=7.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.3.9](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.3.9&label=3.3.9)](http://travis-ci.org/SeasideSt/Grease) | +| | [![Build status: Pharo-6.1](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo-6.1&label=6.1)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.2.17](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.2.17&label=3.2.17)](http://travis-ci.org/SeasideSt/Grease) | +| | [![Build status: Pharo-5.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo-5.0&label=5.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.1.0.6](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.1.0.6&label=3.1.0.6)](http://travis-ci.org/SeasideSt/Grease) | +| | [![Build status: Pharo-4.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo-4.0&label=4.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-2.4.8](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-2.4.8&label=2.4.8)](http://travis-ci.org/SeasideSt/Grease) | Coveralls (experimental): [![Coverage Status](https://coveralls.io/repos/github/SeasideSt/Grease/badge.svg?branch=test-coveralls)](https://coveralls.io/github/SeasideSt/Grease?branch=test-coveralls) From 4eb931b4a927a55b6863ca8c47f76d0f6004125d Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sun, 12 Jul 2020 11:16:11 +0200 Subject: [PATCH 14/46] update README to show badge for Pharo9 (2) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 63050d11..1bcdedfa 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ The latest Grease version is supported on the following platforms and versions, | --------------- | ---------------- | -------------------- | | [![Build status: Squeak-5.2](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Squeak-trunk&label=5.2)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Pharo64-9.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo64-9.0&label=9.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.5.2](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.5.2&label=3.5.2)](http://travis-ci.org/SeasideSt/Grease) | | [![Build status: Squeak-5.1](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Squeak-5.1&label=5.1)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Pharo64-8.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo64-8.0&label=8.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.4.5](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.4.5&label=3.4.5)](http://travis-ci.org/SeasideSt/Grease) | -| | [![Build status: Pharo64-7.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo-7.0&label=7.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.3.9](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.3.9&label=3.3.9)](http://travis-ci.org/SeasideSt/Grease) | +| | [![Build status: Pharo64-7.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo64-7.0&label=7.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.3.9](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.3.9&label=3.3.9)](http://travis-ci.org/SeasideSt/Grease) | | | [![Build status: Pharo-6.1](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo-6.1&label=6.1)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.2.17](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.2.17&label=3.2.17)](http://travis-ci.org/SeasideSt/Grease) | | | [![Build status: Pharo-5.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo-5.0&label=5.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.1.0.6](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.1.0.6&label=3.1.0.6)](http://travis-ci.org/SeasideSt/Grease) | | | [![Build status: Pharo-4.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo-4.0&label=4.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-2.4.8](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-2.4.8&label=2.4.8)](http://travis-ci.org/SeasideSt/Grease) | From 1e7daed842ea48d0a51f77edecfd679d59ff7a89 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sun, 12 Jul 2020 11:20:21 +0200 Subject: [PATCH 15/46] Remove comment about dropping `wantsLineEndConversion:`. I don't think this is really necessary at all. Will need to mention this in the changelog and create a version increase to signal this change of behaviour on Pharo --- .../instance/readFileStreamOn.do.binary..st | 1 - .../GRPharoPlatform.class/instance/write.toFile.inFolder..st | 1 - 2 files changed, 2 deletions(-) diff --git a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/readFileStreamOn.do.binary..st b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/readFileStreamOn.do.binary..st index 2b7331ab..f9dda145 100644 --- a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/readFileStreamOn.do.binary..st +++ b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/readFileStreamOn.do.binary..st @@ -1,6 +1,5 @@ file library readFileStreamOn: aString do: aBlock binary: aBoolean - "Line end conversion is no longer done for ascii... TBD!" ^ aBoolean ifTrue: [ aString asFileReference binaryReadStreamDo: aBlock ] diff --git a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/write.toFile.inFolder..st b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/write.toFile.inFolder..st index 77cf8f76..bbde965a 100644 --- a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/write.toFile.inFolder..st +++ b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/write.toFile.inFolder..st @@ -1,7 +1,6 @@ file library write: aStringOrByteArray toFile: aFileNameString inFolder: aFolderString "writes aStringOrByteArray to a file named aFilenameString in the folder aFolderString" - "TODO: wantsLineEndConversion: true; ??" ^ self writeFileStreamOn: (aFolderString asFileReference / aFileNameString) ensureDelete pathString do: [ :stream | stream nextPutAll: aStringOrByteArray ] From 79ec953722c72c1f375aecb14e24d4fa2c7526f5 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Fri, 24 Jul 2020 11:20:08 +0200 Subject: [PATCH 16/46] We *can* keep the 'wantsLineEndConversion' when writing out files... --- .../instance/writeFileStreamOn.do.binary..st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/writeFileStreamOn.do.binary..st b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/writeFileStreamOn.do.binary..st index 762e9cca..c06164c8 100644 --- a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/writeFileStreamOn.do.binary..st +++ b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/writeFileStreamOn.do.binary..st @@ -2,4 +2,4 @@ file library writeFileStreamOn: aString do: aBlock binary: aBoolean ^ aBoolean ifTrue: [ aString asFileReference binaryWriteStreamDo: aBlock ] - ifFalse: [ aString asFileReference writeStreamEncoded: 'ascii' do: aBlock ] \ No newline at end of file + ifFalse: [ aString asFileReference writeStreamEncoded: 'ascii' do: [ :str | aBlock value: (ZnNewLineWriterStream on: str) ] ] \ No newline at end of file From 625f0ba3ba3afe481069798b48c288dafdbda4b7 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Fri, 31 Jul 2020 10:19:14 +0200 Subject: [PATCH 17/46] Always forgetting to update the grease version... --- .../GRPlatform.class/instance/version.st | 2 +- .../Grease-Core.package/monticello.meta/categories.st | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/repository/Grease-Core.package/GRPlatform.class/instance/version.st b/repository/Grease-Core.package/GRPlatform.class/instance/version.st index a11dc66e..dc3ca615 100644 --- a/repository/Grease-Core.package/GRPlatform.class/instance/version.st +++ b/repository/Grease-Core.package/GRPlatform.class/instance/version.st @@ -2,5 +2,5 @@ version info version "Answer the Grease version" - ^ (GRVersion major: 1 minor: 4 revision: 0) + ^ (GRVersion major: 1 minor: 6 revision: 0) yourself \ No newline at end of file diff --git a/repository/Grease-Core.package/monticello.meta/categories.st b/repository/Grease-Core.package/monticello.meta/categories.st index ffa3065c..d33d6435 100644 --- a/repository/Grease-Core.package/monticello.meta/categories.st +++ b/repository/Grease-Core.package/monticello.meta/categories.st @@ -1,5 +1,5 @@ SystemOrganization addCategory: #'Grease-Core'! -SystemOrganization addCategory: 'Grease-Core-Collections'! -SystemOrganization addCategory: 'Grease-Core-Exceptions'! -SystemOrganization addCategory: 'Grease-Core-Text'! -SystemOrganization addCategory: 'Grease-Core-Utilities'! +SystemOrganization addCategory: #'Grease-Core-Collections'! +SystemOrganization addCategory: #'Grease-Core-Exceptions'! +SystemOrganization addCategory: #'Grease-Core-Text'! +SystemOrganization addCategory: #'Grease-Core-Utilities'! From ce47230851a3ff525835fe6073e8c32eb4cde4eb Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Fri, 31 Jul 2020 11:35:24 +0200 Subject: [PATCH 18/46] Fix reading contents of empty binary file --- .../instance/contentsOfFile.binary..st | 4 +++- .../instance/testReadWriteEmptyFileInFolderBinary.st | 8 ++++++++ .../instance/testReadWriteEmptyFileInFolderText.st | 8 ++++++++ 3 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 repository/Grease-Tests-Core.package/GRPlatformTest.class/instance/testReadWriteEmptyFileInFolderBinary.st create mode 100644 repository/Grease-Tests-Core.package/GRPlatformTest.class/instance/testReadWriteEmptyFileInFolderText.st diff --git a/repository/Grease-Pharo70-Core.package/GRPharoPlatform.class/instance/contentsOfFile.binary..st b/repository/Grease-Pharo70-Core.package/GRPharoPlatform.class/instance/contentsOfFile.binary..st index 119ba39b..3c95a9de 100644 --- a/repository/Grease-Pharo70-Core.package/GRPharoPlatform.class/instance/contentsOfFile.binary..st +++ b/repository/Grease-Pharo70-Core.package/GRPharoPlatform.class/instance/contentsOfFile.binary..st @@ -1,3 +1,5 @@ file library contentsOfFile: aString binary: aBoolean - ^ self fileStreamOn: aString do: [ :stream | stream contents ] binary: aBoolean \ No newline at end of file + ^ aBoolean + ifTrue:[ self fileStreamOn: aString do: [ :stream | stream contents ifNil:[ ByteArray new ] ] binary: aBoolean ] + ifFalse:[ self fileStreamOn: aString do: [ :stream | stream contents ] binary: aBoolean ] \ No newline at end of file diff --git a/repository/Grease-Tests-Core.package/GRPlatformTest.class/instance/testReadWriteEmptyFileInFolderBinary.st b/repository/Grease-Tests-Core.package/GRPlatformTest.class/instance/testReadWriteEmptyFileInFolderBinary.st new file mode 100644 index 00000000..39fbdb1c --- /dev/null +++ b/repository/Grease-Tests-Core.package/GRPlatformTest.class/instance/testReadWriteEmptyFileInFolderBinary.st @@ -0,0 +1,8 @@ +tests-filestreams +testReadWriteEmptyFileInFolderBinary + | bytes | + bytes := ByteArray new. + self + writeToFile: bytes + withFileNameDo:[ :fileName | + self assert: (bytes = (GRPlatform current contentsOfFile: fileName binary: true)) ] \ No newline at end of file diff --git a/repository/Grease-Tests-Core.package/GRPlatformTest.class/instance/testReadWriteEmptyFileInFolderText.st b/repository/Grease-Tests-Core.package/GRPlatformTest.class/instance/testReadWriteEmptyFileInFolderText.st new file mode 100644 index 00000000..757a5cdb --- /dev/null +++ b/repository/Grease-Tests-Core.package/GRPlatformTest.class/instance/testReadWriteEmptyFileInFolderText.st @@ -0,0 +1,8 @@ +tests-filestreams +testReadWriteEmptyFileInFolderText + | text | + text := String new. + self + writeToFile: text + withFileNameDo:[ :fileName | + self assert: (text = (GRPlatform current contentsOfFile: fileName binary: false)) ] \ No newline at end of file From ddcbbaf25cfecf8837a8fdd2298a0c8a718b0e7a Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Fri, 31 Jul 2020 12:01:19 +0200 Subject: [PATCH 19/46] cannot believe I keep forgetting to update the version method --- .../Grease-Core.package/GRPlatform.class/instance/version.st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repository/Grease-Core.package/GRPlatform.class/instance/version.st b/repository/Grease-Core.package/GRPlatform.class/instance/version.st index dc3ca615..35f173ce 100644 --- a/repository/Grease-Core.package/GRPlatform.class/instance/version.st +++ b/repository/Grease-Core.package/GRPlatform.class/instance/version.st @@ -2,5 +2,5 @@ version info version "Answer the Grease version" - ^ (GRVersion major: 1 minor: 6 revision: 0) + ^ (GRVersion major: 1 minor: 6 revision: 1) yourself \ No newline at end of file From 4d8764cce388a8175c62503148ddd51800307529 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sat, 14 Nov 2020 09:37:12 +0000 Subject: [PATCH 20/46] added missing 'codecs' class methods --- repository/Grease-Core.package/.filetree | 5 +- .../Character.extension/methodProperties.json | 5 ++ .../Character.extension/properties.json | 3 +- .../methodProperties.json | 9 ++++ .../GRBoundMessage.class/properties.json | 19 +++---- .../GRCodec.class/class/codecs.st | 4 +- .../GRCodec.class/methodProperties.json | 16 ++++++ .../GRCodec.class/properties.json | 19 ++++--- .../GRCodecStream.class/methodProperties.json | 5 ++ .../GRCodecStream.class/properties.json | 19 ++++--- .../instance/nextPut..st | 3 +- .../instance/nextPutAll..st | 3 +- .../methodProperties.json | 12 +++++ .../GRCountingStream.class/properties.json | 19 +++---- .../GRDelayedSend.class/methodProperties.json | 16 ++++++ .../GRDelayedSend.class/properties.json | 19 +++---- .../methodProperties.json | 13 +++++ .../properties.json | 19 +++---- .../methodProperties.json | 20 ++++++++ .../GRDelegatingStream.class/properties.json | 19 +++---- .../methodProperties.json | 6 +++ .../properties.json | 19 +++---- .../GRError.class/methodProperties.json | 5 ++ .../GRError.class/properties.json | 19 ++++--- .../GRInflector.class/methodProperties.json | 6 +++ .../GRInflector.class/properties.json | 19 +++---- .../methodProperties.json | 5 ++ .../properties.json | 19 ++++--- .../methodProperties.json | 5 ++ .../GRInvalidUtf8Error.class/properties.json | 19 ++++--- .../methodProperties.json | 8 +++ .../GRMappedPrinter.class/properties.json | 19 +++---- .../methodProperties.json | 5 ++ .../GRNotification.class/properties.json | 19 ++++--- .../methodProperties.json | 7 +++ .../properties.json | 19 ++++--- .../GRNullCodec.class/methodProperties.json | 13 +++++ .../GRNullCodec.class/properties.json | 19 ++++--- .../methodProperties.json | 8 +++ .../GRNullCodecStream.class/properties.json | 19 ++++--- .../methodProperties.json | 29 +++++++++++ .../GRNumberPrinter.class/properties.json | 19 ++++--- .../GRObject.class/methodProperties.json | 8 +++ .../GRObject.class/properties.json | 19 ++++--- .../methodProperties.json | 12 +++++ .../GROrderedMultiMap.class/properties.json | 19 ++++--- .../methodProperties.json | 12 +++++ .../GROrderedMultiMap2.class/properties.json | 19 ++++--- .../methodProperties.json | 6 +++ .../GROrdinalizePrinter.class/properties.json | 19 ++++--- .../GRPackage.class/methodProperties.json | 26 ++++++++++ .../GRPackage.class/properties.json | 19 +++---- .../GRPlatform.class/instance/fileExists..st | 2 +- .../instance/fileStreamOn.do.binary..st | 2 +- .../GRPlatform.class/methodProperties.json | 45 +++++++++++++++++ .../GRPlatform.class/properties.json | 19 +++---- .../methodProperties.json | 7 +++ .../GRPluggablePrinter.class/properties.json | 19 +++---- .../GRPrinter.class/methodProperties.json | 46 +++++++++++++++++ .../GRPrinter.class/properties.json | 19 ++++--- .../methodProperties.json | 7 +++ .../GRSequentialPrinter.class/properties.json | 19 +++---- .../GRSignPrinter.class/methodProperties.json | 8 +++ .../GRSignPrinter.class/properties.json | 19 +++---- .../instance/printOn..st | 2 +- .../methodProperties.json | 40 +++++++++++++++ .../GRSmallDictionary.class/properties.json | 19 +++---- .../instance/printOn..st | 2 +- .../methodProperties.json | 40 +++++++++++++++ .../GRSmallDictionary2.class/properties.json | 19 +++---- .../methodProperties.json | 23 +++++++++ .../GRSmallOrderedSet.class/properties.json | 19 +++---- .../methodProperties.json | 16 ++++++ .../GRStringPrinter.class/properties.json | 19 +++---- .../methodProperties.json | 6 +++ .../GRUnboundMessage.class/properties.json | 19 ++++--- .../GRUnitPrinter.class/methodProperties.json | 11 +++++ .../GRUnitPrinter.class/properties.json | 19 +++---- .../methodProperties.json | 5 ++ .../properties.json | 19 ++++--- .../GRVersion.class/instance/^less.st | 4 +- .../GRVersion.class/methodProperties.json | 35 +++++++++++++ .../GRVersion.class/properties.json | 19 +++---- .../Integer.extension/methodProperties.json | 7 +++ .../Integer.extension/properties.json | 3 +- .../Number.extension/methodProperties.json | 5 ++ .../Number.extension/properties.json | 3 +- .../Object.extension/methodProperties.json | 5 ++ .../Object.extension/properties.json | 3 +- .../String.extension/methodProperties.json | 13 +++++ .../String.extension/properties.json | 3 +- .../methodProperties.json | 5 ++ .../UndefinedObject.extension/properties.json | 3 +- .../monticello.meta/version | 1 + .../Grease-Core.package/properties.json | 3 +- .../Array.extension/methodProperties.json | 5 ++ .../Behavior.extension/methodProperties.json | 6 +++ .../methodProperties.json | 5 ++ .../ByteArray.extension/methodProperties.json | 5 ++ .../Character.extension/methodProperties.json | 5 ++ .../methodProperties.json | 21 ++++++++ .../methodProperties.json | 7 +++ .../Date.extension/methodProperties.json | 5 ++ .../methodProperties.json | 5 ++ .../methodProperties.json | 5 ++ .../Duration.extension/methodProperties.json | 6 +++ .../Exception.extension/methodProperties.json | 7 +++ .../methodProperties.json | 8 +++ .../methodProperties.json | 49 +++++++++++++++++++ .../methodProperties.json | 11 +++++ .../class/codecs.st | 3 ++ .../methodProperties.json | 13 +++++ .../GRPackage.extension/methodProperties.json | 5 ++ .../methodProperties.json | 14 ++++++ .../GRUtf8GemStoneCodec.class/class/codecs.st | 3 ++ .../methodProperties.json | 14 ++++++ .../GsContext.class/methodProperties.json | 15 ++++++ .../Interval.extension/methodProperties.json | 5 ++ .../methodProperties.json | 10 ++++ .../Number.extension/methodProperties.json | 5 ++ .../Object.extension/methodProperties.json | 7 +++ .../methodProperties.json | 5 ++ .../methodProperties.json | 5 ++ .../methodProperties.json | 6 +++ .../String.extension/methodProperties.json | 5 ++ .../Symbol.extension/methodProperties.json | 5 ++ .../Symbol.extension/properties.json | 3 +- .../methodProperties.json | 7 +++ .../methodProperties.json | 7 +++ .../methodProperties.json | 7 +++ .../methodProperties.json | 6 +++ .../methodProperties.json | 5 ++ .../methodProperties.json | 6 +++ .../monticello.meta/version | 1 + 134 files changed, 1286 insertions(+), 340 deletions(-) create mode 100644 repository/Grease-Core.package/Character.extension/methodProperties.json create mode 100644 repository/Grease-Core.package/GRBoundMessage.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRCodec.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRCodecStream.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRCountingStream.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRDelayedSend.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRDelayedSendMessage.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRDelegatingStream.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRDeprecatedApiNotification.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRError.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRInflector.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRInvalidArgumentCount.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRInvalidUtf8Error.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRMappedPrinter.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRNotification.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRNotificationBasedDynamicVariable.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRNullCodec.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRNullCodecStream.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRNumberPrinter.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRObject.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GROrderedMultiMap.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GROrderedMultiMap2.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GROrdinalizePrinter.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRPackage.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRPlatform.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRPluggablePrinter.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRPrinter.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRSequentialPrinter.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRSignPrinter.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRSmallDictionary.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRSmallDictionary2.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRSmallOrderedSet.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRStringPrinter.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRUnboundMessage.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRUnitPrinter.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRUnsupportedEncodingError.class/methodProperties.json create mode 100644 repository/Grease-Core.package/GRVersion.class/methodProperties.json create mode 100644 repository/Grease-Core.package/Integer.extension/methodProperties.json create mode 100644 repository/Grease-Core.package/Number.extension/methodProperties.json create mode 100644 repository/Grease-Core.package/Object.extension/methodProperties.json create mode 100644 repository/Grease-Core.package/String.extension/methodProperties.json create mode 100644 repository/Grease-Core.package/UndefinedObject.extension/methodProperties.json create mode 100644 repository/Grease-Core.package/monticello.meta/version create mode 100644 repository/Grease-GemStone-Core.package/Array.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Behavior.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/BinaryFloat.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/ByteArray.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Character.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/CharacterCollection.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Collection.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Date.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Dictionary.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/DoubleByteString.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Duration.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Exception.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/GRDynamicVariable.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/GRGemStoneRandomProvider.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/GRLatin1GemStoneCodec.class/class/codecs.st create mode 100644 repository/Grease-GemStone-Core.package/GRLatin1GemStoneCodec.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/GRPackage.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/GRTextOrBinaryCodecStream.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/class/codecs.st create mode 100644 repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/GsContext.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Interval.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/MessageSend.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Number.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Object.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/PackageInfo.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/PositionableStream.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/SequenceableCollection.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/String.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Symbol.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/SystemAbortTransaction.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/SystemBeginTransaction.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/SystemCommitTransaction.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/SystemTransactionNotification.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/UnorderedCollection.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/WriteStream.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/monticello.meta/version diff --git a/repository/Grease-Core.package/.filetree b/repository/Grease-Core.package/.filetree index 57a67973..8998102c 100644 --- a/repository/Grease-Core.package/.filetree +++ b/repository/Grease-Core.package/.filetree @@ -1,5 +1,4 @@ { - "separateMethodMetaAndSource" : false, "noMethodMetaData" : true, - "useCypressPropertiesFile" : true -} \ No newline at end of file + "separateMethodMetaAndSource" : false, + "useCypressPropertiesFile" : true } diff --git a/repository/Grease-Core.package/Character.extension/methodProperties.json b/repository/Grease-Core.package/Character.extension/methodProperties.json new file mode 100644 index 00000000..4c54bdcb --- /dev/null +++ b/repository/Grease-Core.package/Character.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "print:on:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/Character.extension/properties.json b/repository/Grease-Core.package/Character.extension/properties.json index 5219281d..7532e33e 100644 --- a/repository/Grease-Core.package/Character.extension/properties.json +++ b/repository/Grease-Core.package/Character.extension/properties.json @@ -1,3 +1,2 @@ { - "name" : "Character" -} \ No newline at end of file + "name" : "Character" } diff --git a/repository/Grease-Core.package/GRBoundMessage.class/methodProperties.json b/repository/Grease-Core.package/GRBoundMessage.class/methodProperties.json new file mode 100644 index 00000000..ec8bf751 --- /dev/null +++ b/repository/Grease-Core.package/GRBoundMessage.class/methodProperties.json @@ -0,0 +1,9 @@ +{ + "class" : { + "selector:" : " 10/11/2020 07:23:50", + "selector:arguments:" : " 10/11/2020 07:23:50" }, + "instance" : { + "argumentCount" : " 10/11/2020 07:23:50", + "initializeWithSelector:arguments:" : " 10/11/2020 07:23:50", + "mergeArguments:" : " 10/11/2020 07:23:50", + "printOn:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRBoundMessage.class/properties.json b/repository/Grease-Core.package/GRBoundMessage.class/properties.json index 8cc5361d..a4a0a403 100644 --- a/repository/Grease-Core.package/GRBoundMessage.class/properties.json +++ b/repository/Grease-Core.package/GRBoundMessage.class/properties.json @@ -1,13 +1,14 @@ { - "commentStamp" : "jf 3/14/2009 11:04", - "super" : "GRDelayedSendMessage", "category" : "Grease-Core-Utilities", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "jf 3/14/2009 11:04", "instvars" : [ - "arguments" - ], + "arguments" ], "name" : "GRBoundMessage", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRDelayedSendMessage", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRCodec.class/class/codecs.st b/repository/Grease-Core.package/GRCodec.class/class/codecs.st index 1c395166..6a776efc 100644 --- a/repository/Grease-Core.package/GRCodec.class/class/codecs.st +++ b/repository/Grease-Core.package/GRCodec.class/class/codecs.st @@ -1,5 +1,5 @@ accessing codecs - "Answer a collection of possible codecs of the receiver. To be overridden by concrete subclasses." + "Answer a collection of possible codecs of the receiver. To be overridden by concrete subclasses." - ^ #() \ No newline at end of file + ^ #() \ No newline at end of file diff --git a/repository/Grease-Core.package/GRCodec.class/methodProperties.json b/repository/Grease-Core.package/GRCodec.class/methodProperties.json new file mode 100644 index 00000000..ab016c97 --- /dev/null +++ b/repository/Grease-Core.package/GRCodec.class/methodProperties.json @@ -0,0 +1,16 @@ +{ + "class" : { + "allCodecs" : " 10/11/2020 07:23:50", + "basicForEncoding:" : " 10/11/2020 07:23:50", + "codecs" : "JohanBrichau 11/14/2020 01:33", + "forEncoding:" : " 10/11/2020 07:23:50", + "supportsEncoding:" : " 10/11/2020 07:23:50", + "unsupportedEncoding:" : " 10/11/2020 07:23:50" }, + "instance" : { + "decode:" : " 10/11/2020 07:23:50", + "decoderFor:" : " 10/11/2020 07:23:50", + "encode:" : " 10/11/2020 07:23:50", + "encoderFor:" : " 10/11/2020 07:23:50", + "name" : " 10/11/2020 07:23:50", + "printOn:" : " 10/11/2020 07:23:50", + "url" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRCodec.class/properties.json b/repository/Grease-Core.package/GRCodec.class/properties.json index 027cedb0..ce9d695e 100644 --- a/repository/Grease-Core.package/GRCodec.class/properties.json +++ b/repository/Grease-Core.package/GRCodec.class/properties.json @@ -1,11 +1,14 @@ { - "commentStamp" : "lr 2/7/2009 09:55", - "super" : "GRObject", "category" : "Grease-Core-Text", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], - "instvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "lr 2/7/2009 09:55", + "instvars" : [ + ], "name" : "GRCodec", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRObject", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRCodecStream.class/methodProperties.json b/repository/Grease-Core.package/GRCodecStream.class/methodProperties.json new file mode 100644 index 00000000..0e4a6622 --- /dev/null +++ b/repository/Grease-Core.package/GRCodecStream.class/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + } } diff --git a/repository/Grease-Core.package/GRCodecStream.class/properties.json b/repository/Grease-Core.package/GRCodecStream.class/properties.json index 469b8552..5c2b5d08 100644 --- a/repository/Grease-Core.package/GRCodecStream.class/properties.json +++ b/repository/Grease-Core.package/GRCodecStream.class/properties.json @@ -1,11 +1,14 @@ { - "commentStamp" : "pmm 6/25/2012 20:21", - "super" : "GRDelegatingStream", "category" : "Grease-Core-Text", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], - "instvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "pmm 6/25/2012 20:21", + "instvars" : [ + ], "name" : "GRCodecStream", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRDelegatingStream", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRCountingStream.class/instance/nextPut..st b/repository/Grease-Core.package/GRCountingStream.class/instance/nextPut..st index ff277823..2a60f134 100644 --- a/repository/Grease-Core.package/GRCountingStream.class/instance/nextPut..st +++ b/repository/Grease-Core.package/GRCountingStream.class/instance/nextPut..st @@ -1,5 +1,4 @@ streaming nextPut: aCharacter stream nextPut: aCharacter. - count := count + 1 - \ No newline at end of file + count := count + 1 \ No newline at end of file diff --git a/repository/Grease-Core.package/GRCountingStream.class/instance/nextPutAll..st b/repository/Grease-Core.package/GRCountingStream.class/instance/nextPutAll..st index ba05ebf6..1ea34984 100644 --- a/repository/Grease-Core.package/GRCountingStream.class/instance/nextPutAll..st +++ b/repository/Grease-Core.package/GRCountingStream.class/instance/nextPutAll..st @@ -1,5 +1,4 @@ streaming nextPutAll: aString stream nextPutAll: aString. - count := count + aString size - \ No newline at end of file + count := count + aString size \ No newline at end of file diff --git a/repository/Grease-Core.package/GRCountingStream.class/methodProperties.json b/repository/Grease-Core.package/GRCountingStream.class/methodProperties.json new file mode 100644 index 00000000..b54bd4b5 --- /dev/null +++ b/repository/Grease-Core.package/GRCountingStream.class/methodProperties.json @@ -0,0 +1,12 @@ +{ + "class" : { + }, + "instance" : { + "count" : " 10/11/2020 07:23:50", + "greaseNext:putAll:startingAt:" : " 10/11/2020 07:23:50", + "initialize" : " 10/11/2020 07:23:50", + "next" : " 10/11/2020 07:23:50", + "next:" : " 10/11/2020 07:23:50", + "nextPut:" : " 10/11/2020 07:23:50", + "nextPutAll:" : " 10/11/2020 07:23:50", + "reset" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRCountingStream.class/properties.json b/repository/Grease-Core.package/GRCountingStream.class/properties.json index 957dd138..41fb53c3 100644 --- a/repository/Grease-Core.package/GRCountingStream.class/properties.json +++ b/repository/Grease-Core.package/GRCountingStream.class/properties.json @@ -1,13 +1,14 @@ { - "commentStamp" : "pmm 6/25/2012 20:39", - "super" : "GRDelegatingStream", "category" : "Grease-Core", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "pmm 6/25/2012 20:39", "instvars" : [ - "count" - ], + "count" ], "name" : "GRCountingStream", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRDelegatingStream", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRDelayedSend.class/methodProperties.json b/repository/Grease-Core.package/GRDelayedSend.class/methodProperties.json new file mode 100644 index 00000000..fc80b2ba --- /dev/null +++ b/repository/Grease-Core.package/GRDelayedSend.class/methodProperties.json @@ -0,0 +1,16 @@ +{ + "class" : { + "empty" : " 10/11/2020 07:23:50", + "new" : " 10/11/2020 07:23:50", + "receiver:selector:" : " 10/11/2020 07:23:50", + "receiver:selector:argument:" : " 10/11/2020 07:23:50", + "receiver:selector:arguments:" : " 10/11/2020 07:23:50" }, + "instance" : { + "argumentCount" : " 10/11/2020 07:23:50", + "initializeWithReceiver:message:" : " 10/11/2020 07:23:50", + "printOn:" : " 10/11/2020 07:23:50", + "value" : " 10/11/2020 07:23:50", + "value:" : " 10/11/2020 07:23:50", + "value:value:" : " 10/11/2020 07:23:50", + "valueWithArguments:" : " 10/11/2020 07:23:50", + "valueWithPossibleArguments:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRDelayedSend.class/properties.json b/repository/Grease-Core.package/GRDelayedSend.class/properties.json index ef621ffc..b5d5672a 100644 --- a/repository/Grease-Core.package/GRDelayedSend.class/properties.json +++ b/repository/Grease-Core.package/GRDelayedSend.class/properties.json @@ -1,14 +1,15 @@ { - "commentStamp" : "NickAger 3/20/2012 09:04", - "super" : "GRObject", "category" : "Grease-Core-Utilities", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "NickAger 3/20/2012 09:04", "instvars" : [ "receiver", - "message" - ], + "message" ], "name" : "GRDelayedSend", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRObject", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRDelayedSendMessage.class/methodProperties.json b/repository/Grease-Core.package/GRDelayedSendMessage.class/methodProperties.json new file mode 100644 index 00000000..fe82e1df --- /dev/null +++ b/repository/Grease-Core.package/GRDelayedSendMessage.class/methodProperties.json @@ -0,0 +1,13 @@ +{ + "class" : { + "new" : " 10/11/2020 07:23:50", + "selector:" : " 10/11/2020 07:23:50" }, + "instance" : { + "argumentCount" : " 10/11/2020 07:23:50", + "basicPerformFor:withArguments:" : " 10/11/2020 07:23:50", + "initializeWithSelector:" : " 10/11/2020 07:23:50", + "invalidArgumentCount" : " 10/11/2020 07:23:50", + "mergeArguments:" : " 10/11/2020 07:23:50", + "printOn:" : " 10/11/2020 07:23:50", + "valueFor:withArguments:" : " 10/11/2020 07:23:50", + "valueFor:withPossibleArguments:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRDelayedSendMessage.class/properties.json b/repository/Grease-Core.package/GRDelayedSendMessage.class/properties.json index 074052cb..e26a1310 100644 --- a/repository/Grease-Core.package/GRDelayedSendMessage.class/properties.json +++ b/repository/Grease-Core.package/GRDelayedSendMessage.class/properties.json @@ -1,13 +1,14 @@ { - "commentStamp" : "NickAger 3/19/2012 11:20", - "super" : "GRObject", "category" : "Grease-Core-Utilities", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "NickAger 3/19/2012 11:20", "instvars" : [ - "selector" - ], + "selector" ], "name" : "GRDelayedSendMessage", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRObject", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRDelegatingStream.class/methodProperties.json b/repository/Grease-Core.package/GRDelegatingStream.class/methodProperties.json new file mode 100644 index 00000000..fc8947cb --- /dev/null +++ b/repository/Grease-Core.package/GRDelegatingStream.class/methodProperties.json @@ -0,0 +1,20 @@ +{ + "class" : { + "on:" : " 10/11/2020 07:23:50" }, + "instance" : { + "atEnd" : " 10/11/2020 07:23:50", + "contents" : " 10/11/2020 07:23:50", + "crlf" : " 10/11/2020 07:23:50", + "flush" : " 10/11/2020 07:23:50", + "initializeOn:" : " 10/11/2020 07:23:50", + "isStream" : " 10/11/2020 07:23:50", + "next" : " 10/11/2020 07:23:50", + "next:" : " 10/11/2020 07:23:50", + "nextPut:" : " 10/11/2020 07:23:50", + "nextPutAll:" : " 10/11/2020 07:23:50", + "position" : " 10/11/2020 07:23:50", + "print:" : " 10/11/2020 07:23:50", + "reset" : " 10/11/2020 07:23:50", + "size" : " 10/11/2020 07:23:50", + "space" : " 10/11/2020 07:23:50", + "tab" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRDelegatingStream.class/properties.json b/repository/Grease-Core.package/GRDelegatingStream.class/properties.json index 0b47dd66..38c81c35 100644 --- a/repository/Grease-Core.package/GRDelegatingStream.class/properties.json +++ b/repository/Grease-Core.package/GRDelegatingStream.class/properties.json @@ -1,13 +1,14 @@ { - "commentStamp" : "pmm 6/25/2012 20:20", - "super" : "GRObject", "category" : "Grease-Core-Text", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "pmm 6/25/2012 20:20", "instvars" : [ - "stream" - ], + "stream" ], "name" : "GRDelegatingStream", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRObject", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRDeprecatedApiNotification.class/methodProperties.json b/repository/Grease-Core.package/GRDeprecatedApiNotification.class/methodProperties.json new file mode 100644 index 00000000..17890d89 --- /dev/null +++ b/repository/Grease-Core.package/GRDeprecatedApiNotification.class/methodProperties.json @@ -0,0 +1,6 @@ +{ + "class" : { + }, + "instance" : { + "details" : " 10/11/2020 07:23:50", + "details:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRDeprecatedApiNotification.class/properties.json b/repository/Grease-Core.package/GRDeprecatedApiNotification.class/properties.json index 6241e06c..a544490f 100644 --- a/repository/Grease-Core.package/GRDeprecatedApiNotification.class/properties.json +++ b/repository/Grease-Core.package/GRDeprecatedApiNotification.class/properties.json @@ -1,13 +1,14 @@ { - "commentStamp" : "pmm 9/14/2013 15:50", - "super" : "GRNotification", "category" : "Grease-Core-Exceptions", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "pmm 9/14/2013 15:50", "instvars" : [ - "details" - ], + "details" ], "name" : "GRDeprecatedApiNotification", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRNotification", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRError.class/methodProperties.json b/repository/Grease-Core.package/GRError.class/methodProperties.json new file mode 100644 index 00000000..0e4a6622 --- /dev/null +++ b/repository/Grease-Core.package/GRError.class/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + } } diff --git a/repository/Grease-Core.package/GRError.class/properties.json b/repository/Grease-Core.package/GRError.class/properties.json index 2bc08ff7..add771d4 100644 --- a/repository/Grease-Core.package/GRError.class/properties.json +++ b/repository/Grease-Core.package/GRError.class/properties.json @@ -1,11 +1,14 @@ { - "commentStamp" : "pmm 9/14/2013 15:50", - "super" : "Error", "category" : "Grease-Core-Exceptions", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], - "instvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "pmm 9/14/2013 15:50", + "instvars" : [ + ], "name" : "GRError", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "Error", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRInflector.class/methodProperties.json b/repository/Grease-Core.package/GRInflector.class/methodProperties.json new file mode 100644 index 00000000..eb597a8c --- /dev/null +++ b/repository/Grease-Core.package/GRInflector.class/methodProperties.json @@ -0,0 +1,6 @@ +{ + "class" : { + "initialize" : " 10/11/2020 07:23:50", + "pluralize:" : " 10/11/2020 07:23:50" }, + "instance" : { + } } diff --git a/repository/Grease-Core.package/GRInflector.class/properties.json b/repository/Grease-Core.package/GRInflector.class/properties.json index d71052cf..e2569b29 100644 --- a/repository/Grease-Core.package/GRInflector.class/properties.json +++ b/repository/Grease-Core.package/GRInflector.class/properties.json @@ -1,14 +1,15 @@ { - "commentStamp" : "lr 12/27/2008 09:43", - "super" : "GRObject", "category" : "Grease-Core-Text", - "classinstvars" : [ ], - "pools" : [ ], + "classinstvars" : [ + ], "classvars" : [ "InflectionRules", - "Uninflected" - ], - "instvars" : [ ], + "Uninflected" ], + "commentStamp" : "lr 12/27/2008 09:43", + "instvars" : [ + ], "name" : "GRInflector", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRObject", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRInvalidArgumentCount.class/methodProperties.json b/repository/Grease-Core.package/GRInvalidArgumentCount.class/methodProperties.json new file mode 100644 index 00000000..0e4a6622 --- /dev/null +++ b/repository/Grease-Core.package/GRInvalidArgumentCount.class/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + } } diff --git a/repository/Grease-Core.package/GRInvalidArgumentCount.class/properties.json b/repository/Grease-Core.package/GRInvalidArgumentCount.class/properties.json index 8704ce3f..3c788a0a 100644 --- a/repository/Grease-Core.package/GRInvalidArgumentCount.class/properties.json +++ b/repository/Grease-Core.package/GRInvalidArgumentCount.class/properties.json @@ -1,11 +1,14 @@ { - "commentStamp" : "jf 3/14/2009 11:05", - "super" : "GRError", "category" : "Grease-Core-Utilities", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], - "instvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "jf 3/14/2009 11:05", + "instvars" : [ + ], "name" : "GRInvalidArgumentCount", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRError", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRInvalidUtf8Error.class/methodProperties.json b/repository/Grease-Core.package/GRInvalidUtf8Error.class/methodProperties.json new file mode 100644 index 00000000..0e4a6622 --- /dev/null +++ b/repository/Grease-Core.package/GRInvalidUtf8Error.class/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + } } diff --git a/repository/Grease-Core.package/GRInvalidUtf8Error.class/properties.json b/repository/Grease-Core.package/GRInvalidUtf8Error.class/properties.json index 3b9f7552..0e69e8d6 100644 --- a/repository/Grease-Core.package/GRInvalidUtf8Error.class/properties.json +++ b/repository/Grease-Core.package/GRInvalidUtf8Error.class/properties.json @@ -1,11 +1,14 @@ { - "commentStamp" : "pmm 1/10/2009 22:29", - "super" : "GRError", "category" : "Grease-Core-Text", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], - "instvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "pmm 1/10/2009 22:29", + "instvars" : [ + ], "name" : "GRInvalidUtf8Error", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRError", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRMappedPrinter.class/methodProperties.json b/repository/Grease-Core.package/GRMappedPrinter.class/methodProperties.json new file mode 100644 index 00000000..4da90abf --- /dev/null +++ b/repository/Grease-Core.package/GRMappedPrinter.class/methodProperties.json @@ -0,0 +1,8 @@ +{ + "class" : { + "block:next:" : " 10/11/2020 07:23:50" }, + "instance" : { + "block:" : " 10/11/2020 07:23:50", + "initialize" : " 10/11/2020 07:23:50", + "next:" : " 10/11/2020 07:23:50", + "print:on:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRMappedPrinter.class/properties.json b/repository/Grease-Core.package/GRMappedPrinter.class/properties.json index 8d00da71..668181c1 100644 --- a/repository/Grease-Core.package/GRMappedPrinter.class/properties.json +++ b/repository/Grease-Core.package/GRMappedPrinter.class/properties.json @@ -1,14 +1,15 @@ { - "commentStamp" : "", - "super" : "GRPrinter", "category" : "Grease-Core-Text", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "", "instvars" : [ "next", - "block" - ], + "block" ], "name" : "GRMappedPrinter", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRPrinter", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRNotification.class/methodProperties.json b/repository/Grease-Core.package/GRNotification.class/methodProperties.json new file mode 100644 index 00000000..0e4a6622 --- /dev/null +++ b/repository/Grease-Core.package/GRNotification.class/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + } } diff --git a/repository/Grease-Core.package/GRNotification.class/properties.json b/repository/Grease-Core.package/GRNotification.class/properties.json index 9343c7c2..8e0efeb2 100644 --- a/repository/Grease-Core.package/GRNotification.class/properties.json +++ b/repository/Grease-Core.package/GRNotification.class/properties.json @@ -1,11 +1,14 @@ { - "commentStamp" : "pmm 9/14/2013 15:50", - "super" : "Notification", "category" : "Grease-Core-Exceptions", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], - "instvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "pmm 9/14/2013 15:50", + "instvars" : [ + ], "name" : "GRNotification", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "Notification", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRNotificationBasedDynamicVariable.class/methodProperties.json b/repository/Grease-Core.package/GRNotificationBasedDynamicVariable.class/methodProperties.json new file mode 100644 index 00000000..5076624c --- /dev/null +++ b/repository/Grease-Core.package/GRNotificationBasedDynamicVariable.class/methodProperties.json @@ -0,0 +1,7 @@ +{ + "class" : { + "defaultValue" : " 10/11/2020 07:23:50", + "use:during:" : " 10/11/2020 07:23:50", + "value" : " 10/11/2020 07:23:50" }, + "instance" : { + "defaultAction" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRNotificationBasedDynamicVariable.class/properties.json b/repository/Grease-Core.package/GRNotificationBasedDynamicVariable.class/properties.json index ae53018e..5af61a58 100644 --- a/repository/Grease-Core.package/GRNotificationBasedDynamicVariable.class/properties.json +++ b/repository/Grease-Core.package/GRNotificationBasedDynamicVariable.class/properties.json @@ -1,11 +1,14 @@ { - "commentStamp" : "pmm 9/5/2017 14:34", - "super" : "GRNotification", "category" : "Grease-Core-Utilities", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], - "instvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "pmm 9/5/2017 14:34", + "instvars" : [ + ], "name" : "GRNotificationBasedDynamicVariable", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRNotification", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRNullCodec.class/methodProperties.json b/repository/Grease-Core.package/GRNullCodec.class/methodProperties.json new file mode 100644 index 00000000..2ff00a10 --- /dev/null +++ b/repository/Grease-Core.package/GRNullCodec.class/methodProperties.json @@ -0,0 +1,13 @@ +{ + "class" : { + "basicForEncoding:" : " 10/11/2020 07:23:50", + "codecName" : " 10/11/2020 07:23:50", + "codecs" : " 10/11/2020 07:23:50", + "supportsEncoding:" : " 10/11/2020 07:23:50" }, + "instance" : { + "decode:" : " 10/11/2020 07:23:50", + "decoderFor:" : " 10/11/2020 07:23:50", + "encode:" : " 10/11/2020 07:23:50", + "encoderFor:" : " 10/11/2020 07:23:50", + "name" : " 10/11/2020 07:23:50", + "url" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRNullCodec.class/properties.json b/repository/Grease-Core.package/GRNullCodec.class/properties.json index 508887e5..fa5681d4 100644 --- a/repository/Grease-Core.package/GRNullCodec.class/properties.json +++ b/repository/Grease-Core.package/GRNullCodec.class/properties.json @@ -1,11 +1,14 @@ { - "commentStamp" : "pmm 9/14/2013 15:52", - "super" : "GRCodec", "category" : "Grease-Core-Text", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], - "instvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "pmm 9/14/2013 15:52", + "instvars" : [ + ], "name" : "GRNullCodec", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRCodec", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRNullCodecStream.class/methodProperties.json b/repository/Grease-Core.package/GRNullCodecStream.class/methodProperties.json new file mode 100644 index 00000000..63cefe92 --- /dev/null +++ b/repository/Grease-Core.package/GRNullCodecStream.class/methodProperties.json @@ -0,0 +1,8 @@ +{ + "class" : { + }, + "instance" : { + "next" : " 10/11/2020 07:23:50", + "next:" : " 10/11/2020 07:23:50", + "nextPut:" : " 10/11/2020 07:23:50", + "nextPutAll:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRNullCodecStream.class/properties.json b/repository/Grease-Core.package/GRNullCodecStream.class/properties.json index 7cb6efa1..b02e8099 100644 --- a/repository/Grease-Core.package/GRNullCodecStream.class/properties.json +++ b/repository/Grease-Core.package/GRNullCodecStream.class/properties.json @@ -1,11 +1,14 @@ { - "commentStamp" : "pmm 6/25/2012 20:21", - "super" : "GRCodecStream", "category" : "Grease-Core-Text", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], - "instvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "pmm 2/20/2009 21:59", + "instvars" : [ + ], "name" : "GRNullCodecStream", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRCodecStream", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRNumberPrinter.class/methodProperties.json b/repository/Grease-Core.package/GRNumberPrinter.class/methodProperties.json new file mode 100644 index 00000000..09c4eabc --- /dev/null +++ b/repository/Grease-Core.package/GRNumberPrinter.class/methodProperties.json @@ -0,0 +1,29 @@ +{ + "class" : { + "initialize" : " 10/11/2020 07:23:50" }, + "instance" : { + "accuracy:" : " 10/11/2020 07:23:50", + "base:" : " 10/11/2020 07:23:50", + "characters:" : " 10/11/2020 07:23:50", + "delimiter:" : " 10/11/2020 07:23:50", + "digits:" : " 10/11/2020 07:23:50", + "digitsOf:base:" : " 10/11/2020 07:23:50", + "infinite:" : " 10/11/2020 07:23:50", + "initialize" : " 10/11/2020 07:23:50", + "lengthOf:base:" : " 10/11/2020 07:23:50", + "lowercase" : " 10/11/2020 07:23:50", + "nan:" : " 10/11/2020 07:23:50", + "padLeft:to:on:" : " 10/11/2020 07:23:50", + "padding:" : " 10/11/2020 07:23:50", + "precision:" : " 10/11/2020 07:23:50", + "print:on:" : " 10/11/2020 07:23:50", + "printDigitsOf:withLength:on:" : " 10/11/2020 07:23:50", + "printFloat:on:" : " 10/11/2020 07:23:50", + "printFraction:on:" : " 10/11/2020 07:23:50", + "printInfinite:on:" : " 10/11/2020 07:23:50", + "printInteger:on:" : " 10/11/2020 07:23:50", + "printNaN:on:" : " 10/11/2020 07:23:50", + "separate:left:on:" : " 10/11/2020 07:23:50", + "separate:right:" : " 10/11/2020 07:23:50", + "separator:" : " 10/11/2020 07:23:50", + "uppercase" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRNumberPrinter.class/properties.json b/repository/Grease-Core.package/GRNumberPrinter.class/properties.json index a3ea64f8..09dc6c1c 100644 --- a/repository/Grease-Core.package/GRNumberPrinter.class/properties.json +++ b/repository/Grease-Core.package/GRNumberPrinter.class/properties.json @@ -1,13 +1,11 @@ { - "commentStamp" : "pmm 2/1/2014 13:27", - "super" : "GRPrinter", "category" : "Grease-Core-Text", - "classinstvars" : [ ], - "pools" : [ ], + "classinstvars" : [ + ], "classvars" : [ "NumbersToCharactersLowercase", - "NumbersToCharactersUppercase" - ], + "NumbersToCharactersUppercase" ], + "commentStamp" : "pmm 2/1/2014 13:27", "instvars" : [ "characters", "base", @@ -18,8 +16,9 @@ "padding", "accuracy", "precision", - "separator" - ], + "separator" ], "name" : "GRNumberPrinter", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRPrinter", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRObject.class/methodProperties.json b/repository/Grease-Core.package/GRObject.class/methodProperties.json new file mode 100644 index 00000000..a5d39002 --- /dev/null +++ b/repository/Grease-Core.package/GRObject.class/methodProperties.json @@ -0,0 +1,8 @@ +{ + "class" : { + "defaultErrorClass" : " 10/11/2020 07:23:50", + "error:" : " 10/11/2020 07:23:50", + "new" : " 10/11/2020 07:23:50" }, + "instance" : { + "error:" : " 10/11/2020 07:23:50", + "initialize" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRObject.class/properties.json b/repository/Grease-Core.package/GRObject.class/properties.json index aae31ac4..f4ddbcbd 100644 --- a/repository/Grease-Core.package/GRObject.class/properties.json +++ b/repository/Grease-Core.package/GRObject.class/properties.json @@ -1,11 +1,14 @@ { - "commentStamp" : "pmm 9/14/2013 15:52", - "super" : "Object", "category" : "Grease-Core", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], - "instvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "pmm 9/14/2013 15:52", + "instvars" : [ + ], "name" : "GRObject", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "Object", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GROrderedMultiMap.class/methodProperties.json b/repository/Grease-Core.package/GROrderedMultiMap.class/methodProperties.json new file mode 100644 index 00000000..85ce3543 --- /dev/null +++ b/repository/Grease-Core.package/GROrderedMultiMap.class/methodProperties.json @@ -0,0 +1,12 @@ +{ + "class" : { + }, + "instance" : { + "add:" : " 10/11/2020 07:23:50", + "addAll:" : " 10/11/2020 07:23:50", + "allAt:" : " 10/11/2020 07:23:50", + "allAt:ifAbsent:" : " 10/11/2020 07:23:50", + "at:add:" : " 10/11/2020 07:23:50", + "keysAndAllValuesDo:" : " 10/11/2020 07:23:50", + "privateAllAt:startingAt:" : " 10/11/2020 07:23:50", + "removeKey:ifAbsent:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GROrderedMultiMap.class/properties.json b/repository/Grease-Core.package/GROrderedMultiMap.class/properties.json index 81f5ae5d..d9c9d2f1 100644 --- a/repository/Grease-Core.package/GROrderedMultiMap.class/properties.json +++ b/repository/Grease-Core.package/GROrderedMultiMap.class/properties.json @@ -1,11 +1,14 @@ { - "commentStamp" : "jf 2/15/2010 16:04", - "super" : "GRSmallDictionary", "category" : "Grease-Core-Collections", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], - "instvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "jf 2/15/2010 16:04", + "instvars" : [ + ], "name" : "GROrderedMultiMap", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRSmallDictionary", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GROrderedMultiMap2.class/methodProperties.json b/repository/Grease-Core.package/GROrderedMultiMap2.class/methodProperties.json new file mode 100644 index 00000000..85ce3543 --- /dev/null +++ b/repository/Grease-Core.package/GROrderedMultiMap2.class/methodProperties.json @@ -0,0 +1,12 @@ +{ + "class" : { + }, + "instance" : { + "add:" : " 10/11/2020 07:23:50", + "addAll:" : " 10/11/2020 07:23:50", + "allAt:" : " 10/11/2020 07:23:50", + "allAt:ifAbsent:" : " 10/11/2020 07:23:50", + "at:add:" : " 10/11/2020 07:23:50", + "keysAndAllValuesDo:" : " 10/11/2020 07:23:50", + "privateAllAt:startingAt:" : " 10/11/2020 07:23:50", + "removeKey:ifAbsent:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GROrderedMultiMap2.class/properties.json b/repository/Grease-Core.package/GROrderedMultiMap2.class/properties.json index b4aecc33..19872e9e 100644 --- a/repository/Grease-Core.package/GROrderedMultiMap2.class/properties.json +++ b/repository/Grease-Core.package/GROrderedMultiMap2.class/properties.json @@ -1,11 +1,14 @@ { - "commentStamp" : "jf 2/15/2010 16:04", - "super" : "GRSmallDictionary2", "category" : "Grease-Core-Collections", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], - "instvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "jf 2/15/2010 16:04", + "instvars" : [ + ], "name" : "GROrderedMultiMap2", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRSmallDictionary2", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GROrdinalizePrinter.class/methodProperties.json b/repository/Grease-Core.package/GROrdinalizePrinter.class/methodProperties.json new file mode 100644 index 00000000..209d3c2e --- /dev/null +++ b/repository/Grease-Core.package/GROrdinalizePrinter.class/methodProperties.json @@ -0,0 +1,6 @@ +{ + "class" : { + }, + "instance" : { + "ordinalize:" : " 10/11/2020 07:23:50", + "print:on:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GROrdinalizePrinter.class/properties.json b/repository/Grease-Core.package/GROrdinalizePrinter.class/properties.json index 76be2fb0..12ee98f9 100644 --- a/repository/Grease-Core.package/GROrdinalizePrinter.class/properties.json +++ b/repository/Grease-Core.package/GROrdinalizePrinter.class/properties.json @@ -1,11 +1,14 @@ { - "commentStamp" : "", - "super" : "GRPrinter", "category" : "Grease-Core-Text", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], - "instvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "", + "instvars" : [ + ], "name" : "GROrdinalizePrinter", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRPrinter", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRPackage.class/methodProperties.json b/repository/Grease-Core.package/GRPackage.class/methodProperties.json new file mode 100644 index 00000000..1dcb4af7 --- /dev/null +++ b/repository/Grease-Core.package/GRPackage.class/methodProperties.json @@ -0,0 +1,26 @@ +{ + "class" : { + "grPackages" : " 10/11/2020 07:23:50", + "greaseCore" : " 10/11/2020 07:23:50" }, + "instance" : { + "addDependenciesTo:" : " 10/11/2020 07:23:50", + "addDependency:" : " 10/11/2020 07:23:50", + "allDependencies" : " 10/11/2020 07:23:50", + "dependencies" : " 10/11/2020 07:23:50", + "description" : " 10/11/2020 07:23:50", + "description:" : " 10/11/2020 07:23:50", + "greaseUrl" : " 10/11/2020 07:23:50", + "initialize" : " 10/11/2020 07:23:50", + "isLGPL" : " 10/11/2020 07:23:50", + "isMIT" : " 10/11/2020 07:23:50", + "license" : " 10/11/2020 07:23:50", + "license:" : " 10/11/2020 07:23:50", + "name" : " 10/11/2020 07:23:50", + "name:" : " 10/11/2020 07:23:50", + "printOn:" : " 10/11/2020 07:23:50", + "resolveWith:" : " 10/11/2020 07:23:50", + "seasideAddonsUrl" : " 10/11/2020 07:23:50", + "seasideLGPLUrl" : " 10/11/2020 07:23:50", + "seasideUrl" : " 10/11/2020 07:23:50", + "url" : " 10/11/2020 07:23:50", + "url:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRPackage.class/properties.json b/repository/Grease-Core.package/GRPackage.class/properties.json index 8801d64b..cbe1dc62 100644 --- a/repository/Grease-Core.package/GRPackage.class/properties.json +++ b/repository/Grease-Core.package/GRPackage.class/properties.json @@ -1,17 +1,18 @@ { - "commentStamp" : "pmm 9/14/2013 15:53", - "super" : "GRObject", "category" : "Grease-Core", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "pmm 9/14/2013 15:53", "instvars" : [ "name", "description", "dependencies", "license", - "url" - ], + "url" ], "name" : "GRPackage", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRObject", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRPlatform.class/instance/fileExists..st b/repository/Grease-Core.package/GRPlatform.class/instance/fileExists..st index cb7b3e56..fe0b42f0 100644 --- a/repository/Grease-Core.package/GRPlatform.class/instance/fileExists..st +++ b/repository/Grease-Core.package/GRPlatform.class/instance/fileExists..st @@ -1,3 +1,3 @@ file library fileExists: aString - self subclassResponsibility \ No newline at end of file + self subclassResponsibility \ No newline at end of file diff --git a/repository/Grease-Core.package/GRPlatform.class/instance/fileStreamOn.do.binary..st b/repository/Grease-Core.package/GRPlatform.class/instance/fileStreamOn.do.binary..st index b35e040c..a0ba0b4b 100644 --- a/repository/Grease-Core.package/GRPlatform.class/instance/fileStreamOn.do.binary..st +++ b/repository/Grease-Core.package/GRPlatform.class/instance/fileStreamOn.do.binary..st @@ -1,3 +1,3 @@ file library fileStreamOn: aString do: aBlock binary: aBoolean - self subclassResponsibility \ No newline at end of file + self subclassResponsibility \ No newline at end of file diff --git a/repository/Grease-Core.package/GRPlatform.class/methodProperties.json b/repository/Grease-Core.package/GRPlatform.class/methodProperties.json new file mode 100644 index 00000000..f812edbe --- /dev/null +++ b/repository/Grease-Core.package/GRPlatform.class/methodProperties.json @@ -0,0 +1,45 @@ +{ + "class" : { + "current" : " 10/11/2020 07:23:50", + "current:" : " 10/11/2020 07:23:50", + "select" : " 10/11/2020 07:23:50", + "unselect" : " 10/11/2020 07:23:50" }, + "instance" : { + "addToShutDownList:" : " 10/11/2020 07:23:50", + "addToStartUpList:" : " 10/11/2020 07:23:50", + "asMethodReturningByteArray:named:" : " 10/11/2020 07:23:50", + "base64Decode:" : " 10/11/2020 07:23:50", + "bindingOf:" : " 10/11/2020 07:23:50", + "compile:into:classified:" : " 10/11/2020 07:23:50", + "contentsOfFile:binary:" : " 10/11/2020 07:23:50", + "convertToSmalltalkNewlines:" : " 10/11/2020 07:23:50", + "deprecationExceptionSet" : " 10/11/2020 07:23:50", + "directoriesIn:" : " 10/11/2020 07:23:50", + "doTransaction:" : " 10/11/2020 07:23:50", + "ensureExistenceOfFolder:" : " 10/11/2020 07:23:50", + "fileExists:" : " 10/11/2020 07:23:50", + "fileStreamOn:do:binary:" : " 10/11/2020 07:23:50", + "filesIn:" : " 10/11/2020 07:23:50", + "isProcessTerminated:" : " 10/11/2020 07:23:50", + "label" : " 10/11/2020 07:23:50", + "localNameOf:" : " 10/11/2020 07:23:50", + "newRandom" : " 10/11/2020 07:23:50", + "newline" : " 10/11/2020 07:23:50", + "openDebuggerOn:" : " 10/11/2020 07:23:50", + "pathSeparator" : " 10/11/2020 07:23:50", + "readWriteByteStream" : " 10/11/2020 07:23:50", + "readWriteCharacterStream" : " 10/11/2020 07:23:50", + "reducedConflictDictionary" : " 10/11/2020 07:23:50", + "removeFromShutDownList:" : " 10/11/2020 07:23:50", + "removeFromStartUpList:" : " 10/11/2020 07:23:50", + "removeSelector:from:" : " 10/11/2020 07:23:50", + "secureHashFor:" : " 10/11/2020 07:23:50", + "semaphoreClass" : " 10/11/2020 07:23:50", + "stackDepth" : " 10/11/2020 07:23:50", + "terminateProcess:" : " 10/11/2020 07:23:50", + "thisContext" : " 10/11/2020 07:23:50", + "version" : " 10/11/2020 07:23:50", + "versionString" : " 10/11/2020 07:23:50", + "weakDictionaryOfSize:" : " 10/11/2020 07:23:50", + "write:toFile:inFolder:" : " 10/11/2020 07:23:50", + "writeCharacterStreamOn:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRPlatform.class/properties.json b/repository/Grease-Core.package/GRPlatform.class/properties.json index 35cf678d..8947cf98 100644 --- a/repository/Grease-Core.package/GRPlatform.class/properties.json +++ b/repository/Grease-Core.package/GRPlatform.class/properties.json @@ -1,13 +1,14 @@ { - "commentStamp" : "jf 2/6/2009 16:05", - "super" : "GRObject", "category" : "Grease-Core", - "classinstvars" : [ ], - "pools" : [ ], + "classinstvars" : [ + ], "classvars" : [ - "Current" - ], - "instvars" : [ ], + "Current" ], + "commentStamp" : "jf 2/6/2009 16:05", + "instvars" : [ + ], "name" : "GRPlatform", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRObject", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRPluggablePrinter.class/methodProperties.json b/repository/Grease-Core.package/GRPluggablePrinter.class/methodProperties.json new file mode 100644 index 00000000..9e57849d --- /dev/null +++ b/repository/Grease-Core.package/GRPluggablePrinter.class/methodProperties.json @@ -0,0 +1,7 @@ +{ + "class" : { + "on:" : " 10/11/2020 07:23:50" }, + "instance" : { + "block:" : " 10/11/2020 07:23:50", + "initialize" : " 10/11/2020 07:23:50", + "print:on:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRPluggablePrinter.class/properties.json b/repository/Grease-Core.package/GRPluggablePrinter.class/properties.json index 3ab1e85a..f574ab93 100644 --- a/repository/Grease-Core.package/GRPluggablePrinter.class/properties.json +++ b/repository/Grease-Core.package/GRPluggablePrinter.class/properties.json @@ -1,13 +1,14 @@ { - "commentStamp" : "", - "super" : "GRPrinter", "category" : "Grease-Core-Text", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "", "instvars" : [ - "block" - ], + "block" ], "name" : "GRPluggablePrinter", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRPrinter", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRPrinter.class/methodProperties.json b/repository/Grease-Core.package/GRPrinter.class/methodProperties.json new file mode 100644 index 00000000..de1b2010 --- /dev/null +++ b/repository/Grease-Core.package/GRPrinter.class/methodProperties.json @@ -0,0 +1,46 @@ +{ + "class" : { + "abbreviatedMonthName" : " 10/11/2020 07:23:50", + "abbreviatedWeekName" : " 10/11/2020 07:23:50", + "absOffsetHoursPadded" : " 10/11/2020 07:23:50", + "absOffsetMinutesPadded" : " 10/11/2020 07:23:50", + "binaryFileSize" : " 10/11/2020 07:23:50", + "cookieTimestamp" : " 10/11/2020 07:23:50", + "decimalFileSize" : " 10/11/2020 07:23:50", + "fullMonthName" : " 10/11/2020 07:23:50", + "fullWeekName" : " 10/11/2020 07:23:50", + "httpDate" : " 10/11/2020 07:23:50", + "isoDate" : " 10/11/2020 07:23:50", + "isoTime" : " 10/11/2020 07:23:50", + "monthName:" : " 10/11/2020 07:23:50", + "numberWithAtLeastDigits:" : " 10/11/2020 07:23:50", + "offsetSign" : " 10/11/2020 07:23:50", + "paddedCentury" : " 10/11/2020 07:23:50", + "paddedDay" : " 10/11/2020 07:23:50", + "paddedHour12" : " 10/11/2020 07:23:50", + "paddedHour24" : " 10/11/2020 07:23:50", + "paddedMinute" : " 10/11/2020 07:23:50", + "paddedMonth" : " 10/11/2020 07:23:50", + "paddedSecond" : " 10/11/2020 07:23:50", + "paddedYear" : " 10/11/2020 07:23:50", + "rfc1123" : " 10/11/2020 07:23:50", + "rfc822" : " 10/11/2020 07:23:50", + "rfc822WithTimeZone:" : " 10/11/2020 07:23:50", + "swissCurrency" : " 10/11/2020 07:23:50", + "unpaddedCentury" : " 10/11/2020 07:23:50", + "unpaddedDay" : " 10/11/2020 07:23:50", + "unpaddedHour12" : " 10/11/2020 07:23:50", + "unpaddedHour24" : " 10/11/2020 07:23:50", + "unpaddedMinute" : " 10/11/2020 07:23:50", + "unpaddedMonth" : " 10/11/2020 07:23:50", + "unpaddedSecond" : " 10/11/2020 07:23:50", + "unpaddedYear" : " 10/11/2020 07:23:50", + "usCurrency" : " 10/11/2020 07:23:50", + "weekName:" : " 10/11/2020 07:23:50" }, + "instance" : { + "," : " 10/11/2020 07:23:50", + "pad:center:to:" : " 10/11/2020 07:23:50", + "pad:left:to:" : " 10/11/2020 07:23:50", + "pad:right:to:" : " 10/11/2020 07:23:50", + "print:" : " 10/11/2020 07:23:50", + "print:on:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRPrinter.class/properties.json b/repository/Grease-Core.package/GRPrinter.class/properties.json index 5a6bf772..99000cf2 100644 --- a/repository/Grease-Core.package/GRPrinter.class/properties.json +++ b/repository/Grease-Core.package/GRPrinter.class/properties.json @@ -1,11 +1,14 @@ { - "commentStamp" : "", - "super" : "GRObject", "category" : "Grease-Core-Text", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], - "instvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "", + "instvars" : [ + ], "name" : "GRPrinter", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRObject", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRSequentialPrinter.class/methodProperties.json b/repository/Grease-Core.package/GRSequentialPrinter.class/methodProperties.json new file mode 100644 index 00000000..c1edaef8 --- /dev/null +++ b/repository/Grease-Core.package/GRSequentialPrinter.class/methodProperties.json @@ -0,0 +1,7 @@ +{ + "class" : { + }, + "instance" : { + "," : " 10/11/2020 07:23:50", + "initialize" : " 10/11/2020 07:23:50", + "print:on:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRSequentialPrinter.class/properties.json b/repository/Grease-Core.package/GRSequentialPrinter.class/properties.json index 2b409dea..a3e6728e 100644 --- a/repository/Grease-Core.package/GRSequentialPrinter.class/properties.json +++ b/repository/Grease-Core.package/GRSequentialPrinter.class/properties.json @@ -1,13 +1,14 @@ { - "commentStamp" : "", - "super" : "GRPrinter", "category" : "Grease-Core-Text", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "", "instvars" : [ - "parts" - ], + "parts" ], "name" : "GRSequentialPrinter", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRPrinter", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRSignPrinter.class/methodProperties.json b/repository/Grease-Core.package/GRSignPrinter.class/methodProperties.json new file mode 100644 index 00000000..37422896 --- /dev/null +++ b/repository/Grease-Core.package/GRSignPrinter.class/methodProperties.json @@ -0,0 +1,8 @@ +{ + "class" : { + }, + "instance" : { + "initialize" : " 10/11/2020 07:23:50", + "negativePrinter:" : " 10/11/2020 07:23:50", + "positivePrinter:" : " 10/11/2020 07:23:50", + "print:on:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRSignPrinter.class/properties.json b/repository/Grease-Core.package/GRSignPrinter.class/properties.json index 498737bc..d99f010c 100644 --- a/repository/Grease-Core.package/GRSignPrinter.class/properties.json +++ b/repository/Grease-Core.package/GRSignPrinter.class/properties.json @@ -1,14 +1,15 @@ { - "commentStamp" : "", - "super" : "GRPrinter", "category" : "Grease-Core-Text", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "", "instvars" : [ "negativePrinter", - "positivePrinter" - ], + "positivePrinter" ], "name" : "GRSignPrinter", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRPrinter", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRSmallDictionary.class/instance/printOn..st b/repository/Grease-Core.package/GRSmallDictionary.class/instance/printOn..st index 4bd38c36..9138b7f5 100644 --- a/repository/Grease-Core.package/GRSmallDictionary.class/instance/printOn..st +++ b/repository/Grease-Core.package/GRSmallDictionary.class/instance/printOn..st @@ -20,4 +20,4 @@ printOn: aStream aStream nextPutAll: 'size '; print: self size ]. - aStream nextPut: $) \ No newline at end of file + aStream nextPut: $) \ No newline at end of file diff --git a/repository/Grease-Core.package/GRSmallDictionary.class/methodProperties.json b/repository/Grease-Core.package/GRSmallDictionary.class/methodProperties.json new file mode 100644 index 00000000..f5d8caac --- /dev/null +++ b/repository/Grease-Core.package/GRSmallDictionary.class/methodProperties.json @@ -0,0 +1,40 @@ +{ + "class" : { + "new" : " 10/11/2020 07:23:50", + "new:" : " 10/11/2020 07:23:50", + "withAll:" : " 10/11/2020 07:23:50" }, + "instance" : { + "add:" : " 10/11/2020 07:23:50", + "addAll:" : " 10/11/2020 07:23:50", + "any" : " 10/11/2020 07:23:50", + "associations" : " 10/11/2020 07:23:50", + "associationsDo:" : " 10/11/2020 07:23:50", + "at:" : " 10/11/2020 07:23:50", + "at:ifAbsent:" : " 10/11/2020 07:23:50", + "at:ifAbsentPut:" : " 10/11/2020 07:23:50", + "at:ifPresent:" : " 10/11/2020 07:23:50", + "at:put:" : " 10/11/2020 07:23:50", + "do:" : " 10/11/2020 07:23:50", + "errorEmptyCollection" : " 10/11/2020 07:23:50", + "errorKeyNotFound" : " 10/11/2020 07:23:50", + "findIndexFor:" : " 10/11/2020 07:23:50", + "grow" : " 10/11/2020 07:23:50", + "includesKey:" : " 10/11/2020 07:23:50", + "initialize:" : " 10/11/2020 07:23:50", + "isCollection" : " 10/11/2020 07:23:50", + "isEmpty" : " 10/11/2020 07:23:50", + "keys" : " 10/11/2020 07:23:50", + "keysAndValuesDo:" : " 10/11/2020 07:23:50", + "keysDo:" : " 10/11/2020 07:23:50", + "noneSatisfy:" : " 10/11/2020 07:23:50", + "notEmpty" : " 10/11/2020 07:23:50", + "postCopy" : " 10/11/2020 07:23:50", + "printOn:" : " 10/11/2020 07:23:50", + "privateAt:put:" : " 10/11/2020 07:23:50", + "removeIndex:" : " 10/11/2020 07:23:50", + "removeKey:" : " 10/11/2020 07:23:50", + "removeKey:ifAbsent:" : " 10/11/2020 07:23:50", + "size" : " 10/11/2020 07:23:50", + "sorted" : " 10/11/2020 07:23:50", + "sorted:" : " 10/11/2020 07:23:50", + "values" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRSmallDictionary.class/properties.json b/repository/Grease-Core.package/GRSmallDictionary.class/properties.json index 1019d4ab..5550a4ab 100644 --- a/repository/Grease-Core.package/GRSmallDictionary.class/properties.json +++ b/repository/Grease-Core.package/GRSmallDictionary.class/properties.json @@ -1,15 +1,16 @@ { - "commentStamp" : "jf 2/15/2010 15:51", - "super" : "GRObject", "category" : "Grease-Core-Collections", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "jf 2/15/2010 15:51", "instvars" : [ "size", "keys", - "values" - ], + "values" ], "name" : "GRSmallDictionary", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRObject", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRSmallDictionary2.class/instance/printOn..st b/repository/Grease-Core.package/GRSmallDictionary2.class/instance/printOn..st index 4bd38c36..9138b7f5 100644 --- a/repository/Grease-Core.package/GRSmallDictionary2.class/instance/printOn..st +++ b/repository/Grease-Core.package/GRSmallDictionary2.class/instance/printOn..st @@ -20,4 +20,4 @@ printOn: aStream aStream nextPutAll: 'size '; print: self size ]. - aStream nextPut: $) \ No newline at end of file + aStream nextPut: $) \ No newline at end of file diff --git a/repository/Grease-Core.package/GRSmallDictionary2.class/methodProperties.json b/repository/Grease-Core.package/GRSmallDictionary2.class/methodProperties.json new file mode 100644 index 00000000..f5d8caac --- /dev/null +++ b/repository/Grease-Core.package/GRSmallDictionary2.class/methodProperties.json @@ -0,0 +1,40 @@ +{ + "class" : { + "new" : " 10/11/2020 07:23:50", + "new:" : " 10/11/2020 07:23:50", + "withAll:" : " 10/11/2020 07:23:50" }, + "instance" : { + "add:" : " 10/11/2020 07:23:50", + "addAll:" : " 10/11/2020 07:23:50", + "any" : " 10/11/2020 07:23:50", + "associations" : " 10/11/2020 07:23:50", + "associationsDo:" : " 10/11/2020 07:23:50", + "at:" : " 10/11/2020 07:23:50", + "at:ifAbsent:" : " 10/11/2020 07:23:50", + "at:ifAbsentPut:" : " 10/11/2020 07:23:50", + "at:ifPresent:" : " 10/11/2020 07:23:50", + "at:put:" : " 10/11/2020 07:23:50", + "do:" : " 10/11/2020 07:23:50", + "errorEmptyCollection" : " 10/11/2020 07:23:50", + "errorKeyNotFound" : " 10/11/2020 07:23:50", + "findIndexFor:" : " 10/11/2020 07:23:50", + "grow" : " 10/11/2020 07:23:50", + "includesKey:" : " 10/11/2020 07:23:50", + "initialize:" : " 10/11/2020 07:23:50", + "isCollection" : " 10/11/2020 07:23:50", + "isEmpty" : " 10/11/2020 07:23:50", + "keys" : " 10/11/2020 07:23:50", + "keysAndValuesDo:" : " 10/11/2020 07:23:50", + "keysDo:" : " 10/11/2020 07:23:50", + "noneSatisfy:" : " 10/11/2020 07:23:50", + "notEmpty" : " 10/11/2020 07:23:50", + "postCopy" : " 10/11/2020 07:23:50", + "printOn:" : " 10/11/2020 07:23:50", + "privateAt:put:" : " 10/11/2020 07:23:50", + "removeIndex:" : " 10/11/2020 07:23:50", + "removeKey:" : " 10/11/2020 07:23:50", + "removeKey:ifAbsent:" : " 10/11/2020 07:23:50", + "size" : " 10/11/2020 07:23:50", + "sorted" : " 10/11/2020 07:23:50", + "sorted:" : " 10/11/2020 07:23:50", + "values" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRSmallDictionary2.class/properties.json b/repository/Grease-Core.package/GRSmallDictionary2.class/properties.json index ff3e5f02..313b9fc6 100644 --- a/repository/Grease-Core.package/GRSmallDictionary2.class/properties.json +++ b/repository/Grease-Core.package/GRSmallDictionary2.class/properties.json @@ -1,14 +1,15 @@ { - "commentStamp" : "pmm 8/22/2016 11:49", - "super" : "GRObject", "category" : "Grease-Core-Collections", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "pmm 8/22/2016 11:49", "instvars" : [ "size", - "table" - ], + "table" ], "name" : "GRSmallDictionary2", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRObject", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRSmallOrderedSet.class/methodProperties.json b/repository/Grease-Core.package/GRSmallOrderedSet.class/methodProperties.json new file mode 100644 index 00000000..189568d6 --- /dev/null +++ b/repository/Grease-Core.package/GRSmallOrderedSet.class/methodProperties.json @@ -0,0 +1,23 @@ +{ + "class" : { + "new" : " 10/11/2020 07:23:50", + "new:" : " 10/11/2020 07:23:50", + "withAll:" : " 10/11/2020 07:23:50" }, + "instance" : { + "add:" : " 10/11/2020 07:23:50", + "addAll:" : " 10/11/2020 07:23:50", + "do:" : " 10/11/2020 07:23:50", + "do:separatedBy:" : " 10/11/2020 07:23:50", + "errorNotFound" : " 10/11/2020 07:23:50", + "findIndexFor:" : " 10/11/2020 07:23:50", + "grow" : " 10/11/2020 07:23:50", + "includes:" : " 10/11/2020 07:23:50", + "initialize:" : " 10/11/2020 07:23:50", + "isCollection" : " 10/11/2020 07:23:50", + "isEmpty" : " 10/11/2020 07:23:50", + "postCopy" : " 10/11/2020 07:23:50", + "privateAdd:" : " 10/11/2020 07:23:50", + "remove:" : " 10/11/2020 07:23:50", + "remove:ifAbsent:" : " 10/11/2020 07:23:50", + "removeIndex:" : " 10/11/2020 07:23:50", + "size" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRSmallOrderedSet.class/properties.json b/repository/Grease-Core.package/GRSmallOrderedSet.class/properties.json index 6ca318aa..c32ab5c5 100644 --- a/repository/Grease-Core.package/GRSmallOrderedSet.class/properties.json +++ b/repository/Grease-Core.package/GRSmallOrderedSet.class/properties.json @@ -1,14 +1,15 @@ { - "commentStamp" : "pmm 8/25/2016 14:03", - "super" : "GRObject", "category" : "Grease-Core-Collections", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "pmm 8/25/2016 14:03", "instvars" : [ "size", - "table" - ], + "table" ], "name" : "GRSmallOrderedSet", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRObject", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRStringPrinter.class/methodProperties.json b/repository/Grease-Core.package/GRStringPrinter.class/methodProperties.json new file mode 100644 index 00000000..cc13f183 --- /dev/null +++ b/repository/Grease-Core.package/GRStringPrinter.class/methodProperties.json @@ -0,0 +1,16 @@ +{ + "class" : { + }, + "instance" : { + "character:" : " 10/11/2020 07:23:50", + "initialize" : " 10/11/2020 07:23:50", + "length:" : " 10/11/2020 07:23:50", + "padCenter" : " 10/11/2020 07:23:50", + "padLeft" : " 10/11/2020 07:23:50", + "padNone" : " 10/11/2020 07:23:50", + "padRight" : " 10/11/2020 07:23:50", + "print:on:" : " 10/11/2020 07:23:50", + "trimBoth" : " 10/11/2020 07:23:50", + "trimLeft" : " 10/11/2020 07:23:50", + "trimNone" : " 10/11/2020 07:23:50", + "trimRight" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRStringPrinter.class/properties.json b/repository/Grease-Core.package/GRStringPrinter.class/properties.json index 19d2dd05..30a330ed 100644 --- a/repository/Grease-Core.package/GRStringPrinter.class/properties.json +++ b/repository/Grease-Core.package/GRStringPrinter.class/properties.json @@ -1,16 +1,17 @@ { - "commentStamp" : "", - "super" : "GRPrinter", "category" : "Grease-Core-Text", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "", "instvars" : [ "trim", "length", "pad", - "character" - ], + "character" ], "name" : "GRStringPrinter", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRPrinter", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRUnboundMessage.class/methodProperties.json b/repository/Grease-Core.package/GRUnboundMessage.class/methodProperties.json new file mode 100644 index 00000000..e6b9e699 --- /dev/null +++ b/repository/Grease-Core.package/GRUnboundMessage.class/methodProperties.json @@ -0,0 +1,6 @@ +{ + "class" : { + }, + "instance" : { + "argumentCount" : " 10/11/2020 07:23:50", + "mergeArguments:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRUnboundMessage.class/properties.json b/repository/Grease-Core.package/GRUnboundMessage.class/properties.json index 01ffa8ba..88a35531 100644 --- a/repository/Grease-Core.package/GRUnboundMessage.class/properties.json +++ b/repository/Grease-Core.package/GRUnboundMessage.class/properties.json @@ -1,11 +1,14 @@ { - "commentStamp" : "jf 3/14/2009 11:03", - "super" : "GRDelayedSendMessage", "category" : "Grease-Core-Utilities", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], - "instvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "jf 3/14/2009 11:03", + "instvars" : [ + ], "name" : "GRUnboundMessage", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRDelayedSendMessage", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRUnitPrinter.class/methodProperties.json b/repository/Grease-Core.package/GRUnitPrinter.class/methodProperties.json new file mode 100644 index 00000000..095280dd --- /dev/null +++ b/repository/Grease-Core.package/GRUnitPrinter.class/methodProperties.json @@ -0,0 +1,11 @@ +{ + "class" : { + "base:units:" : " 10/11/2020 07:23:50" }, + "instance" : { + "base:" : " 10/11/2020 07:23:50", + "fractionPrinter:" : " 10/11/2020 07:23:50", + "initialize" : " 10/11/2020 07:23:50", + "integerPrinter:" : " 10/11/2020 07:23:50", + "print:on:" : " 10/11/2020 07:23:50", + "print:unit:on:" : " 10/11/2020 07:23:50", + "units:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRUnitPrinter.class/properties.json b/repository/Grease-Core.package/GRUnitPrinter.class/properties.json index 7db099ba..b76f7aaa 100644 --- a/repository/Grease-Core.package/GRUnitPrinter.class/properties.json +++ b/repository/Grease-Core.package/GRUnitPrinter.class/properties.json @@ -1,16 +1,17 @@ { - "commentStamp" : "", - "super" : "GRPrinter", "category" : "Grease-Core-Text", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "", "instvars" : [ "integerPrinter", "fractionPrinter", "units", - "base" - ], + "base" ], "name" : "GRUnitPrinter", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRPrinter", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRUnsupportedEncodingError.class/methodProperties.json b/repository/Grease-Core.package/GRUnsupportedEncodingError.class/methodProperties.json new file mode 100644 index 00000000..0e4a6622 --- /dev/null +++ b/repository/Grease-Core.package/GRUnsupportedEncodingError.class/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + } } diff --git a/repository/Grease-Core.package/GRUnsupportedEncodingError.class/properties.json b/repository/Grease-Core.package/GRUnsupportedEncodingError.class/properties.json index 3a2e3bef..5a8d1a1e 100644 --- a/repository/Grease-Core.package/GRUnsupportedEncodingError.class/properties.json +++ b/repository/Grease-Core.package/GRUnsupportedEncodingError.class/properties.json @@ -1,11 +1,14 @@ { - "commentStamp" : "", - "super" : "GRError", "category" : "Grease-Core-Text", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], - "instvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "", + "instvars" : [ + ], "name" : "GRUnsupportedEncodingError", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRError", + "type" : "normal" } diff --git a/repository/Grease-Core.package/GRVersion.class/instance/^less.st b/repository/Grease-Core.package/GRVersion.class/instance/^less.st index cb67510a..0f0d2853 100644 --- a/repository/Grease-Core.package/GRVersion.class/instance/^less.st +++ b/repository/Grease-Core.package/GRVersion.class/instance/^less.st @@ -10,6 +10,4 @@ comparing ^ ((stageNumber ifNil: [ 1 ]) < (otherVersion stageNumber ifNil: [ 1 ])) ]. stageLabel isNil ifTrue: [ ^ false ]. otherVersion stage isNil ifTrue: [ ^ true ]. - ^ stageLabel < otherVersion stage - - \ No newline at end of file + ^ stageLabel < otherVersion stage \ No newline at end of file diff --git a/repository/Grease-Core.package/GRVersion.class/methodProperties.json b/repository/Grease-Core.package/GRVersion.class/methodProperties.json new file mode 100644 index 00000000..274ab17f --- /dev/null +++ b/repository/Grease-Core.package/GRVersion.class/methodProperties.json @@ -0,0 +1,35 @@ +{ + "class" : { + "major:" : " 10/11/2020 07:23:50", + "major:minor:" : " 10/11/2020 07:23:50", + "major:minor:revision:" : " 10/11/2020 07:23:50", + "new" : " 10/11/2020 07:23:50" }, + "instance" : { + "<" : " 10/11/2020 07:23:50", + "<=" : " 10/11/2020 07:23:50", + "=" : " 10/11/2020 07:23:50", + ">" : " 10/11/2020 07:23:50", + ">=" : " 10/11/2020 07:23:50", + "beAlpha" : " 10/11/2020 07:23:50", + "beAlpha:" : " 10/11/2020 07:23:50", + "beBeta" : " 10/11/2020 07:23:50", + "beBeta:" : " 10/11/2020 07:23:50", + "beFinal" : " 10/11/2020 07:23:50", + "beReleaseCandidate" : " 10/11/2020 07:23:50", + "beReleaseCandidate:" : " 10/11/2020 07:23:50", + "greaseString" : " 10/11/2020 07:23:50", + "hash" : " 10/11/2020 07:23:50", + "initializeWithMajor:minor:revision:" : " 10/11/2020 07:23:50", + "isAlpha" : " 10/11/2020 07:23:50", + "isBeta" : " 10/11/2020 07:23:50", + "isFinal" : " 10/11/2020 07:23:50", + "isReleaseCandidate" : " 10/11/2020 07:23:50", + "major" : " 10/11/2020 07:23:50", + "major:" : " 10/11/2020 07:23:50", + "minor" : " 10/11/2020 07:23:50", + "minor:" : " 10/11/2020 07:23:50", + "revision" : " 10/11/2020 07:23:50", + "revision:" : " 10/11/2020 07:23:50", + "stage" : " 10/11/2020 07:23:50", + "stage:number:" : " 10/11/2020 07:23:50", + "stageNumber" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRVersion.class/properties.json b/repository/Grease-Core.package/GRVersion.class/properties.json index cb5256d0..9a1cffc3 100644 --- a/repository/Grease-Core.package/GRVersion.class/properties.json +++ b/repository/Grease-Core.package/GRVersion.class/properties.json @@ -1,17 +1,18 @@ { - "commentStamp" : "lr 2/19/2012 12:57", - "super" : "GRObject", "category" : "Grease-Core", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "lr 2/19/2012 12:57", "instvars" : [ "major", "minor", "revision", "stageLabel", - "stageNumber" - ], + "stageNumber" ], "name" : "GRVersion", - "type" : "normal" -} \ No newline at end of file + "pools" : [ + ], + "super" : "GRObject", + "type" : "normal" } diff --git a/repository/Grease-Core.package/Integer.extension/methodProperties.json b/repository/Grease-Core.package/Integer.extension/methodProperties.json new file mode 100644 index 00000000..c6850e64 --- /dev/null +++ b/repository/Grease-Core.package/Integer.extension/methodProperties.json @@ -0,0 +1,7 @@ +{ + "class" : { + }, + "instance" : { + "greaseInteger" : " 10/11/2020 07:23:50", + "pluralize:" : " 10/11/2020 07:23:50", + "pluralize:with:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/Integer.extension/properties.json b/repository/Grease-Core.package/Integer.extension/properties.json index a8c2b931..d27420be 100644 --- a/repository/Grease-Core.package/Integer.extension/properties.json +++ b/repository/Grease-Core.package/Integer.extension/properties.json @@ -1,3 +1,2 @@ { - "name" : "Integer" -} \ No newline at end of file + "name" : "Integer" } diff --git a/repository/Grease-Core.package/Number.extension/methodProperties.json b/repository/Grease-Core.package/Number.extension/methodProperties.json new file mode 100644 index 00000000..49bbc162 --- /dev/null +++ b/repository/Grease-Core.package/Number.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "greaseInteger" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/Number.extension/properties.json b/repository/Grease-Core.package/Number.extension/properties.json index 71dace88..1d2c94d4 100644 --- a/repository/Grease-Core.package/Number.extension/properties.json +++ b/repository/Grease-Core.package/Number.extension/properties.json @@ -1,3 +1,2 @@ { - "name" : "Number" -} \ No newline at end of file + "name" : "Number" } diff --git a/repository/Grease-Core.package/Object.extension/methodProperties.json b/repository/Grease-Core.package/Object.extension/methodProperties.json new file mode 100644 index 00000000..381d46ba --- /dev/null +++ b/repository/Grease-Core.package/Object.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "greaseDeprecatedApi:details:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/Object.extension/properties.json b/repository/Grease-Core.package/Object.extension/properties.json index f30a86e1..3d3b9ec4 100644 --- a/repository/Grease-Core.package/Object.extension/properties.json +++ b/repository/Grease-Core.package/Object.extension/properties.json @@ -1,3 +1,2 @@ { - "name" : "Object" -} \ No newline at end of file + "name" : "Object" } diff --git a/repository/Grease-Core.package/String.extension/methodProperties.json b/repository/Grease-Core.package/String.extension/methodProperties.json new file mode 100644 index 00000000..796d6476 --- /dev/null +++ b/repository/Grease-Core.package/String.extension/methodProperties.json @@ -0,0 +1,13 @@ +{ + "class" : { + }, + "instance" : { + "excerpt:" : " 10/11/2020 07:23:50", + "excerpt:radius:" : " 10/11/2020 07:23:50", + "excerpt:radius:ellipsis:" : " 10/11/2020 07:23:50", + "greaseInteger" : " 10/11/2020 07:23:50", + "pluralize" : " 10/11/2020 07:23:50", + "print:on:" : " 10/11/2020 07:23:50", + "truncate" : " 10/11/2020 07:23:50", + "truncate:" : " 10/11/2020 07:23:50", + "truncate:ellipsis:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/String.extension/properties.json b/repository/Grease-Core.package/String.extension/properties.json index b20f2de3..c2138507 100644 --- a/repository/Grease-Core.package/String.extension/properties.json +++ b/repository/Grease-Core.package/String.extension/properties.json @@ -1,3 +1,2 @@ { - "name" : "String" -} \ No newline at end of file + "name" : "String" } diff --git a/repository/Grease-Core.package/UndefinedObject.extension/methodProperties.json b/repository/Grease-Core.package/UndefinedObject.extension/methodProperties.json new file mode 100644 index 00000000..4c54bdcb --- /dev/null +++ b/repository/Grease-Core.package/UndefinedObject.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "print:on:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/UndefinedObject.extension/properties.json b/repository/Grease-Core.package/UndefinedObject.extension/properties.json index b2d2e562..508a24a8 100644 --- a/repository/Grease-Core.package/UndefinedObject.extension/properties.json +++ b/repository/Grease-Core.package/UndefinedObject.extension/properties.json @@ -1,3 +1,2 @@ { - "name" : "UndefinedObject" -} \ No newline at end of file + "name" : "UndefinedObject" } diff --git a/repository/Grease-Core.package/monticello.meta/version b/repository/Grease-Core.package/monticello.meta/version new file mode 100644 index 00000000..a859b494 --- /dev/null +++ b/repository/Grease-Core.package/monticello.meta/version @@ -0,0 +1 @@ +(name 'Grease-Core-JohanBrichau.2' message 'added missing ''codecs'' class methods' id 'ab9e5c12-2894-480f-99ae-8a59cce0b861' date '11/14/2020' time '01:37:11' author 'JohanBrichau' ancestors ((name 'Grease-Core-cypress.1' message 'fabricated from a Cypress format repository' id '715af6a5-d13a-4ce1-aea9-3ba5d383fe6a' date '10/11/2020' time '23:45:35' author '' ancestors () stepChildren ())) stepChildren ()) \ No newline at end of file diff --git a/repository/Grease-Core.package/properties.json b/repository/Grease-Core.package/properties.json index 6f31cf5a..f037444a 100644 --- a/repository/Grease-Core.package/properties.json +++ b/repository/Grease-Core.package/properties.json @@ -1 +1,2 @@ -{ } \ No newline at end of file +{ + } diff --git a/repository/Grease-GemStone-Core.package/Array.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Array.extension/methodProperties.json new file mode 100644 index 00000000..6142915c --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Array.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "beMutable" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Behavior.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Behavior.extension/methodProperties.json new file mode 100644 index 00000000..63647c72 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Behavior.extension/methodProperties.json @@ -0,0 +1,6 @@ +{ + "class" : { + }, + "instance" : { + "fullName" : " 10/11/2020 07:23:50", + "removeSelectorSilently:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/BinaryFloat.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/BinaryFloat.extension/methodProperties.json new file mode 100644 index 00000000..e505f664 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/BinaryFloat.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "greaseString" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/ByteArray.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/ByteArray.extension/methodProperties.json new file mode 100644 index 00000000..e505f664 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/ByteArray.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "greaseString" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Character.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Character.extension/methodProperties.json new file mode 100644 index 00000000..49bbc162 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Character.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "greaseInteger" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/CharacterCollection.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/CharacterCollection.extension/methodProperties.json new file mode 100644 index 00000000..f486ec75 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/CharacterCollection.extension/methodProperties.json @@ -0,0 +1,21 @@ +{ + "class" : { + }, + "instance" : { + "excerpt:" : " 10/11/2020 07:23:50", + "excerpt:radius:" : " 10/11/2020 07:23:50", + "excerpt:radius:ellipsis:" : " 10/11/2020 07:23:50", + "greaseInteger" : " 10/11/2020 07:23:50", + "pluralize" : " 10/11/2020 07:23:50", + "print:on:" : " 10/11/2020 07:23:50", + "substrings:" : " 10/11/2020 07:23:50", + "trimBoth" : " 10/11/2020 07:23:50", + "trimBoth:" : " 10/11/2020 07:23:50", + "trimLeft" : " 10/11/2020 07:23:50", + "trimLeft:" : " 10/11/2020 07:23:50", + "trimLeft:right:" : " 10/11/2020 07:23:50", + "trimRight" : " 10/11/2020 07:23:50", + "trimRight:" : " 10/11/2020 07:23:50", + "truncate" : " 10/11/2020 07:23:50", + "truncate:" : " 10/11/2020 07:23:50", + "truncate:ellipsis:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Collection.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Collection.extension/methodProperties.json new file mode 100644 index 00000000..d5d64984 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Collection.extension/methodProperties.json @@ -0,0 +1,7 @@ +{ + "class" : { + }, + "instance" : { + "any" : " 10/11/2020 07:23:50", + "sorted" : " 10/11/2020 07:23:50", + "sorted:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Date.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Date.extension/methodProperties.json new file mode 100644 index 00000000..51458723 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Date.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + "daysInMonthNumber:forYear:" : " 10/11/2020 07:23:50" }, + "instance" : { + } } diff --git a/repository/Grease-GemStone-Core.package/Dictionary.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Dictionary.extension/methodProperties.json new file mode 100644 index 00000000..59c1f401 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Dictionary.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "copyFrom:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/DoubleByteString.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/DoubleByteString.extension/methodProperties.json new file mode 100644 index 00000000..e505f664 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/DoubleByteString.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "greaseString" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Duration.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Duration.extension/methodProperties.json new file mode 100644 index 00000000..135f996d --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Duration.extension/methodProperties.json @@ -0,0 +1,6 @@ +{ + "class" : { + "milliseconds:" : " 10/11/2020 07:23:50" }, + "instance" : { + "asMilliseconds" : " 10/11/2020 07:23:50", + "milliseconds" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Exception.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Exception.extension/methodProperties.json new file mode 100644 index 00000000..0bec5698 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Exception.extension/methodProperties.json @@ -0,0 +1,7 @@ +{ + "class" : { + "raiseSignal" : " 10/11/2020 07:23:50", + "raiseSignal:" : " 10/11/2020 07:23:50" }, + "instance" : { + "raiseSignal" : " 10/11/2020 07:23:50", + "raiseSignal:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/GRDynamicVariable.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRDynamicVariable.class/methodProperties.json new file mode 100644 index 00000000..03da5426 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/GRDynamicVariable.class/methodProperties.json @@ -0,0 +1,8 @@ +{ + "class" : { + "default" : " 10/11/2020 07:23:50", + "defaultValue" : " 10/11/2020 07:23:50", + "use:during:" : " 10/11/2020 07:23:50", + "value" : " 10/11/2020 07:23:50" }, + "instance" : { + } } diff --git a/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/methodProperties.json new file mode 100644 index 00000000..6b5e60e2 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/methodProperties.json @@ -0,0 +1,49 @@ +{ + "class" : { + "initialize" : " 10/11/2020 07:23:50", + "unload" : " 10/11/2020 07:23:50" }, + "instance" : { + "addToShutDownList:" : " 10/11/2020 07:23:50", + "addToStartUpList:" : " 10/11/2020 07:23:50", + "asMethodReturningByteArray:named:" : " 10/11/2020 07:23:50", + "asMethodReturningString:named:" : " 10/11/2020 07:23:50", + "base64Decode:" : " 10/11/2020 07:23:50", + "compile:into:classified:" : " 10/11/2020 07:23:50", + "contentsOfFile:binary:" : " 10/11/2020 07:23:50", + "defaultDispatcherName" : " 10/11/2020 07:23:50", + "deprecationExceptionSet" : " 10/11/2020 07:23:50", + "directoriesIn:" : " 10/11/2020 07:23:50", + "doAbortTransaction" : " 10/11/2020 07:23:50", + "doBeginTransaction" : " 10/11/2020 07:23:50", + "doCommitTransaction" : " 10/11/2020 07:23:50", + "doTransaction:" : " 10/11/2020 07:23:50", + "ensureExistenceOfFolder:" : " 10/11/2020 07:23:50", + "fileExists:" : " 10/11/2020 07:23:50", + "fileStreamOn:do:binary:" : " 10/11/2020 07:23:50", + "filesIn:" : " 10/11/2020 07:23:50", + "isProcessTerminated:" : " 10/11/2020 07:23:50", + "label" : " 10/11/2020 07:23:50", + "localNameOf:" : " 10/11/2020 07:23:50", + "logError:title:" : " 10/11/2020 07:23:50", + "logError:title:shouldCommit:" : " 10/11/2020 07:23:50", + "newRandom" : " 10/11/2020 07:23:50", + "newline" : " 10/11/2020 07:23:50", + "openDebuggerOn:" : " 10/11/2020 07:23:50", + "pathSeparator" : " 10/11/2020 07:23:50", + "readWriteByteStream" : " 10/11/2020 07:23:50", + "readWriteCharacterStream" : " 10/11/2020 07:23:50", + "reducedConflictDictionary" : " 10/11/2020 07:23:50", + "removeFromShutDownList:" : " 10/11/2020 07:23:50", + "removeFromStartUpList:" : " 10/11/2020 07:23:50", + "removeSelector:from:" : " 10/11/2020 07:23:50", + "saveLogEntry:shouldCommit:" : " 10/11/2020 07:23:50", + "secureHashFor:" : " 10/11/2020 07:23:50", + "semaphoreClass" : " 10/11/2020 07:23:50", + "smtpServer" : " 10/11/2020 07:23:50", + "stackDepth" : " 10/11/2020 07:23:50", + "terminateProcess:" : " 10/11/2020 07:23:50", + "thisContext" : " 10/11/2020 07:23:50", + "transactionMutex" : " 10/11/2020 07:23:50", + "weakDictionaryOfSize:" : " 10/11/2020 07:23:50", + "write:toFile:inFolder:" : " 10/11/2020 07:23:50", + "writeCharacterStreamOn:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/GRGemStoneRandomProvider.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRGemStoneRandomProvider.class/methodProperties.json new file mode 100644 index 00000000..0d1cce31 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/GRGemStoneRandomProvider.class/methodProperties.json @@ -0,0 +1,11 @@ +{ + "class" : { + "generator" : " 10/11/2020 07:23:50", + "initialize" : " 10/11/2020 07:23:50", + "mutex" : " 10/11/2020 07:23:50", + "nextInt:" : " 10/11/2020 07:23:50", + "randomClass" : " 10/11/2020 07:23:50", + "randomFrom:" : " 10/11/2020 07:23:50", + "sessionStart" : " 10/11/2020 07:23:50" }, + "instance" : { + } } diff --git a/repository/Grease-GemStone-Core.package/GRLatin1GemStoneCodec.class/class/codecs.st b/repository/Grease-GemStone-Core.package/GRLatin1GemStoneCodec.class/class/codecs.st new file mode 100644 index 00000000..444b99e4 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/GRLatin1GemStoneCodec.class/class/codecs.st @@ -0,0 +1,3 @@ +accessing +codecs + ^ Array with: self new \ No newline at end of file diff --git a/repository/Grease-GemStone-Core.package/GRLatin1GemStoneCodec.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRLatin1GemStoneCodec.class/methodProperties.json new file mode 100644 index 00000000..4602091a --- /dev/null +++ b/repository/Grease-GemStone-Core.package/GRLatin1GemStoneCodec.class/methodProperties.json @@ -0,0 +1,13 @@ +{ + "class" : { + "basicForEncoding:" : " 10/11/2020 07:23:50", + "codecs" : "JohanBrichau 11/14/2020 01:32", + "supportsEncoding:" : " 10/11/2020 07:23:50" }, + "instance" : { + "decode:" : " 10/11/2020 07:23:50", + "encode:" : " 10/11/2020 07:23:50", + "encodeUrl:" : " 10/11/2020 07:23:50", + "encoderFor:" : " 10/11/2020 07:23:50", + "name" : " 10/11/2020 07:23:50", + "name:" : " 10/11/2020 07:23:50", + "url" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/GRPackage.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/GRPackage.extension/methodProperties.json new file mode 100644 index 00000000..fa6adaf7 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/GRPackage.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + "greaseGemStoneCore" : " 10/11/2020 07:23:50" }, + "instance" : { + "gemstoneUrl" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/GRTextOrBinaryCodecStream.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRTextOrBinaryCodecStream.class/methodProperties.json new file mode 100644 index 00000000..1ad664ab --- /dev/null +++ b/repository/Grease-GemStone-Core.package/GRTextOrBinaryCodecStream.class/methodProperties.json @@ -0,0 +1,14 @@ +{ + "class" : { + }, + "instance" : { + "binary" : " 10/11/2020 07:23:50", + "contents" : " 10/11/2020 07:23:50", + "flush" : " 10/11/2020 07:23:50", + "initializeOn:" : " 10/11/2020 07:23:50", + "next" : " 10/11/2020 07:23:50", + "next:" : " 10/11/2020 07:23:50", + "nextPut:" : " 10/11/2020 07:23:50", + "nextPutAll:" : " 10/11/2020 07:23:50", + "size" : " 10/11/2020 07:23:50", + "text" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/class/codecs.st b/repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/class/codecs.st new file mode 100644 index 00000000..444b99e4 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/class/codecs.st @@ -0,0 +1,3 @@ +accessing +codecs + ^ Array with: self new \ No newline at end of file diff --git a/repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/methodProperties.json new file mode 100644 index 00000000..afa3cceb --- /dev/null +++ b/repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/methodProperties.json @@ -0,0 +1,14 @@ +{ + "class" : { + "basicForEncoding:" : " 10/11/2020 07:23:50", + "codecs" : "JohanBrichau 11/14/2020 01:33", + "supportsEncoding:" : " 10/11/2020 07:23:50" }, + "instance" : { + "decode:" : " 10/11/2020 07:23:50", + "decoderFor:" : " 10/11/2020 07:23:50", + "encode:" : " 10/11/2020 07:23:50", + "encodeUrl:" : " 10/11/2020 07:23:50", + "encoderFor:" : " 10/11/2020 07:23:50", + "initialize" : " 10/11/2020 07:23:50", + "name" : " 10/11/2020 07:23:50", + "url" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/GsContext.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GsContext.class/methodProperties.json new file mode 100644 index 00000000..7361968d --- /dev/null +++ b/repository/Grease-GemStone-Core.package/GsContext.class/methodProperties.json @@ -0,0 +1,15 @@ +{ + "class" : { + "fromContinuation:atLevel:" : " 10/11/2020 07:23:50", + "fromLevel:" : " 10/11/2020 07:23:50" }, + "instance" : { + "=" : " 10/11/2020 07:23:50", + "asString" : " 10/11/2020 07:23:50", + "continuation:level:" : " 10/11/2020 07:23:50", + "fullPrintString" : " 10/11/2020 07:23:50", + "greaseString" : " 10/11/2020 07:23:50", + "method" : " 10/11/2020 07:23:50", + "receiver" : " 10/11/2020 07:23:50", + "sender" : " 10/11/2020 07:23:50", + "tempAt:" : " 10/11/2020 07:23:50", + "tempNames" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Interval.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Interval.extension/methodProperties.json new file mode 100644 index 00000000..9febe955 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Interval.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "any" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/MessageSend.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/MessageSend.extension/methodProperties.json new file mode 100644 index 00000000..3da0ba03 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/MessageSend.extension/methodProperties.json @@ -0,0 +1,10 @@ +{ + "class" : { + }, + "instance" : { + "argumentCount" : " 10/11/2020 07:23:50", + "evaluateWithArguments:" : " 10/11/2020 07:23:50", + "value:" : " 10/11/2020 07:23:50", + "value:value:" : " 10/11/2020 07:23:50", + "valueWithPossibleArgument:" : " 10/11/2020 07:23:50", + "valueWithPossibleArguments:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Number.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Number.extension/methodProperties.json new file mode 100644 index 00000000..782276fc --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Number.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "milliseconds" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Object.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Object.extension/methodProperties.json new file mode 100644 index 00000000..448d57b5 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Object.extension/methodProperties.json @@ -0,0 +1,7 @@ +{ + "class" : { + }, + "instance" : { + "displayString" : " 10/11/2020 07:23:50", + "greaseString" : " 10/11/2020 07:23:50", + "isMessageSend" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/PackageInfo.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/PackageInfo.extension/methodProperties.json new file mode 100644 index 00000000..72079dc1 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/PackageInfo.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "versionString" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/PositionableStream.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/PositionableStream.extension/methodProperties.json new file mode 100644 index 00000000..6cd2688f --- /dev/null +++ b/repository/Grease-GemStone-Core.package/PositionableStream.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "greaseUpToAll:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/SequenceableCollection.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/SequenceableCollection.extension/methodProperties.json new file mode 100644 index 00000000..2d4f2a67 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/SequenceableCollection.extension/methodProperties.json @@ -0,0 +1,6 @@ +{ + "class" : { + }, + "instance" : { + "beginsWithSubCollection:" : " 10/11/2020 07:23:50", + "endsWithSubCollection:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/String.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/String.extension/methodProperties.json new file mode 100644 index 00000000..663f83c7 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/String.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + "fromString:" : " 10/11/2020 07:23:50" }, + "instance" : { + } } diff --git a/repository/Grease-GemStone-Core.package/Symbol.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Symbol.extension/methodProperties.json new file mode 100644 index 00000000..6db43052 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Symbol.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "greaseAsMutator" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Symbol.extension/properties.json b/repository/Grease-GemStone-Core.package/Symbol.extension/properties.json index 8c6bce81..565e67b0 100644 --- a/repository/Grease-GemStone-Core.package/Symbol.extension/properties.json +++ b/repository/Grease-GemStone-Core.package/Symbol.extension/properties.json @@ -1,3 +1,2 @@ { - "name" : "Symbol" -} \ No newline at end of file + "name" : "Symbol" } diff --git a/repository/Grease-GemStone-Core.package/SystemAbortTransaction.class/methodProperties.json b/repository/Grease-GemStone-Core.package/SystemAbortTransaction.class/methodProperties.json new file mode 100644 index 00000000..cc8beed9 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/SystemAbortTransaction.class/methodProperties.json @@ -0,0 +1,7 @@ +{ + "class" : { + }, + "instance" : { + "alternatives" : " 10/11/2020 07:23:50", + "defaultAction" : " 10/11/2020 07:23:50", + "transaction" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/SystemBeginTransaction.class/methodProperties.json b/repository/Grease-GemStone-Core.package/SystemBeginTransaction.class/methodProperties.json new file mode 100644 index 00000000..cc8beed9 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/SystemBeginTransaction.class/methodProperties.json @@ -0,0 +1,7 @@ +{ + "class" : { + }, + "instance" : { + "alternatives" : " 10/11/2020 07:23:50", + "defaultAction" : " 10/11/2020 07:23:50", + "transaction" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/SystemCommitTransaction.class/methodProperties.json b/repository/Grease-GemStone-Core.package/SystemCommitTransaction.class/methodProperties.json new file mode 100644 index 00000000..cc8beed9 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/SystemCommitTransaction.class/methodProperties.json @@ -0,0 +1,7 @@ +{ + "class" : { + }, + "instance" : { + "alternatives" : " 10/11/2020 07:23:50", + "defaultAction" : " 10/11/2020 07:23:50", + "transaction" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/SystemTransactionNotification.class/methodProperties.json b/repository/Grease-GemStone-Core.package/SystemTransactionNotification.class/methodProperties.json new file mode 100644 index 00000000..c4e1ea4b --- /dev/null +++ b/repository/Grease-GemStone-Core.package/SystemTransactionNotification.class/methodProperties.json @@ -0,0 +1,6 @@ +{ + "class" : { + }, + "instance" : { + "alternatives" : " 10/11/2020 07:23:50", + "transaction" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/UnorderedCollection.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/UnorderedCollection.extension/methodProperties.json new file mode 100644 index 00000000..59c1f401 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/UnorderedCollection.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "copyFrom:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/WriteStream.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/WriteStream.extension/methodProperties.json new file mode 100644 index 00000000..46831332 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/WriteStream.extension/methodProperties.json @@ -0,0 +1,6 @@ +{ + "class" : { + }, + "instance" : { + "crlf" : " 10/11/2020 07:23:50", + "greaseNext:putAll:startingAt:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/monticello.meta/version b/repository/Grease-GemStone-Core.package/monticello.meta/version new file mode 100644 index 00000000..90136bdb --- /dev/null +++ b/repository/Grease-GemStone-Core.package/monticello.meta/version @@ -0,0 +1 @@ +(name 'Grease-GemStone-Core-JohanBrichau.2' message 'added missing ''codecs'' class methods' id '94ddc763-47ef-46d8-9e1d-6a889151ffc5' date '11/14/2020' time '01:37:12' author 'JohanBrichau' ancestors ((name 'Grease-GemStone-Core-cypress.1' message 'fabricated from a Cypress format repository' id '7542e591-944f-48c5-b722-18562c0f475d' date '10/11/2020' time '23:45:35' author '' ancestors () stepChildren ())) stepChildren ()) \ No newline at end of file From 81c2f0a77f0f243ab9656e329e6348f9233b1fd1 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sat, 14 Nov 2020 09:47:05 +0000 Subject: [PATCH 21/46] Removed methodProperties.json --- .../Character.extension/methodProperties.json | 5 -- .../methodProperties.json | 9 ---- .../GRCodec.class/methodProperties.json | 16 ------ .../GRCodecStream.class/methodProperties.json | 5 -- .../methodProperties.json | 12 ----- .../GRDelayedSend.class/methodProperties.json | 16 ------ .../methodProperties.json | 13 ----- .../methodProperties.json | 20 -------- .../methodProperties.json | 6 --- .../GRError.class/methodProperties.json | 5 -- .../GRInflector.class/methodProperties.json | 6 --- .../methodProperties.json | 5 -- .../methodProperties.json | 5 -- .../methodProperties.json | 8 --- .../methodProperties.json | 5 -- .../methodProperties.json | 7 --- .../GRNullCodec.class/methodProperties.json | 13 ----- .../methodProperties.json | 8 --- .../methodProperties.json | 29 ----------- .../GRObject.class/methodProperties.json | 8 --- .../methodProperties.json | 12 ----- .../methodProperties.json | 12 ----- .../methodProperties.json | 6 --- .../GRPackage.class/methodProperties.json | 26 ---------- .../GRPlatform.class/methodProperties.json | 45 ----------------- .../methodProperties.json | 7 --- .../GRPrinter.class/methodProperties.json | 46 ----------------- .../methodProperties.json | 7 --- .../GRSignPrinter.class/methodProperties.json | 8 --- .../methodProperties.json | 40 --------------- .../methodProperties.json | 40 --------------- .../methodProperties.json | 23 --------- .../methodProperties.json | 16 ------ .../methodProperties.json | 6 --- .../GRUnitPrinter.class/methodProperties.json | 11 ----- .../methodProperties.json | 5 -- .../GRVersion.class/methodProperties.json | 35 ------------- .../Integer.extension/methodProperties.json | 7 --- .../Number.extension/methodProperties.json | 5 -- .../Object.extension/methodProperties.json | 5 -- .../String.extension/methodProperties.json | 13 ----- .../methodProperties.json | 5 -- .../Array.extension/methodProperties.json | 5 -- .../Behavior.extension/methodProperties.json | 6 --- .../methodProperties.json | 5 -- .../ByteArray.extension/methodProperties.json | 5 -- .../Character.extension/methodProperties.json | 5 -- .../methodProperties.json | 21 -------- .../methodProperties.json | 7 --- .../Date.extension/methodProperties.json | 5 -- .../methodProperties.json | 5 -- .../methodProperties.json | 5 -- .../Duration.extension/methodProperties.json | 6 --- .../Exception.extension/methodProperties.json | 7 --- .../methodProperties.json | 8 --- .../methodProperties.json | 49 ------------------- .../methodProperties.json | 11 ----- .../methodProperties.json | 13 ----- .../GRPackage.extension/methodProperties.json | 5 -- .../methodProperties.json | 14 ------ .../methodProperties.json | 14 ------ .../GsContext.class/methodProperties.json | 15 ------ .../Interval.extension/methodProperties.json | 5 -- .../methodProperties.json | 10 ---- .../Number.extension/methodProperties.json | 5 -- .../Object.extension/methodProperties.json | 7 --- .../methodProperties.json | 5 -- .../methodProperties.json | 5 -- .../methodProperties.json | 6 --- .../String.extension/methodProperties.json | 5 -- .../Symbol.extension/methodProperties.json | 5 -- .../methodProperties.json | 7 --- .../methodProperties.json | 7 --- .../methodProperties.json | 7 --- .../methodProperties.json | 6 --- .../methodProperties.json | 5 -- .../methodProperties.json | 6 --- 77 files changed, 883 deletions(-) delete mode 100644 repository/Grease-Core.package/Character.extension/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRBoundMessage.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRCodec.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRCodecStream.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRCountingStream.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRDelayedSend.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRDelayedSendMessage.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRDelegatingStream.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRDeprecatedApiNotification.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRError.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRInflector.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRInvalidArgumentCount.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRInvalidUtf8Error.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRMappedPrinter.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRNotification.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRNotificationBasedDynamicVariable.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRNullCodec.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRNullCodecStream.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRNumberPrinter.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRObject.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GROrderedMultiMap.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GROrderedMultiMap2.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GROrdinalizePrinter.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRPackage.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRPlatform.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRPluggablePrinter.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRPrinter.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRSequentialPrinter.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRSignPrinter.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRSmallDictionary.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRSmallDictionary2.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRSmallOrderedSet.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRStringPrinter.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRUnboundMessage.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRUnitPrinter.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRUnsupportedEncodingError.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/GRVersion.class/methodProperties.json delete mode 100644 repository/Grease-Core.package/Integer.extension/methodProperties.json delete mode 100644 repository/Grease-Core.package/Number.extension/methodProperties.json delete mode 100644 repository/Grease-Core.package/Object.extension/methodProperties.json delete mode 100644 repository/Grease-Core.package/String.extension/methodProperties.json delete mode 100644 repository/Grease-Core.package/UndefinedObject.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Array.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Behavior.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/BinaryFloat.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/ByteArray.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Character.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/CharacterCollection.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Collection.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Date.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Dictionary.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/DoubleByteString.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Duration.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Exception.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/GRDynamicVariable.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/GRGemStoneRandomProvider.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/GRLatin1GemStoneCodec.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/GRPackage.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/GRTextOrBinaryCodecStream.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/GsContext.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Interval.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/MessageSend.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Number.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Object.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/PackageInfo.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/PositionableStream.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/SequenceableCollection.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/String.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Symbol.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/SystemAbortTransaction.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/SystemBeginTransaction.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/SystemCommitTransaction.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/SystemTransactionNotification.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/UnorderedCollection.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/WriteStream.extension/methodProperties.json diff --git a/repository/Grease-Core.package/Character.extension/methodProperties.json b/repository/Grease-Core.package/Character.extension/methodProperties.json deleted file mode 100644 index 4c54bdcb..00000000 --- a/repository/Grease-Core.package/Character.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "print:on:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRBoundMessage.class/methodProperties.json b/repository/Grease-Core.package/GRBoundMessage.class/methodProperties.json deleted file mode 100644 index ec8bf751..00000000 --- a/repository/Grease-Core.package/GRBoundMessage.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - "selector:" : " 10/11/2020 07:23:50", - "selector:arguments:" : " 10/11/2020 07:23:50" }, - "instance" : { - "argumentCount" : " 10/11/2020 07:23:50", - "initializeWithSelector:arguments:" : " 10/11/2020 07:23:50", - "mergeArguments:" : " 10/11/2020 07:23:50", - "printOn:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRCodec.class/methodProperties.json b/repository/Grease-Core.package/GRCodec.class/methodProperties.json deleted file mode 100644 index ab016c97..00000000 --- a/repository/Grease-Core.package/GRCodec.class/methodProperties.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "class" : { - "allCodecs" : " 10/11/2020 07:23:50", - "basicForEncoding:" : " 10/11/2020 07:23:50", - "codecs" : "JohanBrichau 11/14/2020 01:33", - "forEncoding:" : " 10/11/2020 07:23:50", - "supportsEncoding:" : " 10/11/2020 07:23:50", - "unsupportedEncoding:" : " 10/11/2020 07:23:50" }, - "instance" : { - "decode:" : " 10/11/2020 07:23:50", - "decoderFor:" : " 10/11/2020 07:23:50", - "encode:" : " 10/11/2020 07:23:50", - "encoderFor:" : " 10/11/2020 07:23:50", - "name" : " 10/11/2020 07:23:50", - "printOn:" : " 10/11/2020 07:23:50", - "url" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRCodecStream.class/methodProperties.json b/repository/Grease-Core.package/GRCodecStream.class/methodProperties.json deleted file mode 100644 index 0e4a6622..00000000 --- a/repository/Grease-Core.package/GRCodecStream.class/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - } } diff --git a/repository/Grease-Core.package/GRCountingStream.class/methodProperties.json b/repository/Grease-Core.package/GRCountingStream.class/methodProperties.json deleted file mode 100644 index b54bd4b5..00000000 --- a/repository/Grease-Core.package/GRCountingStream.class/methodProperties.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "count" : " 10/11/2020 07:23:50", - "greaseNext:putAll:startingAt:" : " 10/11/2020 07:23:50", - "initialize" : " 10/11/2020 07:23:50", - "next" : " 10/11/2020 07:23:50", - "next:" : " 10/11/2020 07:23:50", - "nextPut:" : " 10/11/2020 07:23:50", - "nextPutAll:" : " 10/11/2020 07:23:50", - "reset" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRDelayedSend.class/methodProperties.json b/repository/Grease-Core.package/GRDelayedSend.class/methodProperties.json deleted file mode 100644 index fc80b2ba..00000000 --- a/repository/Grease-Core.package/GRDelayedSend.class/methodProperties.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "class" : { - "empty" : " 10/11/2020 07:23:50", - "new" : " 10/11/2020 07:23:50", - "receiver:selector:" : " 10/11/2020 07:23:50", - "receiver:selector:argument:" : " 10/11/2020 07:23:50", - "receiver:selector:arguments:" : " 10/11/2020 07:23:50" }, - "instance" : { - "argumentCount" : " 10/11/2020 07:23:50", - "initializeWithReceiver:message:" : " 10/11/2020 07:23:50", - "printOn:" : " 10/11/2020 07:23:50", - "value" : " 10/11/2020 07:23:50", - "value:" : " 10/11/2020 07:23:50", - "value:value:" : " 10/11/2020 07:23:50", - "valueWithArguments:" : " 10/11/2020 07:23:50", - "valueWithPossibleArguments:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRDelayedSendMessage.class/methodProperties.json b/repository/Grease-Core.package/GRDelayedSendMessage.class/methodProperties.json deleted file mode 100644 index fe82e1df..00000000 --- a/repository/Grease-Core.package/GRDelayedSendMessage.class/methodProperties.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "class" : { - "new" : " 10/11/2020 07:23:50", - "selector:" : " 10/11/2020 07:23:50" }, - "instance" : { - "argumentCount" : " 10/11/2020 07:23:50", - "basicPerformFor:withArguments:" : " 10/11/2020 07:23:50", - "initializeWithSelector:" : " 10/11/2020 07:23:50", - "invalidArgumentCount" : " 10/11/2020 07:23:50", - "mergeArguments:" : " 10/11/2020 07:23:50", - "printOn:" : " 10/11/2020 07:23:50", - "valueFor:withArguments:" : " 10/11/2020 07:23:50", - "valueFor:withPossibleArguments:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRDelegatingStream.class/methodProperties.json b/repository/Grease-Core.package/GRDelegatingStream.class/methodProperties.json deleted file mode 100644 index fc8947cb..00000000 --- a/repository/Grease-Core.package/GRDelegatingStream.class/methodProperties.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "class" : { - "on:" : " 10/11/2020 07:23:50" }, - "instance" : { - "atEnd" : " 10/11/2020 07:23:50", - "contents" : " 10/11/2020 07:23:50", - "crlf" : " 10/11/2020 07:23:50", - "flush" : " 10/11/2020 07:23:50", - "initializeOn:" : " 10/11/2020 07:23:50", - "isStream" : " 10/11/2020 07:23:50", - "next" : " 10/11/2020 07:23:50", - "next:" : " 10/11/2020 07:23:50", - "nextPut:" : " 10/11/2020 07:23:50", - "nextPutAll:" : " 10/11/2020 07:23:50", - "position" : " 10/11/2020 07:23:50", - "print:" : " 10/11/2020 07:23:50", - "reset" : " 10/11/2020 07:23:50", - "size" : " 10/11/2020 07:23:50", - "space" : " 10/11/2020 07:23:50", - "tab" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRDeprecatedApiNotification.class/methodProperties.json b/repository/Grease-Core.package/GRDeprecatedApiNotification.class/methodProperties.json deleted file mode 100644 index 17890d89..00000000 --- a/repository/Grease-Core.package/GRDeprecatedApiNotification.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "details" : " 10/11/2020 07:23:50", - "details:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRError.class/methodProperties.json b/repository/Grease-Core.package/GRError.class/methodProperties.json deleted file mode 100644 index 0e4a6622..00000000 --- a/repository/Grease-Core.package/GRError.class/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - } } diff --git a/repository/Grease-Core.package/GRInflector.class/methodProperties.json b/repository/Grease-Core.package/GRInflector.class/methodProperties.json deleted file mode 100644 index eb597a8c..00000000 --- a/repository/Grease-Core.package/GRInflector.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - "initialize" : " 10/11/2020 07:23:50", - "pluralize:" : " 10/11/2020 07:23:50" }, - "instance" : { - } } diff --git a/repository/Grease-Core.package/GRInvalidArgumentCount.class/methodProperties.json b/repository/Grease-Core.package/GRInvalidArgumentCount.class/methodProperties.json deleted file mode 100644 index 0e4a6622..00000000 --- a/repository/Grease-Core.package/GRInvalidArgumentCount.class/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - } } diff --git a/repository/Grease-Core.package/GRInvalidUtf8Error.class/methodProperties.json b/repository/Grease-Core.package/GRInvalidUtf8Error.class/methodProperties.json deleted file mode 100644 index 0e4a6622..00000000 --- a/repository/Grease-Core.package/GRInvalidUtf8Error.class/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - } } diff --git a/repository/Grease-Core.package/GRMappedPrinter.class/methodProperties.json b/repository/Grease-Core.package/GRMappedPrinter.class/methodProperties.json deleted file mode 100644 index 4da90abf..00000000 --- a/repository/Grease-Core.package/GRMappedPrinter.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - "block:next:" : " 10/11/2020 07:23:50" }, - "instance" : { - "block:" : " 10/11/2020 07:23:50", - "initialize" : " 10/11/2020 07:23:50", - "next:" : " 10/11/2020 07:23:50", - "print:on:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRNotification.class/methodProperties.json b/repository/Grease-Core.package/GRNotification.class/methodProperties.json deleted file mode 100644 index 0e4a6622..00000000 --- a/repository/Grease-Core.package/GRNotification.class/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - } } diff --git a/repository/Grease-Core.package/GRNotificationBasedDynamicVariable.class/methodProperties.json b/repository/Grease-Core.package/GRNotificationBasedDynamicVariable.class/methodProperties.json deleted file mode 100644 index 5076624c..00000000 --- a/repository/Grease-Core.package/GRNotificationBasedDynamicVariable.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - "defaultValue" : " 10/11/2020 07:23:50", - "use:during:" : " 10/11/2020 07:23:50", - "value" : " 10/11/2020 07:23:50" }, - "instance" : { - "defaultAction" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRNullCodec.class/methodProperties.json b/repository/Grease-Core.package/GRNullCodec.class/methodProperties.json deleted file mode 100644 index 2ff00a10..00000000 --- a/repository/Grease-Core.package/GRNullCodec.class/methodProperties.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "class" : { - "basicForEncoding:" : " 10/11/2020 07:23:50", - "codecName" : " 10/11/2020 07:23:50", - "codecs" : " 10/11/2020 07:23:50", - "supportsEncoding:" : " 10/11/2020 07:23:50" }, - "instance" : { - "decode:" : " 10/11/2020 07:23:50", - "decoderFor:" : " 10/11/2020 07:23:50", - "encode:" : " 10/11/2020 07:23:50", - "encoderFor:" : " 10/11/2020 07:23:50", - "name" : " 10/11/2020 07:23:50", - "url" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRNullCodecStream.class/methodProperties.json b/repository/Grease-Core.package/GRNullCodecStream.class/methodProperties.json deleted file mode 100644 index 63cefe92..00000000 --- a/repository/Grease-Core.package/GRNullCodecStream.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "next" : " 10/11/2020 07:23:50", - "next:" : " 10/11/2020 07:23:50", - "nextPut:" : " 10/11/2020 07:23:50", - "nextPutAll:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRNumberPrinter.class/methodProperties.json b/repository/Grease-Core.package/GRNumberPrinter.class/methodProperties.json deleted file mode 100644 index 09c4eabc..00000000 --- a/repository/Grease-Core.package/GRNumberPrinter.class/methodProperties.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "class" : { - "initialize" : " 10/11/2020 07:23:50" }, - "instance" : { - "accuracy:" : " 10/11/2020 07:23:50", - "base:" : " 10/11/2020 07:23:50", - "characters:" : " 10/11/2020 07:23:50", - "delimiter:" : " 10/11/2020 07:23:50", - "digits:" : " 10/11/2020 07:23:50", - "digitsOf:base:" : " 10/11/2020 07:23:50", - "infinite:" : " 10/11/2020 07:23:50", - "initialize" : " 10/11/2020 07:23:50", - "lengthOf:base:" : " 10/11/2020 07:23:50", - "lowercase" : " 10/11/2020 07:23:50", - "nan:" : " 10/11/2020 07:23:50", - "padLeft:to:on:" : " 10/11/2020 07:23:50", - "padding:" : " 10/11/2020 07:23:50", - "precision:" : " 10/11/2020 07:23:50", - "print:on:" : " 10/11/2020 07:23:50", - "printDigitsOf:withLength:on:" : " 10/11/2020 07:23:50", - "printFloat:on:" : " 10/11/2020 07:23:50", - "printFraction:on:" : " 10/11/2020 07:23:50", - "printInfinite:on:" : " 10/11/2020 07:23:50", - "printInteger:on:" : " 10/11/2020 07:23:50", - "printNaN:on:" : " 10/11/2020 07:23:50", - "separate:left:on:" : " 10/11/2020 07:23:50", - "separate:right:" : " 10/11/2020 07:23:50", - "separator:" : " 10/11/2020 07:23:50", - "uppercase" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRObject.class/methodProperties.json b/repository/Grease-Core.package/GRObject.class/methodProperties.json deleted file mode 100644 index a5d39002..00000000 --- a/repository/Grease-Core.package/GRObject.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - "defaultErrorClass" : " 10/11/2020 07:23:50", - "error:" : " 10/11/2020 07:23:50", - "new" : " 10/11/2020 07:23:50" }, - "instance" : { - "error:" : " 10/11/2020 07:23:50", - "initialize" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GROrderedMultiMap.class/methodProperties.json b/repository/Grease-Core.package/GROrderedMultiMap.class/methodProperties.json deleted file mode 100644 index 85ce3543..00000000 --- a/repository/Grease-Core.package/GROrderedMultiMap.class/methodProperties.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "add:" : " 10/11/2020 07:23:50", - "addAll:" : " 10/11/2020 07:23:50", - "allAt:" : " 10/11/2020 07:23:50", - "allAt:ifAbsent:" : " 10/11/2020 07:23:50", - "at:add:" : " 10/11/2020 07:23:50", - "keysAndAllValuesDo:" : " 10/11/2020 07:23:50", - "privateAllAt:startingAt:" : " 10/11/2020 07:23:50", - "removeKey:ifAbsent:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GROrderedMultiMap2.class/methodProperties.json b/repository/Grease-Core.package/GROrderedMultiMap2.class/methodProperties.json deleted file mode 100644 index 85ce3543..00000000 --- a/repository/Grease-Core.package/GROrderedMultiMap2.class/methodProperties.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "add:" : " 10/11/2020 07:23:50", - "addAll:" : " 10/11/2020 07:23:50", - "allAt:" : " 10/11/2020 07:23:50", - "allAt:ifAbsent:" : " 10/11/2020 07:23:50", - "at:add:" : " 10/11/2020 07:23:50", - "keysAndAllValuesDo:" : " 10/11/2020 07:23:50", - "privateAllAt:startingAt:" : " 10/11/2020 07:23:50", - "removeKey:ifAbsent:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GROrdinalizePrinter.class/methodProperties.json b/repository/Grease-Core.package/GROrdinalizePrinter.class/methodProperties.json deleted file mode 100644 index 209d3c2e..00000000 --- a/repository/Grease-Core.package/GROrdinalizePrinter.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "ordinalize:" : " 10/11/2020 07:23:50", - "print:on:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRPackage.class/methodProperties.json b/repository/Grease-Core.package/GRPackage.class/methodProperties.json deleted file mode 100644 index 1dcb4af7..00000000 --- a/repository/Grease-Core.package/GRPackage.class/methodProperties.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "class" : { - "grPackages" : " 10/11/2020 07:23:50", - "greaseCore" : " 10/11/2020 07:23:50" }, - "instance" : { - "addDependenciesTo:" : " 10/11/2020 07:23:50", - "addDependency:" : " 10/11/2020 07:23:50", - "allDependencies" : " 10/11/2020 07:23:50", - "dependencies" : " 10/11/2020 07:23:50", - "description" : " 10/11/2020 07:23:50", - "description:" : " 10/11/2020 07:23:50", - "greaseUrl" : " 10/11/2020 07:23:50", - "initialize" : " 10/11/2020 07:23:50", - "isLGPL" : " 10/11/2020 07:23:50", - "isMIT" : " 10/11/2020 07:23:50", - "license" : " 10/11/2020 07:23:50", - "license:" : " 10/11/2020 07:23:50", - "name" : " 10/11/2020 07:23:50", - "name:" : " 10/11/2020 07:23:50", - "printOn:" : " 10/11/2020 07:23:50", - "resolveWith:" : " 10/11/2020 07:23:50", - "seasideAddonsUrl" : " 10/11/2020 07:23:50", - "seasideLGPLUrl" : " 10/11/2020 07:23:50", - "seasideUrl" : " 10/11/2020 07:23:50", - "url" : " 10/11/2020 07:23:50", - "url:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRPlatform.class/methodProperties.json b/repository/Grease-Core.package/GRPlatform.class/methodProperties.json deleted file mode 100644 index f812edbe..00000000 --- a/repository/Grease-Core.package/GRPlatform.class/methodProperties.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "class" : { - "current" : " 10/11/2020 07:23:50", - "current:" : " 10/11/2020 07:23:50", - "select" : " 10/11/2020 07:23:50", - "unselect" : " 10/11/2020 07:23:50" }, - "instance" : { - "addToShutDownList:" : " 10/11/2020 07:23:50", - "addToStartUpList:" : " 10/11/2020 07:23:50", - "asMethodReturningByteArray:named:" : " 10/11/2020 07:23:50", - "base64Decode:" : " 10/11/2020 07:23:50", - "bindingOf:" : " 10/11/2020 07:23:50", - "compile:into:classified:" : " 10/11/2020 07:23:50", - "contentsOfFile:binary:" : " 10/11/2020 07:23:50", - "convertToSmalltalkNewlines:" : " 10/11/2020 07:23:50", - "deprecationExceptionSet" : " 10/11/2020 07:23:50", - "directoriesIn:" : " 10/11/2020 07:23:50", - "doTransaction:" : " 10/11/2020 07:23:50", - "ensureExistenceOfFolder:" : " 10/11/2020 07:23:50", - "fileExists:" : " 10/11/2020 07:23:50", - "fileStreamOn:do:binary:" : " 10/11/2020 07:23:50", - "filesIn:" : " 10/11/2020 07:23:50", - "isProcessTerminated:" : " 10/11/2020 07:23:50", - "label" : " 10/11/2020 07:23:50", - "localNameOf:" : " 10/11/2020 07:23:50", - "newRandom" : " 10/11/2020 07:23:50", - "newline" : " 10/11/2020 07:23:50", - "openDebuggerOn:" : " 10/11/2020 07:23:50", - "pathSeparator" : " 10/11/2020 07:23:50", - "readWriteByteStream" : " 10/11/2020 07:23:50", - "readWriteCharacterStream" : " 10/11/2020 07:23:50", - "reducedConflictDictionary" : " 10/11/2020 07:23:50", - "removeFromShutDownList:" : " 10/11/2020 07:23:50", - "removeFromStartUpList:" : " 10/11/2020 07:23:50", - "removeSelector:from:" : " 10/11/2020 07:23:50", - "secureHashFor:" : " 10/11/2020 07:23:50", - "semaphoreClass" : " 10/11/2020 07:23:50", - "stackDepth" : " 10/11/2020 07:23:50", - "terminateProcess:" : " 10/11/2020 07:23:50", - "thisContext" : " 10/11/2020 07:23:50", - "version" : " 10/11/2020 07:23:50", - "versionString" : " 10/11/2020 07:23:50", - "weakDictionaryOfSize:" : " 10/11/2020 07:23:50", - "write:toFile:inFolder:" : " 10/11/2020 07:23:50", - "writeCharacterStreamOn:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRPluggablePrinter.class/methodProperties.json b/repository/Grease-Core.package/GRPluggablePrinter.class/methodProperties.json deleted file mode 100644 index 9e57849d..00000000 --- a/repository/Grease-Core.package/GRPluggablePrinter.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - "on:" : " 10/11/2020 07:23:50" }, - "instance" : { - "block:" : " 10/11/2020 07:23:50", - "initialize" : " 10/11/2020 07:23:50", - "print:on:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRPrinter.class/methodProperties.json b/repository/Grease-Core.package/GRPrinter.class/methodProperties.json deleted file mode 100644 index de1b2010..00000000 --- a/repository/Grease-Core.package/GRPrinter.class/methodProperties.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "class" : { - "abbreviatedMonthName" : " 10/11/2020 07:23:50", - "abbreviatedWeekName" : " 10/11/2020 07:23:50", - "absOffsetHoursPadded" : " 10/11/2020 07:23:50", - "absOffsetMinutesPadded" : " 10/11/2020 07:23:50", - "binaryFileSize" : " 10/11/2020 07:23:50", - "cookieTimestamp" : " 10/11/2020 07:23:50", - "decimalFileSize" : " 10/11/2020 07:23:50", - "fullMonthName" : " 10/11/2020 07:23:50", - "fullWeekName" : " 10/11/2020 07:23:50", - "httpDate" : " 10/11/2020 07:23:50", - "isoDate" : " 10/11/2020 07:23:50", - "isoTime" : " 10/11/2020 07:23:50", - "monthName:" : " 10/11/2020 07:23:50", - "numberWithAtLeastDigits:" : " 10/11/2020 07:23:50", - "offsetSign" : " 10/11/2020 07:23:50", - "paddedCentury" : " 10/11/2020 07:23:50", - "paddedDay" : " 10/11/2020 07:23:50", - "paddedHour12" : " 10/11/2020 07:23:50", - "paddedHour24" : " 10/11/2020 07:23:50", - "paddedMinute" : " 10/11/2020 07:23:50", - "paddedMonth" : " 10/11/2020 07:23:50", - "paddedSecond" : " 10/11/2020 07:23:50", - "paddedYear" : " 10/11/2020 07:23:50", - "rfc1123" : " 10/11/2020 07:23:50", - "rfc822" : " 10/11/2020 07:23:50", - "rfc822WithTimeZone:" : " 10/11/2020 07:23:50", - "swissCurrency" : " 10/11/2020 07:23:50", - "unpaddedCentury" : " 10/11/2020 07:23:50", - "unpaddedDay" : " 10/11/2020 07:23:50", - "unpaddedHour12" : " 10/11/2020 07:23:50", - "unpaddedHour24" : " 10/11/2020 07:23:50", - "unpaddedMinute" : " 10/11/2020 07:23:50", - "unpaddedMonth" : " 10/11/2020 07:23:50", - "unpaddedSecond" : " 10/11/2020 07:23:50", - "unpaddedYear" : " 10/11/2020 07:23:50", - "usCurrency" : " 10/11/2020 07:23:50", - "weekName:" : " 10/11/2020 07:23:50" }, - "instance" : { - "," : " 10/11/2020 07:23:50", - "pad:center:to:" : " 10/11/2020 07:23:50", - "pad:left:to:" : " 10/11/2020 07:23:50", - "pad:right:to:" : " 10/11/2020 07:23:50", - "print:" : " 10/11/2020 07:23:50", - "print:on:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRSequentialPrinter.class/methodProperties.json b/repository/Grease-Core.package/GRSequentialPrinter.class/methodProperties.json deleted file mode 100644 index c1edaef8..00000000 --- a/repository/Grease-Core.package/GRSequentialPrinter.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "," : " 10/11/2020 07:23:50", - "initialize" : " 10/11/2020 07:23:50", - "print:on:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRSignPrinter.class/methodProperties.json b/repository/Grease-Core.package/GRSignPrinter.class/methodProperties.json deleted file mode 100644 index 37422896..00000000 --- a/repository/Grease-Core.package/GRSignPrinter.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "initialize" : " 10/11/2020 07:23:50", - "negativePrinter:" : " 10/11/2020 07:23:50", - "positivePrinter:" : " 10/11/2020 07:23:50", - "print:on:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRSmallDictionary.class/methodProperties.json b/repository/Grease-Core.package/GRSmallDictionary.class/methodProperties.json deleted file mode 100644 index f5d8caac..00000000 --- a/repository/Grease-Core.package/GRSmallDictionary.class/methodProperties.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "class" : { - "new" : " 10/11/2020 07:23:50", - "new:" : " 10/11/2020 07:23:50", - "withAll:" : " 10/11/2020 07:23:50" }, - "instance" : { - "add:" : " 10/11/2020 07:23:50", - "addAll:" : " 10/11/2020 07:23:50", - "any" : " 10/11/2020 07:23:50", - "associations" : " 10/11/2020 07:23:50", - "associationsDo:" : " 10/11/2020 07:23:50", - "at:" : " 10/11/2020 07:23:50", - "at:ifAbsent:" : " 10/11/2020 07:23:50", - "at:ifAbsentPut:" : " 10/11/2020 07:23:50", - "at:ifPresent:" : " 10/11/2020 07:23:50", - "at:put:" : " 10/11/2020 07:23:50", - "do:" : " 10/11/2020 07:23:50", - "errorEmptyCollection" : " 10/11/2020 07:23:50", - "errorKeyNotFound" : " 10/11/2020 07:23:50", - "findIndexFor:" : " 10/11/2020 07:23:50", - "grow" : " 10/11/2020 07:23:50", - "includesKey:" : " 10/11/2020 07:23:50", - "initialize:" : " 10/11/2020 07:23:50", - "isCollection" : " 10/11/2020 07:23:50", - "isEmpty" : " 10/11/2020 07:23:50", - "keys" : " 10/11/2020 07:23:50", - "keysAndValuesDo:" : " 10/11/2020 07:23:50", - "keysDo:" : " 10/11/2020 07:23:50", - "noneSatisfy:" : " 10/11/2020 07:23:50", - "notEmpty" : " 10/11/2020 07:23:50", - "postCopy" : " 10/11/2020 07:23:50", - "printOn:" : " 10/11/2020 07:23:50", - "privateAt:put:" : " 10/11/2020 07:23:50", - "removeIndex:" : " 10/11/2020 07:23:50", - "removeKey:" : " 10/11/2020 07:23:50", - "removeKey:ifAbsent:" : " 10/11/2020 07:23:50", - "size" : " 10/11/2020 07:23:50", - "sorted" : " 10/11/2020 07:23:50", - "sorted:" : " 10/11/2020 07:23:50", - "values" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRSmallDictionary2.class/methodProperties.json b/repository/Grease-Core.package/GRSmallDictionary2.class/methodProperties.json deleted file mode 100644 index f5d8caac..00000000 --- a/repository/Grease-Core.package/GRSmallDictionary2.class/methodProperties.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "class" : { - "new" : " 10/11/2020 07:23:50", - "new:" : " 10/11/2020 07:23:50", - "withAll:" : " 10/11/2020 07:23:50" }, - "instance" : { - "add:" : " 10/11/2020 07:23:50", - "addAll:" : " 10/11/2020 07:23:50", - "any" : " 10/11/2020 07:23:50", - "associations" : " 10/11/2020 07:23:50", - "associationsDo:" : " 10/11/2020 07:23:50", - "at:" : " 10/11/2020 07:23:50", - "at:ifAbsent:" : " 10/11/2020 07:23:50", - "at:ifAbsentPut:" : " 10/11/2020 07:23:50", - "at:ifPresent:" : " 10/11/2020 07:23:50", - "at:put:" : " 10/11/2020 07:23:50", - "do:" : " 10/11/2020 07:23:50", - "errorEmptyCollection" : " 10/11/2020 07:23:50", - "errorKeyNotFound" : " 10/11/2020 07:23:50", - "findIndexFor:" : " 10/11/2020 07:23:50", - "grow" : " 10/11/2020 07:23:50", - "includesKey:" : " 10/11/2020 07:23:50", - "initialize:" : " 10/11/2020 07:23:50", - "isCollection" : " 10/11/2020 07:23:50", - "isEmpty" : " 10/11/2020 07:23:50", - "keys" : " 10/11/2020 07:23:50", - "keysAndValuesDo:" : " 10/11/2020 07:23:50", - "keysDo:" : " 10/11/2020 07:23:50", - "noneSatisfy:" : " 10/11/2020 07:23:50", - "notEmpty" : " 10/11/2020 07:23:50", - "postCopy" : " 10/11/2020 07:23:50", - "printOn:" : " 10/11/2020 07:23:50", - "privateAt:put:" : " 10/11/2020 07:23:50", - "removeIndex:" : " 10/11/2020 07:23:50", - "removeKey:" : " 10/11/2020 07:23:50", - "removeKey:ifAbsent:" : " 10/11/2020 07:23:50", - "size" : " 10/11/2020 07:23:50", - "sorted" : " 10/11/2020 07:23:50", - "sorted:" : " 10/11/2020 07:23:50", - "values" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRSmallOrderedSet.class/methodProperties.json b/repository/Grease-Core.package/GRSmallOrderedSet.class/methodProperties.json deleted file mode 100644 index 189568d6..00000000 --- a/repository/Grease-Core.package/GRSmallOrderedSet.class/methodProperties.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "class" : { - "new" : " 10/11/2020 07:23:50", - "new:" : " 10/11/2020 07:23:50", - "withAll:" : " 10/11/2020 07:23:50" }, - "instance" : { - "add:" : " 10/11/2020 07:23:50", - "addAll:" : " 10/11/2020 07:23:50", - "do:" : " 10/11/2020 07:23:50", - "do:separatedBy:" : " 10/11/2020 07:23:50", - "errorNotFound" : " 10/11/2020 07:23:50", - "findIndexFor:" : " 10/11/2020 07:23:50", - "grow" : " 10/11/2020 07:23:50", - "includes:" : " 10/11/2020 07:23:50", - "initialize:" : " 10/11/2020 07:23:50", - "isCollection" : " 10/11/2020 07:23:50", - "isEmpty" : " 10/11/2020 07:23:50", - "postCopy" : " 10/11/2020 07:23:50", - "privateAdd:" : " 10/11/2020 07:23:50", - "remove:" : " 10/11/2020 07:23:50", - "remove:ifAbsent:" : " 10/11/2020 07:23:50", - "removeIndex:" : " 10/11/2020 07:23:50", - "size" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRStringPrinter.class/methodProperties.json b/repository/Grease-Core.package/GRStringPrinter.class/methodProperties.json deleted file mode 100644 index cc13f183..00000000 --- a/repository/Grease-Core.package/GRStringPrinter.class/methodProperties.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "character:" : " 10/11/2020 07:23:50", - "initialize" : " 10/11/2020 07:23:50", - "length:" : " 10/11/2020 07:23:50", - "padCenter" : " 10/11/2020 07:23:50", - "padLeft" : " 10/11/2020 07:23:50", - "padNone" : " 10/11/2020 07:23:50", - "padRight" : " 10/11/2020 07:23:50", - "print:on:" : " 10/11/2020 07:23:50", - "trimBoth" : " 10/11/2020 07:23:50", - "trimLeft" : " 10/11/2020 07:23:50", - "trimNone" : " 10/11/2020 07:23:50", - "trimRight" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRUnboundMessage.class/methodProperties.json b/repository/Grease-Core.package/GRUnboundMessage.class/methodProperties.json deleted file mode 100644 index e6b9e699..00000000 --- a/repository/Grease-Core.package/GRUnboundMessage.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "argumentCount" : " 10/11/2020 07:23:50", - "mergeArguments:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRUnitPrinter.class/methodProperties.json b/repository/Grease-Core.package/GRUnitPrinter.class/methodProperties.json deleted file mode 100644 index 095280dd..00000000 --- a/repository/Grease-Core.package/GRUnitPrinter.class/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "class" : { - "base:units:" : " 10/11/2020 07:23:50" }, - "instance" : { - "base:" : " 10/11/2020 07:23:50", - "fractionPrinter:" : " 10/11/2020 07:23:50", - "initialize" : " 10/11/2020 07:23:50", - "integerPrinter:" : " 10/11/2020 07:23:50", - "print:on:" : " 10/11/2020 07:23:50", - "print:unit:on:" : " 10/11/2020 07:23:50", - "units:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/GRUnsupportedEncodingError.class/methodProperties.json b/repository/Grease-Core.package/GRUnsupportedEncodingError.class/methodProperties.json deleted file mode 100644 index 0e4a6622..00000000 --- a/repository/Grease-Core.package/GRUnsupportedEncodingError.class/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - } } diff --git a/repository/Grease-Core.package/GRVersion.class/methodProperties.json b/repository/Grease-Core.package/GRVersion.class/methodProperties.json deleted file mode 100644 index 274ab17f..00000000 --- a/repository/Grease-Core.package/GRVersion.class/methodProperties.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "class" : { - "major:" : " 10/11/2020 07:23:50", - "major:minor:" : " 10/11/2020 07:23:50", - "major:minor:revision:" : " 10/11/2020 07:23:50", - "new" : " 10/11/2020 07:23:50" }, - "instance" : { - "<" : " 10/11/2020 07:23:50", - "<=" : " 10/11/2020 07:23:50", - "=" : " 10/11/2020 07:23:50", - ">" : " 10/11/2020 07:23:50", - ">=" : " 10/11/2020 07:23:50", - "beAlpha" : " 10/11/2020 07:23:50", - "beAlpha:" : " 10/11/2020 07:23:50", - "beBeta" : " 10/11/2020 07:23:50", - "beBeta:" : " 10/11/2020 07:23:50", - "beFinal" : " 10/11/2020 07:23:50", - "beReleaseCandidate" : " 10/11/2020 07:23:50", - "beReleaseCandidate:" : " 10/11/2020 07:23:50", - "greaseString" : " 10/11/2020 07:23:50", - "hash" : " 10/11/2020 07:23:50", - "initializeWithMajor:minor:revision:" : " 10/11/2020 07:23:50", - "isAlpha" : " 10/11/2020 07:23:50", - "isBeta" : " 10/11/2020 07:23:50", - "isFinal" : " 10/11/2020 07:23:50", - "isReleaseCandidate" : " 10/11/2020 07:23:50", - "major" : " 10/11/2020 07:23:50", - "major:" : " 10/11/2020 07:23:50", - "minor" : " 10/11/2020 07:23:50", - "minor:" : " 10/11/2020 07:23:50", - "revision" : " 10/11/2020 07:23:50", - "revision:" : " 10/11/2020 07:23:50", - "stage" : " 10/11/2020 07:23:50", - "stage:number:" : " 10/11/2020 07:23:50", - "stageNumber" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/Integer.extension/methodProperties.json b/repository/Grease-Core.package/Integer.extension/methodProperties.json deleted file mode 100644 index c6850e64..00000000 --- a/repository/Grease-Core.package/Integer.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseInteger" : " 10/11/2020 07:23:50", - "pluralize:" : " 10/11/2020 07:23:50", - "pluralize:with:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/Number.extension/methodProperties.json b/repository/Grease-Core.package/Number.extension/methodProperties.json deleted file mode 100644 index 49bbc162..00000000 --- a/repository/Grease-Core.package/Number.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseInteger" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/Object.extension/methodProperties.json b/repository/Grease-Core.package/Object.extension/methodProperties.json deleted file mode 100644 index 381d46ba..00000000 --- a/repository/Grease-Core.package/Object.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseDeprecatedApi:details:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/String.extension/methodProperties.json b/repository/Grease-Core.package/String.extension/methodProperties.json deleted file mode 100644 index 796d6476..00000000 --- a/repository/Grease-Core.package/String.extension/methodProperties.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "excerpt:" : " 10/11/2020 07:23:50", - "excerpt:radius:" : " 10/11/2020 07:23:50", - "excerpt:radius:ellipsis:" : " 10/11/2020 07:23:50", - "greaseInteger" : " 10/11/2020 07:23:50", - "pluralize" : " 10/11/2020 07:23:50", - "print:on:" : " 10/11/2020 07:23:50", - "truncate" : " 10/11/2020 07:23:50", - "truncate:" : " 10/11/2020 07:23:50", - "truncate:ellipsis:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-Core.package/UndefinedObject.extension/methodProperties.json b/repository/Grease-Core.package/UndefinedObject.extension/methodProperties.json deleted file mode 100644 index 4c54bdcb..00000000 --- a/repository/Grease-Core.package/UndefinedObject.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "print:on:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Array.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Array.extension/methodProperties.json deleted file mode 100644 index 6142915c..00000000 --- a/repository/Grease-GemStone-Core.package/Array.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "beMutable" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Behavior.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Behavior.extension/methodProperties.json deleted file mode 100644 index 63647c72..00000000 --- a/repository/Grease-GemStone-Core.package/Behavior.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "fullName" : " 10/11/2020 07:23:50", - "removeSelectorSilently:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/BinaryFloat.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/BinaryFloat.extension/methodProperties.json deleted file mode 100644 index e505f664..00000000 --- a/repository/Grease-GemStone-Core.package/BinaryFloat.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/ByteArray.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/ByteArray.extension/methodProperties.json deleted file mode 100644 index e505f664..00000000 --- a/repository/Grease-GemStone-Core.package/ByteArray.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Character.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Character.extension/methodProperties.json deleted file mode 100644 index 49bbc162..00000000 --- a/repository/Grease-GemStone-Core.package/Character.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseInteger" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/CharacterCollection.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/CharacterCollection.extension/methodProperties.json deleted file mode 100644 index f486ec75..00000000 --- a/repository/Grease-GemStone-Core.package/CharacterCollection.extension/methodProperties.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "excerpt:" : " 10/11/2020 07:23:50", - "excerpt:radius:" : " 10/11/2020 07:23:50", - "excerpt:radius:ellipsis:" : " 10/11/2020 07:23:50", - "greaseInteger" : " 10/11/2020 07:23:50", - "pluralize" : " 10/11/2020 07:23:50", - "print:on:" : " 10/11/2020 07:23:50", - "substrings:" : " 10/11/2020 07:23:50", - "trimBoth" : " 10/11/2020 07:23:50", - "trimBoth:" : " 10/11/2020 07:23:50", - "trimLeft" : " 10/11/2020 07:23:50", - "trimLeft:" : " 10/11/2020 07:23:50", - "trimLeft:right:" : " 10/11/2020 07:23:50", - "trimRight" : " 10/11/2020 07:23:50", - "trimRight:" : " 10/11/2020 07:23:50", - "truncate" : " 10/11/2020 07:23:50", - "truncate:" : " 10/11/2020 07:23:50", - "truncate:ellipsis:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Collection.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Collection.extension/methodProperties.json deleted file mode 100644 index d5d64984..00000000 --- a/repository/Grease-GemStone-Core.package/Collection.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "any" : " 10/11/2020 07:23:50", - "sorted" : " 10/11/2020 07:23:50", - "sorted:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Date.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Date.extension/methodProperties.json deleted file mode 100644 index 51458723..00000000 --- a/repository/Grease-GemStone-Core.package/Date.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "daysInMonthNumber:forYear:" : " 10/11/2020 07:23:50" }, - "instance" : { - } } diff --git a/repository/Grease-GemStone-Core.package/Dictionary.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Dictionary.extension/methodProperties.json deleted file mode 100644 index 59c1f401..00000000 --- a/repository/Grease-GemStone-Core.package/Dictionary.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "copyFrom:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/DoubleByteString.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/DoubleByteString.extension/methodProperties.json deleted file mode 100644 index e505f664..00000000 --- a/repository/Grease-GemStone-Core.package/DoubleByteString.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Duration.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Duration.extension/methodProperties.json deleted file mode 100644 index 135f996d..00000000 --- a/repository/Grease-GemStone-Core.package/Duration.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - "milliseconds:" : " 10/11/2020 07:23:50" }, - "instance" : { - "asMilliseconds" : " 10/11/2020 07:23:50", - "milliseconds" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Exception.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Exception.extension/methodProperties.json deleted file mode 100644 index 0bec5698..00000000 --- a/repository/Grease-GemStone-Core.package/Exception.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - "raiseSignal" : " 10/11/2020 07:23:50", - "raiseSignal:" : " 10/11/2020 07:23:50" }, - "instance" : { - "raiseSignal" : " 10/11/2020 07:23:50", - "raiseSignal:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/GRDynamicVariable.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRDynamicVariable.class/methodProperties.json deleted file mode 100644 index 03da5426..00000000 --- a/repository/Grease-GemStone-Core.package/GRDynamicVariable.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - "default" : " 10/11/2020 07:23:50", - "defaultValue" : " 10/11/2020 07:23:50", - "use:during:" : " 10/11/2020 07:23:50", - "value" : " 10/11/2020 07:23:50" }, - "instance" : { - } } diff --git a/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/methodProperties.json deleted file mode 100644 index 6b5e60e2..00000000 --- a/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/methodProperties.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "class" : { - "initialize" : " 10/11/2020 07:23:50", - "unload" : " 10/11/2020 07:23:50" }, - "instance" : { - "addToShutDownList:" : " 10/11/2020 07:23:50", - "addToStartUpList:" : " 10/11/2020 07:23:50", - "asMethodReturningByteArray:named:" : " 10/11/2020 07:23:50", - "asMethodReturningString:named:" : " 10/11/2020 07:23:50", - "base64Decode:" : " 10/11/2020 07:23:50", - "compile:into:classified:" : " 10/11/2020 07:23:50", - "contentsOfFile:binary:" : " 10/11/2020 07:23:50", - "defaultDispatcherName" : " 10/11/2020 07:23:50", - "deprecationExceptionSet" : " 10/11/2020 07:23:50", - "directoriesIn:" : " 10/11/2020 07:23:50", - "doAbortTransaction" : " 10/11/2020 07:23:50", - "doBeginTransaction" : " 10/11/2020 07:23:50", - "doCommitTransaction" : " 10/11/2020 07:23:50", - "doTransaction:" : " 10/11/2020 07:23:50", - "ensureExistenceOfFolder:" : " 10/11/2020 07:23:50", - "fileExists:" : " 10/11/2020 07:23:50", - "fileStreamOn:do:binary:" : " 10/11/2020 07:23:50", - "filesIn:" : " 10/11/2020 07:23:50", - "isProcessTerminated:" : " 10/11/2020 07:23:50", - "label" : " 10/11/2020 07:23:50", - "localNameOf:" : " 10/11/2020 07:23:50", - "logError:title:" : " 10/11/2020 07:23:50", - "logError:title:shouldCommit:" : " 10/11/2020 07:23:50", - "newRandom" : " 10/11/2020 07:23:50", - "newline" : " 10/11/2020 07:23:50", - "openDebuggerOn:" : " 10/11/2020 07:23:50", - "pathSeparator" : " 10/11/2020 07:23:50", - "readWriteByteStream" : " 10/11/2020 07:23:50", - "readWriteCharacterStream" : " 10/11/2020 07:23:50", - "reducedConflictDictionary" : " 10/11/2020 07:23:50", - "removeFromShutDownList:" : " 10/11/2020 07:23:50", - "removeFromStartUpList:" : " 10/11/2020 07:23:50", - "removeSelector:from:" : " 10/11/2020 07:23:50", - "saveLogEntry:shouldCommit:" : " 10/11/2020 07:23:50", - "secureHashFor:" : " 10/11/2020 07:23:50", - "semaphoreClass" : " 10/11/2020 07:23:50", - "smtpServer" : " 10/11/2020 07:23:50", - "stackDepth" : " 10/11/2020 07:23:50", - "terminateProcess:" : " 10/11/2020 07:23:50", - "thisContext" : " 10/11/2020 07:23:50", - "transactionMutex" : " 10/11/2020 07:23:50", - "weakDictionaryOfSize:" : " 10/11/2020 07:23:50", - "write:toFile:inFolder:" : " 10/11/2020 07:23:50", - "writeCharacterStreamOn:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/GRGemStoneRandomProvider.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRGemStoneRandomProvider.class/methodProperties.json deleted file mode 100644 index 0d1cce31..00000000 --- a/repository/Grease-GemStone-Core.package/GRGemStoneRandomProvider.class/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "class" : { - "generator" : " 10/11/2020 07:23:50", - "initialize" : " 10/11/2020 07:23:50", - "mutex" : " 10/11/2020 07:23:50", - "nextInt:" : " 10/11/2020 07:23:50", - "randomClass" : " 10/11/2020 07:23:50", - "randomFrom:" : " 10/11/2020 07:23:50", - "sessionStart" : " 10/11/2020 07:23:50" }, - "instance" : { - } } diff --git a/repository/Grease-GemStone-Core.package/GRLatin1GemStoneCodec.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRLatin1GemStoneCodec.class/methodProperties.json deleted file mode 100644 index 4602091a..00000000 --- a/repository/Grease-GemStone-Core.package/GRLatin1GemStoneCodec.class/methodProperties.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "class" : { - "basicForEncoding:" : " 10/11/2020 07:23:50", - "codecs" : "JohanBrichau 11/14/2020 01:32", - "supportsEncoding:" : " 10/11/2020 07:23:50" }, - "instance" : { - "decode:" : " 10/11/2020 07:23:50", - "encode:" : " 10/11/2020 07:23:50", - "encodeUrl:" : " 10/11/2020 07:23:50", - "encoderFor:" : " 10/11/2020 07:23:50", - "name" : " 10/11/2020 07:23:50", - "name:" : " 10/11/2020 07:23:50", - "url" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/GRPackage.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/GRPackage.extension/methodProperties.json deleted file mode 100644 index fa6adaf7..00000000 --- a/repository/Grease-GemStone-Core.package/GRPackage.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "greaseGemStoneCore" : " 10/11/2020 07:23:50" }, - "instance" : { - "gemstoneUrl" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/GRTextOrBinaryCodecStream.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRTextOrBinaryCodecStream.class/methodProperties.json deleted file mode 100644 index 1ad664ab..00000000 --- a/repository/Grease-GemStone-Core.package/GRTextOrBinaryCodecStream.class/methodProperties.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "binary" : " 10/11/2020 07:23:50", - "contents" : " 10/11/2020 07:23:50", - "flush" : " 10/11/2020 07:23:50", - "initializeOn:" : " 10/11/2020 07:23:50", - "next" : " 10/11/2020 07:23:50", - "next:" : " 10/11/2020 07:23:50", - "nextPut:" : " 10/11/2020 07:23:50", - "nextPutAll:" : " 10/11/2020 07:23:50", - "size" : " 10/11/2020 07:23:50", - "text" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/methodProperties.json deleted file mode 100644 index afa3cceb..00000000 --- a/repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/methodProperties.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "class" : { - "basicForEncoding:" : " 10/11/2020 07:23:50", - "codecs" : "JohanBrichau 11/14/2020 01:33", - "supportsEncoding:" : " 10/11/2020 07:23:50" }, - "instance" : { - "decode:" : " 10/11/2020 07:23:50", - "decoderFor:" : " 10/11/2020 07:23:50", - "encode:" : " 10/11/2020 07:23:50", - "encodeUrl:" : " 10/11/2020 07:23:50", - "encoderFor:" : " 10/11/2020 07:23:50", - "initialize" : " 10/11/2020 07:23:50", - "name" : " 10/11/2020 07:23:50", - "url" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/GsContext.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GsContext.class/methodProperties.json deleted file mode 100644 index 7361968d..00000000 --- a/repository/Grease-GemStone-Core.package/GsContext.class/methodProperties.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "class" : { - "fromContinuation:atLevel:" : " 10/11/2020 07:23:50", - "fromLevel:" : " 10/11/2020 07:23:50" }, - "instance" : { - "=" : " 10/11/2020 07:23:50", - "asString" : " 10/11/2020 07:23:50", - "continuation:level:" : " 10/11/2020 07:23:50", - "fullPrintString" : " 10/11/2020 07:23:50", - "greaseString" : " 10/11/2020 07:23:50", - "method" : " 10/11/2020 07:23:50", - "receiver" : " 10/11/2020 07:23:50", - "sender" : " 10/11/2020 07:23:50", - "tempAt:" : " 10/11/2020 07:23:50", - "tempNames" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Interval.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Interval.extension/methodProperties.json deleted file mode 100644 index 9febe955..00000000 --- a/repository/Grease-GemStone-Core.package/Interval.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "any" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/MessageSend.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/MessageSend.extension/methodProperties.json deleted file mode 100644 index 3da0ba03..00000000 --- a/repository/Grease-GemStone-Core.package/MessageSend.extension/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "argumentCount" : " 10/11/2020 07:23:50", - "evaluateWithArguments:" : " 10/11/2020 07:23:50", - "value:" : " 10/11/2020 07:23:50", - "value:value:" : " 10/11/2020 07:23:50", - "valueWithPossibleArgument:" : " 10/11/2020 07:23:50", - "valueWithPossibleArguments:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Number.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Number.extension/methodProperties.json deleted file mode 100644 index 782276fc..00000000 --- a/repository/Grease-GemStone-Core.package/Number.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "milliseconds" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Object.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Object.extension/methodProperties.json deleted file mode 100644 index 448d57b5..00000000 --- a/repository/Grease-GemStone-Core.package/Object.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "displayString" : " 10/11/2020 07:23:50", - "greaseString" : " 10/11/2020 07:23:50", - "isMessageSend" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/PackageInfo.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/PackageInfo.extension/methodProperties.json deleted file mode 100644 index 72079dc1..00000000 --- a/repository/Grease-GemStone-Core.package/PackageInfo.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "versionString" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/PositionableStream.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/PositionableStream.extension/methodProperties.json deleted file mode 100644 index 6cd2688f..00000000 --- a/repository/Grease-GemStone-Core.package/PositionableStream.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseUpToAll:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/SequenceableCollection.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/SequenceableCollection.extension/methodProperties.json deleted file mode 100644 index 2d4f2a67..00000000 --- a/repository/Grease-GemStone-Core.package/SequenceableCollection.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "beginsWithSubCollection:" : " 10/11/2020 07:23:50", - "endsWithSubCollection:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/String.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/String.extension/methodProperties.json deleted file mode 100644 index 663f83c7..00000000 --- a/repository/Grease-GemStone-Core.package/String.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "fromString:" : " 10/11/2020 07:23:50" }, - "instance" : { - } } diff --git a/repository/Grease-GemStone-Core.package/Symbol.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Symbol.extension/methodProperties.json deleted file mode 100644 index 6db43052..00000000 --- a/repository/Grease-GemStone-Core.package/Symbol.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseAsMutator" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/SystemAbortTransaction.class/methodProperties.json b/repository/Grease-GemStone-Core.package/SystemAbortTransaction.class/methodProperties.json deleted file mode 100644 index cc8beed9..00000000 --- a/repository/Grease-GemStone-Core.package/SystemAbortTransaction.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "alternatives" : " 10/11/2020 07:23:50", - "defaultAction" : " 10/11/2020 07:23:50", - "transaction" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/SystemBeginTransaction.class/methodProperties.json b/repository/Grease-GemStone-Core.package/SystemBeginTransaction.class/methodProperties.json deleted file mode 100644 index cc8beed9..00000000 --- a/repository/Grease-GemStone-Core.package/SystemBeginTransaction.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "alternatives" : " 10/11/2020 07:23:50", - "defaultAction" : " 10/11/2020 07:23:50", - "transaction" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/SystemCommitTransaction.class/methodProperties.json b/repository/Grease-GemStone-Core.package/SystemCommitTransaction.class/methodProperties.json deleted file mode 100644 index cc8beed9..00000000 --- a/repository/Grease-GemStone-Core.package/SystemCommitTransaction.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "alternatives" : " 10/11/2020 07:23:50", - "defaultAction" : " 10/11/2020 07:23:50", - "transaction" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/SystemTransactionNotification.class/methodProperties.json b/repository/Grease-GemStone-Core.package/SystemTransactionNotification.class/methodProperties.json deleted file mode 100644 index c4e1ea4b..00000000 --- a/repository/Grease-GemStone-Core.package/SystemTransactionNotification.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "alternatives" : " 10/11/2020 07:23:50", - "transaction" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/UnorderedCollection.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/UnorderedCollection.extension/methodProperties.json deleted file mode 100644 index 59c1f401..00000000 --- a/repository/Grease-GemStone-Core.package/UnorderedCollection.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "copyFrom:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/WriteStream.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/WriteStream.extension/methodProperties.json deleted file mode 100644 index 46831332..00000000 --- a/repository/Grease-GemStone-Core.package/WriteStream.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "crlf" : " 10/11/2020 07:23:50", - "greaseNext:putAll:startingAt:" : " 10/11/2020 07:23:50" } } From ba2be8a4f427b2c0e2f7062726cfaf4e7e7e7225 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sat, 14 Nov 2020 09:56:59 +0000 Subject: [PATCH 22/46] removed monticello metadata --- repository/Grease-Core.package/monticello.meta/version | 1 - repository/Grease-GemStone-Core.package/monticello.meta/version | 1 - 2 files changed, 2 deletions(-) delete mode 100644 repository/Grease-Core.package/monticello.meta/version delete mode 100644 repository/Grease-GemStone-Core.package/monticello.meta/version diff --git a/repository/Grease-Core.package/monticello.meta/version b/repository/Grease-Core.package/monticello.meta/version deleted file mode 100644 index a859b494..00000000 --- a/repository/Grease-Core.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-Core-JohanBrichau.2' message 'added missing ''codecs'' class methods' id 'ab9e5c12-2894-480f-99ae-8a59cce0b861' date '11/14/2020' time '01:37:11' author 'JohanBrichau' ancestors ((name 'Grease-Core-cypress.1' message 'fabricated from a Cypress format repository' id '715af6a5-d13a-4ce1-aea9-3ba5d383fe6a' date '10/11/2020' time '23:45:35' author '' ancestors () stepChildren ())) stepChildren ()) \ No newline at end of file diff --git a/repository/Grease-GemStone-Core.package/monticello.meta/version b/repository/Grease-GemStone-Core.package/monticello.meta/version deleted file mode 100644 index 90136bdb..00000000 --- a/repository/Grease-GemStone-Core.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-GemStone-Core-JohanBrichau.2' message 'added missing ''codecs'' class methods' id '94ddc763-47ef-46d8-9e1d-6a889151ffc5' date '11/14/2020' time '01:37:12' author 'JohanBrichau' ancestors ((name 'Grease-GemStone-Core-cypress.1' message 'fabricated from a Cypress format repository' id '7542e591-944f-48c5-b722-18562c0f475d' date '10/11/2020' time '23:45:35' author '' ancestors () stepChildren ())) stepChildren ()) \ No newline at end of file From 66c03f65a18805205a893f0be2530b9da4952b0b Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sat, 14 Nov 2020 11:48:04 +0100 Subject: [PATCH 23/46] correct Gemstone 3.5.4 badge --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1bcdedfa..256dd599 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ The latest Grease version is supported on the following platforms and versions, | Squeak | Pharo | GemStone | | --------------- | ---------------- | -------------------- | -| [![Build status: Squeak-5.2](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Squeak-trunk&label=5.2)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Pharo64-9.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo64-9.0&label=9.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.5.2](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.5.2&label=3.5.2)](http://travis-ci.org/SeasideSt/Grease) | +| [![Build status: Squeak-5.2](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Squeak-trunk&label=5.2)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Pharo64-9.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo64-9.0&label=9.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.5.4](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.5.4&label=3.5.4)](http://travis-ci.org/SeasideSt/Grease) | | [![Build status: Squeak-5.1](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Squeak-5.1&label=5.1)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Pharo64-8.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo64-8.0&label=8.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.4.5](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.4.5&label=3.4.5)](http://travis-ci.org/SeasideSt/Grease) | | | [![Build status: Pharo64-7.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo64-7.0&label=7.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.3.9](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.3.9&label=3.3.9)](http://travis-ci.org/SeasideSt/Grease) | | | [![Build status: Pharo-6.1](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo-6.1&label=6.1)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.2.17](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.2.17&label=3.2.17)](http://travis-ci.org/SeasideSt/Grease) | From 2457b15b2527b35f5411b040609412ed2e090dc0 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sun, 20 Dec 2020 16:25:39 +0000 Subject: [PATCH 24/46] Added GsContext>>namedTempAt: for compatibility and improved GRGemStonePlatform>>thisContext --- .../Array.extension/methodProperties.json | 5 ++ .../Behavior.extension/methodProperties.json | 6 +++ .../methodProperties.json | 5 ++ .../ByteArray.extension/methodProperties.json | 5 ++ .../Character.extension/methodProperties.json | 5 ++ .../methodProperties.json | 21 ++++++++ .../methodProperties.json | 7 +++ .../Date.extension/methodProperties.json | 5 ++ .../methodProperties.json | 5 ++ .../methodProperties.json | 5 ++ .../Duration.extension/methodProperties.json | 6 +++ .../Exception.extension/methodProperties.json | 7 +++ .../methodProperties.json | 8 +++ .../instance/thisContext.st | 2 +- .../methodProperties.json | 50 +++++++++++++++++++ .../methodProperties.json | 11 ++++ .../methodProperties.json | 13 +++++ .../GRPackage.extension/methodProperties.json | 5 ++ .../methodProperties.json | 14 ++++++ .../methodProperties.json | 14 ++++++ .../GsContext.class/instance/namedTempAt..st | 3 ++ .../GsContext.class/methodProperties.json | 16 ++++++ .../Interval.extension/methodProperties.json | 5 ++ .../methodProperties.json | 10 ++++ .../Number.extension/methodProperties.json | 5 ++ .../Object.extension/methodProperties.json | 7 +++ .../methodProperties.json | 5 ++ .../methodProperties.json | 5 ++ .../methodProperties.json | 6 +++ .../String.extension/methodProperties.json | 5 ++ .../Symbol.extension/methodProperties.json | 5 ++ .../methodProperties.json | 7 +++ .../methodProperties.json | 7 +++ .../methodProperties.json | 7 +++ .../methodProperties.json | 6 +++ .../methodProperties.json | 5 ++ .../methodProperties.json | 6 +++ .../monticello.meta/version | 1 + 38 files changed, 309 insertions(+), 1 deletion(-) create mode 100644 repository/Grease-GemStone-Core.package/Array.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Behavior.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/BinaryFloat.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/ByteArray.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Character.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/CharacterCollection.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Collection.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Date.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Dictionary.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/DoubleByteString.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Duration.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Exception.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/GRDynamicVariable.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/GRGemStoneRandomProvider.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/GRLatin1GemStoneCodec.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/GRPackage.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/GRTextOrBinaryCodecStream.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/GsContext.class/instance/namedTempAt..st create mode 100644 repository/Grease-GemStone-Core.package/GsContext.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Interval.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/MessageSend.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Number.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Object.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/PackageInfo.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/PositionableStream.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/SequenceableCollection.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/String.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/Symbol.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/SystemAbortTransaction.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/SystemBeginTransaction.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/SystemCommitTransaction.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/SystemTransactionNotification.class/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/UnorderedCollection.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/WriteStream.extension/methodProperties.json create mode 100644 repository/Grease-GemStone-Core.package/monticello.meta/version diff --git a/repository/Grease-GemStone-Core.package/Array.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Array.extension/methodProperties.json new file mode 100644 index 00000000..6142915c --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Array.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "beMutable" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Behavior.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Behavior.extension/methodProperties.json new file mode 100644 index 00000000..63647c72 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Behavior.extension/methodProperties.json @@ -0,0 +1,6 @@ +{ + "class" : { + }, + "instance" : { + "fullName" : " 10/11/2020 07:23:50", + "removeSelectorSilently:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/BinaryFloat.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/BinaryFloat.extension/methodProperties.json new file mode 100644 index 00000000..e505f664 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/BinaryFloat.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "greaseString" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/ByteArray.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/ByteArray.extension/methodProperties.json new file mode 100644 index 00000000..e505f664 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/ByteArray.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "greaseString" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Character.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Character.extension/methodProperties.json new file mode 100644 index 00000000..49bbc162 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Character.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "greaseInteger" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/CharacterCollection.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/CharacterCollection.extension/methodProperties.json new file mode 100644 index 00000000..f486ec75 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/CharacterCollection.extension/methodProperties.json @@ -0,0 +1,21 @@ +{ + "class" : { + }, + "instance" : { + "excerpt:" : " 10/11/2020 07:23:50", + "excerpt:radius:" : " 10/11/2020 07:23:50", + "excerpt:radius:ellipsis:" : " 10/11/2020 07:23:50", + "greaseInteger" : " 10/11/2020 07:23:50", + "pluralize" : " 10/11/2020 07:23:50", + "print:on:" : " 10/11/2020 07:23:50", + "substrings:" : " 10/11/2020 07:23:50", + "trimBoth" : " 10/11/2020 07:23:50", + "trimBoth:" : " 10/11/2020 07:23:50", + "trimLeft" : " 10/11/2020 07:23:50", + "trimLeft:" : " 10/11/2020 07:23:50", + "trimLeft:right:" : " 10/11/2020 07:23:50", + "trimRight" : " 10/11/2020 07:23:50", + "trimRight:" : " 10/11/2020 07:23:50", + "truncate" : " 10/11/2020 07:23:50", + "truncate:" : " 10/11/2020 07:23:50", + "truncate:ellipsis:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Collection.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Collection.extension/methodProperties.json new file mode 100644 index 00000000..d5d64984 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Collection.extension/methodProperties.json @@ -0,0 +1,7 @@ +{ + "class" : { + }, + "instance" : { + "any" : " 10/11/2020 07:23:50", + "sorted" : " 10/11/2020 07:23:50", + "sorted:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Date.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Date.extension/methodProperties.json new file mode 100644 index 00000000..51458723 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Date.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + "daysInMonthNumber:forYear:" : " 10/11/2020 07:23:50" }, + "instance" : { + } } diff --git a/repository/Grease-GemStone-Core.package/Dictionary.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Dictionary.extension/methodProperties.json new file mode 100644 index 00000000..59c1f401 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Dictionary.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "copyFrom:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/DoubleByteString.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/DoubleByteString.extension/methodProperties.json new file mode 100644 index 00000000..e505f664 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/DoubleByteString.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "greaseString" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Duration.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Duration.extension/methodProperties.json new file mode 100644 index 00000000..135f996d --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Duration.extension/methodProperties.json @@ -0,0 +1,6 @@ +{ + "class" : { + "milliseconds:" : " 10/11/2020 07:23:50" }, + "instance" : { + "asMilliseconds" : " 10/11/2020 07:23:50", + "milliseconds" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Exception.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Exception.extension/methodProperties.json new file mode 100644 index 00000000..0bec5698 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Exception.extension/methodProperties.json @@ -0,0 +1,7 @@ +{ + "class" : { + "raiseSignal" : " 10/11/2020 07:23:50", + "raiseSignal:" : " 10/11/2020 07:23:50" }, + "instance" : { + "raiseSignal" : " 10/11/2020 07:23:50", + "raiseSignal:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/GRDynamicVariable.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRDynamicVariable.class/methodProperties.json new file mode 100644 index 00000000..03da5426 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/GRDynamicVariable.class/methodProperties.json @@ -0,0 +1,8 @@ +{ + "class" : { + "default" : " 10/11/2020 07:23:50", + "defaultValue" : " 10/11/2020 07:23:50", + "use:during:" : " 10/11/2020 07:23:50", + "value" : " 10/11/2020 07:23:50" }, + "instance" : { + } } diff --git a/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/instance/thisContext.st b/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/instance/thisContext.st index 44dc34ca..50e2a5b0 100644 --- a/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/instance/thisContext.st +++ b/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/instance/thisContext.st @@ -1,3 +1,3 @@ *grease-gemstone-core thisContext - ^ (GsContext fromLevel: 1) sender sender \ No newline at end of file + ^ GsContext fromLevel: 3 \ No newline at end of file diff --git a/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/methodProperties.json new file mode 100644 index 00000000..100d104d --- /dev/null +++ b/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/methodProperties.json @@ -0,0 +1,50 @@ +{ + "class" : { + "initialize" : " 10/11/2020 07:23:50", + "unload" : " 10/11/2020 07:23:50" }, + "instance" : { + "addToShutDownList:" : " 10/11/2020 07:23:50", + "addToStartUpList:" : " 10/11/2020 07:23:50", + "asMethodReturningByteArray:named:" : " 10/11/2020 07:23:50", + "asMethodReturningString:named:" : " 10/11/2020 07:23:50", + "base64Decode:" : " 10/11/2020 07:23:50", + "compile:into:classified:" : " 10/11/2020 07:23:50", + "contentsOfFile:binary:" : " 10/11/2020 07:23:50", + "defaultDispatcherName" : " 10/11/2020 07:23:50", + "deprecationExceptionSet" : " 10/11/2020 07:23:50", + "directoriesIn:" : " 10/11/2020 07:23:50", + "doAbortTransaction" : " 10/11/2020 07:23:50", + "doBeginTransaction" : " 10/11/2020 07:23:50", + "doCommitTransaction" : " 10/11/2020 07:23:50", + "doTransaction:" : " 10/11/2020 07:23:50", + "ensureExistenceOfFolder:" : " 10/11/2020 07:23:50", + "fileExists:" : " 10/11/2020 07:23:50", + "filesIn:" : " 10/11/2020 07:23:50", + "isProcessTerminated:" : " 10/11/2020 07:23:50", + "label" : " 10/11/2020 07:23:50", + "localNameOf:" : " 10/11/2020 07:23:50", + "logError:title:" : " 10/11/2020 07:23:50", + "logError:title:shouldCommit:" : " 10/11/2020 07:23:50", + "newRandom" : " 10/11/2020 07:23:50", + "newline" : " 10/11/2020 07:23:50", + "openDebuggerOn:" : " 10/11/2020 07:23:50", + "pathSeparator" : " 10/11/2020 07:23:50", + "readFileStreamOn:do:binary:" : " 12/20/2020 08:14:04", + "readWriteByteStream" : " 10/11/2020 07:23:50", + "readWriteCharacterStream" : " 10/11/2020 07:23:50", + "reducedConflictDictionary" : " 10/11/2020 07:23:50", + "removeFromShutDownList:" : " 10/11/2020 07:23:50", + "removeFromStartUpList:" : " 10/11/2020 07:23:50", + "removeSelector:from:" : " 10/11/2020 07:23:50", + "saveLogEntry:shouldCommit:" : " 10/11/2020 07:23:50", + "secureHashFor:" : " 10/11/2020 07:23:50", + "semaphoreClass" : " 10/11/2020 07:23:50", + "smtpServer" : " 10/11/2020 07:23:50", + "stackDepth" : " 10/11/2020 07:23:50", + "terminateProcess:" : " 10/11/2020 07:23:50", + "thisContext" : "JohanBrichau 12/20/2020 07:48", + "transactionMutex" : " 10/11/2020 07:23:50", + "weakDictionaryOfSize:" : " 10/11/2020 07:23:50", + "write:toFile:inFolder:" : " 12/20/2020 08:14:04", + "writeCharacterStreamOn:" : " 10/11/2020 07:23:50", + "writeFileStreamOn:do:binary:" : " 12/20/2020 08:14:04" } } diff --git a/repository/Grease-GemStone-Core.package/GRGemStoneRandomProvider.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRGemStoneRandomProvider.class/methodProperties.json new file mode 100644 index 00000000..0d1cce31 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/GRGemStoneRandomProvider.class/methodProperties.json @@ -0,0 +1,11 @@ +{ + "class" : { + "generator" : " 10/11/2020 07:23:50", + "initialize" : " 10/11/2020 07:23:50", + "mutex" : " 10/11/2020 07:23:50", + "nextInt:" : " 10/11/2020 07:23:50", + "randomClass" : " 10/11/2020 07:23:50", + "randomFrom:" : " 10/11/2020 07:23:50", + "sessionStart" : " 10/11/2020 07:23:50" }, + "instance" : { + } } diff --git a/repository/Grease-GemStone-Core.package/GRLatin1GemStoneCodec.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRLatin1GemStoneCodec.class/methodProperties.json new file mode 100644 index 00000000..4602091a --- /dev/null +++ b/repository/Grease-GemStone-Core.package/GRLatin1GemStoneCodec.class/methodProperties.json @@ -0,0 +1,13 @@ +{ + "class" : { + "basicForEncoding:" : " 10/11/2020 07:23:50", + "codecs" : "JohanBrichau 11/14/2020 01:32", + "supportsEncoding:" : " 10/11/2020 07:23:50" }, + "instance" : { + "decode:" : " 10/11/2020 07:23:50", + "encode:" : " 10/11/2020 07:23:50", + "encodeUrl:" : " 10/11/2020 07:23:50", + "encoderFor:" : " 10/11/2020 07:23:50", + "name" : " 10/11/2020 07:23:50", + "name:" : " 10/11/2020 07:23:50", + "url" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/GRPackage.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/GRPackage.extension/methodProperties.json new file mode 100644 index 00000000..fa6adaf7 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/GRPackage.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + "greaseGemStoneCore" : " 10/11/2020 07:23:50" }, + "instance" : { + "gemstoneUrl" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/GRTextOrBinaryCodecStream.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRTextOrBinaryCodecStream.class/methodProperties.json new file mode 100644 index 00000000..1ad664ab --- /dev/null +++ b/repository/Grease-GemStone-Core.package/GRTextOrBinaryCodecStream.class/methodProperties.json @@ -0,0 +1,14 @@ +{ + "class" : { + }, + "instance" : { + "binary" : " 10/11/2020 07:23:50", + "contents" : " 10/11/2020 07:23:50", + "flush" : " 10/11/2020 07:23:50", + "initializeOn:" : " 10/11/2020 07:23:50", + "next" : " 10/11/2020 07:23:50", + "next:" : " 10/11/2020 07:23:50", + "nextPut:" : " 10/11/2020 07:23:50", + "nextPutAll:" : " 10/11/2020 07:23:50", + "size" : " 10/11/2020 07:23:50", + "text" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/methodProperties.json new file mode 100644 index 00000000..afa3cceb --- /dev/null +++ b/repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/methodProperties.json @@ -0,0 +1,14 @@ +{ + "class" : { + "basicForEncoding:" : " 10/11/2020 07:23:50", + "codecs" : "JohanBrichau 11/14/2020 01:33", + "supportsEncoding:" : " 10/11/2020 07:23:50" }, + "instance" : { + "decode:" : " 10/11/2020 07:23:50", + "decoderFor:" : " 10/11/2020 07:23:50", + "encode:" : " 10/11/2020 07:23:50", + "encodeUrl:" : " 10/11/2020 07:23:50", + "encoderFor:" : " 10/11/2020 07:23:50", + "initialize" : " 10/11/2020 07:23:50", + "name" : " 10/11/2020 07:23:50", + "url" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/GsContext.class/instance/namedTempAt..st b/repository/Grease-GemStone-Core.package/GsContext.class/instance/namedTempAt..st new file mode 100644 index 00000000..4ca86721 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/GsContext.class/instance/namedTempAt..st @@ -0,0 +1,3 @@ +accessing +namedTempAt: index + ^ self tempAt: index \ No newline at end of file diff --git a/repository/Grease-GemStone-Core.package/GsContext.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GsContext.class/methodProperties.json new file mode 100644 index 00000000..23ef2865 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/GsContext.class/methodProperties.json @@ -0,0 +1,16 @@ +{ + "class" : { + "fromContinuation:atLevel:" : " 10/11/2020 07:23:50", + "fromLevel:" : " 10/11/2020 07:23:50" }, + "instance" : { + "=" : " 10/11/2020 07:23:50", + "asString" : " 10/11/2020 07:23:50", + "continuation:level:" : " 10/11/2020 07:23:50", + "fullPrintString" : " 10/11/2020 07:23:50", + "greaseString" : " 10/11/2020 07:23:50", + "method" : " 10/11/2020 07:23:50", + "namedTempAt:" : "JohanBrichau 12/20/2020 06:33", + "receiver" : " 10/11/2020 07:23:50", + "sender" : " 10/11/2020 07:23:50", + "tempAt:" : " 10/11/2020 07:23:50", + "tempNames" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Interval.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Interval.extension/methodProperties.json new file mode 100644 index 00000000..9febe955 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Interval.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "any" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/MessageSend.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/MessageSend.extension/methodProperties.json new file mode 100644 index 00000000..3da0ba03 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/MessageSend.extension/methodProperties.json @@ -0,0 +1,10 @@ +{ + "class" : { + }, + "instance" : { + "argumentCount" : " 10/11/2020 07:23:50", + "evaluateWithArguments:" : " 10/11/2020 07:23:50", + "value:" : " 10/11/2020 07:23:50", + "value:value:" : " 10/11/2020 07:23:50", + "valueWithPossibleArgument:" : " 10/11/2020 07:23:50", + "valueWithPossibleArguments:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Number.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Number.extension/methodProperties.json new file mode 100644 index 00000000..782276fc --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Number.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "milliseconds" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Object.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Object.extension/methodProperties.json new file mode 100644 index 00000000..448d57b5 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Object.extension/methodProperties.json @@ -0,0 +1,7 @@ +{ + "class" : { + }, + "instance" : { + "displayString" : " 10/11/2020 07:23:50", + "greaseString" : " 10/11/2020 07:23:50", + "isMessageSend" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/PackageInfo.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/PackageInfo.extension/methodProperties.json new file mode 100644 index 00000000..72079dc1 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/PackageInfo.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "versionString" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/PositionableStream.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/PositionableStream.extension/methodProperties.json new file mode 100644 index 00000000..6cd2688f --- /dev/null +++ b/repository/Grease-GemStone-Core.package/PositionableStream.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "greaseUpToAll:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/SequenceableCollection.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/SequenceableCollection.extension/methodProperties.json new file mode 100644 index 00000000..2d4f2a67 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/SequenceableCollection.extension/methodProperties.json @@ -0,0 +1,6 @@ +{ + "class" : { + }, + "instance" : { + "beginsWithSubCollection:" : " 10/11/2020 07:23:50", + "endsWithSubCollection:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/String.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/String.extension/methodProperties.json new file mode 100644 index 00000000..663f83c7 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/String.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + "fromString:" : " 10/11/2020 07:23:50" }, + "instance" : { + } } diff --git a/repository/Grease-GemStone-Core.package/Symbol.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Symbol.extension/methodProperties.json new file mode 100644 index 00000000..6db43052 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/Symbol.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "greaseAsMutator" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/SystemAbortTransaction.class/methodProperties.json b/repository/Grease-GemStone-Core.package/SystemAbortTransaction.class/methodProperties.json new file mode 100644 index 00000000..cc8beed9 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/SystemAbortTransaction.class/methodProperties.json @@ -0,0 +1,7 @@ +{ + "class" : { + }, + "instance" : { + "alternatives" : " 10/11/2020 07:23:50", + "defaultAction" : " 10/11/2020 07:23:50", + "transaction" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/SystemBeginTransaction.class/methodProperties.json b/repository/Grease-GemStone-Core.package/SystemBeginTransaction.class/methodProperties.json new file mode 100644 index 00000000..cc8beed9 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/SystemBeginTransaction.class/methodProperties.json @@ -0,0 +1,7 @@ +{ + "class" : { + }, + "instance" : { + "alternatives" : " 10/11/2020 07:23:50", + "defaultAction" : " 10/11/2020 07:23:50", + "transaction" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/SystemCommitTransaction.class/methodProperties.json b/repository/Grease-GemStone-Core.package/SystemCommitTransaction.class/methodProperties.json new file mode 100644 index 00000000..cc8beed9 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/SystemCommitTransaction.class/methodProperties.json @@ -0,0 +1,7 @@ +{ + "class" : { + }, + "instance" : { + "alternatives" : " 10/11/2020 07:23:50", + "defaultAction" : " 10/11/2020 07:23:50", + "transaction" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/SystemTransactionNotification.class/methodProperties.json b/repository/Grease-GemStone-Core.package/SystemTransactionNotification.class/methodProperties.json new file mode 100644 index 00000000..c4e1ea4b --- /dev/null +++ b/repository/Grease-GemStone-Core.package/SystemTransactionNotification.class/methodProperties.json @@ -0,0 +1,6 @@ +{ + "class" : { + }, + "instance" : { + "alternatives" : " 10/11/2020 07:23:50", + "transaction" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/UnorderedCollection.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/UnorderedCollection.extension/methodProperties.json new file mode 100644 index 00000000..59c1f401 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/UnorderedCollection.extension/methodProperties.json @@ -0,0 +1,5 @@ +{ + "class" : { + }, + "instance" : { + "copyFrom:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/WriteStream.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/WriteStream.extension/methodProperties.json new file mode 100644 index 00000000..46831332 --- /dev/null +++ b/repository/Grease-GemStone-Core.package/WriteStream.extension/methodProperties.json @@ -0,0 +1,6 @@ +{ + "class" : { + }, + "instance" : { + "crlf" : " 10/11/2020 07:23:50", + "greaseNext:putAll:startingAt:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/monticello.meta/version b/repository/Grease-GemStone-Core.package/monticello.meta/version new file mode 100644 index 00000000..338b738d --- /dev/null +++ b/repository/Grease-GemStone-Core.package/monticello.meta/version @@ -0,0 +1 @@ +(name 'Grease-GemStone-Core-JohanBrichau.5' message 'Added GsContext>>namedTempAt: for compatibility and improved GRGemStonePlatform>>thisContext' id '53a903d5-5a26-4b0b-a886-6419f51f8912' date '12/20/2020' time '08:25:38' author 'JohanBrichau' ancestors ((name 'Grease-GemStone-Core-cypress.1' message 'fabricated from a Cypress format repository' id '0ff5f06b-ab63-4105-a796-170049ec7777' date '12/20/2020' time '08:22:29' author '' ancestors () stepChildren ())) stepChildren ()) \ No newline at end of file From 03393b6fc1306c0a291f8d5f124a40cce1242e54 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sun, 20 Dec 2020 16:28:25 +0000 Subject: [PATCH 25/46] removed monticello metadata... --- .../Array.extension/methodProperties.json | 5 -- .../Behavior.extension/methodProperties.json | 6 --- .../methodProperties.json | 5 -- .../ByteArray.extension/methodProperties.json | 5 -- .../Character.extension/methodProperties.json | 5 -- .../methodProperties.json | 21 -------- .../methodProperties.json | 7 --- .../Date.extension/methodProperties.json | 5 -- .../methodProperties.json | 5 -- .../methodProperties.json | 5 -- .../Duration.extension/methodProperties.json | 6 --- .../Exception.extension/methodProperties.json | 7 --- .../methodProperties.json | 8 --- .../methodProperties.json | 50 ------------------- .../methodProperties.json | 11 ---- .../methodProperties.json | 13 ----- .../GRPackage.extension/methodProperties.json | 5 -- .../methodProperties.json | 14 ------ .../methodProperties.json | 14 ------ .../GsContext.class/methodProperties.json | 16 ------ .../Interval.extension/methodProperties.json | 5 -- .../methodProperties.json | 10 ---- .../Number.extension/methodProperties.json | 5 -- .../Object.extension/methodProperties.json | 7 --- .../methodProperties.json | 5 -- .../methodProperties.json | 5 -- .../methodProperties.json | 6 --- .../String.extension/methodProperties.json | 5 -- .../Symbol.extension/methodProperties.json | 5 -- .../methodProperties.json | 7 --- .../methodProperties.json | 7 --- .../methodProperties.json | 7 --- .../methodProperties.json | 6 --- .../methodProperties.json | 5 -- .../methodProperties.json | 6 --- .../monticello.meta/version | 1 - 36 files changed, 305 deletions(-) delete mode 100644 repository/Grease-GemStone-Core.package/Array.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Behavior.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/BinaryFloat.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/ByteArray.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Character.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/CharacterCollection.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Collection.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Date.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Dictionary.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/DoubleByteString.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Duration.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Exception.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/GRDynamicVariable.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/GRGemStoneRandomProvider.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/GRLatin1GemStoneCodec.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/GRPackage.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/GRTextOrBinaryCodecStream.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/GsContext.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Interval.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/MessageSend.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Number.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Object.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/PackageInfo.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/PositionableStream.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/SequenceableCollection.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/String.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/Symbol.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/SystemAbortTransaction.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/SystemBeginTransaction.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/SystemCommitTransaction.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/SystemTransactionNotification.class/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/UnorderedCollection.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/WriteStream.extension/methodProperties.json delete mode 100644 repository/Grease-GemStone-Core.package/monticello.meta/version diff --git a/repository/Grease-GemStone-Core.package/Array.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Array.extension/methodProperties.json deleted file mode 100644 index 6142915c..00000000 --- a/repository/Grease-GemStone-Core.package/Array.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "beMutable" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Behavior.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Behavior.extension/methodProperties.json deleted file mode 100644 index 63647c72..00000000 --- a/repository/Grease-GemStone-Core.package/Behavior.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "fullName" : " 10/11/2020 07:23:50", - "removeSelectorSilently:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/BinaryFloat.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/BinaryFloat.extension/methodProperties.json deleted file mode 100644 index e505f664..00000000 --- a/repository/Grease-GemStone-Core.package/BinaryFloat.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/ByteArray.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/ByteArray.extension/methodProperties.json deleted file mode 100644 index e505f664..00000000 --- a/repository/Grease-GemStone-Core.package/ByteArray.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Character.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Character.extension/methodProperties.json deleted file mode 100644 index 49bbc162..00000000 --- a/repository/Grease-GemStone-Core.package/Character.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseInteger" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/CharacterCollection.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/CharacterCollection.extension/methodProperties.json deleted file mode 100644 index f486ec75..00000000 --- a/repository/Grease-GemStone-Core.package/CharacterCollection.extension/methodProperties.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "excerpt:" : " 10/11/2020 07:23:50", - "excerpt:radius:" : " 10/11/2020 07:23:50", - "excerpt:radius:ellipsis:" : " 10/11/2020 07:23:50", - "greaseInteger" : " 10/11/2020 07:23:50", - "pluralize" : " 10/11/2020 07:23:50", - "print:on:" : " 10/11/2020 07:23:50", - "substrings:" : " 10/11/2020 07:23:50", - "trimBoth" : " 10/11/2020 07:23:50", - "trimBoth:" : " 10/11/2020 07:23:50", - "trimLeft" : " 10/11/2020 07:23:50", - "trimLeft:" : " 10/11/2020 07:23:50", - "trimLeft:right:" : " 10/11/2020 07:23:50", - "trimRight" : " 10/11/2020 07:23:50", - "trimRight:" : " 10/11/2020 07:23:50", - "truncate" : " 10/11/2020 07:23:50", - "truncate:" : " 10/11/2020 07:23:50", - "truncate:ellipsis:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Collection.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Collection.extension/methodProperties.json deleted file mode 100644 index d5d64984..00000000 --- a/repository/Grease-GemStone-Core.package/Collection.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "any" : " 10/11/2020 07:23:50", - "sorted" : " 10/11/2020 07:23:50", - "sorted:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Date.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Date.extension/methodProperties.json deleted file mode 100644 index 51458723..00000000 --- a/repository/Grease-GemStone-Core.package/Date.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "daysInMonthNumber:forYear:" : " 10/11/2020 07:23:50" }, - "instance" : { - } } diff --git a/repository/Grease-GemStone-Core.package/Dictionary.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Dictionary.extension/methodProperties.json deleted file mode 100644 index 59c1f401..00000000 --- a/repository/Grease-GemStone-Core.package/Dictionary.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "copyFrom:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/DoubleByteString.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/DoubleByteString.extension/methodProperties.json deleted file mode 100644 index e505f664..00000000 --- a/repository/Grease-GemStone-Core.package/DoubleByteString.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Duration.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Duration.extension/methodProperties.json deleted file mode 100644 index 135f996d..00000000 --- a/repository/Grease-GemStone-Core.package/Duration.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - "milliseconds:" : " 10/11/2020 07:23:50" }, - "instance" : { - "asMilliseconds" : " 10/11/2020 07:23:50", - "milliseconds" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Exception.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Exception.extension/methodProperties.json deleted file mode 100644 index 0bec5698..00000000 --- a/repository/Grease-GemStone-Core.package/Exception.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - "raiseSignal" : " 10/11/2020 07:23:50", - "raiseSignal:" : " 10/11/2020 07:23:50" }, - "instance" : { - "raiseSignal" : " 10/11/2020 07:23:50", - "raiseSignal:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/GRDynamicVariable.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRDynamicVariable.class/methodProperties.json deleted file mode 100644 index 03da5426..00000000 --- a/repository/Grease-GemStone-Core.package/GRDynamicVariable.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - "default" : " 10/11/2020 07:23:50", - "defaultValue" : " 10/11/2020 07:23:50", - "use:during:" : " 10/11/2020 07:23:50", - "value" : " 10/11/2020 07:23:50" }, - "instance" : { - } } diff --git a/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/methodProperties.json deleted file mode 100644 index 100d104d..00000000 --- a/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/methodProperties.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "class" : { - "initialize" : " 10/11/2020 07:23:50", - "unload" : " 10/11/2020 07:23:50" }, - "instance" : { - "addToShutDownList:" : " 10/11/2020 07:23:50", - "addToStartUpList:" : " 10/11/2020 07:23:50", - "asMethodReturningByteArray:named:" : " 10/11/2020 07:23:50", - "asMethodReturningString:named:" : " 10/11/2020 07:23:50", - "base64Decode:" : " 10/11/2020 07:23:50", - "compile:into:classified:" : " 10/11/2020 07:23:50", - "contentsOfFile:binary:" : " 10/11/2020 07:23:50", - "defaultDispatcherName" : " 10/11/2020 07:23:50", - "deprecationExceptionSet" : " 10/11/2020 07:23:50", - "directoriesIn:" : " 10/11/2020 07:23:50", - "doAbortTransaction" : " 10/11/2020 07:23:50", - "doBeginTransaction" : " 10/11/2020 07:23:50", - "doCommitTransaction" : " 10/11/2020 07:23:50", - "doTransaction:" : " 10/11/2020 07:23:50", - "ensureExistenceOfFolder:" : " 10/11/2020 07:23:50", - "fileExists:" : " 10/11/2020 07:23:50", - "filesIn:" : " 10/11/2020 07:23:50", - "isProcessTerminated:" : " 10/11/2020 07:23:50", - "label" : " 10/11/2020 07:23:50", - "localNameOf:" : " 10/11/2020 07:23:50", - "logError:title:" : " 10/11/2020 07:23:50", - "logError:title:shouldCommit:" : " 10/11/2020 07:23:50", - "newRandom" : " 10/11/2020 07:23:50", - "newline" : " 10/11/2020 07:23:50", - "openDebuggerOn:" : " 10/11/2020 07:23:50", - "pathSeparator" : " 10/11/2020 07:23:50", - "readFileStreamOn:do:binary:" : " 12/20/2020 08:14:04", - "readWriteByteStream" : " 10/11/2020 07:23:50", - "readWriteCharacterStream" : " 10/11/2020 07:23:50", - "reducedConflictDictionary" : " 10/11/2020 07:23:50", - "removeFromShutDownList:" : " 10/11/2020 07:23:50", - "removeFromStartUpList:" : " 10/11/2020 07:23:50", - "removeSelector:from:" : " 10/11/2020 07:23:50", - "saveLogEntry:shouldCommit:" : " 10/11/2020 07:23:50", - "secureHashFor:" : " 10/11/2020 07:23:50", - "semaphoreClass" : " 10/11/2020 07:23:50", - "smtpServer" : " 10/11/2020 07:23:50", - "stackDepth" : " 10/11/2020 07:23:50", - "terminateProcess:" : " 10/11/2020 07:23:50", - "thisContext" : "JohanBrichau 12/20/2020 07:48", - "transactionMutex" : " 10/11/2020 07:23:50", - "weakDictionaryOfSize:" : " 10/11/2020 07:23:50", - "write:toFile:inFolder:" : " 12/20/2020 08:14:04", - "writeCharacterStreamOn:" : " 10/11/2020 07:23:50", - "writeFileStreamOn:do:binary:" : " 12/20/2020 08:14:04" } } diff --git a/repository/Grease-GemStone-Core.package/GRGemStoneRandomProvider.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRGemStoneRandomProvider.class/methodProperties.json deleted file mode 100644 index 0d1cce31..00000000 --- a/repository/Grease-GemStone-Core.package/GRGemStoneRandomProvider.class/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "class" : { - "generator" : " 10/11/2020 07:23:50", - "initialize" : " 10/11/2020 07:23:50", - "mutex" : " 10/11/2020 07:23:50", - "nextInt:" : " 10/11/2020 07:23:50", - "randomClass" : " 10/11/2020 07:23:50", - "randomFrom:" : " 10/11/2020 07:23:50", - "sessionStart" : " 10/11/2020 07:23:50" }, - "instance" : { - } } diff --git a/repository/Grease-GemStone-Core.package/GRLatin1GemStoneCodec.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRLatin1GemStoneCodec.class/methodProperties.json deleted file mode 100644 index 4602091a..00000000 --- a/repository/Grease-GemStone-Core.package/GRLatin1GemStoneCodec.class/methodProperties.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "class" : { - "basicForEncoding:" : " 10/11/2020 07:23:50", - "codecs" : "JohanBrichau 11/14/2020 01:32", - "supportsEncoding:" : " 10/11/2020 07:23:50" }, - "instance" : { - "decode:" : " 10/11/2020 07:23:50", - "encode:" : " 10/11/2020 07:23:50", - "encodeUrl:" : " 10/11/2020 07:23:50", - "encoderFor:" : " 10/11/2020 07:23:50", - "name" : " 10/11/2020 07:23:50", - "name:" : " 10/11/2020 07:23:50", - "url" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/GRPackage.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/GRPackage.extension/methodProperties.json deleted file mode 100644 index fa6adaf7..00000000 --- a/repository/Grease-GemStone-Core.package/GRPackage.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "greaseGemStoneCore" : " 10/11/2020 07:23:50" }, - "instance" : { - "gemstoneUrl" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/GRTextOrBinaryCodecStream.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRTextOrBinaryCodecStream.class/methodProperties.json deleted file mode 100644 index 1ad664ab..00000000 --- a/repository/Grease-GemStone-Core.package/GRTextOrBinaryCodecStream.class/methodProperties.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "binary" : " 10/11/2020 07:23:50", - "contents" : " 10/11/2020 07:23:50", - "flush" : " 10/11/2020 07:23:50", - "initializeOn:" : " 10/11/2020 07:23:50", - "next" : " 10/11/2020 07:23:50", - "next:" : " 10/11/2020 07:23:50", - "nextPut:" : " 10/11/2020 07:23:50", - "nextPutAll:" : " 10/11/2020 07:23:50", - "size" : " 10/11/2020 07:23:50", - "text" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/methodProperties.json deleted file mode 100644 index afa3cceb..00000000 --- a/repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/methodProperties.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "class" : { - "basicForEncoding:" : " 10/11/2020 07:23:50", - "codecs" : "JohanBrichau 11/14/2020 01:33", - "supportsEncoding:" : " 10/11/2020 07:23:50" }, - "instance" : { - "decode:" : " 10/11/2020 07:23:50", - "decoderFor:" : " 10/11/2020 07:23:50", - "encode:" : " 10/11/2020 07:23:50", - "encodeUrl:" : " 10/11/2020 07:23:50", - "encoderFor:" : " 10/11/2020 07:23:50", - "initialize" : " 10/11/2020 07:23:50", - "name" : " 10/11/2020 07:23:50", - "url" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/GsContext.class/methodProperties.json b/repository/Grease-GemStone-Core.package/GsContext.class/methodProperties.json deleted file mode 100644 index 23ef2865..00000000 --- a/repository/Grease-GemStone-Core.package/GsContext.class/methodProperties.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "class" : { - "fromContinuation:atLevel:" : " 10/11/2020 07:23:50", - "fromLevel:" : " 10/11/2020 07:23:50" }, - "instance" : { - "=" : " 10/11/2020 07:23:50", - "asString" : " 10/11/2020 07:23:50", - "continuation:level:" : " 10/11/2020 07:23:50", - "fullPrintString" : " 10/11/2020 07:23:50", - "greaseString" : " 10/11/2020 07:23:50", - "method" : " 10/11/2020 07:23:50", - "namedTempAt:" : "JohanBrichau 12/20/2020 06:33", - "receiver" : " 10/11/2020 07:23:50", - "sender" : " 10/11/2020 07:23:50", - "tempAt:" : " 10/11/2020 07:23:50", - "tempNames" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Interval.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Interval.extension/methodProperties.json deleted file mode 100644 index 9febe955..00000000 --- a/repository/Grease-GemStone-Core.package/Interval.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "any" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/MessageSend.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/MessageSend.extension/methodProperties.json deleted file mode 100644 index 3da0ba03..00000000 --- a/repository/Grease-GemStone-Core.package/MessageSend.extension/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "argumentCount" : " 10/11/2020 07:23:50", - "evaluateWithArguments:" : " 10/11/2020 07:23:50", - "value:" : " 10/11/2020 07:23:50", - "value:value:" : " 10/11/2020 07:23:50", - "valueWithPossibleArgument:" : " 10/11/2020 07:23:50", - "valueWithPossibleArguments:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Number.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Number.extension/methodProperties.json deleted file mode 100644 index 782276fc..00000000 --- a/repository/Grease-GemStone-Core.package/Number.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "milliseconds" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/Object.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Object.extension/methodProperties.json deleted file mode 100644 index 448d57b5..00000000 --- a/repository/Grease-GemStone-Core.package/Object.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "displayString" : " 10/11/2020 07:23:50", - "greaseString" : " 10/11/2020 07:23:50", - "isMessageSend" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/PackageInfo.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/PackageInfo.extension/methodProperties.json deleted file mode 100644 index 72079dc1..00000000 --- a/repository/Grease-GemStone-Core.package/PackageInfo.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "versionString" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/PositionableStream.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/PositionableStream.extension/methodProperties.json deleted file mode 100644 index 6cd2688f..00000000 --- a/repository/Grease-GemStone-Core.package/PositionableStream.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseUpToAll:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/SequenceableCollection.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/SequenceableCollection.extension/methodProperties.json deleted file mode 100644 index 2d4f2a67..00000000 --- a/repository/Grease-GemStone-Core.package/SequenceableCollection.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "beginsWithSubCollection:" : " 10/11/2020 07:23:50", - "endsWithSubCollection:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/String.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/String.extension/methodProperties.json deleted file mode 100644 index 663f83c7..00000000 --- a/repository/Grease-GemStone-Core.package/String.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "fromString:" : " 10/11/2020 07:23:50" }, - "instance" : { - } } diff --git a/repository/Grease-GemStone-Core.package/Symbol.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/Symbol.extension/methodProperties.json deleted file mode 100644 index 6db43052..00000000 --- a/repository/Grease-GemStone-Core.package/Symbol.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseAsMutator" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/SystemAbortTransaction.class/methodProperties.json b/repository/Grease-GemStone-Core.package/SystemAbortTransaction.class/methodProperties.json deleted file mode 100644 index cc8beed9..00000000 --- a/repository/Grease-GemStone-Core.package/SystemAbortTransaction.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "alternatives" : " 10/11/2020 07:23:50", - "defaultAction" : " 10/11/2020 07:23:50", - "transaction" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/SystemBeginTransaction.class/methodProperties.json b/repository/Grease-GemStone-Core.package/SystemBeginTransaction.class/methodProperties.json deleted file mode 100644 index cc8beed9..00000000 --- a/repository/Grease-GemStone-Core.package/SystemBeginTransaction.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "alternatives" : " 10/11/2020 07:23:50", - "defaultAction" : " 10/11/2020 07:23:50", - "transaction" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/SystemCommitTransaction.class/methodProperties.json b/repository/Grease-GemStone-Core.package/SystemCommitTransaction.class/methodProperties.json deleted file mode 100644 index cc8beed9..00000000 --- a/repository/Grease-GemStone-Core.package/SystemCommitTransaction.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "alternatives" : " 10/11/2020 07:23:50", - "defaultAction" : " 10/11/2020 07:23:50", - "transaction" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/SystemTransactionNotification.class/methodProperties.json b/repository/Grease-GemStone-Core.package/SystemTransactionNotification.class/methodProperties.json deleted file mode 100644 index c4e1ea4b..00000000 --- a/repository/Grease-GemStone-Core.package/SystemTransactionNotification.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "alternatives" : " 10/11/2020 07:23:50", - "transaction" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/UnorderedCollection.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/UnorderedCollection.extension/methodProperties.json deleted file mode 100644 index 59c1f401..00000000 --- a/repository/Grease-GemStone-Core.package/UnorderedCollection.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "copyFrom:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/WriteStream.extension/methodProperties.json b/repository/Grease-GemStone-Core.package/WriteStream.extension/methodProperties.json deleted file mode 100644 index 46831332..00000000 --- a/repository/Grease-GemStone-Core.package/WriteStream.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "crlf" : " 10/11/2020 07:23:50", - "greaseNext:putAll:startingAt:" : " 10/11/2020 07:23:50" } } diff --git a/repository/Grease-GemStone-Core.package/monticello.meta/version b/repository/Grease-GemStone-Core.package/monticello.meta/version deleted file mode 100644 index 338b738d..00000000 --- a/repository/Grease-GemStone-Core.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-GemStone-Core-JohanBrichau.5' message 'Added GsContext>>namedTempAt: for compatibility and improved GRGemStonePlatform>>thisContext' id '53a903d5-5a26-4b0b-a886-6419f51f8912' date '12/20/2020' time '08:25:38' author 'JohanBrichau' ancestors ((name 'Grease-GemStone-Core-cypress.1' message 'fabricated from a Cypress format repository' id '0ff5f06b-ab63-4105-a796-170049ec7777' date '12/20/2020' time '08:22:29' author '' ancestors () stepChildren ())) stepChildren ()) \ No newline at end of file From 3de3493d545f1f7445bae4ea5276266302b0f9fe Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sun, 20 Dec 2020 17:33:26 +0100 Subject: [PATCH 26/46] More complete test for GRPlatform>>thisContext --- .../instance/returnSender.st | 3 +++ .../instance/testThisContext.st | 25 +++++++++++++------ 2 files changed, 20 insertions(+), 8 deletions(-) create mode 100644 repository/Grease-Tests-Core.package/GRPlatformTest.class/instance/returnSender.st diff --git a/repository/Grease-Tests-Core.package/GRPlatformTest.class/instance/returnSender.st b/repository/Grease-Tests-Core.package/GRPlatformTest.class/instance/returnSender.st new file mode 100644 index 00000000..1b25f567 --- /dev/null +++ b/repository/Grease-Tests-Core.package/GRPlatformTest.class/instance/returnSender.st @@ -0,0 +1,3 @@ +private +returnSender + ^ GRPlatform current thisContext sender \ No newline at end of file diff --git a/repository/Grease-Tests-Core.package/GRPlatformTest.class/instance/testThisContext.st b/repository/Grease-Tests-Core.package/GRPlatformTest.class/instance/testThisContext.st index 3cd4ceb1..fd515dd9 100644 --- a/repository/Grease-Tests-Core.package/GRPlatformTest.class/instance/testThisContext.st +++ b/repository/Grease-Tests-Core.package/GRPlatformTest.class/instance/testThisContext.st @@ -1,9 +1,18 @@ -tests-processes +tests testThisContext - | methodContext | - methodContext := self platform thisContext. - [ - | blockContext | - blockContext := self platform thisContext. - self assert: blockContext sender = methodContext ] - value \ No newline at end of file + | methodContext block | + methodContext := self platform thisContext. + block := [ | blockContext | + blockContext := self platform thisContext. + self assert: blockContext sender = methodContext. + "The following is a difference between Gemstone and Pharo... " + (Smalltalk includesKey: #GRGemStonePlatform) + ifTrue: [ self assert: blockContext receiver = block ] + ifFalse: [ + self assert: blockContext receiver = self. + self assert: (blockContext namedTempAt: (blockContext tempNames indexOf: #blockContext)) == blockContext ]. + self assert: (blockContext namedTempAt: (blockContext tempNames indexOf: #methodContext)) == methodContext ]. + block value. + self assert: self returnSender = methodContext. + self assert: methodContext receiver = self. + self assert: (self platform thisContext namedTempAt: (self platform thisContext tempNames indexOf: #block)) == block \ No newline at end of file From a02d579b35fe11804a5cf4fe22b36409ace7c7fd Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sun, 20 Dec 2020 20:56:53 +0100 Subject: [PATCH 27/46] added github actions build --- .github/workflows/ci.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..6fd63fab --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,36 @@ +name: smalltalkCI + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-16.04 + strategy: + fail-fast: false + matrix: + smalltalk: [ Pharo64-8.0, Pharo64-7.0, Pharo-6.1, Pharo-5.0, GemStone64-3.5.4, GemStone64-3.4.5, GemStone64-3.3.9, GemStone64-3.2.17, GemStone64-3.1.0.6 ] + experimental: [ false ] + include: + - smalltalk: Pharo64-9.0 + experimental: true + - smalltalk: Squeak-5.2 + experimental: true + - smalltalk: Squeak-5.1 + experimental: true + continue-on-error: ${{ matrix.experimental }} + name: ${{ matrix.smalltalk }} + steps: + - uses: actions/checkout@v2 + - uses: hpi-swa/setup-smalltalkCI@v1 + with: + smalltalk-version: ${{ matrix.smalltalk }} + - name: Fix missing OS prerequisites for GemStone builds + run: | + git clone https://github.com/GsDevKit/GsDevKit_home.git + ./GsDevKit_home/bin/utils/installOsPrereqs + continue-on-error: true + if: startsWith(matrix.smalltalk,'GemStone') + - name: Run tests + run: smalltalkci -s ${{ matrix.smalltalk }} + shell: bash + timeout-minutes: 10 \ No newline at end of file From d8f282958c93d779964dbd6c0881b1750df5bc53 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sun, 20 Dec 2020 21:10:49 +0100 Subject: [PATCH 28/46] add squeak builds to github action --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6fd63fab..863943d2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,14 +8,12 @@ jobs: strategy: fail-fast: false matrix: - smalltalk: [ Pharo64-8.0, Pharo64-7.0, Pharo-6.1, Pharo-5.0, GemStone64-3.5.4, GemStone64-3.4.5, GemStone64-3.3.9, GemStone64-3.2.17, GemStone64-3.1.0.6 ] + smalltalk: [ Pharo64-8.0, Pharo64-7.0, Pharo-6.1, Pharo-5.0, GemStone64-3.5.4, GemStone64-3.4.5, GemStone64-3.3.9, GemStone64-3.2.17, GemStone64-3.1.0.6, Squeak64-5.3, Squeak64-5.2, Squeak64-5.1 ] experimental: [ false ] include: - smalltalk: Pharo64-9.0 experimental: true - - smalltalk: Squeak-5.2 - experimental: true - - smalltalk: Squeak-5.1 + - smalltalk: Squeak64-trunk experimental: true continue-on-error: ${{ matrix.experimental }} name: ${{ matrix.smalltalk }} From 4e314bca481741fa9f7bd96d775e649ac7014740 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sat, 26 Dec 2020 10:31:26 +0100 Subject: [PATCH 29/46] Use ZnUTF8Encoder in Pharo9 --- .../class/nextInt..st | 3 +- .../instance/decode..st | 39 ++----------------- .../instance/decoderFor..st | 4 +- .../instance/encode..st | 6 +++ .../instance/encoderFor..st | 4 +- .../GRZnUtf8CodecStream.class/README.md | 0 .../instance/nextPutAll..st | 5 +++ .../GRZnUtf8CodecStream.class/properties.json | 14 +++++++ .../instance/setUp.st | 2 +- .../instance/testNextPut.st | 2 +- .../instance/testNextPutAll.st | 2 +- .../instance/asByteArray..st | 5 +++ .../instance/testCodecUtf8.st | 8 ++-- .../instance/testCodecUtf8Bom.st | 2 +- .../instance/testCodecUtf8BorderLineString.st | 4 +- .../instance/testCodecUtf8ShortestForm.st | 2 +- .../instance/utf8ByteArray.st | 3 ++ .../instance/assert.next.startingAt.gives..st | 2 +- .../testGreaseNextPutAllStartingAt.st | 18 ++++----- .../instance/expectedFailures.st | 3 -- .../GRUtf8CodecTest.extension/properties.json | 3 -- 21 files changed, 63 insertions(+), 68 deletions(-) create mode 100644 repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/instance/encode..st create mode 100644 repository/Grease-Pharo90-Core.package/GRZnUtf8CodecStream.class/README.md create mode 100644 repository/Grease-Pharo90-Core.package/GRZnUtf8CodecStream.class/instance/nextPutAll..st create mode 100644 repository/Grease-Pharo90-Core.package/GRZnUtf8CodecStream.class/properties.json create mode 100644 repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/asByteArray..st create mode 100644 repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/utf8ByteArray.st delete mode 100644 repository/Grease-Tests-Pharo-Core.package/GRUtf8CodecTest.extension/instance/expectedFailures.st delete mode 100644 repository/Grease-Tests-Pharo-Core.package/GRUtf8CodecTest.extension/properties.json diff --git a/repository/Grease-Pharo90-Core.package/GRPharoRandomProvider.class/class/nextInt..st b/repository/Grease-Pharo90-Core.package/GRPharoRandomProvider.class/class/nextInt..st index 593aee36..1036c2f7 100644 --- a/repository/Grease-Pharo90-Core.package/GRPharoRandomProvider.class/class/nextInt..st +++ b/repository/Grease-Pharo90-Core.package/GRPharoRandomProvider.class/class/nextInt..st @@ -1,5 +1,6 @@ public nextInt: anInteger + "Answer a random integer in the interval [1, anInteger]" - ^ mutex critical: [ generator nextInt: anInteger ] \ No newline at end of file + ^ mutex critical: [ generator nextInteger: anInteger ] \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/instance/decode..st b/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/instance/decode..st index b625727d..9d34dca9 100644 --- a/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/instance/decode..st +++ b/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/instance/decode..st @@ -1,36 +1,3 @@ -decoding -decode: aString - "Convert the given string from UTF-8 using the fast path if converting to Latin-1" - | outStream byte1 byte2 byte3 byte4 unicode stream | - stream := aString readStream. - outStream := WriteStream on: (String new: aString size). - [ stream atEnd not ] whileTrue: [ - byte1 := stream next asInteger. - unicode := byte1. - (byte1 bitAnd: 16rE0) = 192 ifTrue: [ "two bytes" - byte2 := stream next asInteger. - (byte2 bitAnd: 16rC0) = 16r80 ifFalse: [ self invalidUtf8 ]. - unicode := ((byte1 bitAnd: 31) bitShift: 6) + (byte2 bitAnd: 63) ]. - (byte1 bitAnd: 16rF0) = 224 ifTrue: [ "three bytes" - byte2 := stream next asInteger. - (byte2 bitAnd: 16rC0) = 16r80 ifFalse: [ self invalidUtf8 ]. - byte3 := stream next asInteger. - (byte3 bitAnd: 16rC0) = 16r80 ifFalse: [ self invalidUtf8 ]. - unicode := ((byte1 bitAnd: 15) bitShift: 12) + ((byte2 bitAnd: 63) bitShift: 6) - + (byte3 bitAnd: 63) ]. - (byte1 bitAnd: 16rF8) = 240 ifTrue: [ "four bytes" - byte2 := stream next asInteger. - (byte2 bitAnd: 16rC0) = 16r80 ifFalse: [ self invalidUtf8 ]. - byte3 := stream next asInteger. - (byte3 bitAnd: 16rC0) = 16r80 ifFalse: [ self invalidUtf8 ]. - byte4 := stream next asInteger. - (byte4 bitAnd: 16rC0) = 16r80 ifFalse: [ self invalidUtf8 ]. - unicode := ((byte1 bitAnd: 16r7) bitShift: 18) + - ((byte2 bitAnd: 63) bitShift: 12) + - ((byte3 bitAnd: 63) bitShift: 6) + - (byte4 bitAnd: 63) ]. - unicode ifNil: [ self invalidUtf8 ]. - unicode = 16rFEFF "ignore BOM" ifFalse: [ - outStream nextPut: (Character codePoint: unicode) ]. - unicode := nil ]. - ^ outStream contents \ No newline at end of file +convenience +decode: aByteArray + ^ aByteArray utf8Decoded \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/instance/decoderFor..st b/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/instance/decoderFor..st index 203b901f..e2ffb007 100644 --- a/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/instance/decoderFor..st +++ b/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/instance/decoderFor..st @@ -1,5 +1,5 @@ conversion decoderFor: aStream - ^ GRPharoUtf8CodecStream + ^ GRPharoConverterCodecStream on: aStream - converter: UTF8TextConverter new \ No newline at end of file + converter: ZnCharacterEncoder utf8 \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/instance/encode..st b/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/instance/encode..st new file mode 100644 index 00000000..dfd7c541 --- /dev/null +++ b/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/instance/encode..st @@ -0,0 +1,6 @@ +convenience +encode: aString + | writeStream | + writeStream := self encoderFor: (ByteArray new: aString size) writeStream. + writeStream nextPutAll: aString. + ^ writeStream contents \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/instance/encoderFor..st b/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/instance/encoderFor..st index d77ab435..44b063d2 100644 --- a/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/instance/encoderFor..st +++ b/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/instance/encoderFor..st @@ -1,5 +1,5 @@ conversion encoderFor: aStream - ^ GRPharoUtf8CodecStream + ^ GRPharoConverterCodecStream on: aStream - converter: UTF8TextConverter new \ No newline at end of file + converter: ZnUTF8Encoder new \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRZnUtf8CodecStream.class/README.md b/repository/Grease-Pharo90-Core.package/GRZnUtf8CodecStream.class/README.md new file mode 100644 index 00000000..e69de29b diff --git a/repository/Grease-Pharo90-Core.package/GRZnUtf8CodecStream.class/instance/nextPutAll..st b/repository/Grease-Pharo90-Core.package/GRZnUtf8CodecStream.class/instance/nextPutAll..st new file mode 100644 index 00000000..848b6f13 --- /dev/null +++ b/repository/Grease-Pharo90-Core.package/GRZnUtf8CodecStream.class/instance/nextPutAll..st @@ -0,0 +1,5 @@ +streaming +nextPutAll: aString + "Convert the given string from UTF-8 using the fast path if converting to Latin-1" + 1 to: aString size by: 1 do: [ :index | + converter nextPut: (aString at: index) toStream: stream ] \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRZnUtf8CodecStream.class/properties.json b/repository/Grease-Pharo90-Core.package/GRZnUtf8CodecStream.class/properties.json new file mode 100644 index 00000000..5dc73ef1 --- /dev/null +++ b/repository/Grease-Pharo90-Core.package/GRZnUtf8CodecStream.class/properties.json @@ -0,0 +1,14 @@ +{ + "commentStamp" : "", + "super" : "GRPharoConverterCodecStream", + "category" : "Grease-Pharo90-Core", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ + "Latin1ToUtf8Encodings", + "Latin1ToUtf8Map" + ], + "instvars" : [ ], + "name" : "GRZnUtf8CodecStream", + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Tests-Core.package/GRCountingStreamTest.class/instance/setUp.st b/repository/Grease-Tests-Core.package/GRCountingStreamTest.class/instance/setUp.st index c5decc38..466442f3 100644 --- a/repository/Grease-Tests-Core.package/GRCountingStreamTest.class/instance/setUp.st +++ b/repository/Grease-Tests-Core.package/GRCountingStreamTest.class/instance/setUp.st @@ -1,5 +1,5 @@ running setUp | codecStream | - codecStream := ((GRCodec forEncoding: 'utf-8') encoderFor: (WriteStream on: String new)). + codecStream := ((GRCodec forEncoding: 'utf-8') encoderFor: (WriteStream on: ByteArray new)). countingStream := GRCountingStream on: codecStream \ No newline at end of file diff --git a/repository/Grease-Tests-Core.package/GRCountingStreamTest.class/instance/testNextPut.st b/repository/Grease-Tests-Core.package/GRCountingStreamTest.class/instance/testNextPut.st index ba128e9d..3ea0485f 100644 --- a/repository/Grease-Tests-Core.package/GRCountingStreamTest.class/instance/testNextPut.st +++ b/repository/Grease-Tests-Core.package/GRCountingStreamTest.class/instance/testNextPut.st @@ -3,4 +3,4 @@ testNextPut countingStream nextPut: (Character codePoint: 16rE4). self assert: countingStream size = 2. self assert: countingStream count = 1. - self assert: countingStream contents = (String with: (Character codePoint: 16rC3) with: (Character codePoint: 16rA4)) \ No newline at end of file + self assert: countingStream contents = (String with: (Character codePoint: 16rC3) with: (Character codePoint: 16rA4)) asByteArray \ No newline at end of file diff --git a/repository/Grease-Tests-Core.package/GRCountingStreamTest.class/instance/testNextPutAll.st b/repository/Grease-Tests-Core.package/GRCountingStreamTest.class/instance/testNextPutAll.st index 0eecffee..b1010782 100644 --- a/repository/Grease-Tests-Core.package/GRCountingStreamTest.class/instance/testNextPutAll.st +++ b/repository/Grease-Tests-Core.package/GRCountingStreamTest.class/instance/testNextPutAll.st @@ -3,4 +3,4 @@ testNextPutAll countingStream nextPutAll: (String with: (Character codePoint: 16rE4)). self assert: countingStream size = 2. self assert: countingStream count = 1. - self assert: countingStream contents = (String with: (Character codePoint: 16rC3) with: (Character codePoint: 16rA4)) \ No newline at end of file + self assert: countingStream contents = (String with: (Character codePoint: 16rC3) with: (Character codePoint: 16rA4)) asByteArray \ No newline at end of file diff --git a/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/asByteArray..st b/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/asByteArray..st new file mode 100644 index 00000000..4ba05d6f --- /dev/null +++ b/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/asByteArray..st @@ -0,0 +1,5 @@ +private +asByteArray: aCollectionOfIntegers + ^ ByteArray streamContents: [ :stream | + aCollectionOfIntegers do: [ :each | + stream nextPut: each ] ] \ No newline at end of file diff --git a/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8.st b/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8.st index 7a1dbc26..44f2f1d7 100644 --- a/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8.st +++ b/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8.st @@ -5,7 +5,7 @@ testCodecUtf8 codec := GRCodec forEncoding: codecName. self assert: codec name asLowercase = codecName asLowercase. self assert: codec url name asLowercase = codecName asLowercase. - self assert: (codec encode: self decodedString) greaseString = self utf8String greaseString. - self assert: (codec url encode: self decodedString) greaseString = self utf8String greaseString. - self assert: (codec decode: self utf8String) = self decodedString. - self assert: (codec url decode: self utf8String) = self decodedString ] \ No newline at end of file + self assert: (codec encode: self decodedString) asString = self utf8String. + self assert: (codec url encode: self decodedString) asString = self utf8String. + self assert: (codec decode: self utf8ByteArray) = self decodedString. + self assert: (codec url decode: self utf8ByteArray) = self decodedString ] \ No newline at end of file diff --git a/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8Bom.st b/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8Bom.st index 16cd6418..852bc47f 100644 --- a/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8Bom.st +++ b/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8Bom.st @@ -3,6 +3,6 @@ testCodecUtf8Bom #('UTF-8' 'utf-8') do: [ :codecName | | codec bom | codec := GRCodec forEncoding: codecName. - bom := self asString: #(239 187 191). + bom := self asByteArray: #(239 187 191). self assert: (codec decode: bom , self utf8String) greaseString = self decodedString greaseString. self assert: (codec url decode: bom , self utf8String) greaseString = self decodedString greaseString ] \ No newline at end of file diff --git a/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8BorderLineString.st b/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8BorderLineString.st index 5b58893a..b2bb4581 100644 --- a/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8BorderLineString.st +++ b/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8BorderLineString.st @@ -3,11 +3,11 @@ testCodecUtf8BorderLineString #('UTF-8' 'utf-8') do: [ :codecName | | codec writeStream | codec := GRCodec forEncoding: codecName. - writeStream := codec encoderFor: GRPlatform current readWriteCharacterStream. + writeStream := codec encoderFor: GRPlatform current readWriteByteStream. writeStream nextPut: (Character codePoint: 0). writeStream nextPut: (Character codePoint: 255). writeStream nextPut: (Character codePoint: 256). - self assert: writeStream contents = (String + self assert: writeStream contents asString = (String with: (Character codePoint: 16r00) "character 0" with: (Character codePoint: 16rC3) with: (Character codePoint: 16rBF) "character 255" with: (Character codePoint: 16rC4) with: (Character codePoint: 16r80)) "character 256" ] \ No newline at end of file diff --git a/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8ShortestForm.st b/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8ShortestForm.st index 1a6f1679..34a82488 100644 --- a/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8ShortestForm.st +++ b/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8ShortestForm.st @@ -5,7 +5,7 @@ testCodecUtf8ShortestForm #('UTF-8' 'utf-8') do: [ :codecName | | codec abc | codec := GRCodec forEncoding: codecName. - abc := self asString: #(193 129 193 130 193 131 ). + abc := self asByteArray: #(193 129 193 130 193 131 ). self should: [ self deny: (codec decode: abc) = 'ABC' ] raise: Error ] \ No newline at end of file diff --git a/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/utf8ByteArray.st b/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/utf8ByteArray.st new file mode 100644 index 00000000..a0939132 --- /dev/null +++ b/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/utf8ByteArray.st @@ -0,0 +1,3 @@ +accessing +utf8ByteArray + ^ self asByteArray: #(195 156 98 195 168 114 115 116 114 195 174 195 177 103 195 169) \ No newline at end of file diff --git a/repository/Grease-Tests-Pharo-Core.package/GRPharoCodecTest.class/instance/assert.next.startingAt.gives..st b/repository/Grease-Tests-Pharo-Core.package/GRPharoCodecTest.class/instance/assert.next.startingAt.gives..st index 8ff0ff41..915a01f6 100644 --- a/repository/Grease-Tests-Pharo-Core.package/GRPharoCodecTest.class/instance/assert.next.startingAt.gives..st +++ b/repository/Grease-Tests-Pharo-Core.package/GRPharoCodecTest.class/instance/assert.next.startingAt.gives..st @@ -1,7 +1,7 @@ private assert: aString next: anInteger startingAt: startIndex gives: anEncodedString | actual | - actual := String streamContents: [ :stream | + actual := ByteArray streamContents: [ :stream | ((GRCodec forEncoding: 'utf-8') encoderFor: stream) greaseNext: anInteger putAll: aString startingAt: startIndex ]. self assert: actual = anEncodedString \ No newline at end of file diff --git a/repository/Grease-Tests-Pharo-Core.package/GRPharoCodecTest.class/instance/testGreaseNextPutAllStartingAt.st b/repository/Grease-Tests-Pharo-Core.package/GRPharoCodecTest.class/instance/testGreaseNextPutAllStartingAt.st index dba72236..0238660a 100644 --- a/repository/Grease-Tests-Pharo-Core.package/GRPharoCodecTest.class/instance/testGreaseNextPutAllStartingAt.st +++ b/repository/Grease-Tests-Pharo-Core.package/GRPharoCodecTest.class/instance/testGreaseNextPutAllStartingAt.st @@ -2,12 +2,12 @@ tests testGreaseNextPutAllStartingAt | umlaut encodedUmlaut | umlaut := String with: (Character codePoint: 228). - encodedUmlaut := String with: (Character codePoint: 195) with: (Character codePoint: 164). - self assert: 'ab' next: 1 startingAt: 1 gives: 'a'. - self assert: 'a', umlaut, 'b' next: 1 startingAt: 1 gives: 'a'. - self assert: 'ab', umlaut next: 1 startingAt: 1 gives: 'a'. - self assert: 'a', umlaut, 'b' next: 2 startingAt: 1gives: 'a', encodedUmlaut. - self assert: 'a', umlaut, 'b' next: 1 startingAt: 2 gives: encodedUmlaut. - self assert: 'a', umlaut, 'b' next: 2 startingAt: 2 gives: encodedUmlaut, 'b'. - self assert: 'a', umlaut, umlaut next: 2 startingAt: 2 gives: encodedUmlaut, encodedUmlaut. - self assert: 'ab', umlaut, 'b', umlaut next: 3 startingAt: 2 gives: 'b', encodedUmlaut, 'b' \ No newline at end of file + encodedUmlaut := ByteArray with: (Character codePoint: 195) asInteger with: (Character codePoint: 164) asInteger. + self assert: 'ab' next: 1 startingAt: 1 gives: 'a' asByteArray. + self assert: 'a', umlaut, 'b' next: 1 startingAt: 1 gives: 'a' asByteArray. + self assert: 'ab', umlaut next: 1 startingAt: 1 gives: 'a' asByteArray. + self assert: 'a', umlaut, 'b' next: 2 startingAt: 1 gives: 'a' asByteArray, encodedUmlaut. + self assert: 'a', umlaut, 'b' next: 1 startingAt: 2 gives: encodedUmlaut. + self assert: 'a', umlaut, 'b' next: 2 startingAt: 2 gives: encodedUmlaut, 'b' asByteArray. + self assert: 'a', umlaut, umlaut next: 2 startingAt: 2 gives: encodedUmlaut, encodedUmlaut. + self assert: 'ab', umlaut, 'b', umlaut next: 3 startingAt: 2 gives: 'b' asByteArray, encodedUmlaut, 'b' asByteArray \ No newline at end of file diff --git a/repository/Grease-Tests-Pharo-Core.package/GRUtf8CodecTest.extension/instance/expectedFailures.st b/repository/Grease-Tests-Pharo-Core.package/GRUtf8CodecTest.extension/instance/expectedFailures.st deleted file mode 100644 index 3d992b1e..00000000 --- a/repository/Grease-Tests-Pharo-Core.package/GRUtf8CodecTest.extension/instance/expectedFailures.st +++ /dev/null @@ -1,3 +0,0 @@ -*Grease-Tests-Pharo-Core -expectedFailures - ^ #(testCodecUtf8ShortestForm) \ No newline at end of file diff --git a/repository/Grease-Tests-Pharo-Core.package/GRUtf8CodecTest.extension/properties.json b/repository/Grease-Tests-Pharo-Core.package/GRUtf8CodecTest.extension/properties.json deleted file mode 100644 index 3821af97..00000000 --- a/repository/Grease-Tests-Pharo-Core.package/GRUtf8CodecTest.extension/properties.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "name" : "GRUtf8CodecTest" -} \ No newline at end of file From 7a9d88ed065aae1020178dc2e0f330357e24c895 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sat, 26 Dec 2020 11:05:47 +0100 Subject: [PATCH 30/46] encoded strings in Pharo9 are byte arrays --- repository/Grease-Core.package/.filetree | 5 +++-- .../Character.extension/properties.json | 3 ++- .../GRBoundMessage.class/properties.json | 19 +++++++++---------- .../GRCodec.class/instance/encode..st | 2 +- .../instance/encodedStringClass.st | 3 +++ .../GRCodec.class/properties.json | 19 ++++++++----------- .../GRCodecStream.class/properties.json | 19 ++++++++----------- .../GRCountingStream.class/properties.json | 19 +++++++++---------- .../GRDelayedSend.class/properties.json | 19 +++++++++---------- .../properties.json | 19 +++++++++---------- .../GRDelegatingStream.class/properties.json | 19 +++++++++---------- .../properties.json | 19 +++++++++---------- .../GRError.class/properties.json | 19 ++++++++----------- .../GRInflector.class/properties.json | 19 +++++++++---------- .../properties.json | 19 ++++++++----------- .../GRInvalidUtf8Error.class/properties.json | 19 ++++++++----------- .../GRMappedPrinter.class/properties.json | 19 +++++++++---------- .../GRNotification.class/properties.json | 19 ++++++++----------- .../properties.json | 19 ++++++++----------- .../GRNullCodec.class/properties.json | 19 ++++++++----------- .../GRNullCodecStream.class/properties.json | 19 ++++++++----------- .../GRNumberPrinter.class/properties.json | 19 ++++++++++--------- .../GRObject.class/properties.json | 19 ++++++++----------- .../GROrderedMultiMap.class/properties.json | 19 ++++++++----------- .../GROrderedMultiMap2.class/properties.json | 19 ++++++++----------- .../GROrdinalizePrinter.class/properties.json | 19 ++++++++----------- .../GRPackage.class/properties.json | 19 +++++++++---------- .../GRPlatform.class/properties.json | 19 +++++++++---------- .../GRPluggablePrinter.class/properties.json | 19 +++++++++---------- .../GRPrinter.class/properties.json | 19 ++++++++----------- .../GRSequentialPrinter.class/properties.json | 19 +++++++++---------- .../GRSignPrinter.class/properties.json | 19 +++++++++---------- .../GRSmallDictionary.class/properties.json | 19 +++++++++---------- .../GRSmallDictionary2.class/properties.json | 19 +++++++++---------- .../GRSmallOrderedSet.class/properties.json | 19 +++++++++---------- .../GRStringPrinter.class/properties.json | 19 +++++++++---------- .../GRUnboundMessage.class/properties.json | 19 ++++++++----------- .../GRUnitPrinter.class/properties.json | 19 +++++++++---------- .../properties.json | 19 ++++++++----------- .../GRVersion.class/properties.json | 19 +++++++++---------- .../Integer.extension/properties.json | 3 ++- .../Number.extension/properties.json | 3 ++- .../Object.extension/properties.json | 3 ++- .../String.extension/properties.json | 3 ++- .../UndefinedObject.extension/properties.json | 3 ++- .../Grease-Core.package/properties.json | 3 +-- .../instance/encode..st | 6 ------ .../instance/encodedStringClass.st | 3 +++ .../instance/encoderFor..st | 2 +- .../instance/testCodecUtf8.st | 8 ++++---- .../instance/testCodecUtf8Bom.st | 8 +++++--- .../instance/utf8ByteArray.st | 3 --- .../utf8StringOrByteArrayForCodec..st | 5 +++++ .../instance/assert.next.startingAt.gives..st | 9 ++++++--- .../testGreaseNextPutAllStartingAt.st | 16 +++++++++------- 55 files changed, 362 insertions(+), 413 deletions(-) create mode 100644 repository/Grease-Core.package/GRCodec.class/instance/encodedStringClass.st delete mode 100644 repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/instance/encode..st create mode 100644 repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/instance/encodedStringClass.st delete mode 100644 repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/utf8ByteArray.st create mode 100644 repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/utf8StringOrByteArrayForCodec..st diff --git a/repository/Grease-Core.package/.filetree b/repository/Grease-Core.package/.filetree index 8998102c..57a67973 100644 --- a/repository/Grease-Core.package/.filetree +++ b/repository/Grease-Core.package/.filetree @@ -1,4 +1,5 @@ { - "noMethodMetaData" : true, "separateMethodMetaAndSource" : false, - "useCypressPropertiesFile" : true } + "noMethodMetaData" : true, + "useCypressPropertiesFile" : true +} \ No newline at end of file diff --git a/repository/Grease-Core.package/Character.extension/properties.json b/repository/Grease-Core.package/Character.extension/properties.json index 7532e33e..5219281d 100644 --- a/repository/Grease-Core.package/Character.extension/properties.json +++ b/repository/Grease-Core.package/Character.extension/properties.json @@ -1,2 +1,3 @@ { - "name" : "Character" } + "name" : "Character" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRBoundMessage.class/properties.json b/repository/Grease-Core.package/GRBoundMessage.class/properties.json index a4a0a403..8cc5361d 100644 --- a/repository/Grease-Core.package/GRBoundMessage.class/properties.json +++ b/repository/Grease-Core.package/GRBoundMessage.class/properties.json @@ -1,14 +1,13 @@ { - "category" : "Grease-Core-Utilities", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "jf 3/14/2009 11:04", + "super" : "GRDelayedSendMessage", + "category" : "Grease-Core-Utilities", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], "instvars" : [ - "arguments" ], + "arguments" + ], "name" : "GRBoundMessage", - "pools" : [ - ], - "super" : "GRDelayedSendMessage", - "type" : "normal" } + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRCodec.class/instance/encode..st b/repository/Grease-Core.package/GRCodec.class/instance/encode..st index aa5baef3..1c4e697d 100644 --- a/repository/Grease-Core.package/GRCodec.class/instance/encode..st +++ b/repository/Grease-Core.package/GRCodec.class/instance/encode..st @@ -2,6 +2,6 @@ convenience encode: aString | writeStream | writeStream := self encoderFor: (GRPlatform current - writeCharacterStreamOn: (String new: aString size)). + writeCharacterStreamOn: (self encodedStringClass new: aString size)). writeStream nextPutAll: aString. ^ writeStream contents \ No newline at end of file diff --git a/repository/Grease-Core.package/GRCodec.class/instance/encodedStringClass.st b/repository/Grease-Core.package/GRCodec.class/instance/encodedStringClass.st new file mode 100644 index 00000000..97aca951 --- /dev/null +++ b/repository/Grease-Core.package/GRCodec.class/instance/encodedStringClass.st @@ -0,0 +1,3 @@ +conversion +encodedStringClass + ^ String \ No newline at end of file diff --git a/repository/Grease-Core.package/GRCodec.class/properties.json b/repository/Grease-Core.package/GRCodec.class/properties.json index ce9d695e..027cedb0 100644 --- a/repository/Grease-Core.package/GRCodec.class/properties.json +++ b/repository/Grease-Core.package/GRCodec.class/properties.json @@ -1,14 +1,11 @@ { - "category" : "Grease-Core-Text", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "lr 2/7/2009 09:55", - "instvars" : [ - ], - "name" : "GRCodec", - "pools" : [ - ], "super" : "GRObject", - "type" : "normal" } + "category" : "Grease-Core-Text", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], + "instvars" : [ ], + "name" : "GRCodec", + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRCodecStream.class/properties.json b/repository/Grease-Core.package/GRCodecStream.class/properties.json index 5c2b5d08..469b8552 100644 --- a/repository/Grease-Core.package/GRCodecStream.class/properties.json +++ b/repository/Grease-Core.package/GRCodecStream.class/properties.json @@ -1,14 +1,11 @@ { - "category" : "Grease-Core-Text", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "pmm 6/25/2012 20:21", - "instvars" : [ - ], - "name" : "GRCodecStream", - "pools" : [ - ], "super" : "GRDelegatingStream", - "type" : "normal" } + "category" : "Grease-Core-Text", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], + "instvars" : [ ], + "name" : "GRCodecStream", + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRCountingStream.class/properties.json b/repository/Grease-Core.package/GRCountingStream.class/properties.json index 41fb53c3..957dd138 100644 --- a/repository/Grease-Core.package/GRCountingStream.class/properties.json +++ b/repository/Grease-Core.package/GRCountingStream.class/properties.json @@ -1,14 +1,13 @@ { - "category" : "Grease-Core", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "pmm 6/25/2012 20:39", + "super" : "GRDelegatingStream", + "category" : "Grease-Core", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], "instvars" : [ - "count" ], + "count" + ], "name" : "GRCountingStream", - "pools" : [ - ], - "super" : "GRDelegatingStream", - "type" : "normal" } + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRDelayedSend.class/properties.json b/repository/Grease-Core.package/GRDelayedSend.class/properties.json index b5d5672a..ef621ffc 100644 --- a/repository/Grease-Core.package/GRDelayedSend.class/properties.json +++ b/repository/Grease-Core.package/GRDelayedSend.class/properties.json @@ -1,15 +1,14 @@ { - "category" : "Grease-Core-Utilities", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "NickAger 3/20/2012 09:04", + "super" : "GRObject", + "category" : "Grease-Core-Utilities", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], "instvars" : [ "receiver", - "message" ], + "message" + ], "name" : "GRDelayedSend", - "pools" : [ - ], - "super" : "GRObject", - "type" : "normal" } + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRDelayedSendMessage.class/properties.json b/repository/Grease-Core.package/GRDelayedSendMessage.class/properties.json index e26a1310..074052cb 100644 --- a/repository/Grease-Core.package/GRDelayedSendMessage.class/properties.json +++ b/repository/Grease-Core.package/GRDelayedSendMessage.class/properties.json @@ -1,14 +1,13 @@ { - "category" : "Grease-Core-Utilities", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "NickAger 3/19/2012 11:20", + "super" : "GRObject", + "category" : "Grease-Core-Utilities", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], "instvars" : [ - "selector" ], + "selector" + ], "name" : "GRDelayedSendMessage", - "pools" : [ - ], - "super" : "GRObject", - "type" : "normal" } + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRDelegatingStream.class/properties.json b/repository/Grease-Core.package/GRDelegatingStream.class/properties.json index 38c81c35..0b47dd66 100644 --- a/repository/Grease-Core.package/GRDelegatingStream.class/properties.json +++ b/repository/Grease-Core.package/GRDelegatingStream.class/properties.json @@ -1,14 +1,13 @@ { - "category" : "Grease-Core-Text", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "pmm 6/25/2012 20:20", + "super" : "GRObject", + "category" : "Grease-Core-Text", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], "instvars" : [ - "stream" ], + "stream" + ], "name" : "GRDelegatingStream", - "pools" : [ - ], - "super" : "GRObject", - "type" : "normal" } + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRDeprecatedApiNotification.class/properties.json b/repository/Grease-Core.package/GRDeprecatedApiNotification.class/properties.json index a544490f..6241e06c 100644 --- a/repository/Grease-Core.package/GRDeprecatedApiNotification.class/properties.json +++ b/repository/Grease-Core.package/GRDeprecatedApiNotification.class/properties.json @@ -1,14 +1,13 @@ { - "category" : "Grease-Core-Exceptions", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "pmm 9/14/2013 15:50", + "super" : "GRNotification", + "category" : "Grease-Core-Exceptions", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], "instvars" : [ - "details" ], + "details" + ], "name" : "GRDeprecatedApiNotification", - "pools" : [ - ], - "super" : "GRNotification", - "type" : "normal" } + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRError.class/properties.json b/repository/Grease-Core.package/GRError.class/properties.json index add771d4..2bc08ff7 100644 --- a/repository/Grease-Core.package/GRError.class/properties.json +++ b/repository/Grease-Core.package/GRError.class/properties.json @@ -1,14 +1,11 @@ { - "category" : "Grease-Core-Exceptions", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "pmm 9/14/2013 15:50", - "instvars" : [ - ], - "name" : "GRError", - "pools" : [ - ], "super" : "Error", - "type" : "normal" } + "category" : "Grease-Core-Exceptions", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], + "instvars" : [ ], + "name" : "GRError", + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRInflector.class/properties.json b/repository/Grease-Core.package/GRInflector.class/properties.json index e2569b29..d71052cf 100644 --- a/repository/Grease-Core.package/GRInflector.class/properties.json +++ b/repository/Grease-Core.package/GRInflector.class/properties.json @@ -1,15 +1,14 @@ { + "commentStamp" : "lr 12/27/2008 09:43", + "super" : "GRObject", "category" : "Grease-Core-Text", - "classinstvars" : [ - ], + "classinstvars" : [ ], + "pools" : [ ], "classvars" : [ "InflectionRules", - "Uninflected" ], - "commentStamp" : "lr 12/27/2008 09:43", - "instvars" : [ - ], + "Uninflected" + ], + "instvars" : [ ], "name" : "GRInflector", - "pools" : [ - ], - "super" : "GRObject", - "type" : "normal" } + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRInvalidArgumentCount.class/properties.json b/repository/Grease-Core.package/GRInvalidArgumentCount.class/properties.json index 3c788a0a..8704ce3f 100644 --- a/repository/Grease-Core.package/GRInvalidArgumentCount.class/properties.json +++ b/repository/Grease-Core.package/GRInvalidArgumentCount.class/properties.json @@ -1,14 +1,11 @@ { - "category" : "Grease-Core-Utilities", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "jf 3/14/2009 11:05", - "instvars" : [ - ], - "name" : "GRInvalidArgumentCount", - "pools" : [ - ], "super" : "GRError", - "type" : "normal" } + "category" : "Grease-Core-Utilities", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], + "instvars" : [ ], + "name" : "GRInvalidArgumentCount", + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRInvalidUtf8Error.class/properties.json b/repository/Grease-Core.package/GRInvalidUtf8Error.class/properties.json index 0e69e8d6..3b9f7552 100644 --- a/repository/Grease-Core.package/GRInvalidUtf8Error.class/properties.json +++ b/repository/Grease-Core.package/GRInvalidUtf8Error.class/properties.json @@ -1,14 +1,11 @@ { - "category" : "Grease-Core-Text", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "pmm 1/10/2009 22:29", - "instvars" : [ - ], - "name" : "GRInvalidUtf8Error", - "pools" : [ - ], "super" : "GRError", - "type" : "normal" } + "category" : "Grease-Core-Text", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], + "instvars" : [ ], + "name" : "GRInvalidUtf8Error", + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRMappedPrinter.class/properties.json b/repository/Grease-Core.package/GRMappedPrinter.class/properties.json index 668181c1..8d00da71 100644 --- a/repository/Grease-Core.package/GRMappedPrinter.class/properties.json +++ b/repository/Grease-Core.package/GRMappedPrinter.class/properties.json @@ -1,15 +1,14 @@ { - "category" : "Grease-Core-Text", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "", + "super" : "GRPrinter", + "category" : "Grease-Core-Text", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], "instvars" : [ "next", - "block" ], + "block" + ], "name" : "GRMappedPrinter", - "pools" : [ - ], - "super" : "GRPrinter", - "type" : "normal" } + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRNotification.class/properties.json b/repository/Grease-Core.package/GRNotification.class/properties.json index 8e0efeb2..9343c7c2 100644 --- a/repository/Grease-Core.package/GRNotification.class/properties.json +++ b/repository/Grease-Core.package/GRNotification.class/properties.json @@ -1,14 +1,11 @@ { - "category" : "Grease-Core-Exceptions", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "pmm 9/14/2013 15:50", - "instvars" : [ - ], - "name" : "GRNotification", - "pools" : [ - ], "super" : "Notification", - "type" : "normal" } + "category" : "Grease-Core-Exceptions", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], + "instvars" : [ ], + "name" : "GRNotification", + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRNotificationBasedDynamicVariable.class/properties.json b/repository/Grease-Core.package/GRNotificationBasedDynamicVariable.class/properties.json index 5af61a58..ae53018e 100644 --- a/repository/Grease-Core.package/GRNotificationBasedDynamicVariable.class/properties.json +++ b/repository/Grease-Core.package/GRNotificationBasedDynamicVariable.class/properties.json @@ -1,14 +1,11 @@ { - "category" : "Grease-Core-Utilities", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "pmm 9/5/2017 14:34", - "instvars" : [ - ], - "name" : "GRNotificationBasedDynamicVariable", - "pools" : [ - ], "super" : "GRNotification", - "type" : "normal" } + "category" : "Grease-Core-Utilities", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], + "instvars" : [ ], + "name" : "GRNotificationBasedDynamicVariable", + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRNullCodec.class/properties.json b/repository/Grease-Core.package/GRNullCodec.class/properties.json index fa5681d4..508887e5 100644 --- a/repository/Grease-Core.package/GRNullCodec.class/properties.json +++ b/repository/Grease-Core.package/GRNullCodec.class/properties.json @@ -1,14 +1,11 @@ { - "category" : "Grease-Core-Text", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "pmm 9/14/2013 15:52", - "instvars" : [ - ], - "name" : "GRNullCodec", - "pools" : [ - ], "super" : "GRCodec", - "type" : "normal" } + "category" : "Grease-Core-Text", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], + "instvars" : [ ], + "name" : "GRNullCodec", + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRNullCodecStream.class/properties.json b/repository/Grease-Core.package/GRNullCodecStream.class/properties.json index b02e8099..c13ef53c 100644 --- a/repository/Grease-Core.package/GRNullCodecStream.class/properties.json +++ b/repository/Grease-Core.package/GRNullCodecStream.class/properties.json @@ -1,14 +1,11 @@ { - "category" : "Grease-Core-Text", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "pmm 2/20/2009 21:59", - "instvars" : [ - ], - "name" : "GRNullCodecStream", - "pools" : [ - ], "super" : "GRCodecStream", - "type" : "normal" } + "category" : "Grease-Core-Text", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], + "instvars" : [ ], + "name" : "GRNullCodecStream", + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRNumberPrinter.class/properties.json b/repository/Grease-Core.package/GRNumberPrinter.class/properties.json index 09dc6c1c..a3ea64f8 100644 --- a/repository/Grease-Core.package/GRNumberPrinter.class/properties.json +++ b/repository/Grease-Core.package/GRNumberPrinter.class/properties.json @@ -1,11 +1,13 @@ { + "commentStamp" : "pmm 2/1/2014 13:27", + "super" : "GRPrinter", "category" : "Grease-Core-Text", - "classinstvars" : [ - ], + "classinstvars" : [ ], + "pools" : [ ], "classvars" : [ "NumbersToCharactersLowercase", - "NumbersToCharactersUppercase" ], - "commentStamp" : "pmm 2/1/2014 13:27", + "NumbersToCharactersUppercase" + ], "instvars" : [ "characters", "base", @@ -16,9 +18,8 @@ "padding", "accuracy", "precision", - "separator" ], + "separator" + ], "name" : "GRNumberPrinter", - "pools" : [ - ], - "super" : "GRPrinter", - "type" : "normal" } + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRObject.class/properties.json b/repository/Grease-Core.package/GRObject.class/properties.json index f4ddbcbd..aae31ac4 100644 --- a/repository/Grease-Core.package/GRObject.class/properties.json +++ b/repository/Grease-Core.package/GRObject.class/properties.json @@ -1,14 +1,11 @@ { - "category" : "Grease-Core", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "pmm 9/14/2013 15:52", - "instvars" : [ - ], - "name" : "GRObject", - "pools" : [ - ], "super" : "Object", - "type" : "normal" } + "category" : "Grease-Core", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], + "instvars" : [ ], + "name" : "GRObject", + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GROrderedMultiMap.class/properties.json b/repository/Grease-Core.package/GROrderedMultiMap.class/properties.json index d9c9d2f1..81f5ae5d 100644 --- a/repository/Grease-Core.package/GROrderedMultiMap.class/properties.json +++ b/repository/Grease-Core.package/GROrderedMultiMap.class/properties.json @@ -1,14 +1,11 @@ { - "category" : "Grease-Core-Collections", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "jf 2/15/2010 16:04", - "instvars" : [ - ], - "name" : "GROrderedMultiMap", - "pools" : [ - ], "super" : "GRSmallDictionary", - "type" : "normal" } + "category" : "Grease-Core-Collections", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], + "instvars" : [ ], + "name" : "GROrderedMultiMap", + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GROrderedMultiMap2.class/properties.json b/repository/Grease-Core.package/GROrderedMultiMap2.class/properties.json index 19872e9e..b4aecc33 100644 --- a/repository/Grease-Core.package/GROrderedMultiMap2.class/properties.json +++ b/repository/Grease-Core.package/GROrderedMultiMap2.class/properties.json @@ -1,14 +1,11 @@ { - "category" : "Grease-Core-Collections", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "jf 2/15/2010 16:04", - "instvars" : [ - ], - "name" : "GROrderedMultiMap2", - "pools" : [ - ], "super" : "GRSmallDictionary2", - "type" : "normal" } + "category" : "Grease-Core-Collections", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], + "instvars" : [ ], + "name" : "GROrderedMultiMap2", + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GROrdinalizePrinter.class/properties.json b/repository/Grease-Core.package/GROrdinalizePrinter.class/properties.json index 12ee98f9..76be2fb0 100644 --- a/repository/Grease-Core.package/GROrdinalizePrinter.class/properties.json +++ b/repository/Grease-Core.package/GROrdinalizePrinter.class/properties.json @@ -1,14 +1,11 @@ { - "category" : "Grease-Core-Text", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "", - "instvars" : [ - ], - "name" : "GROrdinalizePrinter", - "pools" : [ - ], "super" : "GRPrinter", - "type" : "normal" } + "category" : "Grease-Core-Text", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], + "instvars" : [ ], + "name" : "GROrdinalizePrinter", + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRPackage.class/properties.json b/repository/Grease-Core.package/GRPackage.class/properties.json index cbe1dc62..8801d64b 100644 --- a/repository/Grease-Core.package/GRPackage.class/properties.json +++ b/repository/Grease-Core.package/GRPackage.class/properties.json @@ -1,18 +1,17 @@ { - "category" : "Grease-Core", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "pmm 9/14/2013 15:53", + "super" : "GRObject", + "category" : "Grease-Core", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], "instvars" : [ "name", "description", "dependencies", "license", - "url" ], + "url" + ], "name" : "GRPackage", - "pools" : [ - ], - "super" : "GRObject", - "type" : "normal" } + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRPlatform.class/properties.json b/repository/Grease-Core.package/GRPlatform.class/properties.json index 8947cf98..35cf678d 100644 --- a/repository/Grease-Core.package/GRPlatform.class/properties.json +++ b/repository/Grease-Core.package/GRPlatform.class/properties.json @@ -1,14 +1,13 @@ { + "commentStamp" : "jf 2/6/2009 16:05", + "super" : "GRObject", "category" : "Grease-Core", - "classinstvars" : [ - ], + "classinstvars" : [ ], + "pools" : [ ], "classvars" : [ - "Current" ], - "commentStamp" : "jf 2/6/2009 16:05", - "instvars" : [ - ], + "Current" + ], + "instvars" : [ ], "name" : "GRPlatform", - "pools" : [ - ], - "super" : "GRObject", - "type" : "normal" } + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRPluggablePrinter.class/properties.json b/repository/Grease-Core.package/GRPluggablePrinter.class/properties.json index f574ab93..3ab1e85a 100644 --- a/repository/Grease-Core.package/GRPluggablePrinter.class/properties.json +++ b/repository/Grease-Core.package/GRPluggablePrinter.class/properties.json @@ -1,14 +1,13 @@ { - "category" : "Grease-Core-Text", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "", + "super" : "GRPrinter", + "category" : "Grease-Core-Text", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], "instvars" : [ - "block" ], + "block" + ], "name" : "GRPluggablePrinter", - "pools" : [ - ], - "super" : "GRPrinter", - "type" : "normal" } + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRPrinter.class/properties.json b/repository/Grease-Core.package/GRPrinter.class/properties.json index 99000cf2..5a6bf772 100644 --- a/repository/Grease-Core.package/GRPrinter.class/properties.json +++ b/repository/Grease-Core.package/GRPrinter.class/properties.json @@ -1,14 +1,11 @@ { - "category" : "Grease-Core-Text", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "", - "instvars" : [ - ], - "name" : "GRPrinter", - "pools" : [ - ], "super" : "GRObject", - "type" : "normal" } + "category" : "Grease-Core-Text", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], + "instvars" : [ ], + "name" : "GRPrinter", + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRSequentialPrinter.class/properties.json b/repository/Grease-Core.package/GRSequentialPrinter.class/properties.json index a3e6728e..2b409dea 100644 --- a/repository/Grease-Core.package/GRSequentialPrinter.class/properties.json +++ b/repository/Grease-Core.package/GRSequentialPrinter.class/properties.json @@ -1,14 +1,13 @@ { - "category" : "Grease-Core-Text", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "", + "super" : "GRPrinter", + "category" : "Grease-Core-Text", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], "instvars" : [ - "parts" ], + "parts" + ], "name" : "GRSequentialPrinter", - "pools" : [ - ], - "super" : "GRPrinter", - "type" : "normal" } + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRSignPrinter.class/properties.json b/repository/Grease-Core.package/GRSignPrinter.class/properties.json index d99f010c..498737bc 100644 --- a/repository/Grease-Core.package/GRSignPrinter.class/properties.json +++ b/repository/Grease-Core.package/GRSignPrinter.class/properties.json @@ -1,15 +1,14 @@ { - "category" : "Grease-Core-Text", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "", + "super" : "GRPrinter", + "category" : "Grease-Core-Text", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], "instvars" : [ "negativePrinter", - "positivePrinter" ], + "positivePrinter" + ], "name" : "GRSignPrinter", - "pools" : [ - ], - "super" : "GRPrinter", - "type" : "normal" } + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRSmallDictionary.class/properties.json b/repository/Grease-Core.package/GRSmallDictionary.class/properties.json index 5550a4ab..1019d4ab 100644 --- a/repository/Grease-Core.package/GRSmallDictionary.class/properties.json +++ b/repository/Grease-Core.package/GRSmallDictionary.class/properties.json @@ -1,16 +1,15 @@ { - "category" : "Grease-Core-Collections", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "jf 2/15/2010 15:51", + "super" : "GRObject", + "category" : "Grease-Core-Collections", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], "instvars" : [ "size", "keys", - "values" ], + "values" + ], "name" : "GRSmallDictionary", - "pools" : [ - ], - "super" : "GRObject", - "type" : "normal" } + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRSmallDictionary2.class/properties.json b/repository/Grease-Core.package/GRSmallDictionary2.class/properties.json index 313b9fc6..ff3e5f02 100644 --- a/repository/Grease-Core.package/GRSmallDictionary2.class/properties.json +++ b/repository/Grease-Core.package/GRSmallDictionary2.class/properties.json @@ -1,15 +1,14 @@ { - "category" : "Grease-Core-Collections", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "pmm 8/22/2016 11:49", + "super" : "GRObject", + "category" : "Grease-Core-Collections", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], "instvars" : [ "size", - "table" ], + "table" + ], "name" : "GRSmallDictionary2", - "pools" : [ - ], - "super" : "GRObject", - "type" : "normal" } + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRSmallOrderedSet.class/properties.json b/repository/Grease-Core.package/GRSmallOrderedSet.class/properties.json index c32ab5c5..6ca318aa 100644 --- a/repository/Grease-Core.package/GRSmallOrderedSet.class/properties.json +++ b/repository/Grease-Core.package/GRSmallOrderedSet.class/properties.json @@ -1,15 +1,14 @@ { - "category" : "Grease-Core-Collections", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "pmm 8/25/2016 14:03", + "super" : "GRObject", + "category" : "Grease-Core-Collections", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], "instvars" : [ "size", - "table" ], + "table" + ], "name" : "GRSmallOrderedSet", - "pools" : [ - ], - "super" : "GRObject", - "type" : "normal" } + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRStringPrinter.class/properties.json b/repository/Grease-Core.package/GRStringPrinter.class/properties.json index 30a330ed..19d2dd05 100644 --- a/repository/Grease-Core.package/GRStringPrinter.class/properties.json +++ b/repository/Grease-Core.package/GRStringPrinter.class/properties.json @@ -1,17 +1,16 @@ { - "category" : "Grease-Core-Text", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "", + "super" : "GRPrinter", + "category" : "Grease-Core-Text", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], "instvars" : [ "trim", "length", "pad", - "character" ], + "character" + ], "name" : "GRStringPrinter", - "pools" : [ - ], - "super" : "GRPrinter", - "type" : "normal" } + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRUnboundMessage.class/properties.json b/repository/Grease-Core.package/GRUnboundMessage.class/properties.json index 88a35531..01ffa8ba 100644 --- a/repository/Grease-Core.package/GRUnboundMessage.class/properties.json +++ b/repository/Grease-Core.package/GRUnboundMessage.class/properties.json @@ -1,14 +1,11 @@ { - "category" : "Grease-Core-Utilities", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "jf 3/14/2009 11:03", - "instvars" : [ - ], - "name" : "GRUnboundMessage", - "pools" : [ - ], "super" : "GRDelayedSendMessage", - "type" : "normal" } + "category" : "Grease-Core-Utilities", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], + "instvars" : [ ], + "name" : "GRUnboundMessage", + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRUnitPrinter.class/properties.json b/repository/Grease-Core.package/GRUnitPrinter.class/properties.json index b76f7aaa..7db099ba 100644 --- a/repository/Grease-Core.package/GRUnitPrinter.class/properties.json +++ b/repository/Grease-Core.package/GRUnitPrinter.class/properties.json @@ -1,17 +1,16 @@ { - "category" : "Grease-Core-Text", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "", + "super" : "GRPrinter", + "category" : "Grease-Core-Text", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], "instvars" : [ "integerPrinter", "fractionPrinter", "units", - "base" ], + "base" + ], "name" : "GRUnitPrinter", - "pools" : [ - ], - "super" : "GRPrinter", - "type" : "normal" } + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRUnsupportedEncodingError.class/properties.json b/repository/Grease-Core.package/GRUnsupportedEncodingError.class/properties.json index 5a8d1a1e..3a2e3bef 100644 --- a/repository/Grease-Core.package/GRUnsupportedEncodingError.class/properties.json +++ b/repository/Grease-Core.package/GRUnsupportedEncodingError.class/properties.json @@ -1,14 +1,11 @@ { - "category" : "Grease-Core-Text", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "", - "instvars" : [ - ], - "name" : "GRUnsupportedEncodingError", - "pools" : [ - ], "super" : "GRError", - "type" : "normal" } + "category" : "Grease-Core-Text", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], + "instvars" : [ ], + "name" : "GRUnsupportedEncodingError", + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/GRVersion.class/properties.json b/repository/Grease-Core.package/GRVersion.class/properties.json index 9a1cffc3..cb5256d0 100644 --- a/repository/Grease-Core.package/GRVersion.class/properties.json +++ b/repository/Grease-Core.package/GRVersion.class/properties.json @@ -1,18 +1,17 @@ { - "category" : "Grease-Core", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "lr 2/19/2012 12:57", + "super" : "GRObject", + "category" : "Grease-Core", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], "instvars" : [ "major", "minor", "revision", "stageLabel", - "stageNumber" ], + "stageNumber" + ], "name" : "GRVersion", - "pools" : [ - ], - "super" : "GRObject", - "type" : "normal" } + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/Integer.extension/properties.json b/repository/Grease-Core.package/Integer.extension/properties.json index d27420be..a8c2b931 100644 --- a/repository/Grease-Core.package/Integer.extension/properties.json +++ b/repository/Grease-Core.package/Integer.extension/properties.json @@ -1,2 +1,3 @@ { - "name" : "Integer" } + "name" : "Integer" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/Number.extension/properties.json b/repository/Grease-Core.package/Number.extension/properties.json index 1d2c94d4..71dace88 100644 --- a/repository/Grease-Core.package/Number.extension/properties.json +++ b/repository/Grease-Core.package/Number.extension/properties.json @@ -1,2 +1,3 @@ { - "name" : "Number" } + "name" : "Number" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/Object.extension/properties.json b/repository/Grease-Core.package/Object.extension/properties.json index 3d3b9ec4..f30a86e1 100644 --- a/repository/Grease-Core.package/Object.extension/properties.json +++ b/repository/Grease-Core.package/Object.extension/properties.json @@ -1,2 +1,3 @@ { - "name" : "Object" } + "name" : "Object" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/String.extension/properties.json b/repository/Grease-Core.package/String.extension/properties.json index c2138507..b20f2de3 100644 --- a/repository/Grease-Core.package/String.extension/properties.json +++ b/repository/Grease-Core.package/String.extension/properties.json @@ -1,2 +1,3 @@ { - "name" : "String" } + "name" : "String" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/UndefinedObject.extension/properties.json b/repository/Grease-Core.package/UndefinedObject.extension/properties.json index 508a24a8..b2d2e562 100644 --- a/repository/Grease-Core.package/UndefinedObject.extension/properties.json +++ b/repository/Grease-Core.package/UndefinedObject.extension/properties.json @@ -1,2 +1,3 @@ { - "name" : "UndefinedObject" } + "name" : "UndefinedObject" +} \ No newline at end of file diff --git a/repository/Grease-Core.package/properties.json b/repository/Grease-Core.package/properties.json index f037444a..6f31cf5a 100644 --- a/repository/Grease-Core.package/properties.json +++ b/repository/Grease-Core.package/properties.json @@ -1,2 +1 @@ -{ - } +{ } \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/instance/encode..st b/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/instance/encode..st deleted file mode 100644 index dfd7c541..00000000 --- a/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/instance/encode..st +++ /dev/null @@ -1,6 +0,0 @@ -convenience -encode: aString - | writeStream | - writeStream := self encoderFor: (ByteArray new: aString size) writeStream. - writeStream nextPutAll: aString. - ^ writeStream contents \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/instance/encodedStringClass.st b/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/instance/encodedStringClass.st new file mode 100644 index 00000000..6e5de896 --- /dev/null +++ b/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/instance/encodedStringClass.st @@ -0,0 +1,3 @@ +conversion +encodedStringClass + ^ ByteArray \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/instance/encoderFor..st b/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/instance/encoderFor..st index 44b063d2..c3e8d325 100644 --- a/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/instance/encoderFor..st +++ b/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/instance/encoderFor..st @@ -2,4 +2,4 @@ conversion encoderFor: aStream ^ GRPharoConverterCodecStream on: aStream - converter: ZnUTF8Encoder new \ No newline at end of file + converter: ZnCharacterEncoder utf8 \ No newline at end of file diff --git a/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8.st b/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8.st index 44f2f1d7..22c03f1c 100644 --- a/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8.st +++ b/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8.st @@ -5,7 +5,7 @@ testCodecUtf8 codec := GRCodec forEncoding: codecName. self assert: codec name asLowercase = codecName asLowercase. self assert: codec url name asLowercase = codecName asLowercase. - self assert: (codec encode: self decodedString) asString = self utf8String. - self assert: (codec url encode: self decodedString) asString = self utf8String. - self assert: (codec decode: self utf8ByteArray) = self decodedString. - self assert: (codec url decode: self utf8ByteArray) = self decodedString ] \ No newline at end of file + self assert: (codec encode: self decodedString) = (self utf8StringOrByteArrayForCodec: codec). + self assert: (codec url encode: self decodedString) = (self utf8StringOrByteArrayForCodec: codec). + self assert: (codec decode: (self utf8StringOrByteArrayForCodec: codec)) = self decodedString. + self assert: (codec url decode: (self utf8StringOrByteArrayForCodec: codec)) = self decodedString ] \ No newline at end of file diff --git a/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8Bom.st b/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8Bom.st index 852bc47f..cf83f5dc 100644 --- a/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8Bom.st +++ b/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8Bom.st @@ -3,6 +3,8 @@ testCodecUtf8Bom #('UTF-8' 'utf-8') do: [ :codecName | | codec bom | codec := GRCodec forEncoding: codecName. - bom := self asByteArray: #(239 187 191). - self assert: (codec decode: bom , self utf8String) greaseString = self decodedString greaseString. - self assert: (codec url decode: bom , self utf8String) greaseString = self decodedString greaseString ] \ No newline at end of file + (codec encodedStringClass == ByteArray) + ifTrue:[ bom := self asByteArray: #(239 187 191) ] + ifFalse:[bom := self asString: #(239 187 191) ]. + self assert: (codec decode: bom , (self utf8StringOrByteArrayForCodec: codec)) = self decodedString. + self assert: (codec url decode: bom , (self utf8StringOrByteArrayForCodec: codec)) = self decodedString ] \ No newline at end of file diff --git a/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/utf8ByteArray.st b/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/utf8ByteArray.st deleted file mode 100644 index a0939132..00000000 --- a/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/utf8ByteArray.st +++ /dev/null @@ -1,3 +0,0 @@ -accessing -utf8ByteArray - ^ self asByteArray: #(195 156 98 195 168 114 115 116 114 195 174 195 177 103 195 169) \ No newline at end of file diff --git a/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/utf8StringOrByteArrayForCodec..st b/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/utf8StringOrByteArrayForCodec..st new file mode 100644 index 00000000..bb7c9930 --- /dev/null +++ b/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/utf8StringOrByteArrayForCodec..st @@ -0,0 +1,5 @@ +accessing +utf8StringOrByteArrayForCodec: codec + ^ codec encodedStringClass == ByteArray + ifTrue:[ self asByteArray: #(195 156 98 195 168 114 115 116 114 195 174 195 177 103 195 169) ] + ifFalse:[ self asString: #(195 156 98 195 168 114 115 116 114 195 174 195 177 103 195 169) ] \ No newline at end of file diff --git a/repository/Grease-Tests-Pharo-Core.package/GRPharoCodecTest.class/instance/assert.next.startingAt.gives..st b/repository/Grease-Tests-Pharo-Core.package/GRPharoCodecTest.class/instance/assert.next.startingAt.gives..st index 915a01f6..ded3d577 100644 --- a/repository/Grease-Tests-Pharo-Core.package/GRPharoCodecTest.class/instance/assert.next.startingAt.gives..st +++ b/repository/Grease-Tests-Pharo-Core.package/GRPharoCodecTest.class/instance/assert.next.startingAt.gives..st @@ -1,7 +1,10 @@ private assert: aString next: anInteger startingAt: startIndex gives: anEncodedString - | actual | - actual := ByteArray streamContents: [ :stream | + | actual encoder | + encoder := GRCodec forEncoding: 'utf-8'. + actual := encoder encodedStringClass streamContents: [ :stream | ((GRCodec forEncoding: 'utf-8') encoderFor: stream) greaseNext: anInteger putAll: aString startingAt: startIndex ]. - self assert: actual = anEncodedString \ No newline at end of file + encoder encodedStringClass == ByteArray + ifTrue:[ self assert: actual = anEncodedString asByteArray ] + ifFalse:[ self assert: actual = anEncodedString ] \ No newline at end of file diff --git a/repository/Grease-Tests-Pharo-Core.package/GRPharoCodecTest.class/instance/testGreaseNextPutAllStartingAt.st b/repository/Grease-Tests-Pharo-Core.package/GRPharoCodecTest.class/instance/testGreaseNextPutAllStartingAt.st index 0238660a..fe0c4411 100644 --- a/repository/Grease-Tests-Pharo-Core.package/GRPharoCodecTest.class/instance/testGreaseNextPutAllStartingAt.st +++ b/repository/Grease-Tests-Pharo-Core.package/GRPharoCodecTest.class/instance/testGreaseNextPutAllStartingAt.st @@ -2,12 +2,14 @@ tests testGreaseNextPutAllStartingAt | umlaut encodedUmlaut | umlaut := String with: (Character codePoint: 228). - encodedUmlaut := ByteArray with: (Character codePoint: 195) asInteger with: (Character codePoint: 164) asInteger. - self assert: 'ab' next: 1 startingAt: 1 gives: 'a' asByteArray. - self assert: 'a', umlaut, 'b' next: 1 startingAt: 1 gives: 'a' asByteArray. - self assert: 'ab', umlaut next: 1 startingAt: 1 gives: 'a' asByteArray. - self assert: 'a', umlaut, 'b' next: 2 startingAt: 1 gives: 'a' asByteArray, encodedUmlaut. + ((GRCodec forEncoding: 'utf-8') encodedStringClass == ByteArray) + ifTrue:[ encodedUmlaut := ByteArray with: 195 with: 164 ] + ifFalse:[ encodedUmlaut := String with: (Character codePoint: 195) with: (Character codePoint: 164) ]. + self assert: 'ab' next: 1 startingAt: 1 gives: 'a'. + self assert: 'a', umlaut, 'b' next: 1 startingAt: 1 gives: 'a'. + self assert: 'ab', umlaut next: 1 startingAt: 1 gives: 'a'. + self assert: 'a', umlaut, 'b' next: 2 startingAt: 1 gives: 'a', encodedUmlaut. self assert: 'a', umlaut, 'b' next: 1 startingAt: 2 gives: encodedUmlaut. - self assert: 'a', umlaut, 'b' next: 2 startingAt: 2 gives: encodedUmlaut, 'b' asByteArray. + self assert: 'a', umlaut, 'b' next: 2 startingAt: 2 gives: encodedUmlaut, 'b'. self assert: 'a', umlaut, umlaut next: 2 startingAt: 2 gives: encodedUmlaut, encodedUmlaut. - self assert: 'ab', umlaut, 'b', umlaut next: 3 startingAt: 2 gives: 'b' asByteArray, encodedUmlaut, 'b' asByteArray \ No newline at end of file + self assert: 'ab', umlaut, 'b', umlaut next: 3 startingAt: 2 gives: 'b', encodedUmlaut, 'b' \ No newline at end of file From 64046baa560e6c6bb9cbf2b989efbb5973104d46 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sat, 26 Dec 2020 11:17:35 +0100 Subject: [PATCH 31/46] cross-platform codec tests --- .../GRCountingStreamTest.class/instance/setUp.st | 2 +- .../instance/testCodecUtf8BorderLineString.st | 2 +- .../instance/testCodecUtf8ShortestForm.st | 4 +++- .../instance/utf8StringOrByteArrayForCodec..st | 6 ++++-- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/repository/Grease-Tests-Core.package/GRCountingStreamTest.class/instance/setUp.st b/repository/Grease-Tests-Core.package/GRCountingStreamTest.class/instance/setUp.st index 466442f3..8607d1b3 100644 --- a/repository/Grease-Tests-Core.package/GRCountingStreamTest.class/instance/setUp.st +++ b/repository/Grease-Tests-Core.package/GRCountingStreamTest.class/instance/setUp.st @@ -1,5 +1,5 @@ running setUp | codecStream | - codecStream := ((GRCodec forEncoding: 'utf-8') encoderFor: (WriteStream on: ByteArray new)). + codecStream := ((GRCodec forEncoding: 'utf-8') encoderFor: (WriteStream on: (GRCodec forEncoding: 'utf-8') encodedStringClass new)). countingStream := GRCountingStream on: codecStream \ No newline at end of file diff --git a/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8BorderLineString.st b/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8BorderLineString.st index b2bb4581..678e755e 100644 --- a/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8BorderLineString.st +++ b/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8BorderLineString.st @@ -3,7 +3,7 @@ testCodecUtf8BorderLineString #('UTF-8' 'utf-8') do: [ :codecName | | codec writeStream | codec := GRCodec forEncoding: codecName. - writeStream := codec encoderFor: GRPlatform current readWriteByteStream. + writeStream := codec encoderFor: (GRPlatform current writeCharacterStreamOn: codec encodedStringClass new). writeStream nextPut: (Character codePoint: 0). writeStream nextPut: (Character codePoint: 255). writeStream nextPut: (Character codePoint: 256). diff --git a/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8ShortestForm.st b/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8ShortestForm.st index 34a82488..d18279a1 100644 --- a/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8ShortestForm.st +++ b/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/testCodecUtf8ShortestForm.st @@ -5,7 +5,9 @@ testCodecUtf8ShortestForm #('UTF-8' 'utf-8') do: [ :codecName | | codec abc | codec := GRCodec forEncoding: codecName. - abc := self asByteArray: #(193 129 193 130 193 131 ). + codec encodedStringClass == ByteArray + ifTrue:[ abc := self asByteArray: #(193 129 193 130 193 131 ) ] + ifFalse:[ abc := self asString: #(193 129 193 130 193 131 ) ]. self should: [ self deny: (codec decode: abc) = 'ABC' ] raise: Error ] \ No newline at end of file diff --git a/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/utf8StringOrByteArrayForCodec..st b/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/utf8StringOrByteArrayForCodec..st index bb7c9930..3020173f 100644 --- a/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/utf8StringOrByteArrayForCodec..st +++ b/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/utf8StringOrByteArrayForCodec..st @@ -1,5 +1,7 @@ accessing utf8StringOrByteArrayForCodec: codec + | bytes | + bytes := #(195 156 98 195 168 114 115 116 114 195 174 195 177 103 195 169). ^ codec encodedStringClass == ByteArray - ifTrue:[ self asByteArray: #(195 156 98 195 168 114 115 116 114 195 174 195 177 103 195 169) ] - ifFalse:[ self asString: #(195 156 98 195 168 114 115 116 114 195 174 195 177 103 195 169) ] \ No newline at end of file + ifTrue:[ self asByteArray: bytes ] + ifFalse:[ self asString: bytes ] \ No newline at end of file From 32b50e5ac33f8d88a041218c10aa0d6d617bc9ab Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sat, 26 Dec 2020 11:20:45 +0100 Subject: [PATCH 32/46] fix more codec tests for cross-platform testing --- .../GRCountingStreamTest.class/instance/testNextPut.st | 2 +- .../GRCountingStreamTest.class/instance/testNextPutAll.st | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/repository/Grease-Tests-Core.package/GRCountingStreamTest.class/instance/testNextPut.st b/repository/Grease-Tests-Core.package/GRCountingStreamTest.class/instance/testNextPut.st index 3ea0485f..30dab46b 100644 --- a/repository/Grease-Tests-Core.package/GRCountingStreamTest.class/instance/testNextPut.st +++ b/repository/Grease-Tests-Core.package/GRCountingStreamTest.class/instance/testNextPut.st @@ -3,4 +3,4 @@ testNextPut countingStream nextPut: (Character codePoint: 16rE4). self assert: countingStream size = 2. self assert: countingStream count = 1. - self assert: countingStream contents = (String with: (Character codePoint: 16rC3) with: (Character codePoint: 16rA4)) asByteArray \ No newline at end of file + self assert: countingStream contents asString = (String with: (Character codePoint: 16rC3) with: (Character codePoint: 16rA4)) \ No newline at end of file diff --git a/repository/Grease-Tests-Core.package/GRCountingStreamTest.class/instance/testNextPutAll.st b/repository/Grease-Tests-Core.package/GRCountingStreamTest.class/instance/testNextPutAll.st index b1010782..6400bf2e 100644 --- a/repository/Grease-Tests-Core.package/GRCountingStreamTest.class/instance/testNextPutAll.st +++ b/repository/Grease-Tests-Core.package/GRCountingStreamTest.class/instance/testNextPutAll.st @@ -3,4 +3,4 @@ testNextPutAll countingStream nextPutAll: (String with: (Character codePoint: 16rE4)). self assert: countingStream size = 2. self assert: countingStream count = 1. - self assert: countingStream contents = (String with: (Character codePoint: 16rC3) with: (Character codePoint: 16rA4)) asByteArray \ No newline at end of file + self assert: countingStream contents asString = (String with: (Character codePoint: 16rC3) with: (Character codePoint: 16rA4)) \ No newline at end of file From 59fdaf6b60e9376fa9198c62dfa11e8dc1fd4db3 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sat, 26 Dec 2020 11:27:40 +0100 Subject: [PATCH 33/46] keep the expected failure in earlier pharo --- .../GRUtf8CodecTest.class/instance/expectedFailures.st | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/expectedFailures.st diff --git a/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/expectedFailures.st b/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/expectedFailures.st new file mode 100644 index 00000000..82510165 --- /dev/null +++ b/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/instance/expectedFailures.st @@ -0,0 +1,5 @@ +testing +expectedFailures + ^ SystemVersion current major < 9 + ifTrue: [ #(testCodecUtf8ShortestForm) ] + ifFalse:[ #() ] \ No newline at end of file From 2bd416b2aaefaa419fd3ba338554f6744b0db7e8 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Mon, 18 Jan 2021 20:36:11 +0100 Subject: [PATCH 34/46] Keep the old utf8 text converter implementation for those who want to migrate --- .../README.md | 0 .../class/basicForEncoding..st | 3 ++ .../class/codecs.st | 5 +++ .../class/supportsEncoding..st | 3 ++ .../instance/decode..st | 36 +++++++++++++++++++ .../instance/decoderFor..st | 5 +++ .../instance/encodedStringClass.st | 3 ++ .../instance/encoderFor..st | 5 +++ .../instance/invalidUtf8.st | 3 ++ .../instance/name.st | 3 ++ .../instance/url.st | 3 ++ .../properties.json | 11 ++++++ .../instance/initialize.st | 4 +++ .../instance/utf8CodecClass..st | 4 +++ .../instance/utf8CodecClass.st | 3 ++ .../GRPharoPlatform.class/properties.json | 4 ++- .../GRPharoUtf8Codec.class/class/codecs.st | 4 ++- .../class/supportsEncoding..st | 4 +-- .../instance/testLanguageTag.st | 5 ++- 19 files changed, 103 insertions(+), 5 deletions(-) create mode 100644 repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/README.md create mode 100644 repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/class/basicForEncoding..st create mode 100644 repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/class/codecs.st create mode 100644 repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/class/supportsEncoding..st create mode 100644 repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/instance/decode..st create mode 100644 repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/instance/decoderFor..st create mode 100644 repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/instance/encodedStringClass.st create mode 100644 repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/instance/encoderFor..st create mode 100644 repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/instance/invalidUtf8.st create mode 100644 repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/instance/name.st create mode 100644 repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/instance/url.st create mode 100644 repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/properties.json create mode 100644 repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/initialize.st create mode 100644 repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/utf8CodecClass..st create mode 100644 repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/utf8CodecClass.st diff --git a/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/README.md b/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/README.md new file mode 100644 index 00000000..e69de29b diff --git a/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/class/basicForEncoding..st b/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/class/basicForEncoding..st new file mode 100644 index 00000000..d4c4a74b --- /dev/null +++ b/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/class/basicForEncoding..st @@ -0,0 +1,3 @@ +private +basicForEncoding: aString + ^ self new \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/class/codecs.st b/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/class/codecs.st new file mode 100644 index 00000000..6e52e620 --- /dev/null +++ b/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/class/codecs.st @@ -0,0 +1,5 @@ +accessing +codecs + ^ GRPlatform current utf8CodecClass == self + ifTrue:[ Array with: self new ] + ifFalse: [ Array new ] \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/class/supportsEncoding..st b/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/class/supportsEncoding..st new file mode 100644 index 00000000..cf74d916 --- /dev/null +++ b/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/class/supportsEncoding..st @@ -0,0 +1,3 @@ +testing +supportsEncoding: aString + ^ GRPlatform current utf8CodecClass == self and: [(#('utf-8' 'UTF-8') includes: aString) or: [ UTF8TextConverter encodingNames includes: aString ] ] \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/instance/decode..st b/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/instance/decode..st new file mode 100644 index 00000000..60eea74c --- /dev/null +++ b/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/instance/decode..st @@ -0,0 +1,36 @@ +convenience +decode: aString + "Convert the given string from UTF-8 using the fast path if converting to Latin-1" + | outStream byte1 byte2 byte3 byte4 unicode stream | + stream := aString readStream. + outStream := WriteStream on: (String new: aString size). + [ stream atEnd not ] whileTrue: [ + byte1 := stream next asInteger. + unicode := byte1. + (byte1 bitAnd: 16rE0) = 192 ifTrue: [ "two bytes" + byte2 := stream next asInteger. + (byte2 bitAnd: 16rC0) = 16r80 ifFalse: [ self invalidUtf8 ]. + unicode := ((byte1 bitAnd: 31) bitShift: 6) + (byte2 bitAnd: 63) ]. + (byte1 bitAnd: 16rF0) = 224 ifTrue: [ "three bytes" + byte2 := stream next asInteger. + (byte2 bitAnd: 16rC0) = 16r80 ifFalse: [ self invalidUtf8 ]. + byte3 := stream next asInteger. + (byte3 bitAnd: 16rC0) = 16r80 ifFalse: [ self invalidUtf8 ]. + unicode := ((byte1 bitAnd: 15) bitShift: 12) + ((byte2 bitAnd: 63) bitShift: 6) + + (byte3 bitAnd: 63) ]. + (byte1 bitAnd: 16rF8) = 240 ifTrue: [ "four bytes" + byte2 := stream next asInteger. + (byte2 bitAnd: 16rC0) = 16r80 ifFalse: [ self invalidUtf8 ]. + byte3 := stream next asInteger. + (byte3 bitAnd: 16rC0) = 16r80 ifFalse: [ self invalidUtf8 ]. + byte4 := stream next asInteger. + (byte4 bitAnd: 16rC0) = 16r80 ifFalse: [ self invalidUtf8 ]. + unicode := ((byte1 bitAnd: 16r7) bitShift: 18) + + ((byte2 bitAnd: 63) bitShift: 12) + + ((byte3 bitAnd: 63) bitShift: 6) + + (byte4 bitAnd: 63) ]. + unicode ifNil: [ self invalidUtf8 ]. + unicode = 16rFEFF "ignore BOM" ifFalse: [ + outStream nextPut: (Character codePoint: unicode) ]. + unicode := nil ]. + ^ outStream contents \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/instance/decoderFor..st b/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/instance/decoderFor..st new file mode 100644 index 00000000..c5b13f52 --- /dev/null +++ b/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/instance/decoderFor..st @@ -0,0 +1,5 @@ +convenience +decoderFor: aStream + ^ GRPharoUtf8CodecStream + on: aStream + converter: UTF8TextConverter new \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/instance/encodedStringClass.st b/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/instance/encodedStringClass.st new file mode 100644 index 00000000..97aca951 --- /dev/null +++ b/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/instance/encodedStringClass.st @@ -0,0 +1,3 @@ +conversion +encodedStringClass + ^ String \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/instance/encoderFor..st b/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/instance/encoderFor..st new file mode 100644 index 00000000..21975caa --- /dev/null +++ b/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/instance/encoderFor..st @@ -0,0 +1,5 @@ +convenience +encoderFor: aStream + ^ GRPharoUtf8CodecStream + on: aStream + converter: UTF8TextConverter new \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/instance/invalidUtf8.st b/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/instance/invalidUtf8.st new file mode 100644 index 00000000..bf9b0111 --- /dev/null +++ b/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/instance/invalidUtf8.st @@ -0,0 +1,3 @@ +convenience +invalidUtf8 + ^ GRInvalidUtf8Error signal: 'Invalid UTF-8 input' \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/instance/name.st b/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/instance/name.st new file mode 100644 index 00000000..7886c830 --- /dev/null +++ b/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/instance/name.st @@ -0,0 +1,3 @@ +accessing +name + ^ 'utf-8' \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/instance/url.st b/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/instance/url.st new file mode 100644 index 00000000..4696d714 --- /dev/null +++ b/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/instance/url.st @@ -0,0 +1,3 @@ +accessing +url + ^ self \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/properties.json b/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/properties.json new file mode 100644 index 00000000..e8fa7dfa --- /dev/null +++ b/repository/Grease-Pharo90-Core.package/GRPharoDeprecatedUtf8Codec.class/properties.json @@ -0,0 +1,11 @@ +{ + "commentStamp" : "", + "super" : "GRCodec", + "category" : "Grease-Pharo90-Core", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], + "instvars" : [ ], + "name" : "GRPharoDeprecatedUtf8Codec", + "type" : "normal" +} \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/initialize.st b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/initialize.st new file mode 100644 index 00000000..c366c666 --- /dev/null +++ b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/initialize.st @@ -0,0 +1,4 @@ +initialization +initialize + super initialize. + utf8CodecClass := GRPharoUtf8Codec \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/utf8CodecClass..st b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/utf8CodecClass..st new file mode 100644 index 00000000..da4caad5 --- /dev/null +++ b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/utf8CodecClass..st @@ -0,0 +1,4 @@ +private +utf8CodecClass: aClass + "Set either the GRPharoDeprecatedUtf8Codec or GRPharoUtf8Codec classes to switch between TextConverter and Zinc for utf8 encoding" + utf8CodecClass := aClass \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/utf8CodecClass.st b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/utf8CodecClass.st new file mode 100644 index 00000000..fb62f202 --- /dev/null +++ b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/utf8CodecClass.st @@ -0,0 +1,3 @@ +private +utf8CodecClass + ^ utf8CodecClass \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/properties.json b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/properties.json index 5cbbf647..da6771b0 100644 --- a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/properties.json +++ b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/properties.json @@ -8,7 +8,9 @@ "UrlTable", "XmlTable" ], - "instvars" : [ ], + "instvars" : [ + "utf8CodecClass" + ], "name" : "GRPharoPlatform", "type" : "normal" } \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/class/codecs.st b/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/class/codecs.st index 632b84fb..6e52e620 100644 --- a/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/class/codecs.st +++ b/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/class/codecs.st @@ -1,3 +1,5 @@ accessing codecs - ^ Array with: self new \ No newline at end of file + ^ GRPlatform current utf8CodecClass == self + ifTrue:[ Array with: self new ] + ifFalse: [ Array new ] \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/class/supportsEncoding..st b/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/class/supportsEncoding..st index dc3a8ade..54e91f2e 100644 --- a/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/class/supportsEncoding..st +++ b/repository/Grease-Pharo90-Core.package/GRPharoUtf8Codec.class/class/supportsEncoding..st @@ -1,3 +1,3 @@ -testing +private supportsEncoding: aString - ^ (#('utf-8' 'UTF-8') includes: aString) or: [ UTF8TextConverter encodingNames includes: aString ] \ No newline at end of file + ^ GRPlatform current utf8CodecClass == self and: [ (#('utf-8' 'UTF-8' 'utf8') includes: aString) ] \ No newline at end of file diff --git a/repository/Grease-Tests-Pharo-Core.package/GRPharoCodecTest.class/instance/testLanguageTag.st b/repository/Grease-Tests-Pharo-Core.package/GRPharoCodecTest.class/instance/testLanguageTag.st index 57a2a02c..a3ed85e8 100644 --- a/repository/Grease-Tests-Pharo-Core.package/GRPharoCodecTest.class/instance/testLanguageTag.st +++ b/repository/Grease-Tests-Pharo-Core.package/GRPharoCodecTest.class/instance/testLanguageTag.st @@ -3,6 +3,8 @@ testLanguageTag "this makes sure the encoder doesn't fall on the nose with unicode" "Make Japanese String from unicode. see http://www.unicode.org/charts/PDF/U3040.pdf" | leading hiraA hiraO hiraAO | + GRPlatform current utf8CodecClass: GRPharoDeprecatedUtf8Codec. + [ leading := (Smalltalk classNamed: #JapaneseEnvironment) leadingChar. hiraA := (Character leadingChar: leading @@ -13,4 +15,5 @@ testLanguageTag hiraAO := hiraA , hiraO. self assertEncodingIgnoresLanguageTat: hiraA. self assertEncodingIgnoresLanguageTat: hiraO. - self assertEncodingIgnoresLanguageTat: hiraAO \ No newline at end of file + self assertEncodingIgnoresLanguageTat: hiraAO + ] ensure: [ GRPlatform current utf8CodecClass: GRPharoUtf8Codec. ] \ No newline at end of file From c4823c57db1da655635c331f7e9a5672825af342 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Tue, 19 Jan 2021 08:15:51 +0100 Subject: [PATCH 35/46] utf8 encoding changes in Pharo9: clean up GRPlatform implementation and make the testLanguageTag make the switch only in Pharo9 --- .../instance/initialize.st | 4 ---- .../setutf8CodectoDeprecatedTextConverter.st | 4 ++++ .../instance/setutf8CodectoZinc.st | 4 ++++ .../instance/utf8CodecClass..st | 4 ---- .../instance/utf8CodecClass.st | 7 +++++-- .../GRPharoPlatform.class/properties.json | 2 +- .../instance/testLanguageTag.st | 18 ++++++++++-------- 7 files changed, 24 insertions(+), 19 deletions(-) delete mode 100644 repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/initialize.st create mode 100644 repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/setutf8CodectoDeprecatedTextConverter.st create mode 100644 repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/setutf8CodectoZinc.st delete mode 100644 repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/utf8CodecClass..st diff --git a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/initialize.st b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/initialize.st deleted file mode 100644 index c366c666..00000000 --- a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/initialize.st +++ /dev/null @@ -1,4 +0,0 @@ -initialization -initialize - super initialize. - utf8CodecClass := GRPharoUtf8Codec \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/setutf8CodectoDeprecatedTextConverter.st b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/setutf8CodectoDeprecatedTextConverter.st new file mode 100644 index 00000000..dc394f4f --- /dev/null +++ b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/setutf8CodectoDeprecatedTextConverter.st @@ -0,0 +1,4 @@ +utf8 codec +setutf8CodectoDeprecatedTextConverter + "Set to the GRPharoDeprecatedUtf8Codec that uses the deprecated TextConverter for utf8 encoding" + utf8DeprecatedCodecFlag := true \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/setutf8CodectoZinc.st b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/setutf8CodectoZinc.st new file mode 100644 index 00000000..da2a437d --- /dev/null +++ b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/setutf8CodectoZinc.st @@ -0,0 +1,4 @@ +utf8 codec +setutf8CodectoZinc + "Set to GRPharoUtf8Codec that uses Zinc for utf8 encoding" + utf8DeprecatedCodecFlag := nil \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/utf8CodecClass..st b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/utf8CodecClass..st deleted file mode 100644 index da4caad5..00000000 --- a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/utf8CodecClass..st +++ /dev/null @@ -1,4 +0,0 @@ -private -utf8CodecClass: aClass - "Set either the GRPharoDeprecatedUtf8Codec or GRPharoUtf8Codec classes to switch between TextConverter and Zinc for utf8 encoding" - utf8CodecClass := aClass \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/utf8CodecClass.st b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/utf8CodecClass.st index fb62f202..8314f626 100644 --- a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/utf8CodecClass.st +++ b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/utf8CodecClass.st @@ -1,3 +1,6 @@ -private +utf8 codec utf8CodecClass - ^ utf8CodecClass \ No newline at end of file + + ^ utf8DeprecatedCodecFlag + ifNil: [ GRPharoUtf8Codec ] + ifNotNil: [ GRPharoDeprecatedUtf8Codec ] \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/properties.json b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/properties.json index da6771b0..195fed5b 100644 --- a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/properties.json +++ b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/properties.json @@ -9,7 +9,7 @@ "XmlTable" ], "instvars" : [ - "utf8CodecClass" + "utf8DeprecatedCodecFlag" ], "name" : "GRPharoPlatform", "type" : "normal" diff --git a/repository/Grease-Tests-Pharo-Core.package/GRPharoCodecTest.class/instance/testLanguageTag.st b/repository/Grease-Tests-Pharo-Core.package/GRPharoCodecTest.class/instance/testLanguageTag.st index a3ed85e8..1207dc5f 100644 --- a/repository/Grease-Tests-Pharo-Core.package/GRPharoCodecTest.class/instance/testLanguageTag.st +++ b/repository/Grease-Tests-Pharo-Core.package/GRPharoCodecTest.class/instance/testLanguageTag.st @@ -1,19 +1,21 @@ tests testLanguageTag + "this makes sure the encoder doesn't fall on the nose with unicode" + "Make Japanese String from unicode. see http://www.unicode.org/charts/PDF/U3040.pdf" + | leading hiraA hiraO hiraAO | - GRPlatform current utf8CodecClass: GRPharoDeprecatedUtf8Codec. + SystemVersion current major >= 9 ifTrue: [ + GRPlatform current setutf8CodectoDeprecatedTextConverter ]. [ leading := (Smalltalk classNamed: #JapaneseEnvironment) leadingChar. - hiraA := (Character - leadingChar: leading - code: 12354) greaseString. "HIRAGANA LETTER A" - hiraO := (Character - leadingChar: leading - code: 12362) greaseString. "HIRAGANA LETTER O" + hiraA := (Character leadingChar: leading code: 12354) greaseString. "HIRAGANA LETTER A" + hiraO := (Character leadingChar: leading code: 12362) greaseString. "HIRAGANA LETTER O" hiraAO := hiraA , hiraO. self assertEncodingIgnoresLanguageTat: hiraA. self assertEncodingIgnoresLanguageTat: hiraO. self assertEncodingIgnoresLanguageTat: hiraAO - ] ensure: [ GRPlatform current utf8CodecClass: GRPharoUtf8Codec. ] \ No newline at end of file + ] ensure: [ + SystemVersion current major >= 9 ifTrue: [ + GRPlatform current setutf8CodectoZinc ] ] \ No newline at end of file From 5120c51b738746f8ccc8f1a46e5e5a6d9b8bb64e Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sun, 31 Jan 2021 12:57:33 +0100 Subject: [PATCH 36/46] Fix GRPackage packaging descriptions and tests --- .../GRPackage.class/instance/resolveWith..st | 36 +++++++++---------- .../class/greasePharo70Core.st | 2 +- .../GRPackage.extension/class/greaseSlime.st | 2 +- 3 files changed, 19 insertions(+), 21 deletions(-) diff --git a/repository/Grease-Core.package/GRPackage.class/instance/resolveWith..st b/repository/Grease-Core.package/GRPackage.class/instance/resolveWith..st index 624c1b61..9152b2e0 100644 --- a/repository/Grease-Core.package/GRPackage.class/instance/resolveWith..st +++ b/repository/Grease-Core.package/GRPackage.class/instance/resolveWith..st @@ -5,22 +5,20 @@ resolveWith: aDictionary aDictionary at: each ifAbsent: [ "if Foo-Pharo-Bar fails try Foo-Pharo20-Bar and Foo-Pharo30-Bar" (each indexOfSubCollection: '-Pharo-' startingAt: 1) ~= 0 ifTrue: [ - "try -Pharo20-" - aDictionary at: (each copyReplaceAll: '-Pharo-' with: '-Pharo20-') ifAbsent: [ - "try -Pharo30-" - aDictionary at: (each copyReplaceAll: '-Pharo-' with: '-Pharo30-') ifAbsent: [ - "try -Pharo40-" - aDictionary at: (each copyReplaceAll: '-Pharo-' with: '-Pharo40-') ifAbsent: [ - "try -Pharo50-" - aDictionary at: (each copyReplaceAll: '-Pharo-' with: '-Pharo50-') ifAbsent: [ - "try -Pharo60-" - aDictionary at: (each copyReplaceAll: '-Pharo-' with: '-Pharo60-') ifAbsent: [ - "try -Pharo70-" - aDictionary at: (each copyReplaceAll: '-Pharo-' with: '-Pharo70-') ifAbsent: [ - "try -Squeak-" - aDictionary at: (each copyReplaceAll: '-Pharo-' with: '-Squeak-') ifAbsent: [ - "try -Squeak5-" - aDictionary at: (each copyReplaceAll: '-Pharo-' with: '-Squeak5-') ifAbsent: [ - "try -Squeak6-" - aDictionary at: (each copyReplaceAll: '-Pharo-' with: '-Squeak6-') ifAbsent: [ - self error: self name printString , ' depends on unknown package ' , each printString ] ] ] ] ] ] ] ] ] ] ] ] \ No newline at end of file + "try -Pharo40-" + aDictionary at: (each copyReplaceAll: '-Pharo-' with: '-Pharo40-') ifAbsent: [ + "try -Pharo50-" + aDictionary at: (each copyReplaceAll: '-Pharo-' with: '-Pharo50-') ifAbsent: [ + "try -Pharo60-" + aDictionary at: (each copyReplaceAll: '-Pharo-' with: '-Pharo60-') ifAbsent: [ + "try -Pharo70-" + aDictionary at: (each copyReplaceAll: '-Pharo-' with: '-Pharo70-') ifAbsent: [ + "try -Pharo90-" + aDictionary at: (each copyReplaceAll: '-Pharo-' with: '-Pharo90-') ifAbsent: [ + "try -Squeak-" + aDictionary at: (each copyReplaceAll: '-Pharo-' with: '-Squeak-') ifAbsent: [ + "try -Squeak5-" + aDictionary at: (each copyReplaceAll: '-Pharo-' with: '-Squeak5-') ifAbsent: [ + "try -Squeak6-" + aDictionary at: (each copyReplaceAll: '-Pharo-' with: '-Squeak6-') ifAbsent: [ + self error: self name printString , ' depends on unknown package ' , each printString ] ] ] ] ] ] ] ] ] ] ] \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPackage.extension/class/greasePharo70Core.st b/repository/Grease-Pharo90-Core.package/GRPackage.extension/class/greasePharo70Core.st index e17f5237..d3a67df9 100644 --- a/repository/Grease-Pharo90-Core.package/GRPackage.extension/class/greasePharo70Core.st +++ b/repository/Grease-Pharo90-Core.package/GRPackage.extension/class/greasePharo70Core.st @@ -1,7 +1,7 @@ *Grease-Pharo90-Core greasePharo70Core ^ self new - name: 'Grease-Pharo70-Core'; + name: 'Grease-Pharo90-Core'; addDependency: 'Grease-Core'; url: #greaseUrl; yourself \ No newline at end of file diff --git a/repository/Grease-Pharo90-Slime.package/GRPackage.extension/class/greaseSlime.st b/repository/Grease-Pharo90-Slime.package/GRPackage.extension/class/greaseSlime.st index 24d29849..e120aacb 100644 --- a/repository/Grease-Pharo90-Slime.package/GRPackage.extension/class/greaseSlime.st +++ b/repository/Grease-Pharo90-Slime.package/GRPackage.extension/class/greaseSlime.st @@ -1,7 +1,7 @@ *Grease-Pharo90-Slime greaseSlime ^ self new - name: 'Grease-Pharo40-Slime'; + name: 'Grease-Pharo90-Slime'; description: 'Code critis for Grease. Detects common types of bugs and non-portable code.'; addDependency: 'Grease-Core'; url: #seasideUrl; From c88f3d2b00218e370cefc3d5ad898fb13e160803 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sun, 31 Jan 2021 15:03:22 +0100 Subject: [PATCH 37/46] Set the deprecated utf8 coded as the default for now --- .../GRPharoPlatform.class/instance/setutf8CodectoZinc.st | 2 +- .../GRPharoPlatform.class/instance/utf8CodecClass.st | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/setutf8CodectoZinc.st b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/setutf8CodectoZinc.st index da2a437d..2f43e9ab 100644 --- a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/setutf8CodectoZinc.st +++ b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/setutf8CodectoZinc.st @@ -1,4 +1,4 @@ utf8 codec setutf8CodectoZinc "Set to GRPharoUtf8Codec that uses Zinc for utf8 encoding" - utf8DeprecatedCodecFlag := nil \ No newline at end of file + utf8DeprecatedCodecFlag := false \ No newline at end of file diff --git a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/utf8CodecClass.st b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/utf8CodecClass.st index 8314f626..0732dee6 100644 --- a/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/utf8CodecClass.st +++ b/repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/utf8CodecClass.st @@ -2,5 +2,7 @@ utf8 codec utf8CodecClass ^ utf8DeprecatedCodecFlag - ifNil: [ GRPharoUtf8Codec ] - ifNotNil: [ GRPharoDeprecatedUtf8Codec ] \ No newline at end of file + ifNil: [ GRPharoDeprecatedUtf8Codec ] + ifNotNil: [ utf8DeprecatedCodecFlag + ifTrue:[ GRPharoDeprecatedUtf8Codec ] + ifFalse: [ GRPharoUtf8Codec ] ] \ No newline at end of file From 286aff4b8346050d3f3bf87b49ea2b1ceabfa599 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sun, 31 Jan 2021 17:27:24 +0100 Subject: [PATCH 38/46] Remove pharo4 and 5 from baseline --- repository/BaselineOfGrease.package/.filetree | 5 +++-- .../instance/baselinePharo..st | 4 ++-- .../BaselineOfGrease.class/properties.json | 19 ++++++++----------- .../monticello.meta/categories.st | 2 +- .../BaselineOfGrease.package/properties.json | 3 +-- 5 files changed, 15 insertions(+), 18 deletions(-) diff --git a/repository/BaselineOfGrease.package/.filetree b/repository/BaselineOfGrease.package/.filetree index 8998102c..57a67973 100644 --- a/repository/BaselineOfGrease.package/.filetree +++ b/repository/BaselineOfGrease.package/.filetree @@ -1,4 +1,5 @@ { - "noMethodMetaData" : true, "separateMethodMetaAndSource" : false, - "useCypressPropertiesFile" : true } + "noMethodMetaData" : true, + "useCypressPropertiesFile" : true +} \ No newline at end of file diff --git a/repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baselinePharo..st b/repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baselinePharo..st index d2b196ef..7884ef23 100644 --- a/repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baselinePharo..st +++ b/repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baselinePharo..st @@ -2,7 +2,7 @@ baselines baselinePharo: spec spec - for: #(#'pharo4.x' #'pharo5.x') + for: #(#'pharo5.x') do: [ spec package: 'Grease-Core' with: [ spec includes: #('Grease-Pharo30-Core') ]; package: 'Grease-Tests-Pharo-Core' with: [ spec requires: #('Grease-Tests-Core') ]; @@ -35,7 +35,7 @@ baselinePharo: spec package: 'Grease-Pharo70-Core' with: [ spec requires: #('Grease-Core') ] ]. spec - for: #(#'pharo4.x' #'pharo5.x' #'pharo6.x' #'pharo7.x' #'pharo8.x') + for: #(#'pharo6.x' #'pharo7.x' #'pharo8.x') do: [ spec package: 'Grease-Pharo40-Slime' with: [ spec requires: #('Grease-Core') ]; diff --git a/repository/BaselineOfGrease.package/BaselineOfGrease.class/properties.json b/repository/BaselineOfGrease.package/BaselineOfGrease.class/properties.json index 8a39c621..0260395f 100644 --- a/repository/BaselineOfGrease.package/BaselineOfGrease.class/properties.json +++ b/repository/BaselineOfGrease.package/BaselineOfGrease.class/properties.json @@ -1,14 +1,11 @@ { - "category" : "BaselineOfGrease", - "classinstvars" : [ - ], - "classvars" : [ - ], "commentStamp" : "", - "instvars" : [ - ], - "name" : "BaselineOfGrease", - "pools" : [ - ], "super" : "BaselineOf", - "type" : "normal" } + "category" : "BaselineOfGrease", + "classinstvars" : [ ], + "pools" : [ ], + "classvars" : [ ], + "instvars" : [ ], + "name" : "BaselineOfGrease", + "type" : "normal" +} \ No newline at end of file diff --git a/repository/BaselineOfGrease.package/monticello.meta/categories.st b/repository/BaselineOfGrease.package/monticello.meta/categories.st index 3687f0b2..aad806f8 100644 --- a/repository/BaselineOfGrease.package/monticello.meta/categories.st +++ b/repository/BaselineOfGrease.package/monticello.meta/categories.st @@ -1 +1 @@ -SystemOrganization addCategory: #'BaselineOfGrease'! +SystemOrganization addCategory: #BaselineOfGrease! diff --git a/repository/BaselineOfGrease.package/properties.json b/repository/BaselineOfGrease.package/properties.json index f037444a..6f31cf5a 100644 --- a/repository/BaselineOfGrease.package/properties.json +++ b/repository/BaselineOfGrease.package/properties.json @@ -1,2 +1 @@ -{ - } +{ } \ No newline at end of file From da8b40f691900411861b6f507365134a08cd4d9a Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sun, 31 Jan 2021 17:32:00 +0100 Subject: [PATCH 39/46] dropped pharo4 and 5 from Grease support --- .github/workflows/ci.yml | 2 +- .pharo4.ston | 12 ------------ .travis.yml | 10 ---------- README.md | 4 ++-- 4 files changed, 3 insertions(+), 25 deletions(-) delete mode 100644 .pharo4.ston diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 863943d2..94a7b69a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - smalltalk: [ Pharo64-8.0, Pharo64-7.0, Pharo-6.1, Pharo-5.0, GemStone64-3.5.4, GemStone64-3.4.5, GemStone64-3.3.9, GemStone64-3.2.17, GemStone64-3.1.0.6, Squeak64-5.3, Squeak64-5.2, Squeak64-5.1 ] + smalltalk: [ Pharo64-8.0, Pharo64-7.0, Pharo-6.1, GemStone64-3.5.4, GemStone64-3.4.5, GemStone64-3.3.9, GemStone64-3.2.17, GemStone64-3.1.0.6, Squeak64-5.3, Squeak64-5.2, Squeak64-5.1 ] experimental: [ false ] include: - smalltalk: Pharo64-9.0 diff --git a/.pharo4.ston b/.pharo4.ston deleted file mode 100644 index ef69df2c..00000000 --- a/.pharo4.ston +++ /dev/null @@ -1,12 +0,0 @@ -SmalltalkCISpec { - #loading : [ - SCIMetacelloLoadSpec { - #useLatestMetacello : true, - #baseline : 'Grease', - #directory : 'repository', - #load : [ 'Tests' ], - #useLatestMetacello : true, - #platforms : [ #pharo ] - } - ] -} diff --git a/.travis.yml b/.travis.yml index 004d7283..f606b9d8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,13 +1,8 @@ language: smalltalk sudo: false -aliases: - - &pharo4-has-latest-metacello - smalltalk_config: .pharo4.ston - matrix: allow_failures: - - smalltalk: Pharo64-9.0 - smalltalk: Squeak32-trunk include: - smalltalk: Pharo64-9.0 @@ -20,11 +15,6 @@ matrix: env: BUILD_NAME=Pharo64-6.1 - smalltalk: Pharo-6.1 env: BUILD_NAME=Pharo-6.1 - - smalltalk: Pharo-5.0 - env: BUILD_NAME=Pharo-5.0 - - smalltalk: Pharo-4.0 - <<: *pharo4-has-latest-metacello - env: BUILD_NAME=Pharo-4.0 - smalltalk: Squeak32-trunk env: BUILD_NAME=Squeak-trunk - smalltalk: Squeak32-5.3 diff --git a/README.md b/README.md index 256dd599..6d6b764a 100644 --- a/README.md +++ b/README.md @@ -24,8 +24,8 @@ The latest Grease version is supported on the following platforms and versions, | [![Build status: Squeak-5.1](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Squeak-5.1&label=5.1)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Pharo64-8.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo64-8.0&label=8.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.4.5](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.4.5&label=3.4.5)](http://travis-ci.org/SeasideSt/Grease) | | | [![Build status: Pharo64-7.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo64-7.0&label=7.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.3.9](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.3.9&label=3.3.9)](http://travis-ci.org/SeasideSt/Grease) | | | [![Build status: Pharo-6.1](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo-6.1&label=6.1)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.2.17](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.2.17&label=3.2.17)](http://travis-ci.org/SeasideSt/Grease) | -| | [![Build status: Pharo-5.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo-5.0&label=5.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.1.0.6](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.1.0.6&label=3.1.0.6)](http://travis-ci.org/SeasideSt/Grease) | -| | [![Build status: Pharo-4.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo-4.0&label=4.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-2.4.8](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-2.4.8&label=2.4.8)](http://travis-ci.org/SeasideSt/Grease) | +| | | [![Build status: Gemstone-3.1.0.6](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.1.0.6&label=3.1.0.6)](http://travis-ci.org/SeasideSt/Grease) | +| | | [![Build status: Gemstone-2.4.8](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-2.4.8&label=2.4.8)](http://travis-ci.org/SeasideSt/Grease) | Coveralls (experimental): [![Coverage Status](https://coveralls.io/repos/github/SeasideSt/Grease/badge.svg?branch=test-coveralls)](https://coveralls.io/github/SeasideSt/Grease?branch=test-coveralls) From 904569214f8ba40cb944feb7d5c88d1bd7797ff8 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sun, 31 Jan 2021 17:33:41 +0100 Subject: [PATCH 40/46] include pharo9 testing to not allow failures --- .github/workflows/ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 94a7b69a..f0067f7d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,11 +8,9 @@ jobs: strategy: fail-fast: false matrix: - smalltalk: [ Pharo64-8.0, Pharo64-7.0, Pharo-6.1, GemStone64-3.5.4, GemStone64-3.4.5, GemStone64-3.3.9, GemStone64-3.2.17, GemStone64-3.1.0.6, Squeak64-5.3, Squeak64-5.2, Squeak64-5.1 ] + smalltalk: [ Pharo64-9.0, Pharo64-8.0, Pharo64-7.0, Pharo-6.1, GemStone64-3.5.4, GemStone64-3.4.5, GemStone64-3.3.9, GemStone64-3.2.17, GemStone64-3.1.0.6, Squeak64-5.3, Squeak64-5.2, Squeak64-5.1 ] experimental: [ false ] include: - - smalltalk: Pharo64-9.0 - experimental: true - smalltalk: Squeak64-trunk experimental: true continue-on-error: ${{ matrix.experimental }} From 4bdebce0b847a194dd456bc7b08c669a33b0c954 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sun, 31 Jan 2021 17:41:35 +0100 Subject: [PATCH 41/46] updated README --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6d6b764a..d5ca4e40 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Coveralls (experimental): [![Coverage Status](https://coveralls.io/repos/github/ Make sure you have the [MetacelloPreview version](https://github.com/Metacello/metacello), otherwise the load will not work. -### Squeak and Pharo (4.0 or newer) +### Squeak and Pharo (6.0 or newer) Load the latest code from master (i.e. stable): @@ -80,9 +80,11 @@ Gofer new (Smalltalk at: #GsUpgrader) upgradeGrease. ``` -### Pharo (3.0 or older) +### Pharo (5.0 or older) -The compatibility for Pharo < 4.0 is not maintained for new releases. If you need grease in Pharo < 4, we recommend to either update your pharo version or reference the latest release compatible with Pharo < 4, which is currently v1.4.1. +The compatibility for Pharo < 6.0 is not maintained for new releases. If you need grease in Pharo < 6, we recommend to either update your pharo version or reference the latest release compatible with your version of Pharo: +- Pharo <4: v1.4.1 +- Pharo 5 & 6: v1.6.1 For Pharo versions < 3.0, make sure you have the [MetacelloPreview version](https://github.com/dalehenrich/metacello-work), otherwise the load will not work. @@ -106,4 +108,4 @@ Metacello new load ``` -In case you need a specific feature for Pharo 3, it is still possible to create a new release by branching from v1.4.1. +In case you need a specific feature for an older version, it is still possible to create a new release by branching starting from the tagged commit of the compatible version. From 87b240ef72962aa50b16ad5e20d29f99aeab5c3d Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sun, 31 Jan 2021 17:46:52 +0100 Subject: [PATCH 42/46] added Gemstone3.6.0 to the line-up --- .github/workflows/ci.yml | 2 +- .travis.yml | 2 ++ README.md | 9 +++++---- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f0067f7d..9e1107dd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - smalltalk: [ Pharo64-9.0, Pharo64-8.0, Pharo64-7.0, Pharo-6.1, GemStone64-3.5.4, GemStone64-3.4.5, GemStone64-3.3.9, GemStone64-3.2.17, GemStone64-3.1.0.6, Squeak64-5.3, Squeak64-5.2, Squeak64-5.1 ] + smalltalk: [ Pharo64-9.0, Pharo64-8.0, Pharo64-7.0, Pharo-6.1, GemStone64-3.6.0, GemStone64-3.5.4, GemStone64-3.4.5, GemStone64-3.3.9, GemStone64-3.2.17, GemStone64-3.1.0.6, Squeak64-5.3, Squeak64-5.2, Squeak64-5.1 ] experimental: [ false ] include: - smalltalk: Squeak64-trunk diff --git a/.travis.yml b/.travis.yml index f606b9d8..5b9d34a7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,6 +23,8 @@ matrix: env: BUILD_NAME=Squeak-5.2 - smalltalk: Squeak32-5.1 env: BUILD_NAME=Squeak-5.1 + - smalltalk: GemStone-3.6.0 + env: BUILD_NAME=GemStone-3.6.0 - smalltalk: GemStone-3.5.4 env: BUILD_NAME=GemStone-3.5.4 - smalltalk: GemStone-3.4.5 diff --git a/README.md b/README.md index d5ca4e40..3707d52d 100644 --- a/README.md +++ b/README.md @@ -20,10 +20,11 @@ The latest Grease version is supported on the following platforms and versions, | Squeak | Pharo | GemStone | | --------------- | ---------------- | -------------------- | -| [![Build status: Squeak-5.2](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Squeak-trunk&label=5.2)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Pharo64-9.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo64-9.0&label=9.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.5.4](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.5.4&label=3.5.4)](http://travis-ci.org/SeasideSt/Grease) | -| [![Build status: Squeak-5.1](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Squeak-5.1&label=5.1)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Pharo64-8.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo64-8.0&label=8.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.4.5](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.4.5&label=3.4.5)](http://travis-ci.org/SeasideSt/Grease) | -| | [![Build status: Pharo64-7.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo64-7.0&label=7.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.3.9](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.3.9&label=3.3.9)](http://travis-ci.org/SeasideSt/Grease) | -| | [![Build status: Pharo-6.1](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo-6.1&label=6.1)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.2.17](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.2.17&label=3.2.17)](http://travis-ci.org/SeasideSt/Grease) | +| [![Build status: Squeak-5.2](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Squeak-trunk&label=5.2)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Pharo64-9.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo64-9.0&label=9.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.6.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.6.0&label=3.6.0)](http://travis-ci.org/SeasideSt/Grease) | +| [![Build status: Squeak-5.1](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Squeak-5.1&label=5.1)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Pharo64-8.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo64-8.0&label=8.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.5.4](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.5.4&label=3.5.4)](http://travis-ci.org/SeasideSt/Grease) | +| | [![Build status: Pharo64-7.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo64-7.0&label=7.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.4.5](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.4.5&label=3.4.5)](http://travis-ci.org/SeasideSt/Grease) | +| | [![Build status: Pharo-6.1](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo-6.1&label=6.1)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.3.9](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.3.9&label=3.3.9)](http://travis-ci.org/SeasideSt/Grease) | +| | | [![Build status: Gemstone-3.2.17](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.2.17&label=3.2.17)](http://travis-ci.org/SeasideSt/Grease) | | | | [![Build status: Gemstone-3.1.0.6](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.1.0.6&label=3.1.0.6)](http://travis-ci.org/SeasideSt/Grease) | | | | [![Build status: Gemstone-2.4.8](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-2.4.8&label=2.4.8)](http://travis-ci.org/SeasideSt/Grease) | From f46b2a1520e5ff538546d43a21ade8a5eab1f9bb Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sun, 31 Jan 2021 17:54:55 +0100 Subject: [PATCH 43/46] set version 1.7.0 --- .../Grease-Core.package/GRPlatform.class/instance/version.st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repository/Grease-Core.package/GRPlatform.class/instance/version.st b/repository/Grease-Core.package/GRPlatform.class/instance/version.st index 35f173ce..01828a6b 100644 --- a/repository/Grease-Core.package/GRPlatform.class/instance/version.st +++ b/repository/Grease-Core.package/GRPlatform.class/instance/version.st @@ -2,5 +2,5 @@ version info version "Answer the Grease version" - ^ (GRVersion major: 1 minor: 6 revision: 1) + ^ (GRVersion major: 1 minor: 7 revision: 0) yourself \ No newline at end of file From 19c9ce61bf3044513a31b890d0c4651902a8e914 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sun, 31 Jan 2021 17:58:38 +0100 Subject: [PATCH 44/46] Gemstone 3.5.4 -> 3.5.5 --- .github/workflows/ci.yml | 2 +- .travis.yml | 4 ++-- README.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9e1107dd..3134c1b3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - smalltalk: [ Pharo64-9.0, Pharo64-8.0, Pharo64-7.0, Pharo-6.1, GemStone64-3.6.0, GemStone64-3.5.4, GemStone64-3.4.5, GemStone64-3.3.9, GemStone64-3.2.17, GemStone64-3.1.0.6, Squeak64-5.3, Squeak64-5.2, Squeak64-5.1 ] + smalltalk: [ Pharo64-9.0, Pharo64-8.0, Pharo64-7.0, Pharo-6.1, GemStone64-3.6.0, GemStone64-3.5.5, GemStone64-3.4.5, GemStone64-3.3.9, GemStone64-3.2.17, GemStone64-3.1.0.6, Squeak64-5.3, Squeak64-5.2, Squeak64-5.1 ] experimental: [ false ] include: - smalltalk: Squeak64-trunk diff --git a/.travis.yml b/.travis.yml index 5b9d34a7..5217ed71 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,8 +25,8 @@ matrix: env: BUILD_NAME=Squeak-5.1 - smalltalk: GemStone-3.6.0 env: BUILD_NAME=GemStone-3.6.0 - - smalltalk: GemStone-3.5.4 - env: BUILD_NAME=GemStone-3.5.4 + - smalltalk: GemStone-3.5.5 + env: BUILD_NAME=GemStone-3.5.5 - smalltalk: GemStone-3.4.5 env: BUILD_NAME=GemStone-3.4.5 - smalltalk: GemStone-3.3.9 diff --git a/README.md b/README.md index 3707d52d..acf22f4e 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ The latest Grease version is supported on the following platforms and versions, | Squeak | Pharo | GemStone | | --------------- | ---------------- | -------------------- | | [![Build status: Squeak-5.2](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Squeak-trunk&label=5.2)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Pharo64-9.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo64-9.0&label=9.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.6.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.6.0&label=3.6.0)](http://travis-ci.org/SeasideSt/Grease) | -| [![Build status: Squeak-5.1](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Squeak-5.1&label=5.1)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Pharo64-8.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo64-8.0&label=8.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.5.4](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.5.4&label=3.5.4)](http://travis-ci.org/SeasideSt/Grease) | +| [![Build status: Squeak-5.1](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Squeak-5.1&label=5.1)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Pharo64-8.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo64-8.0&label=8.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.5.5](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.5.5&label=3.5.5)](http://travis-ci.org/SeasideSt/Grease) | | | [![Build status: Pharo64-7.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo64-7.0&label=7.0)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.4.5](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.4.5&label=3.4.5)](http://travis-ci.org/SeasideSt/Grease) | | | [![Build status: Pharo-6.1](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo-6.1&label=6.1)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.3.9](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.3.9&label=3.3.9)](http://travis-ci.org/SeasideSt/Grease) | | | | [![Build status: Gemstone-3.2.17](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.2.17&label=3.2.17)](http://travis-ci.org/SeasideSt/Grease) | From d934d6683d6bc2c1100b7750afabf977a3aad6de Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sun, 7 Feb 2021 10:42:11 +0100 Subject: [PATCH 45/46] removing Gemstone 2.4.8 from the line-up on travis-ci --- .travis.yml | 2 -- README.md | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5217ed71..993b448e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,5 +35,3 @@ matrix: env: BUILD_NAME=GemStone-3.2.17 - smalltalk: GemStone-3.1.0.6 env: BUILD_NAME=GemStone-3.1.0.6 - - smalltalk: GemStone-2.4.8 - env: BUILD_NAME=GemStone-2.4.8 diff --git a/README.md b/README.md index acf22f4e..08b4375e 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ The latest Grease version is supported on the following platforms and versions, | | [![Build status: Pharo-6.1](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo-6.1&label=6.1)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.3.9](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.3.9&label=3.3.9)](http://travis-ci.org/SeasideSt/Grease) | | | | [![Build status: Gemstone-3.2.17](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.2.17&label=3.2.17)](http://travis-ci.org/SeasideSt/Grease) | | | | [![Build status: Gemstone-3.1.0.6](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.1.0.6&label=3.1.0.6)](http://travis-ci.org/SeasideSt/Grease) | -| | | [![Build status: Gemstone-2.4.8](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-2.4.8&label=2.4.8)](http://travis-ci.org/SeasideSt/Grease) | +| | | | Coveralls (experimental): [![Coverage Status](https://coveralls.io/repos/github/SeasideSt/Grease/badge.svg?branch=test-coveralls)](https://coveralls.io/github/SeasideSt/Grease?branch=test-coveralls) From 699f2934386d74d702e3ae4d87ac7d00938f8aed Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sun, 7 Feb 2021 10:52:10 +0100 Subject: [PATCH 46/46] added gs3.7 - 3.9 to the baseline --- .../BaselineOfGrease.class/instance/baseline..st | 2 +- .../BaselineOfGrease.class/instance/baselineCommon..st | 2 +- .../instance/baselineGemStone..st | 10 +++++----- .../BaselineOfGrease.class/instance/baselineSqueak..st | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baseline..st b/repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baseline..st index 737970d7..bae4a809 100644 --- a/repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baseline..st +++ b/repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baseline..st @@ -1,4 +1,4 @@ -baseline +baselines baseline: spec diff --git a/repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baselineCommon..st b/repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baselineCommon..st index 27dff798..14755223 100644 --- a/repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baselineCommon..st +++ b/repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baselineCommon..st @@ -1,4 +1,4 @@ -baseline +baselines baselineCommon: spec spec for: #common diff --git a/repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baselineGemStone..st b/repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baselineGemStone..st index 3059581b..bb38c5d7 100644 --- a/repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baselineGemStone..st +++ b/repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baselineGemStone..st @@ -1,4 +1,4 @@ -baseline +baselines baselineGemStone: spec spec for: #'gemstone' @@ -77,7 +77,7 @@ baselineGemStone: spec requires: #('Grease-GemStone-Core'); postLoadDoIt: #'initializeLatin1ToUtf8Encodings' ] ]. spec - for: #(#'gs3.3.x' #'gs3.4.x' #'gs3.5.x' #'gs3.6.x') + for: #(#'gs3.3.x' #'gs3.4.x' #'gs3.5.x' #'gs3.6.x' #'gs3.7.x' #'gs3.8.x' #'gs3.9.x') do: [ spec package: 'Grease-GemStone-Core' @@ -97,7 +97,7 @@ baselineGemStone: spec with: [ spec includes: 'Grease-Tests-GemStone-Core' ] ]. spec - for: #( #'gs3.5.4.x' #'gs3.5.5.x') + for: #( #'gs3.5.4.x' #'gs3.5.5.x' ) do: [ spec package: 'Grease-GemStone-Core' @@ -107,7 +107,7 @@ baselineGemStone: spec spec requires: #('Grease-GemStone-Core') ] ]. spec - for: #( #'gs3.6.x') + for: #( #'gs3.6.x' #'gs3.7.x' #'gs3.8.x' #'gs3.9.x') do: [ spec package: 'Grease-GemStone-Core' @@ -117,7 +117,7 @@ baselineGemStone: spec spec requires: #('Grease-GemStone-Core') ] ]. spec - for: #(#'gs3.2.x' #'gs3.3.x' #'gs3.4.x' #'gs3.5.x' #'gs3.6.x') + for: #(#'gs3.2.x' #'gs3.3.x' #'gs3.4.x' #'gs3.5.x' #'gs3.6.x' #'gs3.7.x' #'gs3.8.x' #'gs3.9.x') do: [ spec package: 'Grease-Tests-GemStone32-Core' diff --git a/repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baselineSqueak..st b/repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baselineSqueak..st index 4c106e4b..e93226b5 100644 --- a/repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baselineSqueak..st +++ b/repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baselineSqueak..st @@ -1,4 +1,4 @@ -baseline +baselines baselineSqueak: spec spec for: #(#'squeak5.x')