Re: [Pharo-users] GSoC mentor assistance for FOSSASIA smalltalk projects please

2015-03-05 Thread S Krish
Create a file editor and asset manager solution with smalltalk I would be interested in assisting in this project. Harks me back to what I attempted with VisualWorks and SimpleWeb Framework I created more than a decade back with complete editor / projects IDE that had artifacts covering all that i

Re: [Pharo-users] Pillar and GT tools in Pharo4

2015-03-05 Thread Tudor Girba
Hi Torsten, Great job. Some feedback about the extensions: - I saw that you figured out the new feature of searching with spotter from the inspector without any public announcement. Did you figure it out from the code of GT or by seeing an example? In any case, very nice :). - use "composite ph

Re: [Pharo-users] GSoC mentor assistance for FOSSASIA smalltalk projects please

2015-03-05 Thread Martin Bähr
Excerpts from Sean P. DeNigris's message of 2015-03-06 05:15:23 +0100: > Martin Bähr wrote > > i'd like to ask if anyone is willing to help me mentor those projects. > > I can probably help you with "Offline text search" (my preference) or > possibly "file editor and asset manager". wonderful! of

Re: [Pharo-users] GSoC mentor assistance for FOSSASIA smalltalk projects please

2015-03-05 Thread Sean P. DeNigris
Martin Bähr wrote > FOSSASIA has been accepted for Google Summer of Code, and i have a few > smalltalk related projects Awesome!! Martin Bähr wrote > i'd like to ask if anyone is willing to help me mentor those projects. I can probably help you with "Offline text search" (my preference) or poss

Re: [Pharo-users] ZnClient --data {}

2015-03-05 Thread Sabine Manaa
Hi Sven, great - it seems to work. Thanks again! I have another problem now which has to be checked with gini. I will come back to you if there is something open. Will your versions be included in the configurationOf for the next versions? @Norbert: I used the curl string as a comment in a method

[Pharo-users] GSoC mentor assistance for FOSSASIA smalltalk projects please

2015-03-05 Thread Martin Bähr
hi, FOSSASIA has been accepted for Google Summer of Code, and i have a few smalltalk related projects in there, see http://labs.fossasia.org/ideas.html i'd like to ask if anyone is willing to help me mentor those projects. since i am new to smalltalk myself it would be good to have some backup by

Re: [Pharo-users] Programatically abandoning

2015-03-05 Thread Alexandre Bergel
Hi! Simply put a block [ … ] on: Error do: [ ] For example: 10 timesRepeat: [ [ 1 / 0 ] on: Error do: [ "do nothing" ] ] Cheers, Alexandre > On Mar 5, 2015, at 5:52 PM, Laura Risani wrote: > > Hi all, > > How can i within a method, programatically produce the same effect that > would ha

Re: [Pharo-users] Programatically abandoning

2015-03-05 Thread Ben Coman
(maybe ?) http://pharobooks.gforge.inria.fr/PharoByExampleTwo-Eng/latest/Exceptions.pdf search for "Abandon the protected block" On Fri, Mar 6, 2015 at 6:52 AM, Laura Risani wrote: > Hi all, > > How can i within a method, programatically produce the same effect that > would have abandoning a r

[Pharo-users] Programatically abandoning

2015-03-05 Thread Laura Risani
Hi all, How can i within a method, programatically produce the same effect that would have abandoning a raised debug window? Best, Laura

Re: [Pharo-users] ZnClient --data {}

2015-03-05 Thread Sven Van Caekenberghe
With the following version: === Name: Zodiac-Core-SvenVanCaekenberghe.38 Author: SvenVanCaekenberghe Time: 5 March 2015, 10:50:20.718425 pm UUID: e3136feb-d3ad-4e3e-b844-464737f0b9ea Ancestors: Zodiac-Core-TheIntegrator.37 Change the semantics of ZdcSimpleSocketStream>>#fillReadBuffer to simply r

Re: [Pharo-users] Weird issues while editing

2015-03-05 Thread Marcus Denker
> On 05 Mar 2015, at 22:36, sergio_101 wrote: > > Hey, all.. > > I have been having a weird problem for awhile. It has been happening on both > pharo 3 and pharo 4. > > I can't pin down when it is happening, but here's what i am seeing: > > at some random time, when i hit the backspace, the

[Pharo-users] Weird issues while editing

2015-03-05 Thread sergio_101
Hey, all.. I have been having a weird problem for awhile. It has been happening on both pharo 3 and pharo 4. I can't pin down when it is happening, but here's what i am seeing: at some random time, when i hit the backspace, the cursor moves to the beginning of the method name.. and if i type any

