Pharo-dev
By thread
pharo-dev@lists.pharo.org
By month
Messages by month
- ----- 2026 -----
- July
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
July 2014
- 1178 messages
Re: [Pharo-dev] [Moose-dev] Pharo image corruption and fatal VM error with Roassal
by Jean Baptiste Arnaud
Look like a very common Nativeboost error, if a external object is access without checking if we are on the same session (memory has changed so ...).
If it is that:
The clean solution:
- check the nativeboost session on external object accesses. Or at least the risky one. Should be done in the application that used NB.
Another solution to fixed a corrupted image:
- open with StackVM (no nativeboost).
- ugly but can save you: try to identify a suite of bytecode that is executed at launch use hex Editor and replace the first by return Self : 0x78, you should be able to reopend the image if a DNU pop DO NOT touch it :-)
- use Oz project to extract code
Extract your code and rebuild fresh image
On 31 Jul 2014, at 16:09, Alexandre Bergel <alexandre.bergel(a)me.com> wrote:
> Yes, and this is a mess.
> Iâve spent quite some time in getting the session working with Roassal2 and it still does not work. I would appreciate help on this.
>
> Alexandre
>
>
> On Jul 31, 2014, at 8:58 AM, Nicolai Hess <nicolaihess(a)web.de> wrote:
>
>> It looks like Trachel does not recreate athens external resources.
>> There is an example in AthensSceneView, on how to check and reload
>> an AthensSurface.
>>
>>
>> 2014-07-31 12:51 GMT+02:00 Usman Bhatti <usman.bhatti(a)gmail.com>:
>>
>>
>>
>> On Thu, Jul 31, 2014 at 11:17 AM, Blondeau Vincent <vincent.blondeau(a)worldline.com> wrote:
>> Yes it is. But I will not do
>>
>> TRMorph allInstances do: #delete
>>
>> In command line every dayâ¦
>>
>>
>> It is only intended to recover your lost work in the image not for everyday use :).
>>
>>
>>
>>
>> Vincent
>>
>>
>>
>> De : Pharo-dev [mailto:pharo-dev-bounces@lists.pharo.org] De la part de Usman Bhatti
>> Envoyé : jeudi 31 juillet 2014 10:59
>> Ã : Pharo Development List
>> Cc : Moose-related development
>>
>>
>> Objet : Re: [Pharo-dev] Pharo image corruption and fatal VM error with Roassal
>>
>>
>>
>> This may be related to this known issue reported a few days back.
>>
>> https://code.google.com/p/moose-technology/issues/detail?id=1084
>>
>>
>>
>> And there is a possible solution to recover your image.
>>
>>
>>
>> usman
>>
>>
>>
>> On Thu, Jul 31, 2014 at 10:50 AM, Blondeau Vincent <vincent.blondeau(a)worldline.com> wrote:
>>
>> Hi,
>>
>>
>>
>> Yesterday, I was using GraphET (a part of Roassal) to do some charts and, today, when I wanted to reopen the image.
>>
>> And I got that :
>>
>> <image001.png>
>>
>> It is *very* unpleasantâ¦
>>
>>
>>
>> To reproduce the bug:
>>
>> 1 - You can do either:
>>
>> | builder |
>>
>> builder := GET2Line data: (0 to: 100) .
>>
>> builder
>>
>> y: [ :x | x*x ].
>>
>>
>>
>> builder open.
>>
>> Or
>>
>> WorldMenu -> Roassal examples -> choose an item -> click on a graph . A TRMorph should be opened.
>>
>> 2 - donât close the graph and save the pharo image.
>>
>> 3 â Close the pharo image
>>
>> 4 - Reopen it
>>
>>
>>
>> I am under W7 x64 with the latest moose image and the VM available on the pharo.org website (http://files.pharo.org/platform/Pharo3.0-win.zip) from the 10 july.
>>
>> You will find the crash dump attached.
>>
>>
>>
>>
>>
>> Thankfully, I managed to open the image with a latest VM (http://www.mirandabanda.org/files/Cog/VM/VM.r3056/cogwin-14.29.3056.zip)
>>
>> Thanks a lot Eliot ! :)
>>
>>
>>
>> And I got this:
>>
>> <image002.png>
>>
>>
>>
>> Thanks in advance
>>
>>
>>
>> Cheers,
>>
>> Vincent BLONDEAU
>>
>>
>>
>>
>>
>>
>> Ce message et les pièces jointes sont confidentiels et réservés à l'usage exclusif de ses destinataires. Il peut également être protégé par le secret professionnel. Si vous recevez ce message par erreur, merci d'en avertir immédiatement l'expéditeur et de le détruire. L'intégrité du message ne pouvant être assurée sur Internet, la responsabilité de Worldline ne pourra être recherchée quant au contenu de ce message. Bien que les meilleurs efforts soient faits pour maintenir cette transmission exempte de tout virus, l'expéditeur ne donne aucune garantie à cet égard et sa responsabilité ne saurait être recherchée pour tout dommage résultant d'un virus transmis.
>>
>> This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet, the Worldline liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from any virus transmitted.
>>
>>
>>
>>
>>
>> Ce message et les pièces jointes sont confidentiels et réservés à l'usage exclusif de ses destinataires. Il peut également être protégé par le secret professionnel. Si vous recevez ce message par erreur, merci d'en avertir immédiatement l'expéditeur et de le détruire. L'intégrité du message ne pouvant être assurée sur Internet, la responsabilité de Worldline ne pourra être recherchée quant au contenu de ce message. Bien que les meilleurs efforts soient faits pour maintenir cette transmission exempte de tout virus, l'expéditeur ne donne aucune garantie à cet égard et sa responsabilité ne saurait être recherchée pour tout dommage résultant d'un virus transmis.
>>
>> This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet, the Worldline liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from any virus transmitted.
>>
>>
>> _______________________________________________
>> Moose-dev mailing list
>> Moose-dev(a)iam.unibe.ch
>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>
> --
> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> Alexandre Bergel http://www.bergel.eu
> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>
>
>
>
Best Regards
Dr Arnaud
jbaptiste.arnaud(a)gmail.com
July 31, 2014
Re: [Pharo-dev] [Moose-dev] Pharo image corruption and fatal VM error with Roassal
by Igor Stasenko
The recipe is simple: isolate the code in your application in a way that if
certain feature not available (line nativeboost), it won't put your image
into endless exception throwing loop.
On 31 July 2014 16:09, Alexandre Bergel <alexandre.bergel(a)me.com> wrote:
> Yes, and this is a mess.
> Iâve spent quite some time in getting the session working with Roassal2
> and it still does not work. I would appreciate help on this.
>
> Alexandre
>
>
> On Jul 31, 2014, at 8:58 AM, Nicolai Hess <nicolaihess(a)web.de> wrote:
>
> > It looks like Trachel does not recreate athens external resources.
> > There is an example in AthensSceneView, on how to check and reload
> > an AthensSurface.
> >
> >
> > 2014-07-31 12:51 GMT+02:00 Usman Bhatti <usman.bhatti(a)gmail.com>:
> >
> >
> >
> > On Thu, Jul 31, 2014 at 11:17 AM, Blondeau Vincent <
> vincent.blondeau(a)worldline.com> wrote:
> > Yes it is. But I will not do
> >
> > TRMorph allInstances do: #delete
> >
> > In command line every dayâ¦
> >
> >
> > It is only intended to recover your lost work in the image not for
> everyday use :).
> >
> >
> >
> >
> > Vincent
> >
> >
> >
> > De : Pharo-dev [mailto:pharo-dev-bounces@lists.pharo.org] De la part de
> Usman Bhatti
> > Envoyé : jeudi 31 juillet 2014 10:59
> > Ã : Pharo Development List
> > Cc : Moose-related development
> >
> >
> > Objet : Re: [Pharo-dev] Pharo image corruption and fatal VM error with
> Roassal
> >
> >
> >
> > This may be related to this known issue reported a few days back.
> >
> > https://code.google.com/p/moose-technology/issues/detail?id=1084
> >
> >
> >
> > And there is a possible solution to recover your image.
> >
> >
> >
> > usman
> >
> >
> >
> > On Thu, Jul 31, 2014 at 10:50 AM, Blondeau Vincent <
> vincent.blondeau(a)worldline.com> wrote:
> >
> > Hi,
> >
> >
> >
> > Yesterday, I was using GraphET (a part of Roassal) to do some charts
> and, today, when I wanted to reopen the image.
> >
> > And I got that :
> >
> > <image001.png>
> >
> > It is *very* unpleasantâ¦
> >
> >
> >
> > To reproduce the bug:
> >
> > 1 - You can do either:
> >
> > | builder |
> >
> > builder := GET2Line data: (0 to: 100) .
> >
> > builder
> >
> > y: [ :x | x*x ].
> >
> >
> >
> > builder open.
> >
> > Or
> >
> > WorldMenu -> Roassal examples -> choose an item -> click on a graph . A
> TRMorph should be opened.
> >
> > 2 - donât close the graph and save the pharo image.
> >
> > 3 â Close the pharo image
> >
> > 4 - Reopen it
> >
> >
> >
> > I am under W7 x64 with the latest moose image and the VM available on
> the pharo.org website (http://files.pharo.org/platform/Pharo3.0-win.zip)
> from the 10 july.
> >
> > You will find the crash dump attached.
> >
> >
> >
> >
> >
> > Thankfully, I managed to open the image with a latest VM (
> http://www.mirandabanda.org/files/Cog/VM/VM.r3056/cogwin-14.29.3056.zip)
> >
> > Thanks a lot Eliot ! :)
> >
> >
> >
> > And I got this:
> >
> > <image002.png>
> >
> >
> >
> > Thanks in advance
> >
> >
> >
> > Cheers,
> >
> > Vincent BLONDEAU
> >
> >
> >
> >
> >
> >
> > Ce message et les pièces jointes sont confidentiels et réservés Ã
> l'usage exclusif de ses destinataires. Il peut également être protégé par
> le secret professionnel. Si vous recevez ce message par erreur, merci d'en
> avertir immédiatement l'expéditeur et de le détruire. L'intégrité du
> message ne pouvant être assurée sur Internet, la responsabilité de
> Worldline ne pourra être recherchée quant au contenu de ce message. Bien
> que les meilleurs efforts soient faits pour maintenir cette transmission
> exempte de tout virus, l'expéditeur ne donne aucune garantie à cet égard et
> sa responsabilité ne saurait être recherchée pour tout dommage résultant
> d'un virus transmis.
> >
> > This e-mail and the documents attached are confidential and intended
> solely for the addressee; it may also be privileged. If you receive this
> e-mail in error, please notify the sender immediately and destroy it. As
> its integrity cannot be secured on the Internet, the Worldline liability
> cannot be triggered for the message content. Although the sender endeavours
> to maintain a computer virus-free network, the sender does not warrant that
> this transmission is virus-free and will not be liable for any damages
> resulting from any virus transmitted.
> >
> >
> >
> >
> >
> > Ce message et les pièces jointes sont confidentiels et réservés Ã
> l'usage exclusif de ses destinataires. Il peut également être protégé par
> le secret professionnel. Si vous recevez ce message par erreur, merci d'en
> avertir immédiatement l'expéditeur et de le détruire. L'intégrité du
> message ne pouvant être assurée sur Internet, la responsabilité de
> Worldline ne pourra être recherchée quant au contenu de ce message. Bien
> que les meilleurs efforts soient faits pour maintenir cette transmission
> exempte de tout virus, l'expéditeur ne donne aucune garantie à cet égard et
> sa responsabilité ne saurait être recherchée pour tout dommage résultant
> d'un virus transmis.
> >
> > This e-mail and the documents attached are confidential and intended
> solely for the addressee; it may also be privileged. If you receive this
> e-mail in error, please notify the sender immediately and destroy it. As
> its integrity cannot be secured on the Internet, the Worldline liability
> cannot be triggered for the message content. Although the sender endeavours
> to maintain a computer virus-free network, the sender does not warrant that
> this transmission is virus-free and will not be liable for any damages
> resulting from any virus transmitted.
> >
> >
> > _______________________________________________
> > Moose-dev mailing list
> > Moose-dev(a)iam.unibe.ch
> > https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>
> --
> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> Alexandre Bergel http://www.bergel.eu
> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>
>
>
>
>
--
Best regards,
Igor Stasenko.
July 31, 2014
Re: [Pharo-dev] Should nested mutexes work in Pharo 3.0?
by Sebastian Sastre
On Jul 31, 2014, at 6:55 AM, Jan Vrany <jan.vrany(a)fit.cvut.cz> wrote:
>>
>> I am playing around with Animations [1] in the Moose 5.0/Pharo 3.0 image
>> [2]. Nested use of the same mutex seems to freeze the image. Should that
>> work?
>
> No, it should not :-) Use Monitor instead.
+1
nested mutexes should not work not in pharo nor anything else
Monitors are for reentering stuff
July 31, 2014
Re: [Pharo-dev] Should nested mutexes work in Pharo 3.0?
by Marcel Taeumel
Ah, okay. Just stumpled upon this part of the POSIX specification [1] and
thought there could be this recursive property in mutexes for Pharo, too. :)
Guess I have to use semaphores then.
Best,
Marcel
[1]
http://pubs.opengroup.org/onlinepubs/009695399/functions/pthread_mutexattr_…
--
View this message in context: http://forum.world.st/Should-nested-mutexes-work-in-Pharo-3-0-tp4771110p477…
Sent from the Pharo Smalltalk Developers mailing list archive at Nabble.com.
July 31, 2014
Re: [Pharo-dev] [Moose-dev] Pharo image corruption and fatal VM error with Roassal
by Alexandre Bergel
Yes, and this is a mess.
Iâve spent quite some time in getting the session working with Roassal2 and it still does not work. I would appreciate help on this.
Alexandre
On Jul 31, 2014, at 8:58 AM, Nicolai Hess <nicolaihess(a)web.de> wrote:
> It looks like Trachel does not recreate athens external resources.
> There is an example in AthensSceneView, on how to check and reload
> an AthensSurface.
>
>
> 2014-07-31 12:51 GMT+02:00 Usman Bhatti <usman.bhatti(a)gmail.com>:
>
>
>
> On Thu, Jul 31, 2014 at 11:17 AM, Blondeau Vincent <vincent.blondeau(a)worldline.com> wrote:
> Yes it is. But I will not do
>
> TRMorph allInstances do: #delete
>
> In command line every dayâ¦
>
>
> It is only intended to recover your lost work in the image not for everyday use :).
>
>
>
>
> Vincent
>
>
>
> De : Pharo-dev [mailto:pharo-dev-bounces@lists.pharo.org] De la part de Usman Bhatti
> Envoyé : jeudi 31 juillet 2014 10:59
> Ã : Pharo Development List
> Cc : Moose-related development
>
>
> Objet : Re: [Pharo-dev] Pharo image corruption and fatal VM error with Roassal
>
>
>
> This may be related to this known issue reported a few days back.
>
> https://code.google.com/p/moose-technology/issues/detail?id=1084
>
>
>
> And there is a possible solution to recover your image.
>
>
>
> usman
>
>
>
> On Thu, Jul 31, 2014 at 10:50 AM, Blondeau Vincent <vincent.blondeau(a)worldline.com> wrote:
>
> Hi,
>
>
>
> Yesterday, I was using GraphET (a part of Roassal) to do some charts and, today, when I wanted to reopen the image.
>
> And I got that :
>
> <image001.png>
>
> It is *very* unpleasantâ¦
>
>
>
> To reproduce the bug:
>
> 1 - You can do either:
>
> | builder |
>
> builder := GET2Line data: (0 to: 100) .
>
> builder
>
> y: [ :x | x*x ].
>
>
>
> builder open.
>
> Or
>
> WorldMenu -> Roassal examples -> choose an item -> click on a graph . A TRMorph should be opened.
>
> 2 - donât close the graph and save the pharo image.
>
> 3 â Close the pharo image
>
> 4 - Reopen it
>
>
>
> I am under W7 x64 with the latest moose image and the VM available on the pharo.org website (http://files.pharo.org/platform/Pharo3.0-win.zip) from the 10 july.
>
> You will find the crash dump attached.
>
>
>
>
>
> Thankfully, I managed to open the image with a latest VM (http://www.mirandabanda.org/files/Cog/VM/VM.r3056/cogwin-14.29.3056.zip)
>
> Thanks a lot Eliot ! :)
>
>
>
> And I got this:
>
> <image002.png>
>
>
>
> Thanks in advance
>
>
>
> Cheers,
>
> Vincent BLONDEAU
>
>
>
>
>
>
> Ce message et les pièces jointes sont confidentiels et réservés à l'usage exclusif de ses destinataires. Il peut également être protégé par le secret professionnel. Si vous recevez ce message par erreur, merci d'en avertir immédiatement l'expéditeur et de le détruire. L'intégrité du message ne pouvant être assurée sur Internet, la responsabilité de Worldline ne pourra être recherchée quant au contenu de ce message. Bien que les meilleurs efforts soient faits pour maintenir cette transmission exempte de tout virus, l'expéditeur ne donne aucune garantie à cet égard et sa responsabilité ne saurait être recherchée pour tout dommage résultant d'un virus transmis.
>
> This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet, the Worldline liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from any virus transmitted.
>
>
>
>
>
> Ce message et les pièces jointes sont confidentiels et réservés à l'usage exclusif de ses destinataires. Il peut également être protégé par le secret professionnel. Si vous recevez ce message par erreur, merci d'en avertir immédiatement l'expéditeur et de le détruire. L'intégrité du message ne pouvant être assurée sur Internet, la responsabilité de Worldline ne pourra être recherchée quant au contenu de ce message. Bien que les meilleurs efforts soient faits pour maintenir cette transmission exempte de tout virus, l'expéditeur ne donne aucune garantie à cet égard et sa responsabilité ne saurait être recherchée pour tout dommage résultant d'un virus transmis.
>
> This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet, the Worldline liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from any virus transmitted.
>
>
> _______________________________________________
> Moose-dev mailing list
> Moose-dev(a)iam.unibe.ch
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
July 31, 2014
Re: [Pharo-dev] Pharo image corruption and fatal VM error with Roassal
by Nicolai Hess
It looks like Trachel does not recreate athens external resources.
There is an example in AthensSceneView, on how to check and reload
an AthensSurface.
2014-07-31 12:51 GMT+02:00 Usman Bhatti <usman.bhatti(a)gmail.com>:
>
>
>
> On Thu, Jul 31, 2014 at 11:17 AM, Blondeau Vincent <
> vincent.blondeau(a)worldline.com> wrote:
>
>> Yes it is. But I will not do
>>
>> TRMorph allInstances do: #delete
>>
>> In command line every dayâ¦
>>
>
> It is only intended to recover your lost work in the image not for
> everyday use :).
>
>
>>
>>
>> Vincent
>>
>>
>>
>> *De :* Pharo-dev [mailto:pharo-dev-bounces@lists.pharo.org] *De la part
>> de* Usman Bhatti
>> *Envoyé :* jeudi 31 juillet 2014 10:59
>> *Ã :* Pharo Development List
>> *Cc :* Moose-related development
>>
>> *Objet :* Re: [Pharo-dev] Pharo image corruption and fatal VM error with
>> Roassal
>>
>>
>>
>> This may be related to this known issue reported a few days back.
>>
>> https://code.google.com/p/moose-technology/issues/detail?id=1084
>>
>>
>>
>> And there is a possible solution to recover your image.
>>
>>
>>
>> usman
>>
>>
>>
>> On Thu, Jul 31, 2014 at 10:50 AM, Blondeau Vincent <
>> vincent.blondeau(a)worldline.com> wrote:
>>
>> Hi,
>>
>>
>>
>> Yesterday, I was using GraphET (a part of Roassal) to do some charts and,
>> today, when I wanted to reopen the image.
>>
>> And I got that :
>>
>> It is **very** unpleasantâ¦
>>
>>
>>
>> To reproduce the bug:
>>
>> 1 - You can do either:
>>
>> | builder |
>>
>> builder := GET2Line data: (0 to: 100) .
>>
>> builder
>>
>> y: [ :x | x*x ].
>>
>>
>>
>> builder open.
>>
>> Or
>>
>> WorldMenu -> Roassal examples -> choose an item -> click on a graph . A
>> TRMorph should be opened.
>>
>> 2 - donât close the graph and save the pharo image.
>>
>> 3 â Close the pharo image
>>
>> 4 - Reopen it
>>
>>
>>
>> I am under W7 x64 with the latest moose image and the VM available on the
>> pharo.org website (http://files.pharo.org/platform/Pharo3.0-win.zip)
>> from the 10 july.
>>
>> You will find the crash dump attached.
>>
>>
>>
>>
>>
>> Thankfully, I managed to open the image with a latest VM (
>> http://www.mirandabanda.org/files/Cog/VM/VM.r3056/cogwin-14.29.3056.zip)
>>
>>
>> Thanks a lot Eliot ! :)
>>
>>
>>
>> And I got this:
>>
>>
>>
>> Thanks in advance
>>
>>
>>
>> Cheers,
>>
>> Vincent BLONDEAU
>>
>>
>>
>>
>> ------------------------------
>>
>>
>> Ce message et les pièces jointes sont confidentiels et réservés à l'usage
>> exclusif de ses destinataires. Il peut également être protégé par le secret
>> professionnel. Si vous recevez ce message par erreur, merci d'en avertir
>> immédiatement l'expéditeur et de le détruire. L'intégrité du message ne
>> pouvant être assurée sur Internet, la responsabilité de Worldline ne pourra
>> être recherchée quant au contenu de ce message. Bien que les meilleurs
>> efforts soient faits pour maintenir cette transmission exempte de tout
>> virus, l'expéditeur ne donne aucune garantie à cet égard et sa
>> responsabilité ne saurait être recherchée pour tout dommage résultant d'un
>> virus transmis.
>>
>> This e-mail and the documents attached are confidential and intended
>> solely for the addressee; it may also be privileged. If you receive this
>> e-mail in error, please notify the sender immediately and destroy it. As
>> its integrity cannot be secured on the Internet, the Worldline liability
>> cannot be triggered for the message content. Although the sender endeavours
>> to maintain a computer virus-free network, the sender does not warrant that
>> this transmission is virus-free and will not be liable for any damages
>> resulting from any virus transmitted.
>>
>>
>>
>> ------------------------------
>>
>> Ce message et les pièces jointes sont confidentiels et réservés à l'usage
>> exclusif de ses destinataires. Il peut également être protégé par le secret
>> professionnel. Si vous recevez ce message par erreur, merci d'en avertir
>> immédiatement l'expéditeur et de le détruire. L'intégrité du message ne
>> pouvant être assurée sur Internet, la responsabilité de Worldline ne pourra
>> être recherchée quant au contenu de ce message. Bien que les meilleurs
>> efforts soient faits pour maintenir cette transmission exempte de tout
>> virus, l'expéditeur ne donne aucune garantie à cet égard et sa
>> responsabilité ne saurait être recherchée pour tout dommage résultant d'un
>> virus transmis.
>>
>> This e-mail and the documents attached are confidential and intended
>> solely for the addressee; it may also be privileged. If you receive this
>> e-mail in error, please notify the sender immediately and destroy it. As
>> its integrity cannot be secured on the Internet, the Worldline liability
>> cannot be triggered for the message content. Although the sender endeavours
>> to maintain a computer virus-free network, the sender does not warrant that
>> this transmission is virus-free and will not be liable for any damages
>> resulting from any virus transmitted.
>>
>
>
July 31, 2014
Re: [Pharo-dev] Should nested mutexes work in Pharo 3.0?
by Levente Uzonyi
On Thu, 31 Jul 2014, Jan Vrany wrote:
> On 31/07/14 10:45, Marcel Taeumel wrote:
>> Hi! :)
>>
>> I am playing around with Animations [1] in the Moose 5.0/Pharo 3.0 image
>> [2]. Nested use of the same mutex seems to freeze the image. Should that
>> work?
>
> No, it should not :-) Use Monitor instead.
Then what's the difference between Semaphore and Mutex in Pharo?
Levente
>
> Jan
>
>>
>> Best,
>> Marcel
>>
>> [1] https://github.com/marceltaeumel/animations
>> [2]
>> https://ci.inria.fr/moose/job/moose-5.0/lastSuccessfulBuild/artifact/moose-…
>>
>>
>>
>> --
>> View this message in context:
>> http://forum.world.st/Should-nested-mutexes-work-in-Pharo-3-0-tp4771110.html
>> Sent from the Pharo Smalltalk Developers mailing list archive at
>> Nabble.com.
>>
>
>
>
July 31, 2014
[pharo-project/pharo-core] b08cbe: 40146
by GitHub
Branch: refs/heads/4.0
Home: https://github.com/pharo-project/pharo-core
Commit: b08cbe43e16b68aa4ae2e64fd57639f1e767ca31
https://github.com/pharo-project/pharo-core/commit/b08cbe43e16b68aa4ae2e64f…
Author: Jenkins Build Server <board(a)pharo-project.org>
Date: 2014-07-31 (Thu, 31 Jul 2014)
Changed paths:
M Morphic-Base.package/MenuItemMorph.class/instance/accessing/isStayUpItem.st
R Morphic-Base.package/MenuMorph.class/instance/construction/addService_for_.st
R Morphic-Base.package/MenuMorph.class/instance/construction/addServices_for_extraLines_.st
M Morphic-Base.package/MenuMorph.class/instance/construction/addTitle_.st
M Morphic-Base.package/MenuMorph.class/instance/construction/addTitle_icon_.st
R Morphic-Base.package/MenuMorph.class/instance/construction/addTitle_icon_updatingSelector_updateTarget_.st
R Morphic-Base.package/MenuMorph.class/instance/construction/addTitle_updatingSelector_updateTarget_.st
R Morphic-Base.package/MenuMorph.class/instance/construction/add_help_action_.st
R Morphic-Base.package/MenuMorph.class/instance/construction/add_icon_help_subMenu_.st
M Morphic-Base.package/MenuMorph.class/instance/construction/add_icon_subMenu_.st
R Morphic-Base.package/MenuMorph.class/instance/construction/add_subMenu_target_selector_argumentList_.st
R Morphic-Base.package/MenuMorph.class/instance/construction/labels_lines_selections_.st
R Morphic-Base.package/MenuMorph.class/instance/menu/toggleStayUpIgnore_evt_.st
R Morphic-Base.package/extension/SimpleServiceEntry/instance/buttonToTriggerIn_.st
R Morphic-Base.package/extension/StandardWindow/instance/openAsIsIn_.st
A Morphic-Widgets-Basic.package/extension/SimpleServiceEntry/instance/buttonToTriggerIn_.st
M Morphic-Widgets-Extra.package/DockingBarMorph.class/instance/construction/add_icon_subMenu_.st
A Morphic-Widgets-Scrolling.package/TransformWithLayoutMorph.class/README.md
A Morphic-Widgets-Scrolling.package/TransformWithLayoutMorph.class/definition.st
A Morphic-Widgets-Scrolling.package/TransformWithLayoutMorph.class/instance/layout/doLayoutIn_.st
A Morphic-Widgets-Scrolling.package/TransformWithLayoutMorph.class/instance/layout/fullBounds.st
A Morphic-Widgets-Windows.package/DialogWindow.class/README.md
A Morphic-Widgets-Windows.package/DialogWindow.class/definition.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/accessing/cancelled.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/accessing/cancelled_.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/actions/acceptTextMorphs.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/actions/addInitialPanel.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/actions/addMainPanel.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/actions/applyChanges.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/actions/buttons.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/actions/cancel.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/actions/close.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/actions/defaultButton.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/actions/defaultLabel.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/actions/escapePressed.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/actions/mainPanel.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/actions/newButtonRow.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/actions/newButtons.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/actions/newContentMorph.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/actions/newMainPanel.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/actions/ok.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/actions/returnPressed.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/actions/setButtonFont_.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/actions/setLabelWidgetAllowance.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/controls/title_.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/event handling/doubleClick_.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/event handling/handlesKeyboard_.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/event handling/keyStroke_.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/event handling/keyboardFocusChange_.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/focus handling/defaultFocusMorph.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/initialization/initialize.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/initialization/initializeLabelArea.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/initialization/setFramesForLabelArea.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/open%2Fclose/initialExtent.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/testing/canBeMaximized.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/testing/defaultIsResizeable.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/theme/activeFillStyle.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/theme/animateClose.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/theme/inactiveFillStyle.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/theme/preferredCornerStyle.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/theme/wantsRoundedCorners.st
A Morphic-Widgets-Windows.package/DialogWindow.class/instance/top window/activate.st
A Morphic-Widgets-Windows.package/PanelMorph.class/README.md
A Morphic-Widgets-Windows.package/PanelMorph.class/definition.st
A Morphic-Widgets-Windows.package/PanelMorph.class/instance/accessing/adoptPaneColor_.st
A Morphic-Widgets-Windows.package/PanelMorph.class/instance/event handling/on_send_to_.st
A Morphic-Widgets-Windows.package/PanelMorph.class/instance/event handling/on_send_to_withValue_.st
A Morphic-Widgets-Windows.package/PanelMorph.class/instance/events-processing/handleMouseOver_.st
A Morphic-Widgets-Windows.package/PanelMorph.class/instance/initialization/defaultBorderWidth.st
A Morphic-Widgets-Windows.package/PanelMorph.class/instance/initialization/initialColorInSystemWindow_.st
A Morphic-Widgets-Windows.package/PanelMorph.class/instance/initialization/initialize.st
A Morphic-Widgets-Windows.package/PanelMorph.class/instance/initialize/defaultColor.st
A Morphic-Widgets-Windows.package/PanelMorph.class/instance/protocol/checkMorphsLeftOrTopFrom_.st
A Morphic-Widgets-Windows.package/PanelMorph.class/instance/protocol/checkMorphsLeftOrTopFrom_size_.st
A Morphic-Widgets-Windows.package/PanelMorph.class/instance/protocol/checkMorphsRightOrBottomFrom_.st
A Morphic-Widgets-Windows.package/PanelMorph.class/instance/protocol/checkSplitters.st
A Morphic-Widgets-Windows.package/PanelMorph.class/instance/protocol/enabled_.st
A Morphic-Widgets-Windows.package/PanelMorph.class/instance/protocol/interactionState_.st
A Morphic-Widgets-Windows.package/PanelMorph.class/instance/protocol/isResizeableMorph_forSplitter_.st
A Morphic-Widgets-Windows.package/PanelMorph.class/instance/protocol/mouseOver_.st
A Morphic-Widgets-Windows.package/PanelMorph.class/instance/protocol/newHSplitter.st
A Morphic-Widgets-Windows.package/PanelMorph.class/instance/protocol/newHSplitterAt_.st
A Morphic-Widgets-Windows.package/PanelMorph.class/instance/protocol/newVSplitter.st
A Morphic-Widgets-Windows.package/PanelMorph.class/instance/protocol/newVSplitterAt_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/README.md
A Morphic-Widgets-Windows.package/StandardWindow.class/class/instance creation/newWithTheme_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/definition.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/accessing/model_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/accessing/open.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/as yet unclassified/openFullscreen.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/as yet unclassified/openedFullscreen.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newAlphaImage_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newAlphaSelector_getAlpha_setAlpha_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newAutoAcceptTextEditorFor_getText_setText_getEnabled_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newAutoAcceptTextEntryFor_getText_setText_getEnabled_font_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newAutoAcceptTextEntryFor_getText_setText_getEnabled_font_help_entryCompletion_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newAutoAcceptTextEntryFor_getText_setText_getEnabled_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newAutoAcceptTextEntryFor_getText_setText_getEnabled_help_entryCompletion_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newAutoAcceptTextEntryFor_get_set_class_getEnabled_font_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newAutoAcceptTextEntryFor_get_set_class_getEnabled_font_help_entryCompletion_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newAutoAcceptTextEntryFor_get_set_class_getEnabled_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newAutoAcceptTextEntryFor_get_set_class_getEnabled_help_entryCompletion_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newBalloonHelp_for_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newBalloonHelp_for_corner_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newBasicTextEditorFor_getText_setText_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newBasicTextEditorFor_getText_setText_getEnabled_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newBasicTextEditorFor_getText_setText_getEnabled_menu_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newBracketSliderFor_getValue_setValue_min_max_quantum_getEnabled_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newBracketSliderFor_getValue_setValue_min_max_quantum_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newButtonFor_action_getEnabled_label_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newButtonFor_action_label_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newButtonFor_getState_action_arguments_getEnabled_getLabel_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newButtonFor_getState_action_arguments_getEnabled_labelForm_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newButtonFor_getState_action_arguments_getEnabled_label_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newButtonLabelFor_label_getEnabled_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newButtonLabel_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newCancelButton.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newCancelButtonFor_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newCheckboxFor_getSelected_setSelected_getEnabled_getLabel_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newCheckboxFor_getSelected_setSelected_getEnabled_label_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newCheckboxFor_getSelected_setSelected_label_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newCloseButton.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newCloseButtonFor_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newCloseControlFor_action_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newColorChooserFor_getColor_setColor_getEnabled_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newColorChooserFor_getColor_setColor_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newColorPresenterFor_getColor_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newColumn_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newDialogPanel.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newDropListFor_list_getSelected_setSelected_getEnabled_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newDropListFor_list_getSelected_setSelected_getEnabled_useIndex_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newDropListFor_list_getSelected_setSelected_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newEditableDropListFor_list_getSelected_setSelected_addToList_class_default_ghostText_getEnabled_useIndex_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newEditableDropListFor_list_getSelected_setSelected_addToList_ghostText_getEnabled_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newEmbeddedMenu.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newExpander_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newExpander_forAll_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newExpander_for_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newFuzzyLabelFor_label_getEnabled_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newFuzzyLabelFor_label_offset_alpha_getEnabled_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newFuzzyLabel_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newGroupbox.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newGroupboxForAll_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newGroupboxFor_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newGroupbox_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newGroupbox_forAll_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newGroupbox_for_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newHSVASelector_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newHSVSelector_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newHueSelector_getHue_setHue_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newImageFor_get_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newImage_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newImage_size_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newIncrementalSliderFor_getValue_setValue_min_max_quantum_getEnabled_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newLabelFor_getLabel_getEnabled_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newLabelFor_label_getEnabled_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newLabelGroup_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newLabelGroup_font_labelColor_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newLabel_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newListFor_list_selected_changeSelected_getEnabled_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newListFor_list_selected_changeSelected_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newListFor_list_selected_changeSelected_icon_getEnabled_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newMenu.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newMenuFor_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newMorphDropListFor_list_getSelected_setSelected_getEnabled_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newMorphDropListFor_list_getSelected_setSelected_getEnabled_useIndex_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newMorphDropListFor_list_getSelected_setSelected_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newMorphListFor_list_getSelected_setSelected_getEnabled_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newMorphListFor_list_getSelected_setSelected_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newMultistateButton.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newNoButton.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newNoButtonFor_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newOKButton.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newOKButtonFor_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newOKButtonFor_getEnabled_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newOverflowRowForAll_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newPanel.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newPluggableDialogWindow.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newPluggableDialogWindow_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newPluggableDialogWindow_for_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newRadioButtonFor_getSelected_setSelected_getEnabled_label_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newRadioButtonFor_getSelected_setSelected_label_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newRow.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newRow_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newSVSelector_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newScrollPaneFor_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newSeparator.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newSliderFor_getValue_setValue_getEnabled_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newSliderFor_getValue_setValue_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newSliderFor_getValue_setValue_min_max_quantum_getEnabled_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newStack.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newStack_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newString_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newString_font_style_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newString_style_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newTabGroup_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newTextEditorFor_getText_setText_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newTextEditorFor_getText_setText_getEnabled_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newTextEditorFor_getText_setText_getEnabled_menu_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newTextEntryFor_getText_setText_getEnabled_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newTextEntryFor_getText_setText_getEnabled_help_entryCompletion_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newTextEntryFor_getText_setText_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newTextEntryFor_get_set_class_getEnabled_help_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newText_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newTitle_for_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newToolDockingBar.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newToolSpacer.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newToolbar.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newToolbarHandle.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newToolbar_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newTreeFor_list_selected_changeSelected_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newVerticalSeparator.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newWindowFor_title_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newYesButton.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/newYesButtonFor_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/title.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/controls/title_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/event handling/yellowButtonActivity_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/initialization/defaultColor.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/initialization/initialize.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/layout/layoutBounds.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/macpal/flash.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/morphic ui/defaultLabel.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/morphic ui/mouseMove_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/morphic ui/wantsRoundedCorners.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/open%2Fclose/delete.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/open%2Fclose/openAsIsIn_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/abort_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/abort_title_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/alert_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/alert_title_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/alert_title_configure_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/centeredAlert_title_configure_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/chooseColor.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/chooseColor_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/chooseColor_title_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/chooseDirectory_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/chooseDirectory_path_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/chooseDropList_list_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/chooseDropList_title_list_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/chooseFileName_extensions_path_preview_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/chooseFont.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/chooseFont_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/deny_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/deny_title_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/fileOpen_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/fileOpen_extensions_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/fileOpen_extensions_path_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/fileOpen_extensions_path_preview_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/fileSave_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/fileSave_extensions_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/fileSave_extensions_path_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/fileSave_path_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/longMessage_title_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/message_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/message_title_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/proceed_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/proceed_title_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/questionWithoutCancel_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/questionWithoutCancel_title_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/question_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/question_title_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/textEntry_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/textEntry_title_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/services/textEntry_title_entryText_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/submorphs-accessing/noteNewOwner_.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/testing/isActive.st
A Morphic-Widgets-Windows.package/StandardWindow.class/instance/testing/isFullscreen.st
R Polymorph-Widgets.package/DialogWindow.class/README.md
R Polymorph-Widgets.package/DialogWindow.class/definition.st
R Polymorph-Widgets.package/DialogWindow.class/instance/accessing/cancelled.st
R Polymorph-Widgets.package/DialogWindow.class/instance/accessing/cancelled_.st
R Polymorph-Widgets.package/DialogWindow.class/instance/actions/acceptTextMorphs.st
R Polymorph-Widgets.package/DialogWindow.class/instance/actions/addInitialPanel.st
R Polymorph-Widgets.package/DialogWindow.class/instance/actions/addMainPanel.st
R Polymorph-Widgets.package/DialogWindow.class/instance/actions/applyChanges.st
R Polymorph-Widgets.package/DialogWindow.class/instance/actions/buttons.st
R Polymorph-Widgets.package/DialogWindow.class/instance/actions/cancel.st
R Polymorph-Widgets.package/DialogWindow.class/instance/actions/close.st
R Polymorph-Widgets.package/DialogWindow.class/instance/actions/defaultButton.st
R Polymorph-Widgets.package/DialogWindow.class/instance/actions/defaultLabel.st
R Polymorph-Widgets.package/DialogWindow.class/instance/actions/escapePressed.st
R Polymorph-Widgets.package/DialogWindow.class/instance/actions/mainPanel.st
R Polymorph-Widgets.package/DialogWindow.class/instance/actions/newButtonRow.st
R Polymorph-Widgets.package/DialogWindow.class/instance/actions/newButtons.st
R Polymorph-Widgets.package/DialogWindow.class/instance/actions/newContentMorph.st
R Polymorph-Widgets.package/DialogWindow.class/instance/actions/newMainPanel.st
R Polymorph-Widgets.package/DialogWindow.class/instance/actions/ok.st
R Polymorph-Widgets.package/DialogWindow.class/instance/actions/returnPressed.st
R Polymorph-Widgets.package/DialogWindow.class/instance/actions/setButtonFont_.st
R Polymorph-Widgets.package/DialogWindow.class/instance/controls/title_.st
R Polymorph-Widgets.package/DialogWindow.class/instance/event handling/doubleClick_.st
R Polymorph-Widgets.package/DialogWindow.class/instance/event handling/handlesKeyboard_.st
R Polymorph-Widgets.package/DialogWindow.class/instance/event handling/keyStroke_.st
R Polymorph-Widgets.package/DialogWindow.class/instance/event handling/keyboardFocusChange_.st
R Polymorph-Widgets.package/DialogWindow.class/instance/focus handling/defaultFocusMorph.st
R Polymorph-Widgets.package/DialogWindow.class/instance/initialization/initialize.st
R Polymorph-Widgets.package/DialogWindow.class/instance/initialization/initializeLabelArea.st
R Polymorph-Widgets.package/DialogWindow.class/instance/initialization/setFramesForLabelArea.st
R Polymorph-Widgets.package/DialogWindow.class/instance/open%2Fclose/initialExtent.st
R Polymorph-Widgets.package/DialogWindow.class/instance/testing/defaultIsResizeable.st
R Polymorph-Widgets.package/DialogWindow.class/instance/theme/activeFillStyle.st
R Polymorph-Widgets.package/DialogWindow.class/instance/theme/animateClose.st
R Polymorph-Widgets.package/DialogWindow.class/instance/theme/inactiveFillStyle.st
R Polymorph-Widgets.package/DialogWindow.class/instance/theme/preferredCornerStyle.st
R Polymorph-Widgets.package/DialogWindow.class/instance/theme/wantsRoundedCorners.st
R Polymorph-Widgets.package/DialogWindow.class/instance/top window/activate.st
R Polymorph-Widgets.package/PanelMorph.class/README.md
R Polymorph-Widgets.package/PanelMorph.class/definition.st
R Polymorph-Widgets.package/PanelMorph.class/instance/accessing/adoptPaneColor_.st
R Polymorph-Widgets.package/PanelMorph.class/instance/event handling/on_send_to_.st
R Polymorph-Widgets.package/PanelMorph.class/instance/event handling/on_send_to_withValue_.st
R Polymorph-Widgets.package/PanelMorph.class/instance/events-processing/handleMouseOver_.st
R Polymorph-Widgets.package/PanelMorph.class/instance/initialization/defaultBorderWidth.st
R Polymorph-Widgets.package/PanelMorph.class/instance/initialization/initialColorInSystemWindow_.st
R Polymorph-Widgets.package/PanelMorph.class/instance/initialization/initialize.st
R Polymorph-Widgets.package/PanelMorph.class/instance/initialize/defaultColor.st
R Polymorph-Widgets.package/PanelMorph.class/instance/protocol/checkMorphsLeftOrTopFrom_.st
R Polymorph-Widgets.package/PanelMorph.class/instance/protocol/checkMorphsLeftOrTopFrom_size_.st
R Polymorph-Widgets.package/PanelMorph.class/instance/protocol/checkMorphsRightOrBottomFrom_.st
R Polymorph-Widgets.package/PanelMorph.class/instance/protocol/checkSplitters.st
R Polymorph-Widgets.package/PanelMorph.class/instance/protocol/enabled_.st
R Polymorph-Widgets.package/PanelMorph.class/instance/protocol/interactionState_.st
R Polymorph-Widgets.package/PanelMorph.class/instance/protocol/isResizeableMorph_forSplitter_.st
R Polymorph-Widgets.package/PanelMorph.class/instance/protocol/mouseOver_.st
R Polymorph-Widgets.package/PanelMorph.class/instance/protocol/newHSplitter.st
R Polymorph-Widgets.package/PanelMorph.class/instance/protocol/newHSplitterAt_.st
R Polymorph-Widgets.package/PanelMorph.class/instance/protocol/newVSplitter.st
R Polymorph-Widgets.package/PanelMorph.class/instance/protocol/newVSplitterAt_.st
R Polymorph-Widgets.package/StandardWindow.class/README.md
R Polymorph-Widgets.package/StandardWindow.class/class/instance creation/newWithTheme_.st
R Polymorph-Widgets.package/StandardWindow.class/definition.st
R Polymorph-Widgets.package/StandardWindow.class/instance/accessing/model_.st
R Polymorph-Widgets.package/StandardWindow.class/instance/accessing/open.st
R Polymorph-Widgets.package/StandardWindow.class/instance/as yet unclassified/openFullscreen.st
R Polymorph-Widgets.package/StandardWindow.class/instance/as yet unclassified/openedFullscreen.st
R Polymorph-Widgets.package/StandardWindow.class/instance/controls/newTextEntryFor_getText_setText_help_.st
R Polymorph-Widgets.package/StandardWindow.class/instance/controls/title.st
R Polymorph-Widgets.package/StandardWindow.class/instance/controls/title_.st
R Polymorph-Widgets.package/StandardWindow.class/instance/event handling/yellowButtonActivity_.st
R Polymorph-Widgets.package/StandardWindow.class/instance/initialization/defaultColor.st
R Polymorph-Widgets.package/StandardWindow.class/instance/layout/layoutBounds.st
R Polymorph-Widgets.package/StandardWindow.class/instance/macpal/flash.st
R Polymorph-Widgets.package/StandardWindow.class/instance/morphic ui/defaultLabel.st
R Polymorph-Widgets.package/StandardWindow.class/instance/open%2Fclose/delete.st
R Polymorph-Widgets.package/StandardWindow.class/instance/submorphs-accessing/noteNewOwner_.st
R Polymorph-Widgets.package/StandardWindow.class/instance/testing/isFullscreen.st
R Polymorph-Widgets.package/TransformWithLayoutMorph.class/README.md
R Polymorph-Widgets.package/TransformWithLayoutMorph.class/definition.st
R Polymorph-Widgets.package/TransformWithLayoutMorph.class/instance/layout/doLayoutIn_.st
R Polymorph-Widgets.package/TransformWithLayoutMorph.class/instance/layout/fullBounds.st
A ScriptLoader40.package/ScriptLoader.class/instance/pharo - scripts/script146.st
A ScriptLoader40.package/ScriptLoader.class/instance/pharo - updates/update40146.st
M ScriptLoader40.package/ScriptLoader.class/instance/public/commentForCurrentUpdate.st
A Tool-FileList.package/extension/MenuMorph/instance/addService_for_.st
A Tool-FileList.package/extension/MenuMorph/instance/addServices_for_extraLines_.st
Log Message:
-----------
40146
13737 Little MenuMorph cleaning up
https://pharo.fogbugz.com/f/cases/13737
13746 repackaging a simple problem with buttonToTriggerIn:
https://pharo.fogbugz.com/f/cases/13746
13745 Cleaning polymorph again
https://pharo.fogbugz.com/f/cases/13745
http://files.pharo.org/image/40/40146.zip
July 31, 2014
[pharo-project/pharo-core]
by GitHub
Branch: refs/tags/40146
Home: https://github.com/pharo-project/pharo-core
July 31, 2014
Re: [Pharo-dev] ESUG 2014 REMINDER: 11th Innovation Technology Awards
by jdelgado@lsi.upc.edu
Someone should present the submission and, eventually, get the prize at
the social event. If you know somebody who attends the conference and that
is able to answer questions about your software, that would do.
Bests,
Jordi
> Hi Jordi,
>
> Apologies if this was asked before. Does ESUG accept a presentation/demo
> without the coder being in presence in Cambridge, England?
> Cheers,
>
> Hernán
>
>
>
> 2014-07-27 4:15 GMT-03:00 <jdelgado(a)lsi.upc.edu>:
>
>> Hi guys,
>>
>> It's been sort of a tradition to do last minute submits to ESUG
>> Innovation
>> Technology Awards. Let's break with this tradition, ok? You can start
>> submitting your software now! :-)
>>
>> Thus:
>>
>> ESUG 2014 REMINDER: 11th Innovation Technology Awards
>> http://esug.org/Conferences/2014/Innovation-Technology-Awards
>>
>> Have you written innovative Smalltalk? The developers of any
>> Smalltalk-based software can enter by submitting a 3-5min video of their
>> software. Entrants demo their systems in a session at the end of Monday
>> August 18th 2014, after which the conference attendees vote. (A vote
>> consists in providing a sorted list of 3 preferred pieces of software.)
>>
>> The top 3 teams with the most innovative software will receive,
>> respectively, 500 Euros, 300 Euros and 200 Euros. The results are
>> announced in the Awards ceremony that is held during the social event.
>>
>> Applicants should provide the following information on the conference
>> registration server. Once you have registered your personal info, an
>> 'Awards' menu allows submitting your software. You can provide this
>> information when you first register, or login again later and update
>> your
>> details. The registration server will open soon. You can start preparing
>> your software right now though.
>>
>> Info to provide:
>>
>> Name of the software
>> Licence information (free, shareware, or commercial)
>> Name of the Smalltalk dialect used
>> Name, Affiliation and Country of developers
>> Besides, it would be great if the submission could include:
>>
>> URL for a video (3-5 min) showing a screencast / demo of the software
>> URL for downloading the software or at least a runnable demo
>> Deadline: August 15th
>>
>> Any Smalltalker can apply (students, companies, ...). The presented
>> piece
>> of code/software should be written in Smalltalk or directly support
>> Smalltalk (e.g. Smalltalk VM). All Smalltalk dialects are accepted. The
>> applicant should be "strongly related" to the presented code, be it as
>> an
>> author, as owner of the copyright/copyleft, or as an official
>> representative of the copyright/copyleft owner.
>>
>> Bests,
>>
>> Jordi
>>
>>
>>
>>
>
July 31, 2014