Re: [Pharo-users] Uninstalling NonInteractiveTranscript (or reinstalling default Transcript)

2014-11-13 Thread Sven Van Caekenberghe
Yes, I would think so. It is just an assignment to the global variable Transcript, IIRC. > On 14 Nov 2014, at 02:50, Esteban A. Maringolo wrote: > > How do I revert the installation of the following?: > NonInteractiveTranscript stdout install. > > Is the following statement enough? > ThreadSafe

[Pharo-users] Uninstalling NonInteractiveTranscript (or reinstalling default Transcript)

2014-11-13 Thread Esteban A. Maringolo
How do I revert the installation of the following?: NonInteractiveTranscript stdout install. Is the following statement enough? ThreadSafeTranscript install Regards!

Re: [Pharo-users] Metacello configuration based on subdirectory of Git repo

2014-11-13 Thread Rafael Luque
Hi Dale, Your second option worked for me. This is the validation error I got for my previous configuration using the MetacelloToolBox: "Error: Missing required field (className:) for project reference 'Stamp' in version '0.1-baseline' { incompleteProjectSpec } [ #validateBaselineVersionSpec: ]"

Re: [Pharo-users] Metacello configuration based on subdirectory of Git repo

2014-11-13 Thread Rafael Luque
Hi Dale, Your second option worked for me. This is the validation error I got for my previous configuration using the MetacelloToolBox: "Error: Missing required field (className:) for project reference 'Stamp' in version '0.1-baseline' { incompleteProjectSpec } [ #validateBaselineVersionSpec: ]"

Re: [Pharo-users] Metacello configuration based on subdirectory of Git repo

