Re: [Pharo-users] Cleaning changes file?

2015-03-09 Thread Marcus Denker
> On 10 Mar 2015, at 07:36, Sven Van Caekenberghe wrote: > > Laura, > > You can do that using the expression: > > PharoChangesCondenser condense > > Although that also means you lose the version history of methods inside your > image. This is typically not done a lot, maybe for production d

Re: [Pharo-users] Cleaning changes file?

2015-03-09 Thread Sven Van Caekenberghe
Laura, You can do that using the expression: PharoChangesCondenser condense Although that also means you lose the version history of methods inside your image. This is typically not done a lot, maybe for production deploy, maybe for release of Pharo itself. Sven > On 10 Mar 2015, at 05:49,

Re: [Pharo-users] Native language support

2015-03-09 Thread Nick Doodka
Hello Marcus. Your patch solves my problem with capital letters. But it raises another trouble - every mouse wheel move or keyboard shortcut like ctrl+key cause next error MessageNotUnderstood:Character>>isArrow. 2015-03-07 12:39 GMT+02:00 Marcus Denker : > I got a mail that suggest a fix: > > ht

Re: [Pharo-users] textsearch in pharo (was: GSoC mentor assistance for FOSSASIA smalltalk projects please)

2015-03-09 Thread Martin Bähr
Excerpts from Martin Bähr's message of 2015-03-10 06:35:00 +0100: > Excerpts from stepharo's message of 2015-03-08 21:06:46 +0100: > > You should have a look at te project made by benjamin Areski because > > with camillo they developed > > a textsearch to searh the entire pharo image fast. > > ca

[Pharo-users] textsearch in pharo (was: GSoC mentor assistance for FOSSASIA smalltalk projects please)

2015-03-09 Thread Martin Bähr
Excerpts from stepharo's message of 2015-03-08 21:06:46 +0100: > You should have a look at te project made by benjamin Areski because > with camillo they developed > a textsearch to searh the entire pharo image fast. can you give a link please? i could not find anything on google. greetings, mar

[Pharo-users] Cleaning changes file?

2015-03-09 Thread Laura Risani
Hi all, Can/should the changes file be somehow cleaned? How do you recommend doing so? Love, Laura

Re: [Pharo-users] Why `aFileReference asString = aFileReference fullName` is false?

2015-03-09 Thread Esteban A. Maringolo
Yo should use #pathString to obtain the full path of the file reference. #asString isn't implemented in FileReference and it's inherited from Object, which delegates it to the default implementation of #printString, which isn't intented to be user friendly, and not for conversion. Regards! Este

Re: [Pharo-users] Why `aFileReference asString = aFileReference fullName` is false?

2015-03-09 Thread Sebastian Sastre
right, and what's the practical use of that? from mobile > On 09/03/2015, at 12:14, Sven Van Caekenberghe wrote: > > The thing before the @ indicates the kind of file system you are on (there > are not just disk based files, but virtual in-memory ones, or in-zip ones). > >> On 09 Mar 2015, at

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

2015-03-09 Thread Offray Vladimir Luna Cárdenas
Peter, Thanks, that was what I was looking for. Cheers, Offray El 07/03/15 a las 14:07, Peter Uhnák escribió: I'm making some progress with DockingBarMorph, but I can't find how to delete a particular bar and "World deleteDockingBars." deletes also the windows taskbar. So there

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

2015-03-09 Thread Tudor Girba
Hi Stephan, This looks like deja-vu :). Let's have the conversation on the other thread that deals specifically with the issue of fine grained configurations. Cheers, Doru On Mon, Mar 9, 2015 at 11:32 PM, Stephan Eggermont wrote: > On 07/03/15 10:42, Tudor Girba wrote: > >> Ok. I will add a

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

2015-03-09 Thread Stephan Eggermont
On 07/03/15 10:42, Tudor Girba wrote: Ok. I will add a dependency from Pillar-Pharo-Tools to PetitParser core. Actually, I would rather prefer to create a separate ConfigurationOfPillarTools that adds the Pillar-Pharo-Tools and the PetitParser dependency. What that be Ok? No that is not ok. We

Re: [Pharo-users] Dealing with multiple cases of a string while keeping code short and OOP friendly

