Re: [Pharo-users] Tabular ODS import

2016-04-19 Thread stepharo
Le 19/4/16 16:41, Alistair Grant a écrit : Hi All, I've been working on the ODS importer for the Tabular package (http://ss3.gemtalksystems.com/ss/Tabular.html) and wanted to offer the opportunity for feedback before updating the code as it is likely to affect existing users. cool While the

Re: [Pharo-users] problem with Cairo library

2016-04-19 Thread Ben Coman
On Tue, Apr 19, 2016 at 12:59 PM, mathias arnaud nkeumo tsombeng wrote: > Hi All, > > I have implement a method that is indicating where external library > inthis case libpcap. When i try to inspect the method and having and > error : cannot locate cairo library please check if it is install on >

Re: [Pharo-users] [Bug] Sometime RPackage is desync with the system

2016-04-19 Thread Tudor Girba
Hi, I never encountered this. Do you happen to have a reproducible case? Or even an image that might be problematic? Cheers, Doru > On Apr 15, 2016, at 1:26 PM, Yann Dubois wrote: > > Hello, > > I loaded a repo', and later, I wanted to look my changes between my current > repo' and the re

Re: [Pharo-users] Make Window Not-Sizable

2016-04-19 Thread peaslee
Stephan Eggermont wrote > On 18/04/16 01:11, peaslee wrote: >> I have a subclass of ComposableModel that I would like to keep from being >> resized by the user. Is this possible? > > Sure. > > w := (MethodBrowser new > methods: Object methods; > openWithSpec) window. > w beUnresizeabl

Re: [Pharo-users] Make Window Not-Sizable

2016-04-19 Thread Stephan Eggermont
On 18/04/16 01:11, peaslee wrote: I have a subclass of ComposableModel that I would like to keep from being resized by the user. Is this possible? Sure. w := (MethodBrowser new methods: Object methods; openWithSpec) window. w beUnresizeable; removeCollapseBox; r

Re: [Pharo-users] problem with Cairo library

2016-04-19 Thread Stephan Eggermont
On 19/04/16 06:59, mathias arnaud nkeumo tsombeng wrote: I have implement a method that is indicating where external library inthis case libpcap. With libpcap you need privileges to access the network adapter to capture all traffic. You might want to be careful about security applications Step

[Pharo-users] Tabular ODS import

2016-04-19 Thread Alistair Grant
Hi All, I've been working on the ODS importer for the Tabular package (http://ss3.gemtalksystems.com/ss/Tabular.html) and wanted to offer the opportunity for feedback before updating the code as it is likely to affect existing users. While the class structure of Tabular is designed to support mul

Re: [Pharo-users] [Pharo-Users] Unzip a file

2016-04-19 Thread Ben Coman
I've not used any compression stuff in Pharo, but be aware that GZip (*.gz files) is not Zip (*.zip files). http://www.differencebetween.net/technology/difference-between-zip-and-gzip/ cheers -ben On Tue, Apr 19, 2016 at 8:48 PM, Valentin Ryckewaert wrote: > Hi, > > I'm trying to unzip a file I

Re: [Pharo-users] [Pharo-Users] Unzip a file

2016-04-19 Thread stepharo
Le 19/4/16 14:48, Valentin Ryckewaert a écrit : Hi, I'm trying to unzip a file I did this : GZipReadStream unzip:'aPath/myZip.zip' to: 'aPath/test' asFileReference It's not working and I don't really understand the doc of the method, why does unzip want as first argument the name of the file

Re: [Pharo-users] Hello World (found a RoelTyper Bug)

2016-04-19 Thread stepharo
I added you. Tell me if this is working. Le 19/4/16 02:41, Diego Orellana a écrit : Hello, My smalltalkhub user is dorellang. Cheers. 2016-04-15 17:27 GMT-03:00 stepharo >: Hello Diego Good initiative! RoelTyper is not a Moose project. It is just used in

Re: [Pharo-users] [Pharo-Users] Unzip a file

2016-04-19 Thread Cyril Ferlicot Delbecque
On 19/04/2016 14:48, Valentin Ryckewaert wrote: > Hi, > > I'm trying to unzip a file I did this : > GZipReadStream unzip:'aPath/myZip.zip' to: 'aPath/test' asFileReference > > It's not working and I don't really understand the doc of the method, > why does unzip want as first argument the name

[Pharo-users] [Pharo-Users] Unzip a file

2016-04-19 Thread Valentin Ryckewaert
Hi, I'm trying to unzip a file I did this : GZipReadStream unzip:'aPath/myZip.zip' to: 'aPath/test' asFileReference It's not working and I don't really understand the doc of the method, why does unzip want as first argument the name of the file only? Valentin

Re: [Pharo-users] problem with Cairo library

2016-04-19 Thread Damien Cassou
mathias arnaud nkeumo tsombeng writes: > Hi All, > > I have implement a method that is indicating where external library > inthis case libpcap. When i try to inspect the method and having and > error : cannot locate cairo library please check if it is install on > your system. > After installing

Re: [Pharo-users] problem with Cairo library

2016-04-19 Thread Peter Uhnák
Yes, check that you have 32bit (apt-get install libcairo2:i386) and that it's on one of those locations: '/usr/lib/i386-linux-gnu/libcairo.so.2' '/usr/lib32/libcairo.so.2' '/usr/lib/libcairo.so.2' On Tue, Apr 19, 2016 at 7:36 AM, Stephan Eggermont wrote: > On 19-04-16 06:59, mathias arnaud nkeu

Re: [Pharo-users] Hello World (found a RoelTyper Bug)

2016-04-19 Thread teso...@gmail.com
Hi Diego, Just yesterday I have added documentation explaining a bit how the process is working in my Type Inferer, it works in a different way than RoelTyper, but maybe you can get ideas of how enhance Roel's Any doubt please tell me. Pablo On Tue, Apr 19, 2016 at 2:41 AM, Diego Orellana