Re: [Pharo-project] [Update] Zinc-SSO now supports Dropbox !

2013-02-08 Thread Sven Van Caekenberghe
On 07 Feb 2013, at 17:33, Sven Van Caekenberghe s...@stfx.eu wrote: Where can I find the code/package of the seaside demo app from Jan? It is in the main Zn repository: http://mc.stfx.eu Make that http://mc.stfx.eu/ZincHTTPComponents There is no GUI to this repository, it is storage only.

[Pharo-project] Sprint starting...

2013-02-08 Thread Marcus Denker
Hi, We will start soon in Lille… waiting for the room with the tables to be free. Issue to kill are: http://code.google.com/p/pharo/issues/list?can=2q=milestone%3D2.0 We are on the IRC channel to coordinate with remote sprinters. Marcus

Re: [Pharo-project] [Update] Zinc-SSO now supports Dropbox !

2013-02-08 Thread Sabine Knöfel
Hi Sven, I loaded ConfigurationOfZincHTTPComponents '2.3.2' from http://mc.stfx.eu. With this, I have the ZnSSOSeasideDemo loaded. But in the register method of ZnSSOSeasideDemo , there are classes referenced, which are not loaded with this Conf. Where can I find them? ZnOpenIDConfiguration,

[Pharo-project] [update 2.0] #20522

2013-02-08 Thread Marcus Denker
1st sprint integration, Issues down to 40. 20522 - Issue 7449: do ContextPart initializePrimitiveSimulators while Pharo Kernel shrinking http://code.google.com/p/pharo/issues/detail?id=7449 Issue 7448: move some categories out from System-FileRegistry

Re: [Pharo-project] [Update] Zinc-SSO now supports Dropbox !

2013-02-08 Thread Jan van de Sandt
Hi, These classes are part of the package Zinc-SSO-Seaside-Support. Jan. On Fri, Feb 8, 2013 at 10:37 AM, Sabine Knöfel sabine.knoe...@gmail.comwrote: Hi Sven, I loaded ConfigurationOfZincHTTPComponents '2.3.2' from http://mc.stfx.eu . With this, I have the ZnSSOSeasideDemo loaded.

[Pharo-project] script for downloading the latest image

2013-02-08 Thread Martin Dias
Hi I'd like to share a simple script I'm using to download the latest 2.0 image in current directory. It's built from jenkins ci scripts, so it should be fine: https://gist.github.com/tinchodias/4737729#file-imageget Cheers! Martin

Re: [Pharo-project] script for downloading the latest image

2013-02-08 Thread Martin Dias
Please tell me if you see something wrong! On Fri, Feb 8, 2013 at 10:54 AM, Martin Dias tinchod...@gmail.com wrote: Hi I'd like to share a simple script I'm using to download the latest 2.0 image in current directory. It's built from jenkins ci scripts, so it should be fine:

Re: [Pharo-project] [Update] Zinc-SSO now supports Dropbox !

2013-02-08 Thread Sabine Knöfel
thanks for the fast reply :-) On Fri, Feb 8, 2013 at 10:50 AM, Jan van de Sandt jvdsa...@gmail.com wrote: Hi, These classes are part of the package Zinc-SSO-Seaside-Support. Jan. On Fri, Feb 8, 2013 at 10:37 AM, Sabine Knöfel sabine.knoe...@gmail.com wrote: Hi Sven, I loaded

Re: [Pharo-project] [Update] Zinc-SSO now supports Dropbox !

2013-02-08 Thread Sven Van Caekenberghe
Gofer it url: 'http://mc.stfx.eu/ZincHTTPComponents'; package: 'ConfigurationOfZincHTTPComponents'; load. ConfigurationOfZincHTTPComponents project latestVersion load: 'SSO'. Gofer it url: 'http://mc.stfx.eu/ZincHTTPComponents'; package: 'Zinc-Seaside'; not necessary, updating to

[Pharo-project] [update 2.0] #20523

2013-02-08 Thread Marcus Denker
20523 - Issue 7441: EventHandler is deprecated yet EventHandlerPlus, a subclass, still is there http://code.google.com/p/pharo/issues/detail?id=7441 Issue 6622: PluggableTextMorph: Copy/Paste and Undo should respect autoAccept (was Bug when doing Paste in Find

