diff --git a/.filetree b/.filetree new file mode 100644 index 00000000..c6704e51 --- /dev/null +++ b/.filetree @@ -0,0 +1,2 @@ +{"packageExtension" : ".package", +"propertyFileExtension" : ".json" } \ No newline at end of file diff --git a/.travis.yml b/.travis.yml index 70ce73f8..0adc1f8f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,9 +22,6 @@ matrix: - smalltalk: Pharo-4.0 <<: *pharo4-has-latest-metacello env: BUILD_NAME=Pharo-4.0 - - smalltalk: Pharo-3.0 - <<: *pharo4-has-latest-metacello - env: BUILD_NAME=Pharo-3.0 - smalltalk: Squeak-trunk env: BUILD_NAME=Squeak-trunk - smalltalk: Squeak-5.2 diff --git a/README.md b/README.md index b58272fd..91955ad1 100644 --- a/README.md +++ b/README.md @@ -24,17 +24,45 @@ 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-6.1](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo64-6.1&label=6.1)](http://travis-ci.org/SeasideSt/Grease) | [![Build status: Gemstone-3.3.4](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.3.4&label=3.3.4)](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.16](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=GemStone-3.2.16&label=3.2.16)](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: Pharo-3.0](http://badges.herokuapp.com/travis/SeasideSt/Grease?branch=master&env=BUILD_NAME=Pharo-3.0&label=3.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-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) ## Installation -#### Prerequisite on Squeak and Pharo <3.0 +#### Prerequisite on Squeak Make sure you have the [MetacelloPreview version](https://github.com/dalehenrich/metacello-work), otherwise the load will not work. -### Squeak and Pharo >=3.0 +### Pharo < 4.0 + +The compatibility for Pharo < 4.0 is not maintained for new releases. If you need grease in Pharo < 4, we recommand to either update your pharo version or reference the latest release compatible with Pharo < 4, which is currently v1.4.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. + +Load the latest compatible release: + +```Smalltalk +Metacello new + baseline: 'Grease'; + githubUser: 'SeasideSt' project: 'Grease' commitish: 'v1.4.1' path: 'repository'; + load +``` + +-or- + +Legacy: load older versions from Smalltalkhub: +```Smalltalk +Metacello new + configuration: 'Grease'; + repository: 'http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main'; + version: '1.0.0'; + 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. + +### Squeak and Pharo >=4.0 Load the latest code from master (i.e. stable): diff --git a/repository/.filetree b/repository/.filetree index c6704e51..8998102c 100644 --- a/repository/.filetree +++ b/repository/.filetree @@ -1,2 +1,4 @@ -{"packageExtension" : ".package", -"propertyFileExtension" : ".json" } \ No newline at end of file +{ + "noMethodMetaData" : true, + "separateMethodMetaAndSource" : false, + "useCypressPropertiesFile" : true } 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/baseline..st b/repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baseline..st index 87667eaf..3356f1fd 100644 --- a/repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baseline..st +++ b/repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baseline..st @@ -64,27 +64,6 @@ baseline: spec with: [ spec requires: #('Grease-Tests-Squeak-Core') ]. self slimeForSqueakPharo1xPharo2x: spec ]. - spec - for: #'pharo3.x' - do: [ - spec - package: 'Grease-Core' - with: [ spec includes: #('Grease-Pharo30-Core') ]; - package: 'Grease-Tests-Core' - with: [ - spec - requires: #('Grease-Pharo30-Core'); - includes: #('Grease-Tests-Pharo20-Core') ]; - package: 'Grease-Pharo30-Core' - with: [ spec requires: #('Grease-Core') ]; - package: 'Grease-Tests-Pharo20-Core' - with: [ spec requires: #('Grease-Tests-Core') ]; - package: 'Grease-Slime' with: [ spec requires: #('Grease-Core') ]; - package: 'Grease-Tests-Slime' - with: [ spec requires: #('Grease-Slime') ]. - spec - group: 'Slime' with: #('Grease-Slime'); - group: 'Slime Tests' with: #('Grease-Tests-Slime') ]. spec for: #(#'pharo4.x' #'pharo5.x') do: [ diff --git a/repository/BaselineOfGrease.package/BaselineOfGrease.class/methodProperties.json b/repository/BaselineOfGrease.package/BaselineOfGrease.class/methodProperties.json deleted file mode 100644 index 18ab4065..00000000 --- a/repository/BaselineOfGrease.package/BaselineOfGrease.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "instance" : { - "initializeLatin1ToUtf8Encodings" : "JohanBrichau 10/19/2014 10:00", - "slimeForSqueakPharo1xPharo2x:" : "JohanBrichau 02/16/2014 03:49", - "baseline:" : "JohanBrichau 11/22/2018 09:09" - }, - "class" : { } -} \ No newline at end of file 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/version b/repository/BaselineOfGrease.package/monticello.meta/version deleted file mode 100644 index d80b66a6..00000000 --- a/repository/BaselineOfGrease.package/monticello.meta/version +++ /dev/null @@ -1,2 +0,0 @@ -(name 'BaselineOfGrease-JohanBrichau.1496564081' message 'merged by GitFileTree-MergeDriver' id 'ac5d7448-c637-0d00-b8a2-41d30a027646' date '24 November 2018' time '9:04:15.876562 am' author 'JohanBrichau' ancestors ((name 'BaselineOfGrease-JohanBrichau.1496564077' message 'merged by GitFileTree-MergeDriver' id '78a5da19-96f2-4882-b983-e03dc820611b' date '19 November 2017' time '11:26:06.234613 am' author 'JohanBrichau' ancestors ((name 'BaselineOfGrease-JohanBrichau.1496564076' message 'merged by GitFileTree-MergeDriver' id 'e28f8c82-dd50-433c-9b9a-2347b11f5d0b' date '19 November 2017' time '11:14:30.449821 am' author 'JohanBrichau' ancestors ((name 'BaselineOfGrease-JohanBrichau.1496564075' message 'Pharo7 support' id 'a8370418-a51a-0d00-a9b9-68b104322501' date '18 November 2017' time '4:17:52.094479 pm' author 'JohanBrichau' ancestors ((name 'BaselineOfGrease-topa.1496564074' message 'Splice out Squeak6' id '1f990177-0195-46d7-b815-43ff320f8900' date '15 November 2017' time '5:36:47.836067 pm' author 'topa' ancestors ((name 'BaselineOfGrease-topa.1496564073' message 'Add Squeak6 (current trunk)' id 'c284dcef-9b71-4069-94b7-a2e8c42b6c0a' date '8 November 2017' time '11:59:28.059517 am' author 'topa' ancestors ((name 'BaselineOfGrease-dkh.1496564072' message 'merged by GitFileTree-MergeDriver' id 'a721b096-25cd-455c-a419-2fac8a9331c7' date '23 July 2017' time '11:33:54.267473 am' author 'dkh' ancestors ((name 'BaselineOfGrease-dkh.19' message 'merged by GitFileTree-MergeDriver' id 'b05179de-cbe6-4b80-824b-f6220d2c9252' date '25 May 2017' time '11:41:41.478907 am' author 'dkh' ancestors ((name 'BaselineOfGrease-dkh.17' message 'eliminate some seaside.gemstone.com references' id '01c1cf6a-4d84-47d2-97f0-b9c4d7fffd58' date '28 February 2017' time '1:54:50 pm' author 'dkh' ancestors ((name 'BaselineOfGrease-dkh.16' message 'merged by GitFileTree-MergeDriver' id '644ab134-dd42-4b9f-948b-c277cd963d5d' date '26 August 2016' time '5:20:50 am' author 'dkh' ancestors ((name 'BaselineOfGrease-dkh.15' message 'merged by GitFileTree-MergeDriver' id '86b6f4f6-f95f-4bd7-9224-f31c5460e354' date '4 April 2016' time '9:40:53 am' author 'dkh' ancestors () stepChildren ())(name 'BaselineOfGrease-dkh.15' message 'merged by GitFileTree-MergeDriver' id '415af41c-2c3d-40a8-9f75-d9e8de921224' date '26 August 2016' time '2:19:29 am' author 'dkh' ancestors ((name 'BaselineOfGrease-dkh.10' message 'update for GemStone 3.4 ...' id 'ad7f9331-d83f-4976-bf57-1d1e81111fc6' date '21 December 2015' time '3:07:11 pm' author 'dkh' ancestors () stepChildren ())(name 'BaselineOfGrease-JohanBrichau.14' message 'Ensure Squeak5 tests package is loaded in Squeak5' id 'abde1bd6-a8d6-45fc-a922-bcf63ec38f03' date '27 February 2016' time '1:47:23 am' author 'JohanBrichau' ancestors ((name 'BaselineOfGrease-JohanBrichau.13' message 'Forked Grease-Tests-Pharo-Core into Grease-Tests-Squeak5-Core' id '3a01ebbc-8859-45db-ae5a-e5de8073d3a4' date '27 February 2016' time '1:40:18 am' author 'JohanBrichau' ancestors ((name 'BaselineOfGrease-JohanBrichau.12' message 'added Pharo-Tests to Squeak5 load' id 'ffe11ade-e4f1-496d-ae59-74543cfad134' date '27 February 2016' time '1:21:56 am' author 'JohanBrichau' ancestors ((name 'BaselineOfGrease-JohanBrichau.11' message 'added pharo5 platform to baseline' id '5c0332e9-ef4c-43cd-9066-7c9fe9ed6506' date '27 February 2016' time '12:12:12 pm' author 'JohanBrichau' ancestors ((name 'BaselineOfGrease-JohanBrichau.10' message 'added squeak 5 platform' id '18f9d568-869f-4550-804a-b0ba101f33f3' date '13 December 2015' time '8:36:25 am' author 'JohanBrichau' ancestors ((name 'BaselineOfGrease-dkh.9' message 'Update baseline for GemStone 3.3' id 'af9364dd-14bc-4e5e-9fc7-0abe08732ab2' date '26 May 2015' time '11:46:07 am' author 'dkh' ancestors ((name 'BaselineOfGrease-JohanBrichau.8' message 'separate package for Squeak' id '91c019c7-2b8b-40c3-97d9-2047a69512a7' date '22 March 2015' time '12:01:37 pm' author 'JohanBrichau' ancestors ((name 'BaselineOfGrease-JohanBrichau.7' message 'included Pharo 4 and did some baseline formatting' id '3722041d-d4b5-4496-a25a-0e891fe9a945' date '8 November 2014' time '9:28:01 am' author 'JohanBrichau' ancestors ((name 'BaselineOfGrease-JohanBrichau.6' message 'added initializeLatin1ToUtf8Encodings' id '4d976044-1aa9-44b6-bab0-b66ac758b3cd' date '19 October 2014' time '10:05:25 am' author 'JohanBrichau' ancestors ((name 'BaselineOfGrease-JohanBrichau.6' message 'added initializeLatin1ToUtf8Encodings' id 'b4ac5766-d472-4557-beff-59e5b733bce0' date '19 October 2014' time '10:04:55 am' author 'JohanBrichau' ancestors ((name 'BaselineOfGrease-dkh.5' message 'typoe' id '93eb3230-7956-4a6e-85dc-243f3dd895a1' date '4 June 2014' time '3:13:26 pm' author 'dkh' ancestors ((name 'BaselineOfGrease-dkh.4' message 'woops specified the package branch incorrectly ... I think I got it right this time...' id '3003ee31-9d17-4dd1-9b9a-f8a80e4f0ba1' date '4 June 2014' time '3:12:31 pm' author 'dkh' ancestors ((name 'BaselineOfGrease-dkh.3' message 'add Grease-Tests-GemStone-Core.v32 to baseline' id '26f128ca-b62e-4295-9a58-a9758b670c37' date '4 June 2014' time '2:57:48 pm' author 'dkh' ancestors ((name 'BaselineOfGrease-JohanBrichau.2' message 'forgotten methods' id '38758da9-c922-4530-a19e-f8783900e787' date '16 February 2014' time '3:50:22 am' author 'JohanBrichau' ancestors ((name 'BaselineOfGrease-JohanBrichau.1' message 'first baseline' id 'b89398df-14c6-4b6a-a2ba-91ad806bb07f' date '16 February 2014' time '1:49:46 am' author 'JohanBrichau' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'BaselineOfGrease-JohanBrichau.18' message 'Pharo 6 compatibility' id 'd2d614aa-b80c-0d00-b4b6-ae9900bfc9db' date '25 May 2017' time '12:46:04.246978 pm' author 'JohanBrichau' ancestors ((name 'BaselineOfGrease-JohanBrichau.17' message 'Added pharo6' id '52335469-982c-483b-a975-4518820b9bcf' date '25 May 2017' time '11:20:35.004053 am' author 'JohanBrichau' ancestors ((id '644ab134-dd42-4b9f-948b-c277cd963d5d')) stepChildren ())) stepChildren ())) stepChildren ())(name 'BaselineOfGrease-JohanBrichau.1496564071' message 'Fixed dependency of Grease-Tests-Core on the platform packages for GRDynamicVariableTest' id '6dd3612c-6111-0d00-8806-761908c307d1' date '23 July 2017' time '7:29:11.347398 pm' author 'JohanBrichau' ancestors ((name 'BaselineOfGrease-JohanBrichau.1496564070' message '- Removed pharo1.x and 2.x from the baseline since no longer supported. - Fixed dependency of Grease-Tests-Core on the platform packages for GRDynamicVariableTest' id 'd3220dff-6011-0d00-8805-b8f708c307d1' date '23 July 2017' time '7:16:30.82261 pm' author 'JohanBrichau' ancestors ((name 'BaselineOfGrease-JohanBrichau.1496564069' message 'Updated load snippets [ci skip] -' id '26eaf907-cb05-504d-b251-ce1bcf3132ec' date '4 June 2017' time '10:14:29 am' author 'JohanBrichau' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'BaselineOfGrease-JohanBrichau.1496564073' message 'Fix issue #20: encoding to utf8 breaks in GemStone 3.3+' id 'e9410295-6b3c-4eb3-8a28-e1191b60cb82' date '7 October 2017' time '6:48:31 am' author 'JohanBrichau' ancestors ((id 'a721b096-25cd-455c-a419-2fac8a9331c7')) stepChildren ())) stepChildren ())(name 'BaselineOfGrease-JohanBrichau.1496564074' message 'Adapted baseline for a different package in GS3.3 and forward' id '4f023a3c-fdea-4577-a8c8-055680797042' date '7 October 2017' time '6:52:04 am' author 'JohanBrichau' ancestors ((id 'e9410295-6b3c-4eb3-8a28-e1191b60cb82')) stepChildren ())) stepChildren ())(name 'BaselineOfGrease-JohanBrichau.1496564080' message 'Fix gemstone330 package references in the baseline (seems like a mistake was done years ago in dev branch)' id '0dc85b3c-9e37-0d00-a065-e21a0da0b32f' date '22 November 2018' time '9:17:34.247194 am' author 'JohanBrichau' ancestors ((name 'BaselineOfGrease-JohanBrichau.1496564079' message 'merged by GitFileTree-MergeDriver' id '76992aa1-9d37-0d00-b8c1-d67d0a027646' date '22 November 2018' time '8:34:10.555289 am' author 'JohanBrichau' ancestors () stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file 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 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 c173d6e6..00000000 --- a/repository/Grease-Core.package/Character.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "print:on:" : "lr 7/24/2008 18:20" - }, - "class" : { } -} \ No newline at end of file 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 34a444c7..00000000 --- a/repository/Grease-Core.package/GRBoundMessage.class/methodProperties.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "instance" : { - "mergeArguments:" : "jf 7/10/2011 23:14", - "initializeWithSelector:arguments:" : "jf 7/10/2011 23:21", - "printOn:" : "lr 1/11/2009 11:50", - "argumentCount" : "jf 7/10/2011 23:38" - }, - "class" : { - "selector:" : "jf 7/10/2011 23:30", - "selector:arguments:" : "jf 7/10/2011 23:29" - } -} \ 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 deleted file mode 100644 index f7e89689..00000000 --- a/repository/Grease-Core.package/GRCodec.class/methodProperties.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "instance" : { - "printOn:" : "lr 2/7/2009 10:17", - "decoderFor:" : "lr 2/7/2009 09:41", - "url" : "lr 2/7/2009 11:54", - "decode:" : "pmm 8/26/2011 09:47", - "encoderFor:" : "lr 2/7/2009 09:41", - "name" : "lr 2/7/2009 10:16", - "encode:" : "pmm 8/26/2011 09:48" - }, - "class" : { - "basicForEncoding:" : "pmm 6/28/2009 16:40", - "allCodecs" : "pmm 6/28/2009 16:35", - "unsupportedEncoding:" : "lr 7/25/2011 19:46", - "forEncoding:" : "lr 7/25/2011 19:46", - "supportsEncoding:" : "pmm 6/28/2009 16:40", - "codecs" : "jf 2/7/2009 20:27" - } -} \ No newline at end of file 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 d158391b..00000000 --- a/repository/Grease-Core.package/GRCodecStream.class/methodProperties.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "instance" : { }, - "class" : { } -} \ 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 deleted file mode 100644 index 9fbd89be..00000000 --- a/repository/Grease-Core.package/GRCountingStream.class/methodProperties.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "instance" : { - "greaseNext:putAll:startingAt:" : "pmm 6/25/2012 20:28", - "count" : "pmm 6/25/2012 20:26", - "initialize" : "pmm 6/25/2012 20:26", - "next" : "pmm 6/25/2012 20:46", - "next:" : "pmm 6/25/2012 20:46", - "nextPut:" : "pmm 6/25/2012 20:45", - "nextPutAll:" : "pmm 6/25/2012 20:45", - "reset" : "pmm 6/25/2012 20:27" - }, - "class" : { } -} \ No newline at end of file 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 bd7c54fa..00000000 --- a/repository/Grease-Core.package/GRDelayedSend.class/methodProperties.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "instance" : { - "value" : "lr 1/11/2009 11:45", - "argumentCount" : "jf 7/10/2011 23:32", - "printOn:" : "jf 7/10/2011 23:23", - "value:" : "lr 1/11/2009 11:45", - "valueWithPossibleArguments:" : "jf 7/10/2011 23:24", - "initializeWithReceiver:message:" : "jf 7/10/2011 23:23", - "value:value:" : "lr 1/11/2009 11:46", - "valueWithArguments:" : "jf 7/10/2011 23:24", - "fixCallbackTemps" : "lr 1/11/2009 11:44" - }, - "class" : { - "receiver:selector:arguments:" : "jf 7/10/2011 23:33", - "receiver:selector:" : "jf 7/10/2011 23:33", - "new" : "jf 7/10/2011 23:49", - "empty" : "jf 7/10/2011 23:48", - "receiver:selector:argument:" : "pmm 1/10/2009 23:44" - } -} \ No newline at end of file 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 d2cf25e7..00000000 --- a/repository/Grease-Core.package/GRDelayedSendMessage.class/methodProperties.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "instance" : { - "mergeArguments:" : "jf 7/10/2011 23:14", - "argumentCount" : "jf 7/10/2011 23:02", - "printOn:" : "jf 7/10/2011 23:36", - "valueFor:withArguments:" : "jf 7/10/2011 23:37", - "basicPerformFor:withArguments:" : "jf 7/10/2011 23:20", - "valueFor:withPossibleArguments:" : "jf 7/10/2011 23:19", - "invalidArgumentCount" : "jf 7/10/2011 23:25", - "initializeWithSelector:" : "jf 7/10/2011 23:01" - }, - "class" : { - "new" : "jf 7/10/2011 23:28", - "selector:" : "jf 7/10/2011 23:27" - } -} \ No newline at end of file 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 d3730e47..00000000 --- a/repository/Grease-Core.package/GRDelegatingStream.class/methodProperties.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "instance" : { - "isStream" : "NorbertHartl 10/7/2010 08:21", - "next" : "pmm 2/20/2009 22:11", - "crlf" : "pmm 2/20/2009 22:11", - "space" : "jf 7/28/2009 15:55", - "flush" : "pmm 2/20/2009 22:06", - "atEnd" : "pmm 2/20/2009 22:04", - "size" : "pmm 2/20/2009 22:05", - "nextPut:" : "pmm 2/20/2009 22:12", - "nextPutAll:" : "pmm 2/20/2009 22:12", - "reset" : "ar 8/4/2010 20:54", - "print:" : "lr 9/25/2011 10:11", - "position" : "JohanBrichau 9/14/2013 12:20", - "tab" : "jf 7/28/2009 15:56", - "initializeOn:" : "pmm 9/1/2012 15:25", - "contents" : "pmm 2/20/2009 22:05", - "next:" : "pmm 2/20/2009 22:12" - }, - "class" : { - "on:" : "pmm 10/30/2010 18:53" - } -} \ No newline at end of file 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 3798fde2..00000000 --- a/repository/Grease-Core.package/GRDeprecatedApiNotification.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "instance" : { - "details" : "jf 9/24/2008 10:28", - "details:" : "jf 9/24/2008 10:28" - }, - "class" : { } -} \ No newline at end of file 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 d158391b..00000000 --- a/repository/Grease-Core.package/GRError.class/methodProperties.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "instance" : { }, - "class" : { } -} \ No newline at end of file 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 3ffff677..00000000 --- a/repository/Grease-Core.package/GRInflector.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "instance" : { }, - "class" : { - "initialize" : "pmm 2/24/2008 18:31", - "pluralize:" : "jok 3/22/2010 12:04" - } -} \ No newline at end of file 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 d158391b..00000000 --- a/repository/Grease-Core.package/GRInvalidArgumentCount.class/methodProperties.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "instance" : { }, - "class" : { } -} \ No newline at end of file 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 d158391b..00000000 --- a/repository/Grease-Core.package/GRInvalidUtf8Error.class/methodProperties.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "instance" : { }, - "class" : { } -} \ No newline at end of file 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 ec3ae2f0..00000000 --- a/repository/Grease-Core.package/GRMappedPrinter.class/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "instance" : { - "initialize" : "lr 2/6/2010 10:26", - "block:" : "lr 7/24/2008 11:29", - "next:" : "lr 7/24/2008 11:27", - "print:on:" : "lr 7/24/2008 11:26" - }, - "class" : { - "block:next:" : "lr 7/24/2008 11:32" - } -} \ No newline at end of file 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 d158391b..00000000 --- a/repository/Grease-Core.package/GRNotification.class/methodProperties.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "instance" : { }, - "class" : { } -} \ No newline at end of file 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 32a8ff00..00000000 --- a/repository/Grease-Core.package/GRNotificationBasedDynamicVariable.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "instance" : { - "defaultAction" : "pmm 9/5/2017 14:30" - }, - "class" : { - "value" : "pmm 9/5/2017 14:31", - "defaultValue" : "pmm 9/5/2017 14:31", - "use:during:" : "pmm 9/5/2017 14:32" - } -} \ No newline at end of file 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 8badb4c1..00000000 --- a/repository/Grease-Core.package/GRNullCodec.class/methodProperties.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "instance" : { - "decoderFor:" : "jf 9/30/2009 00:28", - "url" : "lr 2/7/2009 12:06", - "decode:" : "pmm 8/19/2014 10:00", - "encoderFor:" : "jf 9/30/2009 00:28", - "name" : "pmm 5/26/2010 07:07", - "encode:" : "pmm 8/19/2014 10:00" - }, - "class" : { - "codecs" : "jf 2/7/2009 20:27", - "codecName" : "pmm 5/26/2010 07:07", - "supportsEncoding:" : "lr 7/25/2011 19:46", - "basicForEncoding:" : "lr 7/25/2011 19:46" - } -} \ No newline at end of file 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 49d614ba..00000000 --- a/repository/Grease-Core.package/GRNullCodecStream.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "instance" : { - "next:" : "lr 7/25/2011 19:50", - "nextPutAll:" : "lr 7/16/2009 08:52", - "nextPut:" : "lr 7/16/2009 08:52", - "next" : "lr 7/25/2011 19:50" - }, - "class" : { } -} \ No newline at end of file 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 17ac730c..00000000 --- a/repository/Grease-Core.package/GRNumberPrinter.class/methodProperties.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "instance" : { - "printInteger:on:" : "pmm 9/9/2018 14:50", - "separator:" : "lr 7/24/2008 14:35", - "initialize" : "lr 2/6/2010 10:58", - "precision:" : "lr 7/25/2008 19:16", - "printFloat:on:" : "pmm 9/15/2013 11:45", - "delimiter:" : "lr 7/24/2008 14:36", - "padding:" : "lr 7/24/2008 11:51", - "printFraction:on:" : "pmm 9/9/2018 11:31", - "infinite:" : "lr 3/24/2008 16:19", - "separate:left:on:" : "pmm 9/9/2018 11:30", - "separate:right:" : "lr 7/24/2008 14:34", - "uppercase" : "lr 2/6/2010 10:17", - "lowercase" : "lr 2/6/2010 10:17", - "lengthOf:base:" : "pmm 9/9/2018 15:08", - "printNaN:on:" : "lr 3/24/2008 16:39", - "padLeft:to:on:" : "pmm 9/9/2018 14:32", - "characters:" : "lr 2/6/2010 10:17", - "nan:" : "lr 3/24/2008 16:19", - "base:" : "lr 7/25/2008 19:16", - "digitsOf:base:" : "lr 5/13/2010 12:26", - "accuracy:" : "lr 7/25/2008 19:13", - "printDigitsOf:withLength:on:" : "pmm 9/9/2018 15:10", - "digits:" : "lr 7/24/2008 11:50", - "print:on:" : "lr 3/24/2008 16:27", - "printInfinite:on:" : "lr 3/24/2008 16:39" - }, - "class" : { - "initialize" : "lr 1/23/2009 21:18" - } -} \ No newline at end of file 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 75cf882f..00000000 --- a/repository/Grease-Core.package/GRObject.class/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "instance" : { - "initialize" : "jf 3/13/2009 16:14", - "error:" : "jf 3/13/2009 16:40" - }, - "class" : { - "error:" : "jf 3/13/2009 16:40", - "new" : "jf 3/13/2009 16:28", - "defaultErrorClass" : "jf 9/30/2009 00:20" - } -} \ No newline at end of file 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 8700a617..00000000 --- a/repository/Grease-Core.package/GROrderedMultiMap.class/methodProperties.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "instance" : { - "keysAndAllValuesDo:" : "pmm 8/26/2016 15:52", - "removeKey:ifAbsent:" : "pmm 8/26/2016 15:56", - "at:add:" : "jf 2/15/2010 13:24", - "allAt:" : "jf 2/15/2010 15:39", - "allAt:ifAbsent:" : "jf 2/15/2010 15:39", - "add:" : "lr 7/25/2011 19:52", - "privateAllAt:startingAt:" : "pmm 8/26/2016 15:52", - "addAll:" : "pmm 8/26/2016 15:57" - }, - "class" : { } -} \ No newline at end of file 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 780a56f5..00000000 --- a/repository/Grease-Core.package/GROrderedMultiMap2.class/methodProperties.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "instance" : { - "keysAndAllValuesDo:" : "pmm 8/25/2016 15:12", - "removeKey:ifAbsent:" : "pmm 8/22/2016 12:10", - "at:add:" : "jf 2/15/2010 13:24", - "allAt:" : "pmm 8/25/2016 15:09", - "allAt:ifAbsent:" : "jf 2/15/2010 15:39", - "add:" : "lr 7/25/2011 19:52", - "privateAllAt:startingAt:" : "pmm 8/25/2016 15:08", - "addAll:" : "pmm 8/25/2016 12:32" - }, - "class" : { } -} \ No newline at end of file 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 2f6d1feb..00000000 --- a/repository/Grease-Core.package/GROrdinalizePrinter.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "instance" : { - "ordinalize:" : "lr 2/16/2008 19:37", - "print:on:" : "lr 2/16/2008 19:32" - }, - "class" : { } -} \ No newline at end of file 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 94470a10..00000000 --- a/repository/Grease-Core.package/GRPackage.class/methodProperties.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "instance" : { - "dependencies" : "jf 3/15/2009 17:00", - "license:" : "obi 10/8/2009 07:51", - "initialize" : "lr 2/17/2010 15:06", - "license" : "lr 2/10/2010 11:18", - "name" : "lr 2/17/2010 15:18", - "description:" : "lr 10/25/2009 11:26", - "seasideUrl" : "pmm 9/12/2013 15:58", - "allDependencies" : "lr 2/17/2010 15:18", - "isLGPL" : "lr 10/25/2009 15:19", - "seasideLGPLUrl" : "pmm 9/12/2013 15:59", - "greaseUrl" : "pmm 9/12/2013 15:57", - "name:" : "lr 10/25/2009 11:26", - "description" : "merged 10/20/2008 09:23", - "seasideAddonsUrl" : "pmm 9/12/2013 15:59", - "resolveWith:" : "topa 11/15/2017 17:31", - "addDependency:" : "merged 10/20/2008 09:33", - "url" : "lr 2/10/2010 11:18", - "printOn:" : "merged 10/20/2008 09:24", - "addDependenciesTo:" : "lr 9/5/2009 18:35", - "url:" : "lr 2/17/2010 15:18", - "isMIT" : "lr 10/25/2009 15:19" - }, - "class" : { - "greaseCore" : "pmm 9/12/2013 16:00", - "grPackages" : "JohanBrichau 12/15/2013 18:27" - } -} \ 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 deleted file mode 100644 index 6703b974..00000000 --- a/repository/Grease-Core.package/GRPlatform.class/methodProperties.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "instance" : { - "localNameOf:" : "pmm 8/19/2014 10:10", - "stackDepth" : "jf 1/22/2009 02:11", - "versionString" : "jf 2/9/2010 00:57", - "semaphoreClass" : "jf 1/22/2009 02:10", - "reducedConflictDictionary" : "jf 1/22/2009 02:39", - "directoriesIn:" : "NickAger 3/9/2012 11:29", - "doTransaction:" : "lr 7/25/2011 19:51", - "terminateProcess:" : "jf 2/6/2009 16:00", - "openDebuggerOn:" : "jf 1/22/2009 02:11", - "thisContext" : "pmm 9/5/2017 13:12", - "bindingOf:" : "pmm 8/23/2014 11:42", - "convertToSmalltalkNewlines:" : "lr 4/15/2010 19:15", - "writeCharacterStreamOn:" : "pmm 8/26/2011 09:45", - "pathSeparator" : "pmm 2/5/2011 09:53", - "compile:into:classified:" : "jf 1/22/2009 02:11", - "weakDictionaryOfSize:" : "jf 1/22/2009 02:11", - "write:toFile:inFolder:" : "pmm 8/19/2014 10:11", - "base64Decode:" : "pmm 8/27/2011 15:12", - "removeFromShutDownList:" : "jf 1/22/2009 02:11", - "removeFromStartUpList:" : "jf 1/22/2009 02:11", - "isProcessTerminated:" : "jf 2/6/2009 16:00", - "label" : "jf 2/9/2010 00:57", - "addToShutDownList:" : "jf 1/22/2009 02:11", - "newRandom" : "jf 9/25/2009 16:40", - "ensureExistenceOfFolder:" : "pmm 2/5/2011 09:54", - "version" : "JohanBrichau 11/24/2018 08:34", - "contentsOfFile:binary:" : "jf 1/22/2009 02:11", - "addToStartUpList:" : "jf 1/22/2009 02:10", - "removeSelector:from:" : "jf 1/22/2009 02:11", - "secureHashFor:" : "jf 1/22/2009 02:11", - "fileExists:" : "JohanBrichau 10/3/2014 20:02", - "filesIn:" : "pmm 2/5/2011 09:54", - "newline" : "lr 4/15/2010 19:13", - "readWriteCharacterStream" : "lr 7/25/2011 19:51", - "readWriteByteStream" : "lr 7/25/2011 19:51", - "deprecationExceptionSet" : "pmm 9/6/2014 12:17", - "asMethodReturningByteArray:named:" : "jf 1/22/2009 02:11", - "fileStreamOn:do:binary:" : "JohanBrichau 10/3/2014 20:00" - }, - "class" : { - "current" : "jgf 1/25/2009 12:06", - "unselect" : "jf 9/30/2009 00:19", - "current:" : "jf 1/21/2009 17:08", - "select" : "jf 9/30/2009 00:19" - } -} \ No newline at end of file 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 109b6b65..00000000 --- a/repository/Grease-Core.package/GRPluggablePrinter.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "instance" : { - "initialize" : "lr 2/6/2010 10:15", - "block:" : "lr 7/24/2008 12:49", - "print:on:" : "lr 7/24/2008 12:49" - }, - "class" : { - "on:" : "lr 7/24/2008 13:59" - } -} \ No newline at end of file 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 b29f3f9a..00000000 --- a/repository/Grease-Core.package/GRPrinter.class/methodProperties.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "instance" : { - "print:on:" : "lr 7/25/2008 19:51", - "pad:right:to:" : "jok 1/26/2010 09:56", - "print:" : "lr 2/7/2008 10:37", - "," : "jf 9/30/2009 00:33", - "pad:center:to:" : "jok 1/26/2010 09:56", - "pad:left:to:" : "jok 1/26/2010 09:56" - }, - "class" : { - "unpaddedYear" : "jf 9/30/2009 00:32", - "usCurrency" : "jf 9/30/2009 00:33", - "paddedCentury" : "jf 9/30/2009 00:32", - "paddedDay" : "jf 9/30/2009 00:32", - "fullWeekName" : "lr 7/24/2008 14:25", - "paddedMinute" : "jf 9/30/2009 00:32", - "swissCurrency" : "jf 9/30/2009 00:33", - "paddedYear" : "jf 9/30/2009 00:32", - "unpaddedHour24" : "jf 9/30/2009 00:32", - "decimalFileSize" : "lr 2/19/2012 13:00", - "unpaddedHour12" : "jf 9/30/2009 00:32", - "paddedHour24" : "jf 9/30/2009 00:32", - "isoDate" : "pmm 8/19/2014 10:06", - "offsetSign" : "jf 9/30/2009 00:33", - "unpaddedCentury" : "jf 9/30/2009 00:32", - "paddedHour12" : "jf 9/30/2009 00:32", - "absOffsetHoursPadded" : "jf 9/30/2009 00:32", - "unpaddedSecond" : "jf 9/30/2009 00:32", - "numberWithAtLeastDigits:" : "lr 2/19/2012 13:00", - "fullMonthName" : "lr 7/24/2008 13:59", - "isoTime" : "pmm 8/19/2014 10:05", - "weekName:" : "jf 9/30/2009 00:32", - "cookieTimestamp" : "lr 2/19/2012 13:01", - "monthName:" : "jf 9/30/2009 00:32", - "paddedSecond" : "jf 9/30/2009 00:32", - "rfc822WithTimeZone:" : "lr 2/19/2012 13:02", - "binaryFileSize" : "lr 2/19/2012 13:00", - "abbreviatedWeekName" : "lr 7/24/2008 14:25", - "unpaddedMonth" : "jf 9/30/2009 00:32", - "unpaddedDay" : "jf 9/30/2009 00:32", - "absOffsetMinutesPadded" : "jf 9/30/2009 00:32", - "httpDate" : "lr 2/19/2012 13:01", - "rfc1123" : "lr 2/19/2012 13:01", - "rfc822" : "pmm 8/19/2014 10:06", - "unpaddedMinute" : "jf 9/30/2009 00:32", - "paddedMonth" : "jf 9/30/2009 00:32", - "abbreviatedMonthName" : "lr 7/24/2008 13:59" - } -} \ No newline at end of file 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 3caeb6c7..00000000 --- a/repository/Grease-Core.package/GRSequentialPrinter.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "instance" : { - "initialize" : "lr 2/7/2008 10:28", - "," : "lr 2/7/2008 11:33", - "print:on:" : "lr 2/7/2008 10:29" - }, - "class" : { } -} \ No newline at end of file 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 e2dd90f4..00000000 --- a/repository/Grease-Core.package/GRSignPrinter.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "instance" : { - "initialize" : "lr 2/6/2010 10:15", - "positivePrinter:" : "lr 2/7/2008 13:28", - "print:on:" : "lr 2/7/2008 13:27", - "negativePrinter:" : "lr 2/7/2008 13:28" - }, - "class" : { } -} \ 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 deleted file mode 100644 index 099e4a15..00000000 --- a/repository/Grease-Core.package/GRSmallDictionary.class/methodProperties.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "instance" : { - "removeKey:" : "lr 7/12/2007 13:18", - "associationsDo:" : "lr 8/20/2007 13:45", - "sorted:" : "pmm 9/9/2017 22:05", - "removeIndex:" : "jf 2/15/2010 14:33", - "any" : "pmm 9/9/2017 18:44", - "removeKey:ifAbsent:" : "jf 2/15/2010 14:40", - "values" : "lr 7/9/2007 10:38", - "at:ifAbsentPut:" : "lr 10/28/2007 14:42", - "keysAndValuesDo:" : "lr 6/7/2007 08:04", - "errorEmptyCollection" : "pmm 9/9/2017 18:41", - "includesKey:" : "lr 10/28/2007 14:42", - "findIndexFor:" : "lr 10/28/2007 14:42", - "notEmpty" : "pmm 9/9/2017 18:46", - "postCopy" : "lr 7/9/2007 07:50", - "size" : "lr 7/9/2007 10:38", - "add:" : "lr 7/25/2011 19:51", - "sorted" : "pmm 9/9/2017 18:56", - "do:" : "jf 12/29/2009 20:38", - "keysDo:" : "lr 8/17/2007 11:52", - "noneSatisfy:" : "pmm 9/9/2017 18:53", - "privateAt:put:" : "lr 6/6/2007 19:28", - "isCollection" : "jf 2/15/2010 15:47", - "at:" : "lr 10/28/2007 14:42", - "errorKeyNotFound" : "lr 7/12/2007 13:18", - "grow" : "lr 6/6/2007 19:12", - "initialize:" : "jf 3/13/2009 17:48", - "at:put:" : "lr 10/28/2007 14:42", - "associations" : "lr 10/28/2007 14:42", - "at:ifAbsent:" : "lr 10/28/2007 14:42", - "addAll:" : "pmm 8/26/2016 15:59", - "at:ifPresent:" : "lr 10/28/2007 14:42", - "isEmpty" : "lr 7/9/2007 08:13", - "keys" : "lr 7/9/2007 10:37", - "printOn:" : "pmm 1/22/2012 16:32" - }, - "class" : { - "new" : "lr 1/24/2008 12:34", - "new:" : "jf 3/13/2009 18:19", - "withAll:" : "jf 2/15/2010 22:50" - } -} \ 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 deleted file mode 100644 index e88fed65..00000000 --- a/repository/Grease-Core.package/GRSmallDictionary2.class/methodProperties.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "instance" : { - "removeKey:" : "lr 7/12/2007 13:18", - "associationsDo:" : "lr 8/20/2007 13:45", - "sorted:" : "pmm 9/9/2017 22:04", - "removeIndex:" : "pmm 8/22/2016 12:29", - "any" : "pmm 9/9/2017 18:45", - "removeKey:ifAbsent:" : "jf 2/15/2010 14:40", - "values" : "pmm 8/22/2016 12:34", - "at:ifAbsentPut:" : "pmm 8/22/2016 12:09", - "keysAndValuesDo:" : "pmm 8/25/2016 15:04", - "errorEmptyCollection" : "pmm 9/9/2017 18:43", - "includesKey:" : "lr 10/28/2007 14:42", - "findIndexFor:" : "pmm 8/22/2016 12:17", - "notEmpty" : "pmm 9/9/2017 18:46", - "postCopy" : "pmm 8/22/2016 11:56", - "size" : "lr 7/9/2007 10:38", - "add:" : "lr 7/25/2011 19:51", - "sorted" : "pmm 9/9/2017 18:57", - "do:" : "pmm 8/22/2016 12:02", - "keysDo:" : "pmm 8/22/2016 12:18", - "noneSatisfy:" : "pmm 9/9/2017 18:51", - "privateAt:put:" : "pmm 8/22/2016 12:15", - "isCollection" : "jf 2/15/2010 15:47", - "at:" : "lr 10/28/2007 14:42", - "errorKeyNotFound" : "lr 7/12/2007 13:18", - "grow" : "pmm 8/25/2016 11:00", - "initialize:" : "pmm 8/22/2016 11:52", - "at:put:" : "pmm 8/22/2016 12:09", - "associations" : "lr 10/28/2007 14:42", - "at:ifAbsent:" : "pmm 8/22/2016 12:08", - "addAll:" : "pmm 8/25/2016 12:31", - "at:ifPresent:" : "pmm 8/22/2016 12:09", - "isEmpty" : "lr 7/9/2007 08:13", - "keys" : "pmm 8/22/2016 12:33", - "printOn:" : "pmm 1/22/2012 16:32" - }, - "class" : { - "new" : "lr 1/24/2008 12:34", - "new:" : "jf 3/13/2009 18:19", - "withAll:" : "jf 2/15/2010 22:50" - } -} \ No newline at end of file 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 9ce3aa75..00000000 --- a/repository/Grease-Core.package/GRSmallOrderedSet.class/methodProperties.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "instance" : { - "isCollection" : "pmm 8/26/2016 15:36", - "addAll:" : "pmm 8/25/2016 14:24", - "do:" : "pmm 8/25/2016 14:05", - "remove:ifAbsent:" : "pmm 8/25/2016 14:42", - "add:" : "pmm 8/25/2016 14:34", - "isEmpty" : "pmm 8/25/2016 13:48", - "postCopy" : "pmm 8/25/2016 14:47", - "includes:" : "pmm 8/25/2016 14:15", - "remove:" : "pmm 8/25/2016 14:43", - "do:separatedBy:" : "pmm 8/25/2016 15:31", - "grow" : "pmm 8/25/2016 14:27", - "size" : "pmm 8/25/2016 13:47", - "errorNotFound" : "pmm 8/25/2016 14:41", - "findIndexFor:" : "pmm 8/25/2016 14:13", - "initialize:" : "pmm 8/25/2016 14:28", - "privateAdd:" : "pmm 8/25/2016 14:31", - "removeIndex:" : "pmm 8/25/2016 14:40" - }, - "class" : { - "new" : "pmm 8/25/2016 14:29", - "new:" : "pmm 8/25/2016 14:29", - "withAll:" : "pmm 8/25/2016 14:29" - } -} \ No newline at end of file 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 a54651dd..00000000 --- a/repository/Grease-Core.package/GRStringPrinter.class/methodProperties.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "instance" : { - "character:" : "lr 1/23/2009 21:40", - "trimBoth" : "lr 1/23/2009 21:59", - "trimNone" : "lr 2/6/2010 10:11", - "padNone" : "lr 2/6/2010 10:11", - "initialize" : "lr 2/6/2010 10:11", - "padCenter" : "lr 1/23/2009 22:01", - "trimRight" : "lr 1/23/2009 21:59", - "print:on:" : "pmm 9/9/2018 14:36", - "padRight" : "lr 1/23/2009 22:01", - "padLeft" : "lr 1/23/2009 22:02", - "length:" : "lr 1/23/2009 22:00", - "trimLeft" : "lr 1/23/2009 21:59" - }, - "class" : { } -} \ No newline at end of file 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 88125ced..00000000 --- a/repository/Grease-Core.package/GRUnboundMessage.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "instance" : { - "mergeArguments:" : "lr 7/25/2011 19:52", - "argumentCount" : "lr 1/11/2009 13:02" - }, - "class" : { } -} \ No newline at end of file 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 6d721674..00000000 --- a/repository/Grease-Core.package/GRUnitPrinter.class/methodProperties.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "instance" : { - "print:unit:on:" : "lr 9/22/2008 23:36", - "integerPrinter:" : "lr 2/7/2008 13:23", - "initialize" : "lr 2/6/2010 10:07", - "units:" : "lr 9/22/2008 23:27", - "fractionPrinter:" : "lr 2/7/2008 13:23", - "base:" : "lr 9/22/2008 23:27", - "print:on:" : "lr 9/22/2008 23:28" - }, - "class" : { - "base:units:" : "lr 9/22/2008 23:34" - } -} \ No newline at end of file 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 d158391b..00000000 --- a/repository/Grease-Core.package/GRUnsupportedEncodingError.class/methodProperties.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "instance" : { }, - "class" : { } -} \ 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 deleted file mode 100644 index 28f8ad77..00000000 --- a/repository/Grease-Core.package/GRVersion.class/methodProperties.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "instance" : { - "beFinal" : "jf 2/9/2010 00:35", - "beBeta" : "jf 2/8/2010 23:18", - "beReleaseCandidate" : "jf 5/22/2010 23:38", - "revision" : "jf 2/8/2010 23:16", - "minor" : "jf 2/8/2010 23:16", - "major" : "jf 2/8/2010 23:16", - "initializeWithMajor:minor:revision:" : "jf 2/8/2010 23:08", - "stage" : "jf 2/9/2010 00:01", - "beBeta:" : "jf 2/8/2010 23:18", - ">" : "jf 2/9/2010 00:07", - "isAlpha" : "jf 2/9/2010 00:34", - "stageNumber" : "jf 2/9/2010 00:01", - "greaseString" : "pmm 1/22/2012 16:32", - "<" : "jf 2/9/2010 00:18", - "<=" : "jf 2/9/2010 00:06", - "revision:" : "jf 2/8/2010 23:17", - "isReleaseCandidate" : "jf 5/22/2010 23:38", - "beReleaseCandidate:" : "jf 5/22/2010 23:37", - "stage:number:" : "jf 2/8/2010 23:17", - ">=" : "jf 2/9/2010 00:07", - "hash" : "pmm 9/10/2017 11:50", - "major:" : "jf 2/8/2010 23:16", - "isBeta" : "jf 2/9/2010 00:34", - "minor:" : "jf 2/8/2010 23:17", - "beAlpha" : "jf 2/8/2010 23:18", - "isFinal" : "jf 2/9/2010 00:34", - "beAlpha:" : "jf 2/8/2010 23:18", - "=" : "jf 2/9/2010 00:16" - }, - "class" : { - "major:minor:" : "jf 2/8/2010 23:14", - "major:minor:revision:" : "jf 2/8/2010 23:08", - "major:" : "jf 2/8/2010 23:14", - "new" : "jf 2/9/2010 01:01" - } -} \ No newline at end of file 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 e21581d2..00000000 --- a/repository/Grease-Core.package/Integer.extension/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "instance" : { - "greaseInteger" : "jf 9/30/2009 01:04", - "pluralize:" : "jf 9/30/2009 00:37", - "pluralize:with:" : "lr 1/30/2008 22:39" - }, - "class" : { } -} \ No newline at end of file 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 65a91aa5..00000000 --- a/repository/Grease-Core.package/Number.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "greaseInteger" : "jf 9/30/2009 01:04" - }, - "class" : { } -} \ No newline at end of file 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 5f301e3a..00000000 --- a/repository/Grease-Core.package/Object.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "greaseDeprecatedApi:details:" : "jf 9/30/2009 01:02" - }, - "class" : { } -} \ No newline at end of file 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 347bc046..00000000 --- a/repository/Grease-Core.package/String.extension/methodProperties.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "instance" : { - "pluralize" : "jf 9/30/2009 00:37", - "excerpt:" : "lr 10/25/2009 11:19", - "excerpt:radius:" : "lr 10/25/2009 11:19", - "truncate" : "lr 10/25/2009 11:17", - "truncate:" : "lr 10/25/2009 11:17", - "truncate:ellipsis:" : "lr 2/7/2008 09:22", - "greaseInteger" : "pmm 8/25/2016 14:02", - "print:on:" : "lr 7/24/2008 18:19", - "excerpt:radius:ellipsis:" : "jf 12/17/2009 10:49" - }, - "class" : { } -} \ No newline at end of file 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 776f7ecf..00000000 --- a/repository/Grease-Core.package/UndefinedObject.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "print:on:" : "lr 2/7/2008 13:13" - }, - "class" : { } -} \ No newline at end of file diff --git a/repository/Grease-Core.package/monticello.meta/version b/repository/Grease-Core.package/monticello.meta/version deleted file mode 100644 index a465f320..00000000 --- a/repository/Grease-Core.package/monticello.meta/version +++ /dev/null @@ -1,49 +0,0 @@ -(name 'Grease-Core-JohanBrichau.118' message 'Bump version to 1.4.0' id '05806fdd-c537-0d00-a043-01280da0b32f' date '24 November 2018' time '8:34:20.396831 am' author 'JohanBrichau' ancestors ((name 'Grease-Core-pmm.117' message 'Take allocation out of GRNumberPrinter integer printing - fixes #1003' id 'a03dcdc4-d131-0d00-b5ea-e2c802bd4e76' date '9 September 2018' time '3:15:16.949754 pm' author 'pmm' ancestors ((name 'Grease-Core-pmm.116' message 'merged by GitFileTree-MergeDriver' id 'b598340f-a184-46b5-bcfc-83814c88a2d3' date '18 November 2017' time '4:00:23.862498 pm' author 'pmm' ancestors ((name 'Grease-Core-pmm.115' message '- fix GRVersion >> #hash - remove unused methods' id '48a503ee-3415-0d00-8847-16580466576b' date '10 September 2017' time '12:22:52.937784 pm' author 'pmm' ancestors ((name 'Grease-Core-pmm.114' message 'Add missing collection methods to GRSmallDictionary - #49' id '3afe7309-2915-0d00-9d79-d857043468d3' date '9 September 2017' time '10:11:33.677831 pm' author 'pmm' ancestors ((name 'Grease-Core-pmm.113' message 'Fix Symbol >> #greaseString - #46' id '6aeef6bc-2315-0d00-978c-877c07fe6076' date '9 September 2017' time '3:52:15.576904 pm' author 'pmm' ancestors ((name 'Grease-Core-pmm.111' message 'Small optimization - avoid message send in common case' id '347a901b-1115-0d00-9403-7ea904aeb9ca' date '8 September 2017' time '5:38:38.319353 pm' author 'pmm' ancestors ((name 'Grease-Core-pmm.110' message 'Add GRNotificationBasedDynamicVariable' id 'bc710350-d214-0d00-b70d-9dae0d40d3ce' date '5 September 2017' time '2:43:35.329414 pm' author 'pmm' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Grease-Core-topa.109' message 'Add Squeak6 to heurristic.' id 'ff22e846-1f80-4ad6-9587-db8ac931c309' date '15 November 2017' time '5:35:29.81457 pm' author 'topa' ancestors ((name 'Grease-Core-pmm.108' message 'merged by GitFileTree-MergeDriver' id 'b20a4dcd-14ee-473d-b3bc-996004075c34' date '25 May 2017' time '2:20:17.202819 pm' author 'pmm' ancestors ((name 'Grease-Core-pmm.107' message '- revert SmallDictionary changes for now' id '32077c22-cc68-4a2f-a7f3-050277bd0b63' date '26 August 2016' time '3:59:50.285037 pm' author 'pmm' ancestors ((name 'Grease-Core-pmm.106' message '- add GRSmallOrderedSet' id 'e7933307-f87d-4929-9a43-ecb800b71ebf' date '25 August 2016' time '3:36:09.938199 pm' author 'pmm' ancestors ((name 'Grease-Core-pmm.105' message '- add new #keysAndAllValuesDo:' id 'b8c3f92f-2bc1-4e13-820b-3fc6c84eb5d8' date '25 August 2016' time '3:23:48.853034 pm' author 'pmm' ancestors ((name 'Grease-Core-pmm.104' message '- fix #greaseInteger -- add GRSmallOrderedSet' id '0cbaaf21-cd1f-4ec9-ae06-b5cd4b9f7d9a' date '25 August 2016' time '2:55:05.659616 pm' author 'pmm' ancestors ((name 'Grease-Core-pmm.103' message '- avoid association allocation in #addAll:' id '0c5392fa-dcef-4126-a29e-0ce5aaaa6ef7' date '25 August 2016' time '12:34:57.088428 pm' author 'pmm' ancestors ((name 'Grease-Core-pmm.102' message '- merge' id '145cda97-94f7-4983-9431-dbb190abaf5e' date '25 August 2016' time '12:22:52.508208 pm' author 'pmm' ancestors ((name 'Grease-Core-pmm.101' message '- lint fixes' id '4fb7fbee-57ad-4a6a-8995-fc771a1b550b' date '25 August 2016' time '11:31:09.647343 am' author 'pmm' ancestors ((name 'Grease-Core-pmm.100' message '- lint fixes' id 'aa8715ac-cb26-48fa-9848-844663b95a0a' date '25 August 2016' time '11:03:09.006107 am' author 'pmm' ancestors ((name 'Grease-Core-pmm.99' message 'Optimize GRSmallDictionary to a single array #875 -- https://github.com/SeasideSt/Seaside/issues/875' id 'c93df209-d81b-4162-8f83-6e906d7cc04d' date '22 August 2016' time '12:39:19.148731 pm' author 'pmm' ancestors ((name 'Grease-Core-JohanBrichau.98' message 'Updated the Grease version method (forgot this a year ago... )' id '4b366145-692f-4fc1-a2ae-e67f5a121eb1' date '5 May 2016' time '12:56:41.101881 pm' author 'JohanBrichau' ancestors ((name 'Grease-Core-JohanBrichau.97' message 'Added resolve for Pharo5 in GRPackage resolveWith:' id '868988c3-e68d-41f6-8932-c172c82904fa' date '26 March 2016' time '3:55:55.690691 pm' author 'JohanBrichau' ancestors ((name 'Grease-Core-pmm.96' message '- empty merge commit' id '022a5a23-c294-437c-adc1-9a613ccbd2bb' date '12 July 2015' time '10:28:08 am' author 'pmm' ancestors ((name 'Grease-Core-pmm.95' message '- empty merge commit' id '9a9f3f50-c81b-4ed6-a41a-d0961b92c731' date '12 July 2015' time '10:26:31 am' author 'pmm' ancestors ((name 'Grease-Core-pmm.92' message '#820 Configurations should not hold on to classes' id 'd65501a6-b884-4310-881d-ec25dc7b0002' date '12 July 2015' time '10:23:24 am' author 'pmm' ancestors ((name 'Grease-Core-pmm.91' message '- lint fixes' id '6bbf6f41-4d71-47da-a07e-c7d630cfb445' date '19 August 2014' time '10:34:54 am' author 'pmm' ancestors ((name 'Grease-Core-pmm.90' message '- lint fixes' id '4c1849aa-9f03-4eca-8f9f-f3e98a70e0a3' date '19 August 2014' time '9:37:58 am' author 'pmm' ancestors ((name 'Grease-Core-JohanBrichau.89' message 'forgot the version number again...' id '6d882333-0356-45c9-851f-93312bce0b9e' date '20 July 2014' time '6:04:54.866362 pm' author 'JohanBrichau' ancestors ((name 'Grease-Core-JohanBrichau.88' message 'merged Grease-Core-JohanBrichau.87 and Grease-Core-StephanEggermont.87' id '8fc8f8bd-2317-4460-9abc-70752a9882b6' date '4 July 2014' time '10:54:46.225141 am' author 'JohanBrichau' ancestors ((name 'Grease-Core-JohanBrichau.87' message 'updated the version method' id '1fb6ae91-5efa-4517-bd7e-5a929c7d710f' date '11 June 2014' time '7:46:26.136116 am' author 'JohanBrichau' ancestors ((name 'Grease-Core-JohanBrichau.86' message 'merged Grease-Core-pmm.85 and Grease-Core-JohanBrichau.85' id '405a05a1-2041-4621-8412-9ff4b9842089' date '17 February 2014' time '6:51:26.464341 am' author 'JohanBrichau' ancestors ((name 'Grease-Core-JohanBrichau.85' message 'move GRCountingStream from Pharo-only package to Core' id 'ac4a44c6-5fdf-40b5-844a-eb61bc6cca48' date '16 February 2014' time '9:30:16.525052 pm' author 'JohanBrichau' ancestors ((name 'Grease-Core-pmm.84' message '- fix comment' id 'cfd4a0a1-464c-44f7-9ebf-8cad9f9ad388' date '1 February 2014' time '3:14:07 pm' author 'pmm' ancestors ((name 'Grease-Core-JohanBrichau.83' message 'Rename #packages to #grPackages (triggered to prevent a name collision in Pharo3.0)' id '33554268-7ad1-45f6-a0d9-4d0ed77d68d4' date '15 December 2013' time '6:30:54.565 pm' author 'JohanBrichau' ancestors ((name 'Grease-Core-pmm.82' message 'Issue 770: ScaledDecimal rendering support -http://code.google.com/p/seaside/issues/detail?id=770 -- avoid Float round trip' id 'd99de538-44b7-4e7f-9079-ac58dc69d64d' date '15 September 2013' time '12:06:53 pm' author 'pmm' ancestors ((name 'Grease-Core-pmm.81' message '- spelling' id '08e9c196-2dbe-4a14-8fb0-2cf958b4cfcf' date '14 September 2013' time '3:55:38 pm' author 'pmm' ancestors ((name 'Grease-Core-JohanBrichau.80' message 'use #position to get the contents size of the stream because #reset does not empty the stream and #size would return the original contents size' id '1eaaa4e0-ee2e-4cca-ba16-6f0f694166d9' date '14 September 2013' time '12:37:49.21 pm' author 'JohanBrichau' ancestors ((name 'Grease-Core-pmm.79' message '- fix URLs' id '813fa3e7-99e3-4843-9b69-d4f5984d4057' date '12 September 2013' time '4:00:56.320007 pm' author 'pmm' ancestors ((name 'Grease-Core-pmm.78' message '- fallback for Pharo 2.0 and 3.0' id 'dab40930-15c6-461a-825b-dfab6db87792' date '12 September 2013' time '3:54:44.884557 pm' author 'pmm' ancestors ((name 'Grease-Core-MattSpr.77' message 'Removed Strin>>#trim* methods from Grease because they are in Pharo.' id 'fc12361f-de07-47bf-a6a9-990608482e9c' date '28 August 2013' time '11:06:58.459433 am' author 'MattSpr' ancestors ((name 'Grease-Core-pmm.76' message '- formatting Nazis from outer space' id '824e2ddb-fbfd-4ae3-b068-cf28c68ea3d3' date '1 September 2012' time '5:00:50 pm' author 'pmm' ancestors ((name 'Grease-Core-pmm.75' message '- Issue 733: multibyte characters broken when flushing a WAComboResponse -- http://code.google.com/p/seaside/issues/detail?id=733' id '706bb981-4894-4376-a24b-75a532d8c2de' date '25 June 2012' time '9:05:23 pm' author 'pmm' ancestors ((name 'Grease-Core-pmm.74' message '- merge 3.0 trunk' id 'ded4ea2b-14d1-4f06-b667-a078f707ea79' date '29 March 2012' time '7:24:18 pm' author 'pmm' ancestors ((name 'Grease-Core-lr.73' message '- improved some class comments, fixed formatting and categorization' id 'a077ad47-9555-46cf-9989-19ffc66c6f47' date '19 February 2012' time '1:02:28 pm' author 'lr' ancestors ((name 'Grease-Core-lr.72' message '- added a class comment to GRPackage' id '07bb296f-e15f-4fa7-9cc1-c6fe2cf4718e' date '19 February 2012' time '12:39:49 pm' author 'lr' ancestors ((name 'Grease-Core-pmm.71' message '- merge' id 'b7ff008a-8265-4e23-9a74-89072a785137' date '19 February 2012' time '10:55:36 am' author 'pmm' ancestors ((name 'Grease-Core-pmm.70' message '- formatting nazis from outer space' id 'a74144e1-0aab-4565-b0dd-da9a51cf83b4' date '22 January 2012' time '4:47:07 pm' author 'pmm' ancestors ((name 'Grease-Core-lr.69' message '- we should also update the repository URLs when we change to a new repository, otherwise the scripts work with the old version' id '66e79d0b-2e4f-4995-add5-eb13a3b40c58' date '4 November 2011' time '9:20:43 pm' author 'lr' ancestors ((name 'Grease-Core-pmm.68' message '- merge with trunk' id '7f35fdbd-efa6-474d-8e34-891fbc63bfc2' date '28 September 2011' time '5:50:09 pm' author 'pmm' ancestors ((name 'Grease-Core-pmm.67' message '- merge with trunk' id '3bacaa4e-9f4d-4d64-a37a-d9677b6eddf1' date '28 August 2011' time '12:18:34 pm' author 'pmm' ancestors ((name 'Grease-Core-pmm.66' message '- Issue 676: response generators have to reset the response before generating a new one -- add infrastructure to reset streams, work around Pharo stream bugs' id 'ecdfbbb9-5bd3-4a37-9a07-06ee406b39f0' date '26 August 2011' time '9:57:26 am' author 'pmm' ancestors ((name 'Grease-Core-pmm.65' message '- Issue 626: Allow platforms to implement custom encoders for speed -- remove #includesUnsafeUrlCharacter: and #includesUnsafeXmlCharacter: from GRPlatform, these were just speed hacks for Pharo, they are now encapsulated in a platform specific class' id 'cc93d214-e5a3-4bd0-98fb-7fc50e077a16' date '15 August 2011' time '9:38:38 pm' author 'pmm' ancestors ((name 'Grease-Core-MrCleaner.64' message '- bump version' id '18061a20-309b-4630-8e4c-bc030b4890f0' date '2 August 2011' time '8:15:56 pm' author 'MrCleaner' ancestors ((name 'Grease-Core-lr.63' message '- fixed formatting of return message' id 'f5804cb2-8a68-4da5-a744-6aec2bb22c5f' date '25 July 2011' time '8:19:35 pm' author 'lr' ancestors ((name 'Grease-Core-jf.62' message 'Make creation of GRDelayedSend with #new clearer by implementing #empty and having #new call it. This also allows senders that depend on it to be more explicit about what they expect.' id '85d50110-72de-4010-9459-ec91c6fccae0' date '10 July 2011' time '11:50:36 pm' author 'jf' ancestors ((name 'Grease-Core-jf.61' message 'Issue 662: Refactor GRDelayedSend to use composition and reduce duplicate - -Introduce new GRDelayedSendMessage and move the two subclasses of GRDelayedSend to be subclasses of this new class instead. Then rename them to match their new position and refactor to delegate to these subclasses.' id 'bb3214ae-96e5-495c-bc40-3e597c0e741a' date '10 July 2011' time '11:41:46 pm' author 'jf' ancestors ((name 'Grease-Core-jf.60' message 'Implement #new on GRDelayedSend. - -GRDelayedSend changes the designated initialization method, and so should override the inherited constructor.' id '62f29f87-a6d2-4204-b562-be045a2ed628' date '10 July 2011' time '10:52:23 pm' author 'jf' ancestors ((name 'Grease-Core-pmm.59' message '- bump version' id 'b3ab66ab-d7ef-49fd-984a-ade1efdef0ef' date '17 May 2011' time '7:51:57 pm' author 'pmm' ancestors ((name 'Grease-Core-DaleHenrichs.58' message '- bump version to 1.0.4' id '3a6c7ed9-1ed7-41e6-b60b-b6b71ba733c5' date '11 February 2011' time '3:34:40 pm' author 'DaleHenrichs' ancestors ((name 'Grease-Core-pmm.57' message '- formatting -- remove trailing space in GRSmallDictionary print string' id '059f4662-ef8e-4310-85a8-6c4de4ac0d58' date '6 February 2011' time '12:03:27 am' author 'pmm' ancestors ((name 'Grease-Core-pmm.56' message '- merged' id '3adcd19c-602e-4df3-ace4-cb7e8f3e2c94' date '5 February 2011' time '11:51:08 pm' author 'pmm' ancestors ((name 'Grease-Core-pmm.55' message '- went for a simple X-Sendfile design that does not use auto deploy and does not require files to be deployed in image folder' id '3c306912-4a6b-433d-adef-5bb851d286da' date '5 February 2011' time '11:50:22 pm' author 'pmm' ancestors ((name 'Grease-Core-pmm.54' message '- cosmetics' id 'c818dcbc-1ead-4a01-9a5b-1c73b160c8b7' date '26 December 2010' time '10:09:12 pm' author 'pmm' ancestors ((name 'Grease-Core-DaleHenrichs.53' message '- bump version to 1.0.3' id '2a5d9b5b-2dd3-4622-91d7-01b4e5add634' date '13 December 2010' time '2:38:51 pm' author 'DaleHenrichs' ancestors ((name 'Grease-Core-pmm.52' message '- bump version for upcomming release' id '956ed3e6-6602-493a-b554-fa2e0ac31923' date '21 November 2010' time '12:31:33 pm' author 'pmm' ancestors ((name 'Grease-Core-pmm.51' message '- fix typo' id 'e18100b0-2f7d-4093-8304-670df747fc28' date '30 October 2010' time '6:57:02 pm' author 'pmm' ancestors ((name 'Grease-Core-pmm.50' message '- remove #hash, #= and #isDictionary from GRSmallDictionary' id 'f7a2ea64-9c10-4d83-8150-8ee633b85c1b' date '7 October 2010' time '3:56:06 pm' author 'pmm' ancestors ((name 'Grease-Core-pmm.49' message '- merged' id '2f42300e-cab9-4d0c-a21b-72997fd0d5a5' date '7 October 2010' time '11:29:43 am' author 'pmm' ancestors ((name 'Grease-Core-pmm.48' message '- GRCodecStream #isStream' id '0b26e466-e77b-414a-ae1b-ecdd0e302acc' date '7 October 2010' time '11:28:58 am' author 'pmm' ancestors () stepChildren ())(name 'Grease-Core-lr.48' message '- correct, but worse implementation of GRSmallDictionary>>#hash -- #isDictionary is not ANSI, avoid it in GRSmallDictionary>>#=' id '968fbb8c-5c1d-463b-8ac7-0c784cc79388' date '9 September 2010' time '12:18:03 pm' author 'lr' ancestors ((name 'Grease-Core-pmm.47' message '- formatting' id '3be6d293-aa73-4047-8d1b-f6b043a64d5b' date '7 September 2010' time '9:14:05 am' author 'pmm' ancestors ((name 'Grease-Core-pmm.46' message '- add #= and #hash to GRSmallDictionary' id '2948f094-8e4f-420d-9434-88224f1bfb20' date '6 September 2010' time '11:36:02 am' author 'pmm' ancestors ((name 'Grease-Core-jf.45' message 'Update version number for 1.0' id 'e765e791-5497-49e7-9413-8a54a0fe42bb' date '8 August 2010' time '9:53:45 pm' author 'jf' ancestors ((name 'Grease-Core-pmm.44' message '- fixed seaside addons url' id '93b9c5fb-4d46-48e8-a958-bf1086e9a1ff' date '8 August 2010' time '11:24:37 am' author 'pmm' ancestors ((name 'Grease-Core-pmm.42' message '- Issue 569: Encoding information doesn''t get included in the response -- http://code.google.com/p/seaside/issues/detail?id=569 -- add accessor for null codec name' id '2a422c1b-8310-4790-9185-fc7f522d01e1' date '26 May 2010' time '9:41:19 pm' author 'pmm' ancestors ((name 'Grease-Core-jf.41' message 'Bump version numbers in preparation for an RC release' id '1ff6239d-4612-4a10-b7cf-de249fc25b4d' date '22 May 2010' time '11:46:08 pm' author 'jf' ancestors ((name 'Grease-Core-pmm.40' message '- make character testing methods return constant value for unchanged performance everywhere but Pharo' id 'bc934cc6-cf3a-441c-af13-23aa3e6b8902' date '22 May 2010' time '10:45:58 am' author 'pmm' ancestors ((name 'Grease-Core-pmm.38' message '- add testing methods for unsafe characters' id '696e8a5c-8bc6-4f91-83c5-56f5d66970d6' date '20 May 2010' time '9:11:34 pm' author 'pmm' ancestors ((name 'Grease-Core-lr.37' message '- reverted back to #reverse (ANSI)' id 'c021b7f0-fdd1-44a6-989e-1db492961140' date '13 May 2010' time '3:57:08 pm' author 'lr' ancestors ((name 'Grease-Core-DaleHenrichs.36' message '- revert GRNumberPrinter>>digitsOf:base: to version that uses #reversed as #reverse is deprecated' id '820d8e2d-bbd4-4c25-8c92-1b36139b4cac' date '12 May 2010' time '5:00:48 pm' author 'DaleHenrichs' ancestors ((name 'Grease-Core-pmm.35' message '- merged' id 'c2523a28-17ea-43e8-9701-d3144c49c7b0' date '7 May 2010' time '10:32:25 pm' author 'pmm' ancestors ((name 'Grease-Core-pmm.34' message '- add seasideAddonsUrl' id 'c4680460-d21f-4ccc-b225-0a1345f202bd' date '7 May 2010' time '10:30:05 pm' author 'pmm' ancestors () stepChildren ())(name 'Grease-Core-jok.34' message 'Use #reverse (ANSI) rather than #reversed' id 'fca590c1-b0d8-3f42-9b8b-412824c25a14' date '22 April 2010' time '5:33:34 pm' author 'jok' ancestors ((name 'Grease-Core-lr.33' message '- added a #newline accessor to GRPlatform that returns a string with the default newline character (sequence) -- moved implementation of #convertToSmalltalkNewlines: to OBPlatform as it can now be implemented in terms of #newline and doesn''t need to be provided by other platforms anymore' id 'f6a7e283-1f08-4147-947c-904f2bc304a3' date '15 April 2010' time '7:29:31 pm' author 'lr' ancestors ((name 'Grease-Core-pmm.32' message '- Issue 561: remove GRCodecStream >> #binary -- http://code.google.com/p/seaside/issues/detail?id=561' id '341014e3-fd90-4740-b777-716056f2cd7b' date '11 April 2010' time '6:16:33 pm' author 'pmm' ancestors ((name 'Grease-Core-jok.31' message '- http://code.google.com/p/seaside/issues/detail?id=555 -- add #beginsWithSubCollection: and #endsWithSubCollection:' id 'b3a1f4c5-f496-b24e-bb0a-94395d447b1a' date '24 March 2010' time '12:30:33 pm' author 'jok' ancestors ((name 'Grease-Core-obi.30' message '- revert back to lr.28' id 'ff3d24e0-bea4-8642-aa70-0a8eaa509d55' date '22 February 2010' time '8:16:50 pm' author 'obi' ancestors ((name 'Grease-Core-obi.29' message '- add direct accessing method for url' id '79473ec4-083e-a144-aa40-4d100d2ab1e3' date '21 February 2010' time '6:43:17 pm' author 'obi' ancestors ((name 'Grease-Core-lr.28' message '- better error message when package dependencies cannot be reseolved' id 'be96fe5b-0af9-4937-8155-cafe37a0409f' date '18 February 2010' time '11:15:34 am' author 'lr' ancestors ((name 'Grease-Core-lr.27' message '- added explicit repository url' id '8a5b0209-3bc3-4ca1-b4d1-1f924d67ab47' date '17 February 2010' time '4:07:07 pm' author 'lr' ancestors ((name 'Grease-Core-lr.26' message '- do not initialize a default URL, that''s indeed too dangerous' id '231ee3c9-2dfb-491c-8c2c-c1c3f403d6cd' date '17 February 2010' time '3:09:07 pm' author 'lr' ancestors ((name 'Grease-Core-lr.25' message '- cleanup unused code' id '3ce14101-eb4d-40ca-ba28-3e82e896a957' date '17 February 2010' time '2:48:12 pm' author 'lr' ancestors ((name 'Grease-Core-lr.24' message '- fixed some lint issues' id '7b01c967-c2aa-441a-b26b-03cef0c944fe' date '16 February 2010' time '9:15:50 pm' author 'lr' ancestors ((name 'Grease-Core-jf.23' message 'Metacello version numbers for Grease have already gone up as high at 1.0a5, so let''s use 1.0a6 instead...' id '32b7d714-db34-4987-926c-c303b5cecee9' date '15 February 2010' time '11:19:48 pm' author 'jf' ancestors ((name 'Grease-Core-jf.22' message '#addAll: and #withAll: on dictionaries should take a Dictionary parameter, not a collection of Associations (according to ANSI)' id '8c843c34-4297-4448-abd7-f4092025ae07' date '15 February 2010' time '11:01:57 pm' author 'jf' ancestors ((name 'Grease-Core-jf.21' message 'Properly fix http://code.google.com/p/seaside/issues/detail?id=544 - -I introduce a GROrderedMultiMap which specifically allows duplicate keys (GRSmallDictionary no longer does). This is used to implement WARequestFields, which is used throughtout for storing GET and POST fields. #at: will return the first matching field and #allAt: will return all matching values. - -Various renamings, fixes to callbacks, and to unit and functional tests. - -I also had to fix the Swazoo and Comanche server adaptors to correctly create WARequestFields instances for the POST fields and to correctly include the raw POST body in all cases (but it seems to be a ByteArray in Swazoo''s case and a ByteString or String for Comanche... seems not ideal)' id '9a67e592-63f9-4aab-8799-ce92fd341205' date '15 February 2010' time '9:31:33 pm' author 'jf' ancestors ((name 'Grease-Core-lr.20' message '- add an url to the package' id '1ce86f1b-1e86-45bf-b755-9fcb4ffede6e' date '10 February 2010' time '11:33:14 am' author 'lr' ancestors ((name 'Grease-Core-jf.19' message 'Let''s set a good example by properly namespacing our extensions to GRPlatform. Also tidy up and remove unused methods.' id '4549ccc4-6218-4b5a-affb-5c2c1a0bf3bd' date '9 February 2010' time '1:52:55 am' author 'jf' ancestors ((name 'Grease-Core-jf.18' message 'http://code.google.com/p/seaside/issues/detail?id=503 - -Implement GRVersion as a (fairly) simple version number class.' id '75fc4f58-e849-447e-a1e9-d21cb20d1a02' date '9 February 2010' time '1:03:53 am' author 'jf' ancestors ((name 'Grease-Core-lr.17' message 'merged' id '1f83c10c-28b2-4f1f-ad0e-2a621262d18c' date '6 February 2010' time '7:04:07 pm' author 'lr' ancestors ((name 'Grease-Core-jf.16' message 'Remove usage of non-Grease methods #nameOfDay:, #anyOne, and several Squeak-specific Duration selectors. - -Add Grease tests for Duration protocols discussed with platforms. Also test for #any.' id 'd8afb489-de6a-424c-a94e-5c9eb50939ec' date '6 February 2010' time '1:21:59 am' author 'jf' ancestors () stepChildren ())(name 'Grease-Core-lr.16' message '- use accessors in initializers, that''s nicer -- pushed test coverage to 94%' id 'd10c2b98-a79b-4ee5-b8bd-f9ec27a4ffa3' date '6 February 2010' time '11:13:58 am' author 'lr' ancestors ((name 'Grease-Core-jok.15' message 'http://code.google.com/p/seaside/issues/detail?id=535 - -- add Slime transformation for #new:withAll: and run it' id 'a3dbcab3-59b8-0b40-8128-8ff7a1f1d634' date '26 January 2010' time '10:57:57 am' author 'jok' ancestors ((name 'Grease-Core-jf.14' message 'merge' id 'e59ae7f2-6e21-4d7e-b53d-68e5b2406df9' date '11 January 2010' time '8:09:27 pm' author 'jf' ancestors ((name 'Grease-Core-pmm.13' message '- Issue 513: RFC822 code in RSS package may be using obsolete code -- http://code.google.com/p/seaside/issues/detail?id=513' id '86691819-8179-4e4e-a8db-2b0cbaa0bf9c' date '2 January 2010' time '5:07:58 pm' author 'pmm' ancestors ((name 'Grease-Core-jf.12' message 'Write some more Slime rules and tests and apply them.' id '4b9eaa57-bead-4961-8b61-ea0389e0676e' date '29 December 2009' time '8:59:12 pm' author 'jf' ancestors () stepChildren ())) stepChildren ())(name 'Grease-Core-jf.11' message 'merge' id 'd560d898-8aab-4fdb-bee0-1e8eb8dde60c' date '29 December 2009' time '5:12:46 pm' author 'jf' ancestors ((name 'Grease-Core-jf.10' message '- move Task stuff into Component package -- no longer need special Flow configuration settings -- Make parameter to onAnswer: blocks optional -- Add #call:onAnswer: which does a #show:onAnswer: and then sends a render notification; rewrite #call: to use #call:onAnswer: -- Make as few of the functional tests as possible depend on Flow' id '2938fcb6-3e91-4119-bbf5-9f8699144f45' date '29 December 2009' time '4:14:26 pm' author 'jf' ancestors ((name 'Grease-Core-dkh.8' message '- fix Issue 499: http://code.google.com/p/seaside/issues/detail?id=499' id '7cea52fb-d9e9-4441-8ad5-3fa51cadceae' date '23 November 2009' time '3:07:28 pm' author 'dkh' ancestors ((name 'Grease-Core-jf.7' message 'Move seaside-specific method out of Grease' id '1a22dbe1-3b92-4449-9584-0d0e99398eec' date '3 November 2009' time '12:09:14 am' author 'jf' ancestors ((name 'Grease-Core-lr.6' message '- never use #== unless really required' id '1805834a-1d95-4cfa-ae9b-3ea1d5e38d0b' date '28 October 2009' time '11:16:09 am' author 'lr' ancestors ((name 'Grease-Core-lr.5' message '- fixed argument names and some other formatting issues' id '35c4532c-a8a4-4dbd-a856-d15513dec823' date '25 October 2009' time '11:31:51 am' author 'lr' ancestors ((name 'Grease-Core-lr.4' message '- removed duplicated code from string extensions, properly commented all methods' id '3b3f3e4f-d3e6-4f60-8482-be11f9b82404' date '25 October 2009' time '11:20:38 am' author 'lr' ancestors ((name 'Grease-Core-obi.3' message '- add license attribute' id '11a247de-6598-8348-bdf9-9d2b1ab4175d' date '8 October 2009' time '8:32:08 am' author 'obi' ancestors ((name 'Grease-Core-jf.2' message 'recategorization' id 'ed41f639-a256-4ee6-a184-8555fd48a5ea' date '1 October 2009' time '12:45:27 am' author 'jf' ancestors ((name 'Grease-Core-jf.1' message 'Rename Seaside-Platform to Grease in order to help make clear that it is not Seaside-specific and can be used by other projects as a compatibility layer. This was spawned by discussions when I started porting Magritte to VAST using the Platform layer.' id '8702f9cb-4c9f-49fe-9b8f-ed45cd2d444a' date '30 September 2009' time '10:47:12 pm' author 'jf' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Grease-Core-jf.9' message '#findString: is not portable - use #indexOfSubCollection:' id '5ba7bcb1-ea63-4fc1-9de2-ea443edec864' date '17 December 2009' time '10:50:18 am' author 'jf' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Grease-Core-NickAger.55' message 'added GRSmallDictionary>>#printOn:' id '5b995447-06d6-4525-966b-d22d45444ab9' date '5 February 2011' time '8:26:34 pm' author 'NickAger' ancestors ((id 'c818dcbc-1ead-4a01-9a5b-1c73b160c8b7')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Grease-Core-pmm.64' message '- add base64 comment' id 'c1fb5836-b648-46e8-b535-de41929a88ac' date '28 August 2011' time '9:58:40 am' author 'pmm' ancestors ((id 'f5804cb2-8a68-4da5-a744-6aec2bb22c5f')) stepChildren ())) stepChildren ())(name 'Grease-Core-lr.66' message '- add GRCodecStream>>#print:' id '0a3221fb-c5d8-4ce1-b139-0e6dc72481a2' date '25 September 2011' time '10:13:37 am' author 'lr' ancestors ((name 'Grease-Core-dkh.65' message '1.0.6 (dkh.153): -- open 1.0.6 for development -- update to latest packages -- update GRPlatform version to 1.0.6' id '3da25c6b-c1ca-4143-ad35-116b50bea34b' date '1 September 2011' time '3:51:36 pm' author 'dkh' ancestors ((id 'c1fb5836-b648-46e8-b535-de41929a88ac')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Grease-Core-pmm.43' message '- Issue 591: WAComboResponse -- a combined buffered / streaming response -- http://code.google.com/p/seaside/issues/detail?id=591' id 'f7129542-f1fe-4bd2-82ee-f234e31d00e7' date '5 August 2010' time '7:09:54 am' author 'pmm' ancestors ((id '2a422c1b-8310-4790-9185-fc7f522d01e1')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Grease-Core-NickAger.70' message 'changed GRPlatform>>#version to 1.0.7' id 'd48abd90-86bb-4538-ac62-e492a7a4e3f0' date '23 March 2012' time '4:36:01 pm' author 'NickAger' ancestors ((name 'Grease-Core-NickAger.69' message 'further refined the comment to GRDelayedSend ' id 'cab12ed6-1527-4a89-8c41-70e40461806b' date '20 March 2012' time '9:05:29 am' author 'NickAger' ancestors ((name 'Grease-Core-NickAger.68' message 'improved commenting for GRDelayedSend and GRDelayedSendMessage - I was confused by the intent of the classes - hopefully the comments will help others with similar confusion.' id '350d84c7-722f-4318-96d6-d7854ed52047' date '19 March 2012' time '11:23:01 am' author 'NickAger' ancestors ((name 'Grease-Core-NickAger.67' message 'added a new method: - -GRPlatform>>#directoriesIn: - -to support recursing sub-directories for file to load into a file library. - -Fix for: http://code.google.com/p/seaside/issues/detail?id=267' id '364dcb92-0613-4caf-8058-a8c25d65249c' date '9 March 2012' time '2:52:30 pm' author 'NickAger' ancestors ((id '0a3221fb-c5d8-4ce1-b139-0e6dc72481a2')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Grease-Core-pmm.85' message 'Issue 781: Also catch platform deprecation signals -- http://code.google.com/p/seaside/issues/detail?id=781' id '792050f8-aab9-4903-9d9d-64ef14554008' date '16 February 2014' time '11:16:53 pm' author 'pmm' ancestors ((id 'cfd4a0a1-464c-44f7-9ebf-8cad9f9ad388')) stepChildren ())) stepChildren ())) stepChildren ())(name 'Grease-Core-StephanEggermont.87' message 'Added resolve for Pharo4 in GRPackage resolveWith:' id 'fe861b91-7089-436d-98e4-06b764abe7fc' date '2 July 2014' time '7:03:08.283881 pm' author 'StephanEggermont' ancestors ((id '405a05a1-2041-4621-8412-9ff4b9842089')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Grease-Core-JohanBrichau.94' message 'additional file library methods' id '5283728c-3883-45c2-8b4a-0d99c65632ca' date '3 October 2014' time '8:07:43.645747 pm' author 'JohanBrichau' ancestors ((name 'Grease-Core-pmm.93' message 'Issue 827: GRPlatform >> #deprecationExceptionSet should use ExceptionSet' id '7e4068d6-301d-4e9f-a271-332e6c6adf21' date '6 September 2014' time '12:18:17 pm' author 'pmm' ancestors ((name 'Grease-Core-jok.92' message '' id '7e3bfc78-1fb0-8d43-b65f-050e9d1bf700' date '23 August 2014' time '11:02:48.249694 am' author 'jok' ancestors ((id '6bbf6f41-4d71-47da-a07e-c7d630cfb445')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Grease-Core-TravisCI.100' message 'h4x for Squeak' id '4ef84bab-74af-47fc-86ed-bc55367b9d2c' date '23 August 2016' time '11:02:57.719 am' author 'TravisCI' ancestors ((id 'c93df209-d81b-4162-8f83-6e906d7cc04d')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(id '4b366145-692f-4fc1-a2ae-e67f5a121eb1')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ 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 deleted file mode 100644 index 57c2d216..00000000 --- a/repository/Grease-GemStone-Core.package/Array.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "beMutable" : "jgf 01/26/2009 15:47" } } 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 2a828f92..00000000 --- a/repository/Grease-GemStone-Core.package/Behavior.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "fullName" : "DaleHenrichs 06/02/2010 15:23", - "removeSelectorSilently:" : "jgf 01/14/2009 16:31" } } 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 26959d48..00000000 --- a/repository/Grease-GemStone-Core.package/BinaryFloat.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : "DaleHenrichs 06/04/2010 14:55" } } 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 59255997..00000000 --- a/repository/Grease-GemStone-Core.package/ByteArray.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : "dkh 11/06/2009 10:16" } } 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 7dde8972..00000000 --- a/repository/Grease-GemStone-Core.package/Character.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseInteger" : "dkh 11/06/2009 10:18" } } 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 faf3cf69..00000000 --- a/repository/Grease-GemStone-Core.package/CharacterCollection.extension/methodProperties.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "excerpt:" : "DaleHenrichs 02/17/2011 16:53", - "excerpt:radius:" : "DaleHenrichs 02/17/2011 16:53", - "excerpt:radius:ellipsis:" : "DaleHenrichs 02/17/2011 16:53", - "greaseInteger" : "DaleHenrichs 02/17/2011 16:53", - "pluralize" : "DaleHenrichs 02/17/2011 16:53", - "print:on:" : "DaleHenrichs 02/17/2011 16:53", - "substrings:" : "JohanBrichau 05/25/2017 04:14", - "trimBoth" : "DaleHenrichs 02/17/2011 16:53", - "trimBoth:" : "DaleHenrichs 02/17/2011 16:53", - "trimLeft" : "DaleHenrichs 02/17/2011 16:53", - "trimLeft:" : "DaleHenrichs 02/17/2011 16:53", - "trimLeft:right:" : "DaleHenrichs 02/17/2011 16:53", - "trimRight" : "DaleHenrichs 02/17/2011 16:53", - "trimRight:" : "DaleHenrichs 02/17/2011 16:53", - "truncate" : "DaleHenrichs 02/17/2011 16:53", - "truncate:" : "DaleHenrichs 02/17/2011 16:53", - "truncate:ellipsis:" : "DaleHenrichs 02/17/2011 16:53" } } 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 3ead3a30..00000000 --- a/repository/Grease-GemStone-Core.package/Collection.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "any" : "DaleHenrichs 06/02/2010 16:32", - "sorted" : "DaleHenrichs 06/02/2010 16:34", - "sorted:" : "DaleHenrichs 06/02/2010 16:34" } } 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 601fc467..00000000 --- a/repository/Grease-GemStone-Core.package/Date.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "daysInMonthNumber:forYear:" : "dkh 03/17/2008 16:21" }, - "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 add755ed..00000000 --- a/repository/Grease-GemStone-Core.package/Dictionary.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "copyFrom:" : "jgf 01/02/2009 13:12" } } 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 fa06737b..00000000 --- a/repository/Grease-GemStone-Core.package/DoubleByteString.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : "dkh 11/06/2009 10:17" } } 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 294d3d1c..00000000 --- a/repository/Grease-GemStone-Core.package/Duration.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - "milliseconds:" : "DaleHenrichs 06/03/2010 11:09" }, - "instance" : { - "asMilliseconds" : "DaleHenrichs 06/02/2010 16:45", - "milliseconds" : "DaleHenrichs 06/03/2010 12:54" } } 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 6e2bc81f..00000000 --- a/repository/Grease-GemStone-Core.package/Exception.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - "raiseSignal" : "jgf 12/15/2008 14:24", - "raiseSignal:" : "jgf 12/15/2008 14:24" }, - "instance" : { - "raiseSignal" : "jgf 12/15/2008 14:24", - "raiseSignal:" : "jgf 12/15/2008 14:24" } } 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 2f965f29..00000000 --- a/repository/Grease-GemStone-Core.package/GRDynamicVariable.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - "default" : "JohanBrichau 07/23/2017 09:48", - "defaultValue" : "JohanBrichau 07/23/2017 09:47", - "use:during:" : "JB 09/08/2017 00:34", - "value" : "JB 10/04/2017 04:57" }, - "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 07f57bab..00000000 --- a/repository/Grease-GemStone-Core.package/GRGemStonePlatform.class/methodProperties.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "class" : { - "initialize" : "DataCurator 08/31/2011 03:36", - "unload" : "dkh 11/06/2009 08:41" }, - "instance" : { - "addToShutDownList:" : "dkh 11/06/2009 08:41", - "addToStartUpList:" : "dkh 11/06/2009 08:41", - "asMethodReturningByteArray:named:" : "dkh 11/06/2009 08:41", - "asMethodReturningString:named:" : "dkh 04/25/2011 20:21", - "base64Decode:" : "dkh 11/06/2009 08:41", - "compile:into:classified:" : "dkh 11/06/2009 08:41", - "contentsOfFile:binary:" : "JohanBrichau 10/11/2014 02:26", - "defaultDispatcherName" : "dkh 11/06/2009 08:41", - "deprecationExceptionSet" : "JohanBrichau 04/19/2014 10:55", - "directoriesIn:" : "JohanBrichau 02/15/2014 07:02", - "doAbortTransaction" : "dkh 11/06/2009 08:41", - "doBeginTransaction" : "dkh 11/06/2009 08:41", - "doCommitTransaction" : "dkh 11/06/2009 08:41", - "doTransaction:" : "dkh 12/21/2014 16:11", - "ensureExistenceOfFolder:" : "DaleHenrichs 12/03/2010 16:28", - "fileExists:" : "JohanBrichau 10/11/2014 02:18", - "fileStreamOn:do:binary:" : "JohanBrichau 10/11/2014 02:27", - "filesIn:" : "DaleHenrichs 09/02/2010 15:45", - "isProcessTerminated:" : "dkh 11/06/2009 08:41", - "label" : "DaleHenrichs 06/02/2010 16:39", - "localNameOf:" : "DaleHenrichs 01/17/2011 16:26", - "logError:title:" : "dkh 07/26/2011 09:18", - "logError:title:shouldCommit:" : "dkh 07/26/2011 09:18", - "newRandom" : "DaleHenrichs 11/08/2010 15:10", - "newline" : "DaleHenrichs 07/27/2010 11:42", - "openDebuggerOn:" : "dkh 11/06/2009 08:41", - "pathSeparator" : "NickAger 08/15/2011 17:09", - "readWriteByteStream" : "dkh 11/06/2009 08:41", - "readWriteCharacterStream" : "dkh 11/06/2009 08:41", - "reducedConflictDictionary" : "dkh 11/06/2009 08:41", - "removeFromShutDownList:" : "dkh 11/06/2009 08:41", - "removeFromStartUpList:" : "dkh 11/06/2009 08:41", - "removeSelector:from:" : "dkh 11/06/2009 08:41", - "saveLogEntry:shouldCommit:" : "dkh 12/23/2009 12:23", - "secureHashFor:" : "dkh 11/06/2009 08:41", - "semaphoreClass" : "dkh 11/06/2009 08:41", - "smtpServer" : "dkh 11/06/2009 08:41", - "stackDepth" : "DaleHenrichs 01/18/2011 12:47", - "terminateProcess:" : "dkh 11/06/2009 08:41", - "thisContext" : "JohanBrichau 09/11/2018 01:32", - "transactionMutex" : "dkh 11/06/2009 08:41", - "weakDictionaryOfSize:" : "dkh 11/06/2009 08:41", - "write:toFile:inFolder:" : "DaleHenrichs 12/03/2010 16:29", - "writeCharacterStreamOn:" : "dkh 09/14/2013 09:46" } } 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 b08c96a0..00000000 --- a/repository/Grease-GemStone-Core.package/GRGemStoneRandomProvider.class/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "class" : { - "generator" : "dkh 07/26/2011 16:56", - "initialize" : "dkh 07/26/2011 16:30", - "mutex" : "dkh 07/26/2011 16:30", - "nextInt:" : "dkh 07/26/2011 16:31", - "randomClass" : "dkh 04/28/2011 15:37", - "randomFrom:" : "dkh 12/09/2009 14:05", - "sessionStart" : "dkh 04/28/2011 15:53" }, - "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 3042e1e9..00000000 --- a/repository/Grease-GemStone-Core.package/GRLatin1GemStoneCodec.class/methodProperties.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "class" : { - "basicForEncoding:" : "dkh 11/06/2009 08:44", - "supportsEncoding:" : "dkh 11/06/2009 08:44" }, - "instance" : { - "decode:" : "dkh 11/17/2009 16:04", - "encode:" : "dkh 11/17/2009 16:04", - "encodeUrl:" : "dkh 11/06/2009 08:44", - "encoderFor:" : "DaleHenrichs 06/03/2010 13:04", - "name" : "dkh 11/06/2009 08:44", - "name:" : "dkh 11/06/2009 08:44", - "url" : "dkh 11/06/2009 08:44" } } 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 43afde50..00000000 --- a/repository/Grease-GemStone-Core.package/GRPackage.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "greaseGemStoneCore" : "DaleHenrichs 06/03/2010 12:28" }, - "instance" : { - "gemstoneUrl" : "DaleHenrichs 06/03/2010 14:30" } } 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 f52ab9d1..00000000 --- a/repository/Grease-GemStone-Core.package/GRTextOrBinaryCodecStream.class/methodProperties.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "binary" : "dkh 11/06/2009 08:45", - "contents" : "dkh 11/06/2009 08:45", - "flush" : "dkh 11/06/2009 08:45", - "initializeOn:" : "NickAger 11/13/2010 01:54", - "next" : "DaleHenrichs 06/03/2010 13:07", - "next:" : "DaleHenrichs 06/03/2010 13:11", - "nextPut:" : "DaleHenrichs 06/03/2010 13:08", - "nextPutAll:" : "DaleHenrichs 06/03/2010 13:08", - "size" : "dkh 11/06/2009 08:45", - "text" : "dkh 11/06/2009 08:45" } } 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 a381c453..00000000 --- a/repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/methodProperties.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "class" : { - "basicForEncoding:" : "dkh 11/06/2009 08:45", - "supportsEncoding:" : "DaleHenrichs 06/03/2010 12:06" }, - "instance" : { - "decode:" : "dkh 11/17/2009 16:06", - "decoderFor:" : "NorbertHartl 11/30/2010 12:09", - "encode:" : "dkh 05/24/2012 10:00", - "encodeUrl:" : "dkh 05/24/2012 10:00", - "encoderFor:" : "dkh 11/06/2009 08:45", - "initialize" : "dkh 11/06/2009 08:45", - "name" : "dkh 11/06/2009 08:45", - "url" : "dkh 11/06/2009 08:45" } } 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 225f083a..00000000 --- a/repository/Grease-GemStone-Core.package/GsContext.class/methodProperties.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "class" : { - "fromContinuation:atLevel:" : "dkh 02/28/2008 15:13", - "fromLevel:" : "dkh 02/28/2008 15:13" }, - "instance" : { - "=" : "JohanBrichau 09/11/2018 01:29", - "asString" : "dkh 02/28/2008 15:15", - "continuation:level:" : "dkh 05/26/2015 15:39", - "fullPrintString" : "dkh 02/28/2008 15:14", - "greaseString" : "DaleHenrichs 06/04/2010 17:22", - "method" : "dkh 02/28/2008 15:15", - "receiver" : "dkh 02/28/2008 15:15", - "sender" : "dkh 02/28/2008 15:15", - "tempAt:" : "dkh 05/27/2015 10:10", - "tempNames" : "dkh 05/27/2015 10:10" } } 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 aab9a7c7..00000000 --- a/repository/Grease-GemStone-Core.package/Interval.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "any" : "DaleHenrichs 06/02/2010 16:54" } } 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 25dcd226..00000000 --- a/repository/Grease-GemStone-Core.package/MessageSend.extension/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "argumentCount" : "jgf 01/14/2009 15:34", - "evaluateWithArguments:" : "dkh 03/03/2008 15:35", - "fixCallbackTemps" : "jgf 01/14/2009 15:08", - "value:" : "jgf 01/14/2009 15:13", - "value:value:" : "jgf 01/14/2009 15:14", - "valueWithPossibleArgument:" : "jgf 12/15/2008 14:24", - "valueWithPossibleArguments:" : "jgf 01/14/2009 15:36" } } 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 ac2f92cc..00000000 --- a/repository/Grease-GemStone-Core.package/Number.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "milliseconds" : "DaleHenrichs 06/03/2010 11:11" } } 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 384397c0..00000000 --- a/repository/Grease-GemStone-Core.package/Object.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "displayString" : "dkh 11/09/2009 11:10", - "greaseString" : "dkh 11/06/2009 10:16", - "isMessageSend" : "jgf 12/16/2008 14:11" } } 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 49ba3845..00000000 --- a/repository/Grease-GemStone-Core.package/PackageInfo.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "versionString" : "dkh 03/03/2008 16:21" } } 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 e72953e4..00000000 --- a/repository/Grease-GemStone-Core.package/PositionableStream.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseUpToAll:" : "dkh 11/06/2009 10:20" } } 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 bdaa248f..00000000 --- a/repository/Grease-GemStone-Core.package/SequenceableCollection.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "beginsWithSubCollection:" : "DaleHenrichs 06/03/2010 12:16", - "endsWithSubCollection:" : "DaleHenrichs 06/02/2010 16: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 61e06303..00000000 --- a/repository/Grease-GemStone-Core.package/String.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "fromString:" : "jgf 01/02/2009 12:05" }, - "instance" : { - } } 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 2ac8a82f..00000000 --- a/repository/Grease-GemStone-Core.package/SystemAbortTransaction.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "alternatives" : "dkh 07/25/2007 14:13", - "defaultAction" : "dkh 07/25/2007 14:08", - "transaction" : "dkh 07/25/2007 14:03" } } 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 fddb95a4..00000000 --- a/repository/Grease-GemStone-Core.package/SystemBeginTransaction.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "alternatives" : "dkh 07/25/2007 14:13", - "defaultAction" : "dkh 07/25/2007 14:11", - "transaction" : "dkh 07/25/2007 14:11" } } 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 7f72c488..00000000 --- a/repository/Grease-GemStone-Core.package/SystemCommitTransaction.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "alternatives" : "dkh 07/25/2007 14:04", - "defaultAction" : "dkh 07/30/2007 12:42", - "transaction" : "dkh 07/25/2007 14:03" } } 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 8630923c..00000000 --- a/repository/Grease-GemStone-Core.package/SystemTransactionNotification.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "alternatives" : "dkh 07/25/2007 14:02", - "transaction" : "dkh 07/25/2007 14:02" } } 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 24221eb7..00000000 --- a/repository/Grease-GemStone-Core.package/UnorderedCollection.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "copyFrom:" : "jgf 01/02/2009 13:07" } } 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 178f910b..00000000 --- a/repository/Grease-GemStone-Core.package/WriteStream.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "crlf" : "jgf 01/23/2009 12:50", - "greaseNext:putAll:startingAt:" : "DaleHenrichs 06/03/2010 11:13" } } 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 d1b3bd5d..00000000 --- a/repository/Grease-GemStone-Core.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-GemStone-Core-JohanBrichau.71' message 'Moved GsContext from Seaside-GemStone-Core to Grease-GemStone-Core and implemented GRGemStonePlatform>>thisContext' id '394c6f83-6ba9-4bc8-84f2-8b10a6820731' date '09/11/2018' time '01:33:41' author 'JohanBrichau' ancestors ((name 'Grease-GemStone-Core-JB.70' message 'merged by GitFileTree-MergeDriver' id 'f8c8a937-8bd3-4e63-a83e-7c1ef026966b' date '11/18/2017' time '03:49:16' author 'JB' ancestors ((name 'Grease-GemStone-Core-JohanBrichau.69' message 'merged by GitFileTree-MergeDriver' id 'd8c9fdbe-cc43-4efe-8195-e2ec933a83e1' date '10/04/2017' time '02:10:36' author 'JohanBrichau' ancestors ((name 'Grease-GemStone-Core-JB.68' message 'Simplified fix of previous commit' id 'efd9ad42-dc13-4d56-9b69-2a0272701a2f' date '10/04/2017' time '04:57:32' author 'JB' ancestors ((name 'Grease-GemStone-Core-JohanBrichau.67' message 'Proper fix for GRDynamicVariable in GS2.4' id 'e911a599-aa74-46b7-a225-bd7d23b61ece' date '10/04/2017' time '04:36:12' author 'JohanBrichau' ancestors ((name 'Grease-GemStone-Core-JohanBrichau.66' message 'Fix for GRDynamicVariable>>value in GemStone 2.4' id 'aa48ccb2-d0fa-4a14-ba45-1b0771127c6e' date '10/04/2017' time '04:19:23' author 'JohanBrichau' ancestors ((name 'Grease-GemStone-Core-JB.65' message 'merged by GitFileTree-MergeDriver' id '1509a55e-fbf8-4e54-814d-1db1589296a0' date '09/09/2017' time '01:17:27' author 'JB' ancestors ((name 'Grease-GemStone-Core-JohanBrichau.64' message 'merged by GitFileTree-MergeDriver' id '80d5a91d-004f-4ee2-9599-e6fdbe274996' date '09/09/2017' time '10:30:53' author 'JohanBrichau' ancestors ((name 'Grease-GemStone-Core-JB.63' message 'Fix GRDynamicVariable>>use:during: in GemStone to correctly implement expected semantics (see method comments for details)' id 'ee582053-d986-443e-888b-2d48fc4f5b43' date '09/08/2017' time '00:36:58' author 'JB' ancestors ((name 'Grease-GemStone-Core-JohanBrichau.62' message 'merged by GitFileTree-MergeDriver' id '624aac52-32d8-4d1f-81e7-8aa709eca918' date '07/23/2017' time '11:33:54' author 'JohanBrichau' ancestors ((name 'Grease-GemStone-Core-JohanBrichau.61' message 'For Gemstone3.2: Added GRDynamicVariable class>>defaultValue to represent the default value of a GRDynamicVariable. Previously, this was GRDynamicvariable>>default but this was not compatible for all platforms' id '6801de2c-0f2e-4a56-976f-d8eb647a4775' date '07/23/2017' time '09:49:08' author 'JohanBrichau' ancestors ((name 'Grease-GemStone-Core-JohanBrichau.60' message '#defaultValue should not be called from within #use:during:' id '241030b0-50f6-42b4-a75f-e9dc4a6f10d9' date '07/23/2017' time '08:09:11' author 'JohanBrichau' ancestors ((name 'Grease-GemStone-Core-JohanBrichau.59' message 'Added GRDynamicVariable on Gemstone' id 'e5088f7e-4246-4cdf-8dcd-87c4c8bc1f9b' date '05/25/2017' time '08:15:29' author 'JohanBrichau' ancestors ((name 'Grease-GemStone-Core-JohanBrichau.58' message 'Pharo 6+ compatibility: added CharacterCollection>>substrings:' id 'e7793cba-8bd0-47c0-aac0-e3694ce2d41a' date '05/25/2017' time '04:16:15' author 'JohanBrichau' ancestors ((name 'Grease-GemStone-Core-JohanBrichau.57' message 'Remove Process>>properties. (issue #10)' id '557705db-2b6f-4995-bb56-fe8ff0fb5dcb' date '03/26/2016' time '08:27:41' author 'JohanBrichau' ancestors ((name 'Grease-GemStone-Core-JohanBrichau.57' message 'Remove Process>>properties. (issue #10)' id '89b554d2-85f8-4dd0-800d-7324a9ddcf89' date '03/26/2016' time '08:26:51' author 'JohanBrichau' ancestors ((name 'Grease-GemStone-Core-dkh.56' message 'merged by GitFileTree-MergeDriver' id 'bbbe8dfc-013c-4896-98ff-992656827d71' date '12/21/2014' time '07:08:15' author 'dkh' ancestors ((name 'Grease-GemStone-Core-dkh.54' message 'implement a workaround for GemStone internal Bug 42963: ensure: block executed twice (don''t return from ensure: block)' id '62be0e37-656b-463d-99eb-f49550ae72ec' date '12/21/2014' time '19:00:49' author 'dkh' ancestors () stepChildren ())(name 'Grease-GemStone-Core-JohanBrichau.55' message 'Fix for slow handling of utf8 encoding in GS3.x (see https://github.com/GsDevKit/Grease/issues/2)' id '10706c0c-3c53-4624-aa15-ab5ef6907815' date '10/19/2014' time '08:42:03' author 'JohanBrichau' ancestors ((name 'Grease-GemStone-Core-JohanBrichau.54' message 'implement file library methods for GS' id '0c9983b7-e3b9-4aec-9ae4-29cd3d8eb916' date '10/11/2014' time '02:29:22' author 'JohanBrichau' ancestors ((name 'Grease-GemStone-Core-dkh.53' message 'ExecutableBlock is a class that is really only applicable to 2.4.x - The class was present in GemStone 3.0 and 3.1, but was basically obsolete. In GemStone 3.2 was finally removed from the system. - move the Executable block classes in the Grease-GemStone240-Core package' id 'd4760108-7ed6-4a8f-b0c9-2c39b47d78be' date '06/04/2014' time '16:49:14' author 'dkh' ancestors ((name 'Grease-GemStone-Core-JohanBrichau.52' message 'deprecationExceptionSet should be an instance of ExceptionSet' id 'df3d491a-7a37-461c-9ed4-b2ba62d7f6dd' date '04/19/2014' time '10:57:49' author 'JohanBrichau' ancestors ((name 'Grease-GemStone-Core-JohanBrichau.51' message 'Bugfix unexpected semantics of #doTransaction: with multithreading (used in WAGemStoneServiceTask)' id '193342cc-06e1-4c59-8718-6dd5c60851ed' date '03/21/2014' time '17:46:48' author 'JohanBrichau' ancestors ((name 'Grease-GemStone-Core-JohanBrichau.50' message 'implemented #directoriesIn:' id '3b037472-71c9-4558-a7e4-2c1747d2dc96' date '02/15/2014' time '07:04:30' author 'JohanBrichau' ancestors ((name 'Grease-GemStone-Core-dkh.49' message '- support for Seaside3.1 on GemStone ' id 'e1e59d23-6c21-4c1e-9477-e9f41b0130af' date '09/15/2013' time '22:09:32' author 'dkh' ancestors ((name 'Grease-GemStone-Core-dkh.48' message '1.0.7.1 (dkh.186): - Adjust Utf8 code .. libICU produces a ByteArray when it encodes to UTF8, but Seaside wants Strings' id '3549901f-5e9c-4680-b1f8-10e172e87c68' date '05/24/2012' time '11:09:55' author 'dkh' ancestors ((name 'Grease-GemStone-Core-dkh.47' message '1.0.6.4 (dkh.174): - open 1.0.6.4 for development - support for GemStone/S 2.4.5 release' id '5351338d-a7ba-4cf7-b8d5-f72c80b56e6f' date '11/11/2011' time '15:09:11' author 'dkh' ancestors ((name 'Grease-GemStone-Core-dkh.46' message '1.0.6.3 (dkh.172): - opened for development ... continued GemStone 3.0.1 work continued from 1.0.6.1 - clean up tests when run against Minimal GLASS group' id '5356581c-4eca-4ef1-8216-b95c4c5e6a1b' date '10/19/2011' time '21:59:28' author 'dkh' ancestors ((name 'Grease-GemStone-Core-dkh.45' message '1.0.6.1 (dkh.159): - port to GemStone 3.0.1 (#generatehardBreak changed for 3.0)' id '5899cf59-7fac-48ee-b969-abd7d4084310' date '10/14/2011' time '17:04:41' author 'dkh' ancestors ((name 'Grease-GemStone-Core-dkh.44' message '1.0.6 (dkh.154) [GEMSTONE]: - merge Grease-GemStone-Core-NickAger.43' id '6d97080d-4288-4db2-b224-b585b62ec149' date '09/02/2011' time '17:03:49' author 'dkh' ancestors ((name 'Grease-GemStone-Core-dkh.40' message '- fix issue 290 "transactionMutex is always nil" http://code.google.com:9393/p/glassdb/issues/detail?id=290' id 'f7d20e67-7348-40e1-95ad-99b4ba3c66d9' date '08/31/2011' time '12:41:22' author 'dkh' ancestors () stepChildren ())(name 'Grease-GemStone-Core-NickAger.43' message 'removed: GRGemstonePlatform>>deleteFile:ifAbsent:ifFail: decided that it shouldn''t be in platform after discussion on dev list' id 'ced45d04-7c8c-466d-b6ef-3f5abd94d4f8' date '08/16/2011' time '08:18:46' author 'NickAger' ancestors ((name 'Grease-GemStone-Core-NickAger.42' message 'added: GRGemstonePlatform>>#pathSeparator' id '495200ee-5b20-4d13-b4e9-6ebfd61167e3' date '08/15/2011' time '17:13:50' author 'NickAger' ancestors ((name 'Grease-GemStone-Core-NickAger.41' message 'modified the GRPharoPlatform>>#deleteFile: API (checked-in previously) to (new API): GRPharoPlatform>>#deleteFile: filepath ifAbsent: absentBlock ifFail: failureBlock' id 'f0a83b80-27f2-4161-a266-1921c4e8367f' date '08/15/2011' time '14:49:40' author 'NickAger' ancestors ((name 'Grease-GemStone-Core-NickAger.40' message 'added: GRGemstonePlatform>>#deleteFile: filepath delete the file defined by the filepath ...to implement the version I added to GRPlatform and GRPharoPlatform' id '9caf9d5c-8939-486e-b1b6-577fcf8f9bc5' date '08/15/2011' time '11:42:41' author 'NickAger' ancestors ((name 'Grease-GemStone-Core-dkh.39' message '1.0.5.1 (dkh.150): - open 1.0.5.1 for development ... GemStone-specific branch aimed at bypassing use of class instance variables (etc.) to allow the GemStone 3.0 version of Seaside to run against a read only SymbolDictionary. Some class instance variables are mapped to session temps and some are mapped to user-specific storage in UserGlobals. - refactor GRGemStonePlatform>>logError:title: and friends a bit to make it somewhat more useful - GRGemStoneRandomProvider class instance variables mutex and generator mapped to session temps' id '5e85a8e8-6dd9-499b-845e-52892331cd93' date '07/29/2011' time '17:03:39' author 'dkh' ancestors ((name 'Grease-GemStone-Core-DaleHenrichs.38' message '1.0.5 (dkh.145): - changes for the new Random classes available in 3.0' id '4323a6ce-2799-496c-a625-43aaabbe70a0' date '04/29/2011' time '14:37:24' author 'DaleHenrichs' ancestors ((name 'Grease-GemStone-Core-dkh.37' message '1.0.5 (DaleHenrichs.141): - support for Iliad - what happened to Grease-Core-as.59?' id 'c79b8ac3-3eba-4a71-aa83-d14851974b96' date '04/25/2011' time '20:35:09' author 'dkh' ancestors ((name 'Grease-GemStone-Core-DaleHenrichs.36' message '- fix Issue 227: Squeak/Pharo String extensions methods don''t work on multibyte strings http://code.google.com/p/glassdb/issues/detail?id=227' id '5b4ca062-9198-4777-a914-d114af3aa2bc' date '02/17/2011' time '17:31:39' author 'DaleHenrichs' ancestors ((name 'Grease-GemStone-Core-DaleHenrichs.35' message '- fix Issue 239: http://code.google.com/p/glassdb/issues/detail?id=239 "using WAFastCGIAdaptor leads the false conversion of + in urls."' id 'cfb79a92-f40f-4b0d-9112-3c2e92b49a33' date '02/16/2011' time '16:08:09' author 'DaleHenrichs' ancestors ((name 'Grease-GemStone-Core-DaleHenrichs.34' message '- implement pathSeparator based on Grease-Core-pmm.55' id '57fd33e1-d2ec-4c2b-8527-e6d01ff7e32e' date '02/11/2011' time '16:08:47' author 'DaleHenrichs' ancestors ((name 'Grease-GemStone-Core-DaleHenrichs.33' message '- open 1.0.3.1 for development - get Seaside3.0 running on GemStone3.0beta3 - fix Issue 212: http://code.google.com/p/glassdb/issues/detail?id=212 FileDirectory class>>onClient switched sense" [GemStone] - ANSI block behavior means that GemStone3.0 passes GRNumberTest>>testToDoClosures - wait for GemStone bugs 41222 and 41223 to be fixed to pass remaining tests' id '37ea8149-5129-40ef-be9d-138e373f6319' date '01/20/2011' time '11:01:36' author 'DaleHenrichs' ancestors ((name 'Grease-GemStone-Core-DaleHenrichs.32' message '- fix Issue 166: http://code.google.com/p/glassdb/issues/detail?id=166 "discrepancy between Pharo regex and Gemstone on multiline strings' id '9613b535-326a-4b03-b799-0bdb8edb6331' date '12/08/2010' time '17:37:41' author 'DaleHenrichs' ancestors ((name 'Grease-GemStone-Core-DaleHenrichs.31' message '- User ServerDirectory in Grease (for performance) [GemStone]. - fix open file descriptor leak [GemStone]' id '423d3c47-9f0d-4c97-89fd-6108fd23e065' date '12/03/2010' time '16:50:13' author 'DaleHenrichs' ancestors ((name 'Grease-GemStone-Core-NorbertHartl.30' message 'implemented GRGemStonePlatform>>contentsOfFile:binary:' id 'c1e93c4d-5fac-4267-a9ee-5b9ef7a649e1' date '12/01/2010' time '19:23:53' author 'NorbertHartl' ancestors ((name 'Grease-GemStone-Core-NorbertHartl.29' message '- finished implementation for GRGemStonePlatform>>write:toFile:inFolder: - added GRGemStonePlatform>>decoderFor:' id 'c8d85831-7ac8-4674-943f-738bad454f66' date '11/30/2010' time '13:46:55' author 'NorbertHartl' ancestors ((name 'Grease-GemStone-Core-NickAger.28' message 'corrected a typeo in the method name #initalize GRTextOrBinaryCodecStream>>#initializeOn: which stopped the initialization method being called and hence the inst var wasn''t being properly initialized.' id 'aa6d3ea6-8cec-4685-a4a2-07af083cdb33' date '11/13/2010' time '16:08:37' author 'NickAger' ancestors ((name 'Grease-GemStone-Core-DaleHenrichs.27' message '- fix comment' id 'e43397e4-00b9-4540-a94b-bb8a0402ac45' date '11/08/2010' time '15:11:34' author 'DaleHenrichs' ancestors ((name 'Grease-GemStone-Core-DaleHenrichs.26' message '- fix Issue 165: http://code.google.com/p/glassdb/issues/detail?id=165 "Include GemStone version of Seaside-FileSystem in Seaside3.0" ' id '2ae56a70-aa43-4c0b-85f7-7954ad1662e4' date '09/02/2010' time '16:22:32' author 'DaleHenrichs' ancestors ((name 'Grease-GemStone-Core-DaleHenrichs.25' message '- remove unsed variable' id '836fd85f-0ca2-4bea-a98d-6110c6d0752b' date '08/27/2010' time '10:53:52' author 'DaleHenrichs' ancestors ((name 'Grease-GemStone-Core-DaleHenrichs.24' message '- account for base overrides' id '12699c3a-6eca-4268-bed3-dbca8c625230' date '08/23/2010' time '14:17:37' author 'DaleHenrichs' ancestors ((name 'Grease-GemStone-Core-DaleHenrichs.23' message '- moved some methods that were needed by base (Squeak-DaleHenrichs.238)' id '0231c4cd-4ea3-4d04-b901-7c9684199542' date '08/23/2010' time '13:12:34' author 'DaleHenrichs' ancestors ((name 'Grease-GemStone-Core-DaleHenrichs.22' message '- add AnsiWriteStream .. for now ... they might end up in Core eventually' id '3f88a33e-ec6d-4962-8880-cf2e1cc4d0ed' date '08/11/2010' time '23:06:50' author 'DaleHenrichs' ancestors ((name 'Grease-GemStone-Core-DaleHenrichs.21' message '- fix platform newline' id '48b34c0e-0142-4e2e-8e3b-c7a0ef4807a5' date '07/27/1910' time '12:49:04' author 'DaleHenrichs' ancestors ((name 'Grease-GemStone-Core-DaleHenrichs.20' message '- Character>>digitValue* belong in Squeak package' id 'a4e0da87-0ba2-47d7-953d-114f070316c1' date '07/22/1910' time '16:48:58' author 'DaleHenrichs' ancestors ((name 'Grease-GemStone-Core-DaleHenrichs.19' message '- resolve some unresolved symbol issues' id '53149d6f-fdd1-4cf1-8e47-491477b31226' date '07/22/1910' time '15:08:08' author 'DaleHenrichs' ancestors ((name 'Grease-GemStone-Core-DaleHenrichs.18' message '- ExceptionA>>greaseString is gemstone version specific' id '3c8f5327-d61b-409e-b1b2-f6ddcd5b2a28' date '07/22/1910' time '14:16:18' author 'DaleHenrichs' ancestors ((name 'Grease-GemStone-Core-DaleHenrichs.17' message '- port to GemStone 3.0 ... use {} array constructor' id 'a2bbda2d-7212-4bc9-a99d-b301627eb58c' date '07/22/1910' time '14:05:18' author 'DaleHenrichs' ancestors ((name 'Grease-GemStone-Core-DaleHenrichs.16' message '- ExceptionA needs #greaseString defined' id '773842f9-687c-470a-8e60-ffbe606b66a6' date '06/04/1910' time '17:40:57' author 'DaleHenrichs' ancestors ((name 'Grease-GemStone-Core-DaleHenrichs.15' message '- use Squeak-based algorithm for Float greasePrintstring and javascript printing ' id '2ddbe2bf-d0f6-416f-a669-3253dc3b4d67' date '06/04/1910' time '15:33:12' author 'DaleHenrichs' ancestors ((name 'Grease-GemStone-Core-DaleHenrichs.14' message '- port to GemStone GLASS 1.0-beta.8 - 380 run, 375 passes, 4 expected failures, 1 failures, 0 errors, 0 unexpected passes' id '3344f073-deac-48b5-8fb8-75a66cb7dc53' date '06/03/1910' time '15:22:04' author 'DaleHenrichs' ancestors ((name 'Grease-GemStone-Core-DaleHenrichs.13' message '- move some methods from Seaside-GemStone-Core to Grease-GemStone-Core' id 'c61e1a56-0ebb-4433-a727-2381a19419bf' date '06/02/1910' time '15:33:20' author 'DaleHenrichs' ancestors ((name 'Grease-GemStone-Core-dkh.12' message '- concurrent server gem support for FastCGI and Swazoo2 - server logging and error handlers ' id '8eb67a2b-e49f-436c-861d-dd5296830754' date '12/23/2009' time '16:44:01' author 'dkh' ancestors ((name 'Grease-GemStone-Core-dkh.11' message '- fill out #logError:title:' id '3c797899-4dd9-4df1-9bf5-a73d02a33a52' date '12/14/2009' time '15:55:31' author 'dkh' ancestors ((name 'Grease-GemStone-Core-dkh.10' message '- renamed GRPharoRandomProvider to GRGemStoneRandomProvider [GemStone]' id '76f077b2-af28-40e1-95ce-defac19a528b' date '12/09/2009' time '17:24:42' author 'dkh' ancestors ((name 'Grease-GemStone-Core-dkh.9' message '- fix Issue 499: http://code.google.com/p/seaside/issues/detail?id=499' id '474190d1-4011-4ccf-8624-b037b52f30d8' date '11/23/2009' time '15:08:07' author 'dkh' ancestors ((name 'Grease-GemStone-Core-dkh.8' message '- gemstone-specific fixes for Issue 480: http://code.google.com/p/seaside/issues/detail?id=480' id '33e92e8a-7c74-4f47-9475-60ddf413c1fb' date '11/18/2009' time '10:12:22' author 'dkh' ancestors ((name 'Grease-GemStone-Core-dkh.7' message '- support ''UTF-8'' has a codec name as well' id 'db6af2d1-c993-421c-99d5-0549b1900c5d' date '11/17/2009' time '14:52:15' author 'dkh' ancestors ((name 'Grease-GemStone-Core-dkh.6' message '- update dependencies based on loading experiences using ConfigurationOfSeaside30 ' id 'dc9ebd3f-118f-4a60-88fd-b9db98091f08' date '11/13/2009' time '15:17:02' author 'dkh' ancestors ((name 'Grease-GemStone-Core-dkh.5' message '- getting down to just a couple of failed tests' id '490ad71b-7737-4c35-8ba8-6a6084e2d7f6' date '11/09/2009' time '16:57:08' author 'dkh' ancestors ((name 'Grease-GemStone-Core-dkh.4' message '- cleanup the grease' id 'bf163585-ff13-40ab-81cb-ae683ec72cf6' date '11/09/2009' time '12:02:45' author 'dkh' ancestors ((name 'Grease-GemStone-Core-dkh.3' message '- skidding on grease' id 'b08023b8-5969-4507-9e3d-da38795b3690' date '11/06/2009' time '10:23:40' author 'dkh' ancestors ((name 'Grease-GemStone-Core-dkh.2' message '- correct some missed GR* superclasses' id '77b3a954-3674-4d7b-a4eb-3052adfe5ea0' date '11/06/2009' time '09:42:46' author 'dkh' ancestors ((name 'Grease-GemStone-Core-dkh.1' message '- initial port from Seaside-GemStone-Platform' id 'd265fbbd-6b9a-45f7-b62c-46b1c05b6e95' date '11/06/2009' time '08:46:55' author 'dkh' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file diff --git a/repository/Grease-GemStone200-Core.package/GRGemStonePlatform.extension/methodProperties.json b/repository/Grease-GemStone200-Core.package/GRGemStonePlatform.extension/methodProperties.json deleted file mode 100644 index 2cf6df1d..00000000 --- a/repository/Grease-GemStone200-Core.package/GRGemStonePlatform.extension/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "gemstoneExceptionSelector" : "dkh 10/14/2011 17:13", - "generateHardBreak" : "dkh 10/14/2011 16:58", - "handlesAlmostOutOfStackException:" : "dkh 10/14/2011 17:21", - "handlesBreakpointException:" : "dkh 10/14/2011 17:21", - "handlesHaltException:" : "dkh 10/14/2011 17:21" } } diff --git a/repository/Grease-GemStone200-Core.package/GRUtf8CodecStream.class/methodProperties.json b/repository/Grease-GemStone200-Core.package/GRUtf8CodecStream.class/methodProperties.json deleted file mode 100644 index 287c2518..00000000 --- a/repository/Grease-GemStone200-Core.package/GRUtf8CodecStream.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "crlf" : "dkh 11/06/2009 08:45", - "invalidUtf8" : "dkh 11/06/2009 08:45", - "next:" : "DaleHenrichs 08/27/2010 10:45", - "nextPut:" : "dkh 11/06/2009 08:45", - "nextPutAll:" : "dkh 05/24/2012 09:50" } } diff --git a/repository/Grease-GemStone200-Core.package/monticello.meta/version b/repository/Grease-GemStone200-Core.package/monticello.meta/version deleted file mode 100644 index 52d2e10d..00000000 --- a/repository/Grease-GemStone200-Core.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-GemStone200-Core-JohanBrichau.3' message 'Fix for slow UTF8 encoding in GemStone3.x (see https://github.com/GsDevKit/Grease/issues/2 )' id 'fa78339a-9385-4a26-9b78-67f961b3e0ab' date '10/19/2014' time '15:57:54' author 'JohanBrichau' ancestors ((name 'Grease-GemStone200-Core-dkh.2' message '3.0.6.1 (dkh.338): - GemStone 3.0.1 fix for Issue 130: remote breakpoints don''''t work http://code.google.com/p/glassdb/issues/detail?id=130' id 'aecee0e8-add0-4657-b4c8-4eea538e526f' date '10/14/2011' time '17:50:58' author 'dkh' ancestors ((name 'Grease-GemStone200-Core-dkh.1' message '1.0.6.1 (dkh.159): - port to GemStone 3.0.1 (#generatehardBreak changed for 3.0)' id '864f5d8b-0f4b-44f0-ad7a-1dd0f961a6db' date '10/14/2011' time '17:03:59' author 'dkh' ancestors () stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file diff --git a/repository/Grease-GemStone230-Core.package/TransientRandom.extension/methodProperties.json b/repository/Grease-GemStone230-Core.package/TransientRandom.extension/methodProperties.json deleted file mode 100644 index b613cfbc..00000000 --- a/repository/Grease-GemStone230-Core.package/TransientRandom.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "open" : "dkh 09/13/2011 17:06" } } diff --git a/repository/Grease-GemStone230-Core.package/monticello.meta/version b/repository/Grease-GemStone230-Core.package/monticello.meta/version deleted file mode 100644 index c0f2decd..00000000 --- a/repository/Grease-GemStone230-Core.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-GemStone230-Core-dkh.4' message '- fix a startup issue' id 'a89861b1-fcb3-4f0f-99b8-877ee5754ecd' date '09/13/2011' time '17:07:02' author 'dkh' ancestors ((name 'Grease-GemStone230-Core-dkh.3' message '- moved PositionableStream methods from Grease-GemStone230-Core to GemStone-23x-ANSI-Streams as these methods are needed earlier during the upgrade process' id '2ccab958-3423-4659-b6fd-8942a09b47b5' date '09/13/2011' time '14:00:50' author 'dkh' ancestors ((name 'Grease-GemStone230-Core-dkh.2' message '- woops, better to not try to take shortcuts:)' id '739d20d7-454c-4854-bb3e-266625a1961d' date '11/15/2009' time '12:39:28' author 'dkh' ancestors ((name 'Grease-GemStone230-Core-dkh.1' message '- support for ANSI streams in 2.3' id 'a9e85a41-5e61-4fda-9296-cea96bd6e987' date '11/15/2009' time '12:18:04' author 'dkh' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file diff --git a/repository/Grease-GemStone240-Core.package/ExceptionA.extension/methodProperties.json b/repository/Grease-GemStone240-Core.package/ExceptionA.extension/methodProperties.json deleted file mode 100644 index cf1e891c..00000000 --- a/repository/Grease-GemStone240-Core.package/ExceptionA.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - "raiseSignal:" : "dkh 03/03/2008 15:23" }, - "instance" : { - "greaseString" : "DaleHenrichs 06/04/2010 17:20", - "raiseSignal" : "DaleHenrichs 07/23/2010 11:19", - "raiseSignal:" : "DaleHenrichs 07/23/2010 11:19" } } diff --git a/repository/Grease-GemStone240-Core.package/ExecutableBlock.extension/methodProperties.json b/repository/Grease-GemStone240-Core.package/ExecutableBlock.extension/methodProperties.json deleted file mode 100644 index 10cfeed3..00000000 --- a/repository/Grease-GemStone240-Core.package/ExecutableBlock.extension/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "argumentCount" : "jgf 01/14/2009 14:59", - "fixCallbackTemps" : "DaleHenrichs 06/02/2010 15:22", - "ifCurtailed:" : "jgf 02/02/2009 15:31", - "tempVarRefs" : "jgf 12/15/2008 14:24", - "valueWithPossibleArguments:" : "dkh 09/14/2009 14:42" } } diff --git a/repository/Grease-GemStone240-Core.package/TransientRandom.extension/methodProperties.json b/repository/Grease-GemStone240-Core.package/TransientRandom.extension/methodProperties.json deleted file mode 100644 index 6ca117d3..00000000 --- a/repository/Grease-GemStone240-Core.package/TransientRandom.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "open" : "dkh 04/28/2011 15:55" } } diff --git a/repository/Grease-GemStone240-Core.package/monticello.meta/version b/repository/Grease-GemStone240-Core.package/monticello.meta/version deleted file mode 100644 index 8ee783ba..00000000 --- a/repository/Grease-GemStone240-Core.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-GemStone240-Core-dkh.4' message 'ExecutableBlock is a class that is really only applicable to 2.4.x - The class was present in GemStone 3.0 and 3.1, but was basically obsolete. In GemStone 3.2 was finally removed from the system. - move the Executable block classes in the Grease-GemStone240-Core package' id '394694c2-55a4-4ab0-ac68-ab99dae1092e' date '06/04/2014' time '16:49:16' author 'dkh' ancestors ((name 'Grease-GemStone240-Core-dkh.3' message '- support for new Random class in 3.0' id '4f3c8585-1380-4ed8-b743-5361bd58262e' date '04/28/2011' time '18:17:58' author 'dkh' ancestors ((name 'Grease-GemStone240-Core-DaleHenrichs.2' message '- get exceptions in right spot' id '148e3082-96e9-4684-8659-24196059d603' date '07/23/1910' time '11:24:33' author 'DaleHenrichs' ancestors ((name 'Grease-GemStone240-Core-DaleHenrichs.1' message '- ExceptionA>>greaseString is gemstone version specific' id 'aeda8534-3dfe-4ba7-85f0-cc030c9d970d' date '07/22/1910' time '14:16:28' author 'DaleHenrichs' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file diff --git a/repository/Grease-GemStone300-Core.package/Exception.extension/methodProperties.json b/repository/Grease-GemStone300-Core.package/Exception.extension/methodProperties.json deleted file mode 100644 index a42f9dba..00000000 --- a/repository/Grease-GemStone300-Core.package/Exception.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : "DaleHenrichs 07/22/2010 14:14" } } diff --git a/repository/Grease-GemStone300-Core.package/ExecBlock.extension/methodProperties.json b/repository/Grease-GemStone300-Core.package/ExecBlock.extension/methodProperties.json deleted file mode 100644 index 04f15100..00000000 --- a/repository/Grease-GemStone300-Core.package/ExecBlock.extension/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "argumentCount" : "DaleHenrichs 07/22/2010 16:23", - "fixCallbackTemps" : "DaleHenrichs 07/22/2010 16:24", - "ifCurtailed:" : "DaleHenrichs 07/22/2010 16:25", - "valueWithPossibleArguments:" : "DaleHenrichs 07/22/2010 16:23" } } diff --git a/repository/Grease-GemStone300-Core.package/GRGemStonePlatform.extension/methodProperties.json b/repository/Grease-GemStone300-Core.package/GRGemStonePlatform.extension/methodProperties.json deleted file mode 100644 index 6c9ad74e..00000000 --- a/repository/Grease-GemStone300-Core.package/GRGemStonePlatform.extension/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "gemstoneExceptionSelector" : "dkh 10/14/2011 17:11", - "generateHardBreak" : "dkh 10/14/2011 16:57", - "handlesAlmostOutOfStackException:" : "dkh 10/14/2011 17:18", - "handlesBreakpointException:" : "dkh 10/14/2011 17:18", - "handlesHaltException:" : "dkh 10/14/2011 17:18" } } diff --git a/repository/Grease-GemStone300-Core.package/GRUtf8CodecStream.class/methodProperties.json b/repository/Grease-GemStone300-Core.package/GRUtf8CodecStream.class/methodProperties.json deleted file mode 100644 index b77ebb5f..00000000 --- a/repository/Grease-GemStone300-Core.package/GRUtf8CodecStream.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - "initialize" : "dkh 06/15/2015 10:48" }, - "instance" : { - "crlf" : "dkh 11/06/2009 08:45", - "invalidUtf8" : "dkh 11/06/2009 08:45", - "next:" : "DaleHenrichs 08/27/2010 10:45", - "nextPut:" : "dkh 06/15/2015 10:44", - "nextPutAll:" : "dkh 06/15/2015 10:45" } } diff --git a/repository/Grease-GemStone300-Core.package/monticello.meta/version b/repository/Grease-GemStone300-Core.package/monticello.meta/version deleted file mode 100644 index 6dca71ba..00000000 --- a/repository/Grease-GemStone300-Core.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-GemStone300-Core-dkh.6' message 'Missed some spots in Grease relating to the fix for https://github.com/GsDevKit/GsDevKit/issues/27' id 'af0b39f3-714b-4b01-9c72-7536a3c128e8' date '15 June 2015' time '10:56:56 am' author 'dkh' ancestors ((name 'Grease-GemStone300-Core-JohanBrichau.5' message 'Fix for slow handling of utf8 encoding in GS3.x (see https://github.com/GsDevKit/Grease/issues/2 )' id 'a1323a4e-ce99-4e85-bf25-ffeaaa9463f5' date '19 October 2014' time '8:40:18 am' author 'JohanBrichau' ancestors ((name 'Grease-GemStone300-Core-dkh.4' message '1.0.6.1 (dkh.159): - GemStone 3.0.1 fix for Issue 130: remote breakpoints don''''t work http://code.google.com/p/glassdb/issues/detail?id=130' id '5c8d2bf0-4319-4099-b4b1-83abcc7195b0' date '14 October 2011' time '5:52:12 pm' author 'dkh' ancestors ((name 'Grease-GemStone300-Core-dkh.3' message '1.0.6.1 (dkh.159): - port to GemStone 3.0.1 (#generatehardBreak changed for 3.0)' id '2c389d30-c4d2-4def-b488-82d82b241d1d' date '14 October 2011' time '5:04:58 pm' author 'dkh' ancestors ((name 'Grease-GemStone300-Core-DaleHenrichs.2' message '- pick up some missing methods' id 'a36f8f57-31fc-4a76-84d8-d68331d70935' date '22 July 1910' time '4:42:48 pm' author 'DaleHenrichs' ancestors ((name 'Grease-GemStone300-Core-DaleHenrichs.1' message '- Exception>>greaseString is gemstone version specific' id '0a2c8aaf-061e-45b6-8070-54e4b203adf3' date '22 July 1910' time '2:18:53 pm' author 'DaleHenrichs' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file diff --git a/repository/Grease-GemStone330-Core.package/Exception.extension/methodProperties.json b/repository/Grease-GemStone330-Core.package/Exception.extension/methodProperties.json deleted file mode 100644 index a42f9dba..00000000 --- a/repository/Grease-GemStone330-Core.package/Exception.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : "DaleHenrichs 07/22/2010 14:14" } } diff --git a/repository/Grease-GemStone330-Core.package/ExecBlock.extension/methodProperties.json b/repository/Grease-GemStone330-Core.package/ExecBlock.extension/methodProperties.json deleted file mode 100644 index 04f15100..00000000 --- a/repository/Grease-GemStone330-Core.package/ExecBlock.extension/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "argumentCount" : "DaleHenrichs 07/22/2010 16:23", - "fixCallbackTemps" : "DaleHenrichs 07/22/2010 16:24", - "ifCurtailed:" : "DaleHenrichs 07/22/2010 16:25", - "valueWithPossibleArguments:" : "DaleHenrichs 07/22/2010 16:23" } } diff --git a/repository/Grease-GemStone330-Core.package/GRGemStonePlatform.extension/methodProperties.json b/repository/Grease-GemStone330-Core.package/GRGemStonePlatform.extension/methodProperties.json deleted file mode 100644 index 6c9ad74e..00000000 --- a/repository/Grease-GemStone330-Core.package/GRGemStonePlatform.extension/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "gemstoneExceptionSelector" : "dkh 10/14/2011 17:11", - "generateHardBreak" : "dkh 10/14/2011 16:57", - "handlesAlmostOutOfStackException:" : "dkh 10/14/2011 17:18", - "handlesBreakpointException:" : "dkh 10/14/2011 17:18", - "handlesHaltException:" : "dkh 10/14/2011 17:18" } } diff --git a/repository/Grease-GemStone330-Core.package/GRUtf8CodecStream.class/methodProperties.json b/repository/Grease-GemStone330-Core.package/GRUtf8CodecStream.class/methodProperties.json deleted file mode 100644 index 583a64fd..00000000 --- a/repository/Grease-GemStone330-Core.package/GRUtf8CodecStream.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - "initialize" : "dkh 06/15/2015 10:48" }, - "instance" : { - "crlf" : "dkh 11/06/2009 08:45", - "invalidUtf8" : "dkh 11/06/2009 08:45", - "next:" : "DaleHenrichs 08/27/2010 10:45", - "nextPut:" : "dkh 06/15/2015 10:44", - "nextPutAll:" : "JohanBrichau 10/07/2017 06:02" } } diff --git a/repository/Grease-GemStone330-Core.package/monticello.meta/version b/repository/Grease-GemStone330-Core.package/monticello.meta/version deleted file mode 100644 index 8e40562c..00000000 --- a/repository/Grease-GemStone330-Core.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-GemStone330-Core-JohanBrichau.1' message 'Fix issue #20: encoding to utf8 breaks in GemStone 3.3+' id 'c907b21a-08ce-4480-86eb-fc2eae297c66' date '10/07/2017' time '06:48:31' author 'JohanBrichau' ancestors () stepChildren ()) \ No newline at end of file diff --git a/repository/Grease-Pharo-Core.package/Behavior.extension/methodProperties.json b/repository/Grease-Pharo-Core.package/Behavior.extension/methodProperties.json deleted file mode 100644 index fe28fb35..00000000 --- a/repository/Grease-Pharo-Core.package/Behavior.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "fullName" : "lr 7/25/2011 19:45" } } diff --git a/repository/Grease-Pharo-Core.package/BlockClosure.extension/methodProperties.json b/repository/Grease-Pharo-Core.package/BlockClosure.extension/methodProperties.json deleted file mode 100644 index 641628e4..00000000 --- a/repository/Grease-Pharo-Core.package/BlockClosure.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "fixCallbackTemps" : "lr 4/8/2009 13:33", - "valueWithPossibleArguments:" : "lr 4/8/2009 13:36" } } diff --git a/repository/Grease-Pharo-Core.package/BlockContext.extension/methodProperties.json b/repository/Grease-Pharo-Core.package/BlockContext.extension/methodProperties.json deleted file mode 100644 index 73532ed7..00000000 --- a/repository/Grease-Pharo-Core.package/BlockContext.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "fixCallbackTemps" : "lr 10/28/2007 14:42", - "tempVarRefs" : "lr 8/25/2007 16:26", - "valueWithPossibleArguments:" : "lr 7/25/2011 19:50" } } diff --git a/repository/Grease-Pharo-Core.package/ByteArray.extension/methodProperties.json b/repository/Grease-Pharo-Core.package/ByteArray.extension/methodProperties.json deleted file mode 100644 index add0c68e..00000000 --- a/repository/Grease-Pharo-Core.package/ByteArray.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : "jf 9/30/2009 01:10" } } diff --git a/repository/Grease-Pharo-Core.package/Character.extension/methodProperties.json b/repository/Grease-Pharo-Core.package/Character.extension/methodProperties.json deleted file mode 100644 index accbae78..00000000 --- a/repository/Grease-Pharo-Core.package/Character.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseInteger" : "jf 9/30/2009 01:04" } } diff --git a/repository/Grease-Pharo-Core.package/Collection.extension/methodProperties.json b/repository/Grease-Pharo-Core.package/Collection.extension/methodProperties.json deleted file mode 100644 index 3196464b..00000000 --- a/repository/Grease-Pharo-Core.package/Collection.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "any" : "jf 2/6/2010 00:41" } } diff --git a/repository/Grease-Pharo-Core.package/Duration.extension/methodProperties.json b/repository/Grease-Pharo-Core.package/Duration.extension/methodProperties.json deleted file mode 100644 index 018f4c60..00000000 --- a/repository/Grease-Pharo-Core.package/Duration.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - "milliseconds:" : "jf 2/6/2010 00:12" }, - "instance" : { - "asMilliseconds" : "jf 2/5/2010 23:58", - "milliseconds" : "jf 2/6/2010 00:02" } } diff --git a/repository/Grease-Pharo-Core.package/GRDelegatingStream.extension/methodProperties.json b/repository/Grease-Pharo-Core.package/GRDelegatingStream.extension/methodProperties.json deleted file mode 100644 index 4dd2cf88..00000000 --- a/repository/Grease-Pharo-Core.package/GRDelegatingStream.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseNext:putAll:startingAt:" : "pmm 12/28/2010 22:13" } } diff --git a/repository/Grease-Pharo-Core.package/GRPackage.extension/methodProperties.json b/repository/Grease-Pharo-Core.package/GRPackage.extension/methodProperties.json deleted file mode 100644 index 0c562a57..00000000 --- a/repository/Grease-Pharo-Core.package/GRPackage.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "greasePharoCore" : "pmm 9/12/2013 16:08" }, - "instance" : { - } } diff --git a/repository/Grease-Pharo-Core.package/GRPharoConverterCodecStream.class/methodProperties.json b/repository/Grease-Pharo-Core.package/GRPharoConverterCodecStream.class/methodProperties.json deleted file mode 100644 index 5fe65894..00000000 --- a/repository/Grease-Pharo-Core.package/GRPharoConverterCodecStream.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "class" : { - "on:converter:" : "pmm 10/30/2010 18:58" }, - "instance" : { - "greaseNext:putAll:startingAt:" : "pmm 12/28/2010 22:12", - "initializeOn:converter:" : "pmm 10/30/2010 18:58", - "next" : "pmm 4/10/2010 13:32", - "next:" : "lr 2/7/2009 12:57", - "nextPut:" : "pmm 4/10/2010 13:30", - "nextPutAll:" : "lr 2/7/2009 12:54" } } diff --git a/repository/Grease-Pharo-Core.package/GRPharoGenericCodec.class/methodProperties.json b/repository/Grease-Pharo-Core.package/GRPharoGenericCodec.class/methodProperties.json deleted file mode 100644 index 5a10058b..00000000 --- a/repository/Grease-Pharo-Core.package/GRPharoGenericCodec.class/methodProperties.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "class" : { - "basicForEncoding:" : "pmm 6/28/2009 15:43", - "codecs" : "pmm 8/19/2014 10:04", - "supportedEncodingNames" : "lr 7/25/2011 19:46", - "supportsEncoding:" : "pmm 6/28/2009 16:43" }, - "instance" : { - "converter" : "lr 7/25/2011 19:51", - "decoderFor:" : "lr 2/7/2009 12:52", - "encoderFor:" : "jf 9/30/2009 00:46", - "initializeWithName:" : "pmm 8/16/2010 11:52", - "name" : "lr 2/7/2009 10:16", - "url" : "lr 2/7/2009 12:36" } } diff --git a/repository/Grease-Pharo-Core.package/GRPharoLatin1Codec.class/methodProperties.json b/repository/Grease-Pharo-Core.package/GRPharoLatin1Codec.class/methodProperties.json deleted file mode 100644 index 92c046e8..00000000 --- a/repository/Grease-Pharo-Core.package/GRPharoLatin1Codec.class/methodProperties.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "class" : { - "basicForEncoding:" : "pmm 8/16/2010 00:36", - "codecs" : "lr 7/25/2011 19:46", - "supportedEncodingNames" : "lr 7/25/2011 19:46", - "supportsEncoding:" : "pmm 8/16/2010 00:36" }, - "instance" : { - "decode:" : "pmm 8/19/2014 10:00", - "decoderFor:" : "pmm 8/16/2010 00:32", - "encoderFor:" : "pmm 8/16/2010 00:32", - "initializeWithName:" : "pmm 9/1/2012 15:32", - "name" : "pmm 8/16/2010 00:32" } } diff --git a/repository/Grease-Pharo-Core.package/GRPharoLatin1CodecStream.class/methodProperties.json b/repository/Grease-Pharo-Core.package/GRPharoLatin1CodecStream.class/methodProperties.json deleted file mode 100644 index c3e59bc2..00000000 --- a/repository/Grease-Pharo-Core.package/GRPharoLatin1CodecStream.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "next" : "pmm 9/14/2013 09:50", - "next:" : "lr 7/25/2011 19:50" } } diff --git a/repository/Grease-Pharo-Core.package/GRPharoPlatform.class/methodProperties.json b/repository/Grease-Pharo-Core.package/GRPharoPlatform.class/methodProperties.json deleted file mode 100644 index c4a6cad2..00000000 --- a/repository/Grease-Pharo-Core.package/GRPharoPlatform.class/methodProperties.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "class" : { - "initialize" : "pmm 5/20/2010 11:49", - "initializeUrlTable" : "pmm 5/20/2010 20:56", - "initializeXmlTable" : "pmm 5/20/2010 20:56", - "unload" : "jf 1/22/2009 02:45" }, - "instance" : { - "addToShutDownList:" : "jf 1/21/2009 17:31", - "addToStartUpList:" : "jf 1/21/2009 17:31", - "asMethodReturningByteArray:named:" : "lr 7/25/2011 19:51", - "asMethodReturningByteArrayLiteral:named:" : "lr 7/25/2011 19:51", - "asMethodReturningByteArrayWithCache:named:" : "pmm 2/20/2009 17:44", - "base64Decode:" : "jf 1/21/2009 17:31", - "bindingOf:" : "pmm 8/23/2014 11:42", - "compile:into:classified:" : "pmm 8/13/2010 11:52", - "contentsOfFile:binary:" : "lr 7/25/2011 19:51", - "deprecationExceptionSet" : "pmm 2/16/2014 23:12", - "directoriesIn:" : "NickAger 3/9/2012 11:33", - "doSilently:" : "JohanBrichau 9/10/2013 11:39", - "ensureExistenceOfFolder:" : "jf 1/21/2009 17:31", - "fileExists:" : "pmm 7/16/2015 16:36", - "fileStreamOn:do:binary:" : "pmm 7/16/2015 16:39", - "filesIn:" : "lr 7/25/2011 19:51", - "isProcessTerminated:" : "jf 2/6/2009 15:58", - "label" : "jf 2/9/2010 00:56", - "localNameOf:" : "lr 7/25/2011 19:51", - "newRandom" : "pmm 10/7/2010 13:10", - "newline" : "pmm 9/14/2013 09:56", - "openDebuggerOn:" : "pmm 1/22/2012 16:31", - "pathSeparator" : "pmm 2/5/2011 09:52", - "readWriteByteStream" : "lr 11/20/2011 17:16", - "readWriteCharacterStream" : "dkh 9/4/2009 09:14", - "removeFromShutDownList:" : "jf 1/21/2009 17:31", - "removeFromStartUpList:" : "jf 1/21/2009 17:31", - "removeSelector:from:" : "jf 1/21/2009 17:31", - "secureHashFor:" : "jf 1/21/2009 17:31", - "semaphoreClass" : "lr 7/25/2011 19:51", - "stackDepth" : "jf 1/21/2009 17:31", - "terminateProcess:" : "jf 2/6/2009 15:59", - "useByteArrayLiterals" : "pmm 2/11/2011 07:27", - "weakDictionaryOfSize:" : "lr 7/25/2011 19:51", - "write:toFile:inFolder:" : "pmm 8/19/2014 10:11", - "writeCharacterStreamOn:" : "pmm 8/26/2011 09:45" } } diff --git a/repository/Grease-Pharo-Core.package/GRPharoRandomProvider.class/methodProperties.json b/repository/Grease-Pharo-Core.package/GRPharoRandomProvider.class/methodProperties.json deleted file mode 100644 index cedc66aa..00000000 --- a/repository/Grease-Pharo-Core.package/GRPharoRandomProvider.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "class" : { - "initialize" : "jgf 1/25/2009 12:05", - "nextInt:" : "lr 7/25/2011 19:46", - "randomClass" : "lr 7/25/2011 19:46", - "randomFrom:" : "lr 7/25/2011 18:28", - "startUp" : "pmm 1/10/2009 16:01", - "unload" : "jf 9/30/2009 00:19" }, - "instance" : { - } } diff --git a/repository/Grease-Pharo-Core.package/GRPharoUtf8Codec.class/methodProperties.json b/repository/Grease-Pharo-Core.package/GRPharoUtf8Codec.class/methodProperties.json deleted file mode 100644 index cf1f05f1..00000000 --- a/repository/Grease-Pharo-Core.package/GRPharoUtf8Codec.class/methodProperties.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "class" : { - "basicForEncoding:" : "lr 7/25/2011 19:46", - "codecs" : "lr 7/25/2011 19:46", - "supportsEncoding:" : "lr 7/25/2011 19:46" }, - "instance" : { - "decode:" : "pmm 2/17/2012 19:45", - "decoderFor:" : "jf 9/30/2009 00:46", - "encoderFor:" : "jf 9/30/2009 00:46", - "invalidUtf8" : "pmm 9/14/2013 09:37", - "name" : "pmm 2/20/2009 13:25", - "url" : "pmm 2/20/2009 12:50" } } diff --git a/repository/Grease-Pharo-Core.package/GRPharoUtf8CodecStream.class/methodProperties.json b/repository/Grease-Pharo-Core.package/GRPharoUtf8CodecStream.class/methodProperties.json deleted file mode 100644 index d5942a3a..00000000 --- a/repository/Grease-Pharo-Core.package/GRPharoUtf8CodecStream.class/methodProperties.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "class" : { - "initialize" : "lr 7/25/2011 19:46" }, - "instance" : { - "crlf" : "pmm 4/10/2010 13:28", - "encodeDefault:" : "lr 7/25/2011 18:36", - "encodeFast:" : "pmm 9/1/2012 15:25", - "greaseNext:putAll:startingAt:" : "pmm 5/21/2014 21:33", - "greaseNext:putAllFast:startingAt:" : "pmm 5/21/2014 21:19", - "invalidUtf8" : "jf 9/30/2009 00:39", - "next" : "pmm 2/17/2010 20:09", - "next:" : "pmm 9/1/2012 15:25", - "nextPut:" : "lr 7/25/2011 19:51", - "nextPutAll:" : "pmm 4/10/2010 13:28" } } diff --git a/repository/Grease-Pharo-Core.package/GRSmallDictionary.extension/methodProperties.json b/repository/Grease-Pharo-Core.package/GRSmallDictionary.extension/methodProperties.json deleted file mode 100644 index 9dbcc9c5..00000000 --- a/repository/Grease-Pharo-Core.package/GRSmallDictionary.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "customizeExplorerContents" : "lr 7/25/2011 19:51", - "explorerContents" : "lr 7/25/2011 19:51", - "hasContentsInExplorer" : "lr 7/25/2011 19:51" } } diff --git a/repository/Grease-Pharo-Core.package/GRWorkingWriteStream.class/methodProperties.json b/repository/Grease-Pharo-Core.package/GRWorkingWriteStream.class/methodProperties.json deleted file mode 100644 index e8d4055e..00000000 --- a/repository/Grease-Pharo-Core.package/GRWorkingWriteStream.class/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "reset" : "pmm 8/26/2011 09:39" } } diff --git a/repository/Grease-Pharo-Core.package/Interval.extension/methodProperties.json b/repository/Grease-Pharo-Core.package/Interval.extension/methodProperties.json deleted file mode 100644 index 1dedf542..00000000 --- a/repository/Grease-Pharo-Core.package/Interval.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "any" : "jf 2/6/2010 03:25" } } diff --git a/repository/Grease-Pharo-Core.package/MessageSend.extension/methodProperties.json b/repository/Grease-Pharo-Core.package/MessageSend.extension/methodProperties.json deleted file mode 100644 index e83e4177..00000000 --- a/repository/Grease-Pharo-Core.package/MessageSend.extension/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "argumentCount" : "pmm 1/10/2009 19:22", - "fixCallbackTemps" : "pmm 4/23/2007 20:02", - "value:" : "pmm 1/10/2009 18:40", - "value:value:" : "pmm 1/10/2009 23:54", - "valueWithPossibleArguments:" : "lr 7/25/2011 19:52" } } diff --git a/repository/Grease-Pharo-Core.package/Number.extension/methodProperties.json b/repository/Grease-Pharo-Core.package/Number.extension/methodProperties.json deleted file mode 100644 index 977cd782..00000000 --- a/repository/Grease-Pharo-Core.package/Number.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "milliseconds" : "jf 2/6/2010 00:12" } } diff --git a/repository/Grease-Pharo-Core.package/Object.extension/methodProperties.json b/repository/Grease-Pharo-Core.package/Object.extension/methodProperties.json deleted file mode 100644 index add0c68e..00000000 --- a/repository/Grease-Pharo-Core.package/Object.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : "jf 9/30/2009 01:10" } } diff --git a/repository/Grease-Pharo-Core.package/Point.extension/methodProperties.json b/repository/Grease-Pharo-Core.package/Point.extension/methodProperties.json deleted file mode 100644 index 353fca89..00000000 --- a/repository/Grease-Pharo-Core.package/Point.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : "pmm 3/4/2012 20:24" } } diff --git a/repository/Grease-Pharo-Core.package/PositionableStream.extension/methodProperties.json b/repository/Grease-Pharo-Core.package/PositionableStream.extension/methodProperties.json deleted file mode 100644 index cfb79423..00000000 --- a/repository/Grease-Pharo-Core.package/PositionableStream.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseUpToAll:" : "jf 9/30/2009 01:06" } } diff --git a/repository/Grease-Pharo-Core.package/ScaledDecimal.extension/methodProperties.json b/repository/Grease-Pharo-Core.package/ScaledDecimal.extension/methodProperties.json deleted file mode 100644 index f28c2e73..00000000 --- a/repository/Grease-Pharo-Core.package/ScaledDecimal.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : "JohanBrichau 7/15/2015 13:26" } } diff --git a/repository/Grease-Pharo-Core.package/SequenceableCollection.extension/methodProperties.json b/repository/Grease-Pharo-Core.package/SequenceableCollection.extension/methodProperties.json deleted file mode 100644 index c683223d..00000000 --- a/repository/Grease-Pharo-Core.package/SequenceableCollection.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "beginsWithSubCollection:" : "jok 3/22/2010 11:48", - "endsWithSubCollection:" : "jok 3/22/2010 11:47", - "sorted" : "jf 2/6/2010 02:01" } } diff --git a/repository/Grease-Pharo-Core.package/SocketStream.extension/methodProperties.json b/repository/Grease-Pharo-Core.package/SocketStream.extension/methodProperties.json deleted file mode 100644 index 8f430aea..00000000 --- a/repository/Grease-Pharo-Core.package/SocketStream.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseNext:putAll:startingAt:" : "pmm 5/23/2010 08:17" } } diff --git a/repository/Grease-Pharo-Core.package/String.extension/methodProperties.json b/repository/Grease-Pharo-Core.package/String.extension/methodProperties.json deleted file mode 100644 index 2661c833..00000000 --- a/repository/Grease-Pharo-Core.package/String.extension/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "trimBoth" : "lr 10/25/2009 11:13", - "trimBoth:" : "lr 10/25/2009 11:11", - "trimLeft" : "lr 10/25/2009 11:14", - "trimLeft:" : "lr 10/25/2009 11:11", - "trimLeft:right:" : "lr 10/25/2009 11:15", - "trimRight" : "lr 10/25/2009 11:14", - "trimRight:" : "lr 10/25/2009 11:11" } } diff --git a/repository/Grease-Pharo-Core.package/WriteStream.extension/methodProperties.json b/repository/Grease-Pharo-Core.package/WriteStream.extension/methodProperties.json deleted file mode 100644 index e8241b94..00000000 --- a/repository/Grease-Pharo-Core.package/WriteStream.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseNext:putAll:startingAt:" : "jf 5/22/2010 20:26" } } diff --git a/repository/Grease-Pharo-Core.package/monticello.meta/version b/repository/Grease-Pharo-Core.package/monticello.meta/version deleted file mode 100644 index 29152eed..00000000 --- a/repository/Grease-Pharo-Core.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-Pharo-Core-pmm.75' message '- implement missing methods' id '715a1334-30b6-4621-b714-36d26615cd4c' date '16 July 2015' time '4:41:22 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-JohanBrichau.74' message 'Missing sign on ScaledDecimal>>greaseString (https://github.com/SeasideSt/Grease/issues/1) Thanks Hilaire!' id '2d4e3c5b-a220-4771-be39-b335912e16f9' date '15 July 2015' time '1:26:55.26 pm' author 'JohanBrichau' ancestors ((name 'Grease-Pharo-Core-pmm.73' message '#820 Configurations should not hold on to classes' id 'e22794f6-2f43-4c58-986c-8616f6788707' date '12 July 2015' time '10:23:49 am' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.72' message '- lint fixes' id '64020abe-01f6-4b35-8918-185dc34e1b90' date '19 August 2014' time '10:35:19 am' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.71' message 'Issue 792: Issue encoding a non-ascii character preceded by an xml-unsafe one - https://code.google.com/p/seaside/issues/detail?id=792' id 'c823f84d-3cb3-4142-a402-c513325f37d3' date '21 May 2014' time '9:34:11 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.70' message '- formatting - move GRCountingStream from Pharo-only package to Core' id 'a547a055-973b-4af4-840a-691be105670b' date '21 May 2014' time '8:57:26 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.69' message 'Issue 781: Also catch platform deprecation signals - http://code.google.com/p/seaside/issues/detail?id=781' id '62d63448-9ddd-4681-8a58-e1ab1a1613b8' date '16 February 2014' time '11:18:12 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.68' message '- fix comment' id '5b81b23d-edc1-4ad4-aa38-00ccd3732027' date '1 February 2014' time '3:14:38 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.67' message 'Issue 770: ScaledDecimal rendering support http://code.google.com/p/seaside/issues/detail?id=770' id 'a278cbb9-ca35-41a7-b8c9-48bcbaa88df3' date '15 September 2013' time '12:07:44 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.66' message '- spelling' id 'eedba520-4519-4a2f-98a2-dae65d94651f' date '14 September 2013' time '3:55:58 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.65' message '- Slime' id 'cec7735d-8994-44fe-a508-47eced261684' date '14 September 2013' time '10:02:13 am' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.64' message '- Slime' id '327ab314-0531-4261-9f19-4590f39c4bea' date '14 September 2013' time '9:51:44 am' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.63' message '- implement missing method' id '1cfbe808-23be-4ad3-8d2e-40a5905c85fb' date '14 September 2013' time '9:38:35 am' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.62' message '- update URLs' id '5af25cab-95bc-4809-83b4-13eadb393333' date '12 September 2013' time '4:09:29 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.61' message '- update URLs' id '7c04fd10-875e-4b5b-b86c-342359ccb29e' date '12 September 2013' time '4:06:59 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-JohanBrichau.60' message 'deal with #doSilently: difference from Pharo2.0 onwards' id '074cb71f-16bc-4471-ad7e-0ba3665a1672' date '10 September 2013' time '11:40:27.421 am' author 'JohanBrichau' ancestors ((name 'Grease-Pharo-Core-JohanBrichau.59' message 'added the trim* methods for pharo versions prior to 2.0' id 'a9d37f3e-7a6d-4926-87f2-771e06dc7128' date '10 September 2013' time '9:34:11.097 am' author 'JohanBrichau' ancestors ((name 'Grease-Pharo-Core-pmm.58' message '- remove Object >> #displayString again, deprecated in 3.0 -> removed in 3.1' id '5e914a2d-bd92-4062-bc89-8aa72b18331a' date '16 March 2013' time '2:12 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-jf.57' message 'Cherry pick 4 methods that should have come in to Grease-Pharo-Core-pmm.51(4e5260c5-46b4-499f-bcd9-cc5e5a4e60ca) when Grease-Pharo-Core-NickAger.49 (d9f63c7b-0139-45df-a253-63649469f427) was merged in from the 3.0 to the 3.1 branch.' id 'd3d875fc-58a3-4881-8ef4-d2f0c3d4dc7c' date '13 January 2013' time '3:18:32 pm' author 'jf' ancestors ((name 'Grease-Pharo-Core-pmm.56' message '- Slime fixes, mostly recategorizations' id 'edaed043-e023-49a5-bf3d-e0a70bdd4526' date '3 September 2012' time '4:33:55 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.55' message '- formatting Nazis from outer space' id 'fb375e80-7261-4ea9-b9fe-57103fd6c1e0' date '1 September 2012' time '5:01:58 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.54' message '- Issue 736: implement #basicNextPutAll: on pseudo streams' id '0d54029e-c67b-4cb9-926e-80967a272d3d' date '14 August 2012' time '7:46:15 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.53' message '- Issue 733: multibyte characters broken when flushing a WAComboResponse - http://code.google.com/p/seaside/issues/detail?id=733' id 'cf4c1332-9d26-4f1c-8da4-359fc02ac66a' date '25 June 2012' time '9:05:56 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.52' message '- fix off by one error' id 'dbbe8c77-5681-47b0-bac0-9750ca2db809' date '21 April 2012' time '9:01:07 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.51' message '- merge 3.0 trunk' id '4e5260c5-46b4-499f-bcd9-cc5e5a4e60ca' date '29 March 2012' time '7:24:59 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.50' message '- merge Pharo 1.4 fixes from 3.0 branch' id 'a8f92057-af3a-4e85-ab95-f7b445156b55' date '6 March 2012' time '8:00:36 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.49' message '- inline GRPharoUtf8Codec >> #decode:, reduce the amount of allocation that has to be done, seems to give about 5% in some benchmarks ' id 'b0285b47-df74-4fac-8952-bf705c048d61' date '17 February 2012' time '7:49:36 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.48' message '- more utf-8 performance tweaks' id '28563f32-1d5a-4aad-9f33-11d2468df9b7' date '17 February 2012' time '8:05:57 am' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.47' message '- formatting nazis from outer space' id '87cbdd2d-b4db-41ea-a1a1-851180720755' date '22 January 2012' time '9:22:46 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.46' message '- formatting nazis from outer space' id '091d7896-66a9-48d3-8a9b-10892f15085b' date '22 January 2012' time '4:47:43 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.45' message '- Issue 699: GRPharoPlatform>>#write:toFile:inFolder: uses CrLfFileStream in seaside 3.0.6.3' id '458930d3-97b2-42c2-86d9-163b972f7f44' date '22 January 2012' time '3:58:58 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.44' message '- Issue 676: response generators have to reset the response before generating a new one - add infrastructure to reset streams, work around Pharo stream bugs' id 'abd8769c-35eb-4673-ba88-a2e16c4fd2b6' date '26 August 2011' time '9:58:05 am' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.42' message '- Issue 626: Allow platforms to implement custom encoders for speed - remove #includesUnsafeUrlCharacter: and #includesUnsafeXmlCharacter: from GRPlatform, these were just speed hacks for Pharo, they are now encapsulated in a platform specific class - speed up GRPharoUtf8CodecStream >> #greaseNext:putAll:startingAt:, avoid unnecessary object allocation' id 'd92827ca-ba7c-4613-9fc2-095659ef13e6' date '15 August 2011' time '9:40:58 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.41' message '- remove deprecated methods and classes' id 'f363bf67-f9b2-4b88-908a-c01c6567f548' date '2 August 2011' time '9:01:03 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-lr.40' message '- fixed formatting of return message' id '0ec7a5f7-c31c-4f65-a727-4b9856dd885c' date '25 July 2011' time '8:17:40 pm' author 'lr' ancestors ((name 'Grease-Pharo-Core-lr.39' message '- fixed spacing in blocks' id 'f8257aec-8b3a-49e1-80f5-acd7b5fcf6c7' date '25 July 2011' time '7:23:08 pm' author 'lr' ancestors ((name 'Grease-Pharo-Core-lr.38' message '- fixed formatting of temporaries' id 'c92b971d-e802-497c-82bc-32836a23cd2b' date '25 July 2011' time '6:31:24 pm' author 'lr' ancestors ((name 'Grease-Pharo-Core-pmm.37' message '- experimental Pharo 1.2 support' id 'aef98cdf-4936-4bbc-890c-32c11cf16ea3' date '5 March 2011' time '1:40:54 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.36' message '- Grease shouldn''t have class extensions in Seaside' id 'd1e6c559-8e94-4fab-874b-5c9e0406e0eb' date '10 February 2011' time '7:39:47 am' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.35' message '- went for a simple X-Sendfile design that does not use auto deploy and does not require files to be deployed in image folder' id '5f39172f-b91f-4e71-81ba-bc26c5539015' date '5 February 2011' time '5:38:29 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.34' message '- implement #greaseNext:putAll:startingAt: in more places' id 'c46b8f9b-f323-469f-a7ec-d07d6ce36165' date '28 December 2010' time '10:18:31 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.33' message '- add WriteStream compatibility methods' id '7b0a6818-acf3-4218-ba38-345034a08898' date '27 December 2010' time '1:56:43 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.32' message '- Issue 612: subscript out of bounds when encoding a single 0 character to UTF-8 - http://code.google.com/p/seaside/issues/detail?id=612' id 'd5971e3b-28be-4ace-afdc-c6feaa162a6c' date '17 November 2010' time '10:43:29 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.31' message '- fix typos' id '35eccdfe-1eaf-4082-a02b-65dc6a744943' date '30 October 2010' time '7:01:04 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.30' message '- fix comment' id '6eae4eb5-5a64-49ad-ab60-cf6627c9c8ff' date '7 October 2010' time '3:45:50 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-lr.29' message '- remove overrides in Pharo 1.1 (WriteStream class>>crlf) - if you load this package make sure to revert Collections-Streams' id '3b0b1a91-6341-45fc-ba22-3ca77d075698' date '9 September 2010' time '12:13:35 pm' author 'lr' ancestors ((name 'Grease-Pharo-Core-lr.28' message '- remove two overrides in Pharo 1.1 (Collection>>#sorted and Collection>>#sorted:) - if you load this package make sure to revert Collection-Abstract' id '71ae2a52-bb9b-422e-9051-56b163b16acc' date '9 September 2010' time '12:11:29 pm' author 'lr' ancestors ((name 'Grease-Pharo-Core-lr.27' message '- removed unused variables' id '4638ee0a-a4ea-4a70-87c4-ce59ac767aab' date '22 August 2010' time '3:32:21 pm' author 'lr' ancestors ((name 'Grease-Pharo-Core-pmm.26' message '- Issue 570: iso-8859-1 doesn''t show up in the encoding list of the server adapter - http://code.google.com/p/seaside/issues/detail?id=570' id 'd9f7eda2-9872-4ee7-984f-bf022648aba8' date '16 August 2010' time '12:54:25 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.25' message '- Issue 474: Using Halos - CSS Style Editor to update CSS of a component breaks versions view with ''subscript is out of bounds: x''. - http://code.google.com/p/seaside/issues/detail?id=474' id '8497956d-987c-4dbe-935b-4ea156d26bf9' date '13 August 2010' time '12:04:07 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-DaleHenrichs.24' message '- fix Issue 574: http://code.google.com/p/seaside/issues/detail?id=574 "MessageSend>>numArgs is part of PharoCore 1.0" ' id '9e0be068-0ea5-48b2-bf8a-0311ab01f921' date '4 June 2010' time '12:20:27 pm' author 'DaleHenrichs' ancestors ((name 'Grease-Pharo-Core-pmm.23' message '- implement correct method' id '47fc011d-40c8-44a7-a59d-526b374a264a' date '23 May 2010' time '8:19:16 am' author 'pmm' ancestors ((name 'Grease-Pharo-Core-jf.22' message 'fix dependency from Grease-Pharo-Core on Seaside-Adaptors-Comanche' id '01c5a311-f795-480b-81f7-3a213fb101a9' date '22 May 2010' time '8:37:03 pm' author 'jf' ancestors ((name 'Grease-Pharo-Core-pmm.21' message '- bug fix for single character utf-8 encoding' id '17d59097-7a27-409e-a733-b7eeffded5be' date '21 May 2010' time '7:20:16 am' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.20' message '- bugfix - optimized Pharo implementations of testing methods' id '93655b5b-c48a-4089-b33e-db9199b0363e' date '20 May 2010' time '9:13:07 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.19' message '- speed up GRPharoUtf8CodecStream >> #nextPut:, avoid String creation' id '561bf000-b4b1-476e-a044-fdba3f8221f8' date '20 May 2010' time '11:13:09 am' author 'pmm' ancestors ((name 'Grease-Pharo-Core-jok.18' message 'merge ' id '990f1a78-1fa9-b94f-ab42-8e93dc1bab17' date '15 April 2010' time '4:00:57 pm' author 'jok' ancestors ((name 'Grease-Pharo-Core-pmm.17' message '- fix off by one error' id 'b6fd6a9f-9297-4de0-a9e9-9699d5d32f66' date '12 April 2010' time '7:37:16 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.16' message '- Issue 561: remove GRCodecStream >> #binary - http://code.google.com/p/seaside/issues/detail?id=561' id 'ba77b4e9-717a-422b-81c4-713f15b9387f' date '11 April 2010' time '6:20:47 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-lr.15' message '- fix test for SortedCollection>>#sorted: by removing some code, not really sure if this is a valid fix but it makes all tests pass' id '4cc58271-ef9c-4e96-91aa-d37e9e3d82f4' date '31 March 2010' time '8:41:10 am' author 'lr' ancestors ((name 'Grease-Pharo-Core-jok.14' message '- http://code.google.com/p/seaside/issues/detail?id=556 - add #beginsWithSubCollection: and #endsWithSubCollection:' id '180a4764-20ef-dd45-93e1-65694dc478d8' date '24 March 2010' time '12:29:49 pm' author 'jok' ancestors ((name 'Grease-Pharo-Core-pmm.13' message '- Issue 546: GCCodecEncoderStream>>next gives different types on different platforms - http://code.google.com/p/seaside/issues/detail?id=546' id 'b8302305-f692-463e-8d4a-51f29036738b' date '17 February 2010' time '8:10:56 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-lr.12' message '- added explicit repository url' id 'd626279a-d55f-43e5-86c4-8c3eaf5d981b' date '17 February 2010' time '3:54:34 pm' author 'lr' ancestors ((name 'Grease-Pharo-Core-jf.11' message 'http://code.google.com/p/seaside/issues/detail?id=503 Implement GRVersion as a (fairly) simple version number class.' id '129da4a5-95a2-4277-812d-d509f66b8927' date '9 February 2010' time '1:10:09 am' author 'jf' ancestors ((name 'Grease-Pharo-Core-jf.10' message 'Add Pharo implementations of #sorted and #sorted: and fix a bug in Interval>>any' id 'e0975dcd-42ff-4b3a-8da8-7fdc28ca9afc' date '6 February 2010' time '4:43:30 am' author 'jf' ancestors ((name 'Grease-Pharo-Core-jf.9' message 'Remove usage of non-Grease methods #nameOfDay:, #anyOne, and several Squeak-specific Duration selectors. Add Grease tests for Duration protocols discussed with platforms. Also test for #any.' id '4810f3f7-d17c-4bfb-9421-d84dcd20a9cd' date '6 February 2010' time '1:16:17 am' author 'jf' ancestors ((name 'Grease-Pharo-Core-jf.8' message 'Move Seaside-specific extension methods from Grease-Pharo-Core to Seaside-Pharo-Core' id '21396770-a48e-40c6-8305-2f380cae2b94' date '26 January 2010' time '1:33:37 am' author 'jf' ancestors ((name 'Grease-Pharo-Core-jf.7' message 'merge' id '04e9989f-94cd-4cd3-807c-573aeb6360c4' date '29 December 2009' time '5:07:49 pm' author 'jf' ancestors ((name 'Grease-Pharo-Core-jf.6' message '- move Task stuff into Component package - no longer need special Flow configuration settings - Make parameter to onAnswer: blocks optional - Add #call:onAnswer: which does a #show:onAnswer: and then sends a render notification; rewrite #call: to use #call:onAnswer: - Make as few of the functional tests as possible depend on Flow' id '7d74e93c-4f5d-4d06-9d6b-96df83be35ba' date '29 December 2009' time '4:09:03 pm' author 'jf' ancestors ((name 'Grease-Pharo-Core-dkh.4' message '- renamed GRPharoPlatform>>smtpServer to #seasideSmtpServer - moved #seasideSmtpServer to Seaside-Pharo-Core' id '7258ba26-985d-4a3b-82d9-7589ca1a5881' date '24 November 2009' time '9:43:55 am' author 'dkh' ancestors ((name 'Grease-Pharo-Core-dkh.3' message '- fix Issue 499: http://code.google.com/p/seaside/issues/detail?id=499' id '92ee7795-4535-43bc-af5f-04cfd2f39bd8' date '23 November 2009' time '4:06:07 pm' author 'dkh' ancestors ((name 'Grease-Pharo-Core-pmm.2' message '- support ''UTF-8'' has a codec name as well' id '0dae0ad0-c578-4797-ba1d-5cb19876a2f4' date '15 November 2009' time '11:06:59 am' author 'pmm' ancestors ((name 'Grease-Pharo-Core-jf.1' message 'Rename Seaside-Platform to Grease in order to help make clear that it is not Seaside-specific and can be used by other projects as a compatibility layer. This was spawned by discussions when I started porting Magritte to VAST using the Platform layer.' id '6c0a574e-e199-4e0c-8ccd-5671da4eedf2' date '30 September 2009' time '10:47:20 pm' author 'jf' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Grease-Pharo-Core-jf.5' message 'Stop using #newDay:monthNumber:year:, which is only in VW and can be worked around using #newDay:month:year: and #nameOfMonth: Stop using #daysInMonthNumber:forYear:, which is different than the method that VA already has. Some discussion on this needs to be had by all platforms but for now it can be worked around using #daysInMonth:year: and #nameOfMonth:' id '2bf8b64c-91ee-4432-8a9b-b8ab1eb475dc' date '18 December 2009' time '10:33:54 am' author 'jf' ancestors ((id '7258ba26-985d-4a3b-82d9-7589ca1a5881')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Grease-Pharo-Core-lr.17' message '- added a #newline accessor to GRPlatform that returns a string with the default newline character (sequence) - moved implementation of #convertToSmalltalkNewlines: to OBPlatform as it can now be implemented in terms of #newline and doesn''t need to be provided by other platforms anymore' id 'bf167910-58cc-4d29-b6a9-30fe0afae428' date '15 April 2010' time '7:30:55 pm' author 'lr' ancestors ((id 'ba77b4e9-717a-422b-81c4-713f15b9387f')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Grease-Pharo-Core-NickAger.49' message 'GRPharoPlatform>>#write:toFile:inFolder: changed CrLfFileStream to MultiByteFileStream (CrLfFileStream is deprecated)' id 'd9f63c7b-0139-45df-a253-63649469f427' date '19 March 2012' time '12:24:54 pm' author 'NickAger' ancestors ((name 'Grease-Pharo-Core-NickAger.48' message 'added a new method: GRPharoPlatform>>#directoriesIn: to support recursing sub-directories for file to load into a file library. Fix for: http://code.google.com/p/seaside/issues/detail?id=267' id '23a31158-9c41-49bc-a1cd-b5c3984ef2bd' date '9 March 2012' time '2:53:27 pm' author 'NickAger' ancestors ((name 'Grease-Pharo-Core-pmm.47' message ' _ ' id '706ff2de-6505-4d6e-b21d-a791e9fb3b37' date '4 March 2012' time '8:26:13 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-pmm.46' message '- fix Color >> #greaseString on Pharo 1.4' id 'd8189b05-ef89-4bf7-9a59-2141f02e1784' date '1 March 2012' time '9:25:35 pm' author 'pmm' ancestors ((name 'Grease-Pharo-Core-lr.45' message '- WAMimeDocuments can contain String or ByteArray data and break if written to a ReadWriteStream, so use RWBinaryOrTextStream that fixes the issue (hopefully?)' id 'a542095b-92ff-4f77-9383-156f2755da34' date '20 November 2011' time '5:20:30 pm' author 'lr' ancestors ((name 'Grease-Pharo-Core-lr.44' message '- fixed deprecated message' id 'd4adf471-fac4-4097-ac23-972da5d9a2b5' date '25 September 2011' time '11:16:38 am' author 'lr' ancestors ((name 'Grease-Pharo-Core-pmm.43' message '- fix an ugly "typo"' id 'a4358e0d-4477-47d6-8f48-ed3bab5d8632' date '15 August 2011' time '10:05 pm' author 'pmm' ancestors ((id '0ec7a5f7-c31c-4f65-a727-4b9856dd885c')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file diff --git a/repository/Grease-Pharo10-Core.package/Collection.extension/methodProperties.json b/repository/Grease-Pharo10-Core.package/Collection.extension/methodProperties.json deleted file mode 100644 index 5b9c8fc3..00000000 --- a/repository/Grease-Pharo10-Core.package/Collection.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "sorted" : "jf 2/6/2010 02:02", - "sorted:" : "jf 2/6/2010 02:02" } } diff --git a/repository/Grease-Pharo10-Core.package/GRPackage.extension/methodProperties.json b/repository/Grease-Pharo10-Core.package/GRPackage.extension/methodProperties.json deleted file mode 100644 index 5b56ad27..00000000 --- a/repository/Grease-Pharo10-Core.package/GRPackage.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "greasePharo10Core" : "pmm 10/9/2010 10:23" }, - "instance" : { - } } diff --git a/repository/Grease-Pharo10-Core.package/SequenceableCollection.extension/methodProperties.json b/repository/Grease-Pharo10-Core.package/SequenceableCollection.extension/methodProperties.json deleted file mode 100644 index 4fafe3aa..00000000 --- a/repository/Grease-Pharo10-Core.package/SequenceableCollection.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "sorted:" : "dkh 5/17/2011 14:12" } } diff --git a/repository/Grease-Pharo10-Core.package/SystemDictionary.extension/methodProperties.json b/repository/Grease-Pharo10-Core.package/SystemDictionary.extension/methodProperties.json deleted file mode 100644 index 705b3fde..00000000 --- a/repository/Grease-Pharo10-Core.package/SystemDictionary.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "globals" : "dkh 11/10/2010 13:46" } } diff --git a/repository/Grease-Pharo10-Core.package/WriteStream.extension/methodProperties.json b/repository/Grease-Pharo10-Core.package/WriteStream.extension/methodProperties.json deleted file mode 100644 index 7c5b3d3d..00000000 --- a/repository/Grease-Pharo10-Core.package/WriteStream.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "crlf" : "lr 1/22/2009 22:31" } } diff --git a/repository/Grease-Pharo10-Core.package/monticello.meta/version b/repository/Grease-Pharo10-Core.package/monticello.meta/version deleted file mode 100644 index eedacddd..00000000 --- a/repository/Grease-Pharo10-Core.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-Pharo10-Core-dkh.4' message '- SequenceableCollect>>sorted: still needed by Pharo 1.0' id '12f56488-ae6f-4872-94bf-0ed9d4916fcc' date '17 May 2011' time '2:15:58 pm' author 'dkh' ancestors ((name 'Grease-Pharo10-Core-dkh.3' message '- SystemDictionary>>globals is needed now' id 'f9c9b4e2-9594-45d4-bbfa-015607d869ee' date '10 November 2010' time '1:49:05 pm' author 'dkh' ancestors ((name 'Grease-Pharo10-Core-pmm.2' message '- bump extension on GRPackage' id '80d6ff43-2cce-4650-8eeb-d8eacd668e46' date '9 October 2010' time '10:25:33 am' author 'pmm' ancestors ((name 'Grease-Pharo10-Core-pmm.1' message '- bump' id '6f80b103-ebdd-495d-94a8-5f8c0307d519' date '9 October 2010' time '10:20:31 am' author 'pmm' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file diff --git a/repository/Grease-Pharo11-Core.package/GRPackage.extension/methodProperties.json b/repository/Grease-Pharo11-Core.package/GRPackage.extension/methodProperties.json deleted file mode 100644 index 605567bc..00000000 --- a/repository/Grease-Pharo11-Core.package/GRPackage.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "greasePharo11Core" : "pmm 3/5/2011 13:43" }, - "instance" : { - } } diff --git a/repository/Grease-Pharo11-Core.package/SequenceableCollection.extension/methodProperties.json b/repository/Grease-Pharo11-Core.package/SequenceableCollection.extension/methodProperties.json deleted file mode 100644 index 2e5b4a01..00000000 --- a/repository/Grease-Pharo11-Core.package/SequenceableCollection.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "sorted:" : "pmm 3/5/2011 13:42" } } diff --git a/repository/Grease-Pharo11-Core.package/monticello.meta/version b/repository/Grease-Pharo11-Core.package/monticello.meta/version deleted file mode 100644 index 0c6c24e3..00000000 --- a/repository/Grease-Pharo11-Core.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-Pharo11-Core-pmm.1' message '- bump' id '7161a975-029f-4130-be5b-553452d7699f' date '5 March 2011' time '1:44:23 pm' author 'pmm' ancestors () stepChildren ()) \ No newline at end of file diff --git a/repository/Grease-Pharo20-Core.package/Behavior.extension/methodProperties.json b/repository/Grease-Pharo20-Core.package/Behavior.extension/methodProperties.json deleted file mode 100644 index fe28fb35..00000000 --- a/repository/Grease-Pharo20-Core.package/Behavior.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "fullName" : "lr 7/25/2011 19:45" } } diff --git a/repository/Grease-Pharo20-Core.package/BlockClosure.extension/methodProperties.json b/repository/Grease-Pharo20-Core.package/BlockClosure.extension/methodProperties.json deleted file mode 100644 index 641628e4..00000000 --- a/repository/Grease-Pharo20-Core.package/BlockClosure.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "fixCallbackTemps" : "lr 4/8/2009 13:33", - "valueWithPossibleArguments:" : "lr 4/8/2009 13:36" } } diff --git a/repository/Grease-Pharo20-Core.package/ByteArray.extension/methodProperties.json b/repository/Grease-Pharo20-Core.package/ByteArray.extension/methodProperties.json deleted file mode 100644 index add0c68e..00000000 --- a/repository/Grease-Pharo20-Core.package/ByteArray.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : "jf 9/30/2009 01:10" } } diff --git a/repository/Grease-Pharo20-Core.package/Character.extension/methodProperties.json b/repository/Grease-Pharo20-Core.package/Character.extension/methodProperties.json deleted file mode 100644 index accbae78..00000000 --- a/repository/Grease-Pharo20-Core.package/Character.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseInteger" : "jf 9/30/2009 01:04" } } diff --git a/repository/Grease-Pharo20-Core.package/Collection.extension/methodProperties.json b/repository/Grease-Pharo20-Core.package/Collection.extension/methodProperties.json deleted file mode 100644 index 3196464b..00000000 --- a/repository/Grease-Pharo20-Core.package/Collection.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "any" : "jf 2/6/2010 00:41" } } diff --git a/repository/Grease-Pharo20-Core.package/Duration.extension/methodProperties.json b/repository/Grease-Pharo20-Core.package/Duration.extension/methodProperties.json deleted file mode 100644 index 018f4c60..00000000 --- a/repository/Grease-Pharo20-Core.package/Duration.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - "milliseconds:" : "jf 2/6/2010 00:12" }, - "instance" : { - "asMilliseconds" : "jf 2/5/2010 23:58", - "milliseconds" : "jf 2/6/2010 00:02" } } diff --git a/repository/Grease-Pharo20-Core.package/GRDelegatingStream.extension/methodProperties.json b/repository/Grease-Pharo20-Core.package/GRDelegatingStream.extension/methodProperties.json deleted file mode 100644 index 4dd2cf88..00000000 --- a/repository/Grease-Pharo20-Core.package/GRDelegatingStream.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseNext:putAll:startingAt:" : "pmm 12/28/2010 22:13" } } diff --git a/repository/Grease-Pharo20-Core.package/GRPackage.extension/methodProperties.json b/repository/Grease-Pharo20-Core.package/GRPackage.extension/methodProperties.json deleted file mode 100644 index 78263113..00000000 --- a/repository/Grease-Pharo20-Core.package/GRPackage.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "greasePharo20Core" : "pmm 9/12/2013 16:02" }, - "instance" : { - } } diff --git a/repository/Grease-Pharo20-Core.package/GRPharoConverterCodecStream.class/methodProperties.json b/repository/Grease-Pharo20-Core.package/GRPharoConverterCodecStream.class/methodProperties.json deleted file mode 100644 index 5fe65894..00000000 --- a/repository/Grease-Pharo20-Core.package/GRPharoConverterCodecStream.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "class" : { - "on:converter:" : "pmm 10/30/2010 18:58" }, - "instance" : { - "greaseNext:putAll:startingAt:" : "pmm 12/28/2010 22:12", - "initializeOn:converter:" : "pmm 10/30/2010 18:58", - "next" : "pmm 4/10/2010 13:32", - "next:" : "lr 2/7/2009 12:57", - "nextPut:" : "pmm 4/10/2010 13:30", - "nextPutAll:" : "lr 2/7/2009 12:54" } } diff --git a/repository/Grease-Pharo20-Core.package/GRPharoGenericCodec.class/methodProperties.json b/repository/Grease-Pharo20-Core.package/GRPharoGenericCodec.class/methodProperties.json deleted file mode 100644 index ab5cb50c..00000000 --- a/repository/Grease-Pharo20-Core.package/GRPharoGenericCodec.class/methodProperties.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "class" : { - "basicForEncoding:" : "pmm 6/28/2009 15:43", - "codecs" : "pmm 8/16/2010 00:19", - "supportedEncodingNames" : "lr 7/25/2011 19:46", - "supportsEncoding:" : "pmm 6/28/2009 16:43" }, - "instance" : { - "converter" : "lr 7/25/2011 19:51", - "decoderFor:" : "lr 2/7/2009 12:52", - "encoderFor:" : "jf 9/30/2009 00:46", - "initializeWithName:" : "pmm 8/16/2010 11:52", - "name" : "lr 2/7/2009 10:16", - "url" : "lr 2/7/2009 12:36" } } diff --git a/repository/Grease-Pharo20-Core.package/GRPharoLatin1Codec.class/methodProperties.json b/repository/Grease-Pharo20-Core.package/GRPharoLatin1Codec.class/methodProperties.json deleted file mode 100644 index ce5e1283..00000000 --- a/repository/Grease-Pharo20-Core.package/GRPharoLatin1Codec.class/methodProperties.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "class" : { - "basicForEncoding:" : "pmm 8/16/2010 00:36", - "codecs" : "lr 7/25/2011 19:46", - "supportedEncodingNames" : "lr 7/25/2011 19:46", - "supportsEncoding:" : "pmm 8/16/2010 00:36" }, - "instance" : { - "decode:" : "pmm 8/16/2010 09:20", - "decoderFor:" : "pmm 8/16/2010 00:32", - "encoderFor:" : "pmm 8/16/2010 00:32", - "initializeWithName:" : "pmm 8/16/2010 00:35", - "name" : "pmm 8/16/2010 00:32" } } diff --git a/repository/Grease-Pharo20-Core.package/GRPharoLatin1CodecStream.class/methodProperties.json b/repository/Grease-Pharo20-Core.package/GRPharoLatin1CodecStream.class/methodProperties.json deleted file mode 100644 index 0a44c0e1..00000000 --- a/repository/Grease-Pharo20-Core.package/GRPharoLatin1CodecStream.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "next" : "pmm 8/16/2010 09:16", - "next:" : "lr 7/25/2011 19:50" } } diff --git a/repository/Grease-Pharo20-Core.package/GRPharoPlatform.class/methodProperties.json b/repository/Grease-Pharo20-Core.package/GRPharoPlatform.class/methodProperties.json deleted file mode 100644 index ac034eb6..00000000 --- a/repository/Grease-Pharo20-Core.package/GRPharoPlatform.class/methodProperties.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "class" : { - "initialize" : "pmm 5/20/2010 11:49", - "initializeUrlTable" : "pmm 5/20/2010 20:56", - "initializeXmlTable" : "pmm 5/20/2010 20:56", - "unload" : "jf 1/22/2009 02:45" }, - "instance" : { - "addToShutDownList:" : "jf 1/21/2009 17:31", - "addToStartUpList:" : "jf 1/21/2009 17:31", - "asMethodReturningByteArray:named:" : "lr 7/25/2011 19:51", - "asMethodReturningByteArrayLiteral:named:" : "lr 7/25/2011 19:51", - "asMethodReturningByteArrayWithCache:named:" : "pmm 2/20/2009 17:44", - "base64Decode:" : "jf 1/21/2009 17:31", - "bindingOf:" : "JohanBrichau 7/12/2015 17:21", - "compile:into:classified:" : "pmm 9/12/2013 11:28", - "contentsOfFile:binary:" : "JohanBrichau 10/4/2014 10:05", - "directoriesIn:" : "pmm 8/19/2012 10:19", - "doSilently:" : "pmm 9/12/2013 17:55", - "ensureExistenceOfFolder:" : "pmm 8/13/2012 21:29", - "fileExists:" : "JohanBrichau 10/4/2014 10:05", - "fileStreamOn:do:binary:" : "JohanBrichau 10/4/2014 10:05", - "filesIn:" : "pmm 8/19/2012 10:18", - "isProcessTerminated:" : "jf 2/6/2009 15:58", - "label" : "jf 2/9/2010 00:56", - "localNameOf:" : "pmm 8/19/2012 10:19", - "newRandom" : "pmm 10/7/2010 13:10", - "newline" : "lr 4/15/2010 19:14", - "openDebuggerOn:" : "pmm 1/22/2012 16:31", - "pathSeparator" : "pmm 8/4/2012 12:38", - "readWriteByteStream" : "dkh 9/4/2009 09:14", - "readWriteCharacterStream" : "dkh 9/4/2009 09:14", - "removeFromShutDownList:" : "jf 1/21/2009 17:31", - "removeFromStartUpList:" : "jf 1/21/2009 17:31", - "removeSelector:from:" : "jf 1/21/2009 17:31", - "secureHashFor:" : "jf 1/21/2009 17:31", - "semaphoreClass" : "lr 7/25/2011 19:51", - "stackDepth" : "jf 1/21/2009 17:31", - "terminateProcess:" : "jf 2/6/2009 15:59", - "useByteArrayLiterals" : "pmm 8/4/2012 12:39", - "weakDictionaryOfSize:" : "lr 7/25/2011 19:51", - "write:toFile:inFolder:" : "pmm 8/4/2012 13:02", - "writeCharacterStreamOn:" : "pmm 8/26/2011 09:45" } } diff --git a/repository/Grease-Pharo20-Core.package/GRPharoRandomProvider.class/methodProperties.json b/repository/Grease-Pharo20-Core.package/GRPharoRandomProvider.class/methodProperties.json deleted file mode 100644 index cedc66aa..00000000 --- a/repository/Grease-Pharo20-Core.package/GRPharoRandomProvider.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "class" : { - "initialize" : "jgf 1/25/2009 12:05", - "nextInt:" : "lr 7/25/2011 19:46", - "randomClass" : "lr 7/25/2011 19:46", - "randomFrom:" : "lr 7/25/2011 18:28", - "startUp" : "pmm 1/10/2009 16:01", - "unload" : "jf 9/30/2009 00:19" }, - "instance" : { - } } diff --git a/repository/Grease-Pharo20-Core.package/GRPharoUtf8Codec.class/methodProperties.json b/repository/Grease-Pharo20-Core.package/GRPharoUtf8Codec.class/methodProperties.json deleted file mode 100644 index 11f7bec2..00000000 --- a/repository/Grease-Pharo20-Core.package/GRPharoUtf8Codec.class/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "class" : { - "basicForEncoding:" : "lr 7/25/2011 19:46", - "codecs" : "lr 7/25/2011 19:46", - "supportsEncoding:" : "lr 7/25/2011 19:46" }, - "instance" : { - "decode:" : "pmm 2/17/2012 19:45", - "decoderFor:" : "jf 9/30/2009 00:46", - "encoderFor:" : "jf 9/30/2009 00:46", - "name" : "pmm 2/20/2009 13:25", - "url" : "pmm 2/20/2009 12:50" } } diff --git a/repository/Grease-Pharo20-Core.package/GRPharoUtf8CodecStream.class/methodProperties.json b/repository/Grease-Pharo20-Core.package/GRPharoUtf8CodecStream.class/methodProperties.json deleted file mode 100644 index 1db46f02..00000000 --- a/repository/Grease-Pharo20-Core.package/GRPharoUtf8CodecStream.class/methodProperties.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "class" : { - "initialize" : "lr 7/25/2011 19:46" }, - "instance" : { - "crlf" : "pmm 4/10/2010 13:28", - "encodeDefault:" : "lr 7/25/2011 18:36", - "encodeFast:" : "lr 7/25/2011 19:51", - "greaseNext:putAll:startingAt:" : "pmm 8/15/2011 21:32", - "greaseNext:putAllFast:startingAt:" : "pmm 5/24/2014 15:17", - "invalidUtf8" : "jf 9/30/2009 00:39", - "next" : "pmm 2/17/2010 20:09", - "next:" : "pmm 2/17/2012 08:00", - "nextPut:" : "lr 7/25/2011 19:51", - "nextPutAll:" : "pmm 4/10/2010 13:28" } } diff --git a/repository/Grease-Pharo20-Core.package/GRSmallDictionary.extension/methodProperties.json b/repository/Grease-Pharo20-Core.package/GRSmallDictionary.extension/methodProperties.json deleted file mode 100644 index 9dbcc9c5..00000000 --- a/repository/Grease-Pharo20-Core.package/GRSmallDictionary.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "customizeExplorerContents" : "lr 7/25/2011 19:51", - "explorerContents" : "lr 7/25/2011 19:51", - "hasContentsInExplorer" : "lr 7/25/2011 19:51" } } diff --git a/repository/Grease-Pharo20-Core.package/GRWorkingWriteStream.class/methodProperties.json b/repository/Grease-Pharo20-Core.package/GRWorkingWriteStream.class/methodProperties.json deleted file mode 100644 index e8d4055e..00000000 --- a/repository/Grease-Pharo20-Core.package/GRWorkingWriteStream.class/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "reset" : "pmm 8/26/2011 09:39" } } diff --git a/repository/Grease-Pharo20-Core.package/Interval.extension/methodProperties.json b/repository/Grease-Pharo20-Core.package/Interval.extension/methodProperties.json deleted file mode 100644 index 1dedf542..00000000 --- a/repository/Grease-Pharo20-Core.package/Interval.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "any" : "jf 2/6/2010 03:25" } } diff --git a/repository/Grease-Pharo20-Core.package/MessageSend.extension/methodProperties.json b/repository/Grease-Pharo20-Core.package/MessageSend.extension/methodProperties.json deleted file mode 100644 index 78bb2233..00000000 --- a/repository/Grease-Pharo20-Core.package/MessageSend.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "argumentCount" : "pmm 1/10/2009 19:22", - "fixCallbackTemps" : "pmm 4/23/2007 20:02", - "valueWithPossibleArguments:" : "lr 7/25/2011 19:52" } } diff --git a/repository/Grease-Pharo20-Core.package/Number.extension/methodProperties.json b/repository/Grease-Pharo20-Core.package/Number.extension/methodProperties.json deleted file mode 100644 index 977cd782..00000000 --- a/repository/Grease-Pharo20-Core.package/Number.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "milliseconds" : "jf 2/6/2010 00:12" } } diff --git a/repository/Grease-Pharo20-Core.package/Object.extension/methodProperties.json b/repository/Grease-Pharo20-Core.package/Object.extension/methodProperties.json deleted file mode 100644 index add0c68e..00000000 --- a/repository/Grease-Pharo20-Core.package/Object.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : "jf 9/30/2009 01:10" } } diff --git a/repository/Grease-Pharo20-Core.package/Point.extension/methodProperties.json b/repository/Grease-Pharo20-Core.package/Point.extension/methodProperties.json deleted file mode 100644 index 353fca89..00000000 --- a/repository/Grease-Pharo20-Core.package/Point.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : "pmm 3/4/2012 20:24" } } diff --git a/repository/Grease-Pharo20-Core.package/PositionableStream.extension/methodProperties.json b/repository/Grease-Pharo20-Core.package/PositionableStream.extension/methodProperties.json deleted file mode 100644 index cfb79423..00000000 --- a/repository/Grease-Pharo20-Core.package/PositionableStream.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseUpToAll:" : "jf 9/30/2009 01:06" } } diff --git a/repository/Grease-Pharo20-Core.package/ScaledDecimal.extension/methodProperties.json b/repository/Grease-Pharo20-Core.package/ScaledDecimal.extension/methodProperties.json deleted file mode 100644 index 9e195ed0..00000000 --- a/repository/Grease-Pharo20-Core.package/ScaledDecimal.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : "JohanBrichau 5/25/2015 09:40" } } diff --git a/repository/Grease-Pharo20-Core.package/SequenceableCollection.extension/methodProperties.json b/repository/Grease-Pharo20-Core.package/SequenceableCollection.extension/methodProperties.json deleted file mode 100644 index c683223d..00000000 --- a/repository/Grease-Pharo20-Core.package/SequenceableCollection.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "beginsWithSubCollection:" : "jok 3/22/2010 11:48", - "endsWithSubCollection:" : "jok 3/22/2010 11:47", - "sorted" : "jf 2/6/2010 02:01" } } diff --git a/repository/Grease-Pharo20-Core.package/SocketStream.extension/methodProperties.json b/repository/Grease-Pharo20-Core.package/SocketStream.extension/methodProperties.json deleted file mode 100644 index 8f430aea..00000000 --- a/repository/Grease-Pharo20-Core.package/SocketStream.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseNext:putAll:startingAt:" : "pmm 5/23/2010 08:17" } } diff --git a/repository/Grease-Pharo20-Core.package/WriteStream.extension/methodProperties.json b/repository/Grease-Pharo20-Core.package/WriteStream.extension/methodProperties.json deleted file mode 100644 index e8241b94..00000000 --- a/repository/Grease-Pharo20-Core.package/WriteStream.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseNext:putAll:startingAt:" : "jf 5/22/2010 20:26" } } diff --git a/repository/Grease-Pharo20-Core.package/monticello.meta/version b/repository/Grease-Pharo20-Core.package/monticello.meta/version deleted file mode 100644 index 384eb50c..00000000 --- a/repository/Grease-Pharo20-Core.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-Pharo20-Core-JohanBrichau.22' message 'Implements #bindingOf: in Pharo2' id '883e1c64-9fa0-4167-ae55-8cd41f346dad' date '12 July 2015' time '5:22:06.563 pm' author 'JohanBrichau' ancestors ((name 'Grease-Pharo20-Core-JohanBrichau.21' message 'Missing sign on ScaledDecimal>>greaseString (https://github.com/SeasideSt/Grease/issues/1) Thanks Hilaire!' id 'a9a0a841-882d-486d-a8ed-dcacf4e78af9' date '25 May 2015' time '9:41:17.846 am' author 'JohanBrichau' ancestors ((name 'Grease-Pharo20-Core-JohanBrichau.20' message 'additional file library methods' id 'bf315320-7512-4c64-952d-17453195cf9f' date '4 October 2014' time '10:07:20.979 am' author 'JohanBrichau' ancestors ((name 'Grease-Pharo20-Core-pmm.19' message ' Issue 792 : Issue encoding a non-ascii character preceded by an xml-unsafe one - https://code.google.com/p/seaside/issues/detail?id=792' id '091e6e30-84fe-4281-ab9b-b586baa80ec0' date '24 May 2014' time '3:19:05.51 pm' author 'pmm' ancestors ((name 'Grease-Pharo20-Core-JohanBrichau.18' message 'moved GRCountingStream from Pharo specific package to Core' id '0be4fbfb-45e8-4a63-9800-6adf07b3d8c3' date '16 February 2014' time '9:36:20.377 pm' author 'JohanBrichau' ancestors ((name 'Grease-Pharo20-Core-pmm.17' message 'Issue 770: ScaledDecimal rendering support http://code.google.com/p/seaside/issues/detail?id=770' id 'd7a1eeaa-f58e-4603-971f-6cd59230204e' date '15 September 2013' time '12:24:13.475 pm' author 'pmm' ancestors ((name 'Grease-Pharo20-Core-pmm.16' message '- merge' id 'f7d28925-70ae-4366-854a-1160f562395f' date '12 September 2013' time '5:58:13.97 pm' author 'pmm' ancestors ((name 'Grease-Pharo20-Core-pmm.15' message '- bring #doSilently: back' id 'f4aaf942-4c29-41d5-b585-f936f0a72bc0' date '12 September 2013' time '5:57:39.57 pm' author 'pmm' ancestors ((name 'Grease-Pharo20-Core-pmm.13' message 'Issue 760: addAllFilesIn: is broken in Pharo 20 http://code.google.com/p/seaside/issues/detail?id=760' id '6259cd85-05d0-485c-aa5f-ce8b08e1d56b' date '12 September 2013' time '12:12:53.334125 pm' author 'pmm' ancestors ((name 'Grease-Pharo20-Core-pmm.12' message '- use new compiler API' id '6d75cfee-a670-4eb5-bec2-d32e9689670d' date '12 September 2013' time '11:29:15.683227 am' author 'pmm' ancestors ((name 'Grease-Pharo20-Core-JohanBrichau.11' message 'deal with #doSilently: difference from Pharo2.0 onward' id 'ded240e6-cedd-4892-972a-ed672d5eb5d7' date '10 September 2013' time '11:37:29.755 am' author 'JohanBrichau' ancestors ((name 'Grease-Pharo20-Core-pmm.10' message '- more fs fixes' id '05c86e58-c910-4317-8e9b-47b6fd57c19f' date '19 August 2012' time '10:20:18.316 am' author 'pmm' ancestors ((name 'Grease-Pharo20-Core-pmm.9' message '- Issue 736: implement #basicNextPutAll: on pseudo streams - http://code.google.com/p/seaside/issues/detail?id=736' id '310db583-7be2-4c4d-b911-8097d66481f4' date '19 August 2012' time '10:12:26.043 am' author 'pmm' ancestors ((name 'Grease-Pharo20-Core-pmm.8' message '- more FS' id '8eb78157-6f56-4d61-bf7d-a3fe0b7144a9' date '13 August 2012' time '9:30:05.4 pm' author 'pmm' ancestors ((name 'Grease-Pharo20-Core-pmm.7' message '- more FS' id '2f0d58f8-da48-4378-acb2-d16dc3084098' date '4 August 2012' time '3:13:15.968 pm' author 'pmm' ancestors ((name 'Grease-Pharo20-Core-pmm.6' message '- change package name' id 'befeca18-9752-4b8d-8af9-29143036e384' date '4 August 2012' time '1:09:21.558 pm' author 'pmm' ancestors ((name 'Grease-Pharo20-Core-pmm.5' message '- more FS' id '397deea2-2611-468e-bc32-b06b84a8eeb5' date '4 August 2012' time '1:03:35.508 pm' author 'pmm' ancestors ((name 'Grease-Pharo20-Core-pmm.4' message '- more FS fixes' id '10d636c6-60c0-4445-bc52-e58c2694a62d' date '4 August 2012' time '12:53:24.724 pm' author 'pmm' ancestors ((name 'Grease-Pharo20-Core-pmm.3' message '- start to use FS' id '95e05251-e337-4ced-8d96-6608473fd288' date '4 August 2012' time '12:41:12.074 pm' author 'pmm' ancestors ((name 'Grease-Pharo20-Core-pmm.2' message '- use SystemAnnouncer' id '1cde944c-5368-4cbd-b074-6d29b30b5d1e' date '4 August 2012' time '12:32:52.4 pm' author 'pmm' ancestors ((name 'Grease-Pharo20-Core-pmm.1' message '- bump' id 'f5552691-cc57-47ca-8b09-987e6b976f5b' date '4 August 2012' time '12:29:29.556 pm' author 'pmm' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Grease-Pharo20-Core-pmm.14' message '- fix URLs' id 'e60023ec-b58b-49e4-81b5-4d17412a11dc' date '12 September 2013' time '4:02:53.563496 pm' author 'pmm' ancestors ((id '6259cd85-05d0-485c-aa5f-ce8b08e1d56b')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file diff --git a/repository/Grease-Pharo30-Core.package/BlockClosure.extension/methodProperties.json b/repository/Grease-Pharo30-Core.package/BlockClosure.extension/methodProperties.json deleted file mode 100644 index 641628e4..00000000 --- a/repository/Grease-Pharo30-Core.package/BlockClosure.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "fixCallbackTemps" : "lr 4/8/2009 13:33", - "valueWithPossibleArguments:" : "lr 4/8/2009 13:36" } } diff --git a/repository/Grease-Pharo30-Core.package/ByteArray.extension/methodProperties.json b/repository/Grease-Pharo30-Core.package/ByteArray.extension/methodProperties.json deleted file mode 100644 index add0c68e..00000000 --- a/repository/Grease-Pharo30-Core.package/ByteArray.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : "jf 9/30/2009 01:10" } } diff --git a/repository/Grease-Pharo30-Core.package/Character.extension/methodProperties.json b/repository/Grease-Pharo30-Core.package/Character.extension/methodProperties.json deleted file mode 100644 index accbae78..00000000 --- a/repository/Grease-Pharo30-Core.package/Character.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseInteger" : "jf 9/30/2009 01:04" } } diff --git a/repository/Grease-Pharo30-Core.package/Collection.extension/methodProperties.json b/repository/Grease-Pharo30-Core.package/Collection.extension/methodProperties.json deleted file mode 100644 index 3196464b..00000000 --- a/repository/Grease-Pharo30-Core.package/Collection.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "any" : "jf 2/6/2010 00:41" } } diff --git a/repository/Grease-Pharo30-Core.package/Duration.extension/methodProperties.json b/repository/Grease-Pharo30-Core.package/Duration.extension/methodProperties.json deleted file mode 100644 index 018f4c60..00000000 --- a/repository/Grease-Pharo30-Core.package/Duration.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - "milliseconds:" : "jf 2/6/2010 00:12" }, - "instance" : { - "asMilliseconds" : "jf 2/5/2010 23:58", - "milliseconds" : "jf 2/6/2010 00:02" } } diff --git a/repository/Grease-Pharo30-Core.package/GRDelegatingStream.extension/methodProperties.json b/repository/Grease-Pharo30-Core.package/GRDelegatingStream.extension/methodProperties.json deleted file mode 100644 index 4dd2cf88..00000000 --- a/repository/Grease-Pharo30-Core.package/GRDelegatingStream.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseNext:putAll:startingAt:" : "pmm 12/28/2010 22:13" } } diff --git a/repository/Grease-Pharo30-Core.package/GRDynamicVariable.class/methodProperties.json b/repository/Grease-Pharo30-Core.package/GRDynamicVariable.class/methodProperties.json deleted file mode 100644 index a13e9dab..00000000 --- a/repository/Grease-Pharo30-Core.package/GRDynamicVariable.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - "defaultValue" : "JohanBrichau 7/23/2017 17:55", - "use:during:" : "MaxLeske 5/16/2017 21:54" }, - "instance" : { - "default" : "JohanBrichau 7/23/2017 17:56", - "value:during:" : "JohanBrichau 11/24/2018 12:31" } } diff --git a/repository/Grease-Pharo30-Core.package/GRPackage.extension/methodProperties.json b/repository/Grease-Pharo30-Core.package/GRPackage.extension/methodProperties.json deleted file mode 100644 index a6087806..00000000 --- a/repository/Grease-Pharo30-Core.package/GRPackage.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "greasePharo30Core" : "pmm 9/12/2013 16:00" }, - "instance" : { - } } diff --git a/repository/Grease-Pharo30-Core.package/GRPharoConverterCodecStream.class/methodProperties.json b/repository/Grease-Pharo30-Core.package/GRPharoConverterCodecStream.class/methodProperties.json deleted file mode 100644 index 5fe65894..00000000 --- a/repository/Grease-Pharo30-Core.package/GRPharoConverterCodecStream.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "class" : { - "on:converter:" : "pmm 10/30/2010 18:58" }, - "instance" : { - "greaseNext:putAll:startingAt:" : "pmm 12/28/2010 22:12", - "initializeOn:converter:" : "pmm 10/30/2010 18:58", - "next" : "pmm 4/10/2010 13:32", - "next:" : "lr 2/7/2009 12:57", - "nextPut:" : "pmm 4/10/2010 13:30", - "nextPutAll:" : "lr 2/7/2009 12:54" } } diff --git a/repository/Grease-Pharo30-Core.package/GRPharoGenericCodec.class/methodProperties.json b/repository/Grease-Pharo30-Core.package/GRPharoGenericCodec.class/methodProperties.json deleted file mode 100644 index ab5cb50c..00000000 --- a/repository/Grease-Pharo30-Core.package/GRPharoGenericCodec.class/methodProperties.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "class" : { - "basicForEncoding:" : "pmm 6/28/2009 15:43", - "codecs" : "pmm 8/16/2010 00:19", - "supportedEncodingNames" : "lr 7/25/2011 19:46", - "supportsEncoding:" : "pmm 6/28/2009 16:43" }, - "instance" : { - "converter" : "lr 7/25/2011 19:51", - "decoderFor:" : "lr 2/7/2009 12:52", - "encoderFor:" : "jf 9/30/2009 00:46", - "initializeWithName:" : "pmm 8/16/2010 11:52", - "name" : "lr 2/7/2009 10:16", - "url" : "lr 2/7/2009 12:36" } } diff --git a/repository/Grease-Pharo30-Core.package/GRPharoLatin1Codec.class/methodProperties.json b/repository/Grease-Pharo30-Core.package/GRPharoLatin1Codec.class/methodProperties.json deleted file mode 100644 index 215fb749..00000000 --- a/repository/Grease-Pharo30-Core.package/GRPharoLatin1Codec.class/methodProperties.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "class" : { - "basicForEncoding:" : "pmm 8/16/2010 00:36", - "codecs" : "lr 7/25/2011 19:46", - "supportedEncodingNames" : "lr 7/25/2011 19:46", - "supportsEncoding:" : "pmm 8/16/2010 00:36" }, - "instance" : { - "decode:" : "pmm 8/16/2010 09:20", - "decoderFor:" : "pmm 8/16/2010 00:32", - "encoderFor:" : "pmm 8/16/2010 00:32", - "initializeWithName:" : "pmm 8/25/2016 11:00", - "name" : "pmm 8/16/2010 00:32" } } diff --git a/repository/Grease-Pharo30-Core.package/GRPharoLatin1CodecStream.class/methodProperties.json b/repository/Grease-Pharo30-Core.package/GRPharoLatin1CodecStream.class/methodProperties.json deleted file mode 100644 index 0a44c0e1..00000000 --- a/repository/Grease-Pharo30-Core.package/GRPharoLatin1CodecStream.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "next" : "pmm 8/16/2010 09:16", - "next:" : "lr 7/25/2011 19:50" } } diff --git a/repository/Grease-Pharo30-Core.package/GRPharoPlatform.class/methodProperties.json b/repository/Grease-Pharo30-Core.package/GRPharoPlatform.class/methodProperties.json deleted file mode 100644 index 2f4f527c..00000000 --- a/repository/Grease-Pharo30-Core.package/GRPharoPlatform.class/methodProperties.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "class" : { - "initialize" : "pmm 5/20/2010 11:49", - "initializeUrlTable" : "pmm 5/20/2010 20:56", - "initializeXmlTable" : "pmm 5/20/2010 20:56", - "unload" : "jf 1/22/2009 02:45" }, - "instance" : { - "addToShutDownList:" : "jf 1/21/2009 17:31", - "addToStartUpList:" : "jf 1/21/2009 17:31", - "asMethodReturningByteArray:named:" : "lr 7/25/2011 19:51", - "asMethodReturningByteArrayLiteral:named:" : "lr 7/25/2011 19:51", - "asMethodReturningByteArrayWithCache:named:" : "pmm 2/20/2009 17:44", - "base64Decode:" : "jf 1/21/2009 17:31", - "bindingOf:" : "JohanBrichau 7/12/2015 14:45", - "compile:into:classified:" : "pmm 9/12/2013 11:24", - "contentsOfFile:binary:" : "JohanBrichau 10/3/2014 19:59", - "directoriesIn:" : "pmm 8/19/2012 10:19", - "doSilently:" : "pmm 9/12/2013 17:55", - "ensureExistenceOfFolder:" : "pmm 9/12/2013 12:05", - "fileExists:" : "JohanBrichau 10/3/2014 20:02", - "fileStreamOn:do:binary:" : "JohanBrichau 10/3/2014 19:59", - "filesIn:" : "pmm 8/19/2012 10:18", - "isProcessTerminated:" : "jf 2/6/2009 15:58", - "label" : "jf 2/9/2010 00:56", - "localNameOf:" : "pmm 8/19/2012 10:19", - "newRandom" : "pmm 10/7/2010 13:10", - "newline" : "lr 4/15/2010 19:14", - "openDebuggerOn:" : "pmm 1/22/2012 16:31", - "pathSeparator" : "pmm 8/4/2012 12:38", - "readWriteByteStream" : "JohanBrichau 1/18/2014 07:05", - "readWriteCharacterStream" : "dkh 9/4/2009 09:14", - "removeFromShutDownList:" : "jf 1/21/2009 17:31", - "removeFromStartUpList:" : "jf 1/21/2009 17:31", - "removeSelector:from:" : "JohanBrichau 4/19/2014 13:44", - "secureHashFor:" : "DamienCassou 8/27/2013 18:30", - "semaphoreClass" : "lr 7/25/2011 19:51", - "stackDepth" : "jf 1/21/2009 17:31", - "terminateProcess:" : "jf 2/6/2009 15:59", - "thisContext" : "pmm 9/5/2017 13:12", - "useByteArrayLiterals" : "pmm 8/4/2012 12:39", - "weakDictionaryOfSize:" : "lr 7/25/2011 19:51", - "write:toFile:inFolder:" : "pmm 8/4/2012 13:02", - "writeCharacterStreamOn:" : "pmm 8/26/2011 09:45" } } diff --git a/repository/Grease-Pharo30-Core.package/GRPharoRandomProvider.class/methodProperties.json b/repository/Grease-Pharo30-Core.package/GRPharoRandomProvider.class/methodProperties.json deleted file mode 100644 index cedc66aa..00000000 --- a/repository/Grease-Pharo30-Core.package/GRPharoRandomProvider.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "class" : { - "initialize" : "jgf 1/25/2009 12:05", - "nextInt:" : "lr 7/25/2011 19:46", - "randomClass" : "lr 7/25/2011 19:46", - "randomFrom:" : "lr 7/25/2011 18:28", - "startUp" : "pmm 1/10/2009 16:01", - "unload" : "jf 9/30/2009 00:19" }, - "instance" : { - } } diff --git a/repository/Grease-Pharo30-Core.package/GRPharoUtf8Codec.class/methodProperties.json b/repository/Grease-Pharo30-Core.package/GRPharoUtf8Codec.class/methodProperties.json deleted file mode 100644 index 6635b824..00000000 --- a/repository/Grease-Pharo30-Core.package/GRPharoUtf8Codec.class/methodProperties.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "class" : { - "basicForEncoding:" : "lr 7/25/2011 19:46", - "codecs" : "lr 7/25/2011 19:46", - "supportsEncoding:" : "lr 7/25/2011 19:46" }, - "instance" : { - "decode:" : "pmm 2/17/2012 19:45", - "decoderFor:" : "jf 9/30/2009 00:46", - "encoderFor:" : "jf 9/30/2009 00:46", - "invalidUtf8" : "JohanBrichau 1/18/2016 08:13", - "name" : "pmm 2/20/2009 13:25", - "url" : "pmm 2/20/2009 12:50" } } diff --git a/repository/Grease-Pharo30-Core.package/GRPharoUtf8CodecStream.class/methodProperties.json b/repository/Grease-Pharo30-Core.package/GRPharoUtf8CodecStream.class/methodProperties.json deleted file mode 100644 index 837f248e..00000000 --- a/repository/Grease-Pharo30-Core.package/GRPharoUtf8CodecStream.class/methodProperties.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "class" : { - "initialize" : "lr 7/25/2011 19:46" }, - "instance" : { - "crlf" : "pmm 4/10/2010 13:28", - "encodeDefault:" : "lr 7/25/2011 18:36", - "encodeFast:" : "pmm 8/25/2016 11:00", - "greaseNext:putAll:startingAt:" : "pmm 8/15/2011 21:32", - "greaseNext:putAllFast:startingAt:" : "pmm 5/21/2014 21:28", - "invalidUtf8" : "jf 9/30/2009 00:39", - "next" : "pmm 2/17/2010 20:09", - "next:" : "pmm 8/25/2016 11:00", - "nextPut:" : "lr 7/25/2011 19:51", - "nextPutAll:" : "pmm 4/10/2010 13:28" } } diff --git a/repository/Grease-Pharo30-Core.package/GRSmallDictionary.extension/methodProperties.json b/repository/Grease-Pharo30-Core.package/GRSmallDictionary.extension/methodProperties.json deleted file mode 100644 index 9dbcc9c5..00000000 --- a/repository/Grease-Pharo30-Core.package/GRSmallDictionary.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "customizeExplorerContents" : "lr 7/25/2011 19:51", - "explorerContents" : "lr 7/25/2011 19:51", - "hasContentsInExplorer" : "lr 7/25/2011 19:51" } } diff --git a/repository/Grease-Pharo30-Core.package/GRWorkingWriteStream.class/methodProperties.json b/repository/Grease-Pharo30-Core.package/GRWorkingWriteStream.class/methodProperties.json deleted file mode 100644 index e8d4055e..00000000 --- a/repository/Grease-Pharo30-Core.package/GRWorkingWriteStream.class/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "reset" : "pmm 8/26/2011 09:39" } } diff --git a/repository/Grease-Pharo30-Core.package/Interval.extension/methodProperties.json b/repository/Grease-Pharo30-Core.package/Interval.extension/methodProperties.json deleted file mode 100644 index 1dedf542..00000000 --- a/repository/Grease-Pharo30-Core.package/Interval.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "any" : "jf 2/6/2010 03:25" } } diff --git a/repository/Grease-Pharo30-Core.package/MessageSend.extension/methodProperties.json b/repository/Grease-Pharo30-Core.package/MessageSend.extension/methodProperties.json deleted file mode 100644 index 78bb2233..00000000 --- a/repository/Grease-Pharo30-Core.package/MessageSend.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "argumentCount" : "pmm 1/10/2009 19:22", - "fixCallbackTemps" : "pmm 4/23/2007 20:02", - "valueWithPossibleArguments:" : "lr 7/25/2011 19:52" } } diff --git a/repository/Grease-Pharo30-Core.package/Number.extension/methodProperties.json b/repository/Grease-Pharo30-Core.package/Number.extension/methodProperties.json deleted file mode 100644 index 977cd782..00000000 --- a/repository/Grease-Pharo30-Core.package/Number.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "milliseconds" : "jf 2/6/2010 00:12" } } diff --git a/repository/Grease-Pharo30-Core.package/Object.extension/methodProperties.json b/repository/Grease-Pharo30-Core.package/Object.extension/methodProperties.json deleted file mode 100644 index add0c68e..00000000 --- a/repository/Grease-Pharo30-Core.package/Object.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : "jf 9/30/2009 01:10" } } diff --git a/repository/Grease-Pharo30-Core.package/Point.extension/methodProperties.json b/repository/Grease-Pharo30-Core.package/Point.extension/methodProperties.json deleted file mode 100644 index a0fe15e4..00000000 --- a/repository/Grease-Pharo30-Core.package/Point.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : "pmm 8/25/2016 10:59" } } diff --git a/repository/Grease-Pharo30-Core.package/PositionableStream.extension/methodProperties.json b/repository/Grease-Pharo30-Core.package/PositionableStream.extension/methodProperties.json deleted file mode 100644 index cfb79423..00000000 --- a/repository/Grease-Pharo30-Core.package/PositionableStream.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseUpToAll:" : "jf 9/30/2009 01:06" } } diff --git a/repository/Grease-Pharo30-Core.package/ScaledDecimal.extension/methodProperties.json b/repository/Grease-Pharo30-Core.package/ScaledDecimal.extension/methodProperties.json deleted file mode 100644 index 64d2292a..00000000 --- a/repository/Grease-Pharo30-Core.package/ScaledDecimal.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "encodeOn:" : "pmm 8/25/2016 18:52", - "greaseString" : "JohanBrichau 5/25/2015 08:55" } } diff --git a/repository/Grease-Pharo30-Core.package/SequenceableCollection.extension/methodProperties.json b/repository/Grease-Pharo30-Core.package/SequenceableCollection.extension/methodProperties.json deleted file mode 100644 index c683223d..00000000 --- a/repository/Grease-Pharo30-Core.package/SequenceableCollection.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "beginsWithSubCollection:" : "jok 3/22/2010 11:48", - "endsWithSubCollection:" : "jok 3/22/2010 11:47", - "sorted" : "jf 2/6/2010 02:01" } } diff --git a/repository/Grease-Pharo30-Core.package/SocketStream.extension/methodProperties.json b/repository/Grease-Pharo30-Core.package/SocketStream.extension/methodProperties.json deleted file mode 100644 index 8f430aea..00000000 --- a/repository/Grease-Pharo30-Core.package/SocketStream.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseNext:putAll:startingAt:" : "pmm 5/23/2010 08:17" } } diff --git a/repository/Grease-Pharo30-Core.package/TBehavior.extension/methodProperties.json b/repository/Grease-Pharo30-Core.package/TBehavior.extension/methodProperties.json deleted file mode 100644 index 7e1eb466..00000000 --- a/repository/Grease-Pharo30-Core.package/TBehavior.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "fullName" : "PavelKrivanek 4/21/2017 11:40" } } diff --git a/repository/Grease-Pharo30-Core.package/WriteStream.extension/methodProperties.json b/repository/Grease-Pharo30-Core.package/WriteStream.extension/methodProperties.json deleted file mode 100644 index e8241b94..00000000 --- a/repository/Grease-Pharo30-Core.package/WriteStream.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseNext:putAll:startingAt:" : "jf 5/22/2010 20:26" } } diff --git a/repository/Grease-Pharo30-Core.package/monticello.meta/version b/repository/Grease-Pharo30-Core.package/monticello.meta/version deleted file mode 100644 index afba34bf..00000000 --- a/repository/Grease-Pharo30-Core.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-Pharo30-Core-JohanBrichau.26' message 'Fix GRDynamicVariable in Pharo 5' id '98c359bb-c0f7-4d03-b27a-401d346617dc' date '24 November 2018' time '12:38:45.645972 pm' author 'JohanBrichau' ancestors ((name 'Grease-Pharo30-Core-pmm.25' message 'Add thisContext method to GRPlatform' id 'f975b659-d114-0d00-9688-5ef30b6b980c' date '5 September 2017' time '1:34:43.089151 pm' author 'pmm' ancestors ((name 'Grease-Pharo30-Core-JohanBrichau.24' message 'Added GRDynamicVariable class>>defaultValue to represent the default value of a GRDynamicVariable. Previously, this was GRDynamicvariable>>default but this was not compatible for all platforms' id 'ae256fa1-7340-4d02-8b46-ddabaf8c0196' date '23 July 2017' time '5:56:18.263198 pm' author 'JohanBrichau' ancestors ((name 'Grease-Pharo30-Core-MaxLeske.23' message 'merged by GitFileTree-MergeDriver' id 'bf826cec-f28e-4871-a5a8-f86c21244de8' date '25 May 2017' time '2:48:46.179573 pm' author 'MaxLeske' ancestors ((name 'Grease-Pharo30-Core-MaxLeske.22' message '* added GRDynamicVariable as replacement for WADynamicVariable' id 'ea9f25a6-270c-0d00-82d8-687107321642' date '18 May 2017' time '7:45:27.980288 am' author 'MaxLeske' ancestors ((name 'Grease-Pharo30-Core-pmm.21' message '- direct rendering for ScaledDecimal' id 'db8b6a8e-ce95-4c7b-817a-0fc352c0c000' date '26 August 2016' time '8:56:20.501423 am' author 'pmm' ancestors ((name 'Grease-Pharo30-Core-pmm.20' message '- lint fixes' id 'ec123007-ffe6-483d-aba9-e36840b7a24c' date '25 August 2016' time '11:03:48.029702 am' author 'pmm' ancestors ((name 'Grease-Pharo30-Core-JohanBrichau.19' message 'Added missing method GRPharoUtf8Coded>>invalidUtf8' id '3fc62b04-668c-4f6d-801d-54640757217c' date '18 January 2016' time '8:15:58.41072 am' author 'JohanBrichau' ancestors ((name 'Grease-Pharo30-Core-JohanBrichau.18' message 'Implements #bindingOf: in Pharo3+' id 'cbd9dc15-a5ad-4b29-8399-e185c2b38f8e' date '12 July 2015' time '2:47:09.890712 pm' author 'JohanBrichau' ancestors ((name 'Grease-Pharo30-Core-JohanBrichau.17' message 'Missing sign on ScaledDecimal>>greaseString (https://github.com/SeasideSt/Grease/issues/1) Thanks Hilaire!' id 'bd1dc3a1-c04d-47ab-9637-c6ba13afe679' date '25 May 2015' time '9:05:39.60184 am' author 'JohanBrichau' ancestors ((name 'Grease-Pharo30-Core-JohanBrichau.16' message 'additional file library methods' id 'bd9e3924-0ff7-443a-a361-68768ee52b77' date '3 October 2014' time '8:05:16.758249 pm' author 'JohanBrichau' ancestors ((name 'Grease-Pharo30-Core-pmm.15' message 'Issue 792: Issue encoding a non-ascii character preceded by an xml-unsafe one - https://code.google.com/p/seaside/issues/detail?id=792' id 'ee0aef7f-007a-4b55-ab96-ac338d55fed0' date '21 May 2014' time '9:30:02.077151 pm' author 'pmm' ancestors ((name 'Grease-Pharo30-Core-JohanBrichau.14' message 'Issue 789: Running WAFilelibraryTest on Pharo3 leaves Seaside-Tests-Core package in a dirty state https://code.google.com/p/seaside/issues/detail?id=789' id 'e845ca33-9427-435c-9a3c-f3d3a6669295' date '19 April 2014' time '5:23:30.089075 pm' author 'JohanBrichau' ancestors ((name 'Grease-Pharo30-Core-JohanBrichau.13' message 'move GRCountingStream from Pharo-only package to Core' id 'af3fd2e2-3290-4de5-8ea1-a92a78eeed4a' date '16 February 2014' time '9:29:51.277053 pm' author 'JohanBrichau' ancestors ((name 'Grease-Pharo30-Core-JohanBrichau.12' message 'bugfix #readWriteByteStream http://forum.world.st/errorImproperStore-error-because-of-change-in-GRPharoPlatform-gt-gt-readWriteByteStream-td4737266.html' id 'f0022f14-d33b-47cd-98e9-891c3d72e7af' date '18 January 2014' time '7:06:52.139327 am' author 'JohanBrichau' ancestors ((name 'Grease-Pharo30-Core-pmm.11' message 'Issue 770: ScaledDecimal rendering support http://code.google.com/p/seaside/issues/detail?id=770' id '9cfba12f-0b05-432d-84d1-d5cd8bf23dfe' date '15 September 2013' time '12:25:15.521 pm' author 'pmm' ancestors ((name 'Grease-Pharo30-Core-pmm.10' message '- add #doSilentlyBack:' id '5ccc9407-d97b-45f3-b9b0-c5135257da27' date '12 September 2013' time '6:07:05.251 pm' author 'pmm' ancestors ((name 'Grease-Pharo30-Core-pmm.9' message '- fix URLs' id 'd89a3a93-8df2-4fef-b4ed-6d99b3e4befb' date '12 September 2013' time '4:01:20.912841 pm' author 'pmm' ancestors ((name 'Grease-Pharo30-Core-pmm.8' message '- fix metadata' id '53897910-3143-4a50-8b56-3af0a1219593' date '12 September 2013' time '3:55:52.88988 pm' author 'pmm' ancestors ((name 'Grease-Pharo30-Core-pmm.7' message 'Issue 760: addAllFilesIn: is broken in Pharo 20 http://code.google.com/p/seaside/issues/detail?id=760' id '326a7053-4672-4be5-b268-90e286a74f6c' date '12 September 2013' time '12:14:04.352265 pm' author 'pmm' ancestors ((name 'Grease-Pharo30-Core-pmm.6' message 'Issue 760: addAllFilesIn: is broken in Pharo 20 http://code.google.com/p/seaside/issues/detail?id=760' id 'e43e7571-1bd1-4733-b53f-72a19245eed1' date '12 September 2013' time '12:10:25.447758 pm' author 'pmm' ancestors ((name 'Grease-Pharo30-Core-pmm.5' message '- FileSystem fixes' id '2a3dc16b-d38e-4f50-be28-2138a431d832' date '12 September 2013' time '12:05:46.224478 pm' author 'pmm' ancestors ((name 'Grease-Pharo30-Core-pmm.4' message '- fix compilation' id '8d649251-34e2-4ed0-a007-223b556888a8' date '12 September 2013' time '11:25:48.069182 am' author 'pmm' ancestors ((name 'Grease-Pharo30-Core-DamienCassou.3' message '- Pharo 3.0: no need for sending #defaultMethodTrailer anymore' id 'c5d1b0db-bf87-43a3-bd4b-9d4d47169699' date '9 September 2013' time '10:39:38.671985 am' author 'DamienCassou' ancestors ((name 'Grease-Pharo30-Core-MattSpr.2' message 'Fixed #compile:into:classified: for Pharo3.0.' id '26925549-0374-4ecc-a49b-fd8d4e28962d' date '28 August 2013' time '10:43:32.58787 am' author 'MattSpr' ancestors ((name 'Grease-Pharo30-Core-MattSpr.1' message 'Copy of package from Pharo 2.0.' id '6da53441-b2d0-49dc-ae04-15d757b7a8af' date '28 August 2013' time '10:41:57.145859 am' author 'MattSpr' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Grease-Pharo30-Core-PavelKrivanek.22' message 'move extensions of Behavior to TBehavior' id '72b159cb-0b0a-0d00-90c8-922f067edcaa' date '21 April 2017' time '11:41:09.810975 am' author 'PavelKrivanek' ancestors ((id 'db8b6a8e-ce95-4c7b-817a-0fc352c0c000')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file diff --git a/repository/Grease-Pharo40-Slime.package/GRAnsiBooleansRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRAnsiBooleansRule.class/methodProperties.json deleted file mode 100644 index 4b5ba396..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRAnsiBooleansRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "lr 2/24/2009 15:37", - "initialize" : "lr 2/24/2009 15:27", - "name" : "lr 2/24/2009 15:37", - "rationale" : "lr 1/25/2010 22:07" } } diff --git a/repository/Grease-Pharo40-Slime.package/GRAnsiCharactersRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRAnsiCharactersRule.class/methodProperties.json deleted file mode 100644 index 52437cbe..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRAnsiCharactersRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "lr 7/16/2009 08:35", - "initialize" : "lr 1/25/2010 22:07", - "name" : "lr 7/16/2009 08:35", - "rationale" : "lr 1/25/2010 22:07" } } diff --git a/repository/Grease-Pharo40-Slime.package/GRAnsiCollectionsRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRAnsiCollectionsRule.class/methodProperties.json deleted file mode 100644 index d1616b8d..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRAnsiCollectionsRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "lr 2/24/2009 15:37", - "initialize" : "jok 4/23/2010 08:34", - "name" : "lr 2/24/2009 15:37", - "rationale" : "jok 1/26/2010 09:41" } } diff --git a/repository/Grease-Pharo40-Slime.package/GRAnsiConditionalsRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRAnsiConditionalsRule.class/methodProperties.json deleted file mode 100644 index 1c5de2b2..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRAnsiConditionalsRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "lr 2/24/2009 15:36", - "initialize" : "lr 2/28/2009 21:38", - "name" : "lr 2/24/2009 15:37", - "rationale" : "lr 1/25/2010 22:07" } } diff --git a/repository/Grease-Pharo40-Slime.package/GRAnsiConvertorRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRAnsiConvertorRule.class/methodProperties.json deleted file mode 100644 index b65fcecb..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRAnsiConvertorRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "lr 4/14/2009 00:32", - "initialize" : "jf 12/8/2009 23:17", - "name" : "lr 4/14/2009 00:33", - "rationale" : "lr 1/25/2010 22:07" } } diff --git a/repository/Grease-Pharo40-Slime.package/GRAnsiExceptionsRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRAnsiExceptionsRule.class/methodProperties.json deleted file mode 100644 index 212023fd..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRAnsiExceptionsRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "lr 2/24/2009 15:36", - "initialize" : "lr 2/28/2009 21:44", - "name" : "lr 2/24/2009 15:37", - "rationale" : "lr 1/25/2010 22:07" } } diff --git a/repository/Grease-Pharo40-Slime.package/GRAnsiStreamsRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRAnsiStreamsRule.class/methodProperties.json deleted file mode 100644 index fa4bbea7..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRAnsiStreamsRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "lr 2/24/2009 15:36", - "initialize" : "lr 2/24/2009 15:29", - "name" : "lr 2/24/2009 15:52", - "rationale" : "lr 1/25/2010 22:07" } } diff --git a/repository/Grease-Pharo40-Slime.package/GRAnsiStringsRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRAnsiStringsRule.class/methodProperties.json deleted file mode 100644 index f06345da..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRAnsiStringsRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "jf 12/29/2009 19:44", - "initialize" : "JohanBrichau 1/18/2014 16:39", - "name" : "jf 12/29/2009 19:44", - "rationale" : "lr 1/25/2010 22:07" } } diff --git a/repository/Grease-Pharo40-Slime.package/GRBasicNewInitializeMissingRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRBasicNewInitializeMissingRule.class/methodProperties.json deleted file mode 100644 index 771a25b1..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRBasicNewInitializeMissingRule.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "checkClass:" : "JohanBrichau 11/7/2014 20:38", - "group" : "jok 1/26/2010 14:20", - "initialize" : "lr 11/2/2009 20:09", - "name" : "lr 2/24/2009 15:35", - "rationale" : "lr 1/25/2010 22:07" } } diff --git a/repository/Grease-Pharo40-Slime.package/GRBlockFormattingRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRBlockFormattingRule.class/methodProperties.json deleted file mode 100644 index 840d8771..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRBlockFormattingRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "lr 7/25/2011 16:38", - "initialize" : "lr 7/25/2011 19:55", - "name" : "lr 7/25/2011 16:38", - "rationale" : "lr 7/25/2011 16:39" } } diff --git a/repository/Grease-Pharo40-Slime.package/GRDeprecatedApiProtocolRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRDeprecatedApiProtocolRule.class/methodProperties.json deleted file mode 100644 index f474a7d4..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRDeprecatedApiProtocolRule.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "checkMethod:" : "pmm 8/25/2016 11:08", - "group" : "lr 7/26/2011 08:12", - "initialize" : "lr 11/2/2009 20:09", - "name" : "lr 2/24/2009 15:35", - "rationale" : "jok 1/26/2010 14:24" } } diff --git a/repository/Grease-Pharo40-Slime.package/GREmptyStatementsRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GREmptyStatementsRule.class/methodProperties.json deleted file mode 100644 index 4b1f41f2..00000000 --- a/repository/Grease-Pharo40-Slime.package/GREmptyStatementsRule.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "checkMethod:" : "JohanBrichau 11/7/2014 20:47", - "group" : "jok 1/26/2010 14:25", - "name" : "lr 9/8/2009 13:59", - "rationale" : "lr 9/8/2009 14:12", - "resetResult" : "lr 9/8/2009 19:15" } } diff --git a/repository/Grease-Pharo40-Slime.package/GRInvalidObjectInitializationRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRInvalidObjectInitializationRule.class/methodProperties.json deleted file mode 100644 index 8d25753a..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRInvalidObjectInitializationRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "checkMethod:" : "JohanBrichau 11/7/2014 20:40", - "group" : "jok 1/26/2010 14:27", - "name" : "lr 2/24/2009 15:35", - "rationale" : "lr 2/24/2009 15:35" } } diff --git a/repository/Grease-Pharo40-Slime.package/GRNonPortableMessageRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRNonPortableMessageRule.class/methodProperties.json deleted file mode 100644 index 747c5fd7..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRNonPortableMessageRule.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "checkClass:" : "JohanBrichau 11/7/2014 20:38", - "group" : "AvO 9/13/2013 13:45", - "methodNames" : "AvO 9/13/2013 14:57", - "name" : "AvO 9/13/2013 14:03", - "rationale" : "AvO 9/13/2013 13:45" } } diff --git a/repository/Grease-Pharo40-Slime.package/GRNonPortableSourceFormatRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRNonPortableSourceFormatRule.class/methodProperties.json deleted file mode 100644 index a4affb68..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRNonPortableSourceFormatRule.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "checkClass:" : "JohanBrichau 11/7/2014 20:39", - "checkMethod:" : "JohanBrichau 11/7/2014 20:40", - "group" : "lr 11/8/2010 22:45", - "name" : "lr 11/8/2010 22:45", - "rationale" : "lr 11/8/2010 22:48" } } diff --git a/repository/Grease-Pharo40-Slime.package/GRNotPortableCollectionsRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRNotPortableCollectionsRule.class/methodProperties.json deleted file mode 100644 index c23930b3..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRNotPortableCollectionsRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "jok 3/24/2010 12:56", - "initialize" : "jok 3/24/2010 14:52", - "name" : "jok 3/24/2010 12:57", - "rationale" : "jok 3/24/2010 14:33" } } diff --git a/repository/Grease-Pharo40-Slime.package/GRObjectInRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRObjectInRule.class/methodProperties.json deleted file mode 100644 index 30986091..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRObjectInRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "jok 1/26/2010 14:55", - "initialize" : "lr 1/25/2010 22:07", - "name" : "lr 9/12/2009 11:09", - "rationale" : "lr 9/12/2009 11:09" } } diff --git a/repository/Grease-Pharo40-Slime.package/GRPackage.extension/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRPackage.extension/methodProperties.json deleted file mode 100644 index 2316171e..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRPackage.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "greaseSlime" : "JohanBrichau 11/7/2014 21:07" }, - "instance" : { - } } diff --git a/repository/Grease-Pharo40-Slime.package/GRParensFormattingRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRParensFormattingRule.class/methodProperties.json deleted file mode 100644 index 35e557b1..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRParensFormattingRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "lr 7/25/2011 14:44", - "initialize" : "lr 7/25/2011 17:19", - "name" : "lr 7/25/2011 12:20", - "rationale" : "lr 7/25/2011 12:20" } } diff --git a/repository/Grease-Pharo40-Slime.package/GRReturnFormattingRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRReturnFormattingRule.class/methodProperties.json deleted file mode 100644 index b64c2c76..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRReturnFormattingRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "lr 7/25/2011 14:44", - "initialize" : "lr 7/25/2011 17:19", - "name" : "lr 7/25/2011 12:04", - "rationale" : "lr 7/25/2011 12:10" } } diff --git a/repository/Grease-Pharo40-Slime.package/GRSlimeBlockLintRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRSlimeBlockLintRule.class/methodProperties.json deleted file mode 100644 index 7bd0b7e1..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRSlimeBlockLintRule.class/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "isVisible" : "jok 1/26/2010 14:32" }, - "instance" : { - "category" : "JohanBrichau 6/8/2014 17:58" } } diff --git a/repository/Grease-Pharo40-Slime.package/GRSlimeParseTreeLintRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRSlimeParseTreeLintRule.class/methodProperties.json deleted file mode 100644 index 7bd0b7e1..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRSlimeParseTreeLintRule.class/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "isVisible" : "jok 1/26/2010 14:32" }, - "instance" : { - "category" : "JohanBrichau 6/8/2014 17:58" } } diff --git a/repository/Grease-Pharo40-Slime.package/GRSlimeTransformationRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRSlimeTransformationRule.class/methodProperties.json deleted file mode 100644 index 069617fd..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRSlimeTransformationRule.class/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "isVisible" : "jok 1/26/2010 14:36" }, - "instance" : { - } } diff --git a/repository/Grease-Pharo40-Slime.package/GRTempsFormattingRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRTempsFormattingRule.class/methodProperties.json deleted file mode 100644 index b843ff0d..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRTempsFormattingRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "lr 7/25/2011 12:04", - "initialize" : "lr 7/25/2011 17:20", - "name" : "lr 7/25/2011 12:05", - "rationale" : "lr 7/25/2011 12:10" } } diff --git a/repository/Grease-Pharo40-Slime.package/GRTestAssertionsRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRTestAssertionsRule.class/methodProperties.json deleted file mode 100644 index 72850a0b..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRTestAssertionsRule.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "checkMethod:" : "JohanBrichau 11/7/2014 21:09", - "group" : "pmm 8/17/2014 11:21", - "initialize" : "pmm 8/17/2014 11:21", - "name" : "pmm 8/17/2014 11:22", - "rationale" : "pmm 8/17/2014 11:55" } } diff --git a/repository/Grease-Pharo40-Slime.package/GRUnnecessaryLastPeriodRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRUnnecessaryLastPeriodRule.class/methodProperties.json deleted file mode 100644 index 139f4fd1..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRUnnecessaryLastPeriodRule.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "checkMethod:" : "JohanBrichau 11/7/2014 20:48", - "group" : "pmm 9/1/2012 12:28", - "name" : "pmm 9/1/2012 11:40", - "rationale" : "pmm 9/1/2012 12:03", - "resetResult" : "pmm 9/1/2012 11:39" } } diff --git a/repository/Grease-Pharo40-Slime.package/GRUsesCanPerformOrUnderstandRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRUsesCanPerformOrUnderstandRule.class/methodProperties.json deleted file mode 100644 index e6866927..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRUsesCanPerformOrUnderstandRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "pmm 3/29/2012 19:54", - "initialize" : "lr 3/30/2012 09:14", - "name" : "pmm 3/29/2012 19:55", - "rationale" : "lr 3/30/2012 09:15" } } diff --git a/repository/Grease-Pharo40-Slime.package/GRUsesClassForHashRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRUsesClassForHashRule.class/methodProperties.json deleted file mode 100644 index 3fd33818..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRUsesClassForHashRule.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "checkMethod:" : "lr 10/14/2010 09:08", - "group" : "lr 10/14/2010 09:04", - "initialize" : "lr 10/14/2010 09:07", - "name" : "lr 10/14/2010 09:05", - "rationale" : "lr 10/14/2010 09:06" } } diff --git a/repository/Grease-Pharo40-Slime.package/GRUsesCurlyBraceArraysRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRUsesCurlyBraceArraysRule.class/methodProperties.json deleted file mode 100644 index 3dcc01bf..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRUsesCurlyBraceArraysRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "jok 1/26/2010 14:33", - "initialize" : "lr 1/25/2010 22:07", - "name" : "lr 2/24/2009 15:35", - "rationale" : "lr 2/24/2009 15:35" } } diff --git a/repository/Grease-Pharo40-Slime.package/GRUsesLiteralByteArraysRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRUsesLiteralByteArraysRule.class/methodProperties.json deleted file mode 100644 index 98611301..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRUsesLiteralByteArraysRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "jok 1/26/2010 15:58", - "initialize" : "lr 1/25/2010 22:07", - "name" : "lr 2/24/2009 15:35", - "rationale" : "lr 2/24/2009 15:35" } } diff --git a/repository/Grease-Pharo40-Slime.package/GRUsesMethodAnnotationsRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRUsesMethodAnnotationsRule.class/methodProperties.json deleted file mode 100644 index f0208403..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRUsesMethodAnnotationsRule.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "checkMethod:" : "JohanBrichau 11/7/2014 20:42", - "group" : "jok 1/26/2010 15:58", - "name" : "lr 2/27/2009 21:49", - "rationale" : "lr 2/27/2009 21:52", - "shouldExclude:" : "JohanBrichau 11/7/2014 20:41" } } diff --git a/repository/Grease-Pharo40-Slime.package/GRUsesNotPortableClassRule.class/methodProperties.json b/repository/Grease-Pharo40-Slime.package/GRUsesNotPortableClassRule.class/methodProperties.json deleted file mode 100644 index 0801451a..00000000 --- a/repository/Grease-Pharo40-Slime.package/GRUsesNotPortableClassRule.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "checkClass:" : "JohanBrichau 11/7/2014 20:39", - "checkMethod:" : "JohanBrichau 11/7/2014 20:42", - "classNames" : "jf 12/18/2009 14:16", - "group" : "jok 1/26/2010 14:16", - "name" : "lr 2/24/2009 15:35", - "rationale" : "lr 2/24/2009 15:35" } } diff --git a/repository/Grease-Pharo40-Slime.package/monticello.meta/version b/repository/Grease-Pharo40-Slime.package/monticello.meta/version deleted file mode 100644 index 1ad0b18c..00000000 --- a/repository/Grease-Pharo40-Slime.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-Pharo40-Slime-pmm.4' message '- lint fixes' id '53ef3168-20b9-482c-93ad-dc3c7aa21fa9' date '25 August 2016' time '11:31:51.515958 am' author 'pmm' ancestors ((name 'Grease-Pharo40-Slime-JohanBrichau.3' message 'solved superclass check differently' id '67b78409-cd47-404a-8b1b-51604deff874' date '7 November 2014' time '9:10:27.639115 pm' author 'JohanBrichau' ancestors ((name 'Grease-Pharo40-Slime-JohanBrichau.2' message 'a method got lost' id '337dc141-fe61-45c3-96ce-b7175b5ad4c7' date '7 November 2014' time '9:06:12.417154 pm' author 'JohanBrichau' ancestors ((name 'Grease-Pharo40-Slime-JohanBrichau.1' message 'Fixed broken tests in Pharo4.0 (forked of Grease-Slime-pmm.29)' id '9952099a-c337-4a8c-a3f1-8957d36d557e' date '7 November 2014' time '8:53:19.136964 pm' author 'JohanBrichau' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/BlockClosure.extension/methodProperties.json b/repository/Grease-Pharo60-Core.package/BlockClosure.extension/methodProperties.json deleted file mode 100644 index 32997637..00000000 --- a/repository/Grease-Pharo60-Core.package/BlockClosure.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "instance" : { - "fixCallbackTemps" : "lr 4/8/2009 13:33", - "valueWithPossibleArguments:" : "lr 4/8/2009 13:36" - }, - "class" : { } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/ByteArray.extension/methodProperties.json b/repository/Grease-Pharo60-Core.package/ByteArray.extension/methodProperties.json deleted file mode 100644 index 74afa640..00000000 --- a/repository/Grease-Pharo60-Core.package/ByteArray.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "greaseString" : "jf 9/30/2009 01:10" - }, - "class" : { } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/Character.extension/methodProperties.json b/repository/Grease-Pharo60-Core.package/Character.extension/methodProperties.json deleted file mode 100644 index 65a91aa5..00000000 --- a/repository/Grease-Pharo60-Core.package/Character.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "greaseInteger" : "jf 9/30/2009 01:04" - }, - "class" : { } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/Collection.extension/methodProperties.json b/repository/Grease-Pharo60-Core.package/Collection.extension/methodProperties.json deleted file mode 100644 index e1a71262..00000000 --- a/repository/Grease-Pharo60-Core.package/Collection.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "any" : "jf 2/6/2010 00:41" - }, - "class" : { } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/Color.extension/methodProperties.json b/repository/Grease-Pharo60-Core.package/Color.extension/methodProperties.json deleted file mode 100644 index 76299b05..00000000 --- a/repository/Grease-Pharo60-Core.package/Color.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "asHTMLColor" : "JohanBrichau 5/25/2017 11:54" - }, - "class" : { } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/Duration.extension/methodProperties.json b/repository/Grease-Pharo60-Core.package/Duration.extension/methodProperties.json deleted file mode 100644 index 90cd5df9..00000000 --- a/repository/Grease-Pharo60-Core.package/Duration.extension/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "instance" : { - "asMilliseconds" : "jf 2/5/2010 23:58", - "milliseconds" : "jf 2/6/2010 00:02" - }, - "class" : { - "milliseconds:" : "jf 2/6/2010 00:12" - } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/GRDelegatingStream.extension/methodProperties.json b/repository/Grease-Pharo60-Core.package/GRDelegatingStream.extension/methodProperties.json deleted file mode 100644 index 17581cee..00000000 --- a/repository/Grease-Pharo60-Core.package/GRDelegatingStream.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "greaseNext:putAll:startingAt:" : "pmm 12/28/2010 22:13" - }, - "class" : { } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/GRDynamicVariable.class/methodProperties.json b/repository/Grease-Pharo60-Core.package/GRDynamicVariable.class/methodProperties.json deleted file mode 100644 index e69c682f..00000000 --- a/repository/Grease-Pharo60-Core.package/GRDynamicVariable.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "instance" : { - "default" : "JohanBrichau 7/23/2017 17:45" - }, - "class" : { - "defaultValue" : "JohanBrichau 7/23/2017 17:45", - "use:during:" : "MaxLeske 5/16/2017 21:54" - } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/GRPackage.extension/methodProperties.json b/repository/Grease-Pharo60-Core.package/GRPackage.extension/methodProperties.json deleted file mode 100644 index fb511c6f..00000000 --- a/repository/Grease-Pharo60-Core.package/GRPackage.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { }, - "class" : { - "greasePharo60Core" : "JohanBrichau 5/25/2017 15:26" - } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/GRPharoConverterCodecStream.class/methodProperties.json b/repository/Grease-Pharo60-Core.package/GRPharoConverterCodecStream.class/methodProperties.json deleted file mode 100644 index 6455039d..00000000 --- a/repository/Grease-Pharo60-Core.package/GRPharoConverterCodecStream.class/methodProperties.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "instance" : { - "nextPut:" : "pmm 4/10/2010 13:30", - "greaseNext:putAll:startingAt:" : "pmm 12/28/2010 22:12", - "nextPutAll:" : "lr 2/7/2009 12:54", - "next" : "pmm 4/10/2010 13:32", - "next:" : "lr 2/7/2009 12:57", - "initializeOn:converter:" : "pmm 10/30/2010 18:58" - }, - "class" : { - "on:converter:" : "pmm 10/30/2010 18:58" - } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/GRPharoGenericCodec.class/methodProperties.json b/repository/Grease-Pharo60-Core.package/GRPharoGenericCodec.class/methodProperties.json deleted file mode 100644 index 561fbf1e..00000000 --- a/repository/Grease-Pharo60-Core.package/GRPharoGenericCodec.class/methodProperties.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "instance" : { - "converter" : "lr 7/25/2011 19:51", - "decoderFor:" : "lr 2/7/2009 12:52", - "url" : "lr 2/7/2009 12:36", - "encoderFor:" : "jf 9/30/2009 00:46", - "initializeWithName:" : "pmm 8/16/2010 11:52", - "name" : "lr 2/7/2009 10:16" - }, - "class" : { - "codecs" : "pmm 8/16/2010 00:19", - "supportsEncoding:" : "pmm 6/28/2009 16:43", - "basicForEncoding:" : "pmm 6/28/2009 15:43", - "supportedEncodingNames" : "lr 7/25/2011 19:46" - } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/GRPharoLatin1Codec.class/methodProperties.json b/repository/Grease-Pharo60-Core.package/GRPharoLatin1Codec.class/methodProperties.json deleted file mode 100644 index 1bd8105c..00000000 --- a/repository/Grease-Pharo60-Core.package/GRPharoLatin1Codec.class/methodProperties.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "instance" : { - "decoderFor:" : "pmm 8/16/2010 00:32", - "decode:" : "pmm 8/16/2010 09:20", - "initializeWithName:" : "pmm 8/25/2016 11:00", - "encoderFor:" : "pmm 8/16/2010 00:32", - "name" : "pmm 8/16/2010 00:32" - }, - "class" : { - "codecs" : "lr 7/25/2011 19:46", - "supportsEncoding:" : "pmm 8/16/2010 00:36", - "basicForEncoding:" : "pmm 8/16/2010 00:36", - "supportedEncodingNames" : "lr 7/25/2011 19:46" - } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/GRPharoLatin1CodecStream.class/methodProperties.json b/repository/Grease-Pharo60-Core.package/GRPharoLatin1CodecStream.class/methodProperties.json deleted file mode 100644 index eaf30bc6..00000000 --- a/repository/Grease-Pharo60-Core.package/GRPharoLatin1CodecStream.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "instance" : { - "next:" : "lr 7/25/2011 19:50", - "next" : "pmm 8/16/2010 09:16" - }, - "class" : { } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/GRPharoPlatform.class/methodProperties.json b/repository/Grease-Pharo60-Core.package/GRPharoPlatform.class/methodProperties.json deleted file mode 100644 index e7e2a774..00000000 --- a/repository/Grease-Pharo60-Core.package/GRPharoPlatform.class/methodProperties.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "instance" : { - "pathSeparator" : "pmm 8/4/2012 12:38", - "readWriteCharacterStream" : "dkh 9/4/2009 09:14", - "fileStreamOn:do:binary:" : "JohanBrichau 10/3/2014 19:59", - "addToShutDownList:" : "jf 1/21/2009 17:31", - "removeFromShutDownList:" : "JohanBrichau 5/25/2017 11:46", - "removeSelector:from:" : "JohanBrichau 4/19/2014 13:44", - "semaphoreClass" : "lr 7/25/2011 19:51", - "useByteArrayLiterals" : "pmm 8/4/2012 12:39", - "bindingOf:" : "JohanBrichau 7/12/2015 14:45", - "write:toFile:inFolder:" : "pmm 8/4/2012 13:02", - "newRandom" : "pmm 10/7/2010 13:10", - "asMethodReturningByteArray:named:" : "lr 7/25/2011 19:51", - "filesIn:" : "pmm 8/19/2012 10:18", - "newline" : "lr 4/15/2010 19:14", - "terminateProcess:" : "jf 2/6/2009 15:59", - "contentsOfFile:binary:" : "JohanBrichau 10/3/2014 19:59", - "doSilently:" : "pmm 9/12/2013 17:55", - "fileExists:" : "JohanBrichau 10/3/2014 20:02", - "isProcessTerminated:" : "jf 2/6/2009 15:58", - "removeFromStartUpList:" : "JohanBrichau 5/25/2017 11:46", - "stackDepth" : "jf 1/21/2009 17:31", - "secureHashFor:" : "DamienCassou 8/27/2013 18:30", - "thisContext" : "pmm 9/5/2017 13:12", - "base64Decode:" : "jf 1/21/2009 17:31", - "compile:into:classified:" : "pmm 9/12/2013 11:24", - "asMethodReturningByteArrayWithCache:named:" : "pmm 2/20/2009 17:44", - "label" : "jf 2/9/2010 00:56", - "weakDictionaryOfSize:" : "lr 7/25/2011 19:51", - "localNameOf:" : "pmm 8/19/2012 10:19", - "openDebuggerOn:" : "pmm 1/22/2012 16:31", - "ensureExistenceOfFolder:" : "pmm 9/12/2013 12:05", - "asMethodReturningByteArrayLiteral:named:" : "lr 7/25/2011 19:51", - "addToStartUpList:" : "JohanBrichau 5/25/2017 11:44", - "directoriesIn:" : "pmm 8/19/2012 10:19", - "readWriteByteStream" : "JohanBrichau 1/18/2014 07:05" - }, - "class" : { - "initialize" : "pmm 5/20/2010 11:49", - "initializeXmlTable" : "pmm 5/20/2010 20:56", - "unload" : "jf 1/22/2009 02:45", - "initializeUrlTable" : "pmm 5/20/2010 20:56" - } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/GRPharoRandomProvider.class/methodProperties.json b/repository/Grease-Pharo60-Core.package/GRPharoRandomProvider.class/methodProperties.json deleted file mode 100644 index e9905923..00000000 --- a/repository/Grease-Pharo60-Core.package/GRPharoRandomProvider.class/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "instance" : { }, - "class" : { - "initialize" : "jgf 1/25/2009 12:05", - "randomFrom:" : "lr 7/25/2011 18:28", - "randomClass" : "lr 7/25/2011 19:46", - "nextInt:" : "lr 7/25/2011 19:46", - "startUp" : "pmm 1/10/2009 16:01", - "unload" : "jf 9/30/2009 00:19" - } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/GRPharoUtf8Codec.class/methodProperties.json b/repository/Grease-Pharo60-Core.package/GRPharoUtf8Codec.class/methodProperties.json deleted file mode 100644 index ab426978..00000000 --- a/repository/Grease-Pharo60-Core.package/GRPharoUtf8Codec.class/methodProperties.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "instance" : { - "decoderFor:" : "jf 9/30/2009 00:46", - "url" : "pmm 2/20/2009 12:50", - "decode:" : "pmm 2/17/2012 19:45", - "invalidUtf8" : "JohanBrichau 1/18/2016 08:13", - "encoderFor:" : "jf 9/30/2009 00:46", - "name" : "pmm 2/20/2009 13:25" - }, - "class" : { - "codecs" : "lr 7/25/2011 19:46", - "supportsEncoding:" : "lr 7/25/2011 19:46", - "basicForEncoding:" : "lr 7/25/2011 19:46" - } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/GRPharoUtf8CodecStream.class/methodProperties.json b/repository/Grease-Pharo60-Core.package/GRPharoUtf8CodecStream.class/methodProperties.json deleted file mode 100644 index ccf46227..00000000 --- a/repository/Grease-Pharo60-Core.package/GRPharoUtf8CodecStream.class/methodProperties.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "instance" : { - "crlf" : "pmm 4/10/2010 13:28", - "next" : "pmm 2/17/2010 20:09", - "invalidUtf8" : "jf 9/30/2009 00:39", - "greaseNext:putAllFast:startingAt:" : "pmm 5/21/2014 21:28", - "greaseNext:putAll:startingAt:" : "pmm 8/15/2011 21:32", - "encodeDefault:" : "lr 7/25/2011 18:36", - "nextPut:" : "pmm 9/7/2017 14:47", - "nextPutAll:" : "pmm 4/10/2010 13:28", - "next:" : "pmm 8/25/2016 11:00", - "encodeFast:" : "pmm 8/25/2016 11:00" - }, - "class" : { - "initialize" : "lr 7/25/2011 19:46" - } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/Interval.extension/methodProperties.json b/repository/Grease-Pharo60-Core.package/Interval.extension/methodProperties.json deleted file mode 100644 index 15fc20f1..00000000 --- a/repository/Grease-Pharo60-Core.package/Interval.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "any" : "jf 2/6/2010 03:25" - }, - "class" : { } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/MessageSend.extension/methodProperties.json b/repository/Grease-Pharo60-Core.package/MessageSend.extension/methodProperties.json deleted file mode 100644 index e8c80c34..00000000 --- a/repository/Grease-Pharo60-Core.package/MessageSend.extension/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "instance" : { - "fixCallbackTemps" : "pmm 4/23/2007 20:02", - "valueWithPossibleArguments:" : "lr 7/25/2011 19:52", - "argumentCount" : "pmm 1/10/2009 19:22" - }, - "class" : { } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/Number.extension/methodProperties.json b/repository/Grease-Pharo60-Core.package/Number.extension/methodProperties.json deleted file mode 100644 index 4fa9352e..00000000 --- a/repository/Grease-Pharo60-Core.package/Number.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "milliseconds" : "jf 2/6/2010 00:12" - }, - "class" : { } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/Object.extension/methodProperties.json b/repository/Grease-Pharo60-Core.package/Object.extension/methodProperties.json deleted file mode 100644 index 74afa640..00000000 --- a/repository/Grease-Pharo60-Core.package/Object.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "greaseString" : "jf 9/30/2009 01:10" - }, - "class" : { } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/Point.extension/methodProperties.json b/repository/Grease-Pharo60-Core.package/Point.extension/methodProperties.json deleted file mode 100644 index 0404714c..00000000 --- a/repository/Grease-Pharo60-Core.package/Point.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "greaseString" : "pmm 8/25/2016 10:59" - }, - "class" : { } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/PositionableStream.extension/methodProperties.json b/repository/Grease-Pharo60-Core.package/PositionableStream.extension/methodProperties.json deleted file mode 100644 index c3b569c5..00000000 --- a/repository/Grease-Pharo60-Core.package/PositionableStream.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "greaseUpToAll:" : "jf 9/30/2009 01:06" - }, - "class" : { } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/ScaledDecimal.extension/methodProperties.json b/repository/Grease-Pharo60-Core.package/ScaledDecimal.extension/methodProperties.json deleted file mode 100644 index 49427152..00000000 --- a/repository/Grease-Pharo60-Core.package/ScaledDecimal.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "instance" : { - "encodeOn:" : "pmm 8/25/2016 18:52", - "greaseString" : "JohanBrichau 5/25/2015 08:55" - }, - "class" : { } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/SequenceableCollection.extension/methodProperties.json b/repository/Grease-Pharo60-Core.package/SequenceableCollection.extension/methodProperties.json deleted file mode 100644 index 6601bb05..00000000 --- a/repository/Grease-Pharo60-Core.package/SequenceableCollection.extension/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "instance" : { - "endsWithSubCollection:" : "jok 3/22/2010 11:47", - "sorted" : "jf 2/6/2010 02:01", - "beginsWithSubCollection:" : "jok 3/22/2010 11:48" - }, - "class" : { } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/SocketStream.extension/methodProperties.json b/repository/Grease-Pharo60-Core.package/SocketStream.extension/methodProperties.json deleted file mode 100644 index 4ae249e5..00000000 --- a/repository/Grease-Pharo60-Core.package/SocketStream.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "greaseNext:putAll:startingAt:" : "pmm 5/23/2010 08:17" - }, - "class" : { } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/String.extension/methodProperties.json b/repository/Grease-Pharo60-Core.package/String.extension/methodProperties.json deleted file mode 100644 index e2d7308f..00000000 --- a/repository/Grease-Pharo60-Core.package/String.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "greaseString" : "pmm 9/8/2017 13:45" - }, - "class" : { } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/Symbol.extension/methodProperties.json b/repository/Grease-Pharo60-Core.package/Symbol.extension/methodProperties.json deleted file mode 100644 index 17706a33..00000000 --- a/repository/Grease-Pharo60-Core.package/Symbol.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "greaseString" : "pmm 9/9/2017 15:48" - }, - "class" : { } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/TBehavior.extension/methodProperties.json b/repository/Grease-Pharo60-Core.package/TBehavior.extension/methodProperties.json deleted file mode 100644 index 683abe21..00000000 --- a/repository/Grease-Pharo60-Core.package/TBehavior.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "fullName" : "PavelKrivanek 4/21/2017 11:40" - }, - "class" : { } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/WriteStream.extension/methodProperties.json b/repository/Grease-Pharo60-Core.package/WriteStream.extension/methodProperties.json deleted file mode 100644 index 8ae2fa45..00000000 --- a/repository/Grease-Pharo60-Core.package/WriteStream.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "greaseNext:putAll:startingAt:" : "jf 5/22/2010 20:26" - }, - "class" : { } -} \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/monticello.meta/version b/repository/Grease-Pharo60-Core.package/monticello.meta/version deleted file mode 100644 index aad1a40b..00000000 --- a/repository/Grease-Pharo60-Core.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-Pharo60-Core-pmm.11' message 'Remove GRWorkingWriteStream from Pharo 6+ - fixes #51' id 'c3e4c7fa-d131-0d00-aad2-3cac08804022' date '9 September 2018' time '3:30:22.568892 pm' author 'pmm' ancestors ((name 'Grease-Pharo60-Core-pmm.10' message 'Remove GRWorkingWriteStream from Pharo 6+ - fixes #51' id '22e750e4-d131-0d00-b5ec-541402bd4e76' date '9 September 2018' time '3:24:05.672029 pm' author 'pmm' ancestors ((name 'Grease-Pharo60-Core-pmm.9' message 'Fix Symbol >> #greaseString - #46' id '365d1ec1-2315-0d00-978e-af4507fe6076' date '9 September 2017' time '3:53:25.27002 pm' author 'pmm' ancestors ((name 'Grease-Pharo60-Core-pmm.7' message 'Small optimization - avoid table lookup in common case' id 'b99d6b17-1115-0d00-9402-d53004aeb9ca' date '8 September 2017' time '5:37:28.7948 pm' author 'pmm' ancestors ((name 'Grease-Pharo60-Core-pmm.6' message 'Add thisContext method to GRPlatform' id 'b01ff64f-d114-0d00-9d20-ac690c6d599d' date '5 September 2017' time '1:31:59.489145 pm' author 'pmm' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file diff --git a/repository/Grease-Pharo70-Core.package/Behavior.extension/methodProperties.json b/repository/Grease-Pharo70-Core.package/Behavior.extension/methodProperties.json deleted file mode 100644 index 1fcfd666..00000000 --- a/repository/Grease-Pharo70-Core.package/Behavior.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "fullName" : "JohanBrichau 12/9/2017 13:17" - }, - "class" : { } -} \ No newline at end of file diff --git a/repository/Grease-Pharo70-Core.package/monticello.meta/version b/repository/Grease-Pharo70-Core.package/monticello.meta/version deleted file mode 100644 index a434eaec..00000000 --- a/repository/Grease-Pharo70-Core.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-Pharo70-Core-pmm.3' message 'Remove GRWorkingWriteStream from Pharo 6+ - fixes #51' id '6941951f-d231-0d00-becb-c6e70e3dc98b' date '9 September 2018' time '3:40:40.007217 pm' author 'pmm' ancestors ((name 'Grease-Pharo70-Core-JohanBrichau.2' message 'Moved TBehavior>>fullName to Behavior>>fullName' id 'cd354707-491c-0d00-89b9-23ec01d5c93f' date '9 December 2017' time '1:17:57.536518 pm' author 'JohanBrichau' ancestors ((name 'Grease-Pharo70-Core-JohanBrichau.1' message 'branch from Grease-Pharo60-Core-JohanBrichau.4 to start supporting Pharo7 specifics' id '6aaa3511-a51a-0d00-a9b8-5e8804322501' date '18 November 2017' time '4:15:57.894626 pm' author 'JohanBrichau' ancestors () stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file diff --git a/repository/Grease-Slime.package/GRAnsiBooleansRule.class/methodProperties.json b/repository/Grease-Slime.package/GRAnsiBooleansRule.class/methodProperties.json deleted file mode 100644 index 4b5ba396..00000000 --- a/repository/Grease-Slime.package/GRAnsiBooleansRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "lr 2/24/2009 15:37", - "initialize" : "lr 2/24/2009 15:27", - "name" : "lr 2/24/2009 15:37", - "rationale" : "lr 1/25/2010 22:07" } } diff --git a/repository/Grease-Slime.package/GRAnsiCharactersRule.class/methodProperties.json b/repository/Grease-Slime.package/GRAnsiCharactersRule.class/methodProperties.json deleted file mode 100644 index 52437cbe..00000000 --- a/repository/Grease-Slime.package/GRAnsiCharactersRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "lr 7/16/2009 08:35", - "initialize" : "lr 1/25/2010 22:07", - "name" : "lr 7/16/2009 08:35", - "rationale" : "lr 1/25/2010 22:07" } } diff --git a/repository/Grease-Slime.package/GRAnsiCollectionsRule.class/methodProperties.json b/repository/Grease-Slime.package/GRAnsiCollectionsRule.class/methodProperties.json deleted file mode 100644 index d1616b8d..00000000 --- a/repository/Grease-Slime.package/GRAnsiCollectionsRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "lr 2/24/2009 15:37", - "initialize" : "jok 4/23/2010 08:34", - "name" : "lr 2/24/2009 15:37", - "rationale" : "jok 1/26/2010 09:41" } } diff --git a/repository/Grease-Slime.package/GRAnsiConditionalsRule.class/methodProperties.json b/repository/Grease-Slime.package/GRAnsiConditionalsRule.class/methodProperties.json deleted file mode 100644 index 1c5de2b2..00000000 --- a/repository/Grease-Slime.package/GRAnsiConditionalsRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "lr 2/24/2009 15:36", - "initialize" : "lr 2/28/2009 21:38", - "name" : "lr 2/24/2009 15:37", - "rationale" : "lr 1/25/2010 22:07" } } diff --git a/repository/Grease-Slime.package/GRAnsiConvertorRule.class/methodProperties.json b/repository/Grease-Slime.package/GRAnsiConvertorRule.class/methodProperties.json deleted file mode 100644 index b65fcecb..00000000 --- a/repository/Grease-Slime.package/GRAnsiConvertorRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "lr 4/14/2009 00:32", - "initialize" : "jf 12/8/2009 23:17", - "name" : "lr 4/14/2009 00:33", - "rationale" : "lr 1/25/2010 22:07" } } diff --git a/repository/Grease-Slime.package/GRAnsiExceptionsRule.class/methodProperties.json b/repository/Grease-Slime.package/GRAnsiExceptionsRule.class/methodProperties.json deleted file mode 100644 index 212023fd..00000000 --- a/repository/Grease-Slime.package/GRAnsiExceptionsRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "lr 2/24/2009 15:36", - "initialize" : "lr 2/28/2009 21:44", - "name" : "lr 2/24/2009 15:37", - "rationale" : "lr 1/25/2010 22:07" } } diff --git a/repository/Grease-Slime.package/GRAnsiStreamsRule.class/methodProperties.json b/repository/Grease-Slime.package/GRAnsiStreamsRule.class/methodProperties.json deleted file mode 100644 index fa4bbea7..00000000 --- a/repository/Grease-Slime.package/GRAnsiStreamsRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "lr 2/24/2009 15:36", - "initialize" : "lr 2/24/2009 15:29", - "name" : "lr 2/24/2009 15:52", - "rationale" : "lr 1/25/2010 22:07" } } diff --git a/repository/Grease-Slime.package/GRAnsiStringsRule.class/methodProperties.json b/repository/Grease-Slime.package/GRAnsiStringsRule.class/methodProperties.json deleted file mode 100644 index f06345da..00000000 --- a/repository/Grease-Slime.package/GRAnsiStringsRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "jf 12/29/2009 19:44", - "initialize" : "JohanBrichau 1/18/2014 16:39", - "name" : "jf 12/29/2009 19:44", - "rationale" : "lr 1/25/2010 22:07" } } diff --git a/repository/Grease-Slime.package/GRBasicNewInitializeMissingRule.class/methodProperties.json b/repository/Grease-Slime.package/GRBasicNewInitializeMissingRule.class/methodProperties.json deleted file mode 100644 index 329e02f0..00000000 --- a/repository/Grease-Slime.package/GRBasicNewInitializeMissingRule.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "checkClass:" : "pmm 9/2/2012 10:43", - "group" : "jok 1/26/2010 14:20", - "initialize" : "lr 11/2/2009 20:09", - "name" : "lr 2/24/2009 15:35", - "rationale" : "lr 1/25/2010 22:07" } } diff --git a/repository/Grease-Slime.package/GRBlockFormattingRule.class/methodProperties.json b/repository/Grease-Slime.package/GRBlockFormattingRule.class/methodProperties.json deleted file mode 100644 index 840d8771..00000000 --- a/repository/Grease-Slime.package/GRBlockFormattingRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "lr 7/25/2011 16:38", - "initialize" : "lr 7/25/2011 19:55", - "name" : "lr 7/25/2011 16:38", - "rationale" : "lr 7/25/2011 16:39" } } diff --git a/repository/Grease-Slime.package/GRDeprecatedApiProtocolRule.class/methodProperties.json b/repository/Grease-Slime.package/GRDeprecatedApiProtocolRule.class/methodProperties.json deleted file mode 100644 index e81c863c..00000000 --- a/repository/Grease-Slime.package/GRDeprecatedApiProtocolRule.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "checkMethod:" : "JohanBrichau 1/18/2014 16:31", - "group" : "lr 7/26/2011 08:12", - "initialize" : "lr 11/2/2009 20:09", - "name" : "lr 2/24/2009 15:35", - "rationale" : "jok 1/26/2010 14:24" } } diff --git a/repository/Grease-Slime.package/GREmptyStatementsRule.class/methodProperties.json b/repository/Grease-Slime.package/GREmptyStatementsRule.class/methodProperties.json deleted file mode 100644 index c613361e..00000000 --- a/repository/Grease-Slime.package/GREmptyStatementsRule.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "checkMethod:" : "pmm 8/19/2014 09:36", - "group" : "jok 1/26/2010 14:25", - "name" : "lr 9/8/2009 13:59", - "rationale" : "lr 9/8/2009 14:12", - "resetResult" : "lr 9/8/2009 19:15" } } diff --git a/repository/Grease-Slime.package/GRInvalidObjectInitializationRule.class/methodProperties.json b/repository/Grease-Slime.package/GRInvalidObjectInitializationRule.class/methodProperties.json deleted file mode 100644 index 4546ab0d..00000000 --- a/repository/Grease-Slime.package/GRInvalidObjectInitializationRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "checkMethod:" : "jok 3/22/2010 11:51", - "group" : "jok 1/26/2010 14:27", - "name" : "lr 2/24/2009 15:35", - "rationale" : "lr 2/24/2009 15:35" } } diff --git a/repository/Grease-Slime.package/GRNonPortableMessageRule.class/methodProperties.json b/repository/Grease-Slime.package/GRNonPortableMessageRule.class/methodProperties.json deleted file mode 100644 index 318bf927..00000000 --- a/repository/Grease-Slime.package/GRNonPortableMessageRule.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "checkClass:" : "AvO 9/13/2013 14:04", - "group" : "AvO 9/13/2013 13:45", - "methodNames" : "AvO 9/13/2013 14:57", - "name" : "AvO 9/13/2013 14:03", - "rationale" : "AvO 9/13/2013 13:45" } } diff --git a/repository/Grease-Slime.package/GRNonPortableSourceFormatRule.class/methodProperties.json b/repository/Grease-Slime.package/GRNonPortableSourceFormatRule.class/methodProperties.json deleted file mode 100644 index d1dfc46c..00000000 --- a/repository/Grease-Slime.package/GRNonPortableSourceFormatRule.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "checkClass:" : "pmm 2/12/2011 09:54", - "checkMethod:" : "pmm 2/12/2011 09:54", - "group" : "lr 11/8/2010 22:45", - "name" : "lr 11/8/2010 22:45", - "rationale" : "lr 11/8/2010 22:48" } } diff --git a/repository/Grease-Slime.package/GRNotPortableCollectionsRule.class/methodProperties.json b/repository/Grease-Slime.package/GRNotPortableCollectionsRule.class/methodProperties.json deleted file mode 100644 index c23930b3..00000000 --- a/repository/Grease-Slime.package/GRNotPortableCollectionsRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "jok 3/24/2010 12:56", - "initialize" : "jok 3/24/2010 14:52", - "name" : "jok 3/24/2010 12:57", - "rationale" : "jok 3/24/2010 14:33" } } diff --git a/repository/Grease-Slime.package/GRObjectInRule.class/methodProperties.json b/repository/Grease-Slime.package/GRObjectInRule.class/methodProperties.json deleted file mode 100644 index 30986091..00000000 --- a/repository/Grease-Slime.package/GRObjectInRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "jok 1/26/2010 14:55", - "initialize" : "lr 1/25/2010 22:07", - "name" : "lr 9/12/2009 11:09", - "rationale" : "lr 9/12/2009 11:09" } } diff --git a/repository/Grease-Slime.package/GRPackage.extension/methodProperties.json b/repository/Grease-Slime.package/GRPackage.extension/methodProperties.json deleted file mode 100644 index b9b1e4e8..00000000 --- a/repository/Grease-Slime.package/GRPackage.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "greaseSlime" : "lr 2/17/2010 15:22" }, - "instance" : { - } } diff --git a/repository/Grease-Slime.package/GRParensFormattingRule.class/methodProperties.json b/repository/Grease-Slime.package/GRParensFormattingRule.class/methodProperties.json deleted file mode 100644 index 35e557b1..00000000 --- a/repository/Grease-Slime.package/GRParensFormattingRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "lr 7/25/2011 14:44", - "initialize" : "lr 7/25/2011 17:19", - "name" : "lr 7/25/2011 12:20", - "rationale" : "lr 7/25/2011 12:20" } } diff --git a/repository/Grease-Slime.package/GRReturnFormattingRule.class/methodProperties.json b/repository/Grease-Slime.package/GRReturnFormattingRule.class/methodProperties.json deleted file mode 100644 index b64c2c76..00000000 --- a/repository/Grease-Slime.package/GRReturnFormattingRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "lr 7/25/2011 14:44", - "initialize" : "lr 7/25/2011 17:19", - "name" : "lr 7/25/2011 12:04", - "rationale" : "lr 7/25/2011 12:10" } } diff --git a/repository/Grease-Slime.package/GRSlimeBlockLintRule.class/methodProperties.json b/repository/Grease-Slime.package/GRSlimeBlockLintRule.class/methodProperties.json deleted file mode 100644 index 7bd0b7e1..00000000 --- a/repository/Grease-Slime.package/GRSlimeBlockLintRule.class/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "isVisible" : "jok 1/26/2010 14:32" }, - "instance" : { - "category" : "JohanBrichau 6/8/2014 17:58" } } diff --git a/repository/Grease-Slime.package/GRSlimeParseTreeLintRule.class/methodProperties.json b/repository/Grease-Slime.package/GRSlimeParseTreeLintRule.class/methodProperties.json deleted file mode 100644 index 7bd0b7e1..00000000 --- a/repository/Grease-Slime.package/GRSlimeParseTreeLintRule.class/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "isVisible" : "jok 1/26/2010 14:32" }, - "instance" : { - "category" : "JohanBrichau 6/8/2014 17:58" } } diff --git a/repository/Grease-Slime.package/GRSlimeTransformationRule.class/methodProperties.json b/repository/Grease-Slime.package/GRSlimeTransformationRule.class/methodProperties.json deleted file mode 100644 index 069617fd..00000000 --- a/repository/Grease-Slime.package/GRSlimeTransformationRule.class/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "isVisible" : "jok 1/26/2010 14:36" }, - "instance" : { - } } diff --git a/repository/Grease-Slime.package/GRTempsFormattingRule.class/methodProperties.json b/repository/Grease-Slime.package/GRTempsFormattingRule.class/methodProperties.json deleted file mode 100644 index b843ff0d..00000000 --- a/repository/Grease-Slime.package/GRTempsFormattingRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "lr 7/25/2011 12:04", - "initialize" : "lr 7/25/2011 17:20", - "name" : "lr 7/25/2011 12:05", - "rationale" : "lr 7/25/2011 12:10" } } diff --git a/repository/Grease-Slime.package/GRTestAssertionsRule.class/methodProperties.json b/repository/Grease-Slime.package/GRTestAssertionsRule.class/methodProperties.json deleted file mode 100644 index 4b304be9..00000000 --- a/repository/Grease-Slime.package/GRTestAssertionsRule.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "checkMethod:" : "pmm 8/17/2014 12:27", - "group" : "pmm 8/17/2014 11:21", - "initialize" : "pmm 8/17/2014 11:21", - "name" : "pmm 8/17/2014 11:22", - "rationale" : "pmm 8/17/2014 11:55" } } diff --git a/repository/Grease-Slime.package/GRUnnecessaryLastPeriodRule.class/methodProperties.json b/repository/Grease-Slime.package/GRUnnecessaryLastPeriodRule.class/methodProperties.json deleted file mode 100644 index 15c3e6c1..00000000 --- a/repository/Grease-Slime.package/GRUnnecessaryLastPeriodRule.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "checkMethod:" : "pmm 9/14/2013 16:52", - "group" : "pmm 9/1/2012 12:28", - "name" : "pmm 9/1/2012 11:40", - "rationale" : "pmm 9/1/2012 12:03", - "resetResult" : "pmm 9/1/2012 11:39" } } diff --git a/repository/Grease-Slime.package/GRUsesCanPerformOrUnderstandRule.class/methodProperties.json b/repository/Grease-Slime.package/GRUsesCanPerformOrUnderstandRule.class/methodProperties.json deleted file mode 100644 index e6866927..00000000 --- a/repository/Grease-Slime.package/GRUsesCanPerformOrUnderstandRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "pmm 3/29/2012 19:54", - "initialize" : "lr 3/30/2012 09:14", - "name" : "pmm 3/29/2012 19:55", - "rationale" : "lr 3/30/2012 09:15" } } diff --git a/repository/Grease-Slime.package/GRUsesClassForHashRule.class/methodProperties.json b/repository/Grease-Slime.package/GRUsesClassForHashRule.class/methodProperties.json deleted file mode 100644 index 3fd33818..00000000 --- a/repository/Grease-Slime.package/GRUsesClassForHashRule.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "checkMethod:" : "lr 10/14/2010 09:08", - "group" : "lr 10/14/2010 09:04", - "initialize" : "lr 10/14/2010 09:07", - "name" : "lr 10/14/2010 09:05", - "rationale" : "lr 10/14/2010 09:06" } } diff --git a/repository/Grease-Slime.package/GRUsesCurlyBraceArraysRule.class/methodProperties.json b/repository/Grease-Slime.package/GRUsesCurlyBraceArraysRule.class/methodProperties.json deleted file mode 100644 index 3dcc01bf..00000000 --- a/repository/Grease-Slime.package/GRUsesCurlyBraceArraysRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "jok 1/26/2010 14:33", - "initialize" : "lr 1/25/2010 22:07", - "name" : "lr 2/24/2009 15:35", - "rationale" : "lr 2/24/2009 15:35" } } diff --git a/repository/Grease-Slime.package/GRUsesLiteralByteArraysRule.class/methodProperties.json b/repository/Grease-Slime.package/GRUsesLiteralByteArraysRule.class/methodProperties.json deleted file mode 100644 index 98611301..00000000 --- a/repository/Grease-Slime.package/GRUsesLiteralByteArraysRule.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "group" : "jok 1/26/2010 15:58", - "initialize" : "lr 1/25/2010 22:07", - "name" : "lr 2/24/2009 15:35", - "rationale" : "lr 2/24/2009 15:35" } } diff --git a/repository/Grease-Slime.package/GRUsesMethodAnnotationsRule.class/methodProperties.json b/repository/Grease-Slime.package/GRUsesMethodAnnotationsRule.class/methodProperties.json deleted file mode 100644 index 3a6642c8..00000000 --- a/repository/Grease-Slime.package/GRUsesMethodAnnotationsRule.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "checkMethod:" : "pmm 9/2/2012 10:27", - "group" : "jok 1/26/2010 15:58", - "name" : "lr 2/27/2009 21:49", - "rationale" : "lr 2/27/2009 21:52", - "shouldExclude:" : "pmm 4/1/2013 13:45" } } diff --git a/repository/Grease-Slime.package/GRUsesNotPortableClassRule.class/methodProperties.json b/repository/Grease-Slime.package/GRUsesNotPortableClassRule.class/methodProperties.json deleted file mode 100644 index e5b38a64..00000000 --- a/repository/Grease-Slime.package/GRUsesNotPortableClassRule.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "checkClass:" : "lr 2/27/2009 22:14", - "checkMethod:" : "topa 3/25/2014 10:09", - "classNames" : "jf 12/18/2009 14:16", - "group" : "jok 1/26/2010 14:16", - "name" : "lr 2/24/2009 15:35", - "rationale" : "lr 2/24/2009 15:35" } } diff --git a/repository/Grease-Slime.package/monticello.meta/version b/repository/Grease-Slime.package/monticello.meta/version deleted file mode 100644 index fd7ec8c3..00000000 --- a/repository/Grease-Slime.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-Slime-pmm.29' message '- lint fixes' id '0d72147b-a194-41f1-b949-5de649c2e63a' date '19 August 2014' time '9:38:45 am' author 'pmm' ancestors ((name 'Grease-Slime-pmm.28' message 'Issue 777: Make TestCase >> #fail SLime rule' id '1e31208a-5f9c-4bcc-917e-365b8971da02' date '17 August 2014' time '12:29:07 pm' author 'pmm' ancestors ((name 'Grease-Slime-JohanBrichau.27' message '- Slime rules were not appearing in a category in the Pharo3 critics browser - Bugfix empty statement detection rule (crashes in Pharo3)' id '3125304b-c2a6-41cd-9804-15d1fec84833' date '8 June 2014' time '6:01:12.137052 pm' author 'JohanBrichau' ancestors ((name 'Grease-Slime-topa.26' message 'Use (ironically )more portable variant to check for class references in a Method' id '13ddba5d-32b6-4745-8898-62e8584bf058' date '25 March 2014' time '10:28:36.219 am' author 'topa' ancestors ((name 'Grease-Slime-JohanBrichau.25' message 'Fixed failing test in Pharo3.0 by replacing senders of #isLiteral with #isLiteralNode (the former being deprecated since Pharo1.4)' id '7a5e0938-07f9-45f0-b061-2a1aafafaa58' date '18 January 2014' time '4:40:22.938705 pm' author 'JohanBrichau' ancestors ((name 'Grease-Slime-pmm.24' message '- Slime' id 'd28fa15e-5eac-4160-bb27-4dc655858db4' date '14 September 2013' time '4:53:18 pm' author 'pmm' ancestors ((name 'Grease-Slime-pmm.23' message '- Slime' id '97acedcb-aaff-4ec4-976c-cea3775aed5b' date '14 September 2013' time '4:50:45 pm' author 'pmm' ancestors ((name 'Grease-Slime-pmm.22' message '- merge commit' id 'c68be1a4-baa0-42f5-8b03-aa0006b7c506' date '14 September 2013' time '8:47:40 am' author 'pmm' ancestors ((name 'Grease-Slime-pmm.21' message 'Issue 741: #includesSubString: deprecated in Pharo 2.0 http://code.google.com/p/seaside/issues/detail?id=741' id 'f701a809-7c35-4544-ac47-ad2e388887a1' date '13 September 2013' time '9:53:50 am' author 'pmm' ancestors ((name 'Grease-Slime-pmm.20' message '- replaced senders of #includesSubString by #indexOfSubCollection:startingAt: - port from with 3.0' id '9d92108a-1c2b-4c19-9ba4-a61961261355' date '1 April 2013' time '1:48:39 pm' author 'pmm' ancestors ((name 'Grease-Slime-pmm.19' message '- allow -REST- packages to contain pragmas' id '4d8710a4-0855-442f-9a46-81934184c01e' date '3 September 2012' time '4:33:02 pm' author 'pmm' ancestors ((name 'Grease-Slime-pmm.18' message '- add rule to detect unnecessary last period' id 'eea1fba7-a231-4ad1-969b-bf92ffd73a3c' date '1 September 2012' time '12:29:57 pm' author 'pmm' ancestors ((name 'Grease-Slime-lr.17' message '- fix GRUsesCanPerformOrUnderstandRule' id '6c9cf6e5-02d6-4750-892a-d14483cfdb03' date '30 March 2012' time '9:16:52 am' author 'lr' ancestors ((name 'Grease-Slime-pmm.16' message '- add rule for #canPerform: or #canUnderstand:' id '70c4f15d-856c-4bf0-9dab-9e8dc8b57645' date '29 March 2012' time '8:00:32 pm' author 'pmm' ancestors ((name 'Grease-Slime-pmm.15' message '- classes in -Pharo- packages are allowed to use non-portable classes' id '21821e7f-c961-4eb0-8711-173137497e8c' date '22 January 2012' time '5:24:42 pm' author 'pmm' ancestors ((name 'Grease-Slime-lr.14' message '- removed unused extension' id '821507ca-30cc-48e7-903e-ea3f2b995793' date '8 September 2011' time '11:33:07 pm' author 'lr' ancestors ((name 'Grease-Slime-lr.13' message '- fixed grouping of deprecated api rule' id 'f3379224-3e52-486c-a0d2-38637dab4244' date '26 July 2011' time '10:22:15 am' author 'lr' ancestors ((name 'Grease-Slime-lr.12' message '- also detect issues in nested blocks' id 'e9c3473c-d638-4a83-9f18-7dcc2cab4935' date '25 July 2011' time '7:56:10 pm' author 'lr' ancestors ((name 'Grease-Slime-lr.11' message '- be more strict about block formatting' id '2650eac9-2d70-4070-b132-7298674c2025' date '25 July 2011' time '7:16:27 pm' author 'lr' ancestors ((name 'Grease-Slime-lr.10' message '- fixed a bug' id '99f423c9-5db6-46d3-a383-8a9d6ccd0c28' date '25 July 2011' time '6:14:40 pm' author 'lr' ancestors ((name 'Grease-Slime-lr.9' message '- added some tests for spacing (in parenthesis, return statements, blocks and temps)' id '0242fe95-c51f-47e0-8663-1616ee1920c6' date '25 July 2011' time '5:33:01 pm' author 'lr' ancestors ((name 'Grease-Slime-pmm.8' message '- check individual literals for WideStrings as well - check class comment for WideStrings as well' id 'c0dc2754-0c78-42a9-87df-7d149e9a2910' date '12 February 2011' time '10:09:06 am' author 'pmm' ancestors ((name 'Grease-Slime-lr.7' message '- added a rule to detect WideString source' id '10c04775-7a8b-4ca8-8d7a-e7bb090f399f' date '8 November 2010' time '10:54:27 pm' author 'lr' ancestors ((name 'Grease-Slime-lr.6' message '- added a rule decting the use of "self class hash", which does not work in GemStone - fixed findTokens: rule' id '362db39b-54d8-413a-9c70-5dee24407f4d' date '14 October 2010' time '9:44:52 am' author 'lr' ancestors ((name 'Grease-Slime-jok.5' message 'Use #reverse (ANSI) rather than #reversed' id 'ec9be1fc-6e29-a741-8666-9b052af49625' date '23 April 2010' time '8:45:21 am' author 'jok' ancestors ((name 'Grease-Slime-jok.4' message '- http://code.google.com/p/seaside/issues/detail?id=555 - add #beginsWithSubCollection: and #endsWithSubCollection:' id '9bf79761-74b7-5a40-8adc-21b7ab9aab00' date '25 March 2010' time '8:29:38 am' author 'jok' ancestors ((name 'Grease-Slime-lr.3' message '- added explicit repository url' id 'ebebbd56-1d42-4f52-87e0-db690abd61f5' date '17 February 2010' time '3:55:22 pm' author 'lr' ancestors ((name 'Grease-Slime-jok.2' message 'Fix a couple rules that still had a Seaside group' id '363a8283-e666-6344-90a9-9a82abad98f9' date '26 January 2010' time '4:01:30 pm' author 'jok' ancestors ((name 'Grease-Slime-jok.1' message 'Promote Grease-related portions of Slime' id 'ab805d1f-3934-f54d-af21-d64f60091319' date '26 January 2010' time '3:30:35 pm' author 'jok' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Grease-Slime-AvO.21' message 'Added GRNonPortableMessageRule with methods #( anyOne withIndexCollect: ). See issue http://code.google.com/p/seaside/issues/detail?id=769`.' id '950c6c66-30f7-5948-913b-5cef157d1f0f' date '13 September 2013' time '3:14:08 pm' author 'AvO' ancestors ((id '9d92108a-1c2b-4c19-9ba4-a61961261355')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file diff --git a/repository/Grease-Squeak-Core.package/GRSqueakPlatform.class/methodProperties.json b/repository/Grease-Squeak-Core.package/GRSqueakPlatform.class/methodProperties.json deleted file mode 100644 index 34a4e0b6..00000000 --- a/repository/Grease-Squeak-Core.package/GRSqueakPlatform.class/methodProperties.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "class" : { - "initialize" : "JohnMcKeon 3/19/2015 22:16" }, - "instance" : { - "defaultDirectoryPathString" : "pmm 7/15/2015 15:07", - "deleteFile:inFolder:" : "JohnMcKeon 12/26/2014 19:35", - "directoriesIn:" : "JohnMcKeon 12/31/2014 09:23", - "doSilently:" : "JohnMcKeon 12/26/2014 19:36", - "ensureExistenceOfFolder:" : "JohnMcKeon 12/31/2014 09:32", - "fileExists:" : "JohnMcKeon 12/31/2014 09:35", - "fileNameFor:" : "pmm 7/15/2015 16:48", - "fileStreamOn:do:binary:" : "pmm 7/15/2015 14:47", - "filesIn:" : "JohnMcKeon 12/26/2014 19:35", - "isDirectory:" : "pmm 7/15/2015 15:21", - "localNameOf:" : "JohnMcKeon 12/27/2014 11:04", - "pathSeparator" : "JohnMcKeon 12/26/2014 19:35", - "write:toFile:inFolder:" : "JohnMcKeon 12/26/2014 19:36" } } diff --git a/repository/Grease-Squeak-Core.package/Object.extension/methodProperties.json b/repository/Grease-Squeak-Core.package/Object.extension/methodProperties.json deleted file mode 100644 index d4e637d1..00000000 --- a/repository/Grease-Squeak-Core.package/Object.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "sizeInMemory" : "cmm 10/7/2015 10:22" } } diff --git a/repository/Grease-Squeak-Core.package/SmallInteger.extension/methodProperties.json b/repository/Grease-Squeak-Core.package/SmallInteger.extension/methodProperties.json deleted file mode 100644 index 2a06daf2..00000000 --- a/repository/Grease-Squeak-Core.package/SmallInteger.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "sizeInMemory" : "pmm 7/15/2015 16:31" } } diff --git a/repository/Grease-Squeak-Core.package/monticello.meta/version b/repository/Grease-Squeak-Core.package/monticello.meta/version deleted file mode 100644 index 592642f1..00000000 --- a/repository/Grease-Squeak-Core.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-Squeak-Core-JohanBrichau.6' message 'Object>>#sizeInMemory asks #isCompact to determine the number of bytes, but this has been removed from Squeak. Thanks Chris Muller' id '5899d218-fe39-41b2-880a-d052b41d0d63' date '24 October 2015' time '5:24:10.125 pm' author 'JB' ancestors ((name 'Grease-Squeak-Core-pmm.5' message '- add #sizeInMemory to Squeak' id '407fc250-3664-4ffb-ae92-17102efa6e47' date '15 July 2015' time '6:09:33.359 pm' author 'pmm' ancestors ((name 'Grease-Squeak-Core-pmm.4' message '- add more missing methods' id '1e5dee9a-f686-43eb-91e2-5942fe6143d5' date '15 July 2015' time '3:34:35.74 pm' author 'pmm' ancestors ((name 'Grease-Squeak-Core-pmm.3' message '- implement missing method' id '3683851e-6da7-4972-afa0-f4928390b3a9' date '15 July 2015' time '2:48:40.968 pm' author 'pmm' ancestors ((name 'Grease-Squeak-Core-JohnMcKeon.2' message '-add override of class initialize method' id '22c9a55a-0754-2a4c-8028-482fa4ffc669' date '19 March 2015' time '10:18:53.936 pm' author 'JohnMcKeon' ancestors ((name 'Grease-Squeak-Core-JohnMcKeon.1' message '-grease for squeak' id '76e50246-7376-7f43-9e50-daa9d7108db6' date '16 March 2015' time '9:14:49.119 pm' author 'JohnMcKeon' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) 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 fe28fb35..00000000 --- a/repository/Grease-Squeak5-Core.package/Behavior.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "fullName" : "lr 7/25/2011 19: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 641628e4..00000000 --- a/repository/Grease-Squeak5-Core.package/BlockClosure.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "fixCallbackTemps" : "lr 4/8/2009 13:33", - "valueWithPossibleArguments:" : "lr 4/8/2009 13:36" } } 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 73532ed7..00000000 --- a/repository/Grease-Squeak5-Core.package/BlockContext.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "fixCallbackTemps" : "lr 10/28/2007 14:42", - "tempVarRefs" : "lr 8/25/2007 16:26", - "valueWithPossibleArguments:" : "lr 7/25/2011 19:50" } } 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 add0c68e..00000000 --- a/repository/Grease-Squeak5-Core.package/ByteArray.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : "jf 9/30/2009 01:10" } } 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 accbae78..00000000 --- a/repository/Grease-Squeak5-Core.package/Character.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseInteger" : "jf 9/30/2009 01:04" } } 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 3196464b..00000000 --- a/repository/Grease-Squeak5-Core.package/Collection.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "any" : "jf 2/6/2010 00:41" } } 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 018f4c60..00000000 --- a/repository/Grease-Squeak5-Core.package/Duration.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - "milliseconds:" : "jf 2/6/2010 00:12" }, - "instance" : { - "asMilliseconds" : "jf 2/5/2010 23:58", - "milliseconds" : "jf 2/6/2010 00:02" } } 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 4dd2cf88..00000000 --- a/repository/Grease-Squeak5-Core.package/GRDelegatingStream.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseNext:putAll:startingAt:" : "pmm 12/28/2010 22:13" } } 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 07f78ce3..00000000 --- a/repository/Grease-Squeak5-Core.package/GRDynamicVariable.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - "default" : "JB 7/23/2017 19:09", - "defaultValue" : "JB 7/23/2017 19:09", - "use:during:" : "MaxLeske 5/25/2017 15:27" }, - "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 21efe367..00000000 --- a/repository/Grease-Squeak5-Core.package/GRPackage.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "greaseSqueak5Core" : "TravisCI 8/23/2016 10:53" }, - "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 5fe65894..00000000 --- a/repository/Grease-Squeak5-Core.package/GRPharoConverterCodecStream.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "class" : { - "on:converter:" : "pmm 10/30/2010 18:58" }, - "instance" : { - "greaseNext:putAll:startingAt:" : "pmm 12/28/2010 22:12", - "initializeOn:converter:" : "pmm 10/30/2010 18:58", - "next" : "pmm 4/10/2010 13:32", - "next:" : "lr 2/7/2009 12:57", - "nextPut:" : "pmm 4/10/2010 13:30", - "nextPutAll:" : "lr 2/7/2009 12:54" } } 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 5a10058b..00000000 --- a/repository/Grease-Squeak5-Core.package/GRPharoGenericCodec.class/methodProperties.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "class" : { - "basicForEncoding:" : "pmm 6/28/2009 15:43", - "codecs" : "pmm 8/19/2014 10:04", - "supportedEncodingNames" : "lr 7/25/2011 19:46", - "supportsEncoding:" : "pmm 6/28/2009 16:43" }, - "instance" : { - "converter" : "lr 7/25/2011 19:51", - "decoderFor:" : "lr 2/7/2009 12:52", - "encoderFor:" : "jf 9/30/2009 00:46", - "initializeWithName:" : "pmm 8/16/2010 11:52", - "name" : "lr 2/7/2009 10:16", - "url" : "lr 2/7/2009 12:36" } } 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 92c046e8..00000000 --- a/repository/Grease-Squeak5-Core.package/GRPharoLatin1Codec.class/methodProperties.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "class" : { - "basicForEncoding:" : "pmm 8/16/2010 00:36", - "codecs" : "lr 7/25/2011 19:46", - "supportedEncodingNames" : "lr 7/25/2011 19:46", - "supportsEncoding:" : "pmm 8/16/2010 00:36" }, - "instance" : { - "decode:" : "pmm 8/19/2014 10:00", - "decoderFor:" : "pmm 8/16/2010 00:32", - "encoderFor:" : "pmm 8/16/2010 00:32", - "initializeWithName:" : "pmm 9/1/2012 15:32", - "name" : "pmm 8/16/2010 00:32" } } 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 c3e59bc2..00000000 --- a/repository/Grease-Squeak5-Core.package/GRPharoLatin1CodecStream.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "next" : "pmm 9/14/2013 09:50", - "next:" : "lr 7/25/2011 19:50" } } 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 efb9f322..00000000 --- a/repository/Grease-Squeak5-Core.package/GRPharoPlatform.class/methodProperties.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "class" : { - "initialize" : "pmm 5/20/2010 11:49", - "initializeUrlTable" : "pmm 5/20/2010 20:56", - "initializeXmlTable" : "pmm 5/20/2010 20:56", - "unload" : "jf 1/22/2009 02:45" }, - "instance" : { - "addToShutDownList:" : "jf 1/21/2009 17:31", - "addToStartUpList:" : "jf 1/21/2009 17:31", - "asMethodReturningByteArray:named:" : "lr 7/25/2011 19:51", - "asMethodReturningByteArrayLiteral:named:" : "lr 7/25/2011 19:51", - "asMethodReturningByteArrayWithCache:named:" : "pmm 2/20/2009 17:44", - "base64Decode:" : "jf 1/21/2009 17:31", - "bindingOf:" : "pmm 8/23/2014 11:42", - "compile:into:classified:" : "pmm 8/13/2010 11:52", - "contentsOfFile:binary:" : "lr 7/25/2011 19:51", - "deprecationExceptionSet" : "pmm 2/16/2014 23:12", - "directoriesIn:" : "NickAger 3/9/2012 11:33", - "doSilently:" : "JohanBrichau 9/10/2013 11:39", - "ensureExistenceOfFolder:" : "jf 1/21/2009 17:31", - "fileExists:" : "pmm 7/16/2015 16:36", - "fileStreamOn:do:binary:" : "pmm 7/16/2015 16:39", - "filesIn:" : "lr 7/25/2011 19:51", - "isProcessTerminated:" : "jf 2/6/2009 15:58", - "label" : "jf 2/9/2010 00:56", - "localNameOf:" : "lr 7/25/2011 19:51", - "newRandom" : "pmm 10/7/2010 13:10", - "newline" : "pmm 9/14/2013 09:56", - "openDebuggerOn:" : "pmm 1/22/2012 16:31", - "pathSeparator" : "pmm 2/5/2011 09:52", - "readWriteByteStream" : "lr 11/20/2011 17:16", - "readWriteCharacterStream" : "dkh 9/4/2009 09:14", - "removeFromShutDownList:" : "jf 1/21/2009 17:31", - "removeFromStartUpList:" : "jf 1/21/2009 17:31", - "removeSelector:from:" : "jf 1/21/2009 17:31", - "secureHashFor:" : "jf 1/21/2009 17:31", - "semaphoreClass" : "lr 7/25/2011 19:51", - "stackDepth" : "jf 1/21/2009 17:31", - "terminateProcess:" : "jf 2/6/2009 15:59", - "thisContext" : "pmm 9/5/2017 14:01", - "useByteArrayLiterals" : "pmm 2/11/2011 07:27", - "weakDictionaryOfSize:" : "lr 7/25/2011 19:51", - "write:toFile:inFolder:" : "pmm 8/19/2014 10:11", - "writeCharacterStreamOn:" : "pmm 8/26/2011 09: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 cedc66aa..00000000 --- a/repository/Grease-Squeak5-Core.package/GRPharoRandomProvider.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "class" : { - "initialize" : "jgf 1/25/2009 12:05", - "nextInt:" : "lr 7/25/2011 19:46", - "randomClass" : "lr 7/25/2011 19:46", - "randomFrom:" : "lr 7/25/2011 18:28", - "startUp" : "pmm 1/10/2009 16:01", - "unload" : "jf 9/30/2009 00:19" }, - "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 cf1f05f1..00000000 --- a/repository/Grease-Squeak5-Core.package/GRPharoUtf8Codec.class/methodProperties.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "class" : { - "basicForEncoding:" : "lr 7/25/2011 19:46", - "codecs" : "lr 7/25/2011 19:46", - "supportsEncoding:" : "lr 7/25/2011 19:46" }, - "instance" : { - "decode:" : "pmm 2/17/2012 19:45", - "decoderFor:" : "jf 9/30/2009 00:46", - "encoderFor:" : "jf 9/30/2009 00:46", - "invalidUtf8" : "pmm 9/14/2013 09:37", - "name" : "pmm 2/20/2009 13:25", - "url" : "pmm 2/20/2009 12:50" } } 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 d5942a3a..00000000 --- a/repository/Grease-Squeak5-Core.package/GRPharoUtf8CodecStream.class/methodProperties.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "class" : { - "initialize" : "lr 7/25/2011 19:46" }, - "instance" : { - "crlf" : "pmm 4/10/2010 13:28", - "encodeDefault:" : "lr 7/25/2011 18:36", - "encodeFast:" : "pmm 9/1/2012 15:25", - "greaseNext:putAll:startingAt:" : "pmm 5/21/2014 21:33", - "greaseNext:putAllFast:startingAt:" : "pmm 5/21/2014 21:19", - "invalidUtf8" : "jf 9/30/2009 00:39", - "next" : "pmm 2/17/2010 20:09", - "next:" : "pmm 9/1/2012 15:25", - "nextPut:" : "lr 7/25/2011 19:51", - "nextPutAll:" : "pmm 4/10/2010 13:28" } } 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 9dbcc9c5..00000000 --- a/repository/Grease-Squeak5-Core.package/GRSmallDictionary.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "customizeExplorerContents" : "lr 7/25/2011 19:51", - "explorerContents" : "lr 7/25/2011 19:51", - "hasContentsInExplorer" : "lr 7/25/2011 19:51" } } 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 34a4e0b6..00000000 --- a/repository/Grease-Squeak5-Core.package/GRSqueakPlatform.class/methodProperties.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "class" : { - "initialize" : "JohnMcKeon 3/19/2015 22:16" }, - "instance" : { - "defaultDirectoryPathString" : "pmm 7/15/2015 15:07", - "deleteFile:inFolder:" : "JohnMcKeon 12/26/2014 19:35", - "directoriesIn:" : "JohnMcKeon 12/31/2014 09:23", - "doSilently:" : "JohnMcKeon 12/26/2014 19:36", - "ensureExistenceOfFolder:" : "JohnMcKeon 12/31/2014 09:32", - "fileExists:" : "JohnMcKeon 12/31/2014 09:35", - "fileNameFor:" : "pmm 7/15/2015 16:48", - "fileStreamOn:do:binary:" : "pmm 7/15/2015 14:47", - "filesIn:" : "JohnMcKeon 12/26/2014 19:35", - "isDirectory:" : "pmm 7/15/2015 15:21", - "localNameOf:" : "JohnMcKeon 12/27/2014 11:04", - "pathSeparator" : "JohnMcKeon 12/26/2014 19:35", - "write:toFile:inFolder:" : "JohnMcKeon 12/26/2014 19:36" } } 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 e8d4055e..00000000 --- a/repository/Grease-Squeak5-Core.package/GRWorkingWriteStream.class/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "reset" : "pmm 8/26/2011 09:39" } } 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 1dedf542..00000000 --- a/repository/Grease-Squeak5-Core.package/Interval.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "any" : "jf 2/6/2010 03:25" } } 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 78bb2233..00000000 --- a/repository/Grease-Squeak5-Core.package/MessageSend.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "argumentCount" : "pmm 1/10/2009 19:22", - "fixCallbackTemps" : "pmm 4/23/2007 20:02", - "valueWithPossibleArguments:" : "lr 7/25/2011 19:52" } } 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 977cd782..00000000 --- a/repository/Grease-Squeak5-Core.package/Number.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "milliseconds" : "jf 2/6/2010 00:12" } } 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 c0906e2e..00000000 --- a/repository/Grease-Squeak5-Core.package/Object.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : "jf 9/30/2009 01:10", - "sizeInMemory" : "cmm 10/7/2015 10:22" } } 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 353fca89..00000000 --- a/repository/Grease-Squeak5-Core.package/Point.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : "pmm 3/4/2012 20:24" } } 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 cfb79423..00000000 --- a/repository/Grease-Squeak5-Core.package/PositionableStream.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseUpToAll:" : "jf 9/30/2009 01:06" } } 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 90d07924..00000000 --- a/repository/Grease-Squeak5-Core.package/ScaledDecimal.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "encodeOn:" : "TravisCI 8/27/2016 15:16", - "greaseString" : "JohanBrichau 7/15/2015 13:26" } } 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 c683223d..00000000 --- a/repository/Grease-Squeak5-Core.package/SequenceableCollection.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "beginsWithSubCollection:" : "jok 3/22/2010 11:48", - "endsWithSubCollection:" : "jok 3/22/2010 11:47", - "sorted" : "jf 2/6/2010 02:01" } } 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 2a06daf2..00000000 --- a/repository/Grease-Squeak5-Core.package/SmallInteger.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "sizeInMemory" : "pmm 7/15/2015 16:31" } } 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 8f430aea..00000000 --- a/repository/Grease-Squeak5-Core.package/SocketStream.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseNext:putAll:startingAt:" : "pmm 5/23/2010 08:17" } } 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 6be2c59e..00000000 --- a/repository/Grease-Squeak5-Core.package/String.extension/methodProperties.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "substrings:" : "JB 5/25/2017 13:53", - "trimBoth" : "lr 10/25/2009 11:13", - "trimBoth:" : "lr 10/25/2009 11:11", - "trimLeft" : "lr 10/25/2009 11:14", - "trimLeft:" : "lr 10/25/2009 11:11", - "trimLeft:right:" : "lr 10/25/2009 11:15", - "trimRight" : "lr 10/25/2009 11:14", - "trimRight:" : "lr 10/25/2009 11:11" } } 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 e8241b94..00000000 --- a/repository/Grease-Squeak5-Core.package/WriteStream.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseNext:putAll:startingAt:" : "jf 5/22/2010 20:26" } } 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 8a77fa24..00000000 --- a/repository/Grease-Squeak5-Core.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-Squeak5-Core-pmm.15' message 'merged by GitFileTree-MergeDriver' id '371d21b0-9501-409b-a3e3-23aa2c72e9fc' date '9 September 2017' time '1:17:23.835601 pm' author 'pmm' ancestors ((name 'Grease-Squeak5-Core-pmm.14' message 'Add thisContext' id 'dd836b86-16d0-4f0d-9d35-7e572a59a8f3' date '5 September 2017' time '2:01:56.84062 pm' author 'pmm' ancestors ((name 'Grease-Squeak5-Core-JB.13' message 'Added GRDynamicVariable class>>defaultValue to represent the default value of a GRDynamicVariable. Previously, this was GRDynamicvariable>>default but this was not compatible for all platforms' id '6955c3a9-de92-4175-9b24-c31ea518b375' date '23 July 2017' time '7:11:15.582275 pm' author 'JB' ancestors ((name 'Grease-Squeak5-Core-JB.12' message 'merged by GitFileTree-MergeDriver' id '03f0d322-a928-4979-8f10-4df0e0b9642e' date '25 May 2017' time '3:36:05.857645 pm' author 'JB' ancestors ((name 'Grease-Squeak5-Core-JB.11' message 'Added String>>substrings: method' id '1a829fc4-8f63-4ff5-a23f-33fbbea10ed2' date '25 May 2017' time '1:54:48.525961 pm' author 'JB' ancestors ((name 'Grease-Squeak5-Core-TravisCI.10' message 'fix Squeak 5 tests' id '12f060db-b04d-420d-bb5d-a7d6e547680d' date '27 August 2016' time '3:19:34.029733 pm' author 'TravisCI' ancestors ((name 'Grease-Squeak5-Core-TravisCI.9' message 'extension methods to make tests work' id 'ec38e1f9-bef2-4390-a8df-d7792084be52' date '23 August 2016' time '11:03:45.642 am' author 'TravisCI' ancestors ((name 'Grease-Squeak5-Core-JB.8' message 'New package from Squeak5 onwards' id 'e3b34f8f-b14d-4fb1-95b8-86670bb48ed6' date '11 November 2015' time '1:12:31.115 pm' author 'JB' ancestors ((name 'Grease-Squeak-Core-JB.7' message 'Moved methods from Pharo-Core to Squeak-Core' id 'd870beb8-0de8-4e72-a73b-5f7e569fd859' date '11 November 2015' time '1:07:25.226 pm' author 'JB' ancestors ((name 'Grease-Squeak-Core-JohanBrichau.6' message 'Object>>#sizeInMemory asks #isCompact to determine the number of bytes, but this has been removed from Squeak. Thanks Chris Muller' id '5899d218-fe39-41b2-880a-d052b41d0d63' date '24 October 2015' time '5:24:10.125 pm' author 'JB' ancestors ((name 'Grease-Squeak-Core-pmm.5' message '- add #sizeInMemory to Squeak' id '407fc250-3664-4ffb-ae92-17102efa6e47' date '15 July 2015' time '6:09:33.359 pm' author 'pmm' ancestors ((name 'Grease-Squeak-Core-pmm.4' message '- add more missing methods' id '1e5dee9a-f686-43eb-91e2-5942fe6143d5' date '15 July 2015' time '3:34:35.74 pm' author 'pmm' ancestors ((name 'Grease-Squeak-Core-pmm.3' message '- implement missing method' id '3683851e-6da7-4972-afa0-f4928390b3a9' date '15 July 2015' time '2:48:40.968 pm' author 'pmm' ancestors ((name 'Grease-Squeak-Core-JohnMcKeon.2' message '-add override of class initialize method' id '22c9a55a-0754-2a4c-8028-482fa4ffc669' date '19 March 2015' time '10:18:53.936 pm' author 'JohnMcKeon' ancestors ((name 'Grease-Squeak-Core-JohnMcKeon.1' message '-grease for squeak' id '76e50246-7376-7f43-9e50-daa9d7108db6' date '16 March 2015' time '9:14:49.119 pm' author 'JohnMcKeon' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Grease-Squeak5-Core-MaxLeske.10' message '* added GRDynamicVariable' id '32ec7b60-10cb-40f8-938d-792e9f0a94be' date '25 May 2017' time '3:32:18.967355 pm' author 'MaxLeske' ancestors ((id 'ec38e1f9-bef2-4390-a8df-d7792084be52')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Grease-Squeak5-Core-JB.14' message 'merged by GitFileTree-MergeDriver' id 'fb197328-280c-44d6-b4c6-36c9100bdb86' date '23 July 2017' time '11:33:53.206508 am' author 'JB' ancestors ((id '6955c3a9-de92-4175-9b24-c31ea518b375')) stepChildren ())) stepChildren ()) \ No newline at end of file diff --git a/repository/Grease-Squeak6-Core.package/Behavior.extension/methodProperties.json b/repository/Grease-Squeak6-Core.package/Behavior.extension/methodProperties.json deleted file mode 100644 index fe28fb35..00000000 --- a/repository/Grease-Squeak6-Core.package/Behavior.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "fullName" : "lr 7/25/2011 19:45" } } diff --git a/repository/Grease-Squeak6-Core.package/BlockClosure.extension/methodProperties.json b/repository/Grease-Squeak6-Core.package/BlockClosure.extension/methodProperties.json deleted file mode 100644 index c0579c06..00000000 --- a/repository/Grease-Squeak6-Core.package/BlockClosure.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "fixCallbackTemps" : "lr 4/8/2009 13:33", - "valueWithPossibleArguments:" : "topa 11/15/2017 16:19" } } diff --git a/repository/Grease-Squeak6-Core.package/ByteArray.extension/methodProperties.json b/repository/Grease-Squeak6-Core.package/ByteArray.extension/methodProperties.json deleted file mode 100644 index add0c68e..00000000 --- a/repository/Grease-Squeak6-Core.package/ByteArray.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : "jf 9/30/2009 01:10" } } diff --git a/repository/Grease-Squeak6-Core.package/Character.extension/methodProperties.json b/repository/Grease-Squeak6-Core.package/Character.extension/methodProperties.json deleted file mode 100644 index 8a68c224..00000000 --- a/repository/Grease-Squeak6-Core.package/Character.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseInteger" : "topa 11/15/2017 17:25" } } diff --git a/repository/Grease-Squeak6-Core.package/Collection.extension/methodProperties.json b/repository/Grease-Squeak6-Core.package/Collection.extension/methodProperties.json deleted file mode 100644 index 3196464b..00000000 --- a/repository/Grease-Squeak6-Core.package/Collection.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "any" : "jf 2/6/2010 00:41" } } diff --git a/repository/Grease-Squeak6-Core.package/Duration.extension/methodProperties.json b/repository/Grease-Squeak6-Core.package/Duration.extension/methodProperties.json deleted file mode 100644 index 018f4c60..00000000 --- a/repository/Grease-Squeak6-Core.package/Duration.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - "milliseconds:" : "jf 2/6/2010 00:12" }, - "instance" : { - "asMilliseconds" : "jf 2/5/2010 23:58", - "milliseconds" : "jf 2/6/2010 00:02" } } diff --git a/repository/Grease-Squeak6-Core.package/GRDelegatingStream.extension/methodProperties.json b/repository/Grease-Squeak6-Core.package/GRDelegatingStream.extension/methodProperties.json deleted file mode 100644 index 4dd2cf88..00000000 --- a/repository/Grease-Squeak6-Core.package/GRDelegatingStream.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseNext:putAll:startingAt:" : "pmm 12/28/2010 22:13" } } diff --git a/repository/Grease-Squeak6-Core.package/GRDynamicVariable.class/methodProperties.json b/repository/Grease-Squeak6-Core.package/GRDynamicVariable.class/methodProperties.json deleted file mode 100644 index 07f78ce3..00000000 --- a/repository/Grease-Squeak6-Core.package/GRDynamicVariable.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - "default" : "JB 7/23/2017 19:09", - "defaultValue" : "JB 7/23/2017 19:09", - "use:during:" : "MaxLeske 5/25/2017 15:27" }, - "instance" : { - } } diff --git a/repository/Grease-Squeak6-Core.package/GRPackage.extension/methodProperties.json b/repository/Grease-Squeak6-Core.package/GRPackage.extension/methodProperties.json deleted file mode 100644 index 03a126e6..00000000 --- a/repository/Grease-Squeak6-Core.package/GRPackage.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "greaseSqueak6Core" : "topa 11/15/2017 16:23" }, - "instance" : { - } } diff --git a/repository/Grease-Squeak6-Core.package/GRPharoConverterCodecStream.class/methodProperties.json b/repository/Grease-Squeak6-Core.package/GRPharoConverterCodecStream.class/methodProperties.json deleted file mode 100644 index 5fe65894..00000000 --- a/repository/Grease-Squeak6-Core.package/GRPharoConverterCodecStream.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "class" : { - "on:converter:" : "pmm 10/30/2010 18:58" }, - "instance" : { - "greaseNext:putAll:startingAt:" : "pmm 12/28/2010 22:12", - "initializeOn:converter:" : "pmm 10/30/2010 18:58", - "next" : "pmm 4/10/2010 13:32", - "next:" : "lr 2/7/2009 12:57", - "nextPut:" : "pmm 4/10/2010 13:30", - "nextPutAll:" : "lr 2/7/2009 12:54" } } diff --git a/repository/Grease-Squeak6-Core.package/GRPharoGenericCodec.class/methodProperties.json b/repository/Grease-Squeak6-Core.package/GRPharoGenericCodec.class/methodProperties.json deleted file mode 100644 index 5a10058b..00000000 --- a/repository/Grease-Squeak6-Core.package/GRPharoGenericCodec.class/methodProperties.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "class" : { - "basicForEncoding:" : "pmm 6/28/2009 15:43", - "codecs" : "pmm 8/19/2014 10:04", - "supportedEncodingNames" : "lr 7/25/2011 19:46", - "supportsEncoding:" : "pmm 6/28/2009 16:43" }, - "instance" : { - "converter" : "lr 7/25/2011 19:51", - "decoderFor:" : "lr 2/7/2009 12:52", - "encoderFor:" : "jf 9/30/2009 00:46", - "initializeWithName:" : "pmm 8/16/2010 11:52", - "name" : "lr 2/7/2009 10:16", - "url" : "lr 2/7/2009 12:36" } } diff --git a/repository/Grease-Squeak6-Core.package/GRPharoLatin1Codec.class/methodProperties.json b/repository/Grease-Squeak6-Core.package/GRPharoLatin1Codec.class/methodProperties.json deleted file mode 100644 index 92c046e8..00000000 --- a/repository/Grease-Squeak6-Core.package/GRPharoLatin1Codec.class/methodProperties.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "class" : { - "basicForEncoding:" : "pmm 8/16/2010 00:36", - "codecs" : "lr 7/25/2011 19:46", - "supportedEncodingNames" : "lr 7/25/2011 19:46", - "supportsEncoding:" : "pmm 8/16/2010 00:36" }, - "instance" : { - "decode:" : "pmm 8/19/2014 10:00", - "decoderFor:" : "pmm 8/16/2010 00:32", - "encoderFor:" : "pmm 8/16/2010 00:32", - "initializeWithName:" : "pmm 9/1/2012 15:32", - "name" : "pmm 8/16/2010 00:32" } } diff --git a/repository/Grease-Squeak6-Core.package/GRPharoLatin1CodecStream.class/methodProperties.json b/repository/Grease-Squeak6-Core.package/GRPharoLatin1CodecStream.class/methodProperties.json deleted file mode 100644 index c3e59bc2..00000000 --- a/repository/Grease-Squeak6-Core.package/GRPharoLatin1CodecStream.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "next" : "pmm 9/14/2013 09:50", - "next:" : "lr 7/25/2011 19:50" } } diff --git a/repository/Grease-Squeak6-Core.package/GRPharoPlatform.class/methodProperties.json b/repository/Grease-Squeak6-Core.package/GRPharoPlatform.class/methodProperties.json deleted file mode 100644 index d141ead2..00000000 --- a/repository/Grease-Squeak6-Core.package/GRPharoPlatform.class/methodProperties.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "class" : { - "initialize" : "pmm 5/20/2010 11:49", - "initializeUrlTable" : "pmm 5/20/2010 20:56", - "initializeXmlTable" : "pmm 5/20/2010 20:56", - "unload" : "jf 1/22/2009 02:45" }, - "instance" : { - "addToShutDownList:" : "jf 1/21/2009 17:31", - "addToStartUpList:" : "jf 1/21/2009 17:31", - "asMethodReturningByteArray:named:" : "lr 7/25/2011 19:51", - "asMethodReturningByteArrayLiteral:named:" : "lr 7/25/2011 19:51", - "asMethodReturningByteArrayWithCache:named:" : "pmm 2/20/2009 17:44", - "base64Decode:" : "jf 1/21/2009 17:31", - "bindingOf:" : "pmm 8/23/2014 11:42", - "compile:into:classified:" : "pmm 8/13/2010 11:52", - "contentsOfFile:binary:" : "lr 7/25/2011 19:51", - "deprecationExceptionSet" : "pmm 2/16/2014 23:12", - "directoriesIn:" : "NickAger 3/9/2012 11:33", - "doSilently:" : "JohanBrichau 9/10/2013 11:39", - "ensureExistenceOfFolder:" : "jf 1/21/2009 17:31", - "fileExists:" : "pmm 7/16/2015 16:36", - "fileStreamOn:do:binary:" : "pmm 7/16/2015 16:39", - "filesIn:" : "lr 7/25/2011 19:51", - "isProcessTerminated:" : "jf 2/6/2009 15:58", - "label" : "jf 2/9/2010 00:56", - "localNameOf:" : "lr 7/25/2011 19:51", - "newRandom" : "topa 11/15/2017 17:12", - "newline" : "pmm 9/14/2013 09:56", - "openDebuggerOn:" : "pmm 1/22/2012 16:31", - "pathSeparator" : "pmm 2/5/2011 09:52", - "readWriteByteStream" : "lr 11/20/2011 17:16", - "readWriteCharacterStream" : "dkh 9/4/2009 09:14", - "removeFromShutDownList:" : "jf 1/21/2009 17:31", - "removeFromStartUpList:" : "jf 1/21/2009 17:31", - "removeSelector:from:" : "jf 1/21/2009 17:31", - "secureHashFor:" : "jf 1/21/2009 17:31", - "semaphoreClass" : "lr 7/25/2011 19:51", - "stackDepth" : "jf 1/21/2009 17:31", - "terminateProcess:" : "jf 2/6/2009 15:59", - "useByteArrayLiterals" : "pmm 2/11/2011 07:27", - "weakDictionaryOfSize:" : "lr 7/25/2011 19:51", - "write:toFile:inFolder:" : "pmm 8/19/2014 10:11", - "writeCharacterStreamOn:" : "pmm 8/26/2011 09:45" } } diff --git a/repository/Grease-Squeak6-Core.package/GRPharoUtf8Codec.class/methodProperties.json b/repository/Grease-Squeak6-Core.package/GRPharoUtf8Codec.class/methodProperties.json deleted file mode 100644 index cf1f05f1..00000000 --- a/repository/Grease-Squeak6-Core.package/GRPharoUtf8Codec.class/methodProperties.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "class" : { - "basicForEncoding:" : "lr 7/25/2011 19:46", - "codecs" : "lr 7/25/2011 19:46", - "supportsEncoding:" : "lr 7/25/2011 19:46" }, - "instance" : { - "decode:" : "pmm 2/17/2012 19:45", - "decoderFor:" : "jf 9/30/2009 00:46", - "encoderFor:" : "jf 9/30/2009 00:46", - "invalidUtf8" : "pmm 9/14/2013 09:37", - "name" : "pmm 2/20/2009 13:25", - "url" : "pmm 2/20/2009 12:50" } } diff --git a/repository/Grease-Squeak6-Core.package/GRPharoUtf8CodecStream.class/methodProperties.json b/repository/Grease-Squeak6-Core.package/GRPharoUtf8CodecStream.class/methodProperties.json deleted file mode 100644 index d5942a3a..00000000 --- a/repository/Grease-Squeak6-Core.package/GRPharoUtf8CodecStream.class/methodProperties.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "class" : { - "initialize" : "lr 7/25/2011 19:46" }, - "instance" : { - "crlf" : "pmm 4/10/2010 13:28", - "encodeDefault:" : "lr 7/25/2011 18:36", - "encodeFast:" : "pmm 9/1/2012 15:25", - "greaseNext:putAll:startingAt:" : "pmm 5/21/2014 21:33", - "greaseNext:putAllFast:startingAt:" : "pmm 5/21/2014 21:19", - "invalidUtf8" : "jf 9/30/2009 00:39", - "next" : "pmm 2/17/2010 20:09", - "next:" : "pmm 9/1/2012 15:25", - "nextPut:" : "lr 7/25/2011 19:51", - "nextPutAll:" : "pmm 4/10/2010 13:28" } } diff --git a/repository/Grease-Squeak6-Core.package/GRSmallDictionary.extension/methodProperties.json b/repository/Grease-Squeak6-Core.package/GRSmallDictionary.extension/methodProperties.json deleted file mode 100644 index be37efbf..00000000 --- a/repository/Grease-Squeak6-Core.package/GRSmallDictionary.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "customizeExplorerContents" : "lr 7/25/2011 19:51", - "explorerContents" : "topa 11/15/2017 16:27", - "hasContentsInExplorer" : "lr 7/25/2011 19:51" } } diff --git a/repository/Grease-Squeak6-Core.package/GRSqueakPlatform.class/methodProperties.json b/repository/Grease-Squeak6-Core.package/GRSqueakPlatform.class/methodProperties.json deleted file mode 100644 index 34a4e0b6..00000000 --- a/repository/Grease-Squeak6-Core.package/GRSqueakPlatform.class/methodProperties.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "class" : { - "initialize" : "JohnMcKeon 3/19/2015 22:16" }, - "instance" : { - "defaultDirectoryPathString" : "pmm 7/15/2015 15:07", - "deleteFile:inFolder:" : "JohnMcKeon 12/26/2014 19:35", - "directoriesIn:" : "JohnMcKeon 12/31/2014 09:23", - "doSilently:" : "JohnMcKeon 12/26/2014 19:36", - "ensureExistenceOfFolder:" : "JohnMcKeon 12/31/2014 09:32", - "fileExists:" : "JohnMcKeon 12/31/2014 09:35", - "fileNameFor:" : "pmm 7/15/2015 16:48", - "fileStreamOn:do:binary:" : "pmm 7/15/2015 14:47", - "filesIn:" : "JohnMcKeon 12/26/2014 19:35", - "isDirectory:" : "pmm 7/15/2015 15:21", - "localNameOf:" : "JohnMcKeon 12/27/2014 11:04", - "pathSeparator" : "JohnMcKeon 12/26/2014 19:35", - "write:toFile:inFolder:" : "JohnMcKeon 12/26/2014 19:36" } } diff --git a/repository/Grease-Squeak6-Core.package/GRWorkingWriteStream.class/methodProperties.json b/repository/Grease-Squeak6-Core.package/GRWorkingWriteStream.class/methodProperties.json deleted file mode 100644 index e8d4055e..00000000 --- a/repository/Grease-Squeak6-Core.package/GRWorkingWriteStream.class/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "reset" : "pmm 8/26/2011 09:39" } } diff --git a/repository/Grease-Squeak6-Core.package/Interval.extension/methodProperties.json b/repository/Grease-Squeak6-Core.package/Interval.extension/methodProperties.json deleted file mode 100644 index 1dedf542..00000000 --- a/repository/Grease-Squeak6-Core.package/Interval.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "any" : "jf 2/6/2010 03:25" } } diff --git a/repository/Grease-Squeak6-Core.package/MessageSend.extension/methodProperties.json b/repository/Grease-Squeak6-Core.package/MessageSend.extension/methodProperties.json deleted file mode 100644 index 78bb2233..00000000 --- a/repository/Grease-Squeak6-Core.package/MessageSend.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "argumentCount" : "pmm 1/10/2009 19:22", - "fixCallbackTemps" : "pmm 4/23/2007 20:02", - "valueWithPossibleArguments:" : "lr 7/25/2011 19:52" } } diff --git a/repository/Grease-Squeak6-Core.package/Number.extension/methodProperties.json b/repository/Grease-Squeak6-Core.package/Number.extension/methodProperties.json deleted file mode 100644 index 977cd782..00000000 --- a/repository/Grease-Squeak6-Core.package/Number.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "milliseconds" : "jf 2/6/2010 00:12" } } diff --git a/repository/Grease-Squeak6-Core.package/Object.extension/methodProperties.json b/repository/Grease-Squeak6-Core.package/Object.extension/methodProperties.json deleted file mode 100644 index a4b8eabd..00000000 --- a/repository/Grease-Squeak6-Core.package/Object.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseString" : "jf 9/30/2009 01:10", - "sizeInMemory" : "topa 11/15/2017 16:56" } } diff --git a/repository/Grease-Squeak6-Core.package/PositionableStream.extension/methodProperties.json b/repository/Grease-Squeak6-Core.package/PositionableStream.extension/methodProperties.json deleted file mode 100644 index cfb79423..00000000 --- a/repository/Grease-Squeak6-Core.package/PositionableStream.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseUpToAll:" : "jf 9/30/2009 01:06" } } diff --git a/repository/Grease-Squeak6-Core.package/Random.extension/methodProperties.json b/repository/Grease-Squeak6-Core.package/Random.extension/methodProperties.json deleted file mode 100644 index a7ccea74..00000000 --- a/repository/Grease-Squeak6-Core.package/Random.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "randomFrom:" : "topa 11/15/2017 17:13" } } diff --git a/repository/Grease-Squeak6-Core.package/ScaledDecimal.extension/methodProperties.json b/repository/Grease-Squeak6-Core.package/ScaledDecimal.extension/methodProperties.json deleted file mode 100644 index 90d07924..00000000 --- a/repository/Grease-Squeak6-Core.package/ScaledDecimal.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "encodeOn:" : "TravisCI 8/27/2016 15:16", - "greaseString" : "JohanBrichau 7/15/2015 13:26" } } diff --git a/repository/Grease-Squeak6-Core.package/SequenceableCollection.extension/methodProperties.json b/repository/Grease-Squeak6-Core.package/SequenceableCollection.extension/methodProperties.json deleted file mode 100644 index 240c2f35..00000000 --- a/repository/Grease-Squeak6-Core.package/SequenceableCollection.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "beginsWithSubCollection:" : "jok 3/22/2010 11:48", - "endsWithSubCollection:" : "jok 3/22/2010 11:47" } } diff --git a/repository/Grease-Squeak6-Core.package/SocketStream.extension/methodProperties.json b/repository/Grease-Squeak6-Core.package/SocketStream.extension/methodProperties.json deleted file mode 100644 index 7cbd94c3..00000000 --- a/repository/Grease-Squeak6-Core.package/SocketStream.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseNext:putAll:startingAt:" : "topa 11/15/2017 17:00" } } diff --git a/repository/Grease-Squeak6-Core.package/String.extension/methodProperties.json b/repository/Grease-Squeak6-Core.package/String.extension/methodProperties.json deleted file mode 100644 index 2661c833..00000000 --- a/repository/Grease-Squeak6-Core.package/String.extension/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "trimBoth" : "lr 10/25/2009 11:13", - "trimBoth:" : "lr 10/25/2009 11:11", - "trimLeft" : "lr 10/25/2009 11:14", - "trimLeft:" : "lr 10/25/2009 11:11", - "trimLeft:right:" : "lr 10/25/2009 11:15", - "trimRight" : "lr 10/25/2009 11:14", - "trimRight:" : "lr 10/25/2009 11:11" } } diff --git a/repository/Grease-Squeak6-Core.package/WriteStream.extension/methodProperties.json b/repository/Grease-Squeak6-Core.package/WriteStream.extension/methodProperties.json deleted file mode 100644 index e8241b94..00000000 --- a/repository/Grease-Squeak6-Core.package/WriteStream.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "greaseNext:putAll:startingAt:" : "jf 5/22/2010 20:26" } } diff --git a/repository/Grease-Squeak6-Core.package/monticello.meta/version b/repository/Grease-Squeak6-Core.package/monticello.meta/version deleted file mode 100644 index 6aa859b2..00000000 --- a/repository/Grease-Squeak6-Core.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-Squeak6-Core-topa.1' message 'Copy and adapt Squeak5 to Squeak6' id 'b9d7fafb-430a-4f86-887d-6051b117f0bb' date '15 November 2017' time '5:34:44.269251 pm' author 'topa' ancestors () stepChildren ()) \ No newline at end of file diff --git a/repository/Grease-Tests-Core.package/GRAbstractDictionaryTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRAbstractDictionaryTest.class/methodProperties.json deleted file mode 100644 index 156c0d88..00000000 --- a/repository/Grease-Tests-Core.package/GRAbstractDictionaryTest.class/methodProperties.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "class" : { - "isAbstract" : "jf 2/15/2010 22:01" }, - "instance" : { - "allowsDuplicateValues" : "jf 2/6/2010 04:22", - "arbitraryAssociations" : "jf 2/15/2010 22:42", - "arbitraryCollection" : "jf 2/15/2010 22:08", - "createArbitraryAssociations" : "jf 2/15/2010 22:41", - "isExtensible" : "jf 2/6/2010 03:35", - "isInitializable" : "jf 2/9/2010 11:29", - "isKey:equivalentTo:" : "jf 2/15/2010 22:05", - "testAssociationsDo" : "lr 7/25/2011 18:34", - "valuesOf:" : "jf 2/6/2010 01:58" } } diff --git a/repository/Grease-Tests-Core.package/GRAbstractSequenceableCollectionTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRAbstractSequenceableCollectionTest.class/methodProperties.json deleted file mode 100644 index 964c7757..00000000 --- a/repository/Grease-Tests-Core.package/GRAbstractSequenceableCollectionTest.class/methodProperties.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "class" : { - "isAbstract" : "jok 3/26/2010 17:21" }, - "instance" : { - "isHomogeneous" : "jok 3/29/2010 13:20", - "isSequenced" : "jok 3/29/2010 12:54", - "isUnique" : "jok 3/29/2010 13:02", - "testAddFirst" : "pmm 9/1/2012 15:24", - "testBeginsWithEmptySubCollection" : "pmm 9/1/2012 15:21", - "testBeginsWithSubCollection" : "pmm 9/1/2012 15:20", - "testCopyAfter" : "lr 7/25/2011 18:28", - "testCopyAfterLast" : "lr 7/25/2011 18:28", - "testCopyUpTo" : "pmm 1/22/2012 16:30", - "testCopyUpToLast" : "lr 7/25/2011 18:34", - "testEndsWithEmptySubCollection" : "pmm 9/1/2012 15:20", - "testEndsWithSubCollection" : "pmm 9/1/2012 15:20", - "testSort" : "pmm 9/1/2012 15:20" } } diff --git a/repository/Grease-Tests-Core.package/GRArrayTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRArrayTest.class/methodProperties.json deleted file mode 100644 index de6bf977..00000000 --- a/repository/Grease-Tests-Core.package/GRArrayTest.class/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "allowsDuplicateValues" : "jf 2/6/2010 04:22", - "collectionClass" : "jf 2/6/2010 01:51", - "isExtensible" : "jf 2/6/2010 03:34", - "isHomogeneous" : "jok 3/29/2010 13:22", - "isInitializable" : "jf 2/9/2010 11:28", - "isSequenced" : "jf 2/6/2010 04:03", - "isUnique" : "jok 3/29/2010 13:02" } } diff --git a/repository/Grease-Tests-Core.package/GRBagTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRBagTest.class/methodProperties.json deleted file mode 100644 index cf22e0c5..00000000 --- a/repository/Grease-Tests-Core.package/GRBagTest.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "allowsDuplicateValues" : "jf 2/6/2010 04:22", - "collectionClass" : "jf 2/6/2010 01:51", - "isExtensible" : "jf 2/6/2010 03:34", - "isInitializable" : "jf 2/9/2010 11:28" } } diff --git a/repository/Grease-Tests-Core.package/GRCodecTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRCodecTest.class/methodProperties.json deleted file mode 100644 index cc64db15..00000000 --- a/repository/Grease-Tests-Core.package/GRCodecTest.class/methodProperties.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "asString:" : "lr 7/25/2011 19:50", - "decodedString" : "lr 7/25/2011 19:50", - "latin1String" : "dkh 11/13/2009 15:24", - "macromanString" : "dkh 11/13/2009 15:24", - "seasideByteArray" : "pmm 2/17/2010 20:01", - "testAllCodecs" : "pmm 11/17/2010 21:41", - "testCodecLatin1" : "pmm 5/27/2010 22:55", - "testCodecLatin1BorderLineString" : "pmm 11/17/2010 22:09", - "testNext" : "pmm 2/17/2010 20:06", - "testNullCodec" : "pmm 9/1/2012 15:19", - "testReset" : "pmm 8/26/2011 09:38", - "utf16beString" : "dkh 11/13/2009 15:24", - "utf16leString" : "dkh 11/13/2009 15:24", - "utf8String" : "dkh 11/13/2009 15:24" } } diff --git a/repository/Grease-Tests-Core.package/GRCollectionTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRCollectionTest.class/methodProperties.json deleted file mode 100644 index 80a39113..00000000 --- a/repository/Grease-Tests-Core.package/GRCollectionTest.class/methodProperties.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "class" : { - "isAbstract" : "jf 2/6/2010 01:52" }, - "instance" : { - "allowsDuplicateValues" : "jf 2/9/2010 11:58", - "arbitraryCollection" : "jok 3/25/2010 15:21", - "assert:sortedWith:" : "jf 2/9/2010 11:57", - "assert:validSequencedNewResponseFrom:" : "jf 2/9/2010 11:56", - "collectionClass" : "jf 2/9/2010 11:59", - "duplicateElement" : "jok 3/25/2010 11:59", - "emptyCollection" : "jf 2/9/2010 12:00", - "excludedElement" : "jf 2/9/2010 12:01", - "includedElement" : "jf 2/9/2010 12:01", - "isExtensible" : "jf 2/9/2010 11:10", - "isInitializable" : "jf 2/9/2010 11:28", - "isValidNewSequencedResponseClass:" : "jok 3/29/2010 12:24", - "testAny" : "jf 2/6/2010 01:54", - "testEmptyAny" : "jf 2/6/2010 02:05", - "testIsCollection" : "jf 2/15/2010 23:05", - "testNoneSatisfy" : "lr 7/25/2011 18:34", - "testNotEmpty" : "jf 2/6/2010 02:08", - "testSorted" : "pmm 9/1/2012 15:20", - "valuesOf:" : "jf 2/9/2010 12:02" } } diff --git a/repository/Grease-Tests-Core.package/GRCountingStreamTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRCountingStreamTest.class/methodProperties.json deleted file mode 100644 index f7876d85..00000000 --- a/repository/Grease-Tests-Core.package/GRCountingStreamTest.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "setUp" : "pmm 7/16/2015 16:32", - "testInitialSize" : "pmm 6/25/2012 20:51", - "testNextPut" : "pmm 8/19/2014 09:29", - "testNextPutAll" : "pmm 8/19/2014 09:29", - "testReset" : "pmm 6/25/2012 20:51" } } diff --git a/repository/Grease-Tests-Core.package/GRDelayedSendTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRDelayedSendTest.class/methodProperties.json deleted file mode 100644 index ec113f19..00000000 --- a/repository/Grease-Tests-Core.package/GRDelayedSendTest.class/methodProperties.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "testArgumentCount" : "jf 9/30/2009 00:22", - "testFixCallbackTemps" : "jf 9/30/2009 00:22", - "testValueBinary" : "jf 9/30/2009 00:24", - "testValueKeyword" : "jf 9/30/2009 00:24", - "testValueUnary" : "jf 9/30/2009 00:22", - "testValueValueBinary" : "jf 9/30/2009 00:24", - "testValueValueKeyword" : "jf 9/30/2009 00:24", - "testValueValueUnary" : "jf 9/30/2009 00:24", - "testValueWithArgumentBinary" : "jf 9/30/2009 00:24", - "testValueWithArgumentKeyword" : "jf 9/30/2009 00:24", - "testValueWithArgumentUnary" : "jf 9/30/2009 00:24", - "testValueWithArgumentsBinary" : "jf 9/30/2009 00:24", - "testValueWithArgumentsKeyword" : "jf 9/30/2009 00:24", - "testValueWithArgumentsUnary" : "jf 9/30/2009 00:24", - "testValueWithPossibleArgumentsBinary" : "jf 9/30/2009 00:24", - "testValueWithPossibleArgumentsKeyword" : "jf 9/30/2009 00:24", - "testValueWithPossibleArgumentsUnary" : "jf 9/30/2009 00:22" } } diff --git a/repository/Grease-Tests-Core.package/GRDictionaryTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRDictionaryTest.class/methodProperties.json deleted file mode 100644 index f968ab5c..00000000 --- a/repository/Grease-Tests-Core.package/GRDictionaryTest.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "collectionClass" : "jf 2/15/2010 22:00", - "createArbitraryAssociations" : "jf 2/15/2010 22:41", - "isKey:equivalentTo:" : "jf 2/15/2010 22:06" } } diff --git a/repository/Grease-Tests-Core.package/GRDurationTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRDurationTest.class/methodProperties.json deleted file mode 100644 index 31d78462..00000000 --- a/repository/Grease-Tests-Core.package/GRDurationTest.class/methodProperties.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "testAccessors" : "pmm 9/1/2012 15:26", - "testBasicInstanceCreation" : "pmm 9/1/2012 15:29", - "testConversions" : "pmm 9/1/2012 15:25", - "testIntegerConvenienceMethods" : "pmm 9/1/2012 15:25", - "testMixedInstanceCreation" : "pmm 9/1/2012 15:26", - "testNegativeInstanceCreation" : "pmm 9/1/2012 15:26", - "testPartialSecondsInstanceCreation" : "pmm 9/1/2012 15:25", - "testRolloverInstanceCreation" : "pmm 9/1/2012 15:29", - "testZero" : "jf 2/5/2010 23:47" } } diff --git a/repository/Grease-Tests-Core.package/GRDynamicVariableTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRDynamicVariableTest.class/methodProperties.json deleted file mode 100644 index 0a2ec54a..00000000 --- a/repository/Grease-Tests-Core.package/GRDynamicVariableTest.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "testAnswer" : "MaxLeske 5/18/2017 07:42", - "testDefaultValue" : "JohanBrichau 9/9/2017 11:09", - "testWithNestedValue" : "MaxLeske 5/18/2017 07:42", - "testWithValue" : "MaxLeske 5/18/2017 07:42", - "testWithoutValue" : "MaxLeske 5/18/2017 07:42" } } diff --git a/repository/Grease-Tests-Core.package/GRErrorStub.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRErrorStub.class/methodProperties.json deleted file mode 100644 index 995db2bf..00000000 --- a/repository/Grease-Tests-Core.package/GRErrorStub.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "foo" : "jf 3/13/2009 16:56", - "initialize" : "jf 3/13/2009 16:56" } } diff --git a/repository/Grease-Tests-Core.package/GRExceptionTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRExceptionTest.class/methodProperties.json deleted file mode 100644 index 5ecff3b7..00000000 --- a/repository/Grease-Tests-Core.package/GRExceptionTest.class/methodProperties.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "onExceptionReturn:" : "lr 7/25/2011 18:34", - "testDefaultActionResume" : "pmm 9/1/2012 15:31", - "testDeprecatedApi" : "lr 1/25/2010 23:31", - "testErrorInitialization" : "jf 9/30/2009 00:56", - "testIsResumable" : "jf 11/3/2009 00:39", - "testNotificationInitialization" : "jf 9/30/2009 00:57", - "testOnDoImplicitReturn" : "pmm 9/1/2012 15:31", - "testOnDoNonLocalReturn" : "jf 11/3/2009 00:53", - "testSignalError" : "pmm 8/19/2014 10:01", - "testSignalErrorClassSide" : "pmm 8/19/2014 10:02", - "testSignalNotification" : "pmm 8/19/2014 10:03", - "testSignalNotificationClassSide" : "pmm 8/19/2014 10:02", - "testSignalWithError" : "pmm 8/19/2014 10:02", - "testSignalWithErrorClassSide" : "pmm 8/19/2014 10:02", - "testSignalWithNotification" : "pmm 8/19/2014 10:02", - "testSignalWithNotificationClassSide" : "pmm 8/19/2014 10:03" } } diff --git a/repository/Grease-Tests-Core.package/GRIdentityDictionaryTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRIdentityDictionaryTest.class/methodProperties.json deleted file mode 100644 index 37746620..00000000 --- a/repository/Grease-Tests-Core.package/GRIdentityDictionaryTest.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "collectionClass" : "jf 2/15/2010 21:57", - "createArbitraryAssociations" : "jf 2/15/2010 22:43", - "isKey:equivalentTo:" : "jf 2/15/2010 22:06" } } diff --git a/repository/Grease-Tests-Core.package/GRIntervalTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRIntervalTest.class/methodProperties.json deleted file mode 100644 index 3262a1fd..00000000 --- a/repository/Grease-Tests-Core.package/GRIntervalTest.class/methodProperties.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "allowsDuplicateValues" : "jf 2/6/2010 04:22", - "arbitraryCollection" : "jf 2/6/2010 02:49", - "collectionClass" : "jf 2/6/2010 02:48", - "emptyCollection" : "jf 2/6/2010 02:50", - "isExtensible" : "jf 2/6/2010 03:35", - "isHomogeneous" : "jok 3/29/2010 13:22", - "isInitializable" : "jf 2/9/2010 11:29", - "isSequenced" : "jf 2/6/2010 04:03", - "isUnique" : "jok 3/29/2010 13:03", - "testBeginsWithSubCollection" : "pmm 9/1/2012 15:24", - "testEndsWithSubCollection" : "pmm 9/1/2012 15:24" } } diff --git a/repository/Grease-Tests-Core.package/GRNotificationBasedDynamicVariableTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRNotificationBasedDynamicVariableTest.class/methodProperties.json deleted file mode 100644 index c94bb397..00000000 --- a/repository/Grease-Tests-Core.package/GRNotificationBasedDynamicVariableTest.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "testAnswer" : "pmm 9/5/2017 14:37", - "testDefaultValue" : "JohanBrichau 9/9/2017 11:10", - "testWithNestedValue" : "pmm 9/5/2017 14:38", - "testWithValue" : "pmm 9/5/2017 14:39", - "testWithoutValue" : "pmm 9/5/2017 14:39" } } diff --git a/repository/Grease-Tests-Core.package/GRNotificationStub.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRNotificationStub.class/methodProperties.json deleted file mode 100644 index 837624c0..00000000 --- a/repository/Grease-Tests-Core.package/GRNotificationStub.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "defaultAction" : "jf 11/3/2009 00:45", - "foo" : "jf 3/13/2009 16:56", - "initialize" : "jf 3/13/2009 16:56" } } diff --git a/repository/Grease-Tests-Core.package/GRNullCodecStreamTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRNullCodecStreamTest.class/methodProperties.json deleted file mode 100644 index c0ca02ec..00000000 --- a/repository/Grease-Tests-Core.package/GRNullCodecStreamTest.class/methodProperties.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "codecStreamClass" : "lr 2/6/2010 10:30", - "testCrlf" : "lr 2/6/2010 10:34", - "testFlush" : "lr 2/6/2010 10:37", - "testName" : "pmm 5/26/2010 07:08", - "testNext" : "pmm 2/17/2010 20:09", - "testPrint" : "lr 9/25/2011 10:12", - "testReadString" : "dkh 11/13/2009 15:36", - "testSize" : "lr 2/6/2010 10:37", - "testSpace" : "lr 2/6/2010 10:34", - "testTab" : "lr 2/6/2010 10:35", - "testWriteString" : "dkh 11/13/2009 15:36" } } diff --git a/repository/Grease-Tests-Core.package/GRNumberTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRNumberTest.class/methodProperties.json deleted file mode 100644 index c686aee5..00000000 --- a/repository/Grease-Tests-Core.package/GRNumberTest.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "testBetweenAnd" : "jf 9/25/2009 16:50", - "testPluralize" : "pmm 2/24/2008 18:33", - "testReadFrom" : "lr 5/13/2010 12:11", - "testTo" : "pmm 9/1/2012 15:31", - "testToDo" : "pmm 9/1/2012 15:31", - "testToDoClosures" : "pmm 8/19/2014 10:03" } } diff --git a/repository/Grease-Tests-Core.package/GRObjectStub.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRObjectStub.class/methodProperties.json deleted file mode 100644 index ab6b6cf0..00000000 --- a/repository/Grease-Tests-Core.package/GRObjectStub.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "foo" : "jf 2/3/2009 15:19", - "initialize" : "jf 2/3/2009 15:19" } } diff --git a/repository/Grease-Tests-Core.package/GRObjectTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRObjectTest.class/methodProperties.json deleted file mode 100644 index a265445f..00000000 --- a/repository/Grease-Tests-Core.package/GRObjectTest.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "testError" : "pmm 8/19/2014 10:09", - "testInitialize" : "jf 9/30/2009 00:56", - "testRespondsTo" : "pmm 3/29/2012 19:50" } } diff --git a/repository/Grease-Tests-Core.package/GROrderedCollectionTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GROrderedCollectionTest.class/methodProperties.json deleted file mode 100644 index f6564d50..00000000 --- a/repository/Grease-Tests-Core.package/GROrderedCollectionTest.class/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "allowsDuplicateValues" : "jf 2/6/2010 04:22", - "collectionClass" : "jf 2/6/2010 02:16", - "isExtensible" : "jf 2/6/2010 03:34", - "isHomogeneous" : "jok 3/29/2010 13:23", - "isInitializable" : "jf 2/9/2010 11:28", - "isSequenced" : "jf 2/6/2010 04:03", - "isUnique" : "jok 3/29/2010 13:04" } } diff --git a/repository/Grease-Tests-Core.package/GROrderedMultiMap2Test.class/methodProperties.json b/repository/Grease-Tests-Core.package/GROrderedMultiMap2Test.class/methodProperties.json deleted file mode 100644 index 0f82ab58..00000000 --- a/repository/Grease-Tests-Core.package/GROrderedMultiMap2Test.class/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "collectionClass" : "pmm 8/26/2016 15:38" } } diff --git a/repository/Grease-Tests-Core.package/GROrderedMultiMapTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GROrderedMultiMapTest.class/methodProperties.json deleted file mode 100644 index e170161b..00000000 --- a/repository/Grease-Tests-Core.package/GROrderedMultiMapTest.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "class" : { - "shouldInheritSelectors" : "jf 2/15/2010 13:29" }, - "instance" : { - "allowsDuplicateKeys" : "jf 2/15/2010 13:53", - "collectionClass" : "jf 2/15/2010 17:46", - "testAllAt" : "jf 2/15/2010 16:05", - "testAllAtIfAbsent" : "jf 2/15/2010 16:05", - "testAtAdd" : "jf 2/15/2010 16:05", - "testKeysAndAllValuesDo" : "pmm 8/25/2016 15:18" } } diff --git a/repository/Grease-Tests-Core.package/GRPackage.extension/methodProperties.json b/repository/Grease-Tests-Core.package/GRPackage.extension/methodProperties.json deleted file mode 100644 index ebb60240..00000000 --- a/repository/Grease-Tests-Core.package/GRPackage.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "greaseTestsCore" : "pmm 9/12/2013 16:00" }, - "instance" : { - } } diff --git a/repository/Grease-Tests-Core.package/GRPackageTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRPackageTest.class/methodProperties.json deleted file mode 100644 index 1260090e..00000000 --- a/repository/Grease-Tests-Core.package/GRPackageTest.class/methodProperties.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "setUp" : "lr 2/6/2010 10:44", - "testAllDependencies" : "pmm 9/1/2012 15:32", - "testDependencies" : "lr 2/6/2010 10:47", - "testDescription" : "lr 2/6/2010 10:44", - "testLicense" : "lr 2/6/2010 10:58", - "testName" : "lr 2/6/2010 10:44", - "testPackages" : "JohanBrichau 12/15/2013 18:29", - "testUrl" : "lr 2/17/2010 15:24" } } diff --git a/repository/Grease-Tests-Core.package/GRPlatformTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRPlatformTest.class/methodProperties.json deleted file mode 100644 index 7ec28f23..00000000 --- a/repository/Grease-Tests-Core.package/GRPlatformTest.class/methodProperties.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "decodeUtf8Character:" : "pmm 9/2/2012 11:17", - "platform" : "jf 9/30/2009 00:19", - "testAsNumber" : "lr 10/28/2007 14:42", - "testBase64Decode" : "pmm 8/27/2011 15:10", - "testBindingOf" : "pmm 8/23/2014 11:43", - "testBlockContextWithPossibleArguments" : "pmm 1/10/2009 23:41", - "testBlockValuableProtocol" : "jf 12/18/2009 12:26", - "testCharacterAsUnicode" : "lr 10/28/2007 14:42", - "testCharacterTo" : "lr 1/23/2010 13:29", - "testConvertToSmalltalkNewlines" : "lr 4/15/2010 19:27", - "testDateArithmetic" : "pmm 9/13/2008 14:36", - "testDaysInMonthForYear" : "jf 12/18/2009 10:30", - "testDigitValue" : "lr 1/23/2010 13:28", - "testEmptyOrNil" : "pmm 10/2/2007 06:54", - "testFixCallbackTemps" : "lr 10/28/2007 14:42", - "testGreaseIntegerOnCharacterAscii" : "pmm 1/22/2012 16:23", - "testGreaseIntegerOnCharacterBmp" : "pmm 12/26/2010 21:15", - "testGreaseIntegerOnCharacterLatin1" : "pmm 12/26/2010 21:14", - "testGreaseIntegerOnCharacterSmp" : "pmm 12/26/2010 21:16", - "testGreaseIntegerOnNumber" : "jf 9/30/2009 01:07", - "testGreaseIntegerOnString" : "jf 9/30/2009 01:08", - "testGreaseString" : "pmm 9/9/2017 15:45", - "testIfNil" : "pmm 11/10/2007 17:19", - "testIfTrueIfFalse" : "lr 12/3/2009 10:54", - "testIsCharacter" : "pmm 5/2/2009 17:18", - "testIsCollection" : "jf 2/15/2010 23:06", - "testIsKeyword" : "pmm 9/1/2012 15:32", - "testIsUnary" : "pmm 9/1/2012 15:32", - "testLabel" : "jf 2/9/2010 00:58", - "testNewline" : "lr 4/15/2010 19:20", - "testNumArgs" : "pmm 1/10/2009 22:23", - "testPathSeparator" : "pmm 2/5/2011 10:12", - "testPrintStringLimitedTo" : "lr 7/25/2011 18:36", - "testRandomGenerator" : "pmm 9/1/2012 15:32", - "testReadStreamAtEnd" : "lr 1/22/2009 22:01", - "testReadStreamContents" : "lr 1/22/2009 22:06", - "testReadStreamNegativeSkip" : "jf 9/14/2009 13:52", - "testReadStreamNext" : "lr 1/22/2009 22:00", - "testReadStreamPeek" : "lr 1/22/2009 22:00", - "testReadStreamPosition" : "jf 7/31/2009 13:40", - "testReadStreamReset" : "lr 1/23/2009 11:41", - "testReadStreamSeasideUpToAll" : "jf 9/30/2009 01:06", - "testReadStreamSkip" : "lr 1/22/2009 22:02", - "testReadStreamUpTo" : "mlucas-smith 6/3/2009 22:33", - "testReadStreamUpToEnd" : "jf 7/31/2009 13:33", - "testReadWriteStreamAtEnd" : "jf 9/30/2009 00:19", - "testReadWriteStreamContents" : "jf 9/30/2009 00:19", - "testReadWriteStreamNegativeSkip" : "jf 9/30/2009 00:19", - "testReadWriteStreamNext" : "jf 9/30/2009 00:19", - "testReadWriteStreamNextPut" : "jf 9/30/2009 00:19", - "testReadWriteStreamNextPutAll" : "pmm 9/14/2013 16:37", - "testReadWriteStreamPeek" : "jf 9/30/2009 00:19", - "testReadWriteStreamPosition" : "jf 9/30/2009 00:19", - "testReadWriteStreamReset" : "jf 9/30/2009 00:19", - "testReadWriteStreamSkip" : "jf 9/30/2009 00:19", - "testReadWriteStreamTab" : "jf 9/30/2009 00:19", - "testReadWriteStreamUpTo" : "jf 9/30/2009 00:19", - "testReadWriteStreamUpToEnd" : "jf 9/30/2009 00:19", - "testSeconds" : "pmm 3/6/2012 19:34", - "testSecureHashFor" : "lr 3/16/2009 19:18", - "testShutDownList" : "lr 3/16/2009 19:16", - "testStackDepth" : "lr 9/29/2009 22:54", - "testStartUpList" : "lr 3/16/2009 19:16", - "testSymbolAsMutator" : "pmm 2/25/2007 23:08", - "testTerminate" : "mlucas-smith 6/3/2009 22:33", - "testThisContext" : "JohanBrichau 09/11/2018 01:21", - "testTotalSeconds" : "lr 6/5/2009 08:59", - "testVersion" : "jf 2/9/2010 00:43", - "testWriteStreamContents" : "JohanBrichau 9/14/2013 11:49", - "testWriteStreamCrLf" : "mlucas-smith 6/3/2009 22:33", - "testWriteStreamNextPut" : "jgf 1/23/2009 15:29", - "testWriteStreamNextPutAll" : "jgf 1/23/2009 15:28", - "testWriteStreamPosition" : "JohanBrichau 9/14/2013 11:53", - "testWriteStreamReset" : "jgf 1/23/2009 15:28", - "testWriteStreamSpace" : "jgf 1/23/2009 15:28", - "testWriteStreamTab" : "jgf 1/23/2009 15:28" } } diff --git a/repository/Grease-Tests-Core.package/GRPrinterTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRPrinterTest.class/methodProperties.json deleted file mode 100644 index 46a0cbe6..00000000 --- a/repository/Grease-Tests-Core.package/GRPrinterTest.class/methodProperties.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "class" : { - "packageNamesUnderTest" : "lr 2/6/2010 10:14" }, - "instance" : { - "separate:left:" : "pmm 9/9/2018 11:33", - "testComposedPrinter" : "jf 9/30/2009 00:33", - "testCookieTimestamp" : "lr 2/6/2010 11:12", - "testDigitsOf" : "jf 9/30/2009 00:32", - "testDigitsOfBase" : "jf 9/30/2009 00:32", - "testFileSizePrinterBinary" : "jf 9/30/2009 00:32", - "testFileSizePrinterDecimal" : "jf 9/30/2009 00:32", - "testFloatPrinter" : "jf 9/30/2009 00:32", - "testFloatPrinterInfinity" : "jf 9/30/2009 00:32", - "testFloatPrinterNaN" : "jf 9/30/2009 00:32", - "testFloatPrinterPadding" : "jf 9/30/2009 00:32", - "testFloatPrinterSeparator" : "jf 9/30/2009 00:32", - "testFullMonthName" : "lr 2/6/2010 11:09", - "testFullWeekName" : "lr 2/6/2010 11:10", - "testHttp" : "jf 9/30/2009 00:32", - "testIntegerPrinter" : "pmm 9/9/2018 14:34", - "testIsoDate" : "jf 9/30/2009 00:32", - "testIsoTime" : "jf 9/30/2009 00:32", - "testOrdinalizePrinter" : "jf 9/30/2009 00:32", - "testPadCenter" : "jf 9/30/2009 00:32", - "testPadLeft" : "jf 9/30/2009 00:32", - "testPadRight" : "jf 9/30/2009 00:32", - "testPaddedCentury" : "lr 2/6/2010 11:03", - "testPaddedHour12" : "lr 2/6/2010 11:07", - "testRfc822" : "jf 9/30/2009 00:32", - "testRfc822WithTimeZone" : "lr 2/6/2010 11:12", - "testSeparateLeft" : "pmm 9/9/2018 11:33", - "testSeparateRight" : "jf 9/30/2009 00:32", - "testSignPrinter" : "jf 9/30/2009 00:33", - "testStringPrinter" : "jf 9/30/2009 00:33", - "testStringPrinterLength" : "jf 9/30/2009 00:33", - "testStringPrinterPad" : "jf 9/30/2009 00:33", - "testStringPrinterTrim" : "jf 9/30/2009 00:33", - "testSwissCurrency" : "jf 9/30/2009 00:32", - "testUnpaddedCentury" : "lr 2/6/2010 11:10", - "testUnpaddedDay" : "lr 2/6/2010 11:09", - "testUnpaddedHour12" : "lr 2/6/2010 11:05", - "testUnpaddedHour24" : "lr 2/6/2010 11:07", - "testUnpaddedMinute" : "lr 2/6/2010 11:02", - "testUnpaddedMonth" : "lr 2/6/2010 11:07", - "testUnpaddedSecond" : "lr 2/6/2010 11:06", - "testUnpaddedYear" : "lr 2/6/2010 11:08", - "testUsCurrency" : "jf 9/30/2009 00:32" } } diff --git a/repository/Grease-Tests-Core.package/GRReducedConflictDictionaryTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRReducedConflictDictionaryTest.class/methodProperties.json deleted file mode 100644 index f1a05855..00000000 --- a/repository/Grease-Tests-Core.package/GRReducedConflictDictionaryTest.class/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "collectionClass" : "pmm 9/10/2017 11:56" } } diff --git a/repository/Grease-Tests-Core.package/GRSetTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRSetTest.class/methodProperties.json deleted file mode 100644 index cf22e0c5..00000000 --- a/repository/Grease-Tests-Core.package/GRSetTest.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "allowsDuplicateValues" : "jf 2/6/2010 04:22", - "collectionClass" : "jf 2/6/2010 01:51", - "isExtensible" : "jf 2/6/2010 03:34", - "isInitializable" : "jf 2/9/2010 11:28" } } diff --git a/repository/Grease-Tests-Core.package/GRSmallDictionary2Test.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRSmallDictionary2Test.class/methodProperties.json deleted file mode 100644 index 0f82ab58..00000000 --- a/repository/Grease-Tests-Core.package/GRSmallDictionary2Test.class/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "collectionClass" : "pmm 8/26/2016 15:38" } } diff --git a/repository/Grease-Tests-Core.package/GRSmallDictionaryTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRSmallDictionaryTest.class/methodProperties.json deleted file mode 100644 index dadcf5b8..00000000 --- a/repository/Grease-Tests-Core.package/GRSmallDictionaryTest.class/methodProperties.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "allowsDuplicateKeys" : "jf 2/15/2010 13:52", - "assertAssociations:" : "JohanBrichau 9/10/2017 10:03", - "collectionClass" : "jf 2/15/2010 17:45", - "createArbitraryAssociations" : "pmm 9/9/2017 18:40", - "isKey:equivalentTo:" : "jf 2/15/2010 22:06", - "newCollection" : "jf 2/15/2010 17:45", - "setUp" : "jf 2/15/2010 16:05", - "testAddAll" : "jf 2/15/2010 22:58", - "testAddAndAssociations" : "jf 2/15/2010 16:05", - "testAt" : "jf 2/15/2010 16:05", - "testAtIfAbsent" : "jf 2/15/2010 16:05", - "testAtIfAbsentPut" : "jf 2/15/2010 16:05", - "testAtIfPresent" : "jf 2/15/2010 16:05", - "testAtPut" : "pmm 9/1/2012 15:33", - "testCopy" : "jf 2/15/2010 16:05", - "testDo" : "jf 2/15/2010 16:05", - "testGrow" : "jf 2/15/2010 16:05", - "testIncludesKey" : "jf 2/15/2010 16:05", - "testIsEmpty" : "jf 2/15/2010 16:05", - "testKeys" : "jf 2/15/2010 16:05", - "testKeysAndValuesDo" : "pmm 9/1/2012 15:33", - "testKeysDo" : "jf 2/15/2010 16:05", - "testRemoveKey" : "pmm 9/1/2012 15:33", - "testRemoveKeyIfAbsent" : "pmm 9/1/2012 15:33", - "testSize" : "pmm 9/1/2012 15:33", - "testValues" : "jf 2/15/2010 16:05", - "testWithAll" : "jf 2/15/2010 22:54" } } diff --git a/repository/Grease-Tests-Core.package/GRSmallOrderedSetTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRSmallOrderedSetTest.class/methodProperties.json deleted file mode 100644 index 3a95d109..00000000 --- a/repository/Grease-Tests-Core.package/GRSmallOrderedSetTest.class/methodProperties.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "collectionClass" : "pmm 9/10/2017 11:59", - "setUp" : "pmm 8/25/2016 14:33", - "testAdd" : "pmm 8/25/2016 14:21", - "testAddAll" : "pmm 8/25/2016 14:25", - "testCopy" : "pmm 8/25/2016 14:49", - "testDo" : "pmm 8/25/2016 14:09", - "testIncludes" : "pmm 8/25/2016 14:49", - "testIsEmpty" : "pmm 8/25/2016 14:49", - "testRemove" : "pmm 8/25/2016 14:51", - "testRemoveIfAbsent" : "pmm 8/25/2016 14:52", - "testSize" : "pmm 8/25/2016 14:10" } } diff --git a/repository/Grease-Tests-Core.package/GRSortedCollectionTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRSortedCollectionTest.class/methodProperties.json deleted file mode 100644 index 218ce537..00000000 --- a/repository/Grease-Tests-Core.package/GRSortedCollectionTest.class/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "allowsDuplicateValues" : "jok 3/22/2010 14:29", - "collectionClass" : "jok 3/22/2010 14:30", - "isExtensible" : "jok 3/22/2010 14:31", - "isHomogeneous" : "jok 3/29/2010 13:23", - "isInitializable" : "jok 3/22/2010 14:34", - "isSequenced" : "jok 3/25/2010 14:26", - "isUnique" : "jok 3/29/2010 13:05" } } diff --git a/repository/Grease-Tests-Core.package/GRStringTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRStringTest.class/methodProperties.json deleted file mode 100644 index bb2ef5fa..00000000 --- a/repository/Grease-Tests-Core.package/GRStringTest.class/methodProperties.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "allowsDuplicateValues" : "jf 2/6/2010 04:22", - "arbitraryCollection" : "jok 2/9/2010 13:19", - "collectionClass" : "jf 2/6/2010 01:50", - "duplicateElement" : "jf 2/6/2010 02:44", - "excludedElement" : "jf 2/6/2010 02:20", - "includedElement" : "jf 2/6/2010 02:44", - "isExtensible" : "jf 2/6/2010 03:35", - "isHomogeneous" : "jok 3/29/2010 13:24", - "isInitializable" : "jf 2/9/2010 11:28", - "isSequenced" : "jf 2/6/2010 04:04", - "isUnique" : "jok 3/29/2010 13:14", - "testAsUppercase" : "jf 9/25/2009 16:50", - "testCapitalized" : "pmm 9/1/2012 15:24", - "testCapitalizedUmlauts" : "jf 9/25/2009 16:50", - "testExcerpt" : "lr 2/7/2008 09:31", - "testExcerptEmpty" : "lr 2/7/2008 09:31", - "testExcerptLeft" : "lr 2/7/2008 09:30", - "testExcerptRight" : "lr 2/7/2008 09:29", - "testInflectorAssimilated" : "lr 2/7/2008 10:21", - "testInflectorCommonSuffixes" : "lr 2/7/2008 09:11", - "testInflectorFfffSuffixes" : "lr 2/7/2008 09:11", - "testInflectorIrregular" : "lr 2/7/2008 10:21", - "testInflectorNotInflecting" : "mlucas-smith 6/3/2009 22:33", - "testInflectorTsssSuffixes" : "lr 2/7/2008 09:11", - "testInflectorYyyySuffixes" : "pmm 9/1/2012 15:24", - "testSubStrings" : "JohanBrichau 5/25/2017 11:31", - "testTrimBoth" : "jf 9/25/2009 16:46", - "testTrimLeft" : "lr 2/7/2008 09:34", - "testTrimRight" : "lr 2/7/2008 09:35", - "testTruncate" : "lr 2/7/2008 09:32", - "testTruncateEmpty" : "lr 2/7/2008 09:32" } } diff --git a/repository/Grease-Tests-Core.package/GRSymbolTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRSymbolTest.class/methodProperties.json deleted file mode 100644 index b5b2d77e..00000000 --- a/repository/Grease-Tests-Core.package/GRSymbolTest.class/methodProperties.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "allowsDuplicateValues" : "jok 3/26/2010 16:41", - "arbitraryCollection" : "jok 3/22/2010 14:37", - "collectionClass" : "jok 3/22/2010 14:15", - "duplicateElement" : "jok 3/29/2010 12:21", - "emptyCollection" : "jok 3/29/2010 14:27", - "excludedElement" : "jok 3/22/2010 15:00", - "includedElement" : "jok 3/22/2010 14:59", - "isExtensible" : "jok 3/22/2010 14:38", - "isHomogeneous" : "jok 3/29/2010 13:24", - "isInitializable" : "jok 3/25/2010 14:21", - "isSequenced" : "jok 3/25/2010 14:27", - "isUnique" : "jok 3/26/2010 12:38" } } diff --git a/repository/Grease-Tests-Core.package/GRTestDynamicVariable.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRTestDynamicVariable.class/methodProperties.json deleted file mode 100644 index 70cd420b..00000000 --- a/repository/Grease-Tests-Core.package/GRTestDynamicVariable.class/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "defaultValue" : "JohanBrichau 7/23/2017 17:44" }, - "instance" : { - } } diff --git a/repository/Grease-Tests-Core.package/GRTestNotificationBasedDynamicVariable.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRTestNotificationBasedDynamicVariable.class/methodProperties.json deleted file mode 100644 index ac9e2006..00000000 --- a/repository/Grease-Tests-Core.package/GRTestNotificationBasedDynamicVariable.class/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "defaultValue" : "JohanBrichau 9/9/2017 11:11" }, - "instance" : { - } } diff --git a/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/methodProperties.json deleted file mode 100644 index f83aa4cc..00000000 --- a/repository/Grease-Tests-Core.package/GRUtf8CodecTest.class/methodProperties.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "asString:" : "lr 7/25/2011 19:52", - "decodedString" : "PaoloBonzini 4/7/2010 09:30", - "seasideByteArray" : "pmm 2/17/2010 20:02", - "testCodecUtf8" : "pmm 10/25/2010 18:50", - "testCodecUtf8Bom" : "pmm 11/10/2010 06:59", - "testCodecUtf8BorderLineString" : "pmm 11/17/2010 22:11", - "testCodecUtf8ShortestForm" : "pmm 4/11/2010 19:47", - "testNext" : "pmm 2/17/2010 20:07", - "utf8String" : "dkh 11/13/2009 15:27" } } diff --git a/repository/Grease-Tests-Core.package/GRVersionTest.class/methodProperties.json b/repository/Grease-Tests-Core.package/GRVersionTest.class/methodProperties.json deleted file mode 100644 index 4338d32c..00000000 --- a/repository/Grease-Tests-Core.package/GRVersionTest.class/methodProperties.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "assert:equals:" : "pmm 9/10/2017 11:48", - "assert:sortsBefore:" : "pmm 9/1/2012 15:55", - "buildVersion:" : "jf 2/8/2010 23:31", - "testAccessors" : "pmm 9/10/2017 12:04", - "testComparison" : "pmm 9/1/2012 15:55", - "testConvenience" : "pmm 9/1/2012 15:50", - "testEquality" : "pmm 9/1/2012 15:54", - "testStringConversion" : "pmm 9/1/2012 15:50" } } diff --git a/repository/Grease-Tests-Core.package/monticello.meta/version b/repository/Grease-Tests-Core.package/monticello.meta/version deleted file mode 100644 index d4a34ddd..00000000 --- a/repository/Grease-Tests-Core.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-Tests-Core-JohanBrichau.122' message 'Moved GsContext from Seaside-GemStone-Core to Grease-GemStone-Core and implemented GRGemStonePlatform>>thisContext' id 'a77b9ad4-e70f-44d2-a940-6768fd3de74a' date '09/11/2018' time '01:33:42' author 'JohanBrichau' ancestors ((name 'Grease-Tests-Core-pmm.121' message 'Take allocation out of GRNumberPrinter integer printing - fixes #1003' id 'd68dcdc6-d131-0d00-b5eb-e89802bd4e76' date '09/09/2018' time '03:15:50' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.120' message '- improve test coverage' id '41bf2ef1-3415-0d00-8849-6a470466576b' date '09/10/2017' time '12:23:46' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.119' message 'Add missing collection methods to GRSmallDictionary - #49' id '0929380d-2915-0d00-9d7b-7485043468d3' date '09/09/2017' time '10:12:36' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.118' message 'Fix Symbol >> #greaseString - #46' id 'ae951bc6-2315-0d00-9790-8d5207fe6076' date '09/09/2017' time '03:54:48' author 'pmm' ancestors ((name 'Grease-Tests-Core-JohanBrichau.117' message 'merged by GitFileTree-MergeDriver' id '52dab449-fb78-4ddf-9fdc-27df564a6e38' date '09/09/2017' time '01:17:22' author 'JohanBrichau' ancestors ((name 'Grease-Tests-Core-JohanBrichau.116' message 'Added an additional test for GRNotificationBasedDynamicVariable to test the defaultValue behavior' id 'cd6bdfd7-1f15-0d00-8dd4-423f050e3284' date '09/09/2017' time '11:13:27' author 'JohanBrichau' ancestors () stepChildren ())(name 'Grease-Tests-Core-JohanBrichau.116' message 'merged by GitFileTree-MergeDriver' id 'ea83e9b3-a2e4-491b-b433-1debd248d644' date '09/09/2017' time '10:32:56' author 'JohanBrichau' ancestors ((name 'Grease-Tests-Core-JohanBrichau.115' message 'Added a test for: Fix GRDynamicVariable>>use:during: in GemStone to correctly implement expected semantics (see method comments for details)' id '8fd7c4a7-0a15-0d00-8a75-0eb10b738419' date '09/08/2017' time '09:56:45' author 'JohanBrichau' ancestors ((name 'Grease-Tests-Core-pmm.114' message 'Add GRNotificationBasedDynamicVariable' id 'c69f1d51-d214-0d00-b70e-2eef0d40d3ce' date '09/05/2017' time '02:43:53' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.113' message 'Add thisContext method to GRPlatform' id '4f95aa42-d114-0d00-9d1f-21b30c6d599d' date '09/05/2017' time '01:28:16' author 'pmm' ancestors ((name 'Grease-Tests-Core-JohanBrichau.112' message 'Added GRDynamicVariable class>>defaultValue to represent the default value of a GRDynamicVariable. Previously, this was GRDynamicvariable>>default but this was not compatible for all platforms' id '2ee4e9be-5f11-0d00-87f1-050a08c307d1' date '07/23/2017' time '05:46:59' author 'JohanBrichau' ancestors ((name 'Grease-Tests-Core-JohanBrichau.111' message 'GRTestDynamicVariable should be a subclass of GRDynamicVariable' id '68ba098a-5f11-0d00-87f0-99b408c307d1' date '07/23/2017' time '05:32:12' author 'JohanBrichau' ancestors ((name 'Grease-Tests-Core-JohanBrichau.110' message 'Added a test for the default value override on GRDynamicVariable' id 'c5db1916-5f11-0d00-87dd-b62a08c307d1' date '07/23/2017' time '04:59:47' author 'JohanBrichau' ancestors ((name 'Grease-Tests-Core-MaxLeske.109' message 'merged by GitFileTree-MergeDriver' id 'f34e7206-c498-4cbb-b7b5-c1ca34155247' date '05/25/2017' time '02:48:44' author 'MaxLeske' ancestors ((name 'Grease-Tests-Core-MaxLeske.108' message '* added tests for GRDynamicVariables (these tests were formerly in Seaside-Tests-Core-Utilities and tested WADynamicVariable)' id 'fdd887ba-270c-0d00-82dd-cfbd07321642' date '05/18/2017' time '07:51:09' author 'MaxLeske' ancestors () stepChildren ())(name 'Grease-Tests-Core-JohanBrichau.108' message 'subStrings: -> substrings:' id '39e0ba32-b80c-0d00-b4b5-477a00bfc9db' date '05/25/2017' time '12:12:41' author 'JohanBrichau' ancestors ((name 'Grease-Tests-Core-pmm.107' message '- revert SmallDictionary changes for now' id '8314abad-f651-49f1-9fd7-d8737b4c0f2e' date '08/26/2016' time '04:00:15' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.106' message '- add new #keysAndAllValuesDo:' id 'bfbbb90b-78dc-4c42-9f40-ce07352c9d53' date '08/25/2016' time '03:24:29' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.105' message '- add GRSmallOrderedSet' id 'f0b315d3-0448-4764-8e28-96db57facb05' date '08/25/2016' time '02:55:37' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.104' message '- lint fixes' id 'ab4ab731-004c-4f4a-a01b-f073e9349785' date '07/16/2015' time '16:33:14' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.103' message '- lint fixes' id '98d1d5b9-3acb-4886-a6d3-eafd9d5bd5ad' date '07/16/2015' time '16:30:16' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.102' message '- lint fixes' id 'e6a8c34c-d286-4acf-b2bd-8343fa661998' date '07/16/2015' time '15:59:40' author 'pmm' ancestors ((name 'Grease-Tests-Core-JohanBrichau.101' message 'merge Grease-Tests-Core-pmm.100 and Grease-Tests-Core-JohanBrichau.100' id '343a249d-795e-4ed3-9637-5a649c3aec65' date '07/12/2015' time '02:50:54' author 'JohanBrichau' ancestors ((name 'Grease-Tests-Core-JohanBrichau.100' message 'Missing sign on ScaledDecimal>>greaseString (https://github.com/SeasideSt/Grease/issues/1) Thanks Hilaire!' id '73065b17-0bbd-48b8-8d9a-35e534049cbe' date '05/25/2015' time '09:05:19' author 'JohanBrichau' ancestors () stepChildren ())(name 'Grease-Tests-Core-pmm.100' message '#820 Configurations should not hold on to classes' id '2ef5713e-79bb-4e2c-951e-7ad6511940ec' date '07/12/2015' time '10:24:17' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.99' message '- lint fixes' id 'de282121-6c1f-4f8f-8f29-de7977548fd4' date '08/19/2014' time '10:35:49' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.98' message '- lint fixes' id 'edc3c406-4a97-44c1-900b-54e4ff5190bd' date '08/19/2014' time '09:56:19' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.97' message '- lint fixes' id 'f2fcf488-679e-4158-8c4f-3130c1b17a87' date '08/19/2014' time '09:39:15' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.96' message '- lint fixes' id '01da883d-049c-4dbd-b27b-16ca2d35067f' date '08/19/2014' time '09:31:16' author 'pmm' ancestors ((name 'Grease-Tests-Core-JohanBrichau.95' message 'move GRCountingStream from Pharo-only package to Core' id '6950e220-fdb9-41e8-9251-2e3164ad7632' date '02/16/2014' time '09:29:30' author 'JohanBrichau' ancestors ((name 'Grease-Tests-Core-pmm.94' message '- revert #shouldnt:raise: changes' id '3f89ddf2-bc1d-460f-9c1d-c5337ebb1152' date '12/19/2013' time '12:23:23' author 'pmm' ancestors ((name 'Grease-Tests-Core-JohanBrichau.93' message 'Rename #packages to #grPackages (triggered to prevent a name collision in Pharo3.0)' id '1c33a36a-0a81-43cf-b84e-5421e0f5acc3' date '12/15/2013' time '06:32:02' author 'JohanBrichau' ancestors ((name 'Grease-Tests-Core-DamienCassou.92' message '- Use #shouldnt:raise: only with specific errors, or evaluate the given expression directly' id 'e2787f2b-de0e-44c7-b494-effdced8d930' date '10/17/2013' time '03:05:30' author 'DamienCassou' ancestors ((name 'Grease-Tests-Core-pmm.91' message '- add tests for non-immediate integers' id '9b2b04fb-379e-43c4-9030-ac4bef824811' date '09/15/2013' time '12:19:07' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.90' message '- formatting' id '44dd54a7-09fe-4e50-9c20-860bf24d7a45' date '09/14/2013' time '16:38:07' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.89' message '- spelling' id 'fd25ace7-b543-47ef-9add-55ce516e4ef6' date '09/14/2013' time '16:14:24' author 'pmm' ancestors ((name 'Grease-Tests-Core-JohanBrichau.88' message 'use #position to get the contents size of the stream because #reset does not empty the stream and #size would return the original contents size' id 'dcbcd589-0839-4bd0-8471-fde528e71c98' date '09/14/2013' time '12:36:50' author 'JohanBrichau' ancestors ((name 'Grease-Tests-Core-pmm.87' message '- fix URLs' id 'd995b84b-ab28-4b9d-940e-21ff5b687835' date '09/12/2013' time '04:01:38' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.86' message '- Slime fixes, mostly recategorizations' id '18ddf175-b7f9-4f01-bd6e-383d86d121cc' date '09/03/2012' time '16:35:02' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.85' message '- formatting Nazis from outer space' id 'b04c9269-43b9-4e71-8335-60d614195e96' date '09/01/2012' time '17:02:23' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.84' message '- add test for #respondsTo:' id 'c3750f57-764b-4252-9dee-b75e1b5f24a6' date '03/29/2012' time '19:50:58' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.83' message '- merge Pharo 1.4 fixes from 3.0 branch' id '02d62f6f-9e09-4785-bfe3-0261d7027734' date '03/06/2012' time '19:58:22' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.82' message '- formatting nazis from outer space' id 'd2d3266d-f979-47af-9562-83e73de22d93' date '01/22/2012' time '17:15:48' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.81' message '- formatting nazis from outer space' id '3a4a717e-0791-452b-8791-fe9f084dad6c' date '01/22/2012' time '16:48:23' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.80' message '- merge with trunk' id '53b849bc-762a-4ab3-afe0-4325f9e0f5dc' date '09/28/2011' time '17:53:20' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.79' message '- merge with trunk' id 'f801c4e3-10d7-41ac-ba3c-a27e43efde46' date '08/28/2011' time '12:22:54' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.77' message '- Issue 676: response generators have to reset the response before generating a new one - add infrastructure to reset streams, work around Pharo stream bugs' id '4b1e0c9b-fe4f-4d58-9c66-77db529e289c' date '08/26/2011' time '10:00:36' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.76' message '- merge with trunk' id '381ce6a9-0019-4e80-9b38-fc1bc8ff9d7f' date '08/25/2011' time '09:18:41' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.74' message '- Issue 626: Allow platforms to implement custom encoders for speed - remove #includesUnsafeUrlCharacter: and #includesUnsafeXmlCharacter: from GRPlatform, these were just speed hacks for Pharo, they are now encapsulated in a platform specific class' id '7b719044-d34a-4f63-8352-1b4585b3575d' date '08/15/2011' time '21:41:43' author 'pmm' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Grease-Tests-Core-DamienCassou.81' message '- Use #shouldnt:raise: only with specific errors, or evaluate the given expression directly' id '8a4e2f51-3488-4cdd-bb23-b09cad4bd366' date '10/17/2013' time '02:01:41' author 'DamienCassou' ancestors ((name 'Grease-Tests-Core-pmm.80' message '- kick #isFraction test' id 'cbcc68f0-8f2e-49db-b36e-bfe6a80af781' date '03/06/2012' time '19:35:36' author 'pmm' ancestors ((name 'Grease-Tests-Core-lr.79' message '- add test for GRCodecStream>>#print:' id 'fbd38ae4-6daa-4712-926f-2893774a0c96' date '09/25/2011' time '10:19:41' author 'lr' ancestors ((name 'Grease-Tests-Core-pmm.78' message '- add base64 test' id 'b2c98f48-1985-4c77-a231-c092b9a9a7a9' date '08/27/2011' time '15:15:26' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.75' message '- 1 / 0 results in a load time error in Smalltalk/X, use a #perform: to get around it' id '5a4f24bf-854a-4149-9e74-c85827bf8aca' date '08/24/2011' time '12:53:53' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.73' message '- Issue 672: SequenceableCollection>>#endsWith: is not portable - remove tests that are already in GRAbstractSequenceableCollectionTest and friends' id '4aaa728d-9213-4f25-a547-e4d96b8dd263' date '08/08/2011' time '19:59:40' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.72' message '- Issue 672: SequenceableCollection>>#endsWith: is not portable - add tests for SequenceableCollection>>#beginsWithSubCollection:' id 'eec3a137-28d6-4eab-98c4-f4432c37e845' date '08/05/2011' time '23:20:24' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.71' message '- Issue 672: SequenceableCollection>>#endsWith: is not portable - add tests for SequenceableCollection>>#endsWithSubCollection:' id 'ec82bb59-c56a-4f4f-9c61-4148c79cc181' date '08/05/2011' time '23:02:25' author 'pmm' ancestors ((name 'Grease-Tests-Core-jok.70' message 'Issue 672: SequenceableCollection>>#endsWith: is not portable - remove GRPlatformTest>>#testEndsWith:' id '75fa4887-f54f-a142-868c-1ca7283213dd' date '08/03/2011' time '09:46:45' author 'jok' ancestors ((name 'Grease-Tests-Core-lr.69' message '- fixed formatting of return message' id '7774d2b6-85f7-4249-8631-b01f6f68d821' date '07/25/2011' time '20:25:40' author 'lr' ancestors ((name 'Grease-Tests-Core-lr.68' message '- fixed spacing in blocks' id '262d74fe-6113-49b7-937d-27d917c50f91' date '07/25/2011' time '19:21:17' author 'lr' ancestors ((name 'Grease-Tests-Core-lr.67' message '- fixed formatting of temporaries' id '6d232518-1847-4631-8e2e-b26c98fb1372' date '07/25/2011' time '18:31:45' author 'lr' ancestors ((name 'Grease-Tests-Core-lr.66' message '- unified formatting of parentheses' id '8b786bc1-6964-4da0-9165-179db414aee0' date '07/25/2011' time '18:26:37' author 'lr' ancestors ((name 'Grease-Tests-Core-pmm.65' message '- went for a simple X-Sendfile design that does not use auto deploy and does not require files to be deployed in image folder' id 'cbcd0fc7-cf62-42f6-820b-79bc6ee16034' date '02/05/2011' time '17:39:06' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.64' message '- split decoding tests accoriding to character range so platforms that don''t support full Unicode can more selectively disable some' id '810c0294-30ff-4eea-9f3e-ca859d01b668' date '12/26/2010' time '21:19:24' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.63' message '- Issue 612: subscript out of bounds when encoding a single 0 character to UTF-8 - http://code.google.com/p/seaside/issues/detail?id=612' id 'cff0b51f-efb3-4e84-a7c9-3ad497615d8a' date '11/17/2010' time '22:44:31' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.62' message '- try to massage test so that it works on VW and GST *crosses fingers*' id 'b363ae54-d371-4feb-a11e-093edd766d5d' date '10/25/2010' time '18:53:44' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.61' message '- remove #hash, #= and #isDictionary from GRSmallDictionary' id '3ef177e8-8cfe-4220-8ec9-c6465a2ca0a3' date '10/07/2010' time '15:56:34' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.60' message '- add #= and #hash to GRSmallDictionary' id 'e946e1ae-bf98-4e40-8ed4-edd6a74a5e59' date '09/06/2010' time '11:36:23' author 'pmm' ancestors ((name 'Grease-Tests-Core-lr.59' message '- removed unused variables' id '2f67ce57-f819-4325-a755-83702fdb99c5' date '08/22/2010' time '15:32:41' author 'lr' ancestors ((name 'Grease-Tests-Core-DaleHenrichs.58' message '- adjust grease tests for GemStone Interval implementation; replace #= with #keysAndValuesDo: ' id 'eee22a4f-f247-40b3-adce-1506e74e1e11' date '06/04/1910' time '15:29:41' author 'DaleHenrichs' ancestors ((name 'Grease-Tests-Core-DaleHenrichs.57' message '- extend test coverage for GRStringTest>>testSubStrings to validate case when delimiters appear at beginning or end of the string' id 'b7655d05-7166-4820-8cbb-ea991289c39a' date '06/03/1910' time '15:15:58' author 'DaleHenrichs' ancestors ((name 'Grease-Tests-Core-pmm.56' message '- replace #asByteArray with #greaseString - should really be portable now' id 'cad9705d-3e88-4e69-ac26-a484be26479d' date '05/27/1910' time '22:58:27' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.55' message '- Issue 569: Encoding information doesn''t get included in the response - http://code.google.com/p/seaside/issues/detail?id=569 - add accessor for null codec name' id '23a05e94-8f3c-4eff-902e-158dbd154be9' date '05/26/1910' time '21:42:20' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.54' message '- add test for #includesUnsafeXmlCharacter: - add test for #includesUnsafeUrlCharacter:' id 'fb6ba21e-b2b5-4ece-b424-fd6ca2b4ada8' date '05/24/1910' time '18:29:48' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.53' message '- merge' id 'f82eb617-261d-4e44-89ac-b7f8543f8229' date '05/23/1910' time '08:06:26' author 'pmm' ancestors ((name 'Grease-Tests-Core-jf.52' message 'Bump version numbers in preparation for an RC release' id 'de65bd6c-092f-4b90-83be-448847c95c4d' date '05/22/1910' time '23:46:52' author 'jf' ancestors () stepChildren ())(name 'Grease-Tests-Core-NDA.52' message 'Fixed failing testCodecUtf8. Seemed that Michael had changed the test to check the codec name against the case of the encoding string. However Pharo GRPharoUtf8Codec>>name always returns a hardcoded ''utf-8'' resulting in a failing test on Pharo. It seemed unnecessary to store the case in an instance variable in GRPharoUtf8Codec so we changed the test to ignore case.' id 'bd5d325a-9c4c-496d-8f4e-f8e3cfc4d225' date '05/22/1910' time '16:26:32' author 'NDA' ancestors ((name 'Grease-Tests-Core-mls.51' message '+ changed testCodecUtf8 to not assume the encoding name would always be lowercase. This is inconsistent with testCodecLatin1 which assumes the encoding name will be the same as the request name.' id '14cf1775-3b62-4151-8c52-bf50199c41ea' date '05/19/1910' time '14:47:45' author 'mls' ancestors ((name 'Grease-Tests-Core-lr.50' message '- removed a part of a test that is marked as "might be incorrect" and that fails in Pharo 1.1' id '35c5195d-6aae-486f-9067-e1fafab8c22f' date '05/13/1910' time '15:56:34' author 'lr' ancestors ((name 'Grease-Tests-Core-lr.49' message '- added a #newline accessor to GRPlatform that returns a string with the default newline character (sequence) - moved implementation of #convertToSmalltalkNewlines: to OBPlatform as it can now be implemented in terms of #newline and doesn''t need to be provided by other platforms anymore' id '0f564e1c-14bf-4721-b656-b81e89595f4e' date '04/15/1910' time '19:31:50' author 'lr' ancestors ((name 'Grease-Tests-Core-pmm.48' message '- formatting' id 'eec2686d-d081-43e8-911d-bf8aa7914c77' date '04/11/1910' time '19:50:13' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.47' message '- Issue 559: codec tests cannot really work outside Pharo - http://code.google.com/p/seaside/issues/detail?id=559 - merge PaoloBozini.46' id 'c3da2a26-3053-4607-a70b-3a03a0b0188c' date '04/11/1910' time '19:46:22' author 'pmm' ancestors ((name 'Grease-Tests-Core-pmm.46' message '- Issue 561: remove GRCodecStream >> #binary - http://code.google.com/p/seaside/issues/detail?id=561' id '08ec86fa-2cba-41d6-9b2e-9ceb5acfdccc' date '04/11/1910' time '18:22:43' author 'pmm' ancestors () stepChildren ())(name 'Grease-Tests-Core-PaoloBonzini.46' message 'codec fixes for gnu smalltalk - GRPlatform>>#decodeUtf8Character: fails in gst because (Character codePoint: NNN) can only be placed in a String for 0<=NNN<=127. Above 127 it returns a UnicodeCharacter. A portable application would use a codec on a ByteArray, which is what the proposed implementation does. - GRUtf8CodecTest>>#testCodecUtf8ShortestForm: allow raising an error. In fact, I believe the #deny: is not necessary, and the expected behavior should be to raise an error always. The test is currently XFAILed on Squeak. - other changes: compare the result of #decode: against a string literal instead of a Latin-1 string. Before comparing the result of #encode:, convert to ByteArray (gst doesn''t know the encodings, so it tries to convert the encoded string from UTF-8 to Unicode; this leads to failure)' id '4c6a8fed-7c43-41a9-995f-a346eb69106b' date '04/07/1910' time '09:41:45' author 'PaoloBonzini' ancestors ((name 'Grease-Tests-Core-jok.45' message 'Remove GRPlatformTest>>#testAsSeconds since it duplicates part of GRDurationTest>>#testConversions' id '113a8b36-960a-5040-ad4f-993cf555449e' date '04/05/1910' time '16:21:36' author 'jok' ancestors ((name 'Grease-Tests-Core-lr.44' message '- renamed all #testing protocols in TestCase classes with test methods to #tests or #tests-*, as discussed in the mailing list: #testing is for predicate methods, not unit tests. I''ve been moving them to #tests or #tests-* gradually but it might be good to do a sweeping change if others agree with me.' id 'b4e1b8dc-b3da-4949-aeb5-a18c4e34d13e' date '03/30/1910' time '08:59:03' author 'lr' ancestors ((name 'Grease-Tests-Core-jok.43' message 'VA Smalltalk doesn''t support ''Symbol new'' to create an empty collection; use #'''' instead' id 'b106192d-5a90-a041-87e6-fb80e59d79e8' date '03/29/1910' time '14:30:19' author 'jok' ancestors ((name 'Grease-Tests-Core-jok.42' message '- fix remaining tests (and add a few) from Issue 555 - revert category from testing to tests' id 'd4ad3f84-f2f1-9b4f-bb62-318770590527' date '03/29/1910' time '14:14:29' author 'jok' ancestors ((name 'Grease-Tests-Core-jok.41' message 'fix the broken tests' id '02128e77-76d6-7f43-a894-eabe4796310c' date '03/25/1910' time '16:19:03' author 'jok' ancestors ((name 'Grease-Tests-Core-jok.40' message '- http://code.google.com/p/seaside/issues/detail?id=555 - add #beginsWithSubCollection: and #endsWithSubCollection:' id '59d04e3f-ec91-fa43-bfbf-b2ead78e0d87' date '03/25/1910' time '10:49:30' author 'jok' ancestors ((name 'Grease-Tests-Core-pmm.39' message '- Issue 546: GCCodecEncoderStream>>next gives different types on different platforms - http://code.google.com/p/seaside/issues/detail?id=546' id 'e7af7ec0-0d90-4ca5-ba0a-e7fda7a8c4e4' date '02/17/1910' time '20:12:07' author 'pmm' ancestors ((name 'Grease-Tests-Core-lr.38' message '- added explicit repository url' id '5888b879-f025-4db4-861d-325c6c07e2aa' date '02/17/1910' time '15:53:56' author 'lr' ancestors ((name 'Grease-Tests-Core-lr.37' message '- fixed some lint issues' id '7831ac5d-d4fd-43b5-9611-f4bd9e67f931' date '02/16/1910' time '21:16:38' author 'lr' ancestors ((name 'Grease-Tests-Core-lr.36' message '- run protocol cleanup script' id '3178c569-6efb-4905-b297-2e732a274c6e' date '02/16/1910' time '19:59:38' author 'lr' ancestors ((name 'Grease-Tests-Core-jf.35' message 'move Collection isCollection tests on GRCollectionTest' id 'aecb109c-7d01-48ce-a598-d6afe38bd359' date '02/15/1910' time '23:07:05' author 'jf' ancestors ((name 'Grease-Tests-Core-jf.34' message '#addAll: and #withAll: on dictionaries should take a Dictionary parameter, not a collection of Associations (according to ANSI)' id 'b37729a9-ab26-4c16-b525-65dc4d5a6461' date '02/15/1910' time '23:02:11' author 'jf' ancestors ((name 'Grease-Tests-Core-jf.33' message 'add tests for IdentityDictionary and move testAssociationsDo: down so it only runs for dictionaries' id '7699143b-c170-48b7-88fc-8d5d0c9a0e02' date '02/15/1910' time '22:45:50' author 'jf' ancestors ((name 'Grease-Tests-Core-jf.32' message 'Properly fix http://code.google.com/p/seaside/issues/detail?id=544 I introduce a GROrderedMultiMap which specifically allows duplicate keys (GRSmallDictionary no longer does). This is used to implement WARequestFields, which is used throughtout for storing GET and POST fields. #at: will return the first matching field and #allAt: will return all matching values. Various renamings, fixes to callbacks, and to unit and functional tests. I also had to fix the Swazoo and Comanche server adaptors to correctly create WARequestFields instances for the POST fields and to correctly include the raw POST body in all cases (but it seems to be a ByteArray in Swazoo''s case and a ByteString or String for Comanche... seems not ideal)' id 'c6c1f5f9-a7e2-4904-83a0-9dba70498b4a' date '02/15/1910' time '21:31:49' author 'jf' ancestors ((name 'Grease-Tests-Core-lr.31' message '- add an url to the package' id '0c35af12-5a97-411f-8c81-de1608752fa7' date '02/10/1910' time '11:33:39' author 'lr' ancestors ((name 'Grease-Tests-Core-jf.30' message 'The copyUpTo* tests were a bit harsh for Interval. Interval gets dispensation from ANSI to return any sequenced collection from its "copy" methods so we might as well follow the same practice for these methods. Also add comments throughout the Collection test case.' id 'ddd90b0d-50e9-4ed5-bb34-11f9002052d1' date '02/09/1910' time '12:22:44' author 'jf' ancestors ((name 'Grease-Tests-Core-jok.29' message 'A string literals is immutable; don''t try to change it' id '2dc239fe-59bb-5640-a92a-b126969ca1a3' date '02/09/1910' time '13:23:22' author 'jok' ancestors ((name 'Grease-Tests-Core-jf.28' message 'http://code.google.com/p/seaside/issues/detail?id=503 Implement GRVersion as a (fairly) simple version number class.' id 'd97fcc1b-7389-4f03-8510-c326011c1ef3' date '02/09/1910' time '01:04:41' author 'jf' ancestors ((name 'Grease-Tests-Core-jf.27' message 'merge' id 'dbaacd90-8945-4aae-98d4-45138b0d954b' date '02/06/1910' time '04:42:15' author 'jf' ancestors ((name 'Grease-Tests-Core-jf.26' message 'add tests for #sorted and #sorted: and set up the Collection test suite to use a subclass for each Collection class. The latter should help ensure better test coverage of the various ANSI collection types. Note, there are a couple of failing tests on Pharo.' id '6c4eb454-5ff4-488f-867c-64fd8b2a2453' date '02/06/1910' time '04:41:02' author 'jf' ancestors () stepChildren ())(name 'Grease-Tests-Core-lr.26' message 'merged' id '13779a68-fb50-4739-930f-57068faa30d2' date '02/06/1910' time '11:16:32' author 'lr' ancestors ((name 'Grease-Tests-Core-lr.24' message '- pushed test coverage to 94%' id 'cdaee068-9ae1-409a-b94e-1cf309f0656c' date '02/06/1910' time '11:14:30' author 'lr' ancestors ((name 'Grease-Tests-Core-jf.23' message 'remove tests for singular forms of Duration helpers on Integer Discussions with platforms have formed agreement around supporting the plural forms, but not the singulars.' id '2dffff72-403c-4422-ae36-a27b7e6621bc' date '02/05/1910' time '23:11:59' author 'jf' ancestors ((name 'Grease-Tests-Core-jok.22' message 'http://code.google.com/p/seaside/issues/detail?id=535 - remove test for #new:withAll: since Slime rewrote all senders' id 'bbb7f836-a0cd-cd4e-882e-a9d2b1d60685' date '01/26/1910' time '10:59:38' author 'jok' ancestors ((name 'Grease-Tests-Core-jf.21' message 'http://code.google.com/p/seaside/issues/detail?id=488 Revert part of Grease-Tests-Core-dkh.4' id 'db971bf6-e519-4a10-99a2-5c3f76a1ee93' date '01/26/1910' time '02:01:29' author 'jf' ancestors ((name 'Grease-Tests-Core-lr.20' message '- fixing some slime issues' id 'b26bcc1a-bea2-405e-bd47-f0bbafe102b8' date '01/25/1910' time '23:36:53' author 'lr' ancestors ((name 'Grease-Tests-Core-jok.19' message 'http://code.google.com/p/seaside/issues/detail?id=536 - add Slime rule for keysSortedSafely - transform keysSortedSafely -> keys asSortedCollection - remove Grease test for keysSortedSafely' id '3f7bb47e-a8b6-bc47-ba3a-a50e63bd650b' date '01/25/1910' time '14:40:58' author 'jok' ancestors ((name 'Grease-Tests-Core-lr.18' message '- refactor character intervals $a to: $c to ''abc''' id 'd2f77b1f-a5a4-4505-bba2-6a8a234ebe77' date '01/23/1910' time '13:39:33' author 'lr' ancestors ((name 'Grease-Tests-Core-jok.17' message '#atRandom and #atRandom: are not portable (and not used by Seaside) -- remove their tests. ' id 'ecc16f0f-c81c-e043-807b-3f6dcfb1bea0' date '01/22/1910' time '12:21:53' author 'jok' ancestors ((name 'Grease-Tests-Core-jok.16' message 'remove #testCount since senders of #count: have been changed to use #inject:into:' id 'b26328f6-8376-2e46-8ffe-4ea480d1c0f8' date '01/08/1910' time '09:22:28' author 'jok' ancestors ((name 'Grease-Tests-Core-jf.15' message 'oops, forgot to remove this test' id '133a52a8-43b2-4fcf-9774-4610c0c84991' date '12/31/2009' time '11:26:16' author 'jf' ancestors ((name 'Grease-Tests-Core-jf.14' message 'Write some more Slime rules and tests and apply them.' id '45b4b787-3546-4b20-8748-42b851064628' date '12/29/2009' time '20:54:04' author 'jf' ancestors ((name 'Grease-Tests-Core-jf.13' message 'http://code.google.com/p/seaside/issues/detail?id=519 #findTokens: is not portable and has the same behaviour as ANSI''s #subStrings:, except that the parameter *must* be a collection of Characters (#findTokens: allows a single Character as wel)' id '09102181-eb65-4bcd-bd25-d07b2448468b' date '12/29/2009' time '14:29:41' author 'jf' ancestors ((name 'Grease-Tests-Core-jf.12' message 'No need to test MessageSend for all platforms. VA doesn''t even have it and we have the GRDelayedSend classes that we use internally. Move the tests of the valuable protocol on MessageSend into the Pharo platform tests.' id 'a3775eb0-b1f1-45ca-81aa-613cf3e92c25' date '12/18/2009' time '12:31:37' author 'jf' ancestors ((name 'Grease-Tests-Core-jf.11' message 'don''t need #printStringBase as you can use GRNumberPrinter' id 'ae4e8377-36a1-4d93-ab6a-6d3080a27451' date '12/18/2009' time '11:48:54' author 'jf' ancestors ((name 'Grease-Tests-Core-jf.10' message 'Stop using #daysInMonthNumber:forYear:, which is different than the method that VA already has. Some discussion on this needs to be had by all platforms but for now it can be worked around using #daysInMonth:year: and #nameOfMonth:' id '3cb235a1-d352-4a08-91c8-917de33653e2' date '12/18/2009' time '10:32:44' author 'jf' ancestors ((name 'Grease-Tests-Core-jf.9' message 'Stop using #newDay:monthNumber:year:, which is only in VW and can be worked around using #newDay:month:year: and #nameOfMonth:' id '0a84d54c-2d6d-4c0a-b509-121230344db8' date '12/18/2009' time '10:17:51' author 'jf' ancestors ((name 'Grease-Tests-Core-jf.8' message 'this is only sent by platform code anyway - let''s revisit string comparison some time with an eye to having a *nice* API...' id '872c0fd5-c22f-4525-a022-57a00f6c6fb1' date '12/17/2009' time '11:05:17' author 'jf' ancestors ((name 'Grease-Tests-Core-jf.7' message 'rename test method for accuracy' id 'c1a18a9a-a265-402c-a2b0-68f80542a2f1' date '12/07/2009' time '23:30:55' author 'jf' ancestors ((name 'Grease-Tests-Core-lr.6' message '- fixed some lint rules' id 'ca6a3c3c-a010-4f08-a44e-36ba0d4c8047' date '12/03/2009' time '13:12:45' author 'lr' ancestors ((name 'Grease-Tests-Core-pmm.5' message '- support ''UTF-8'' has a codec name as well' id '5a82da52-86dd-40a4-9445-16b680e3dff4' date '11/15/2009' time '11:07:53' author 'pmm' ancestors ((name 'Grease-Tests-Core-dkh.4' message '- fix bug http://code.google.com/p/seaside/issues/detail?id=488' id '916eae54-cdea-4628-8985-18ecd61ff50e' date '11/13/2009' time '15:47:58' author 'dkh' ancestors ((name 'Grease-Tests-Core-dkh.3' message '- in GemStone the block arg for #on:do: must always have an argument ... fixed that in the new tests' id 'ed95f1d6-fc4d-4e27-b7c6-fc59c10388b7' date '11/13/2009' time '11:21:04' author 'dkh' ancestors ((name 'Grease-Tests-Core-jf.2' message 'VA Smalltalk had differing behaviour when an exception handler block ran to completion (depending on the exception type, sometimes it returned and sometimes it resumed). However, I have since discovered that the correct behaviour (returning in all cases) is defined in ANSI 5.5.15.2 and John has fixed the bug in the latest VASt 8.0.1. So I''m replacing the Slime rules with Grease tests.' id '81584859-a50b-474c-a75d-6e8a86632acf' date '11/03/2009' time '01:00:22' author 'jf' ancestors ((name 'Grease-Tests-Core-jf.1' message 'Rename Seaside-Platform to Grease in order to help make clear that it is not Seaside-specific and can be used by other projects as a compatibility layer. This was spawned by discussions when I started porting Magritte to VAST using the Platform layer.' id '17fcc910-612b-4ee7-9d53-f93459751997' date '09/30/2009' time '22:47:28' author 'jf' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Grease-Tests-Core-jf.25' message 'add tests for #any on empty collections' id 'b541cf88-64d9-490a-9e07-770006ba9c80' date '02/06/1910' time '01:28:40' author 'jf' ancestors ((name 'Grease-Tests-Core-jf.24' message 'Remove usage of non-Grease methods #nameOfDay:, #anyOne, and several Squeak-specific Duration selectors. Add Grease tests for Duration protocols discussed with platforms. Also test for #any.' id 'd8df12f4-821a-42ef-8c62-21ff964856dc' date '02/06/1910' time '01:15:51' author 'jf' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file diff --git a/repository/Grease-Tests-GemStone-Core.package/GRDoubleByteStringTest.class/methodProperties.json b/repository/Grease-Tests-GemStone-Core.package/GRDoubleByteStringTest.class/methodProperties.json deleted file mode 100644 index 190af932..00000000 --- a/repository/Grease-Tests-GemStone-Core.package/GRDoubleByteStringTest.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "arbitraryCollection" : "DaleHenrichs 02/17/2011 17:09", - "collectionClass" : "DaleHenrichs 02/17/2011 17:09" } } diff --git a/repository/Grease-Tests-GemStone-Core.package/GRGemStonePlatformTest.class/methodProperties.json b/repository/Grease-Tests-GemStone-Core.package/GRGemStonePlatformTest.class/methodProperties.json deleted file mode 100644 index e9f4530b..00000000 --- a/repository/Grease-Tests-GemStone-Core.package/GRGemStonePlatformTest.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "testCompileIntoClassified" : "dkh 11/06/2009 09:41", - "testConvertToSmalltalkNewlines" : "DaleHenrichs 07/27/2010 12:03", - "testEncoderForUtf8Roundtrip" : "NorbertHartl 12/01/2010 19:17", - "testFullName" : "dkh 11/06/2009 08:50" } } diff --git a/repository/Grease-Tests-GemStone-Core.package/GRNumberTest.extension/methodProperties.json b/repository/Grease-Tests-GemStone-Core.package/GRNumberTest.extension/methodProperties.json deleted file mode 100644 index f30efa20..00000000 --- a/repository/Grease-Tests-GemStone-Core.package/GRNumberTest.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "addBlockToCollection:with:" : "dkh 11/09/2009 16:25", - "expectedFailures" : "DaleHenrichs 01/18/2011 13:18", - "testToDoClosuresGemStone" : "dkh 11/09/2009 16:26" } } diff --git a/repository/Grease-Tests-GemStone-Core.package/GRPackage.extension/methodProperties.json b/repository/Grease-Tests-GemStone-Core.package/GRPackage.extension/methodProperties.json deleted file mode 100644 index 54583c0d..00000000 --- a/repository/Grease-Tests-GemStone-Core.package/GRPackage.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "greaseTestsGemStoneCore" : "DaleHenrichs 06/03/2010 12:29" }, - "instance" : { - } } diff --git a/repository/Grease-Tests-GemStone-Core.package/GRQuadByteStringTest.class/methodProperties.json b/repository/Grease-Tests-GemStone-Core.package/GRQuadByteStringTest.class/methodProperties.json deleted file mode 100644 index 190af932..00000000 --- a/repository/Grease-Tests-GemStone-Core.package/GRQuadByteStringTest.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "arbitraryCollection" : "DaleHenrichs 02/17/2011 17:09", - "collectionClass" : "DaleHenrichs 02/17/2011 17:09" } } diff --git a/repository/Grease-Tests-GemStone-Core.package/GRStringTest.extension/methodProperties.json b/repository/Grease-Tests-GemStone-Core.package/GRStringTest.extension/methodProperties.json deleted file mode 100644 index 227fef90..00000000 --- a/repository/Grease-Tests-GemStone-Core.package/GRStringTest.extension/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "multiByteConvert:" : "DaleHenrichs 02/17/2011 17:17", - "testMultiByteCapitalized" : "DaleHenrichs 02/17/2011 17:17", - "testMultiByteExcerpt" : "DaleHenrichs 02/17/2011 17:18", - "testMultiByteSubStrings" : "DaleHenrichs 02/17/2011 17:19", - "testMultiByteTrimBoth" : "DaleHenrichs 02/17/2011 17:19", - "testMultiByteTruncate" : "DaleHenrichs 02/17/2011 17:20" } } diff --git a/repository/Grease-Tests-GemStone-Core.package/GRUtf8CodecTest.extension/methodProperties.json b/repository/Grease-Tests-GemStone-Core.package/GRUtf8CodecTest.extension/methodProperties.json deleted file mode 100644 index f731b902..00000000 --- a/repository/Grease-Tests-GemStone-Core.package/GRUtf8CodecTest.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "expectedFailures" : "DaleHenrichs 06/03/2010 12:27" } } diff --git a/repository/Grease-Tests-GemStone-Core.package/monticello.meta/version b/repository/Grease-Tests-GemStone-Core.package/monticello.meta/version deleted file mode 100644 index 9c98886a..00000000 --- a/repository/Grease-Tests-GemStone-Core.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-Tests-GemStone-Core-dkh.14' message '1.0.5 (dkh.143): - Move GRGemStonePlatformTest>>testFileLibrary to WAGemStoneFileLibraryTest ... reference to WAFileLibrary belongs in a Seaside package' id '094fb51b-4f5c-4ca1-a138-e528b0521f2f' date '04/27/2011' time '16:07:47' author 'dkh' ancestors ((name 'Grease-Tests-GemStone-Core-DaleHenrichs.13' message '- fix Issue 227: Squeak/Pharo String extensions methods don''t work on multibyte strings http://code.google.com/p/glassdb/issues/detail?id=227' id 'f62ab156-12b1-4303-a41b-e7d7024698b5' date '02/17/2011' time '17:31:37' author 'DaleHenrichs' ancestors ((name 'Grease-Tests-GemStone-Core-DaleHenrichs.12' message '- open 1.0.3.1 for development - get Seaside3.0 running on GemStone3.0beta3 - fix Issue 212: http://code.google.com/p/glassdb/issues/detail?id=212 FileDirectory class>>onClient switched sense" [GemStone] - ANSI block behavior means that GemStone3.0 passes GRNumberTest>>testToDoClosures - wait for GemStone bugs 41222 and 41223 to be fixed to pass remaining tests' id 'f42c9e24-ead1-4c9b-9ca0-7375d1451cbe' date '01/20/2011' time '11:01:23' author 'DaleHenrichs' ancestors ((name 'Grease-Tests-GemStone-Core-DaleHenrichs.11' message '- User ServerDirectory in Grease (for performance) [GemStone]. - fix open file descriptor leak [GemStone]' id 'a11b0fb5-d54a-4794-a321-3fda02485a88' date '12/03/2010' time '16:50:11' author 'DaleHenrichs' ancestors ((name 'Grease-Tests-GemStone-Core-DaleHenrichs.10' message '- add GemStone test coverage for GRPlatform file library support methods' id 'dee1526c-d27a-47dd-b847-4f614dfba644' date '12/02/2010' time '17:16:25' author 'DaleHenrichs' ancestors ((name 'Grease-Tests-GemStone-Core-NorbertHartl.9' message 'added test for GRCodec encoderFor:/decoderFor:' id '374d0ba8-bea4-4fe6-ba6d-a9068ab3ba36' date '12/01/2010' time '19:18:57' author 'NorbertHartl' ancestors ((name 'Grease-Tests-GemStone-Core-DaleHenrichs.8' message '- fix platform convert to newlines test' id 'caf41207-df6e-442c-bc9f-1bb77c840f2a' date '07/27/1910' time '12:49:27' author 'DaleHenrichs' ancestors ((name 'Grease-Tests-GemStone-Core-DaleHenrichs.7' message '- adjusted grease tests for GemStone Interval implementation; replace #= with #keysAndValuesDo:, so remove expected failures for those tests' id 'bc799773-ee27-43b2-89fe-a4c7227bf7e8' date '06/04/1910' time '15:33:50' author 'DaleHenrichs' ancestors ((name 'Grease-Tests-GemStone-Core-DaleHenrichs.6' message '- port to GemStone GLASS 1.0-beta.8 - 380 run, 375 passes, 4 expected failures, 1 failures, 0 errors, 0 unexpected passes' id '7e04736f-89b9-4439-96d7-a0d9912d3d97' date '06/03/1910' time '15:22:15' author 'DaleHenrichs' ancestors ((name 'Grease-Tests-GemStone-Core-dkh.5' message '- fix bug http://code.google.com/p/seaside/issues/detail?id=488' id '41e1de46-dfc9-4fd1-97d2-34c9ae5cd94e' date '11/13/2009' time '15:48:13' author 'dkh' ancestors ((name 'Grease-Tests-GemStone-Core-dkh.4' message '- update dependencies based on loading experiences using ConfigurationOfSeaside30 ' id '37b746e7-a3c7-415a-a245-1e3382ae0eee' date '11/13/2009' time '15:17:13' author 'dkh' ancestors ((name 'Grease-Tests-GemStone-Core-dkh.3' message '- getting down to just a couple of failed tests' id 'f5635053-32f3-4beb-ae51-6e476dd1010a' date '11/09/2009' time '16:57:31' author 'dkh' ancestors ((name 'Grease-Tests-GemStone-Core-dkh.2' message '- fix some GR* refs' id '4afdfd1b-c258-4edd-ad1e-33afef08e3f2' date '11/06/2009' time '09:43:00' author 'dkh' ancestors ((name 'Grease-Tests-GemStone-Core-dkh.1' message '- port from Seaside-Tests-GemStone-Platform' id 'b7b28aea-1c5f-445b-9236-7aefd7be4f69' date '11/06/2009' time '08:51:24' author 'dkh' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRDoubleByteStringTest.class/methodProperties.json b/repository/Grease-Tests-GemStone-Core.v32.package/GRDoubleByteStringTest.class/methodProperties.json deleted file mode 100644 index 190af932..00000000 --- a/repository/Grease-Tests-GemStone-Core.v32.package/GRDoubleByteStringTest.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "arbitraryCollection" : "DaleHenrichs 02/17/2011 17:09", - "collectionClass" : "DaleHenrichs 02/17/2011 17:09" } } diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRGemStonePlatformTest.class/methodProperties.json b/repository/Grease-Tests-GemStone-Core.v32.package/GRGemStonePlatformTest.class/methodProperties.json deleted file mode 100644 index e9f4530b..00000000 --- a/repository/Grease-Tests-GemStone-Core.v32.package/GRGemStonePlatformTest.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "testCompileIntoClassified" : "dkh 11/06/2009 09:41", - "testConvertToSmalltalkNewlines" : "DaleHenrichs 07/27/2010 12:03", - "testEncoderForUtf8Roundtrip" : "NorbertHartl 12/01/2010 19:17", - "testFullName" : "dkh 11/06/2009 08:50" } } diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRNumberTest.extension/methodProperties.json b/repository/Grease-Tests-GemStone-Core.v32.package/GRNumberTest.extension/methodProperties.json deleted file mode 100644 index f30efa20..00000000 --- a/repository/Grease-Tests-GemStone-Core.v32.package/GRNumberTest.extension/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "addBlockToCollection:with:" : "dkh 11/09/2009 16:25", - "expectedFailures" : "DaleHenrichs 01/18/2011 13:18", - "testToDoClosuresGemStone" : "dkh 11/09/2009 16:26" } } diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRPackage.extension/methodProperties.json b/repository/Grease-Tests-GemStone-Core.v32.package/GRPackage.extension/methodProperties.json deleted file mode 100644 index 54583c0d..00000000 --- a/repository/Grease-Tests-GemStone-Core.v32.package/GRPackage.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "greaseTestsGemStoneCore" : "DaleHenrichs 06/03/2010 12:29" }, - "instance" : { - } } diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRQuadByteStringTest.class/methodProperties.json b/repository/Grease-Tests-GemStone-Core.v32.package/GRQuadByteStringTest.class/methodProperties.json deleted file mode 100644 index 190af932..00000000 --- a/repository/Grease-Tests-GemStone-Core.v32.package/GRQuadByteStringTest.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "arbitraryCollection" : "DaleHenrichs 02/17/2011 17:09", - "collectionClass" : "DaleHenrichs 02/17/2011 17:09" } } diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRStringTest.extension/methodProperties.json b/repository/Grease-Tests-GemStone-Core.v32.package/GRStringTest.extension/methodProperties.json deleted file mode 100644 index 227fef90..00000000 --- a/repository/Grease-Tests-GemStone-Core.v32.package/GRStringTest.extension/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "multiByteConvert:" : "DaleHenrichs 02/17/2011 17:17", - "testMultiByteCapitalized" : "DaleHenrichs 02/17/2011 17:17", - "testMultiByteExcerpt" : "DaleHenrichs 02/17/2011 17:18", - "testMultiByteSubStrings" : "DaleHenrichs 02/17/2011 17:19", - "testMultiByteTrimBoth" : "DaleHenrichs 02/17/2011 17:19", - "testMultiByteTruncate" : "DaleHenrichs 02/17/2011 17:20" } } diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/GRUtf8CodecTest.extension/methodProperties.json b/repository/Grease-Tests-GemStone-Core.v32.package/GRUtf8CodecTest.extension/methodProperties.json deleted file mode 100644 index 8051b203..00000000 --- a/repository/Grease-Tests-GemStone-Core.v32.package/GRUtf8CodecTest.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "expectedFailures" : "dkh 06/04/2014 14:54" } } diff --git a/repository/Grease-Tests-GemStone-Core.v32.package/monticello.meta/version b/repository/Grease-Tests-GemStone-Core.v32.package/monticello.meta/version deleted file mode 100644 index 15cff5de..00000000 --- a/repository/Grease-Tests-GemStone-Core.v32.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-Tests-GemStone-Core.v32-dkh.16' message 'no expected failurs in GRUtf8CodecTest for GemStone 3.2' id 'e5901bc5-5d3d-4cda-ae14-fd6e7b5bd5cf' date '06/04/2014' time '14:54:37' author 'dkh' ancestors ((name 'Grease-Tests-GemStone-Core.v32-dkh.15' message 'GemStone3.2 branch for glassdb/Seaside31#21 work' id '1c824354-12b8-4e2b-b64f-64c769d4bdff' date '06/04/2014' time '14:52:52' author 'dkh' ancestors ((name 'Grease-Tests-GemStone-Core-dkh.14' message '1.0.5 (dkh.143): - Move GRGemStonePlatformTest>>testFileLibrary to WAGemStoneFileLibraryTest ... reference to WAFileLibrary belongs in a Seaside package' id '094fb51b-4f5c-4ca1-a138-e528b0521f2f' date '04/27/2011' time '16:07:47' author 'dkh' ancestors ((name 'Grease-Tests-GemStone-Core-DaleHenrichs.13' message '- fix Issue 227: Squeak/Pharo String extensions methods don''t work on multibyte strings http://code.google.com/p/glassdb/issues/detail?id=227' id 'f62ab156-12b1-4303-a41b-e7d7024698b5' date '02/17/2011' time '17:31:37' author 'DaleHenrichs' ancestors ((name 'Grease-Tests-GemStone-Core-DaleHenrichs.12' message '- open 1.0.3.1 for development - get Seaside3.0 running on GemStone3.0beta3 - fix Issue 212: http://code.google.com/p/glassdb/issues/detail?id=212 FileDirectory class>>onClient switched sense" [GemStone] - ANSI block behavior means that GemStone3.0 passes GRNumberTest>>testToDoClosures - wait for GemStone bugs 41222 and 41223 to be fixed to pass remaining tests' id 'f42c9e24-ead1-4c9b-9ca0-7375d1451cbe' date '01/20/2011' time '11:01:23' author 'DaleHenrichs' ancestors ((name 'Grease-Tests-GemStone-Core-DaleHenrichs.11' message '- User ServerDirectory in Grease (for performance) [GemStone]. - fix open file descriptor leak [GemStone]' id 'a11b0fb5-d54a-4794-a321-3fda02485a88' date '12/03/2010' time '16:50:11' author 'DaleHenrichs' ancestors ((name 'Grease-Tests-GemStone-Core-DaleHenrichs.10' message '- add GemStone test coverage for GRPlatform file library support methods' id 'dee1526c-d27a-47dd-b847-4f614dfba644' date '12/02/2010' time '17:16:25' author 'DaleHenrichs' ancestors ((name 'Grease-Tests-GemStone-Core-NorbertHartl.9' message 'added test for GRCodec encoderFor:/decoderFor:' id '374d0ba8-bea4-4fe6-ba6d-a9068ab3ba36' date '12/01/2010' time '19:18:57' author 'NorbertHartl' ancestors ((name 'Grease-Tests-GemStone-Core-DaleHenrichs.8' message '- fix platform convert to newlines test' id 'caf41207-df6e-442c-bc9f-1bb77c840f2a' date '07/27/1910' time '12:49:27' author 'DaleHenrichs' ancestors ((name 'Grease-Tests-GemStone-Core-DaleHenrichs.7' message '- adjusted grease tests for GemStone Interval implementation; replace #= with #keysAndValuesDo:, so remove expected failures for those tests' id 'bc799773-ee27-43b2-89fe-a4c7227bf7e8' date '06/04/1910' time '15:33:50' author 'DaleHenrichs' ancestors ((name 'Grease-Tests-GemStone-Core-DaleHenrichs.6' message '- port to GemStone GLASS 1.0-beta.8 - 380 run, 375 passes, 4 expected failures, 1 failures, 0 errors, 0 unexpected passes' id '7e04736f-89b9-4439-96d7-a0d9912d3d97' date '06/03/1910' time '15:22:15' author 'DaleHenrichs' ancestors ((name 'Grease-Tests-GemStone-Core-dkh.5' message '- fix bug http://code.google.com/p/seaside/issues/detail?id=488' id '41e1de46-dfc9-4fd1-97d2-34c9ae5cd94e' date '11/13/2009' time '15:48:13' author 'dkh' ancestors ((name 'Grease-Tests-GemStone-Core-dkh.4' message '- update dependencies based on loading experiences using ConfigurationOfSeaside30 ' id '37b746e7-a3c7-415a-a245-1e3382ae0eee' date '11/13/2009' time '15:17:13' author 'dkh' ancestors ((name 'Grease-Tests-GemStone-Core-dkh.3' message '- getting down to just a couple of failed tests' id 'f5635053-32f3-4beb-ae51-6e476dd1010a' date '11/09/2009' time '16:57:31' author 'dkh' ancestors ((name 'Grease-Tests-GemStone-Core-dkh.2' message '- fix some GR* refs' id '4afdfd1b-c258-4edd-ad1e-33afef08e3f2' date '11/06/2009' time '09:43:00' author 'dkh' ancestors ((name 'Grease-Tests-GemStone-Core-dkh.1' message '- port from Seaside-Tests-GemStone-Platform' id 'b7b28aea-1c5f-445b-9236-7aefd7be4f69' date '11/06/2009' time '08:51:24' author 'dkh' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file diff --git a/repository/Grease-Tests-Pharo-Core.package/GRPackage.extension/methodProperties.json b/repository/Grease-Tests-Pharo-Core.package/GRPackage.extension/methodProperties.json deleted file mode 100644 index d24a28b9..00000000 --- a/repository/Grease-Tests-Pharo-Core.package/GRPackage.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "greaseTestsPharoCore" : "lr 2/17/2010 15:11" }, - "instance" : { - } } diff --git a/repository/Grease-Tests-Pharo-Core.package/GRPharoCodecTest.class/methodProperties.json b/repository/Grease-Tests-Pharo-Core.package/GRPharoCodecTest.class/methodProperties.json deleted file mode 100644 index f6f5a240..00000000 --- a/repository/Grease-Tests-Pharo-Core.package/GRPharoCodecTest.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "assert:next:startingAt:gives:" : "pmm 4/21/2012 20:54", - "assertEncodingIgnoresLanguageTat:" : "pmm 12/26/2010 22:24", - "stripLeadingCharFrom:" : "pmm 12/26/2010 22:13", - "testAllCodesIncludesIso88591" : "pmm 8/16/2010 00:24", - "testGreaseNextPutAllStartingAt" : "pmm 5/21/2014 21:09", - "testLanguageTag" : "pmm 12/26/2010 22:25" } } diff --git a/repository/Grease-Tests-Pharo-Core.package/GRPharoColorTest.class/methodProperties.json b/repository/Grease-Tests-Pharo-Core.package/GRPharoColorTest.class/methodProperties.json deleted file mode 100644 index 04f10d1b..00000000 --- a/repository/Grease-Tests-Pharo-Core.package/GRPharoColorTest.class/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "expectedFailures" : "lr 7/25/2011 19:51", - "testAllColors" : "lr 7/25/2011 18:34", - "testColorAsHtmlColor" : "MAD 8/29/2008 15:36", - "testFromSixDigit" : "pmm 11/20/2008 22:00", - "testFromStringName" : "pmm 9/1/2012 15:32", - "testFromStringSixDigit" : "pmm 11/20/2008 22:01", - "testFromStringThreeDigit" : "pmm 9/1/2012 15:32" } } diff --git a/repository/Grease-Tests-Pharo-Core.package/GRPharoGenericCodecTest.class/methodProperties.json b/repository/Grease-Tests-Pharo-Core.package/GRPharoGenericCodecTest.class/methodProperties.json deleted file mode 100644 index a58c2b7c..00000000 --- a/repository/Grease-Tests-Pharo-Core.package/GRPharoGenericCodecTest.class/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "testNoAmbiguities" : "pmm 8/16/2010 00:47" } } diff --git a/repository/Grease-Tests-Pharo-Core.package/GRPharoPlatformTest.class/methodProperties.json b/repository/Grease-Tests-Pharo-Core.package/GRPharoPlatformTest.class/methodProperties.json deleted file mode 100644 index 77ca0b72..00000000 --- a/repository/Grease-Tests-Pharo-Core.package/GRPharoPlatformTest.class/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "testCompileIntoClassified" : "jf 9/30/2009 00:19", - "testFullName" : "jf 10/6/2008 14:37", - "testGreaseIntegerOnCharacter" : "pmm 12/26/2010 21:44", - "testMessageSendValueWithPossibleArguments" : "jf 12/18/2009 12:29", - "testWriteToFileInFolderBinary" : "pmm 1/22/2012 16:09", - "testWriteToFileInFolderText" : "pmm 1/22/2012 15:54", - "writeToFile:" : "pmm 1/22/2012 15:57" } } diff --git a/repository/Grease-Tests-Pharo-Core.package/GRPlatformTest.extension/methodProperties.json b/repository/Grease-Tests-Pharo-Core.package/GRPlatformTest.extension/methodProperties.json deleted file mode 100644 index 09cf1de3..00000000 --- a/repository/Grease-Tests-Pharo-Core.package/GRPlatformTest.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "testScaledDecimalGreaseString" : "pmm 9/15/2013 12:00" } } diff --git a/repository/Grease-Tests-Pharo-Core.package/GRPrinterTest.extension/methodProperties.json b/repository/Grease-Tests-Pharo-Core.package/GRPrinterTest.extension/methodProperties.json deleted file mode 100644 index 4738d7db..00000000 --- a/repository/Grease-Tests-Pharo-Core.package/GRPrinterTest.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "testScaledDecimalPrinter" : "pmm 9/15/2013 11:35" } } diff --git a/repository/Grease-Tests-Pharo-Core.package/GRUtf8CodecTest.extension/methodProperties.json b/repository/Grease-Tests-Pharo-Core.package/GRUtf8CodecTest.extension/methodProperties.json deleted file mode 100644 index e948a56d..00000000 --- a/repository/Grease-Tests-Pharo-Core.package/GRUtf8CodecTest.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "expectedFailures" : "lr 7/25/2011 19:52" } } diff --git a/repository/Grease-Tests-Pharo-Core.package/monticello.meta/version b/repository/Grease-Tests-Pharo-Core.package/monticello.meta/version deleted file mode 100644 index e21206d5..00000000 --- a/repository/Grease-Tests-Pharo-Core.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-Tests-Pharo-Core-pmm.22' message 'Issue 792: Issue encoding a non-ascii character preceded by an xml-unsafe one - https://code.google.com/p/seaside/issues/detail?id=792 - move GRCountingStream from Pharo-only package to Core' id '9544fcd4-e1e7-4d17-9586-82ecc0402a4c' date '21 May 2014' time '9:35:59 pm' author 'pmm' ancestors ((name 'Grease-Tests-Pharo-Core-pmm.21' message 'Issue 770: ScaledDecimal rendering support http://code.google.com/p/seaside/issues/detail?id=770' id '87f003ce-ca35-4b4d-940f-716ceadfec2b' date '15 September 2013' time '12:19:58 pm' author 'pmm' ancestors ((name 'Grease-Tests-Pharo-Core-pmm.20' message '- Slime' id '0af86ec3-1c6f-4158-b32d-a6db74ed5c19' date '14 September 2013' time '9:52:16 am' author 'pmm' ancestors ((name 'Grease-Tests-Pharo-Core-pmm.19' message '- Slime fixes, mostly recategorizations' id 'c563e0f1-b510-46fd-aa49-1b0aa7c03b89' date '3 September 2012' time '4:35:15 pm' author 'pmm' ancestors ((name 'Grease-Tests-Pharo-Core-pmm.18' message '- formatting Nazis from outer space' id '6c9df51f-cf00-4a1e-8ee9-cc58fa45b610' date '1 September 2012' time '5:02:57 pm' author 'pmm' ancestors ((name 'Grease-Tests-Pharo-Core-pmm.17' message '- Issue 733: multibyte characters broken when flushing a WAComboResponse - http://code.google.com/p/seaside/issues/detail?id=733' id '18f64df3-3cc1-4bb7-97cd-ddd9a3e18561' date '25 June 2012' time '9:06:57 pm' author 'pmm' ancestors ((name 'Grease-Tests-Pharo-Core-pmm.16' message '- fix off by one error' id '4918147b-5d79-434e-92c8-68e10be339ef' date '21 April 2012' time '9:01:22 pm' author 'pmm' ancestors ((name 'Grease-Tests-Pharo-Core-pmm.15' message '- checkstyle' id 'f097854b-5c2e-4767-9031-39075bf621ed' date '22 January 2012' time '4:10:12 pm' author 'pmm' ancestors ((name 'Grease-Tests-Pharo-Core-pmm.14' message '- Issue 699: GRPharoPlatform>>#write:toFile:inFolder: uses CrLfFileStream in seaside 3.0.6.3' id '3b417409-7b1e-47a5-9601-4931425fb496' date '22 January 2012' time '4:00:25 pm' author 'pmm' ancestors ((name 'Grease-Tests-Pharo-Core-lr.13' message '- fixed formatting of return message' id 'c6dbcdf2-251f-4ad9-9219-927ba1cd2465' date '25 July 2011' time '8:18:52 pm' author 'lr' ancestors ((name 'Grease-Tests-Pharo-Core-lr.12' message '- fixed spacing in blocks' id 'dc350031-4a17-4557-8fc2-eb8aaa939159' date '25 July 2011' time '7:19:24 pm' author 'lr' ancestors ((name 'Grease-Tests-Pharo-Core-lr.11' message '- fixing method categories' id 'd42b8469-aaab-4cd5-bf8f-8efd15ae33fb' date '25 July 2011' time '11:07:38 am' author 'lr' ancestors ((name 'Grease-Tests-Pharo-Core-pmm.10' message '- check leading char does not have an influce on encoding' id '7c8ccfc0-34fd-410b-adbc-3ef2ffef5091' date '26 December 2010' time '10:29:22 pm' author 'pmm' ancestors ((name 'Grease-Tests-Pharo-Core-pmm.9' message '- cosmetics' id '53c26199-0b1c-4f1f-8339-6e0bbbcd4c05' date '26 December 2010' time '10:09:49 pm' author 'pmm' ancestors ((name 'Grease-Tests-Pharo-Core-pmm.8' message '- Issue 570: iso-8859-1 doesn''t show up in the encoding list of the server adapter - http://code.google.com/p/seaside/issues/detail?id=570' id '7bb03449-cc68-4546-afb5-bdd2af40438f' date '16 August 2010' time '12:58:10 pm' author 'pmm' ancestors ((name 'Grease-Tests-Pharo-Core-jok.7' message 'remove redundant #testConvertToSmalltalkNewlines' id '427a0773-62f9-f04a-ac30-cbb8db7bc866' date '15 April 2010' time '4:13:48 pm' author 'jok' ancestors ((name 'Grease-Tests-Pharo-Core-lr.6' message '- added explicit repository url' id '1b881541-baf0-41c8-9c20-c84f1900b030' date '17 February 2010' time '3:44:35 pm' author 'lr' ancestors ((name 'Grease-Tests-Pharo-Core-jf.5' message 'Write some more Slime rules and tests and apply them.' id 'd330cc25-558e-4d6a-9e6f-e5dfe7174210' date '29 December 2009' time '8:50:27 pm' author 'jf' ancestors ((name 'Grease-Tests-Pharo-Core-lr.4' message '- do not use any longer #printOn: and #printContentOn: in JSObject, but use #javascriptOn: and #javascriptContentOn: - implementors of external libraries that implment or send any of these methods need to perform the renaming as well' id 'd18ae4a5-33f6-4c79-bf14-a9fd162687b2' date '24 December 2009' time '11:19:28 am' author 'lr' ancestors ((name 'Grease-Tests-Pharo-Core-jf.3' message 'No need to test MessageSend for all platforms. VA doesn''t even have it and we have the GRDelayedSend classes that we use internally. Move the tests of the valuable protocol on MessageSend into the Pharo platform tests.' id '9f25fb89-15ae-4483-8b86-46ba68d13df6' date '18 December 2009' time '12:32:10 pm' author 'jf' ancestors ((name 'Grease-Tests-Pharo-Core-dkh.2' message '- move the expected failure for #testCodecUtf8ShortestForm from Seaside-Tests-Pharo-Core to Grease-Tests-Pharo-Core. since utf8 tests moved to Grease' id 'a291cb07-37e5-46a0-9eb5-fb93aa7a5ce8' date '13 November 2009' time '4:11:29 pm' author 'dkh' ancestors ((name 'Grease-Tests-Pharo-Core-jf.1' message 'Rename Seaside-Platform to Grease in order to help make clear that it is not Seaside-specific and can be used by other projects as a compatibility layer. This was spawned by discussions when I started porting Magritte to VAST using the Platform layer.' id 'dd546d83-004b-436b-8c98-02e8a5c42727' date '30 September 2009' time '10:47:37 pm' author 'jf' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file diff --git a/repository/Grease-Tests-Pharo20-Core.package/GRPackage.extension/methodProperties.json b/repository/Grease-Tests-Pharo20-Core.package/GRPackage.extension/methodProperties.json deleted file mode 100644 index f56de650..00000000 --- a/repository/Grease-Tests-Pharo20-Core.package/GRPackage.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { }, - "class" : { - "greaseTestsPharo20Core" : "pmm 9/12/2013 16:00" - } -} \ No newline at end of file diff --git a/repository/Grease-Tests-Pharo20-Core.package/GRPharoCodecTest.class/methodProperties.json b/repository/Grease-Tests-Pharo20-Core.package/GRPharoCodecTest.class/methodProperties.json deleted file mode 100644 index dfc7ee36..00000000 --- a/repository/Grease-Tests-Pharo20-Core.package/GRPharoCodecTest.class/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "instance" : { - "testAllCodesIncludesIso88591" : "pmm 8/16/2010 00:24", - "testGreaseNextPutAllStartingAt" : "pmm 5/21/2014 20:43", - "testLanguageTag" : "pmm 12/26/2010 22:25", - "stripLeadingCharFrom:" : "pmm 12/26/2010 22:13", - "assert:next:startingAt:gives:" : "pmm 4/21/2012 20:54", - "assertEncodingIgnoresLanguageTat:" : "pmm 12/26/2010 22:24" - }, - "class" : { } -} \ No newline at end of file diff --git a/repository/Grease-Tests-Pharo20-Core.package/GRPharoColorTest.class/methodProperties.json b/repository/Grease-Tests-Pharo20-Core.package/GRPharoColorTest.class/methodProperties.json deleted file mode 100644 index cbff9c1b..00000000 --- a/repository/Grease-Tests-Pharo20-Core.package/GRPharoColorTest.class/methodProperties.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "instance" : { - "testFromSixDigit" : "pmm 11/20/2008 22:00", - "expectedFailures" : "lr 7/25/2011 19:51", - "testFromStringName" : "pmm 8/25/2016 10:59", - "testColorAsHtmlColor" : "MAD 8/29/2008 15:36", - "testFromStringSixDigit" : "pmm 11/20/2008 22:01", - "testFromStringThreeDigit" : "pmm 8/25/2016 11:00", - "testAllColors" : "lr 7/25/2011 18:34" - }, - "class" : { } -} \ No newline at end of file diff --git a/repository/Grease-Tests-Pharo20-Core.package/GRPharoGenericCodecTest.class/methodProperties.json b/repository/Grease-Tests-Pharo20-Core.package/GRPharoGenericCodecTest.class/methodProperties.json deleted file mode 100644 index faa62647..00000000 --- a/repository/Grease-Tests-Pharo20-Core.package/GRPharoGenericCodecTest.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "testNoAmbiguities" : "pmm 8/16/2010 00:47" - }, - "class" : { } -} \ No newline at end of file diff --git a/repository/Grease-Tests-Pharo20-Core.package/GRPharoPlatformTest.class/methodProperties.json b/repository/Grease-Tests-Pharo20-Core.package/GRPharoPlatformTest.class/methodProperties.json deleted file mode 100644 index bdaf4408..00000000 --- a/repository/Grease-Tests-Pharo20-Core.package/GRPharoPlatformTest.class/methodProperties.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "instance" : { - "testCompileIntoClassified" : "JohanBrichau 4/19/2014 17:14", - "runCase" : "pmm 9/12/2013 18:03", - "testReadWriteToFileInFolderBinary" : "pmm 8/25/2016 10:59", - "testUseByteArrayLiterals" : "pmm 9/10/2017 12:21", - "testFullName" : "jf 10/6/2008 14:37", - "testGreaseIntegerOnCharacter" : "pmm 12/26/2010 21:44", - "writeToFile:withFileNameDo:" : "JohanBrichau 11/8/2014 10:33", - "testMessageSendValueWithPossibleArguments" : "jf 12/18/2009 12:29", - "testReadWriteToFileInFolderText" : "pmm 8/25/2016 10:59" - }, - "class" : { } -} \ No newline at end of file diff --git a/repository/Grease-Tests-Pharo20-Core.package/GRPlatformTest.extension/methodProperties.json b/repository/Grease-Tests-Pharo20-Core.package/GRPlatformTest.extension/methodProperties.json deleted file mode 100644 index 65cb9459..00000000 --- a/repository/Grease-Tests-Pharo20-Core.package/GRPlatformTest.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "testScaledDecimalGreaseString" : "pmm 9/15/2013 12:27" - }, - "class" : { } -} \ No newline at end of file diff --git a/repository/Grease-Tests-Pharo20-Core.package/GRPrinterTest.extension/methodProperties.json b/repository/Grease-Tests-Pharo20-Core.package/GRPrinterTest.extension/methodProperties.json deleted file mode 100644 index f1b23dba..00000000 --- a/repository/Grease-Tests-Pharo20-Core.package/GRPrinterTest.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "testScaledDecimalPrinter" : "pmm 9/15/2013 12:27" - }, - "class" : { } -} \ No newline at end of file diff --git a/repository/Grease-Tests-Pharo20-Core.package/GRUtf8CodecTest.extension/methodProperties.json b/repository/Grease-Tests-Pharo20-Core.package/GRUtf8CodecTest.extension/methodProperties.json deleted file mode 100644 index aabee858..00000000 --- a/repository/Grease-Tests-Pharo20-Core.package/GRUtf8CodecTest.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "expectedFailures" : "JohanBrichau 8/22/2013 19:54" - }, - "class" : { } -} \ No newline at end of file diff --git a/repository/Grease-Tests-Pharo20-Core.package/monticello.meta/version b/repository/Grease-Tests-Pharo20-Core.package/monticello.meta/version deleted file mode 100644 index 6a570f56..00000000 --- a/repository/Grease-Tests-Pharo20-Core.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-Tests-Pharo20-Core-pmm.14' message '- improve test coverage' id 'b7b557f2-3415-0d00-884a-5c020466576b' date '10 September 2017' time '12:24:05.555883 pm' author 'pmm' ancestors ((name 'Grease-Tests-Pharo20-Core-pmm.13' message '- lint fixes' id 'af62c7cc-c575-402a-96c0-4d460c8199e6' date '25 August 2016' time '11:04:17.926889 am' author 'pmm' ancestors ((name 'Grease-Tests-Pharo20-Core-JohanBrichau.12' message 'Added tests for file reading' id '6b2eb7ec-5ea0-4109-b85f-940c6156b6d4' date '8 November 2014' time '10:39:38.553637 am' author 'JohanBrichau' ancestors ((name 'Grease-Tests-Pharo20-Core-pmm.11' message 'Issue 792: Issue encoding a non-ascii character preceded by an xml-unsafe one - https://code.google.com/p/seaside/issues/detail?id=792' id '3247b811-bdef-473a-aa2d-473a532ec629' date '21 May 2014' time '9:32:12.009306 pm' author 'pmm' ancestors ((name 'Grease-Tests-Pharo20-Core-JohanBrichau.10' message 'Issue 789: Running WAFilelibraryTest on Pharo3 leaves Seaside-Tests-Core package in a dirty state https://code.google.com/p/seaside/issues/detail?id=789' id 'e3e4c2eb-cef7-4168-aeae-7a57490aa2b1' date '19 April 2014' time '5:31:18.877112 pm' author 'JohanBrichau' ancestors ((name 'Grease-Tests-Pharo20-Core-JohanBrichau.9' message 'move GRCountingStream from Pharo-only package to Core' id 'b89fed14-cf86-4d07-829c-cbdcea6da4f4' date '16 February 2014' time '9:30:04.97327 pm' author 'JohanBrichau' ancestors ((name 'Grease-Tests-Pharo20-Core-pmm.8' message 'Issue 770: ScaledDecimal rendering support http://code.google.com/p/seaside/issues/detail?id=770' id '6e6bd71a-439c-4902-a68d-e1af63451f40' date '15 September 2013' time '12:28:07.009 pm' author 'pmm' ancestors ((name 'Grease-Tests-Pharo20-Core-pmm.7' message '- bring #doSilently: back' id '906ba423-0a76-410e-8e76-1f9df06cf8cc' date '12 September 2013' time '6:04:53.713 pm' author 'pmm' ancestors ((name 'Grease-Tests-Pharo20-Core-pmm.6' message '- fix URLs' id 'ff0b9dc6-d275-4f59-8a5b-a01e9cff4ec6' date '12 September 2013' time '4:01:56.23633 pm' author 'pmm' ancestors ((name 'Grease-Tests-Pharo20-Core-pmm.5' message '- fix compilation' id 'd299e09d-7488-4996-801a-ba125ebef913' date '12 September 2013' time '11:26:02.540867 am' author 'pmm' ancestors ((name 'Grease-Tests-Pharo20-Core-JohanBrichau.4' message 'GRUtf8CodecTest.testCodecUtf8ShortestForm is an expected failure' id '8f5f9382-81d9-41d4-92b7-69628deaab25' date '22 August 2013' time '8:00:55.046 pm' author 'JohanBrichau' ancestors ((name 'Grease-Tests-Pharo20-Core-pmm.3' message '- ???' id 'e4ea84af-efd3-48cb-83b5-cacb0a234bf7' date '19 August 2012' time '10:13:51.278 am' author 'pmm' ancestors ((name 'Grease-Tests-Pharo20-Core-pmm.2' message '- change package name' id 'fadba33c-472e-4ea1-a210-fc25fee25c8e' date '4 August 2012' time '1:10:10.314 pm' author 'pmm' ancestors ((name 'Grease-Tests-Pharo20-Core-pmm.1' message '- bump' id '4feb168a-ce43-4b92-bdf2-d83c8c5d2405' date '4 August 2012' time '1:06:42.944 pm' author 'pmm' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file diff --git a/repository/Grease-Tests-Slime.package/GRPackage.extension/methodProperties.json b/repository/Grease-Tests-Slime.package/GRPackage.extension/methodProperties.json deleted file mode 100644 index b56d20f5..00000000 --- a/repository/Grease-Tests-Slime.package/GRPackage.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "greaseTestsSlime" : "lr 2/17/2010 15:22" }, - "instance" : { - } } diff --git a/repository/Grease-Tests-Slime.package/GRSlimeTest.class/methodProperties.json b/repository/Grease-Tests-Slime.package/GRSlimeTest.class/methodProperties.json deleted file mode 100644 index 00a8f6c3..00000000 --- a/repository/Grease-Tests-Slime.package/GRSlimeTest.class/methodProperties.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "canParse:" : "lr 1/25/2010 22:07", - "category" : "lr 1/25/2010 22:07", - "compile:in:" : "lr 1/25/2010 22:07", - "defineClass:superclass:" : "lr 1/24/2010 18:19", - "rules" : "jok 1/26/2010 14:36", - "run:do:" : "lr 9/8/2011 23:13", - "run:ignoring:do:" : "pmm 9/1/2012 12:14", - "runCase" : "JohanBrichau 9/10/2013 11:29", - "runRule:selectors:" : "pmm 9/1/2012 12:10", - "runRule:selectors:ignoring:" : "pmm 9/1/2012 12:16", - "runTransformation:changes:" : "pmm 9/1/2012 12:15", - "setUp" : "lr 9/8/2011 23:13", - "tearDown" : "pmm 9/13/2013 11:14", - "testAnsiBooleansRule" : "jok 1/26/2010 15:10", - "testAnsiCharacterRule" : "jok 1/26/2010 15:10", - "testAnsiCollectionsRule" : "lr 7/25/2011 17:32", - "testAnsiConditionalsRule" : "jok 1/26/2010 15:11", - "testAnsiConvertorRule" : "jok 1/26/2010 15:12", - "testAnsiExceptionsRule" : "jok 1/26/2010 15:12", - "testAnsiStreamsRule" : "jok 1/26/2010 15:13", - "testAnsiStringsRule" : "pmm 9/13/2013 09:52", - "testBasicNewInitializeMissing" : "jok 1/26/2010 15:02", - "testBlockFormatting" : "pmm 9/14/2013 15:30", - "testDeprecatedApiProtocol" : "jok 1/26/2010 15:22", - "testEmptyStatements" : "pmm 9/1/2012 12:16", - "testInvalidObjectInitialization" : "jok 1/26/2010 15:05", - "testNonPortableMessageRule" : "AvO 9/13/2013 15:00", - "testNonPortableSourceFormat" : "pmm 2/12/2011 09:51", - "testNotPortableCollectionsRule" : "jok 3/24/2010 14:28", - "testObjectIn" : "jok 1/26/2010 15:14", - "testParensFormatting" : "lr 7/25/2011 16:41", - "testReturnFormatting" : "lr 7/25/2011 16:33", - "testTempsFormatting" : "lr 7/25/2011 16:35", - "testTestCaseFailRule" : "pmm 8/17/2014 11:55", - "testUnnecessaryLastPeriodRule" : "pmm 9/1/2012 12:24", - "testUsesCanPerformOrUnderstand" : "JohanBrichau 9/14/2013 12:00", - "testUsesClassForHash" : "lr 10/14/2010 09:11", - "testUsesCurlyBraceArrays" : "jok 1/26/2010 15:15", - "testUsesLiteralByteArrays" : "jok 1/26/2010 15:15", - "testUsesMethodAnnotations" : "jok 1/26/2010 15:06", - "testUsesNotPortableClass" : "jok 1/26/2010 15:06" } } diff --git a/repository/Grease-Tests-Slime.package/monticello.meta/version b/repository/Grease-Tests-Slime.package/monticello.meta/version deleted file mode 100644 index f48bc199..00000000 --- a/repository/Grease-Tests-Slime.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-Tests-Slime-pmm.19' message 'Issue 777: Make TestCase >> #fail SLime rule' id '856126e0-dc81-4d67-bee9-a663ac85fec5' date '17 August 2014' time '12:30 pm' author 'pmm' ancestors ((name 'Grease-Tests-Slime-pmm.18' message '- should be block arguments, not symbols' id '5de41290-e828-481b-ac6b-2cc34caafe23' date '14 September 2013' time '3:31 pm' author 'pmm' ancestors ((name 'Grease-Tests-Slime-JohanBrichau.17' message 'Fix failing tests (invalid code being compiled)' id '08c2ea8c-1cdf-43eb-96b1-52a53d0705af' date '14 September 2013' time '12:27:14.577 pm' author 'JohanBrichau' ancestors ((name 'Grease-Tests-Slime-pmm.16' message '- merge commit' id '890c4ea1-ec49-43cf-8961-450d1e4cb9bb' date '14 September 2013' time '8:48:38 am' author 'pmm' ancestors ((name 'Grease-Tests-Slime-pmm.15' message 'Issue 741: #includesSubString: deprecated in Pharo 2.0 http://code.google.com/p/seaside/issues/detail?id=741' id 'd952f571-ea60-4080-84fe-1976473d8088' date '13 September 2013' time '9:53:33 am' author 'pmm' ancestors ((name 'Grease-Tests-Slime-JohanBrichau.14' message 'deal with #doSilently: change from Pharo2.0 onward' id '1f3ff547-4809-4ef1-845f-6dd850f9b606' date '10 September 2013' time '11:36:27.806 am' author 'JohanBrichau' ancestors ((name 'Grease-Tests-Slime-JohanBrichau.13' message 'From Pharo1.4 (at least), removing a class category raises an error when it''s not empty. Therefore empty the category first (in the #teardown: method of GRSlimeTest)' id 'e5e10a29-8a58-438e-94d8-45ff7470eb97' date '10 September 2013' time '11:07:45.21 am' author 'JohanBrichau' ancestors ((name 'Grease-Tests-Slime-pmm.12' message '- add rule to detect unnecessary last period' id '8982414c-a781-48c8-bc4c-d73c18c7cc2d' date '1 September 2012' time '12:30:29 pm' author 'pmm' ancestors ((name 'Grease-Tests-Slime-pmm.11' message '- add rule for #canPerform: or #canUnderstand:' id '0ee0b478-63b8-4801-88c8-0ac8d47891af' date '29 March 2012' time '8:01:04 pm' author 'pmm' ancestors ((name 'Grease-Tests-Slime-lr.10' message '- update code to work with latest RB' id '93786627-5673-485e-908a-c5399db67694' date '8 September 2011' time '11:24:30 pm' author 'lr' ancestors ((name 'Grease-Tests-Slime-lr.9' message '- fixed spacing in blocks' id 'b6bd1a4c-d47c-4c09-b530-7a5ee35eac75' date '25 July 2011' time '7:20:49 pm' author 'lr' ancestors ((name 'Grease-Tests-Slime-lr.8' message '- added some tests for spacing (in parenthesis, return statements, blocks and temps)' id 'a44abf88-4aa8-4832-b7b6-d779fd8cb3c0' date '25 July 2011' time '5:33:18 pm' author 'lr' ancestors ((name 'Grease-Tests-Slime-pmm.7' message '- tests for WideStrings' id '522fa730-4eea-4899-8688-74017ba09202' date '12 February 2011' time '10:09:33 am' author 'pmm' ancestors ((name 'Grease-Tests-Slime-lr.6' message '- added a rule decting the use of "self class hash", which does not work in GemStone - fixed findTokens: rule' id '836bcafd-68f8-46fb-be85-98ae408f3b0e' date '14 October 2010' time '9:45:16 am' author 'lr' ancestors ((name 'Grease-Tests-Slime-jok.5' message 'Use #reverse (ANSI) rather than #reversed' id '44e1610a-1b8c-d44c-adfb-cee34c8c3c80' date '23 April 2010' time '8:45:52 am' author 'jok' ancestors ((name 'Grease-Tests-Slime-lr.4' message '- renamed all #testing protocols in TestCase classes with test methods to #tests or #tests-*, as discussed in the mailing list: #testing is for predicate methods, not unit tests. I''ve been moving them to #tests or #tests-* gradually but it might be good to do a sweeping change if others agree with me.' id '2581055b-0f07-414c-bee3-e3658d112d9b' date '30 March 2010' time '9:02:08 am' author 'lr' ancestors ((name 'Grease-Tests-Slime-jok.3' message '- http://code.google.com/p/seaside/issues/detail?id=555 - add #beginsWithSubCollection: and #endsWithSubCollection:' id 'b9c633c0-f351-0c4c-9924-bc8ad11ff7be' date '25 March 2010' time '8:27:08 am' author 'jok' ancestors ((name 'Grease-Tests-Slime-lr.2' message '- added explicit repository url' id '2b36bc75-0edc-4dc3-8c3d-89628e98c2a2' date '17 February 2010' time '4:05:39 pm' author 'lr' ancestors ((name 'Grease-Tests-Slime-jok.1' message 'Unit tests for Grease Slime rules' id 'bf7be05a-12ca-514c-9a24-a481078028b2' date '26 January 2010' time '4:06:21 pm' author 'jok' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Grease-Tests-Slime-AvO.13' message 'Tests for GRNonPortableMessageRule.' id '9927d2b0-0401-a64d-a4c3-d9261e45b1e7' date '13 September 2013' time '9:14:59 pm' author 'AvO' ancestors ((id '8982414c-a781-48c8-bc4c-d73c18c7cc2d')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file diff --git a/repository/Grease-Tests-Squeak-Core.package/GRSqueakPlatformTest.class/methodProperties.json b/repository/Grease-Tests-Squeak-Core.package/GRSqueakPlatformTest.class/methodProperties.json deleted file mode 100644 index c7e7d4cc..00000000 --- a/repository/Grease-Tests-Squeak-Core.package/GRSqueakPlatformTest.class/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "testCompileIntoClassified" : "JohnMcKeon 11/30/2014 22:53", - "testFullName" : "JohnMcKeon 11/30/2014 22:53", - "testGreaseIntegerOnCharacter" : "JohnMcKeon 11/30/2014 22:53", - "testMessageSendValueWithPossibleArguments" : "JohnMcKeon 11/30/2014 22:53", - "testWriteToFileInFolderBinary" : "JohnMcKeon 11/30/2014 22:53", - "testWriteToFileInFolderText" : "JohnMcKeon 11/30/2014 22:53", - "writeToFile:" : "JohnMcKeon 11/30/2014 22:53" } } diff --git a/repository/Grease-Tests-Squeak-Core.package/monticello.meta/version b/repository/Grease-Tests-Squeak-Core.package/monticello.meta/version deleted file mode 100644 index f97d66cc..00000000 --- a/repository/Grease-Tests-Squeak-Core.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-Tests-Squeak-Core-JohnMcKeon.1' message '-grease for squeak' id '223fb7dc-44fc-e640-86a7-d32b4e831a37' date '16 March 2015' time '9:25:01.808 pm' author 'JohnMcKeon' ancestors () 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 d751fc6a..00000000 --- a/repository/Grease-Tests-Squeak5-Core.package/GRPackage.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "greaseTestsSqueak5Core" : "JB 2/27/2016 13:28" }, - "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 f6f5a240..00000000 --- a/repository/Grease-Tests-Squeak5-Core.package/GRPharoCodecTest.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "assert:next:startingAt:gives:" : "pmm 4/21/2012 20:54", - "assertEncodingIgnoresLanguageTat:" : "pmm 12/26/2010 22:24", - "stripLeadingCharFrom:" : "pmm 12/26/2010 22:13", - "testAllCodesIncludesIso88591" : "pmm 8/16/2010 00:24", - "testGreaseNextPutAllStartingAt" : "pmm 5/21/2014 21:09", - "testLanguageTag" : "pmm 12/26/2010 22:25" } } 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 04f10d1b..00000000 --- a/repository/Grease-Tests-Squeak5-Core.package/GRPharoColorTest.class/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "expectedFailures" : "lr 7/25/2011 19:51", - "testAllColors" : "lr 7/25/2011 18:34", - "testColorAsHtmlColor" : "MAD 8/29/2008 15:36", - "testFromSixDigit" : "pmm 11/20/2008 22:00", - "testFromStringName" : "pmm 9/1/2012 15:32", - "testFromStringSixDigit" : "pmm 11/20/2008 22:01", - "testFromStringThreeDigit" : "pmm 9/1/2012 15:32" } } 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 a58c2b7c..00000000 --- a/repository/Grease-Tests-Squeak5-Core.package/GRPharoGenericCodecTest.class/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "testNoAmbiguities" : "pmm 8/16/2010 00:47" } } 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 77ca0b72..00000000 --- a/repository/Grease-Tests-Squeak5-Core.package/GRPharoPlatformTest.class/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "testCompileIntoClassified" : "jf 9/30/2009 00:19", - "testFullName" : "jf 10/6/2008 14:37", - "testGreaseIntegerOnCharacter" : "pmm 12/26/2010 21:44", - "testMessageSendValueWithPossibleArguments" : "jf 12/18/2009 12:29", - "testWriteToFileInFolderBinary" : "pmm 1/22/2012 16:09", - "testWriteToFileInFolderText" : "pmm 1/22/2012 15:54", - "writeToFile:" : "pmm 1/22/2012 15:57" } } 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 09cf1de3..00000000 --- a/repository/Grease-Tests-Squeak5-Core.package/GRPlatformTest.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "testScaledDecimalGreaseString" : "pmm 9/15/2013 12:00" } } 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 4738d7db..00000000 --- a/repository/Grease-Tests-Squeak5-Core.package/GRPrinterTest.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "testScaledDecimalPrinter" : "pmm 9/15/2013 11:35" } } 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 e948a56d..00000000 --- a/repository/Grease-Tests-Squeak5-Core.package/GRUtf8CodecTest.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "expectedFailures" : "lr 7/25/2011 19:52" } } 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 2394de1b..00000000 --- a/repository/Grease-Tests-Squeak5-Core.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-Tests-Squeak5-Core-JohanBrichau.1' message 'Fork from Grease-Tests-Pharo-Core' id '94394a2e-404c-42c5-a4fb-9ed8241da254' date '27 February 2016' time '1:33:07.959 pm' author 'JB' ancestors () stepChildren ()) \ No newline at end of file diff --git a/repository/Grease-Tests-Squeak6-Core.package/GRPackage.extension/methodProperties.json b/repository/Grease-Tests-Squeak6-Core.package/GRPackage.extension/methodProperties.json deleted file mode 100644 index 0c8a086b..00000000 --- a/repository/Grease-Tests-Squeak6-Core.package/GRPackage.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - "greaseTestsSqueak6Core" : "topa 11/15/2017 17:19" }, - "instance" : { - } } diff --git a/repository/Grease-Tests-Squeak6-Core.package/GRPharoCodecTest.class/methodProperties.json b/repository/Grease-Tests-Squeak6-Core.package/GRPharoCodecTest.class/methodProperties.json deleted file mode 100644 index f6f5a240..00000000 --- a/repository/Grease-Tests-Squeak6-Core.package/GRPharoCodecTest.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "assert:next:startingAt:gives:" : "pmm 4/21/2012 20:54", - "assertEncodingIgnoresLanguageTat:" : "pmm 12/26/2010 22:24", - "stripLeadingCharFrom:" : "pmm 12/26/2010 22:13", - "testAllCodesIncludesIso88591" : "pmm 8/16/2010 00:24", - "testGreaseNextPutAllStartingAt" : "pmm 5/21/2014 21:09", - "testLanguageTag" : "pmm 12/26/2010 22:25" } } diff --git a/repository/Grease-Tests-Squeak6-Core.package/GRPharoColorTest.class/methodProperties.json b/repository/Grease-Tests-Squeak6-Core.package/GRPharoColorTest.class/methodProperties.json deleted file mode 100644 index 04f10d1b..00000000 --- a/repository/Grease-Tests-Squeak6-Core.package/GRPharoColorTest.class/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "expectedFailures" : "lr 7/25/2011 19:51", - "testAllColors" : "lr 7/25/2011 18:34", - "testColorAsHtmlColor" : "MAD 8/29/2008 15:36", - "testFromSixDigit" : "pmm 11/20/2008 22:00", - "testFromStringName" : "pmm 9/1/2012 15:32", - "testFromStringSixDigit" : "pmm 11/20/2008 22:01", - "testFromStringThreeDigit" : "pmm 9/1/2012 15:32" } } diff --git a/repository/Grease-Tests-Squeak6-Core.package/GRPharoGenericCodecTest.class/methodProperties.json b/repository/Grease-Tests-Squeak6-Core.package/GRPharoGenericCodecTest.class/methodProperties.json deleted file mode 100644 index a58c2b7c..00000000 --- a/repository/Grease-Tests-Squeak6-Core.package/GRPharoGenericCodecTest.class/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "testNoAmbiguities" : "pmm 8/16/2010 00:47" } } diff --git a/repository/Grease-Tests-Squeak6-Core.package/GRPharoPlatformTest.class/methodProperties.json b/repository/Grease-Tests-Squeak6-Core.package/GRPharoPlatformTest.class/methodProperties.json deleted file mode 100644 index 77ca0b72..00000000 --- a/repository/Grease-Tests-Squeak6-Core.package/GRPharoPlatformTest.class/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "testCompileIntoClassified" : "jf 9/30/2009 00:19", - "testFullName" : "jf 10/6/2008 14:37", - "testGreaseIntegerOnCharacter" : "pmm 12/26/2010 21:44", - "testMessageSendValueWithPossibleArguments" : "jf 12/18/2009 12:29", - "testWriteToFileInFolderBinary" : "pmm 1/22/2012 16:09", - "testWriteToFileInFolderText" : "pmm 1/22/2012 15:54", - "writeToFile:" : "pmm 1/22/2012 15:57" } } diff --git a/repository/Grease-Tests-Squeak6-Core.package/GRPlatformTest.extension/methodProperties.json b/repository/Grease-Tests-Squeak6-Core.package/GRPlatformTest.extension/methodProperties.json deleted file mode 100644 index 09cf1de3..00000000 --- a/repository/Grease-Tests-Squeak6-Core.package/GRPlatformTest.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "testScaledDecimalGreaseString" : "pmm 9/15/2013 12:00" } } diff --git a/repository/Grease-Tests-Squeak6-Core.package/GRPrinterTest.extension/methodProperties.json b/repository/Grease-Tests-Squeak6-Core.package/GRPrinterTest.extension/methodProperties.json deleted file mode 100644 index 4738d7db..00000000 --- a/repository/Grease-Tests-Squeak6-Core.package/GRPrinterTest.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "testScaledDecimalPrinter" : "pmm 9/15/2013 11:35" } } diff --git a/repository/Grease-Tests-Squeak6-Core.package/GRUtf8CodecTest.extension/methodProperties.json b/repository/Grease-Tests-Squeak6-Core.package/GRUtf8CodecTest.extension/methodProperties.json deleted file mode 100644 index eb682291..00000000 --- a/repository/Grease-Tests-Squeak6-Core.package/GRUtf8CodecTest.extension/methodProperties.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "expectedFailures" : "topa 11/15/2017 17:30" } } diff --git a/repository/Grease-Tests-Squeak6-Core.package/monticello.meta/version b/repository/Grease-Tests-Squeak6-Core.package/monticello.meta/version deleted file mode 100644 index 0074752d..00000000 --- a/repository/Grease-Tests-Squeak6-Core.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'Grease-Tests-Squeak6-Core-topa.1' message 'Copy and adapt Squeak5 to Squeak6' id '87b1a65f-df2b-487c-a769-8a3655625def' date '15 November 2017' time '5:33:58.231842 pm' author 'topa' ancestors () stepChildren ()) \ No newline at end of file