2014-11-13 Thread Dale Henrichs
Rafael, It looks like in your case that you've got a configuration problem ... and here's the proper fix (but depending upon which vesion of Metacello you're using may or may not work): baseline01: spec spec for: #common do: [ spec blessing: #baseline. spec repository: 'filetree://full-filesyste

Re: [Pharo-users] Metacello configuration based on subdirectory of Git repo

2014-11-13 Thread Rafael Luque
Thank you for the responses. I'll try both of them, but in the meantime I found another problem because of my lack of experience. I'm trying to define in the baseline a dependency with another project, in particular the Stamp project by Sven Van Caekenberghe [1] in Smalltalkhub in the following w

Re: [Pharo-users] Opentalk or remoting libraries

2014-11-13 Thread Alain Rastoul
Le 13/11/2014 20:17, Sven Van Caekenberghe a écrit : Nice. It is of course also important to note the security risks involved: the client can execute absolutely anything. Yes, a problem on open networks. And important to notice One partial solution is to bind the server only to the localhos

Re: [Pharo-users] Error when compiling a string with a quote

2014-11-13 Thread Hilaire
Thanks for the tips! Hilaire Le 13/11/2014 19:04, Sven Van Caekenberghe a écrit : > I was too quick to respond, the #storeString conversion is OK: -- Dr. Geo - http://drgeo.eu iStoa - http://istoa.drgeo.eu

Re: [Pharo-users] Opentalk or remoting libraries

2014-11-13 Thread Sven Van Caekenberghe
Nice. It is of course also important to note the security risks involved: the client can execute absolutely anything. One partial solution is to bind the server only to the localhost. > On 13 Nov 2014, at 19:17, Alain Rastoul wrote: > > Hi, > CORBA main focus is about interoperability between

Re: [Pharo-users] Opentalk or remoting libraries

2014-11-13 Thread Alain Rastoul
Hi, CORBA main focus is about interoperability between systems, languages (don't know about opentalk). If you want smalltalk only remote execution, you can very easily do your own on Pharo with Zinc http components and Fuel serializer: a small server that reads smalltalk blocks, evaluates them

Re: [Pharo-users] Metacello configuration based on subdirectory of Git repo

2014-11-13 Thread Thierry Goubier
Le 13/11/2014 18:21, Rafael Luque a écrit : Hi all, I'm starting with Pharo and playing with the ways to integrate it with Git. I've read the "Git and Pharo" chapter on "Enterprise Pharo" book by Thierry Goubier and loaded the GitFileTree package. I'm working on a project with several microser

Re: [Pharo-users] Error when compiling a string with a quote

2014-11-13 Thread Sven Van Caekenberghe
I was too quick to respond, the #storeString conversion is OK: (#( $f $o $o $' $b $a $r) as: String) storeString collect: [ :each | each ] as: Array. => #($' $f $o $o $' $' $b $a $r $') The contract of #storeString is, given a String (well any object), what should it look like when written as

Re: [Pharo-users] Metacello configuration based on subdirectory of Git repo

2014-11-13 Thread Dale Henrichs
Rafael, To get to a git repository use a filetree repository and point to a local clone of the repo. I've editted your baseline accordingly: baseline01: spec spec for: #common do: [ spec blessing: #baseline. spec repository: 'filetree://full-filesystempath-to-your-pharo-subdirectory'. spec pack

Re: [Pharo-users] Error when compiling a string with a quote

2014-11-13 Thread Hilaire
Le 13/11/2014 18:05, Sven Van Caekenberghe a écrit : > I think you need to send #storeString to the result of 'dialog description > string'. The single quote has to be doubled. Yep, I realized it is not double quoted. I used this message copyWithRegex: matchesReplacedWith: '' However b

[Pharo-users] Metacello configuration based on subdirectory of Git repo

2014-11-13 Thread Rafael Luque
Hi all, I'm starting with Pharo and playing with the ways to integrate it with Git. I've read the "Git and Pharo" chapter on "Enterprise Pharo" book by Thierry Goubier and loaded the GitFileTree package. I'm working on a project with several microservices, one of them will be based on Pharo and

Re: [Pharo-users] Error when compiling a string with a quote

2014-11-13 Thread Sven Van Caekenberghe
I think you need to send #storeString to the result of 'dialog description string'. The single quote has to be doubled. > On 13 Nov 2014, at 17:50, Hilaire wrote: > > Hello, > > I get an error (see screenshot) when I compile at runtime a method where > a quote is found in its body. > > I expe

[Pharo-users] Error when compiling a string with a quote

2014-11-13 Thread Hilaire
Hello, I get an error (see screenshot) when I compile at runtime a method where a quote is found in its body. I expect this compiled method: description ^ 'n''a pas sa force' The user inputs part of this method as: n'a pas sa force In its string representation, it is displayed as: n''a pas sa

[Pharo-users] [Article] Lambda Calculus in Pharo

2014-11-13 Thread Sven Van Caekenberghe
Hi, I was hacking a bit and one thing let to another and I ended up writing and publishing another short article: Lambda Calculus in Pharo Yes, the Y Combinator is useful in normal programs https://medium.com/@svenvc/lambda-calculus-in-pharo-a4a571869594 Enjoy, Sven

Re: [Pharo-users] Pharo how to get carect symbol

2014-11-13 Thread p...@highoctane.be
Keyboard support in Linux is suboptimal. I should do a pass on that one of these days. It is in the pharo-vm/platforms/unix/vm-display-X11/sqUnixX11.c file, lines 2001-2364 and a bit after. (+ x2sqmodifiers function). https://github.com/pharo-project/pharo-vm/blob/master/platforms/unix/vm-displa

Re: [Pharo-users] Pharo how to get carect symbol

2014-11-13 Thread Rafael Luque
My layout is "es" (spanish). I've tried with the Phil advice and It works. I have to hit twice the key and modifier (in my layout shift key) to get the caret. Thank you 2014-11-13 13:51 GMT+01:00 p...@highoctane.be : > Try to hit the key twice in a row, no modifier key. > Le 13 nov. 2014 12:45,

Re: [Pharo-users] Pharo how to get carect symbol

2014-11-13 Thread p...@highoctane.be
Try to hit the key twice in a row, no modifier key. Le 13 nov. 2014 12:45, "Rafael Luque" a écrit : > Hi all, > > I don't know how to get the caret (^) symbol inside Pharo in my Linux > laptop. > > The usual combination of keys that work for me in other applications like > browser, emacs or termi

Re: [Pharo-users] Opentalk or remoting libraries

2014-11-13 Thread stepharo
What is your goal. There are rST (noury uses it in his school) Seamless (rewrite of rst nick is working on it). Stef Hi, Are there some libraries in pharo to do remote calls like in Opentalk or Corba ? Annick

Re: [Pharo-users] Pharo how to get carect symbol

2014-11-13 Thread Damien Cassou
On Thu, Nov 13, 2014 at 12:45 PM, Rafael Luque wrote: > I don't know how to get the caret (^) symbol inside Pharo in my Linux > laptop. What is your keyboard layout? -- Damien Cassou http://damiencassou.seasidehosting.st "Success is the ability to go from one failure to another without losing

[Pharo-users] Pharo how to get carect symbol

2014-11-13 Thread Rafael Luque
Hi all, I don't know how to get the caret (^) symbol inside Pharo in my Linux laptop. The usual combination of keys that work for me in other applications like browser, emacs or terminal does not work inside Pharo. This is the VM version output: M:NBCoInterpreter NativeBoost-CogPlugin-Guill