2015-03-09 Thread Sean P. DeNigris
kilon.alios wrote > oh Sean this so beautiful and elegant > class := self subclasses detect: [ :c | c pythonClassName = > pythonClassName Yes I like/use this pattern a lot! I think I learned it from "A Mentoring Course on Smalltalk" - Cheers, Sean -- View this message in context: http://

Re: [Pharo-users] Dealing with multiple cases of a string while keeping code short and OOP friendly

2015-03-09 Thread kilon alios
oh Sean this so beautiful and elegant, exactly what I was looking for. Thank you very much. The rest of your code is what I was thinking doing with regex instead. This was the part I was not aware of class := self subclasses detect: [ :c | c pythonClassName = pythonClassName On Mon, Mar 9,

Re: [Pharo-users] Notebook/slideshow morph

2015-03-09 Thread Offray Vladimir Luna Cárdenas
Hi Blake, One of the first things I did on Squak/Etoys as a presentation... looong time ago[0], but I think it can be opened again in current vms. Now I'm doing some kind of notebook in Moose and scholarly markdown, but they are not for slides, but more related to book alike documents, links

Re: [Pharo-users] Dealing with multiple cases of a string while keeping code short and OOP friendly

2015-03-09 Thread Sean P. DeNigris
kilon.alios wrote > Is this possible ? Is this a smart way ? How would you do it ? IIUC I would parse just enough to separate the class name from the data, and then let each subclass parse the data. Something like: PythonObject fromString: '< Bone [ "side bone" , IK = True , ( 1.0 , 0.1 , 0.2)

Re: [Pharo-users] Pillar multiline comment

2015-03-09 Thread Offray Vladimir Luna Cárdenas
Hi Peter, El 07/03/15 a las 13:32, Peter Uhnák escribió: Is it possible to create multiline comments in Pillar? For example I want to add code that I used to create a visualization, but I want to show the user only the image (but want to keep the code so I can regenerate if needed). Thanks, Pe

Re: [Pharo-users] Any framework to create a blog over seaside?

2015-03-09 Thread stepharo
If you take pier you get a blog out of the box Le 9/3/15 11:52, Julien Delplanque a écrit : Hi, I wonder if there are existing projects/frameworks to create a blog in pharo? If there are I suppose they use seaside? Regards, Julien

Re: [Pharo-users] Pharo / J - Integration

2015-03-09 Thread Martin Saurer
Hi Torsten To re-implement APL or J capabilities in pure smalltalk is an interesting approach. The problem I see currently is the performance when handling large arrays with thousands or millions of rows and/or columns. During some performance tests I saw that for arrays with a few hundred rows

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

2015-03-09 Thread Offray Vladimir Luna Cárdenas
Hi, Seems pretty impressive. By the way, where did you get your pharo background image and how can I change the default one with this one? Cheers, Offray El 06/03/15 a las 03:21, Torsten Bergmann escribió: Hi Doru, Great job. Was very simple to do in one evening, thanks to GT tools. I l

Re: [Pharo-users] Pillar multiline comment

2015-03-09 Thread stepharo
Because [[[ ]]] is special and if we need some others environments we will keep them for something more important than comments :) Sure I can make a shortcut but I don't like that if there is already something. So my question is why can't I do {{{comment: my multiline comment }}} We a

Re: [Pharo-users] I need to put smalltalkhub down (max 30m)

2015-03-09 Thread stepharo
you can complain now… it *should* be working. I'm not sure but I think the blue color was nicer before :P ;)

Re: [Pharo-users] Pharo /J - Integration

2015-03-09 Thread Martin Saurer
Hi Alexandre Please have look at the video description on youtube. There you will find all the download links as well as instructions (ReadMe.txt) on how to install the Pharo (.mcz) and the J (pre-configured J environment) part. The .mcz file contains all the examples from the video. See www.jsof

Re: [Pharo-users] Pharo / J - Integration

2015-03-09 Thread Martin Saurer
Hi Stef Sorry, I didn't know the OOPAL paper until this evening :) I read through it very quickly, and I think it's a somewhat different approach I have to think about. To me the OOPAL concept looks like a smalltalk language extension, but with smalltalk oriented syntax, that is able to handle

Re: [Pharo-users] I need to put smalltalkhub down (max 30m)

2015-03-09 Thread Esteban Lorenzano
> On 09 Mar 2015, at 17:31, Martin Bähr > wrote: > > Excerpts from Esteban Lorenzano's message of 2015-03-09 15:39:59 +0100: >> you can complain now… it *should* be working. > > so while everyone is having fun with this thread, i thought the phrase "put > down" is used when you have to kill a

[Pharo-users] Dealing with multiple cases of a string while keeping code short and OOP friendly

2015-03-09 Thread kilon alios
So I am parsing strings that represent python types and other custom objects. An example would be '' or '' etc But I dont want to use too many ifTrue , ifFalse and end up with a long method. So I was thinking creating a OrderedCollection that would be 2D , first dimension is the regex that fits

Re: [Pharo-users] I need to put smalltalkhub down (max 30m)

2015-03-09 Thread Martin Bähr
Excerpts from Esteban Lorenzano's message of 2015-03-09 15:39:59 +0100: > you can complain now… it *should* be working. so while everyone is having fun with this thread, i thought the phrase "put down" is used when you have to kill a sick or old animal. had me worried there for a moment... gree

Re: [Pharo-users] I need to put smalltalkhub down (max 30m)

2015-03-09 Thread Tudor Girba
You read my mind, Norbert! Doru p.s. Thanks, Esteban :) On Mon, Mar 9, 2015 at 3:45 PM, Norbert Hartl wrote: > > Am 09.03.2015 um 15:39 schrieb Esteban Lorenzano : > > you can complain now… it *should* be working. > > I'm not sure but I think the blue color was nicer before :P > > Norbert >