[Pharo-project] [update 2.0] #20524

2013-02-08 Thread Marcus Denker
20524 - Issue 7027: Wrong halo handle balloon text showing http://code.google.com/p/pharo/issues/detail?id=7027 Diff information: http://ss3.gemstone.com/ss/Pharo20/MorphicTests-MarcusDenker.66.diff http://ss3.gemstone.com/ss/Pharo20/Morphic-MarcusDenker.1347.diff

Re: [Pharo-project] [Update] Zinc-SSO now supports Dropbox !

2013-02-08 Thread Jan van de Sandt
Hi, The Zinc-SSO-Seaside-Support package contains Seaside configuration classes for the required configuration data of the different OAuth/OpenID providers. When you use these classes you don't have to hardcode the specific consumerKey and consumerSecret in your code but you can use the Seaside

Re: [Pharo-project] Voyage: GC collecting random objects?

2013-02-08 Thread Esteban Lorenzano
Hi, Voyage should keep a weak cache... objects should be disposed as soon as they are not used anymore. Now... it is saying Reference not found, or Lazy reference not found? Esteban On Feb 8, 2013, at 11:46 AM, Bernat Romagosa tibabenfortlapala...@gmail.com wrote: Hi! We've been trying

Re: [Pharo-project] Voyage: GC collecting random objects?

2013-02-08 Thread Bernat Romagosa
It says Reference not found, and the method signaling the error is VOMongoMaterializer #missingContentFor:id: I can try to set up a minimal test case and sent it to you, would that help? Thanks! 2013/2/8 Esteban Lorenzano esteba...@gmail.com Hi, Voyage should keep a weak cache... objects

Re: [Pharo-project] Voyage: GC collecting random objects?

2013-02-08 Thread Ciprian Teodorov
Hi, I'm not particulary knowledgeable of inner workings of Iliad or voyage. But I think you should have a look at ghostproxy http://rmod.lille.inria.fr/web/pier/software/Marea/GhostProxies. The idea being that after storing your objects you should keep proxies to them in the image. These proxies

Re: [Pharo-project] [Update] Zinc-SSO now supports Dropbox !

2013-02-08 Thread Sabine Knöfel
Hi, thank you, I have it running now. Now I can adopt it in my application. Thank you very much for your help, Sven and Jan! Sabine On Fri, Feb 8, 2013 at 11:51 AM, Jan van de Sandt jvdsa...@gmail.com wrote: Hi, The Zinc-SSO-Seaside-Support package contains Seaside configuration classes for

Re: [Pharo-project] Voyage: GC collecting random objects?

2013-02-08 Thread Esteban Lorenzano
yes, this is what happens: You have a graph that can look like this: A-b-c-D where A and D represent roots of voyage (#isVoyageRoot = true) you removed D, but A is not updated (the logic for auto update references is too complex, and this is a known limitation of voyage). So, in a next

Re: [Pharo-project] Voyage: GC collecting random objects?

2013-02-08 Thread Bernat Romagosa
Hmm I'm not sure I understand. Now I've tried not even having the objects stored in a classvar at all, but saving them from a materialized fuel file straight away: *(FLMaterializer materializeFromFileNamed: 'mongodb.obj') do: [ :each | each save ].* It's all ok and working, until I do *Smalltalk

Re: [Pharo-project] Voyage: GC collecting random objects?

2013-02-08 Thread Bernat Romagosa
(I've tried making all objects be voyageRoot and still no luck) 2013/2/8 Bernat Romagosa tibabenfortlapala...@gmail.com Hmm I'm not sure I understand. Now I've tried not even having the objects stored in a classvar at all, but saving them from a materialized fuel file straight away:

Re: [Pharo-project] Voyage: GC collecting random objects?

2013-02-08 Thread Esteban Lorenzano
no, isVoyageRoot mark the objects of the graph that you want as roots. All the others are just embedded objects. Just try adding enableMissingContent to class D (I don't know what is the real name in your case :) Esteban On Feb 8, 2013, at 12:39 PM, Bernat Romagosa

Re: [Pharo-project] Voyage: GC collecting random objects?

2013-02-08 Thread Bernat Romagosa
OK! It looks like it's working now! Thank you so much! :) Bernat. p.s. After garbage collection, #selectAll is really slow. I guess this is normal as all objects have to be retrieved all over from the DB, is this right? 2013/2/8 Esteban Lorenzano esteba...@gmail.com no, isVoyageRoot mark the

Re: [Pharo-project] Voyage: GC collecting random objects?

2013-02-08 Thread Esteban Lorenzano
it depends on the amount of objects, but yes... you can play with lazy/eager ways of retrieve subcollections but if you have 10k objects, it will take some time to bring them all :) Esteban On Feb 8, 2013, at 12:59 PM, Bernat Romagosa tibabenfortlapala...@gmail.com wrote: OK! It looks like

[Pharo-project] [update 2.0] #20525

2013-02-08 Thread Marcus Denker
20525 - Issue 7447: optional UsersManager http://code.google.com/p/pharo/issues/detail?id=7447 Issue 7444: Morphic Settings appears twice, as its own group and as subgroup to Appearance http://code.google.com/p/pharo/issues/detail?id=7444 Diff information:

[Pharo-project] OneClick for 2.0 available again

2013-02-08 Thread Marcus Denker
Hi, We have again a one-click for 2.0: https://ci.inria.fr/pharo/job/Pharo-2.0/lastSuccessfulBuild/artifact/Pharo2.0-one-click.zip This right now uses the same VM that we use to run the tests on the build server (NBCog from November). (Later we need to use the latest verified build

Re: [Pharo-project] Less than 50 issues!

2013-02-08 Thread Sean P. DeNigris
Current stats: 37 Open 2.0 Issues (down from 41) 12 Ready to Review (down from 15) 03 Ready to Integrate __ = 22 Outstanding Keep it up!! -- View this message in context: http://forum.world.st/Less-than-50-issues-tp4667961p4668520.html Sent from the Pharo Smalltalk mailing list archive

Re: [Pharo-project] Deploying without .changes and .sources files

2013-02-08 Thread Damien Cassou
On Thu, Feb 7, 2013 at 5:22 PM, Igor Stasenko siguc...@gmail.com wrote: just checked the settings.. it should email me :/ you can add #pharo too -- Damien Cassou http://damiencassou.seasidehosting.st Success is the ability to go from one failure to another without losing enthusiasm. Winston

[Pharo-project] [update 2.0] #20526

2013-02-08 Thread Esteban Lorenzano
20526 - Issue 7284: Cannot run gofer load twice = Error: cannot remove non empty category http://code.google.com/p/pharo/issues/detail?can=2q=7284 (part 1) Diff information: http://ss3.gemstone.com/ss/Pharo20/RPackage-Core-EstebanLorenzano.209.diff

[Pharo-project] [update 2.0] #20527

2013-02-08 Thread Esteban Lorenzano
20527 - Issue 7284: Cannot run gofer load twice = Error: cannot remove non empty category http://code.google.com/p/pharo/issues/detail?can=2q=7284 (part 2) Diff information: http://ss3.gemstone.com/ss/Pharo20/RPackage-Core-EstebanLorenzano.210.diff

Re: [Pharo-project] Adding SCTP support to the VM/Network-Kernel

2013-02-08 Thread Frank Shearar
On 29 January 2013 12:21, Holger Hans Peter Freyther hol...@freyther.de wrote: Hi, I require SCTP support for my work. I have implemented very basic support in the unix version of the SocketPlugin[1], made modifications to the CMake generation, the VMMaker part of the SocketPlugin and the

[Pharo-project] [update 2.0] #20528

2013-02-08 Thread Marcus Denker
20528 - Issue 7460: Icons for TestCase in Nautilus, after a clean for production http://code.google.com/p/pharo/issues/detail?id=7460 Issue 7457: safe UsersManager usage in Monticello http://code.google.com/p/pharo/issues/detail?id=7457 Issue 6737:

Re: [Pharo-project] Adding SCTP support to the VM/Network-Kernel

2013-02-08 Thread Igor Stasenko
On 29 January 2013 18:52, Stéphane Ducasse stephane.duca...@inria.fr wrote: Hi, I require SCTP support for my work. I have implemented very basic support in the unix version of the SocketPlugin[1], made modifications to the CMake generation, the VMMaker part of the SocketPlugin and the

[Pharo-project] [update 2.0] #20529

2013-02-08 Thread Marcus Denker
20529 - Issue 7269: Code Critic automatically adds class without permission http://code.google.com/p/pharo/issues/detail?id=7269 Issue 7238: LazyListMorphselectionFrameForRow: fails with a should not happen from Rectangleintersect:ifNone:

Re: [Pharo-project] [update 2.0] #20529

2013-02-08 Thread Sven Van Caekenberghe
On 08 Feb 2013, at 15:57, Marcus Denker marcus.den...@inria.fr wrote: 20529 - Issue 7269: Code Critic automatically adds class without permission http://code.google.com/p/pharo/issues/detail?id=7269 ;-) Issue 7238: LazyListMorphselectionFrameForRow: fails with a should not

Re: [Pharo-project] Adding SCTP support to the VM/Network-Kernel

2013-02-08 Thread Holger Hans Peter Freyther
On Fri, Feb 08, 2013 at 04:18:30PM +0200, Igor Stasenko wrote: yes, we need some tests and examples. sure. The issue is that not every OS is supporting SCTP. Can you point me to a test that is skipped depending on VM support? I will then update the package. holger

Re: [Pharo-project] Adding SCTP support to the VM/Network-Kernel

2013-02-08 Thread Holger Hans Peter Freyther
On Fri, Feb 08, 2013 at 01:24:58PM +, Frank Shearar wrote: Dear Frank, I'm very interested in seeing SCTP support in _all_ the VMs. Would you mind telling vm-dev about your work? I am afraid that you have lost me. I assume vm-dev is a mailinglist? Could you point me to mailinglist

[Pharo-project] [update 2.0] #20530

2013-02-08 Thread Marcus Denker
20530 - Issue 7461: Failing Tests: ClassQueryTest#testReferencedClasses http://code.google.com/p/pharo/issues/detail?id=7461 Issue 7293: [BUG]: Spotlight should handle packages http://code.google.com/p/pharo/issues/detail?id=7293 Issue 7090:

Re: [Pharo-project] Adding SCTP support to the VM/Network-Kernel

2013-02-08 Thread Holger Hans Peter Freyther
On Fri, Feb 08, 2013 at 04:18:24PM +0100, Holger Hans Peter Freyther wrote: On Fri, Feb 08, 2013 at 04:18:30PM +0200, Igor Stasenko wrote: yes, we need some tests and examples. sure. The issue is that not every OS is supporting SCTP. Can you point me to a test that is skipped depending on

Re: [Pharo-project] Adding SCTP support to the VM/Network-Kernel

2013-02-08 Thread Frank Shearar
On 8 February 2013 15:19, Holger Hans Peter Freyther hol...@freyther.de wrote: On Fri, Feb 08, 2013 at 01:24:58PM +, Frank Shearar wrote: Dear Frank, I'm very interested in seeing SCTP support in _all_ the VMs. Would you mind telling vm-dev about your work? I am afraid that you have

[Pharo-project] New Issue Tracker

2013-02-08 Thread Camillo Bruni
With the recent announcement of google code to shut down their public API I see a major functionality gone for our project. https://code.google.com/p/support/wiki/IssueTrackerAPI I would like to extend the functionality of our monkey, so it will become more intelligent: - give

Re: [Pharo-project] Things i am working on now

2013-02-08 Thread Stéphane Ducasse
Thanks igor. We all know that some work is boring :) and I appreciate that you spend time on it without losing your soul :). Keep your great work and keep some energy for the fun part too :). Stef - building VM on windows - updating VM configs to use new location of NB - fixes to NB for

