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

2016-04-20 Thread Stephan Eggermont
On 20/04/16 03:33, peaslee wrote: 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) wi

[Pharo-users] [Pharo5] Status: 23 open issues

2016-04-20 Thread marcus . denker
Hi, There are now 23 open issues tagged for Milestone “Pharo5”. https://pharo.fogbugz.com/f/filters/125/5-0-All The plan is to release in 2 weeks. Please check if - all these issues are real show-stoppers. The idea is that e.g. everything that was already a problem in Pharo4 can not b

[Pharo-users] Using FFI: MessagetNotUnderstood:InterfaceDev class>>fficall:module

2016-04-20 Thread mathias arnaud nkeumo tsombeng
Dear All, Am try to call a libpcap library using FFI in pharo and am getting the following error: MessagetNotUnderstood:InterfaceDev class>>fficall:module Am working with pharo 4 also I have issue with pharo 5 on unbuntu after runing the pharo launher i create an image of pharo 5 but when i tr

Re: [Pharo-users] Using FFI: MessagetNotUnderstood:InterfaceDev class>>fficall:module

2016-04-20 Thread Esteban Lorenzano
> On 20 Apr 2016, at 10:37, mathias arnaud nkeumo tsombeng > wrote: > > Dear All, > > Am try to call a libpcap library using FFI in pharo and am getting the > following error: > MessagetNotUnderstood:InterfaceDev class>>fficall:module > > Am working with pharo 4 ffiCall:module: is UFFI, then

Re: [Pharo-users] Using FFI: MessagetNotUnderstood:InterfaceDev class>>fficall:module

2016-04-20 Thread Esteban Lorenzano
> On 20 Apr 2016, at 12:34, Esteban Lorenzano wrote: > > >> On 20 Apr 2016, at 10:37, mathias arnaud nkeumo tsombeng >> wrote: >> >> Dear All, >> >> Am try to call a libpcap library using FFI in pharo and am getting the >> following error: >> MessagetNotUnderstood:InterfaceDev class>>ffical

Re: [Pharo-users] problem with Cairo library

2016-04-20 Thread Arnaud
Hi Damien, Thanks the issue is solve with the link. Best Regards Arnaud Tsombeng -- View this message in context: http://forum.world.st/problem-with-Cairo-library-tp4890741p4890974.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

[Pharo-users] [Pharo-Users] Symbolic links

2016-04-20 Thread Valentin Ryckewaert
Hello everyone, does someone know a way to get the real path of a symlink? I explain: -I have a file '/home/aPath/test.txt' -I have a symlink '/home/aPath/link' pointing on test.txt I would like to see if the symlink really point on the file and may be, get the real path of it, is there a way to

Re: [Pharo-users] [Pharo-Users] Symbolic links

2016-04-20 Thread Damien Pollet
Specifically, there is DiskStore>>isSymlink: but the FilePlugin doesn't seem to have a primitive for the readlink(2) function of the libc On 20 April 2016 at 15:53, Valentin Ryckewaert < valentin.ryckewa...@gmail.com> wrote: > Hello everyone, > > does someone know a way to get the real path of a

[Pharo-users] [Pillar] Pillar 3.0.0 release

2016-04-20 Thread Thibault ARLOING
Hi everybody, I'm happy to announce the latest release of Pillar. This release has been possible because of the hard work of Damien Cassou, Cyril Ferlicot, Damien Pollet, Stephan Eggermont, Yann Dubois, Thibault Arloing and Lukas Komarek. What did it bring and what are the largest changes ?

Re: [Pharo-users] [Pharo-Users] Symbolic links

2016-04-20 Thread Damien Cassou
Damien Pollet writes: > Specifically, there is DiskStore>>isSymlink: but the FilePlugin doesn't > seem to have a primitive for the readlink(2) function of the libc I guess this is work for Mariano then :-) -- Damien Cassou http://damiencassou.seasidehosting.st "Success is the ability to go fr

Re: [Pharo-users] [Pharo-Users] Symbolic links

2016-04-20 Thread Esteban Lorenzano
it has it. this is how is done in mac: *isSymlink= [[fileAttributes objectForKey: NSFileType] isEqualToString: NSFileTypeSymbolicLink] ? 1 : 0; and this how is done in linux: stat(unixPath, &statBuf) && lstat(unixPath, &statBuf) ... *isSymlink = S_ISLNK(statBuf.st_mode); … and in w

[Pharo-users] ensureCreateFile

