[Pharo-project] UI Painter for Pharo videos

2011-01-06 Thread Geert Claes
Pretty cool videos of the UI Painter in Pharo by NullPointer: http://www.youtube.com/user/nullPointerSM http://www.youtube.com/user/nullPointerSM -- View this message in context: http://forum.world.st/UI-Painter-for-Pharo-videos-tp3177000p3177000.html Sent from the Pharo Smalltalk mailing

Re: [Pharo-project] Issue 3508 in pharo: cleanUpForProduction should really unload 'Graphics-Resources'

2011-01-06 Thread pharo
Updates: Status: Comment Comment #2 on issue 3508 by adrian.lienhard: cleanUpForProduction should really unload 'Graphics-Resources' http://code.google.com/p/pharo/issues/detail?id=3508 No! :) This is on purpose. There is no class category GraphicsResources but there are class

Re: [Pharo-project] Origins [poll]

2011-01-06 Thread Adrian Lienhard
On Jan 6, 2011, at 00:37 , csra...@bol.com.br wrote: Miguel, You rather create a wiki page (or edit the one Stef intends to put our pictures in a near future ;-) BTW, we already have a page with pictures: http://pharo-project.org/community/contributors. Certainly there are people

Re: [Pharo-project] Issue 3507 in pharo: SUnitUnloader unloadTestPackages is wrong and outdated

2011-01-06 Thread Adrian Lienhard
Hi Mariano, Nice to see you working on this (sorry, I still didn't get around to do the cleanUp: refactoring (if you like to do this, please go ahead)). Regarding your extension of #unloadTestPackages I have the following remark: when I implemented this I took care to make all remaining

[Pharo-project] Issue 3507 in pharo: SUnitUnloader unloadTestPackages is wrong and outdated

2011-01-06 Thread Torsten Bergmann
I have the following remark: when I implemented this I took care to make all remaining packages non-dirty. For example, you unload Regex-Tests-Core and this will change the contents of the Regex package and hence make it dirty. To avoid this, I moved tests into their own package – either into

[Pharo-project] James Robertosn's Pharo videos added to website

2011-01-06 Thread Mariano Martinez Peck
In: http://www.pharo-project.org/documentation/screencastshttp://www.pharo-project.org/documentation/screencasts cheers mariano

Re: [Pharo-project] [ANN] Amazon AWS S3 Client

2011-01-06 Thread Marcus Denker
(client := ZnAWSS3Client new) accessKeyId: '2ZGSSBGBHQGJ9VV5N441'; secretAccessKey: 'OtxrzxIsfpFjA7SwPzILwy8Bw21TLhquhboDYROV'; checkIntegrity: true. client buckets. client keysIn: 'my-bucket'. client keysIn: 'my-bucket' query: (Dictionary with: 'prefix'-'my-').

[Pharo-project] [Hudson] Status

2011-01-06 Thread Marcus Denker
Hudson status: - Builds are working again since tuesday - Hudson will send a mai to this list when the build fails (but not when the tests fail) - We will experiment with a mac and windows builder slave soon (next week, I think) -- Marcus Denker --

Re: [Pharo-project] Issue 3507 in pharo: SUnitUnloader unloadTestPackages is wrong and outdated

2011-01-06 Thread Adrian Lienhard
Hi Torsten, Sorry, you are right. I apparently checked this in an 1.1.1 image (and I forgot that you have refactored Regex). Splitting the package up into -Core -Help and -Tests is a good solution indeed. So the change of #unloadTestPackages proposed by Mariano makes perfect sense. Cheers,

Re: [Pharo-project] [ANN] Amazon AWS S3 Client

2011-01-06 Thread Noury Bouraqadi
That's great! Noury On 5 janv. 2011, at 21:36, Sven Van Caekenberghe wrote: Hi All, I implemented and published a Pharo client for Amazon's AWS S3 service called ZnAWSS3Client. For some background, see http://en.wikipedia.org/wiki/Amazon_S3 or http://aws.amazon.com/s3. The code can

Re: [Pharo-project] Another Design Question - SOAP and WSDL - Subclass or not XMLElement

2011-01-06 Thread Cédrick Béler
But there come the design question. To me SOAP elements are particular XMLDocument and XMLElement. Indeed, I found the interfaces of java 6 which was quite what I have in mind [1]. I think the main problem (to me) is that XMLElement in Smalltalk has an inst var containing all children

Re: [Pharo-project] why (MCPackage named: 'NonExistenPackage') unload. doesnt fail ?

2011-01-06 Thread Stéphane Ducasse
Do we want that? I am finding a lot of outdated code that uses code like that and it doesnt fail, but still doesnt unload the package. For example, cleanUpForRelease does a (MCPackage named: 'HelpSystem') unload. and that package doesnt exist anymore since it was split

Re: [Pharo-project] [Hudson] Status

2011-01-06 Thread Esteban Lorenzano
cool, I'll try to have my vm building scripts for next week, then :) Cheers, Esteban El 06/01/2011, a las 6:56a.m., Marcus Denker escribió: Hudson status: - Builds are working again since tuesday - Hudson will send a mai to this list when the build fails (but not when the

Re: [Pharo-project] Origins [poll]

2011-01-06 Thread Janko Mivšek
Nice initiative Miguel, here is my entry: Janko Mivšek | Slovenian | Zdravo | Slovenia | Ljubljana | web apps On 05. 01. 2011 22:38, Miguel Cobá wrote: It is a new year and I thought that it would be good to know from which part of the world each person in this list is (or was born), so we can

Re: [Pharo-project] Origins [poll]

2011-01-06 Thread csrabak
Miguel, What I'm was thinking when pointing out that is that otherwise the info about Pharoers will be scattered (I'll refrain of a more strong word) in a mail list archive whose value will not accrued in full. Your point about wikis being boring and entrance price higher, I was not thinking