Re: [Pharo-project] Things i am working on now

2013-02-08 Thread Stéphane Ducasse
Igor I would like to try on my new machine because may be if there is a large difference with yours we can plan to buy one with an SSD and recycle yours. Does anybody have an idea if this is worth? Stef pff... it finally built.. [ 99%] Building C object

Re: [Pharo-project] Things i am working on now

2013-02-08 Thread Tudor Girba
Having an SSD? From my point of view, it's the best investment you can make in a machine these days. Cheers, Doru On Feb 8, 2013, at 9:12 PM, Stéphane Ducasse stephane.duca...@inria.fr wrote: Igor I would like to try on my new machine because may be if there is a large difference with

Re: [Pharo-project] [update 2.0] #20529

2013-02-08 Thread Stéphane Ducasse
20529 - Issue 7269: Code Critic automatically adds class without permission http://code.google.com/p/pharo/issues/detail?id=7269 ;-) Simon is improving the tools. He was fixing a bug and should release a new and better version. Stef Issue 7238:

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Frank Shearar
On 8 February 2013 19:51, Camillo Bruni camillobr...@gmail.com wrote: With the recent announcement of google code to shut down their public API I see a major functionality gone for our project. https://code.google.com/p/support/wiki/IssueTrackerAPI I would like to extend the

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Esteban A. Maringolo
I would go for GitHub, its exposition is really good for the project. But if file attachments (other than pictures) is a showstopper, then... I would suggest: * Mantis (PHP Based, but with a SOAP API) http://mantisbt.org/ We've been using it in our company since 7 years ago, and it has proven to

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Camillo Bruni
On 2013-02-08, at 21:19, Frank Shearar frank.shea...@gmail.com wrote: On 8 February 2013 19:51, Camillo Bruni camillobr...@gmail.com wrote: With the recent announcement of google code to shut down their public API I see a major functionality gone for our project.

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Camillo Bruni
On 2013-02-08, at 21:23, Esteban A. Maringolo emaring...@gmail.com wrote: I would go for GitHub, its exposition is really good for the project. But if file attachments (other than pictures) is a showstopper, then... it is a show-stopper for now. A future development cycle might solve this,

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Stéphane Ducasse
On Feb 8, 2013, at 9:47 PM, Camillo Bruni wrote: On 2013-02-08, at 21:23, Esteban A. Maringolo emaring...@gmail.com wrote: I would go for GitHub, its exposition is really good for the project. But if file attachments (other than pictures) is a showstopper, then... it is a show-stopper