Re: [Pharo-users] Pillar multiline comment

2015-03-09 Thread Damien Cassou
Better write something like: [[[render=false ... ]]] and fix pillar to ignore those blocks On Mar 8, 2015 3:55 PM, "Peter Uhnák" wrote: > Sure I can make a shortcut but I don't like that if there is already > something. > > So my question is why can't I do > > {{{comment: > > my > multiline > c

Re: [Pharo-users] pillar latex mode

2015-03-09 Thread Damien Cassou
On Mar 8, 2015 1:22 AM, "stepharo" wrote: > > I do not remember but this is a todo. Someone must have a look at that. Serge was interested in the feature as well

Re: [Pharo-users] Searching package for comment content

2015-03-09 Thread Esteban Lorenzano
I always do: self flag: #todo. “An explanation here” probably not the best… but works. Esteban > On 09 Mar 2015, at 15:55, Andrei Chis wrote: > > Or you can add > > > and then search for methods using the pragma todo: > > > Andrei > > On Mon, Mar 9, 2015 at 3:51 PM, Marcus Denker

Re: [Pharo-users] Searching package for comment content

2015-03-09 Thread Thierry Goubier
Hi Sergio, use the finder, write TODO in the search area, select Source instead of Selectors, and you're set. Thierry 2015-03-09 15:44 GMT+01:00 sergio_101 : > Hi, all. > > Does anyone have any ideas on this? > > I would like to be able to do a quick text search in all classes and > methods in

Re: [Pharo-users] Why `aFileReference asString = aFileReference fullName` is false?

2015-03-09 Thread Sven Van Caekenberghe
The thing before the @ indicates the kind of file system you are on (there are not just disk based files, but virtual in-memory ones, or in-zip ones). > On 09 Mar 2015, at 16:06, Sebastian Sastre > wrote: > > A frequent thing to do is to work with files, so their paths. > > Take the image dir

[Pharo-users] Why `aFileReference asString = aFileReference fullName` is false?

2015-03-09 Thread Sebastian Sastre
A frequent thing to do is to work with files, so their paths. Take the image directory for example: `FileLocator imageDirectory resolve asString` 1) What’s the reason to make `aFileReference asString` to be different to what `aFileReference fullName` answers? 2) What’s the practical use of the

Re: [Pharo-users] I need to put smalltalkhub down (max 30m)

2015-03-09 Thread Ben Coman
On Mon, Mar 9, 2015 at 10:57 PM, Esteban Lorenzano wrote: > basically, I: > > - updated all infrastructure to Pharo 3 (I do not want to let our tools to > become too old) > - added a commit hook mechanism (still need to be tested) > - added a small app to list all projects (which is still not wor

Re: [Pharo-users] I need to put smalltalkhub down (max 30m)

2015-03-09 Thread Esteban Lorenzano
basically, I: - updated all infrastructure to Pharo 3 (I do not want to let our tools to become too old) - added a commit hook mechanism (still need to be tested) - added a small app to list all projects (which is still not working) so… none of the visible changes can be seen now, but if everyth

Re: [Pharo-users] Searching package for comment content

2015-03-09 Thread Andrei Chis
Or you can add and then search for methods using the pragma todo: Andrei On Mon, Mar 9, 2015 at 3:51 PM, Marcus Denker wrote: > > > On 09 Mar 2015, at 15:44, sergio_101 wrote: > > > > Hi, all. > > > > Does anyone have any ideas on this? > > > > I would like to be able to do a quick text sea

Re: [Pharo-users] Searching package for comment content

2015-03-09 Thread Marcus Denker
> On 09 Mar 2015, at 15:44, sergio_101 wrote: > > Hi, all. > > Does anyone have any ideas on this? > > I would like to be able to do a quick text search in all classes and methods > in a package for text. > > for instance, when i see an opportunity for a refactor, i put a comment > someth

Re: [Pharo-users] I need to put smalltalkhub down (max 30m)

2015-03-09 Thread Luc Fabresse
thx Esteban for those hidden but so important things behind the scene ;-) #Luc 2015-03-09 15:39 GMT+01:00 Esteban Lorenzano : > you can complain now… it *should* be working. > > Esteban > > On 09 Mar 2015, at 15:33, Tudor Girba wrote: > > But, I want to complain now. Can I not? Pleaaaseee ... :

Re: [Pharo-users] Rép: Re: I need to put smalltalkhub down (max 30m)

2015-03-09 Thread kilon alios
yes but they complain about your surprise and you complain about not complaining , so with all do respect, I have to complain about your complaining , makes my complaining difficult. On Mon, Mar 9, 2015 at 4:40 PM, julien wrote: > I m not complaining i m just surprised :p > > Norbert Hartl a éc

Re: [Pharo-users] I need to put smalltalkhub down (max 30m)

2015-03-09 Thread Norbert Hartl
> Am 09.03.2015 um 15:39 schrieb Esteban Lorenzano : > > you can complain now… it *should* be working. > I'm not sure but I think the blue color was nicer before :P Norbert > >> On 09 Mar 2015, at 15:33, Tudor Girba > > wrote: >> >> But, I want to complain now.

[Pharo-users] Searching package for comment content

2015-03-09 Thread sergio_101
Hi, all. Does anyone have any ideas on this? I would like to be able to do a quick text search in all classes and methods in a package for text. for instance, when i see an opportunity for a refactor, i put a comment something like: "TODO: break this method apart here" and move on.. it would

Re: [Pharo-users] I need to put smalltalkhub down (max 30m)

2015-03-09 Thread Esteban Lorenzano
you can complain now… it *should* be working. Esteban > On 09 Mar 2015, at 15:33, Tudor Girba wrote: > > But, I want to complain now. Can I not? Pleaaaseee ... :) > > Doru > > On Mon, Mar 9, 2015 at 3:02 PM, Norbert Hartl > wrote: > As it is with live changes in i

