Re: [Pharo-dev] postgresV2

2014-02-21 Thread Sven Van Caekenberghe
On 21 Feb 2014, at 08:32, Guy Bloomfield g...@healthqualitynz.com wrote: Postgres is painful about case. No, its's not, AFAIK: t3-network=# Select session_ID,stArt,stOp from SESSION_LOGS limiT 1; session_id | start|stop

[Pharo-dev] [pharo-project/pharo-core] 18c41e: 30777

2014-02-21 Thread GitHub
Branch: refs/heads/3.0 Home: https://github.com/pharo-project/pharo-core Commit: 18c41ec1180288b40ee83994c8861f925833f706 https://github.com/pharo-project/pharo-core/commit/18c41ec1180288b40ee83994c8861f925833f706 Author: Jenkins Build Server bo...@pharo-project.org Date:

[Pharo-dev] [pharo-project/pharo-core]

2014-02-21 Thread GitHub
Branch: refs/tags/30777 Home: https://github.com/pharo-project/pharo-core

Re: [Pharo-dev] SWIG for Native Boost FFI

2014-02-21 Thread p...@highoctane.be
Excellent That's really a missing block coming to life! I'll try it this weekend on my Linux system. Phil On Fri, Feb 21, 2014 at 10:24 AM, Göran Krampe go...@krampe.se wrote: Hi all! On 01/22/2014 09:25 PM, Ronie Salgado wrote: I started working on extending SWIG to generate

[Pharo-dev] Morphic UI designer

2014-02-21 Thread jannik laval
Hi pharoers, What is the state of Morphic UI Designer for Pharo ? Did anyone try it ? Is it interesting to have it in Pharo ? https://www.hpi.uni-potsdam.de/hirschfeld/trac/SqueakCommunityProjects/wiki/designer -- ~~Jannik Laval~~ École des Mines de Douai Enseignant-chercheur

Re: [Pharo-dev] Morphic UI designer

2014-02-21 Thread Torsten Bergmann
Hi Jannik, Morphic UI Designer is a nice project - but I guess it is more oriented towards Morphic way of buildung UI's and may have some Squeak specific stuff in it. That's why it's inclusion into the Sq standard image is currently discussed on squeak-dev. In Pharo the tools are moving to the

[Pharo-dev] Multiple-selection drag-and-drop

2014-02-21 Thread Martin Dias
Hi, I'm looking for a kind-of-list spec model (or morph) in Pharo 3 that supports multiple-selection drag-and-drop. I tried with TreeModel, NewListModel and ListModel... they don't support. Note: NewListModel even doesn't support single-selection drag-and-drop... is this a known issue or should

[Pharo-dev] R: Morphic UI designer

2014-02-21 Thread Lorenzo Schiavina
Yes, I think could be very important to have it in Pharo. Some time ago I had a glance to it: it could be better, but it is not bad. Lorenzo Da: Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] Per conto di jannik laval Inviato: venerdì 21 febbraio 2014 12:02 A: Pharo Development

[Pharo-dev] [pharo-project/pharo-core] 022715: 30778

2014-02-21 Thread GitHub
Branch: refs/heads/3.0 Home: https://github.com/pharo-project/pharo-core Commit: 022715368ff0faac3619be53927894ab012d98ff https://github.com/pharo-project/pharo-core/commit/022715368ff0faac3619be53927894ab012d98ff Author: Jenkins Build Server bo...@pharo-project.org Date:

[Pharo-dev] [pharo-project/pharo-core]

2014-02-21 Thread GitHub
Branch: refs/tags/30778 Home: https://github.com/pharo-project/pharo-core

Re: [Pharo-dev] Multiple-selection drag-and-drop

2014-02-21 Thread Benjamin
This works: m := TreeModel new. m roots: #(1 2 3 4 5). m dragEnabled: true. m dropEnabled: true. m transferBlock: [ :p :s | TransferMorph withPassenger: s model selectedItems from: s ].

Re: [Pharo-dev] Estimating the amount of change between Pharo 2.0 and 3.0

2014-02-21 Thread Damien Cassou
On Thu, Feb 20, 2014 at 2:49 AM, Esteban A. Maringolo emaring...@gmail.com wrote: 20% of change in Quantity terms is a lot! that's really a lot and is a bit frightening. -- Damien Cassou http://damiencassou.seasidehosting.st Success is the ability to go from one failure to another without

Re: [Pharo-dev] WhatsUp from: 2014-02-17 until: 2014-02-28

2014-02-21 Thread Tudor Girba
Hi, On Fri, Feb 21, 2014 at 2:31 PM, Damien Cassou damien.cas...@gmail.comwrote: ### Here's what I've been up to since the last WhatsUp: Pillar - Ubuntu package for Pillar (so now Pillar is an application like the others on Ubuntu, you don't have to know it's implemented in Pharo or

Re: [Pharo-dev] postgresV2

2014-02-21 Thread Carlo
Hi I just tried following your steps and had the exact same issues. What I now tried is connecting to default DB which seems to be your USER name which worked for me. So in your scenario connect to girba as DB instead of testdb and you should succeed. Cheers Carlo On 21 Feb 2014, at 4:16 PM,

