Re: [Pharo-dev] [Pharo-users] Saving image sometimes corrupts it

2015-07-14 Thread p...@highoctane.be
I have had some Windows|Linux image transfers fail because I was using some .so libraries on Linux and the image wasn't agreeing to work properly/crashed on Windows (due to those missing I guess). Not having seen those since I am sticking to CentOS now. Phil On Tue, Jul 14, 2015 at 11:47 AM,

Re: [Pharo-dev] [Pharo-users] Saving image sometimes corrupts it

2015-07-14 Thread Nicolai Hess
2015-07-14 11:38 GMT+02:00 Jan Blizničenko blizn...@fit.cvut.cz: Hello I come with another probably-only-mine-windows-related problem which I am unable to reproduce from a clean image. I use latest image 50170, latest (9th July 2015) Windows VM, Windows 7 64bit. So there is my vague

Re: [Pharo-dev] [Pharo-users] Saving image sometimes corrupts it

2015-07-14 Thread Jan Blizničenko
Nicolai Hess nicolaihess@... writes: 2015-07-14 11:38 GMT+02:00 Jan Blizničenko bliznjan- s88eNO7/XrThvxM+mQhndA@public.gmane.orgcz:Hello I come with another probably-only-mine-windows-related problem which I am unable to reproduce from a clean image. I use latest image 50170, latest

[Pharo-dev] Searching for similiar projects

2015-07-14 Thread Jigyasa Grover
Hello :D I am a newbie in Pharo and have started to build my first application i.e. an offline text search application namely *searchQuick* which returns the list of file titles from the pre-loaded text files present in the resource folder when a string is searched for. You all are welcome to

Re: [Pharo-dev] styling in nautilus

2015-07-14 Thread Andrei Chis
Seems that this was caused by the change from RubShoutStylerDecoratorstyle: from Rubric-AlainPlantec.252 to remove the check for text size and always style in a background process. style: aText aText size self minTextSizeForStylingInBackground ifTrue: [ ^ self styler style: aText ]. self styler

Re: [Pharo-dev] styling in nautilus

2015-07-14 Thread Andrei Chis
Strangely enough doing 'Nautilus useExperimentalFastTable: false' brings the highlighting back. On Tue, Jul 14, 2015 at 2:31 PM, Andrei Chis chisvasileand...@gmail.com wrote: Seems that this was caused by the change from RubShoutStylerDecoratorstyle: from Rubric-AlainPlantec.252 to remove the

[Pharo-dev] Card layout in Bloc?

2015-07-14 Thread Stephan Eggermont
I'm looking at a way to layout the drag wells in a drag panel. I would like the width of the panel to remain constant, and the submorphs to be layed out flowing into new rows. How do I do that with the new layout strategies? Stephan

Re: [Pharo-dev] Card layout in Bloc?

2015-07-14 Thread Alain Plantec via Pharo-dev
---BeginMessage--- Hello again Stephan, yes, you need a kind of TableLayout for Bloc. Not available for now, maybe Alex have a flow layout policy in Brick. If not, I will try to revive the BlTableLayoutStrategy that I’ve made a the very beginning of Bloc by porting TableLayout to local

Re: [Pharo-dev] Card layout in Bloc?

2015-07-14 Thread Alain Plantec via Pharo-dev
---BeginMessage--- BlCardLayoutlayout: aMorph in: newBounds |offset maxHeight| offset := 0@0. maxHeight := 0. aMorph layoutComponentsDo: [ :component | offset x + component width newBounds width ifTrue: [ start a new line

Re: [Pharo-dev] Evaluating Confidential Info

2015-07-14 Thread Sean P. DeNigris
Sven Van Caekenberghe-2 wrote Write your code in the new/re-implementation of the old workspace ? That works, thanks. Sven Van Caekenberghe-2 wrote When a bad guy has access to your machine you are doomed anyway, no ? Probably true, but one can imagine, say, I log in on someone else's

Re: [Pharo-dev] Card layout in Bloc?

2015-07-14 Thread Stephan Eggermont
Writing a LayoutStrategy in Bloc can be easy. Generic layout strategies get complex because they can be parametrized a lot. That tends to distract from the essentials. In this case, all I need is a strategy that adds submorphs from left to right in the panel, breaking to a new line when it is

[Pharo-dev] Tiling Window Manager: Enable on load

2015-07-14 Thread Sean P. DeNigris
Any reason not to enable TWM by default? It seems clunky to have to dig into the settings to enable after loading the project... - Cheers, Sean -- View this message in context: http://forum.world.st/Tiling-Window-Manager-Enable-on-load-tp4837513.html Sent from the Pharo Smalltalk

Re: [Pharo-dev] Loading TWM in Pharo 4.0

2015-07-14 Thread Sean P. DeNigris
Sean P. DeNigris wrote When loading TWM from the Configuration Browser, the version shown is ConfigurationOfTilingWindowManager-LaurentLaffont.28. But when I click load, ConfigurationOfTilingWindowManager-PhilippeBack.28 is what actually gets loaded, presumably from my cache, and which has no

Re: [Pharo-dev] Evaluating Confidential Info

2015-07-14 Thread Sean P. DeNigris
Sean P. DeNigris wrote Now that Playground is saving all snippets for later use, how would one evaluate something for which there should be no record e.g. logging into a server? Bump. This is a big security hole. Maybe I should cross-post to the Moose list... - Cheers, Sean -- View this

Re: [Pharo-dev] Evaluating Confidential Info

2015-07-14 Thread Sven Van Caekenberghe
Write your code in the new/re-implementation of the old workspace ? Workspace open. Write code that asks for the password via a dialog ? When a bad guy has access to your machine you are doomed anyway, no ? On 14 Jul 2015, at 21:41, Sean P. DeNigris s...@clipperadams.com wrote: Sean P.

Re: [Pharo-dev] Loading TWM in Pharo 4.0

2015-07-14 Thread Stephan Eggermont
On 15-07-15 00:09, Sean P. DeNigris wrote: Sean P. DeNigris wrote 2. Enforce discipline that configurations must always be merged with latest from canonical repo. Ideally, committing to canonical and copying to MetaRepos is the right thing, but IDK how we can possibly enforce this since the