Re: [Pharo-users] NeoCSV on Irregular Files

2017-07-29 Thread Sean P. DeNigris
Sven Van Caekenberghe-2 wrote > creating new readers for each section is one option Thank you both. This worked quite well (23 LOC) vs. parsing the raw file with NeoCSV and then trying to clean up and interpret the resulting arrays (126 LOC). - Cheers, Sean -- View this message in context:

[Pharo-users] Pharo 61 crashes on iceberg history

2017-07-29 Thread Julián Maestri
I'm almost sure this is not the right place to report it. Im having a vm crash when looking at the history of a repository on iceberg. urpharo: malloc.c:2394: sysmalloc: Assertion `(old_top == initial_top (av) > && old_size == 0) || ((unsigned long) (old_size) >= MINSIZE && prev_inuse > (old_top)

[Pharo-users] Adaptable Tree-Based Cherry-Pick Tool

2017-07-29 Thread Sean P. DeNigris
Do we have something like a merge UI that can be used on an underlying model that may have nothing to do with VCS? - Cheers, Sean -- View this message in context: http://forum.world.st/Adaptable-Tree-Based-Cherry-Pick-Tool-tp4957766.html Sent from the Pharo Smalltalk Users mailing list arch

Re: [Pharo-users] Pharo Seaside RESTful services pragma question

2017-07-29 Thread Greg Hutchinson
That worked - thanks very much. On 29 July 2017 at 16:13, Esteban A. Maringolo wrote: > Did you try setting the pragma in the list method? > Esteban A. Maringolo > > > 2017-07-28 18:40 GMT-03:00 Greg Hutchinson >: > > I am new to Pharo/Seaside and it has been a long time since I have used > >

Re: [Pharo-users] Pharo Seaside RESTful services pragma question

2017-07-29 Thread Esteban A. Maringolo
Did you try setting the pragma in the list method? Esteban A. Maringolo 2017-07-28 18:40 GMT-03:00 Greg Hutchinson : > I am new to Pharo/Seaside and it has been a long time since I have used > Smalltalk. I am trying to make a RESTful service and can’t get the pragmas > to work the way I think it

[Pharo-users] Iceberg: SCP urls are not limited to 'git@'

2017-07-29 Thread Herby Vojčík
Hello! Once I finally added remote to my localgit repo, I cannot build my image any more because Iceberg fails to parse the url. After first error I tried ssh://, but it is protected as well. The problem is, g...@host.site is just the way to say which user to log in via ssh into the host. We

Re: [Pharo-users] hard reset class variable state

2017-07-29 Thread Ben Coman
thx guille. On Sat, Jul 29, 2017 at 9:40 PM, Guillermo Polito wrote: > Actually class variables are stored in a dictionary in a class. You can > access that by saying: > > aClass classPool. > > So resetting all values of a class variable could be easily done with > something like > > aClass c

Re: [Pharo-users] hard reset class variable state

2017-07-29 Thread Guillermo Polito
Actually class variables are stored in a dictionary in a class. You can access that by saying: aClass classPool. So resetting all values of a class variable could be easily done with something like aClass classPool keys do: [ :k | aClass classPool at: k put: nil ]. Maybe that could be a nice

Re: [Pharo-users] Iceberg needs to gracefully revert to readonly

2017-07-29 Thread Esteban Lorenzano
> On 29 Jul 2017, at 10:16, Esteban Lorenzano wrote: > > >> On 28 Jul 2017, at 09:37, Herby Vojčík wrote: >> >> Hello! >> >> IMNSHO, now that Iceberg has three vendor-specific protocol (and before as >> well, because of people like me who do not have github account), Iceberg >> needs to gr

Re: [Pharo-users] Iceberg needs to gracefully revert to readonly

2017-07-29 Thread Esteban Lorenzano
> On 28 Jul 2017, at 09:37, Herby Vojčík wrote: > > Hello! > > IMNSHO, now that Iceberg has three vendor-specific protocol (and before as > well, because of people like me who do not have github account), Iceberg > needs to gracefully revert to readonly access in case credentials are not > p

[Pharo-users] hard reset class variable state

2017-07-29 Thread Ben Coman
I want to reset all the class variables in an application to nil. I've got as far as finding them, for example... packages := RPackageOrganizer default packages select:[:p| (p name includesSubstring: 'PharoLauncher') ]. stateToReset := packages flatCollect: [:p| p definedClasses select:[:c | (c cl