Re: [Pharo-users] A Management Software Building Library in Pharo

2016-07-12 Thread Dimitris Chloupis
https://kilon.gitbooks.io/ephestos/content/introduction/introduction.pier.html https://github.com/SquareBracketAssociates/PharoInProgress/tree/master/UnifiedFFI http://www.smalltalkhub.com/#!/~JNIPort/JNIPort https://github.com/bouraqadi/PharoJS On Tue, Jul 12, 2016 at 4:43 AM lionelakue wrot

Re: [Pharo-users] Image not starting

2016-07-12 Thread Mariano Martinez Peck
Hi Victor, In addition to what Christophe said, you can do the following: 0) Start the VM from command line as you already do: coral/pharo-vm/pharo coral/Pharo.image 1) get the pid of previous step 2) In the command line do: kill -SIGUSR1 XXX That should output the smalltalk stacktrace in t

Re: [Pharo-users] SQLite + Pharo

2016-07-12 Thread Esteban A. Maringolo
I have no experience with SQLite other than for testing it on Glorp and using it in Android (that provides a locking mechanism to queue requests), but according to the documentation it depends on how the SQLite connection is opened, if it is opened in "Serialized" mode [1], then it is safe to have

Re: [Pharo-users] Image not starting

2016-07-12 Thread Christophe Demarey
I would try to run pharo through strace (http://linux.die.net/man/1/strace ). This way, you will probably see a system call trying to write to a file in read-only mode. Hope this helps. Christophe > Le 12 juil. 2016 à 15:33, Valentin Ryckewaert > a écrit : >

[Pharo-users] Image not starting

2016-07-12 Thread Valentin Ryckewaert
Hello everyone, I'm currently working on the project file policy and I'm having a problem that I don't understand I import my code, configure my image as readOnly (Pharo won't try to write on changesFiles,source,image), set the folder of the image in readonly and try to open the image again a

Re: [Pharo-users] TextInputFieldModel selectAll, bug or feature ?

2016-07-12 Thread Nicolai Hess
2016-07-12 11:38 GMT+02:00 Marion Noirbent < ms.noirb...@etudiant.univ-lille1.fr>: > Hi, > > The message selectAll of TextInputFieldModel don't react like its super > class TextModel (selectAll is not define in TextInputFieldModel). > > Is that a bug or a feature ? > A bug. MorphicTextInputField

[Pharo-users] TextInputFieldModel selectAll, bug or feature ?

2016-07-12 Thread Marion Noirbent
Hi, The message selectAll of TextInputFieldModel don't react like its super class TextModel (selectAll is not define in TextInputFieldModel). Is that a bug or a feature ? Reproduce: |example| example := TextInputFieldModel new. example text: 'dfghjklm'. example openWithSpec . example selectAll

Re: [Pharo-users] SQLite + Pharo

2016-07-12 Thread Alistair Grant
On 12/07/2016 10:19 AM, "Hilaire" wrote: > > Hi, > > So what is it exactly regarding busy state of Sqlite? > The documentation is very short, to not say inexistant, on that specific > important matter. I also haven't read anything official, but my experience is that if the db is locked sqlite wai

Re: [Pharo-users] SQLite + Pharo

2016-07-12 Thread Hilaire
Hi, So what is it exactly regarding busy state of Sqlite? The documentation is very short, to not say inexistant, on that specific important matter. I am just learning statement, it is nice the Pharo Sqlite pacakge comes with it to avoid sql malware injection. Thanks Hilaire Le 10/07/2016 17: