Re: [Pharo-users] Protocol selection erratic behaviour

2015-06-03 Thread Marcus Denker
> On 03 Jun 2015, at 12:29, Sergio Fedi wrote: > > When creating a method in the debugger, > when the select protocol pop up window appears, > sometimes it finds the protocol we want (getter) > and sometimes it doesn't and we have to type it all > and add it as if it was new. > > Is this someth

[Pharo-users] loading Coral from SmalltalkHub

2015-06-03 Thread Francisco Garau
Hello, I've tried loading Coral by following the below instructions in its website but they failed when trying to load Readline. Gofer new url: 'http://ss3.gemstone.com/ss/coral'; package: 'ConfigurationOfCoral'; load. Configuration

Re: [Pharo-users] Timezone offset in Date, why?

2015-06-03 Thread Esteban A. Maringolo
2015-06-03 17:57 GMT-03:00 Stephan Eggermont : > On 03/06/15 22:21, Esteban A. Maringolo wrote: >> >> 2015-06-03 15:36 GMT-03:00 Stephan Eggermont : >>> For performance reasons you'll probably often want to map to smallint >>> value objects. >> And lose the date abstraction the database provides me

Re: [Pharo-users] Timezone offset in Date, why?

2015-06-03 Thread Stephan Eggermont
On 03/06/15 22:21, Esteban A. Maringolo wrote: 2015-06-03 15:36 GMT-03:00 Stephan Eggermont : For performance reasons you'll probably often want to map to smallint value objects. And lose the date abstraction the database provides me with? It is up to the database how to optimize the store

Re: [Pharo-users] Timezone offset in Date, why?

2015-06-03 Thread Esteban A. Maringolo
2015-06-03 17:20 GMT-03:00 Stephan Eggermont : > On 03/06/15 20:15, Esteban A. Maringolo wrote: >> >> I refer Postgres datatypes because I find them to have a good criteria >> based on a huge user base and because is what raised the issue I'm >> dealing with now. > I like the work by Richard Snodg

Re: [Pharo-users] Timezone offset in Date, why?

2015-06-03 Thread Esteban A. Maringolo
2015-06-03 15:36 GMT-03:00 Stephan Eggermont : > On 03-06-15 20:15, Esteban A. Maringolo wrote: >> >> I refer Postgres datatypes because I find them to have a good criteria >> based on a huge user base and because is what raised the issue I'm >> dealing with now. > > > SQL databases are well-known

Re: [Pharo-users] Timezone offset in Date, why?

2015-06-03 Thread Stephan Eggermont
On 03/06/15 20:15, Esteban A. Maringolo wrote: I refer Postgres datatypes because I find them to have a good criteria based on a huge user base and because is what raised the issue I'm dealing with now. I like the work by Richard Snodgrass. His "Developing Time-Oriented Database Applications in

Re: [Pharo-users] Timezone offset in Date, why?

2015-06-03 Thread Esteban A. Maringolo
2015-06-03 16:13 GMT-03:00 Sven Van Caekenberghe : >> But is unnecesary heretic. Date is a "calendar date", not a point in >> time. "May 3rd" is the same "date" as "May 3rd" whether you are in >> Sydney or Houston. >> ps: ISO 8601 doesn't mention anything about "date" timezones. In fact >> the wo

Re: [Pharo-users] Timezone offset in Date, why?

2015-06-03 Thread Sergio Fedi
> Time is time. No matter "where" it happens. The theory of relativity disagrees

Re: [Pharo-users] Reddit example

2015-06-03 Thread Sven Van Caekenberghe
> On 03 Jun 2015, at 20:24, > wrote: > > Thanks for the pointers. I've got it working in Pharo 4 but had to change > this method as I was getting a database session connection error. It appears > to be losing the Glorp session, so I changed this class method thus: > > RedditDatabaseResource

Re: [Pharo-users] Timezone offset in Date, why?

2015-06-03 Thread Sven Van Caekenberghe
> On 03 Jun 2015, at 20:10, Esteban A. Maringolo wrote: > > 2015-06-03 12:05 GMT-03:00 Sven Van Caekenberghe : >>> On 03 Jun 2015, at 16:57, Ben Coman wrote: >>> I've observed several of date/time discussions that I didn't really >>> follow all the details, but my first thought here is that Dat

Re: [Pharo-users] Pharo Video Tutorial: Package Tags

2015-06-03 Thread Sean P. DeNigris
Sergio Fedi wrote > If something is a tag, then you should be able to apply multiple tags to > something. > > If not, then they are, as you say, subpackages. Agreed. Actually, tags are more interesting as they would be much more valuable to users, who want a logical domain view of the system. Cur

Re: [Pharo-users] Timezone offset in Date, why?

2015-06-03 Thread Stephan Eggermont
On 03-06-15 20:15, Esteban A. Maringolo wrote: I refer Postgres datatypes because I find them to have a good criteria based on a huge user base and because is what raised the issue I'm dealing with now. SQL databases are well-known to have ignored the standards for dealing with times and dates

[Pharo-users] Reddit example

2015-06-03 Thread recursive68
Thanks for the pointers. I've got it working in Pharo 4 but had to change this method as I was getting a database session connection error. It appears to be losing the Glorp session, so I changed this class method thus: RedditDatabaseResource login>> "^ DefaultLogin ifNil: [ DefaultLogin := self c

Re: [Pharo-users] Timezone offset in Date, why?

2015-06-03 Thread Esteban A. Maringolo
2015-06-03 15:10 GMT-03:00 Esteban A. Maringolo : > Time is time. No matter "where" it happens. Looking at Postgres documentation [1] about Date/Time types, they have a time with timezone and time without it. The default is without. There is no "date with timezone" type. I refer Postgres datatyp

Re: [Pharo-users] Timezone offset in Date, why?

2015-06-03 Thread Esteban A. Maringolo
2015-06-03 12:05 GMT-03:00 Sven Van Caekenberghe : >> On 03 Jun 2015, at 16:57, Ben Coman wrote: >> I've observed several of date/time discussions that I didn't really >> follow all the details, but my first thought here is that Date, Time, >> and DateAndTime are three separate concepts. Shouldn'

Re: [Pharo-users] Timezone offset in Date, why?

2015-06-03 Thread p...@highoctane.be
Le 3 juin 2015 17:05, "Sven Van Caekenberghe" a écrit : > > > > On 03 Jun 2015, at 16:57, Ben Coman wrote: > > > > On Wed, Jun 3, 2015 at 8:36 PM, Sven Van Caekenberghe wrote: > >> > >>> On 03 Jun 2015, at 04:20, Esteban A. Maringolo wrote: > >>> > >>> I'm debugging the PostgresV3 driver for GL

Re: [Pharo-users] Monticello / OS deadlock ?

2015-06-03 Thread Ben Coman
On Tue, Jun 2, 2015 at 5:10 PM, Jose San Leandro wrote: > Hi, > > In one of our projects we are using Pharo4. The image gets built by gradle, > which loads the Metacello project. Sometimes, we see the build process > hangs. It just don't progress. > > When adding local gitfiletree:// dependencies

Re: [Pharo-users] Timezone offset in Date, why?

2015-06-03 Thread Sven Van Caekenberghe
> On 03 Jun 2015, at 16:57, Ben Coman wrote: > > On Wed, Jun 3, 2015 at 8:36 PM, Sven Van Caekenberghe wrote: >> >>> On 03 Jun 2015, at 04:20, Esteban A. Maringolo wrote: >>> >>> I'm debugging the PostgresV3 driver for GLORP, and among other test >>> failures, there is a kind that particular

Re: [Pharo-users] Monticello / OS deadlock ?

2015-06-03 Thread Jose San Leandro
Unfortunately it doesn't fix it, or at least I get the same sympthoms. Sending SIGUSR1 prints this: SIGUSR1 Wed Jun 3 16:53:50 2015 /home/chous/toolbox/pharo-4.0/pharo-vm/pharo pharo VM version: 3.9-7 #1 Thu Apr 2 00:51:45 CEST 2015 gcc 4.6.3 [Production ITHB VM] Built from: NBCoInterpreter N

Re: [Pharo-users] Timezone offset in Date, why?

2015-06-03 Thread Ben Coman
On Wed, Jun 3, 2015 at 8:36 PM, Sven Van Caekenberghe wrote: > >> On 03 Jun 2015, at 04:20, Esteban A. Maringolo wrote: >> >> I'm debugging the PostgresV3 driver for GLORP, and among other test >> failures, there is a kind that particularly bugs me: two identical >> dates do not match, the reason

Re: [Pharo-users] Bug in Open Workspace from File-Browser?

2015-06-03 Thread Ben Coman
Or do we now want such to open in Playground? btw, these are the relevant methods. FileList>>FileList>>viewContentsInWorkspace FileList>>viewContentsInWorkspace cheers -ben On Wed, Jun 3, 2015 at 6:57 PM, volkert wrote: > The File Browser has a Context Menu "Workspace with Contents". It opens a