[Pharo-users] Rép: Re: I need to put smalltalkhub down (max 30m)

2015-03-09 Thread julien
I m not complaining i m just surprised :p Norbert Hartl a écrit : >As it is with live changes in infrastructure. Everyone should take a deep >breath and stay calm _unless_ the person in charge tells that he finished his >work. Complain afterwards!! > >Norbert > >> Am 09.03.2015 um 14:56 schrie

Re: [Pharo-users] I need to put smalltalkhub down (max 30m)

2015-03-09 Thread Tudor Girba
But, I want to complain now. Can I not? Pleaaaseee ... :) Doru On Mon, Mar 9, 2015 at 3:02 PM, Norbert Hartl wrote: > As it is with live changes in infrastructure. Everyone should take a deep > breath and stay calm _unless_ the person in charge tells that he finished > his work. Complain afterw

Re: [Pharo-users] I need to put smalltalkhub down (max 30m)

2015-03-09 Thread Norbert Hartl
As it is with live changes in infrastructure. Everyone should take a deep breath and stay calm _unless_ the person in charge tells that he finished his work. Complain afterwards!! Norbert > Am 09.03.2015 um 14:56 schrieb Julien Delplanque : > > All my projects disappears should I be worried? >

Re: [Pharo-users] I need to put smalltalkhub down (max 30m)

2015-03-09 Thread Julien Delplanque
All my projects disappears should I be worried? On 09/03/15 14:45, Esteban Lorenzano wrote: > no, not yet… just wait a few minutes more please. > >> On 09 Mar 2015, at 14:43, Esteban Lorenzano wrote: >> >> ok… looks like it is back… but no promises :P >> >> Esteban >> >>> On 09 Mar 2015, at 14:13

