Re: [Pharo-users] Zinc server with static and non-static files

2020-03-28 Thread Norbert Hartl
There is ZnPrefixMappingDelegate you can use. server delegate: (ZnPrefixMappingDelegate map: 'static' to: staticFileDelegate; map: 'app' to: myApp). There is also ZnStaticFileDecoratorDelegate if you want to mimick another typical setup where all urls that resolve to a file get s

Re: [Pharo-users] Zinc server with static and non-static files

2020-03-28 Thread Davide Varvello via Pharo-users
--- Begin Message --- Hi Norbert, Thank you very much for the suggestion!! Davide NorbertHartl wrote > There is ZnPrefixMappingDelegate you can use. > > server >delegate: (ZnPrefixMappingDelegate > map: 'static' to: staticFileDelegate; > map: 'app' to: myApp). > > There is also

Re: [Pharo-users] Zinc server with static and non-static files

2020-03-28 Thread Sven Van Caekenberghe
Hi Davide, What Norbert says is all correct and useful. Go read the code of the classes he mentions. I wanted to add, that fundamentally, all this (dispatching/configuring), is not difficult to understand or to follow. Even with the aptly named ZnDefaultServerDelegate you can already do a lot,

[Pharo-users] [Spec] List and notebook page

2020-03-28 Thread Hilaire
Hi, In a list contained in a notebook page, the display bloc is not called as expect: Likely I missed something, any idea? Thank. Keep safe. Hilaire connectPresenters     scripts whenSelectedItemChanged: [ :class |         methods selectPageIndex: 1.         ((methods pageAt: 1) activePrese

Re: [Pharo-users] Zinc server with static and non-static files

2020-03-28 Thread Davide Varvello via Pharo-users
--- Begin Message --- Thanks Sven, crystal clear! Davide Sven Van Caekenberghe-2 wrote > Hi Davide, > > What Norbert says is all correct and useful. Go read the code of the > classes he mentions. > > I wanted to add, that fundamentally, all this (dispatching/configuring), > is not difficult to

Re: [Pharo-users] Test Completion has been added to Pharo 8 - please test!

2020-03-28 Thread Vitor Medina Cruz
Hello, I didn't find the controller option in Pharo 8, and I really want to use this autocompletion test, something has changed? Thanks, Vitor On Fri, Jul 12, 2019 at 12:51 PM Myroslava Romaniuk via Pharo-users < pharo-users@lists.pharo.org> wrote: > Aha ok! Please let us know if you have a spe

[Pharo-users] Autocompletion shortcut

2020-03-28 Thread Vitor Medina Cruz
Hi there, Is it possible to change autocompletion shortcut to ctrl + space instead of tab or shift + space? Every other tool uses ctrl + space, I would like to use it on Pharo also. Thanks, Vitor