Re: [Pharo-users] DNS changes files.phao.org today 16:30 local time

2015-06-03 Thread Marcus Denker
I did the change. the DNS should now point to 128.93.162.72 > On 03 Jun 2015, at 14:56, Marcus Denker wrote: > > Hi, > > 16:30 local time we will do some DNS related config change for > files.pharo.org > > Nothing should change due to that normally. > > Marcu

Re: [Pharo-users] Timezone offset in Date, why?

2015-06-03 Thread Sean P. DeNigris
Esteban A. Maringolo wrote > two identical dates do not match, the reason? The internal "start" of > aDate > (Timespan) is a DateAndTime, and as such has a timezone offset. Welcome to hell ;) 12147 Date>>#= fooled by daylight savings time https://pharo.fogbugz.com/default.asp?12147 testEqualDayl

Re: [Pharo-users] DNS changes files.phao.org today 16:30 local time

2015-06-03 Thread Marcus Denker
> On 03 Jun 2015, at 15:04, Stephan Eggermont wrote: > > On 03/06/15 14:56, Marcus Denker wrote: >> 16:30 local time we will do some DNS related config change for >> files.pharo.org >> >> Nothing should change due to that normally. > > Because it is not reachable at th

Re: [Pharo-users] DNS changes files.phao.org today 16:30 local time

2015-06-03 Thread Stephan Eggermont
On 03/06/15 14:56, Marcus Denker wrote: 16:30 local time we will do some DNS related config change for files.pharo.org Nothing should change due to that normally. Because it is not reachable at the moment? Stephan

[Pharo-users] DNS changes files.phao.org today 16:30 local time

2015-06-03 Thread Marcus Denker
Hi, 16:30 local time we will do some DNS related config change for files.pharo.org Nothing should change due to that normally. Marcus

Re: [Pharo-users] Timezone offset in Date, why?

2015-06-03 Thread Sven Van Caekenberghe
> On 03 Jun 2015, at 04:20, Esteban A. Maringolo wrote: > > I'm debugging the PostgresV3 driver for GLORP, and among other test > failures, there is a kind that particularly bugs me: two identical > dates do not match, the reason? The internal "start" of aDate > (Timespan) is a DateAndTime, and

Re: [Pharo-users] Monticello / OS deadlock ?

2015-06-03 Thread David T. Lewis
On Wed, Jun 03, 2015 at 07:05:15AM +0200, Thierry Goubier wrote: > Hi Dave, > > Le 03/06/2015 03:15, David T. Lewis a ?crit : > >Hi Thierry and Jose, > > > >I am reading this thread with interest and will help if I can. > > > >I do have one idea that we have not tried before. I have a theory that

Re: [Pharo-users] Pharo Video Tutorial: Package Tags

2015-06-03 Thread Sergio Fedi
I have several issues with this part of the system. If something is a tag, then you should be able to apply multiple tags to something. If not, then they are, as you say, subpackages. ​

[Pharo-users] Bug in Open Workspace from File-Browser?

2015-06-03 Thread volkert
The File Browser has a Context Menu "Workspace with Contents". It opens an Edit Window (String Morph), but not a Workspace ... Is the Menu-Title wrong or the implementation? BW, Volkert

Re: [Pharo-users] Detecting image (pharo process) hang?

2015-06-03 Thread David
El Wed, 03 Jun 2015 12:33:16 +0200 Stephan Eggermont escribió: > On 03-06-15 12:07, David wrote: > > That could work, but can be time expensive. I already have seaside > > installed (and I am using that) so I may try that. > > > > The only problem I see if that if the image is stalled, it can pass

Re: [Pharo-users] Detecting image (pharo process) hang?

2015-06-03 Thread Craig Johnson
On 03-06-15 12:07, David wrote: That could work, but can be time expensive. I already have seaside installed (and I am using that) so I may try that. The only problem I see if that if the image is stalled, it can pass more time than desired until it times out the http connection. Use threads, o

Re: [Pharo-users] Pharo Video Tutorial: Package Tags

2015-06-03 Thread Dimitris Chloupis
thanks I dont like the name "tag" its too generic. I would prefer something like "Create new sub-package" On Wed, Jun 3, 2015 at 12:43 PM Ben Coman wrote: > On Wed, Jun 3, 2015 at 3:34 PM, Dimitris Chloupis > wrote: > > In this Episode of "Pharo Video Tutorial" we take a look at "Package > tag

Re: [Pharo-users] Detecting image (pharo process) hang?