Re: [Pharo-project] FileTree

2013-02-08 Thread Camillo Bruni
On 2013-02-07, at 14:17, Sven Van Caekenberghe s...@stfx.eu wrote: Loading FileTree like this (I assume this is the official way): Gofer new url: 'http://ss3.gemstone.com/ss/FileTree'; package: 'ConfigurationOfFileTree'; load. ((Smalltalk at: #ConfigurationOfFileTree)

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Esteban A. Maringolo
(regarding Mantis) 2013/2/8 Stéphane Ducasse stephane.duca...@inria.fr: we used it for squeak and I never liked it. It is ugly as it gets, I don't like its appearance either. I won't argue on that :) But it is reliable, flexible and full of features. We talked about migrating to JIRA, but we

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Camillo Bruni
On 2013-02-08, at 21:58, Esteban A. Maringolo emaring...@gmail.com wrote: (regarding Mantis) 2013/2/8 Stéphane Ducasse stephane.duca...@inria.fr: we used it for squeak and I never liked it. It is ugly as it gets, I don't like its appearance either. I won't argue on that :) But it is

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Benjamin Pollack
On Fri, Feb 8, 2013, at 04:04 PM, Camillo Bruni wrote: On 2013-02-08, at 21:58, Esteban A. Maringolo emaring...@gmail.com wrote: (regarding Mantis) 2013/2/8 Stéphane Ducasse stephane.duca...@inria.fr: we used it for squeak and I never liked it. It is ugly as it gets, I don't

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Camillo Bruni
On 2013-02-08, at 22:10, Benjamin Pollack benja...@bitquabit.com wrote: On Fri, Feb 8, 2013, at 04:04 PM, Camillo Bruni wrote: On 2013-02-08, at 21:58, Esteban A. Maringolo emaring...@gmail.com wrote: (regarding Mantis) 2013/2/8 Stéphane Ducasse stephane.duca...@inria.fr: we used it

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Marcus Denker
On Feb 8, 2013, at 10:00 PM, Esteban A. Maringolo emaring...@gmail.com wrote: (regarding Mantis) 2013/2/8 Stéphane Ducasse stephane.duca...@inria.fr: we used it for squeak and I never liked it. It is ugly as it gets, I don't like its appearance either. I won't argue on that :) But it

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Eliot Miranda
On Fri, Feb 8, 2013 at 2:22 PM, Marcus Denker marcus.den...@inria.frwrote: On Feb 8, 2013, at 10:00 PM, Esteban A. Maringolo emaring...@gmail.com wrote: (regarding Mantis) 2013/2/8 Stéphane Ducasse stephane.duca...@inria.fr: we used it for squeak and I never liked it. It is ugly

