The Trunk: SystemReporter-dtl.5.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: SystemReporter-dtl.5.mcz

commits-2
David T. Lewis uploaded a new version of SystemReporter to project The Trunk:
http://source.squeak.org/trunk/SystemReporter-dtl.5.mcz

==================== Summary ====================

Name: SystemReporter-dtl.5
Author: dtl
Time: 27 January 2011, 9:22:26.473 pm
UUID: 0f6c58a2-18e7-4809-92db-e5688406758c
Ancestors: SystemReporter-laza.4, SystemReporter-dtl.3

Merge SystemReporter-dtl.3

=============== Diff against SystemReporter-laza.4 ===============

Item was changed:
  ----- Method: SystemReporter>>reportVM: (in category 'reporting') -----
  reportVM: aStream
  self header: 'Virtual Machine' on: aStream.
  aStream
  nextPutAll: (SmalltalkImage current getSystemAttribute: 1004); cr;
+ nextPutAll: (SmalltalkImage current getSystemAttribute: 0); cr.
+ [Smalltalk vm platformSourceVersion
+ ifNotNilDo: [:v | aStream nextPutAll: 'platform sources revision ', v; cr]]
+ on: Warning do: ["unsupported primitive"].
+ [Smalltalk vm interpreterSourceVersion
+ ifNotNilDo: [:v | aStream nextPutAll: 'VMMaker versionString ', v; cr]]
+ on: Warning do: ["unsupported primitive"]!
- nextPutAll: (SmalltalkImage current getSystemAttribute: 0); cr!


Reply | Threaded
Open this post in threaded view
|

Re: The Trunk: SystemReporter-dtl.5.mcz

David T. Lewis
Note - I had intended to keep this in the inbox until after 4.2 release,
but it's a minor change and best not to get out of sync with the other
SystemReporter updates (which are also small changes).

Dave


On Fri, Jan 28, 2011 at 02:23:22AM +0000, [hidden email] wrote:

> David T. Lewis uploaded a new version of SystemReporter to project The Trunk:
> http://source.squeak.org/trunk/SystemReporter-dtl.5.mcz
>
> ==================== Summary ====================
>
> Name: SystemReporter-dtl.5
> Author: dtl
> Time: 27 January 2011, 9:22:26.473 pm
> UUID: 0f6c58a2-18e7-4809-92db-e5688406758c
> Ancestors: SystemReporter-laza.4, SystemReporter-dtl.3
>
> Merge SystemReporter-dtl.3
>
> =============== Diff against SystemReporter-laza.4 ===============
>
> Item was changed:
>   ----- Method: SystemReporter>>reportVM: (in category 'reporting') -----
>   reportVM: aStream
>   self header: 'Virtual Machine' on: aStream.
>   aStream
>   nextPutAll: (SmalltalkImage current getSystemAttribute: 1004); cr;
> + nextPutAll: (SmalltalkImage current getSystemAttribute: 0); cr.
> + [Smalltalk vm platformSourceVersion
> + ifNotNilDo: [:v | aStream nextPutAll: 'platform sources revision ', v; cr]]
> + on: Warning do: ["unsupported primitive"].
> + [Smalltalk vm interpreterSourceVersion
> + ifNotNilDo: [:v | aStream nextPutAll: 'VMMaker versionString ', v; cr]]
> + on: Warning do: ["unsupported primitive"]!
> - nextPutAll: (SmalltalkImage current getSystemAttribute: 0); cr!
>