[Pharo-project] [update 1.2] #12226

2010-11-01 Thread stephane ducasse
12226 - - Issue 3200: Float do not print exactly when negative. Thanks Nicolas cellier. (I made a silly mistake). - Issue 3178: FractionTest>>#testDegreeCos. Thanks Nicolas cellier. Stef

Re: [Pharo-project] XML package is barking at load time

2010-11-01 Thread Tobias Pape
Am 2010-10-31 um 10:55 schrieb stephane ducasse: > why this is squeakCommon? Does it work if this is in pharo? #squeakCommon is for configuration specs common to Pharo and Squeak. #pharo is for configuration specs for Pharo only. #squeak is for configuration specs for Squeak only. So Long,

[Pharo-project] Smalltalk Labs Browser

2010-11-01 Thread Geert Claes
Just stumbled on this very interesting seaside-based browser via James's blog: http://code.google.com/p/smalltalklabsbrowser -- View this message in context: http://forum.world.st/Smalltalk-Labs-Browser-tp3022069p3022069.html Sent from the Pharo Smalltalk mailing list archive at Nabble.com.

Re: [Pharo-project] A pattern for GUI programming (Morphic, Cuis, etc)

2010-11-01 Thread Juan Vuletich
Hi Hannes, I am not currently working on LightWidgets. If you're interested, Cuis includes a working implementation where you can use the UI pattern. Cheers, Juan Vuletich Ps. Please send copy to me of any mail intended for me... I'm not following the Pharo list closely, and I might miss it.

[Pharo-project] Is there any package to manipulate excel files?

2010-11-01 Thread Guillermo Polito
I was searching in squeaksource, and querying the posts in the list, but I couldn't find anything useful :S. Thank you! Guille

Re: [Pharo-project] Is there any package to manipulate excel files?

2010-11-01 Thread Marcus Denker
On Nov 1, 2010, at 3:38 PM, Guillermo Polito wrote: > I was searching in squeaksource, and querying the posts in the list, but I > couldn't find anything useful :S. if is is a comma-separated file (.csv) you can easily parse the lines with String>>#findTokens:escapedBy: Of course this does no

Re: [Pharo-project] Is there any package to manipulate excel files?