2015-06-03 Thread Stephan Eggermont
On 03-06-15 12:07, David wrote: That could work, but can be time expensive. I already have seaside installed (and I am using that) so I may try that. The only problem I see if that if the image is stalled, it can pass more time than desired until it times out the http connection. Add a keep-al

Re: [Pharo-users] Pharo Video Tutorial: Package Tags

2015-06-03 Thread Sergio Fedi
Since Tags have a different behaviour than Packages, I think we should. (specially when adding comments, which Packages support and Tags don't) ​

[Pharo-users] Protocol selection erratic behaviour

2015-06-03 Thread Sergio Fedi
When creating a method in the debugger, when the select protocol pop up window appears, sometimes it finds the protocol we want (getter) and sometimes it doesn't and we have to type it all and add it as if it was new. Is this something normal and my expectations are off? Or is this a bug?

Re: [Pharo-users] Detecting image (pharo process) hang?

2015-06-03 Thread David
El Wed, 3 Jun 2015 11:55:17 +0200 Davorin Rusevljan escribió: > On Wed, Jun 3, 2015 at 11:51 AM, David > wrote: > > > I am making a little watchdog (in C++) for spawning forked pharo > > image processes and detecting when they crash (for ex, memory > > exhausted and/or killed) so it can restart

Re: [Pharo-users] Detecting image (pharo process) hang?

2015-06-03 Thread Davorin Rusevljan
On Wed, Jun 3, 2015 at 11:51 AM, David wrote: > I am making a little watchdog (in C++) for spawning forked pharo image > processes and detecting when they crash (for ex, memory exhausted > and/or killed) so it can restart the image. > > It works, but for now I have only 1 remaining thing: > > How

[Pharo-users] Detecting image (pharo process) hang?

2015-06-03 Thread David
I am making a little watchdog (in C++) for spawning forked pharo image processes and detecting when they crash (for ex, memory exhausted and/or killed) so it can restart the image. It works, but for now I have only 1 remaining thing: How can I detect from outside, when pharo process is hanged and

Re: [Pharo-users] Pharo Video Tutorial: Package Tags

2015-06-03 Thread Ben Coman
On Wed, Jun 3, 2015 at 3:34 PM, Dimitris Chloupis wrote: > In this Episode of "Pharo Video Tutorial" we take a look at "Package tags" > and how we can use them to organise our classes and packages to make our > lives easier > > https://www.youtube.com/watch?v=Q2Vwg_0RMVU&list=PLqbtQ7OkSta0ULYAd7Qd

Re: [Pharo-users] pillar remove numbering from some headings

2015-06-03 Thread Damien Cassou
Peter Uhnák writes: > Basically I'm looking for an equivalent of Latex' \subsection*{...}. that's not possible. -- Damien Cassou http://damiencassou.seasidehosting.st "Success is the ability to go from one failure to another without losing enthusiasm." --Winston Churchill

Re: [Pharo-users] Timezone offset in Date, why?

2015-06-03 Thread Sergio Fedi
I'm not sure how I would handle that, but I would take a look at Chalten/Aconcagua on how they do that. ​

Re: [Pharo-users] pillar remove numbering from some headings

2015-06-03 Thread Cyril Ferlicot
Hi Peter, for now Pillar doesn't manage this. I'll take a look at it when I'll work on the Beamer exporter. On 3 June 2015 at 03:20, Peter Uhnák wrote: > Hi, > > is there a way to remove heading numbering for some headings? > > Basically I'm looking for an equivalent of Latex' \subsection*{...}.

[Pharo-users] RWView signalUpdate

2015-06-03 Thread Lusa Nicolas
Hi, I noticed that with the recent changes that you made the view isn't updating anymore so I would like to update it by myself. I saw that in RWView there is the method called signalUpdate which is supposed to update the view but when I call it actually nothing happens. The situation that I ha

Re: [Pharo-users] PUngLite can't query large database

2015-06-03 Thread riverdusty
Hi Paul Yes, the query works on smaller databases. I've created quite a few, one of them was 200MB and that worked! I believe this is some memory/size limit. I'm curious if there is a suitable way to overcome/override this limit. I'm working on another project today but I'll try those suggestions

[Pharo-users] Pharo Video Tutorial: Package Tags

2015-06-03 Thread Dimitris Chloupis
In this Episode of "Pharo Video Tutorial" we take a look at "Package tags" and how we can use them to organise our classes and packages to make our lives easier https://www.youtube.com/watch?v=Q2Vwg_0RMVU&list=PLqbtQ7OkSta0ULYAd7Qdxof851ybh-_m_&index=25