SystemReporter for Pharo [WAS] Fwd: [Pharo-project] [update 1.4] #14177

classic Classic list List threaded Threaded
2 messages Options
Mariano Martinez Peck Mariano Martinez Peck
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

SystemReporter for Pharo [WAS] Fwd: [Pharo-project] [update 1.4] #14177

Hi guys. This is a small tool done by Alexander Lazarević  to get information from the system. Very useful when reporting bugs. So keep it in mind.
You can do SystemReporter open. or directly open it from the menu System -> SystemReporter.

Alexandre: we found an implemented message #environ in:
reportOSEnvironment: aStream

    | env |
    self header: 'Operating System Environment' on: aStream.
    env := [Smalltalk os environ] on: Error do: [^self].
    env keys asSortedCollection do: [:name |
        aStream nextPutAll: name; nextPut: $=; nextPutAll: (env at: name); cr]
   
so...it seems broken.

If you want to take a look to the changes we have to do in order to make it work in Pharo:
http://www.squeaksource.com/SystemReporterPharo


Cheers


---------- Forwarded message ----------
From: Marcus Denker <[hidden email]>
Date: Fri, Sep 30, 2011 at 11:43 AM
Subject: [Pharo-project] [update 1.4] #14177
To: An open mailing list to discuss any topics related to an open-source Smalltalk <[hidden email]>


14177
-----

Issue 4851:     We should integrate systemReporter
       http://code.google.com/p/pharo/issues/detail?id=4851



--
Marcus Denker -- http://marcusdenker.de





--
Mariano
http://marianopeck.wordpress.com

Mariano Martinez Peck Mariano Martinez Peck
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: SystemReporter for Pharo [WAS] Fwd: [Pharo-project] [update 1.4] #14177



On Fri, Sep 30, 2011 at 2:51 PM, Alexander Lazarević <[hidden email]> wrote:
Mariano,

great that you made it work in Pharo.

Yes, we have a couple of problems...but not that big.
Thanks for doing this useful tool.
 
Below method was just a work in progress.


Excellent then, nothing to report :)

 
Thanks,
 Alex

2011/9/30 Mariano Martinez Peck <[hidden email]>:
> Hi guys. This is a small tool done by Alexander Lazarević  to get
> information from the system. Very useful when reporting bugs. So keep it in
> mind.
> You can do SystemReporter open. or directly open it from the menu System ->
> SystemReporter.
>
> Alexandre: we found an implemented message #environ in:
> reportOSEnvironment: aStream
>
>     | env |
>     self header: 'Operating System Environment' on: aStream.
>     env := [Smalltalk os environ] on: Error do: [^self].
>     env keys asSortedCollection do: [:name |
>         aStream nextPutAll: name; nextPut: $=; nextPutAll: (env at: name);
> cr]
>
> so...it seems broken.
>
> If you want to take a look to the changes we have to do in order to make it
> work in Pharo:
>
> http://www.squeaksource.com/SystemReporterPharo
>
> Cheers
>
>
> ---------- Forwarded message ----------
> From: Marcus Denker <[hidden email]>
> Date: Fri, Sep 30, 2011 at 11:43 AM
> Subject: [Pharo-project] [update 1.4] #14177
> To: An open mailing list to discuss any topics related to an open-source
> Smalltalk <[hidden email]>
>
>
> 14177
> -----
>
> Issue 4851:     We should integrate systemReporter
>        http://code.google.com/p/pharo/issues/detail?id=4851
>
>
>
> --
> Marcus Denker -- http://marcusdenker.de
>
>
>
>
>
> --
> Mariano
> http://marianopeck.wordpress.com
>
>



--
Mariano
http://marianopeck.wordpress.com

Loading...