Re: [Pharo-project] controlling the size of a morph embedded in a morphtreemorph

2011-01-06 Thread Tudor Girba
Thanks, Alain. I would really appreciate your help. Cheers, Doru On 6 Jan 2011, at 08:14, Alain Plantec wrote: Hi Doru, I know it's a problem with morphtreemorph. I will have a look. Chers Alain Hi (Alain :)), I am trying to embed morphs into a MorphTreeMorph, but I cannot seem to be

Re: [Pharo-project] why (MCPackage named: 'NonExistenPackage') unload. doesnt fail ?

2011-01-06 Thread Schwab,Wilhelm K
+1. Someone wanting something that just runs can/should do something like (MCPackage named: 'HelpSystem' ifNone:'[ DeafObject current ]) unload Another approach is to trap and log errors so that a lengthy build process completes and then clearly shows where it encountered problems. Bill

Re: [Pharo-project] why (MCPackage named: 'NonExistenPackage') unload. doesnt fail ?

2011-01-06 Thread Mariano Martinez Peck
On Thu, Jan 6, 2011 at 3:32 PM, Schwab,Wilhelm K bsch...@anest.ufl.eduwrote: +1. Someone wanting something that just runs can/should do something like (MCPackage named: 'HelpSystem' ifNone:'[ DeafObject current ]) unload Exactly. Now...I don't know the impact of doing this change. Maybe

Re: [Pharo-project] Origins [poll]

2011-01-06 Thread Stéphane Ducasse
Name|Native Language|Greeting in native lang|Born country|Writing from Stéphane Ducasse | French | Salut | France | Lille

Re: [Pharo-project] Origins [poll]

2011-01-06 Thread Mariano Martinez Peck
Mariano Martinez Peck | Spanish | Hola | Argentina | Douai, France | fly fishing? cheers mariano On Thu, Jan 6, 2011 at 4:43 PM, Stéphane Ducasse stephane.duca...@inria.frwrote: Name|Native Language|Greeting in native lang|Born country|Writing from Stéphane Ducasse | French | Salut |

Re: [Pharo-project] Another Design Question - SOAP and WSDL - Subclass or not XMLElement

2011-01-06 Thread jaayer
On Wed, 05 Jan 2011 07:25:24 -0800 Cédrick Béler wrote Hi there, While doing my experiments with SOAP and friends, I've come to the conclusion, I'll redo mainly SOAP because previous implementation is linked to an independent XML representation. I find XMLSupport very nice in

Re: [Pharo-project] Origins [poll]

2011-01-06 Thread Miguel Cobá
El jue, 06-01-2011 a las 09:13 +0100, Adrian Lienhard escribió: On Jan 6, 2011, at 00:37 , csra...@bol.com.br wrote: Miguel, You rather create a wiki page (or edit the one Stef intends to put our pictures in a near future ;-) BTW, we already have a page with pictures:

Re: [Pharo-project] Issue 3507 in pharo: SUnitUnloader unloadTestPackages is wrong and outdated

2011-01-06 Thread Mariano Martinez Peck
On Thu, Jan 6, 2011 at 11:00 AM, Adrian Lienhard a...@netstyle.ch wrote: Hi Torsten, Sorry, you are right. I apparently checked this in an 1.1.1 image (and I forgot that you have refactored Regex). Splitting the package up into -Core -Help and -Tests is a good solution indeed. So the

Re: [Pharo-project] Issue 3508 in pharo: cleanUpForProduction should really unload 'Graphics-Resources'

2011-01-06 Thread pharo
Comment #3 on issue 3508 by marianopeck: cleanUpForProduction should really unload 'Graphics-Resources' http://code.google.com/p/pharo/issues/detail?id=3508 Hi Adrian. Are you checking in Pharo1.2 ? Because I don't see any package GraphicsResources and in addition, if I browse

Re: [Pharo-project] Origins [poll]

2011-01-06 Thread Bernardo Ezequiel Contreras
Name|Native Language|Greeting in native lang|Born country|Writing from Bernardo Contreras | Spanish | Hola | Argentina | Buenos Aires, Argentina cheers

Re: [Pharo-project] why (MCPackage named: 'NonExistenPackage') unload. doesnt fail ?

2011-01-06 Thread Mariano Martinez Peck
On Thu, Jan 6, 2011 at 3:46 PM, Mariano Martinez Peck marianop...@gmail.com wrote: On Thu, Jan 6, 2011 at 3:32 PM, Schwab,Wilhelm K bsch...@anest.ufl.eduwrote: +1. Someone wanting something that just runs can/should do something like (MCPackage named: 'HelpSystem' ifNone:'[ DeafObject

Re: [Pharo-project] Monticello and source origin

2011-01-06 Thread Mariano Martinez Peck
That's true. It should be possible to do..maybe you need to: - Modify the commti so that in add the first line (like the fileOut does) with such info into the source.st - Modify squeaksource or whatever so that it lets you unzip the mzc, open the source.st and take the first line or something

Re: [Pharo-project] Origins [poll]

2011-01-06 Thread Alexandre Bergel
It would be cool to know what are your key interests Alexandre On 6 Jan 2011, at 14:04, Bernardo Ezequiel Contreras wrote: Name|Native Language|Greeting in native lang|Born country|Writing from Bernardo Contreras | Spanish | Hola | Argentina | Buenos Aires, Argentina cheers --

Re: [Pharo-project] Monticello and source origin

2011-01-06 Thread Stéphane Ducasse
yes more meta data would help Stef On Jan 5, 2011, at 9:06 AM, Torsten Bergmann wrote: When I create a changeset and file it out I can see the image (Pharo/Squeak and version) that was used to create the code in the header. Currently when I find an MCZ somewhere on the web I'm not

Re: [Pharo-project] Origins [poll]

2011-01-06 Thread Bernardo Ezequiel Contreras
Name|Native Language|Greeting in native lang|Born country|Writing from | Interests Bernardo Contreras | Spanish | Hola | Argentina | Buenos Aires, Argentina | guitar?, smalltalk, lisp, emacs, domain driven design cheers

Re: [Pharo-project] Issue 3507 in pharo: SUnitUnloader unloadTestPackages is wrong and outdated

2011-01-06 Thread Adrian Lienhard
On Jan 6, 2011, at 17:54 , Mariano Martinez Peck wrote: Thanks for the remark anyway Adrian. Now, after evaluating the unloads, I open a Monticello Browser and I don't see any package as dirty. However, this is not really confident. Sometimes Monticello shows a package not direty, but just

Re: [Pharo-project] Issue 3507 in pharo: SUnitUnloader unloadTestPackages is wrong and outdated

2011-01-06 Thread pharo
Updates: Cc: stephane.ducasse Comment #2 on issue 3507 by marianopeck: SUnitUnloader unloadTestPackages is wrong and outdated http://code.google.com/p/pharo/issues/detail?id=3507 In inbox Name: SLICE-Issue-3507-unloadTestPackagesIsOutdated-MarianoMartinezPeck.1 Author:

Re: [Pharo-project] Issue 3508 in pharo: cleanUpForProduction should really unload 'Graphics-Resources'

2011-01-06 Thread pharo
Updates: Status: Fixed Comment #4 on issue 3508 by adrian.lienhard: cleanUpForProduction should really unload 'Graphics-Resources' http://code.google.com/p/pharo/issues/detail?id=3508 Hi Mariano. Here too, I checked with a 1.1.1 image. In 1.2 also the graphics package structure was

[Pharo-project] Issue 3509 in pharo: Multi-part MIME support for MailMessage

2011-01-06 Thread pharo
Status: New Owner: New issue 3509 by tony.fleig: Multi-part MIME support for MailMessage http://code.google.com/p/pharo/issues/detail?id=3509 I have added multi-part MIME support to MailMessage. The package will be in PharoInbox as soon as I finish labeling the slice with the issue

Re: [Pharo-project] Issue 3508 in pharo: cleanUpForProduction should really unload 'Graphics-Resources'

2011-01-06 Thread pharo
Comment #5 on issue 3508 by marianopeck: cleanUpForProduction should really unload 'Graphics-Resources' http://code.google.com/p/pharo/issues/detail?id=3508 Thanks adrian for the warning :) In inbox: Name:

Re: [Pharo-project] Issue 3509 in pharo: Multi-part MIME support for MailMessage

2011-01-06 Thread pharo
Comment #1 on issue 3509 by tony.fleig: Multi-part MIME support for MailMessage http://code.google.com/p/pharo/issues/detail?id=3509 Published to PharoInbox.

[Pharo-project] Issue 3510 in pharo: HistoryNode problem with two consecutives closeGroup

2011-01-06 Thread pharo
Status: Accepted Owner: aplantec Labels: Milestone-1.2 New issue 3510 by aplantec: HistoryNode problem with two consecutives closeGroup http://code.google.com/p/pharo/issues/detail?id=3510 The second closeGroup is not done

Re: [Pharo-project] Issue 3510 in pharo: HistoryNode problem with two consecutives closeGroup

2011-01-06 Thread pharo
Updates: Status: Fixed Comment #1 on issue 3510 by aplantec: HistoryNode problem with two consecutives closeGroup http://code.google.com/p/pharo/issues/detail?id=3510 in inbox SLICE-Issue-3510-HistoryNode-problem-with-two-consecutives-closeGroup in addition I've added a test for such

[Pharo-project] [BUG]LargePositiveInteger(Object)error:

2011-01-06 Thread Pat Maddox
I opened up an OmniBrowser and scrolled to the very bottom. Then I clicked on my package name, and then a class name. 6 January 2011 12:12:44 pm VM: Mac OS - intel - 1065 - Croquet Closure Cog VM [CoInterpreter VMMaker-oscog.43] Croquet Cog 3.0.0 Image: Pharo-1.1.1-- [Latest update: #11414]

Re: [Pharo-project] Issue 3436 in pharo: #copyFrom: is broken

2011-01-06 Thread pharo
Comment #13 on issue 3436 by step...@stack.nl: #copyFrom: is broken http://code.google.com/p/pharo/issues/detail?id=3436 I have to disagree strongly. It is absolutely unclear why the 'copy' is part of the method name in copyFrom:to:. It therefore is a change in the wrong direction.

Re: [Pharo-project] Origins [poll]

2011-01-06 Thread Benoit St-Jean
Name|Native Language|Greeting in native lang|Born country|Writing from Benoit St-Jean | French | Salut | Canada | Montréal - Benoit St-Jean Yahoo! Messenger: bstjean A standpoint is an intellectual horizon of radius zero. (Albert Einstein)

Re: [Pharo-project] Origins [poll]

2011-01-06 Thread Jimmie Houchin
Jimmie Houchin | English | Hello / Howdy| Carlsbad, New Mexico, USA | North of Dallas, Texas, USA | Chile Head, Pepper Belly, writing a Financial Investment app

Re: [Pharo-project] Issue 3509 in pharo: Multi-part MIME support for MailMessage

2011-01-06 Thread pharo
Updates: Status: Fixed Labels: Milestone-1.3 Comment #2 on issue 3509 by marianopeck: Multi-part MIME support for MailMessage http://code.google.com/p/pharo/issues/detail?id=3509 excellent. thanks! I tag it as milestone 1.3 since only important bugs are integrated in 1.2

[Pharo-project] tomorrow we will integrate some more fixes...

2011-01-06 Thread Stéphane Ducasse
Today people broke our offices (and stole my screens) so we had to fix doors and other funny admin... So I finally got a chance to finish somehow a research proposals or two and tomorrow this is free hacking (I hope). Stef

Re: [Pharo-project] tomorrow we will integrate some more fixes...

2011-01-06 Thread Miguel Cobá
El jue, 06-01-2011 a las 22:31 +0100, Stéphane Ducasse escribió: Today people broke our offices (and stole my screens) so we had to fix doors and other funny admin... So bad! :( So I finally got a chance to finish somehow a research proposals or two and tomorrow this is free

[Pharo-project] wiki style help

2011-01-06 Thread Alain Plantec
Hello! I've prototyped a small addon for the help system. It allows the using of formatted text a la wiki for editing help pages. help pages are retrieved thanks to a pragma. In order to write an help, only 2 steps * Step1: You edit you help as follow: = Introduction Your intro here = Section 1

Re: [Pharo-project] wiki style help

2011-01-06 Thread Tudor Girba
That's cool, but why not use the Pier model/parser? Cheers, Doru On 6 Jan 2011, at 23:33, Alain Plantec wrote: Hello! I've prototyped a small addon for the help system. It allows the using of formatted text a la wiki for editing help pages. help pages are retrieved thanks to a pragma. In

Re: [Pharo-project] Origins [poll]

2011-01-06 Thread Alain Plantec
Name|Native Language|Greeting in native lang|Born country|Writing from Alain Plantec|French|Bonjour|France|Brest, Brittany, France

Re: [Pharo-project] wiki style help

2011-01-06 Thread Alain Plantec
Le 06/01/2011 23:55, Tudor Girba a écrit : That's cool, but why not use the Pier model/parser? not against except that it would depend on other packages. it implies that it would not be possible for the core. this implementation is only made of an additional class with 3 methods. at least one

Re: [Pharo-project] Issue 3436 in pharo: #copyFrom: is broken

2011-01-06 Thread pharo
Comment #14 on issue 3436 by cesar.rabak: #copyFrom: is broken http://code.google.com/p/pharo/issues/detail?id=3436 If you want to clarify this issue, you'll need to have access to the minutes and meeting notes of NCTIS J20 which in the ANSI Standard for Smalltalk have put in 5.7.8.7

Re: [Pharo-project] Origins [poll]

2011-01-06 Thread Sean P. DeNigris
Name|Native Language|Greeting in native lang|Born country|Writing from|Interests Sean DeNigris | English | What's up | USA | New York, New York | Hockey, surfing, reading -- View this message in context: http://forum.world.st/Origins-poll-tp3176488p3178475.html Sent from the Pharo Smalltalk

Re: [Pharo-project] Origins [poll]

2011-01-06 Thread Gabriel Cotelli
Name|Native Language|Greeting in native lang|Born country|Writing from| Gabriel Cotelli|Spanish|Hola|Argentina|Buenos Aires, Argentina| On Wed, Jan 5, 2011 at 6:38 PM, Miguel Cobá miguel.c...@gmail.com wrote: It is a new year and I thought that it would be good to know from which part of the

Re: [Pharo-project] Issue 3436 in pharo: #copyFrom: is broken

2011-01-06 Thread pharo
Comment #15 on issue 3436 by rydier: #copyFrom: is broken http://code.google.com/p/pharo/issues/detail?id=3436 GnuST does the copyFrom: to: self size shortcut as well. VW does not define copyFrom: in Object. Implementors in the packages I had loaded: -ProbedCompiledMethod/Blocks do the same.

Re: [Pharo-project] Origins [poll]

2011-01-06 Thread Serge Stinckwich
Serge Stinckwich|French|Xin Chào|France|Hà Nội, Việt Nam On Fri, Jan 7, 2011 at 7:57 AM, Gabriel Cotelli g.cote...@gmail.com wrote: Name|Native Language|Greeting in native lang|Born country|Writing from| Gabriel Cotelli|Spanish|Hola|Argentina|Buenos Aires, Argentina| On Wed, Jan 5, 2011 at

Re: [Pharo-project] Origins [poll]

2011-01-06 Thread Francisco Ortiz Peñaloza
Name|Native Language|Greeting in native lang|Born country|Writing from| Francisco Ortiz Peñaloza|Spanish|Hola|Argentina|Buenos Aires, Argentina| On Fri, Jan 7, 2011 at 12:45 AM, Serge Stinckwich serge.stinckw...@gmail.com wrote: Serge Stinckwich|French|Xin Chào|France|Hà Nội, Việt Nam On

Re: [Pharo-project] Origins [poll]

2011-01-06 Thread laurent laffont
Laurent Laffont|French|Salut|France|Annecy, France|Musique, Lecture On Fri, Jan 7, 2011 at 5:08 AM, Francisco Ortiz Peñaloza patchi...@gmail.com wrote: Name|Native Language|Greeting in native lang|Born country|Writing from| Francisco Ortiz Peñaloza|Spanish|Hola|Argentina|Buenos Aires,

Re: [Pharo-project] wiki style help

2011-01-06 Thread Alain Plantec
I've changed the section start character from $= to $! as in Pier. Now, such a help text can be compatible with the pier parser. Cheers Alain Le 07/01/2011 00:08, Alain Plantec a écrit : Le 06/01/2011 23:55, Tudor Girba a écrit : That's cool, but why not use the Pier model/parser? not against

[Pharo-project] SqueakSource is down

2011-01-06 Thread Alain Plantec

Re: [Pharo-project] wiki style help

2011-01-06 Thread Tudor Girba
Nice. Doru On 7 Jan 2011, at 07:33, Alain Plantec wrote: I've changed the section start character from $= to $! as in Pier. Now, such a help text can be compatible with the pier parser. Cheers Alain Le 07/01/2011 00:08, Alain Plantec a écrit : Le 06/01/2011 23:55, Tudor Girba a écrit :

[Pharo-project] announcements and weak references

2011-01-06 Thread Tudor Girba
Hi, Are there any plans to get Announcements use weak references? I saw that in the repository of Lukas, there is a WeakAnnouncer. However, here the subscriptions are still held in a regular Dictionary. Actually, I am not sure what is the status of weak references. I tried the following, but

Re: [Pharo-project] announcements and weak references

2011-01-06 Thread Lukas Renggli
On Friday, 7 January 2011, Tudor Girba tudor.gi...@gmail.com wrote: Hi, Are there any plans to get Announcements use weak references? I saw that in the repository of Lukas, there is a WeakAnnouncer. However, here the subscriptions are still held in a regular Dictionary. Actually, I am not

Re: [Pharo-project] announcements and weak references

2011-01-06 Thread Tudor Girba
Stupid me: | x array | x := OrderedCollection new. array := WeakArray with: x. x := nil. Smalltalk garbageCollect. array first == nil. Ok, this being the case the original question still remains: Is there any effort to make Announcements only use weak references? I am not much of a specialist