Re: [Pharo-users] Seaside jQuery - Sorting a list with drag and drop and sending it back via Ajax causes OrderedCollection to turn into an Array?

2015-02-26 Thread Mircea S.
Thank you for pointing me in the right direction, the source I was using is the Seaside book at: http://book.seaside.st/book/web-20/jquery/enhanced-todo-application/drag-and-drop I was using a heavily modified version of that example to figure out how it works. The code on that page is the culp

Re: [Pharo-users] Seaside jQuery - Sorting a list with drag and drop and sending it back via Ajax causes OrderedCollection to turn into an Array?

2015-02-26 Thread Mircea S.
Yes. Adding #asOrderedCollection would fix the problem I think. Trying it out now. Pe 13 feb. 2015, la 12:03, Carlo a scris: > Hi > > I assume that your _itemList variable is set via self model items: items. > If so then it looks like it will become an array due to the > callback:passenger

Re: [Pharo-users] Git (gitfiletree) on Pharo vs Windows

2015-02-26 Thread Thierry Goubier
Hi Hernán, I didn't put ProcessWrapper as a dependency yet, you'll have to load it first. Gofer new url: 'https://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main'; configurationOf: 'ProcessWrapper'; loadStable Thierry Le 27/02/2015 02:58, Hernán Morales Durand

Re: [Pharo-users] Git (gitfiletree) on Pharo vs Windows

2015-02-26 Thread Hernán Morales Durand
Hi Thierry, I have tried in Pharo 3: Gofer new url: 'https://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main'; configurationOf: 'GitFileTree'; loadDevelopment But it didn't load the ProcessWrapper. Can you tell me how should I install? Cheers, Hernán 2015-02-25 16:

Re: [Pharo-users] Canvas: Transform Width and Height Independently

2015-02-26 Thread Sean P. DeNigris
stepharo wrote > Could you write a little doc on what you learned? I have to think about it. There were a lot of little ahas, but I don't know how to summarize it... The biggest realization was that "canvases + transforms" is extremely powerful! - Cheers, Sean -- View this message in contex

Re: [Pharo-users] What UI direction now (or in the near future)?

2015-02-26 Thread Johan Fabry
> On Feb 26, 2015, at 19:13, Peter Uhnák wrote: > > Thanks (to all). So, the best way (for now) is the old friend Morphic. > Better way may be to stay at Spec level for all available components you need > and for your special component write Morph which could be adapted back to > Spec. After a

Re: [Pharo-users] What UI direction now (or in the near future)?

2015-02-26 Thread Peter Uhnák
> > Thanks (to all). So, the best way (for now) is the old friend Morphic. > Better way may be to stay at Spec level for all available components you need and for your special component write Morph which could be adapted back to Spec. After all Spec components still have Morphic under them, but you

Re: [Pharo-users] What UI direction now (or in the near future)?

2015-02-26 Thread Alain Plantec via Pharo-users
--- Begin Message --- Hi Sean, No, I’ve not studied Self Morphic but I hope that I understand well the idea and a part of its design. I think it is still the idea of Morphic even in Pharo but as you say, pollute with special cases. The Bloc core is a reimplementation of this Morphic idea. I hop

Re: [Pharo-users] BaselineOf vs ConfigurationOf