Re: [Pharo-users] I need to put smalltalkhub down (max 30m)

2015-03-09 Thread Esteban Lorenzano
no, not yet… just wait a few minutes more please. > On 09 Mar 2015, at 14:43, Esteban Lorenzano wrote: > > ok… looks like it is back… but no promises :P > > Esteban > >> On 09 Mar 2015, at 14:13, Esteban Lorenzano wrote: >> >> Hi, >> >> I need to apply an update… nothing that you will actu

Re: [Pharo-users] I need to put smalltalkhub down (max 30m)

2015-03-09 Thread Esteban Lorenzano
ok… looks like it is back… but no promises :P Esteban > On 09 Mar 2015, at 14:13, Esteban Lorenzano wrote: > > Hi, > > I need to apply an update… nothing that you will actually see, but is needed > :) > I will put it down at 13:30 UTC (14:30 here in continental Europe, 10:30 in > Argentina

[Pharo-users] I need to put smalltalkhub down (max 30m)

2015-03-09 Thread Esteban Lorenzano
Hi, I need to apply an update… nothing that you will actually see, but is needed :) I will put it down at 13:30 UTC (14:30 here in continental Europe, 10:30 in Argentina and I don’t know the rest of the world… but a hint: is in 15min :P ) Esteban

Re: [Pharo-users] GitFileTree Version Numbering

2015-03-09 Thread Martin Bähr
Excerpts from Thierry Goubier's message of 2015-03-09 13:13:23 +0100: > There is technical limitations in adding that information (or using it). I > did use it a long time ago at the beginning of gitfiletree, but it was > prohibitively slow, even on small git repositories. i find this puzzling. wh

Re: [Pharo-users] GitFileTree Version Numbering

2015-03-09 Thread Thierry Goubier
2015-03-09 11:39 GMT+01:00 Sean P. DeNigris : > Martin Bähr wrote > >> It takes ages to scan the version metadata contained in the git > >> repository. > > why is that? > > Also, this is a copy operation, so we already have the version number from > the mcz! Why can't we just use that? > No probl

[Pharo-users] Any framework to create a blog over seaside?

2015-03-09 Thread Julien Delplanque
Hi, I wonder if there are existing projects/frameworks to create a blog in pharo? If there are I suppose they use seaside? Regards, Julien

Re: [Pharo-users] GitFileTree Version Numbering

2015-03-09 Thread Sean P. DeNigris
Martin Bähr wrote >> It takes ages to scan the version metadata contained in the git >> repository. > why is that? Also, this is a copy operation, so we already have the version number from the mcz! Why can't we just use that? - Cheers, Sean -- View this message in context: http://forum.wo

Re: [Pharo-users] Notebook/slideshow morph

2015-03-09 Thread Sean P. DeNigris
Torsten Bergmann wrote > Would be a nice addition to recreate some of the presentation and > multimedia features known from Squeak now also in Pharo. Please x 100!!! I will help :) - Cheers, Sean -- View this message in context: http://forum.world.st/Notebook-slideshow-morph-tp4810579p4810

Re: [Pharo-users] smaller configurations vs groups [was Re: Pillar and GT tools in Pharo4]

2015-03-09 Thread Tudor Girba
Hi, On Mon, Mar 9, 2015 at 10:06 AM, Stephan Eggermont wrote: > On 08/03/15 13:24, Tudor Girba wrote: > >> I summarize below why I think fine grained configurations should be >> preferred to groups. >> > > Configurations are both about dependencies and how to make something work > together, and

[Pharo-users] [Pharo News] Article Series: Concerning Pharo

2015-03-09 Thread Marcus Denker
Article Series: Concerning Pharo http://pharo.org/news/concerning-pharo Online: Now. Marcus

Re: [Pharo-users] smaller configurations vs groups [was Re: Pillar and GT tools in Pharo4]

2015-03-09 Thread Stephan Eggermont
On 08/03/15 13:24, Tudor Girba wrote: I summarize below why I think fine grained configurations should be preferred to groups. Configurations are both about dependencies and how to make something work together, and about how something is to be used. The granularity should be so, that changes

[Pharo-users] Notebook/slideshow morph

2015-03-09 Thread Torsten Bergmann
>So I imported my old code (it was one week of test first experience). >I can open a slideshow, create page, drop morph on it, mark a page as >template and navigate. Is there a way to save and reload the slide show. Like in the good old squeak days (TM) with a *.morph file? Would be a nice addi