Re: [Pharo-dev] postgresV2

2014-02-21 Thread Tudor Girba
Yupee! That worked fine. Thanks. I can move on now. Any idea how to connect to a non-default DB? Doru On Fri, Feb 21, 2014 at 3:22 PM, Carlo snoob...@gmail.com wrote: Hi I just tried following your steps and had the exact same issues. What I now tried is connecting to default DB which

Re: [Pharo-dev] postgresV2

2014-02-21 Thread Sven Van Caekenberghe
Yeah, it must be a permission/access thing. You could also try to access a system table, like select * from pg_stat_activity; On 21 Feb 2014, at 15:22, Carlo snoob...@gmail.com wrote: Hi I just tried following your steps and had the exact same issues. What I now tried is connecting to

Re: [Pharo-dev] postgresV2

2014-02-21 Thread Carlo
In psql you could try: \c testdb Then create the table. \conninfo will tell you which db you are connected to. Carlo On 21 Feb 2014, at 4:25 PM, Tudor Girba tu...@tudorgirba.com wrote: Yupee! That worked fine. Thanks. I can move on now. Any idea how to connect to a non-default DB? Doru On

Re: [Pharo-dev] WhatsUp from: 2014-02-17 until: 2014-02-28

2014-02-21 Thread Damien Cassou
On Fri, Feb 21, 2014 at 2:38 PM, Tudor Girba tu...@tudorgirba.com wrote: Interesting :). Could you say more about this? Is it available for testing somewhere? not yet available but we should be able to release it open source. We just wrote a Python program that generates MSE files. -- Damien

Re: [Pharo-dev] WhatsUp from: 2014-02-17 until: 2014-02-28

2014-02-21 Thread Tudor Girba
Nice. Let us know how it goes. Doru On Fri, Feb 21, 2014 at 3:29 PM, Damien Cassou damien.cas...@gmail.comwrote: On Fri, Feb 21, 2014 at 2:38 PM, Tudor Girba tu...@tudorgirba.com wrote: Interesting :). Could you say more about this? Is it available for testing somewhere? not yet

Re: [Pharo-dev] postgresV2

2014-02-21 Thread Juan
hi It's a Postgres case problem. postgres translate any sentence to lowercase. For use uppercase you need use the character. for example 'select * from TESTABLE' postgres execute 'select * from testable' and TESTABLE doesn't exists error. If you want uppercase you need reformulate sentence like

Re: [Pharo-dev] Pharo 3| Nautilus question

2014-02-21 Thread Noury Bouraqadi
Done. Created both issues. Noury On 20 févr. 2014, at 15:11, Esteban Lorenzano wrote: On 20 Feb 2014, at 15:02, Noury Bouraqadi bouraq...@gmail.com wrote: Hi, When I add a package, I was expecting to see it appear in monticello. I guess it's a pending feature. Isn't it? Will we get it

Re: [Pharo-dev] Multiple-selection drag-and-drop

2014-02-21 Thread Martin Dias
On Fri, Feb 21, 2014 at 2:14 PM, Benjamin benjamin.vanryseghem.ph...@gmail.com wrote: This works: m := TreeModel new. m roots: #(1 2 3 4 5). m dragEnabled: true. m dropEnabled: true. m transferBlock: [ :p :s | TransferMorph withPassenger: s model selectedItems from: s ]. m

Re: [Pharo-dev] SWIG for Native Boost FFI

2014-02-21 Thread Ronie Salgado
Hi there!, It is great to hear that it is being useful. Currently I am taking some vacations, so I will probably be without Internet access for some days. Currently the most missing parts are documentation, which I am going to write when having some time. Here are some early details, before I

Re: [Pharo-dev] SWIG for Native Boost FFI

2014-02-21 Thread Alexandre Bergel
Really impressive Ronie!! Alexandre Le 21-02-2014 à 12:50, Ronie Salgado ronies...@gmail.com a écrit : Hi there!, It is great to hear that it is being useful. Currently I am taking some vacations, so I will probably be without Internet access for some days. Currently the most missing

Re: [Pharo-dev] SWIG for Native Boost FFI

2014-02-21 Thread Göran Krampe
Hey! On 02/21/2014 06:50 PM, Ronie Salgado wrote: Hi there!, It is great to hear that it is being useful. Currently I am taking some vacations, so I will probably be without Internet access for some days. [SNIP] I took that kind of approach because it gives more flexibility, but it provides

Re: [Pharo-dev] Morphic UI designer

2014-02-21 Thread Stephan Eggermont
At the moment I'm moving, so I have very little time to do something about it. Current state is described in a thread from end of last year: http://forum.world.st/have-a-question-for-morphic-Designer-in-pharo-td4731307.html Stephan

Re: [Pharo-dev] test failures in downloaded image 30733

2014-02-21 Thread btc
b...@openinworld.com wrote: Marcus Denker wrote: On the ci server this is already done: failing tests are serialise with Fuel for debugging. In addition, the image is save and can be downloaded (in the state after the test run). How do I find the fuel