Re: [Pharo-users] OSProcess or OSSubprocess?

2017-03-20 Thread Hernán Morales Durand
I just tested and it works nice!! Thank you Mariano. Just a quick note, to read from /var/log requires root privilege which many users cannot acquire. I tested using a bash script and then tailf the output file: #!/bin/sh while true; do echo $(date) sleep 2 done > output.txt Cheers,

Re: [Pharo-users] Pharo 5 ODBC

2017-03-20 Thread Offray Vladimir Luna Cárdenas
I'm using UDBC2 without any problem. Try this: ~~~ Gofer it smalltalkhubUser: 'TorstenBergmann' project: 'UDBC'; configuration; load. (Smalltalk at: #ConfigurationOfUDBC) loadBleedingEdge. ~~~ Cheers, Offray On 20/03/17 15:28, Glenn Swanlund wrote: Hi, I'm

Re: [Pharo-users] Pharo 5 ODBC

2017-03-20 Thread Glenn Swanlund
Hi, I'm trying to connect to a .xls file on Windows 7. I will also need to connect to an Access database. My application database is SQLite3. I used the following excerpt from an email I found: Gofer it smalltalkhubUser: 'TorstenBergmann' project: 'UDBC'; configuration;

Re: [Pharo-users] Pharo 5 ODBC

2017-03-20 Thread Benoit St-Jean via Pharo-users
--- Begin Message --- Can you give the URL of what exactly you loaded?  There's a bunch of ODBC packages/versions out there so I'd need more details.  I've used ODBC on Pharo 5 before without any problem.  Besides, what OS and database are you using?  - Benoît St-Jean Yahoo!

[Pharo-users] Pharo 5 ODBC

2017-03-20 Thread Glenn Swanlund
Does Pharo 5 support ODBC? I loaded the UDBC package and can't see how to make an ODBC connection. There is a class UDBCODBCConnection but it is empty. Any pointers? Regards, Glenn

Re: [Pharo-users] Class versions

2017-03-20 Thread Dale Henrichs
Norbert. Are you thinking of GemStone-style class versions for Pharo? Dale On 03/19/2017 06:16 AM, Norbert Hartl wrote: How far are we to support multiple versions of the same class in an image? Are there existing approaches? Norbert Von meinem iPad gesendet

Re: [Pharo-users] MetaLinks with arbitrary number of arguments

2017-03-20 Thread denker
> On 20 Mar 2017, at 16:34, denker wrote: > > Hi, > > Here is a slice that implements the #argsAsArray option: > > https://pharo.fogbugz.com/f/cases/19857/add-option-argsAsArray > > from a speed perspective, the question is if a dictionary makes sense… as it >

Re: [Pharo-users] MetaLinks with arbitrary number of arguments

2017-03-20 Thread denker
Hi, Here is a slice that implements the #argsAsArray option: https://pharo.fogbugz.com/f/cases/19857/add-option-argsAsArray from a speed perspective, the question is if a dictionary makes sense… as it would need to be created at runtime. Marcus > On 15 Mar 2017, at 11:25,

[Pharo-users] read, display, and annotate MS Word and PDF files?

2017-03-20 Thread David Epstein
Hi folks. I am considering trying Pharo for a project but am unfamiliar with Smalltalk. I'm attracted by the close integration between language and IDE. Are there native libraries that would allow me to read, display, and annotate (e.g. add comments & highlighting) to MS Word and PDF files? If

Re: [Pharo-users] Magritte extension

2017-03-20 Thread Esteban A. Maringolo
2017-03-20 7:18 GMT-03:00 Otto Behrens : > Hi, > > We also made several sub-classes of Magritte classes and / or > components. This causes a lot of problems because when we upgraded > Magritte it was difficult. It also shows that Magritte (the core > classes) cannot change much

Re: [Pharo-users] OSProcess or OSSubprocess?

2017-03-20 Thread Alistair Grant
Hi Mariano, On 20 March 2017 at 12:24, Mariano Martinez Peck wrote: > > > > Hi Hernan, > > There is a tail -f example in OSSubprocess documentation that prints the > result on an inpsector and updates it [1]. However, OSSubprocess has > problems on Linux with the

Re: [Pharo-users] looking for tools to manually select ast nodes for metalinks

2017-03-20 Thread Steven Costiou
Hi Ben, Guille, thanks !!! I will look into that =) Steven. Le 2017-03-20 10:39, Guillermo Polito a écrit : > Hi Steven, > > Yes there is! It's called "Suggestions". Suggestions is a project started > some years ago by Gisela Decuzzi as an intern of RMoD. The main idea is to > propose

Re: [Pharo-users] OSProcess or OSSubprocess?

2017-03-20 Thread Mariano Martinez Peck
On Mon, Mar 20, 2017 at 6:00 AM, Hernán Morales Durand < hernan.mora...@gmail.com> wrote: > Hi guys, > > I need to monitor Unix command execution inside the image. The commands > use heavy computation so they usually report progress in the terminal. > > Are OSProcess or OSSubprocess ready to do

Re: [Pharo-users] OSProcess or OSSubprocess?

2017-03-20 Thread Thierry Goubier
2017-03-20 10:00 GMT+01:00 Hernán Morales Durand : > Hi guys, > > I need to monitor Unix command execution inside the image. The commands > use heavy computation so they usually report progress in the terminal. > > Are OSProcess or OSSubprocess ready to do in-image

Re: [Pharo-users] Magritte extension

2017-03-20 Thread Otto Behrens
Hi, We also made several sub-classes of Magritte classes and / or components. This causes a lot of problems because when we upgraded Magritte it was difficult. It also shows that Magritte (the core classes) cannot change much because the impact will be high for most users of Magritte. This makes

Re: [Pharo-users] looking for tools to manually select ast nodes for metalinks

2017-03-20 Thread Guillermo Polito
Hi Steven, Yes there is! It's called "Suggestions". Suggestions is a project started some years ago by Gisela Decuzzi as an intern of RMoD. The main idea is to propose actions based on the AST corresponding to the cursor. This means that given the position of the cursor, suggestions already: -

Re: [Pharo-users] Magritte extension

2017-03-20 Thread Asbath Sama biyalou via Pharo-users
--- Begin Message --- Thanks Mariano for the ideas. I will put them into practice. Then All I have to do is to extends magritte classes to customize them. On 18/03/2017 18:40, Mariano Martinez Peck wrote: > Hi Asbath, > > Some answers below. But a general comment is that the typical case to >

[Pharo-users] OSProcess or OSSubprocess?

2017-03-20 Thread Hernán Morales Durand
Hi guys, I need to monitor Unix command execution inside the image. The commands use heavy computation so they usually report progress in the terminal. Are OSProcess or OSSubprocess ready to do in-image monitoring so I can watch the same terminal output in the Transcript updating for example

[Pharo-users] TextInspectIt missing in Pharo 6

2017-03-20 Thread Alistair Grant
Hi All, TextInspectit and TextDoIt>>rubActOnClick:for:in:editor:, which are part of the Text-Core package, are present in Pharo 5 but not in Pharo 6 (60442). All the other classes in Text-Core appear to be present (I haven't checked every method). Is this intentional, and if so, what is the