Re: [Pharo-users] Learn something today

2015-03-05 Thread Laura Risani
Interesting! On Tue, Mar 3, 2015 at 6:10 PM, Tudor Girba wrote: > Indeed, we use this extensively for "scripting" APIs. > > Doru > > On Tue, Mar 3, 2015 at 10:02 PM, Hilaire wrote: > >> Collection iterated with symbol[1]: >> >> #(1 2 3) do: #inspect. >> >> Have a nice day. >> >> Hilaire >> >> [

Re: [Pharo-users] ZnClient --data {}

2015-03-05 Thread Sven Van Caekenberghe
Basically, this is how you should do it (after loading NeoJSON): ZnClient new https; host: 'user.gini.net'; path: 'api/users'; headerAt: 'Authorization' add: ('BEARER {1}' format: { #myToken }); accept: ZnMimeType applicationJson; contentReader: [ :entity | NeoJSONReader fromString: en

Re: [Pharo-users] ZnClient --data {}

2015-03-05 Thread Norbert Hartl
Sabine, you have double double quotes in your post data. If you use single quotes on the commandline the content is not interpreted and you are sending "" and that is not valid. Norbert > Am 05.03.2015 um 18:59 schrieb Sabine Manaa : > > Hi , > > I want to write the following command in phar

[Pharo-users] ZnClient --data {}

2015-03-05 Thread Sabine Manaa
Hi , I want to write the following command in pharo: "curl -v -X POST --data '{""email"":""m...@gmail.com"", ""password"":""geheim""}' -H 'Content-Type: application/json' -H 'Accept: application/json' -H 'Authorization: BEARER d0ae-eaad-4335-a64b-8903470baa9f' 'https://user.gini.net/api/users

Re: [Pharo-users] Tables in Pillar

2015-03-05 Thread Damien Pollet
AFAIK, LaTeX does not wrap text in table cells unless you explicitly fix the column's width. On 5 March 2015 at 17:21, p...@highoctane.be wrote: > how does one makes that in LaTeX? > Le 5 mars 2015 15:20, "Damien Cassou" a écrit : > > >> On Feb 27, 2015 3:06 AM, "p...@highoctane.be" wrote: >>

Re: [Pharo-users] Tables in Pillar

2015-03-05 Thread p...@highoctane.be
how does one makes that in LaTeX? Le 5 mars 2015 15:20, "Damien Cassou" a écrit : > > On Feb 27, 2015 3:06 AM, "p...@highoctane.be" wrote: > > > > How is one doing a cell with content wrapping on multiple lines? > > > > With the > > > > | X | Y > > | abcd | some very long text that should be wra

Re: [Pharo-users] Linux and Windows 3.0 differences

2015-03-05 Thread Markus Fritsche
Hello Martin, if you're using the ubuntu ppa, the sources file is *NOT* required by the launcher (it works without it). You can install the source by executing "apt-get install pharo-sources-files" Kind regards, Markus On 04.03.2015 09:26, Martin Bähr wrote: > Excerpts from Marcus Denker's me

Re: [Pharo-users] scaled decimal number for currency

2015-03-05 Thread Sven Van Caekenberghe
I would store whole cents in the database. EUR 10.99 would be stored as 1099 eurocent. But yes, the mapping is what is missing and what you should look at. > On 05 Mar 2015, at 15:40, Esteban A. Maringolo wrote: > > Can you please share with us how are you defining the mapping for such field?

Re: [Pharo-users] scaled decimal number for currency

2015-03-05 Thread Pablo R. Digonzelli
I'll try. Supose i have an item wich has an id and a price . For example id is 77 and price 41.69. If I use ScaledDecimal with scale 2 for price , glorp create this string for query execution: 'INSERT INTO item (id,price) VALUES (77,41.69s2); and of course give me a GlorpDatabaseWriteError for

Re: [Pharo-users] scaled decimal number for currency

2015-03-05 Thread Pablo R. Digonzelli
I know that. the problem is that glorp generates the string in question , not me. Ing. Pablo Digonzelli Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 San Miguel de Tucumán Email: pdigonze...@softsargentina.com pdigonze...@gmail.com Cel: 5493815982714 - Mensaje or

Re: [Pharo-users] scaled decimal number for currency

2015-03-05 Thread Esteban A. Maringolo
Can you please share with us how are you defining the mapping for such field? For what I was able to see in the current implementation the Pharo dialect doesn't provide support for ScaledDecimals. PharoDialect doesn't provide a #fixedPointType, so the number is coerced to a float. Adding suppor

Re: [Pharo-users] Tables in Pillar

2015-03-05 Thread Damien Cassou
On Feb 27, 2015 3:06 AM, "p...@highoctane.be" wrote: > > How is one doing a cell with content wrapping on multiple lines? > > With the > > | X | Y > | abcd | some very long text that should be wrapping but apparently > doesn't. So it is very annoying when one attempts to describe a long > thing, w

Re: [Pharo-users] scaled decimal number for currency

2015-03-05 Thread Werner Kassens
do you perhaps mean this? b:=ScaledDecimal newFromNumber: 5.8777 scale: 2." 5.88s2" b printShowingDecimalPlaces:2." '5.88'" on a stream you can use 'printOn: aStream showingDecimalPlaces: placesDesired' werner On 03/05/2015 01:21 PM, Pablo R. Digonzelli wrote: Hi, I want to use scaled decimal

Re: [Pharo-users] Roassal scroll bar builder

2015-03-05 Thread Pierre CHANSON
Hi Ofrray, yes it is due to view inspect inspect. Actually I already wrote a "b view inspect", so you just have to execute the code, but if you inspect it, you get inspector on inspector. There is always this behavior, due to a signalUpdate, embedded with the events, that will affect the view on

Re: [Pharo-users] Linux and Windows 3.0 differences

2015-03-05 Thread S Krish
"copy&paste from Chrome to Pharo 4.0 workspace/Playground on Ubuntu did not work either." As also an issue if you do it from MS Office, MS Outlook .. et als. I have mostly seen this to be a quote error. That is the quote surrounding any string is copied with an encoding that makes it some oth

Re: [Pharo-users] scaled decimal number for currency

2015-03-05 Thread stepharo
can you give example? Le 5/3/15 13:21, Pablo R. Digonzelli a écrit : Hi, I want to use scaled decimal numbers for currency amounts. I am using Glorp too. The problem is that when Glorp generates sql sentences has a problem with #printOn: of ScaledDecimal wich produces output that include the

[Pharo-users] Reading an SQL db on OS X

2015-03-05 Thread Alexandre Bergel
Hi! I would like to read a SQL .db file. The page http://smalltalkhub.com/#!/~PharoExtras/NBSQLite3 mention how to do this on Windows and Linux, but not on OSX. What should I do to read a SQL file on OS X? I tried google, but it did not work. Cheers, Alexandre -- _,.;:~^~:;._,.;:~^~:;._,.;:~

[Pharo-users] scaled decimal number for currency

2015-03-05 Thread Pablo R. Digonzelli
Hi, I want to use scaled decimal numbers for currency amounts. I am using Glorp too. The problem is that when Glorp generates sql sentences has a problem with #printOn: of ScaledDecimal wich produces output that include the scale value. I do not want to modify printOn: on ScaledDecimal. Any sug

Re: [Pharo-users] DNS change files.pharo.org

2015-03-05 Thread Marcus Denker
> On 05 Mar 2015, at 10:27, Marcus Denker wrote: > > Hello, > > We will switch the DNS entry from an A type to a CNAME that points to a > different server (for caching) > this afternoon at 1pm local time. > > It should all continue to work (and hopefully faster) > DNS changes for files.pha

[Pharo-users] Fwd: ZnUrl issue with German characters

2015-03-05 Thread Sven Van Caekenberghe
As this might be useful to others, forwarding: > Begin forwarded message: > > Subject: Re: ZnUrl issue > From: Sven Van Caekenberghe > Date: 5 Mar 2015 09:55:46 CET > To: Gerhard Obermann > > Hi Gerhard, > >> On 05 Mar 2015, at 08:36, Gerhard Obermann wrote: >> >> Hi sven, >> >> We are usi

[Pharo-users] Aggregation framework in MongoTalk?

2015-03-05 Thread p...@highoctane.be
Is there anyone using the aggregation framework of MongDb through MongoTalk? It uses the aggregate() command, so I was wondering if this could be supported out of the box or if there is a need for an additional Operation. TIA Phil

[Pharo-users] DNS change files.pharo.org

2015-03-05 Thread Marcus Denker
Hello, We will switch the DNS entry from an A type to a CNAME that points to a different server (for caching) this afternoon at 1pm local time. It should all continue to work (and hopefully faster) Marcus

Re: [Pharo-users] Fixed tool bar in pharo, similar to the one in Squeak

2015-03-05 Thread Nicolai Hess
2015-03-05 3:49 GMT+01:00 Offray Vladimir Luna Cárdenas : > Hi, > > I would like to add a fixed tool bar in the upper side of the word in > Pharo, similar to the one that is in Squeak. I think that having this kind > of fixed places with tools help newbies to find help and launch stuff. > There i