diff --git a/repository/Grease-Pharo60-Core.package/GRDynamicVariable.class/README.md b/repository/Grease-Pharo60-Core.package/GRDynamicVariable.class/README.md index e69de29b..5b308f84 100644 --- a/repository/Grease-Pharo60-Core.package/GRDynamicVariable.class/README.md +++ b/repository/Grease-Pharo60-Core.package/GRDynamicVariable.class/README.md @@ -0,0 +1,11 @@ +A GRDynamicVariable is a variable that is visible only in the stackframes outgoing from this one. + +Example: + +GRDynamicVariable + use: 'Seaside' + during: [ self compilcatedCalculation ] + +Whenever GRDynamicVariable value gets evaluated somewhere inside [ self compilcatedCalculation ] or a method invoked directly or indirectly by it, its value will be 'Seaside'. If no #use:during: handler is around the current stack frame, then the value will be the return value of the class side #defaultValue. + +Do not use GRDynamicVariable directly, instead create a subclass for each variable you want to use. \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/GRDynamicVariable.class/properties.json b/repository/Grease-Pharo60-Core.package/GRDynamicVariable.class/properties.json index f990263b..c8b6c982 100644 --- a/repository/Grease-Pharo60-Core.package/GRDynamicVariable.class/properties.json +++ b/repository/Grease-Pharo60-Core.package/GRDynamicVariable.class/properties.json @@ -1,5 +1,5 @@ { - "commentStamp" : "", + "commentStamp" : "pmm 9/5/2017 07:53", "super" : "DynamicVariable", "category" : "Grease-Pharo60-Core", "classinstvars" : [ ], diff --git a/repository/Grease-Pharo60-Core.package/GRPharoGenericCodec.class/README.md b/repository/Grease-Pharo60-Core.package/GRPharoGenericCodec.class/README.md index e69de29b..f4f5002a 100644 --- a/repository/Grease-Pharo60-Core.package/GRPharoGenericCodec.class/README.md +++ b/repository/Grease-Pharo60-Core.package/GRPharoGenericCodec.class/README.md @@ -0,0 +1,12 @@ +A codec that delegates to TextConverter. + +Instance Variables + name: + urlCodec: + + +name + - the name of the encoding + +urlCodec: + - the codec used to encode URLs \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/GRPharoGenericCodec.class/properties.json b/repository/Grease-Pharo60-Core.package/GRPharoGenericCodec.class/properties.json index 3948c7a1..03337fa2 100644 --- a/repository/Grease-Pharo60-Core.package/GRPharoGenericCodec.class/properties.json +++ b/repository/Grease-Pharo60-Core.package/GRPharoGenericCodec.class/properties.json @@ -1,5 +1,5 @@ { - "commentStamp" : "", + "commentStamp" : "pmm 9/5/2017 07:58", "super" : "GRCodec", "category" : "Grease-Pharo60-Core", "classinstvars" : [ ], diff --git a/repository/Grease-Pharo60-Core.package/GRPharoRandomProvider.class/README.md b/repository/Grease-Pharo60-Core.package/GRPharoRandomProvider.class/README.md index e69de29b..852705fe 100644 --- a/repository/Grease-Pharo60-Core.package/GRPharoRandomProvider.class/README.md +++ b/repository/Grease-Pharo60-Core.package/GRPharoRandomProvider.class/README.md @@ -0,0 +1 @@ +I make GRPlatform use Random as a random number generator. \ No newline at end of file diff --git a/repository/Grease-Pharo60-Core.package/GRPharoRandomProvider.class/properties.json b/repository/Grease-Pharo60-Core.package/GRPharoRandomProvider.class/properties.json index e5bb19bb..73a91ed2 100644 --- a/repository/Grease-Pharo60-Core.package/GRPharoRandomProvider.class/properties.json +++ b/repository/Grease-Pharo60-Core.package/GRPharoRandomProvider.class/properties.json @@ -1,5 +1,5 @@ { - "commentStamp" : "", + "commentStamp" : "pmm 9/5/2017 07:59", "super" : "GRObject", "category" : "Grease-Pharo60-Core", "classinstvars" : [ diff --git a/repository/Grease-Pharo60-Core.package/monticello.meta/version b/repository/Grease-Pharo60-Core.package/monticello.meta/version index 19e09696..a6da0e68 100644 --- a/repository/Grease-Pharo60-Core.package/monticello.meta/version +++ b/repository/Grease-Pharo60-Core.package/monticello.meta/version @@ -1 +1 @@ -(name 'Grease-Pharo60-Core-pmm.4' message 'Kick explorer support from Pharo 6 - Closes #31' id 'f1e4d024-cc14-0d00-9c47-1a66066d8f9e' date '5 September 2017' time '7:22:00.792553 am' author 'pmm' ancestors ((name 'Grease-Pharo60-Core-JohanBrichau.3' 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 'b7f896c0-5f11-0d00-87f2-d9cb08c307d1' date '23 July 2017' time '5:47:27.925141 pm' author 'JohanBrichau' ancestors ((name 'Grease-Pharo60-Core-JohanBrichau.2' message 'Added GRDynamicVariable (copied from Grease-Pharo30-Core-MaxLeske.23)' id 'c95f31f1-ba0c-0d00-9a91-77be09e6dcd5' date '25 May 2017' time '3:29:07.233987 pm' author 'JohanBrichau' ancestors ((name 'Grease-Pharo60-Core-JohanBrichau.1' message 'Split from Grease-Pharo30-Core-PavelKrivanek.22 with changes for Pharo6.0 onwards' id 'fec0f92f-b80c-0d00-b4b4-c13800bfc9db' date '25 May 2017' time '12:11:55.651574 pm' author 'JohanBrichau' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file +(name 'Grease-Pharo60-Core-pmm.5' message 'Add comments to classes who were previously missing them.' id '3f01c4b7-cc14-0d00-9c48-5d25066d8f9e' date '5 September 2017' time '8:03:06.198613 am' author 'pmm' ancestors ((name 'Grease-Pharo60-Core-pmm.4' message 'Kick explorer support from Pharo 6 - Closes #31' id 'f1e4d024-cc14-0d00-9c47-1a66066d8f9e' date '5 September 2017' time '7:22:00.792553 am' author 'pmm' ancestors ((name 'Grease-Pharo60-Core-JohanBrichau.3' 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 'b7f896c0-5f11-0d00-87f2-d9cb08c307d1' date '23 July 2017' time '5:47:27.925141 pm' author 'JohanBrichau' ancestors ((name 'Grease-Pharo60-Core-JohanBrichau.2' message 'Added GRDynamicVariable (copied from Grease-Pharo30-Core-MaxLeske.23)' id 'c95f31f1-ba0c-0d00-9a91-77be09e6dcd5' date '25 May 2017' time '3:29:07.233987 pm' author 'JohanBrichau' ancestors ((name 'Grease-Pharo60-Core-JohanBrichau.1' message 'Split from Grease-Pharo30-Core-PavelKrivanek.22 with changes for Pharo6.0 onwards' id 'fec0f92f-b80c-0d00-b4b4-c13800bfc9db' date '25 May 2017' time '12:11:55.651574 pm' author 'JohanBrichau' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file