Re: [Pharo-users] brick/bloc examples missing FILOStack

2015-07-07 Thread Tudor Girba
Both Brick and Bloc are in the Pharo repository. I think you have some rights there :) MCHttpRepository location: 'http://www.smalltalkhub.com/mc/Pharo/Brick/main' user: '' password: '' Doru On Wed, Jul 8, 2015 at 7:08 AM, stepharo wrote: > Doru > > can you give me access to the repo of brick

Re: [Pharo-users] brick/bloc examples missing FILOStack

2015-07-07 Thread stepharo
Doru can you give me access to the repo of brick because I'm writing a configuration and a CI? Stef Le 1/6/15 07:28, Tudor Girba a écrit : I think this should do it: Gofer it smalltalkhubUser: 'Pharo' project: 'Bloc'; configurationOf: 'Bloc'; loadDevelopment. Gofer new smalltalk

Re: [Pharo-users] brick/bloc examples missing FILOStack

2015-06-01 Thread PBKResearch
welcome Subject: Re: [Pharo-users] brick/bloc examples missing FILOStack > On 01 Jun 2015, at 08:09, Peter Uhnák wrote: > > Thanks, it seems to work now. I also had to switch to newly created "bloc" > space. Why is that required? Why it wouldn't work also fr

Re: [Pharo-users] brick/bloc examples missing FILOStack

2015-06-01 Thread Sven Van Caekenberghe
> On 01 Jun 2015, at 08:09, Peter Uhnák wrote: > > Thanks, it seems to work now. I also had to switch to newly created "bloc" > space. Why is that required? Why it wouldn't work also from "regular" Pharo > space? > > >> FILOStack > > > Just wondering, isn't this a contradiction in terms ? >

Re: [Pharo-users] brick/bloc examples missing FILOStack

2015-06-01 Thread stepharo
Bloc is a ***real*** Morph new kernel. Now we are lucky because it is powerful enough so that we can render morphic morph inside itself. But Bloc has a new architecture rendering, event loop, and many more. Stef Le 1/6/15 08:09, Peter Uhnák a écrit : Thanks, it seems to work now. I also had t

Re: [Pharo-users] brick/bloc examples missing FILOStack

2015-05-31 Thread Aliaksei Syrel
On Mon, Jun 1, 2015 at 8:09 AM, Peter Uhnák wrote: > Thanks, it seems to work now. I also had to switch to newly created "bloc" > space. Why is that required? Why it wouldn't work also from "regular" Pharo > space? Because it's Bloc, a complete replacement for morphic - with its own spaces/mana

Re: [Pharo-users] brick/bloc examples missing FILOStack

2015-05-31 Thread Peter Uhnák
Thanks, it seems to work now. I also had to switch to newly created "bloc" space. Why is that required? Why it wouldn't work also from "regular" Pharo space? >> FILOStack > Just wondering, isn't this a contradiction in terms ? > A stack is by definition LIFO, a FILO structure is normally called a

Re: [Pharo-users] brick/bloc examples missing FILOStack

2015-05-31 Thread Aliaksei Syrel
Should work now, just update using Doru's script :) Cheers, Alex On Mon, Jun 1, 2015 at 7:49 AM, Aliaksei Syrel wrote: > Hi, > > Oops, this kind of stack is from moose and not in pharo :) > > Yes, better to use a queue - thanks! > > Cheers, > Alex > On Jun 1, 2015 7:32 AM, "Sven Van Caekenbergh

Re: [Pharo-users] brick/bloc examples missing FILOStack

2015-05-31 Thread Aliaksei Syrel
Hi, Oops, this kind of stack is from moose and not in pharo :) Yes, better to use a queue - thanks! Cheers, Alex On Jun 1, 2015 7:32 AM, "Sven Van Caekenberghe" wrote: > > > On 31 May 2015, at 23:15, Peter Uhnák wrote: > > > > FILOStack > > Just wondering, isn't this a contradiction in terms

Re: [Pharo-users] brick/bloc examples missing FILOStack

2015-05-31 Thread Sven Van Caekenberghe
> On 31 May 2015, at 23:15, Peter Uhnák wrote: > > FILOStack Just wondering, isn't this a contradiction in terms ? A stack is by definition LIFO, a FILO structure is normally called a queue, no ?

Re: [Pharo-users] brick/bloc examples missing FILOStack

2015-05-31 Thread Tudor Girba
I think this should do it: Gofer it smalltalkhubUser: 'Pharo' project: 'Bloc'; configurationOf: 'Bloc'; loadDevelopment. Gofer new smalltalkhubUser: 'Pharo' project: 'Brick'; package: 'Brick-Core'; package: 'Brick-Scrollpane'; package: 'Brick-List'; load. ConfigurationOfTxText loadDeve

[Pharo-users] brick/bloc examples missing FILOStack

2015-05-31 Thread Peter Uhnák
Hi, I wanted to try new brick/bloc thing https://pharoweekly.wordpress.com/2015/05/30/future-new-widget-sets-is-coming-to-you/ however after loading (in Pharo 5.0) it is complaining about missing FILOStack (in BlBrickLayouter>>initialize) What should I load? Thanks, Peter