2010-11-01 Thread Guillermo Polito
It is a bad an awful real excel file :(. On Mon, Nov 1, 2010 at 11:57 AM, Marcus Denker wrote: > > On Nov 1, 2010, at 3:38 PM, Guillermo Polito wrote: > > > I was searching in squeaksource, and querying the posts in the list, but > I couldn't find anything useful :S. > > if is is a comma-separate

Re: [Pharo-project] XML package is barking at load time

2010-11-01 Thread Johan Brichau
Hi Stef, This works without dog sounds: Gofer new squeaksource: 'MetacelloRepository'; package: 'ConfigurationOfXMLSupport'; load. ConfigurationOfXMLSupport load On 31 Oct 2010, at 10:55, stephane ducasse wrote: > Gofer new > squeaksource: 'XMLSupport'; >

Re: [Pharo-project] Is there any package to manipulate excel files?

2010-11-01 Thread Mariano Martinez Peck
There were people trying to use ODBC to talk to an excel file, but to "query". I don't think it would work for "manipulate" cheers mariano On Mon, Nov 1, 2010 at 12:08 PM, Guillermo Polito wrote: > It is a bad an awful real excel file :(. > > > On Mon, Nov 1, 2010 at 11:57 AM, Marcus Denker wr

Re: [Pharo-project] Failing tests in 1.2

2010-11-01 Thread Nicolas Cellier
2010/11/1 Stéphane Ducasse : > Thanks nicolas > > This is strange but I could not find the KernelTests-Nice.297 package in the > inbox. > and I imagine that you save the slice so this looks like a bug I do not like > :(... > > Stef > Oh sorry, it's probably me who aborted one of these http opera

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

2010-11-01 Thread Sven Van Caekenberghe
On 29 Oct 2010, at 18:14, Marcus Denker wrote: > Issue 3145: Glamourous Theme integration Great! However, something is wrong (unless it was intentional) with the collapse (minimize) and expand (maximize) icons in the window bar when you hover over them: both then show a box, in some strange

Re: [Pharo-project] Syntax extension for continuations / class specific compiler

2010-11-01 Thread Ralph Boland
>> On Mon, 1 Nov 2010, Igor Stasenko wrote: >> Hello, >> >> Out of curiosity, i tried to look how it would be hard to change >> parser to support extended continuation syntax. >> ... > This idea comes up every few years. This post sums up well the last > attempt: http://blog.3plus4.org/2007/08/30

[Pharo-project] apparently the tests are blocked somewhere

2010-11-01 Thread Stéphane Ducasse
Hi guys this morning I could not work on that issue when I integrated some pending changes. I could not run the tests to their completion. Actions: - we should look at that. - I would like to modularize tests Test-XXX -> XXX-Tests following the seaside pat

Re: [Pharo-project] XML package is barking at load time

2010-11-01 Thread Stéphane Ducasse
On Nov 1, 2010, at 4:14 PM, Johan Brichau wrote: > Hi Stef, > > This works without dog sounds: > > Gofer new > squeaksource: 'MetacelloRepository'; > package: 'ConfigurationOfXMLSupport'; load. > ConfigurationOfXMLSupport load Thanks johan! Probably the configuration in the Pr

Re: [Pharo-project] Failing tests in 1.2

2010-11-01 Thread Stéphane Ducasse
Thanks nicolas. I prefer that than to chase a MC bug :) I wrote some tests too to cover the float printing and I will check yours. Stef >> Thanks nicolas >> >> This is strange but I could not find the KernelTests-Nice.297 package in the >> inbox. >> and I imagine that you save the slice so this

Re: [Pharo-project] apparently the tests are blocked somewhere

2010-11-01 Thread Marcus Denker
On Nov 1, 2010, at 7:55 PM, Stéphane Ducasse wrote: > Hi guys > > this morning I could not work on that issue when I integrated some pending > changes. > I could not run the tests to their completion. The biggest problem is that huge testsuites spend all their time searching the image for prag

Re: [Pharo-project] Is there any package to manipulate excel files?

2010-11-01 Thread Yanni Chiu
On 01/11/10 11:08 AM, Guillermo Polito wrote: It is a bad an awful real excel file :(. Excel also has an XML format. You may be able to manipulate it in this format. It takes some back & forth, but you can eventually figure out how changes to the XML affect the spreadsheet, and vice versa. I

[Pharo-project] Writing API for XML (WAX) - Bibliography example

2010-11-01 Thread Hannes Hirzel
Hello I read the post by Stephane Ducasse about writing XML (see below) with a bibliography example. Recently I (re)-discovered the port to Squeak/Pharo of the Writing API for XML (WAX) (http://java.ociweb.com/mark/programming/WAX.html) and could put it to good use for writing an XML file a bit m

Re: [Pharo-project] Is there any package to manipulate excel files?

2010-11-01 Thread Hannes Hirzel
On 11/1/10, Guillermo Polito wrote: > It is a bad an awful real excel file :(. 2003 (pre-XML, binary) or 2007 (OpenXML, zip file)? A note: If your client still works with 2003 they might install a 2007 compatibility plugin so that 2007 XML files may be used. Microsoft Office Compatibility Pack

Re: [Pharo-project] XML package is barking at load time

2010-11-01 Thread Norbert Hartl
Ok, last but not least the most up to date variant :) Gofer new squeaksource: 'XMLSupport'; package: 'ConfigurationOfXMLSupport'; load. ConfigurationOfXMLSupport load Norbert On 01.11.2010, at 20:17, Stéphane Ducasse wrote: > > On Nov 1, 2010, at 4:14 PM, Johan Brichau w

Re: [Pharo-project] posting etiquette - please post new text at the *top* of your email

2010-11-01 Thread Michael Roberts
I suspect one reason there is so much inclusion of the content of the existing thread is all the folks using Gmail, which generally hides quoted text very well. I wasn't going to post, but then i didn't see it mentioned. It's the reason I get lazy with quoting cheers, Mike

Re: [Pharo-project] ISBN - barecode reader?

2010-11-01 Thread Guillermo Polito
Stef, maybe you can try with SoapOpera if you want to query the ws from pharo :). On Sun, Oct 31, 2010 at 2:44 PM, Stéphane Ducasse wrote: > mirko kiefer sent me >I wrote a simple client for the Amazon Web Services in Node.js that > allows you to do this kind of queries. >The imp

Re: [Pharo-project] Issue 3202:references in System->Settings should refer to 'action click' menu instead of 'yellow button' menu

2010-11-01 Thread Sheridan Mahoney
This bug report comes in reference to the turning on of morphic halos. System->Settings->Appearance->Morphic->Halo->Show default yellow button menu should instead refer to: System->Settings->Appearance->Morphic->Halo->Show default action-click menu This is perhaps an issue of changes in termi

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

2010-11-01 Thread Fernando Olivero
Yes, see the email i've sent to the list when i published this changes. Fernando On Mon, Nov 1, 2010 at 6:12 PM, Sven Van Caekenberghe wrote: > > On 29 Oct 2010, at 18:14, Marcus Denker wrote: > >> Issue 3145:   Glamourous Theme integration > > Great! > > However, something is wrong (unless it wa