2016-04-20 Thread Valentin Ryckewaert
Hi, I would like to have your opinion about what you want ensureCreateFile to do. According to me ensureCreateFile should do the same thing as ensureCreateDirectory + create the file in the last directory given but in its implementation if the parents of this file doesn't exist we get an Exception

Re: [Pharo-users] final version of pharo syntax cheat page

2016-04-20 Thread stepharo
Thank you all for the great feedback you gave me. http://files.pharo.org/media/pharoCheatSheet.pdf

Re: [Pharo-users] [Pharo-Users] Symbolic links

2016-04-20 Thread Damien Cassou
Esteban Lorenzano writes: > it has it. > this is how is done in mac: > > *isSymlink= [[fileAttributes objectForKey: NSFileType] > isEqualToString: NSFileTypeSymbolicLink] ? 1 : 0; > > and this how is done in linux: > > stat(unixPath, &statBuf) && lstat(unixPath, &statBuf) > ... > *is

Re: [Pharo-users] ensureCreateFile

2016-04-20 Thread Denis Kudriashov
I would call error 2016-04-20 17:13 GMT+02:00 Valentin Ryckewaert < valentin.ryckewa...@gmail.com>: > Hi, > > I would like to have your opinion about what you want ensureCreateFile to > do. > According to me ensureCreateFile should do the same thing as > ensureCreateDirectory + create the file in

Re: [Pharo-users] [Pharo-Users] Symbolic links

2016-04-20 Thread Esteban Lorenzano
yes it is. but you can create an FFI function to http://linux.die.net/man/2/readlink to get that :) Esteban > On 20 Apr 2016, at 18:11, Damien Cassou wrote: > > Esteban Lorenzano writes: > >> it has it. >> this is how is done in mac: >> >> *isSymlink= [[fileAttributes objectForKey:

Re: [Pharo-users] Tabular ODS import

2016-04-20 Thread Alistair Grant
Hi Stepharo, Thanks very much for your feedback. On Wed, Apr 20, 2016 at 08:24:55AM +0200, stepharo wrote: > 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

Re: [Pharo-users] Tabular ODS import

2016-04-20 Thread Alistair Grant
And to answer my own question... On Wed, Apr 20, 2016 at 10:47:46PM +0200, Alistair Grant wrote: > Hi Stepharo, > > Thanks very much for your feedback. > ... > > So, time to learn more about Monticello... Reading the Updated PbE is > helpful, however I did notice one thing which doesn't match m

Re: [Pharo-users] Tabular ODS import

2016-04-20 Thread Cyril Ferlicot D.
Le 20/04/2016 22:47, Alistair Grant a écrit : Hi, > Thanks, I'll switch to XMLParser and XMLWriter. > > I've also realised that I built all my changes on an older version of > Tabular. :-( > > So, time to learn more about Monticello... Reading the Updated PbE is > helpful, however I did notice

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

2016-04-20 Thread Diego Orellana
Hello, Stephan. I uploaded the test and the fix (actually a workaround to prevent the method from exploding a throwing an error; basically the type information from block temporaries is omitted). So it works ok so far :) Cheers, Diego. 2016-04-19 10:01 GMT-03:00 stepharo : > I added you. > Tel

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

2016-04-20 Thread Diego Orellana
Hi Pablo, Well, I tried to load the packages from your repositories, but I couldn't. First I tried to load all the packages in the repository via: Gofer it url: 'http://smalltalkhub.com/mc/pabloTesone/J2Inferer/main'; package: 'J2Inferer'; package: 'J2Profiler'; package: 'ConfigurationOfJ2Inferer

Re: [Pharo-users] [Pharo-Users] Symbolic links

2016-04-20 Thread p...@highoctane.be
In Windows, there are junctions, which are more or less equivalent. https://msdn.microsoft.com/en-us/library/windows/desktop/aa365006(v=vs.85).aspx https://msdn.microsoft.com/en-us/library/windows/desktop/aa365503(v=vs.85).aspx Phil On Wed, Apr 20, 2016 at 6:23 PM, Esteban Lorenzano wrote: >

Re: [Pharo-users] Tabular ODS import

2016-04-20 Thread Alistair Grant
On Wed, Apr 20, 2016 at 11:43:19PM +0200, Cyril Ferlicot D. wrote: > Le 20/04/2016 22:47, Alistair Grant a écrit : > > So, time to learn more about Monticello... Reading the Updated PbE is > > helpful, however I did notice one thing which doesn't match my > > experience. On page 150 it is discuss