2015-02-26 Thread Peter Uhnák
Thank you! If the BaselineOf is independent maybe we could repurpose Versioner - because even if tags and branches are handled by git, the load order and dependencies are still required and doing that by hand is too much work. :) Also maybe the docs (which I found just now… so shame on me for not

Re: [Pharo-users] What UI direction now (or in the near future)?

2015-02-26 Thread Alexandre Bergel
> Will be internal drawing methods in Morph switched to Athens drawing by > default in future? You can do the drawing in Athens. It is up to you. Using Athens will make your rendering faster and nicer (if you use the Cairo binding, which is the default binding). If I would be a beginner who w

Re: [Pharo-users] What UI direction now (or in the near future)?

2015-02-26 Thread Petr Fischer
Thanks (to all). So, the best way (for now) is the old friend Morphic. Will be internal drawing methods in Morph switched to Athens drawing by default in future? pf > Subject: Re: [Pharo-users] What UI direction now (or in the near future)? > From: Alain Plantec > Date: 25. února 2015 20:17:4

Re: [Pharo-users] Any static web site generators for pharo with bootstrap support?

2015-02-26 Thread stepharo
Yes now that we have pillar I think that this is the time to investigate that :). Because before I was just editing smalltalk code :). Having a framework to generate static website from Pharo like Jekyll (http://jekyllrb.com/) or DocPad (https://docpad.org/) would be great ;-) On Sat, Feb 21,

Re: [Pharo-users] What UI direction now (or in the near future)?

2015-02-26 Thread stepharo
Le 25/2/15 04:02, Petr Fischer a écrit : Hello! Suppose, that I need to write simple UI app + write my own UI list component (some special behaviour, can’t use default list UI component from Pharo) + I need perfect keyboard support (shortcuts, tab navigation + navigation by cursor keys in so

Re: [Pharo-users] What UI direction now (or in the near future)?

2015-02-26 Thread stepharo
Do not ask alain extra work. Read Bloc code. Stef Pharo Smalltalk Users mailing list wrote now, design decisions are to be made regarding the widgets layer. I assume you've studied the original Self Morphic, which seemed very simple and elegant in my brief experiments with it. One of the key

Re: [Pharo-users] What UI direction now (or in the near future)?

2015-02-26 Thread stepharo
Do not confuse things. Athens is a CANVAS it has ***nothing*** to do with events. Events are managed by the UI layer not the drawing layer. Athens is about drawing. Morphic has been around for over a decade. Probably it will stay for a while. Athens is quite stable. However it is not made to do

Re: [Pharo-users] [clubSmalltalk] Re: [ANN] StNER: Interface to Stanford Named Entity Recognizer

2015-02-26 Thread Alexandre Bergel
Oh! Interesting!!! Cheers, Alexandre > On Feb 26, 2015, at 2:06 AM, Hernán Morales Durand > wrote: > > I have to finish the PhyloclassTalk paper. -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.

Re: [Pharo-users] BaselineOf vs ConfigurationOf

2015-02-26 Thread Dale Henrichs
On 2/26/15 4:41 AM, Ben Coman wrote: Just a random query (especially since I haven't played with BaselineOf and I might misunderstand something)... should #baseline: be moved out of the ConfigurationOf class so that we consistently have a BaselineOf class in both cases: git & monticello. Haha,

Re: [Pharo-users] BaselineOf vs ConfigurationOf

2015-02-26 Thread Dale Henrichs
Martin, In my work I am moving entirely away from ConfigurationOf ... ConfigurationOf was invented because Monticello lacks the ability to reason about multi-file versions so virtually all of the meta data in a ConfigurationOf is making up for this lack. Of course, the ConfigurationOf only pa

Re: [Pharo-users] BaselineOf vs ConfigurationOf

2015-02-26 Thread Thierry Goubier
2015-02-26 13:41 GMT+01:00 Ben Coman : > Just a random query (especially since I haven't played with BaselineOf and > I might misunderstand something)... > should #baseline: be moved out of the ConfigurationOf class so that we > consistently have a BaselineOf class in both cases: git & monticello.

Re: [Pharo-users] BaselineOf vs ConfigurationOf

2015-02-26 Thread Ben Coman
Just a random query (especially since I haven't played with BaselineOf and I might misunderstand something)... should #baseline: be moved out of the ConfigurationOf class so that we consistently have a BaselineOf class in both cases: git & monticello. That is, the ConfigurationOfXxx.mcz package wi

[Pharo-users] Pharo-Launcher does not launch image in Ubuntu

2015-02-26 Thread nacho
Hi, pharo-launcher starts perfectly, I can even download i.e. the latest Pharo 4 beta, but when trying to launch that image I receive the following error 200 times or more until pharo closes *** stack smashing detected ***: /usr/lib/pharo-vm/pharo-vm terminated output file stack is full. I did so

Re: [Pharo-users] Git (gitfiletree) on Pharo vs Windows

2015-02-26 Thread Thierry Goubier
2015-02-26 11:06 GMT+01:00 Jan B. : > Hi > > This time, when I add gitfiletree repository via monticello, it loads all > packages and classes. > However, it does not load any methods. Even if I use "Browse" in repository > window, it displays class definition, including variables and category > co

Re: [Pharo-users] [ANN] StNER: Interface to Stanford Named Entity Recognizer

2015-02-26 Thread stepharo
https://pharoweekly.wordpress.com/2015/02/26/pharo-interface-to-the-stanford-named-entity-recognizer/ :) Great job! Stef Le 25/2/15 22:48, Hernán Morales Durand a écrit : Hello, I am announcing the release of StNER. StNER provides a Pharo Smalltalk interface to the Stanford Named Entity Recog

Re: [Pharo-users] Git (gitfiletree) on Pharo vs Windows

2015-02-26 Thread Jan B.
Hi This time, when I add gitfiletree repository via monticello, it loads all packages and classes. However, it does not load any methods. Even if I use "Browse" in repository window, it displays class definition, including variables and category correctly, but still no methods. Normal filetree sho