Re: [Pharo-project] Less than 50 issues!

2013-02-08 Thread Sean P. DeNigris
Current stats: 27 Open 2.0 Issues (down from 41) [1] 02 Ready to Review (down from 15) [2] 01 Ready to Integrate [3] __ = 22 Outstanding [4] Less than half of the original 50 left!! What a great sprint :) [1] http://code.google.com/p/pharo/issues/list?can=2q=Milestone%3D2.0 [2]

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Camillo Bruni
On 2013-02-08, at 23:30, Eliot Miranda eliot.mira...@gmail.com wrote: On Fri, Feb 8, 2013 at 2:22 PM, Marcus Denker marcus.den...@inria.frwrote: On Feb 8, 2013, at 10:00 PM, Esteban A. Maringolo emaring...@gmail.com wrote: (regarding Mantis) 2013/2/8 Stéphane Ducasse

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Marcus Denker
On Feb 8, 2013, at 10:10 PM, Benjamin Pollack benja...@bitquabit.com wrote: Fog Creek would be happy to provide all of you with a free FogBugz On Demand account. It has a good API, it has file attachments, it has custom workflows, triggers, and plugins, and we're about to release a

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Marcus Denker
On Feb 8, 2013, at 11:34 PM, Camillo Bruni camillobr...@gmail.com wrote: That's not a valid comparison. In Squeak trunk bugs are getting fixed at a much higher rate Are you sure? The list that Craig showed at Fosdem was rather short. Marcus

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Eliot Miranda
On Fri, Feb 8, 2013 at 2:41 PM, Marcus Denker marcus.den...@inria.frwrote: On Feb 8, 2013, at 11:34 PM, Camillo Bruni camillobr...@gmail.com wrote: That's not a valid comparison. In Squeak trunk bugs are getting fixed at a much higher rate Are you sure? The list that Craig showed

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Frank Shearar
On 8 February 2013 22:41, Marcus Denker marcus.den...@inria.fr wrote: On Feb 8, 2013, at 11:34 PM, Camillo Bruni camillobr...@gmail.com wrote: That's not a valid comparison. In Squeak trunk bugs are getting fixed at a much higher rate Are you sure? The list that Craig showed at Fosdem

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Marcus Denker
On Feb 8, 2013, at 11:49 PM, Frank Shearar frank.shea...@gmail.com wrote: On 8 February 2013 22:41, Marcus Denker marcus.den...@inria.fr wrote: On Feb 8, 2013, at 11:34 PM, Camillo Bruni camillobr...@gmail.com wrote: That's not a valid comparison. In Squeak trunk bugs are getting

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Sven Van Caekenberghe
On 08 Feb 2013, at 22:10, Benjamin Pollack benja...@bitquabit.com wrote: On Fri, Feb 8, 2013, at 04:04 PM, Camillo Bruni wrote: On 2013-02-08, at 21:58, Esteban A. Maringolo emaring...@gmail.com wrote: (regarding Mantis) 2013/2/8 Stéphane Ducasse stephane.duca...@inria.fr: we used it

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Frank Shearar
On 8 February 2013 22:51, Marcus Denker marcus.den...@inria.fr wrote: On Feb 8, 2013, at 11:49 PM, Frank Shearar frank.shea...@gmail.com wrote: On 8 February 2013 22:41, Marcus Denker marcus.den...@inria.fr wrote: On Feb 8, 2013, at 11:34 PM, Camillo Bruni camillobr...@gmail.com wrote:

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Marcus Denker
On Feb 8, 2013, at 11:59 PM, Sven Van Caekenberghe s...@stfx.eu wrote: Fog Creek would be happy to provide all of you with a free FogBugz On Demand account. It has a good API, it has file attachments, it has custom workflows, triggers, and plugins, and we're about to release a version

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Marcus Denker
On Feb 9, 2013, at 12:01 AM, Frank Shearar frank.shea...@gmail.com wrote: On 8 February 2013 22:51, Marcus Denker marcus.den...@inria.fr wrote: On Feb 8, 2013, at 11:49 PM, Frank Shearar frank.shea...@gmail.com wrote: On 8 February 2013 22:41, Marcus Denker marcus.den...@inria.fr wrote:

