Re: [Pharo-project] Loading FFI into Pharo?

2010-10-21 Thread Friedrich Dominicus
"Schwab,Wilhelm K" writes: > I haven't had much trouble with it. You can look in the inbox for > Migrate (for how I load it) and the DolphinCompatibility package for > things that I have added to the ODBC support. Are there any usage examples for ODBC and Pharo or is it go out and find out you

Re: [Pharo-project] Morphic application to production questions

2010-10-21 Thread Mariano Martinez Peck
check #disableProgrammerFacilities On Fri, Oct 22, 2010 at 12:28 AM, Esteban Lorenzano wrote: > I need to disable the world menu too > > > On 2010-10-21 19:20:48 -0300, Esteban Lorenzano > said: > > Hi, >> Finally I managed to get one application made with morphic. I developed >> the app inside

[Pharo-project] Morphic application to production questions

2010-10-21 Thread Torsten Bergmann
Dont know for the morphic stuff ... but I started an ImageLocker package on squeaksource/PharoGoodies. There are also some tips on deployment like disabling sources/changes file. See http://squeakvm.org/win32/custom.html Regarding Cmd+. there is a setting #cmdDotEnabled Be warned: If you disabl

[Pharo-project] Pharo problem with Windows 7

2010-10-21 Thread Torsten Bergmann
What is the value of "f" (the filename) when you hit Alt+. ? Where did you install? Maybe it is a problem with the security to not being able to write under c:\Program Files\...? Not able to test it here this week but did you try to install Pharo under for instance c:\foo\ as an alternative an

Re: [Pharo-project] What is a primitive method?

2010-10-21 Thread Eliot Miranda
Hi Oscar, see Object class>>whatIsAPrimitive. Further, most of the primitive methods you're seeing are methods that answer self, nil, true false or an inst var. See the difference between these: SystemNavigation new browseAllSelect: [:m| m isQuick] SystemNavigation new browseAllSelect: [:m

Re: [Pharo-project] Morphic application to production questions

2010-10-21 Thread Esteban Lorenzano
I need to disable the world menu too On 2010-10-21 19:20:48 -0300, Esteban Lorenzano said: Hi, Finally I managed to get one application made with morphic. I developed the app inside a StandardWindow, and that's ok, but now I want to move it to production, so I need to do some tasks, some of

[Pharo-project] Morphic application to production questions

2010-10-21 Thread Esteban Lorenzano
Hi, Finally I managed to get one application made with morphic. I developed the app inside a StandardWindow, and that's ok, but now I want to move it to production, so I need to do some tasks, some of them easy to solve, and some of them not (at least for me). This is what I think is needed:

[Pharo-project] Pharocasts: Install Pharo on OSX

2010-10-21 Thread laurent laffont
Hi, The first screencast with my new toolbox and the first one with my voice (don't hesitate to bash me :) and in HD format. So finally the "Install Pharo on OSX" screencast is here: http://www.pharocasts.com/2010/10/install-pharo-on-osx.html Cheers, Laurent Laffont Pharo Smalltalk Screencasts

Re: [Pharo-project] Pharo problem with Windows 7

2010-10-21 Thread Alexandre Bergel
This is really strange. We've tried for a while to save a rep on a local repository, on squeaksource, no success... Anyone experienced this already? Cheers, Alexandre On 21 Oct 2010, at 17:30, Christian Eduardo Palomares Peralta wrote: > Hi everyone > > I'm new on Pharo, i downloaded pharo f

[Pharo-project] Pharo problem with Windows 7

2010-10-21 Thread Christian Eduardo Palomares Peralta
Hi everyone I'm new on Pharo, i downloaded pharo for Windows ( http://pharo-project.org/pharo-download), everything works fine until i try to save a package in the Monticello Browser, the "Snapshotting Methods" takes age. Several minutes pass and nothing is saved. Selecting a local repository does

Re: [Pharo-project] What is a primitive method?

2010-10-21 Thread Oscar E A Callau
On 21-10-2010, at 13:18, Oscar E A Callau wrote: > > Hi all, > > I have a (basic) question: > > What is a primitive method? > > In pharo 1.1.1, we have CompiledMethod>>primitive that basically return: > > 0 if the method is not a primitive method >> 0 otherwise "This must be, as follow

[Pharo-project] What is a primitive method?

2010-10-21 Thread Oscar E A Callau
Hi all, I have a (basic) question: What is a primitive method? In pharo 1.1.1, we have CompiledMethod>>primitive that basically return: 0 if the method is not a primitive method >0 otherwise But if you execute this on i.e. Number>>isNumber or Morph>>#model compiled methods you get that

Re: [Pharo-project] Loading FFI into Pharo?

2010-10-21 Thread Schwab,Wilhelm K
I haven't had much trouble with it. You can look in the inbox for Migrate (for how I load it) and the DolphinCompatibility package for things that I have added to the ODBC support. From: pharo-project-boun...@lists.gforge.inria.fr [pharo-project-boun.

Re: [Pharo-project] wrong network packages dependencies

2010-10-21 Thread Pavel Krivanek
issue http://code.google.com/p/pharo/issues/detail?id=3133 On Thu, Oct 21, 2010 at 3:34 PM, Pavel Krivanek wrote: > Hi, > > This list of dependencies makes Network package dependent on Morphic > and other high-level packages. > > #('TextMessageLink emphasizeScanner: calls: textColor: ' > 'HTTPSoc

[Pharo-project] wrong network packages dependencies

2010-10-21 Thread Pavel Krivanek
Hi, This list of dependencies makes Network package dependent on Morphic and other high-level packages. #('TextMessageLink emphasizeScanner: calls: textColor: ' 'HTTPSocket class httpJpeg: calls: nextImage ' 'HTTPSocket class httpShowPage: calls: openLabel: ' 'HTTPSocket class httpShowChunk: call

Re: [Pharo-project] Loading FFI into Pharo?

2010-10-21 Thread Friedrich Dominicus
Friedrich Dominicus writes: > In the end I'm trying to get ODBC running Pharo 1.1. I checked the docs > and this should work: > > ScriptLoader loadFFI. > > for loading the FFI stuff. If I try that I get the message that this > selector is unkwown. What am I supposed to do to get it known? Ok the

Re: [Pharo-project] Looking for real-world Magma application

2010-10-21 Thread Dennis Schetinin
Is your database abstraction layer description available somewhere? Or it's a secret weapon? 2010/10/21 Johan Brichau > Hi Igor, > > I guess that you are referring to us ;-) > > We indeed switched from Magma to GOODS and now to Gemstone, mainly because > of performance issues. > To remain db-ind

[Pharo-project] Loading FFI into Pharo?

2010-10-21 Thread Friedrich Dominicus
In the end I'm trying to get ODBC running Pharo 1.1. I checked the docs and this should work: ScriptLoader loadFFI. for loading the FFI stuff. If I try that I get the message that this selector is unkwown. What am I supposed to do to get it known? Regards Friedrich _

[Pharo-project] Issue 3130: MethodReference >> #isLocalSelector should not be part of Monticello package

2010-10-21 Thread Pavel Krivanek
This fix makes PackageInfo independent on Monticello. See http://code.google.com/p/pharo/issues/detail?id=3130 -- Pavel ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-proje

Re: [Pharo-project] ^ character in ubuntu

2010-10-21 Thread Roberto Sapiain
Thanks Gaston. that worked as well in latin-american or spanish keyboard layout (since to access the 'hat' we need to use Alt-Graphic key and another one). :) 2010/10/21 Gastón Dall' Oglio > Hello. > > I press the key twice "^" and then just enter it in the editor... I think > this is the cor

Re: [Pharo-project] [Pharo-users] [ANN] Continue working in SimpleLogger

2010-10-21 Thread Germán Arduino
Hi Stef: 2010/10/21 Stéphane Ducasse : > and another guy will come and repeat again the same > sounds to loop here... > My point is that why do we extend something that apparently is just done for > not been extended > else it will be complex and somebody else will restart. > Yes, I understa

[Pharo-project] [update 1.2] #12203

2010-10-21 Thread Stéphane Ducasse
12203 - - Issue 654:inconsistent highlight color. Thanks Alain Plantec - Issue 3101: Wrong Monticello packages initialization order. Thanks Pavel Krivanek ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inr

Re: [Pharo-project] [Pharo-users] [ANN] Continue working in SimpleLogger

2010-10-21 Thread Stéphane Ducasse
and another guy will come and repeat again the same sounds to loop here... My point is that why do we extend something that apparently is just done for not been extended else it will be complex and somebody else will restart. Because if toothpick would have been called simpleLogger then may b

Re: [Pharo-project] [Pharo-users] [ANN] Continue working in SimpleLogger

2010-10-21 Thread Germán Arduino
This was my point when I wrote SimpleLogger, not time to understand nor port other framework and needed simething really basic. I documented it on Pharo book chapter, we should extend now such chapter with the doc of new features. Cheers. 2010/10/21 Mariano Martinez Peck : > > > On Thu, Oct 21,

Re: [Pharo-project] Looking for real-world Magma application

2010-10-21 Thread Igor Stasenko
On 21 October 2010 10:26, Johan Brichau wrote: > Hi Igor, > > I guess that you are referring to us ;-) > > We indeed switched from Magma to GOODS and now to Gemstone, mainly because of > performance issues. > To remain db-independent, we have created a database abstraction layer that > can be us

Re: [Pharo-project] [update 1.2] #12201

2010-10-21 Thread Stéphane Ducasse
Excellent! Good infrastructure will make us all much faster. I like the motto of marcus: fix what we use daily to get faster. On Oct 21, 2010, at 9:40 AM, Fernando olivero wrote: > Great work Alain!Now porting my icon importer is going to be easier! > The idea is to use the Gaucho icon importer

Re: [Pharo-project] [Pharo-users] [ANN] Continue working in SimpleLogger

2010-10-21 Thread Stéphane Ducasse
come on tooth pick has even documentation and it does not look complex. redoing all over things does not reduce bugs and http://www.metaprog.com/Toothpick/docs/quickstart.html It looks clean and simple. Stef On Oct 21, 2010, at 9:51 AM, Mariano Martinez Peck wrote: > > > On Thu, Oct 21, 20

Re: [Pharo-project] Faster access for refactoring commands

2010-10-21 Thread Martin Dias
Ok, I will see how does it work. On Wed, Oct 20, 2010 at 3:46 PM, Stéphane Ducasse wrote: > > On Oct 20, 2010, at 1:32 PM, Martin Dias wrote: > >> Hi, >> >> I really like to use refactoring commands in OmniBrowser, but I would like >> to access them faster. I think that it would be nice to hav

Re: [Pharo-project] [Pharo-users] [ANN] Continue working in SimpleLogger

2010-10-21 Thread Mariano Martinez Peck
On Thu, Oct 21, 2010 at 7:24 AM, Stéphane Ducasse wrote: > why don;t you look look at toothpick? > > Because I don't have time to learn a new logging framework, nor to make it work on Pharo. I don't plan to be part of a logging framework. I just needed something really EASY for my projects. So, I

Re: [Pharo-project] [ANN] Continue working in SimpleLogger

2010-10-21 Thread Mariano Martinez Peck
On Thu, Oct 21, 2010 at 3:22 AM, Yanni Chiu wrote: > On 20/10/10 9:36 AM, Mariano Martinez Peck wrote: > >> What I did basically is to define SimpleLogger like the public API. But >> then, this class delegates to a LoggerStrategy. I created the following >> implementations: TranscriptLoggerStrate

Re: [Pharo-project] [update 1.2] #12201

2010-10-21 Thread Fernando olivero
Great work Alain!Now porting my icon importer is going to be easier! The idea is to use the Gaucho icon importer to be able to choose amongst different external icon families , greatly improving the look and fell of the tools. Having a single entry point goes into this direction! I will create a

Re: [Pharo-project] [squeak-dev] non-modal FillInTheBlankMorph code?

2010-10-21 Thread Fernando olivero
I can do one using EntryFieldMorph in 5 minutes. EntryFieldMorph>>authoringPrototype " self authoringPrototype " | e | e := EntryFieldMorph new. e position: 8...@200. e width: 400. e initialContents: 'Fill in the blank'. e o

Re: [Pharo-project] Looking for real-world Magma application

2010-10-21 Thread Johan Brichau
Hi Igor, I guess that you are referring to us ;-) We indeed switched from Magma to GOODS and now to Gemstone, mainly because of performance issues. To remain db-independent, we have created a database abstraction layer that can be used with any of the aforementioned databases. We are currently