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

2010-10-21 Thread Igor Stasenko
Hello all, sorry for cross-posting. :) I'd like to ask you, if anyone could share either an image or installation with application, which using Magma OODB. I'd like to use it test how changing different aspects of Magma internals could affect the performance. There's many tricks, which is known

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

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

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

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

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 ya...@rogers.com 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:

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 stephane.duca...@inria.fr 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

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 stephane.duca...@inria.fr 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

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, 2010

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] Looking for real-world Magma application

2010-10-21 Thread Igor Stasenko
On 21 October 2010 10:26, Johan Brichau jo...@inceptive.be 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

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 marianop...@gmail.com:

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

[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

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 gaston.dallog...@gmail.com Hello. I press the key twice ^ and then just enter it in the editor... I

[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

[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

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 jo...@inceptive.be 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

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

2010-10-21 Thread Friedrich Dominicus
Friedrich Dominicus fr...@q-software-solutions.de 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

[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:

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 pavel.kriva...@gmail.com wrote: Hi, This list of dependencies makes Network package dependent on Morphic and other high-level packages. #('TextMessageLink emphasizeScanner: calls:

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] 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 CompiledMethodprimitive that basically return: 0 if the method is not a primitive method 0 otherwise But if you execute this on i.e. NumberisNumber or Morph#model compiled methods you get that these

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 CompiledMethodprimitive that basically return: 0 if the method is not a primitive method 0 otherwise This must be, as follow 0 if the

[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] 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 for

[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:

[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:

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 esteba...@gmail.com 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

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

2010-10-21 Thread Eliot Miranda
Hi Oscar, see Object classwhatIsAPrimitive. 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|

[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 and

[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

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

2010-10-21 Thread Friedrich Dominicus
Schwab,Wilhelm K bsch...@anest.ufl.edu 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