[Pharo-project] [update 2.0] #20531

2013-02-08 Thread Marcus Denker
20531 - Issue 7464: Code critic - codecritc browser http://code.google.com/p/pharo/issues/detail?id=7464 Issue 7102: Dont insert spaces between SmartCharacters http://code.google.com/p/pharo/issues/detail?id=7102 Issue 7466: PluggableTextMorph

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Benjamin
I wanna play too :) Ben On Feb 9, 2013, at 12:05 AM, Marcus Denker marcus.den...@inria.fr wrote: On Feb 8, 2013, at 11:59 PM, Sven Van Caekenberghe s...@stfx.eu wrote: Fog Creek would be happy to provide all of you with a free FogBugz On Demand account. It has a good API, it has file

Re: [Pharo-project] Things i am working on now

2013-02-08 Thread Igor Stasenko
On 8 February 2013 22:12, Stéphane Ducasse stephane.duca...@inria.fr wrote: Igor I would like to try on my new machine because may be if there is a large difference with yours we can plan to buy one with an SSD and recycle yours. Does anybody have an idea if this is worth? i don't know.. i

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Camillo Bruni
in you are... ;) On 2013-02-09, at 00:12, Benjamin benjamin.vanryseghem.ph...@gmail.com wrote: I wanna play too :) Ben On Feb 9, 2013, at 12:05 AM, Marcus Denker marcus.den...@inria.fr wrote: On Feb 8, 2013, at 11:59 PM, Sven Van Caekenberghe s...@stfx.eu wrote: Fog Creek would be

Re: [Pharo-project] Things i am working on now

2013-02-08 Thread Camillo Bruni
On 2013-02-09, at 00:12, Igor Stasenko siguc...@gmail.com wrote: On 8 February 2013 22:12, Stéphane Ducasse stephane.duca...@inria.fr wrote: Igor I would like to try on my new machine because may be if there is a large difference with yours we can plan to buy one with an SSD and recycle

Re: [Pharo-project] Less than 50 issues!

2013-02-08 Thread Marcus Denker
On Feb 8, 2013, at 11:30 PM, Sean P. DeNigris s...@clipperadams.com wrote: Current stats: 27 Open 2.0 Issues (down from 41) [1] 02 Ready to Review (down from 15) [2] 01 Ready to Integrate [3] __ = 22 Outstanding [4] Less than half of the original 50 left!! What a great sprint :)

Re: [Pharo-project] [update 2.0] #20531

2013-02-08 Thread Camillo Bruni
yes! smart chars and completion got usable again!! thanks guys! On 2013-02-09, at 00:12, Marcus Denker marcus.den...@inria.fr wrote: 20531 - Issue 7464: Code critic - codecritc browser http://code.google.com/p/pharo/issues/detail?id=7464 Issue 7102: Dont insert

Re: [Pharo-project] Things i am working on now

2013-02-08 Thread Frank Shearar
On 8 February 2013 23:12, Igor Stasenko siguc...@gmail.com wrote: On 8 February 2013 22:12, Stéphane Ducasse stephane.duca...@inria.fr wrote: Igor I would like to try on my new machine because may be if there is a large difference with yours we can plan to buy one with an SSD and recycle

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Benjamin Pollack
On Fri, Feb 8, 2013, at 06:14 PM, Camillo Bruni wrote: in you are... ;) On 2013-02-09, at 00:12, Benjamin benjamin.vanryseghem.ph...@gmail.com wrote: I wanna play too :) Ben On Feb 9, 2013, at 12:05 AM, Marcus Denker marcus.den...@inria.fr wrote: On Feb 8, 2013, at 11:59

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Camillo Bruni
On 2013-02-09, at 00:24, Benjamin Pollack benja...@bitquabit.com wrote: On Fri, Feb 8, 2013, at 06:14 PM, Camillo Bruni wrote: in you are... ;) On 2013-02-09, at 00:12, Benjamin benjamin.vanryseghem.ph...@gmail.com wrote: I wanna play too :) Ben On Feb 9, 2013, at 12:05 AM, Marcus

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Benjamin
I think we can all say a big thank you :) Ben On Feb 9, 2013, at 12:27 AM, Camillo Bruni camillobr...@gmail.com wrote: On 2013-02-09, at 00:24, Benjamin Pollack benja...@bitquabit.com wrote: On Fri, Feb 8, 2013, at 06:14 PM, Camillo Bruni wrote: in you are... ;) On 2013-02-09, at

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Eliot Miranda
On Fri, Feb 8, 2013 at 3:10 PM, Marcus Denker marcus.den...@inria.frwrote: On Feb 9, 2013, at 12:01 AM, Frank Shearar frank.shea...@gmail.com wrote: On 8 February 2013 22:51, Marcus Denker marcus.den...@inria.fr wrote: On Feb 8, 2013, at 11:49 PM, Frank Shearar frank.shea...@gmail.com

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Benjamin
On Feb 9, 2013, at 1:06 AM, Eliot Miranda eliot.mira...@gmail.com wrote: On Fri, Feb 8, 2013 at 3:10 PM, Marcus Denker marcus.den...@inria.fr wrote: On Feb 9, 2013, at 12:01 AM, Frank Shearar frank.shea...@gmail.com wrote: On 8 February 2013 22:51, Marcus Denker

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Eliot Miranda
Hi Ben, please include the squeak list in this discussion It's clearly relevant to the whole community. On Fri, Feb 8, 2013 at 4:12 PM, Benjamin benjamin.vanryseghem.ph...@gmail.com wrote: On Feb 9, 2013, at 1:06 AM, Eliot Miranda eliot.mira...@gmail.com wrote: On Fri, Feb 8, 2013

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Craig Latta
Hi-- Eliot writes: That's not a valid comparison. In Squeak trunk bugs are getting fixed at a much higher rate Marcus responds: Are you sure? The list that Craig showed at Fosdem was rather short. Hey, I only showed the usual short list of highlights from the Squeak 4.4

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Marcus Denker
On Fri, Feb 8, 2013 at 11:49 PM, Frank Shearar frank.shea...@gmail.com wrote: Well, obviously Squeak is a rather smaller community, so that's hardly surprising. What is cause and what is effect? -- Marcus Denker -- den...@acm.org http://www.marcusdenker.de

Re: [Pharo-project] [update 2.0] #20529

2013-02-08 Thread Sean P. DeNigris
Marcus Denker-4 wrote Issue 7269: Code Critic automatically adds class without permission http://code.google.com/p/pharo/issues/detail?id=7269 Issue 7238: LazyListMorphselectionFrameForRow: fails with a should not happen from Rectangleintersect:ifNone:

Re: [Pharo-project] New Issue Tracker

2013-02-08 Thread Sean P. DeNigris
Benjamin Van Ryseghem-2 wrote I think we can all say a big thank you :) Yes, thank you for this amazing gift :) -- View this message in context: http://forum.world.st/New-Issue-Tracker-tp4668700p4668799.html Sent from the Pharo Smalltalk mailing list archive at Nabble.com.

Re: [Pharo-project] OneClick for 2.0 available again

2013-02-08 Thread Sean P. DeNigris
Marcus Denker-4 wrote https://ci.inria.fr/pharo/job/Pharo-2.0/lastSuccessfulBuild/artifact/Pharo2.0-one-click.zip What if we set up the files.pharo.org link for this, and just change it to point to the static file server when it's ready. This way we won't have to keep changing it, and Jenkins

Re: [Pharo-project] Soup works in 2.0

2013-02-08 Thread Sean P. DeNigris
Sven Van Caekenberghe-2 wrote I would consider Soup classfromUrl: urlObject urlObject asUrl retrieveContents. This looks good, but if the user has a ZnUrl, it DNU #asUrl... otherwise, it will work for strings and Url objects. -- View this message in context: