Re: [Pharo-project] Is this possible with XMLWriter?

2013-02-27 Thread Gastón Dall' Oglio
And in case anyone is not aware, this video shows how to manipulate xml: http://www.pharocasts.com/2010/08/see-how-to-get-data-from-url-parse-xml.html 2013/2/27 Sven Van Caekenberghe > > On 27 Feb 2013, at 22:17, stephane ducasse > wrote: > > > +1 > > > > Mariano I'm about to migrate the XMLP

Re: [Pharo-project] Is this possible with XMLWriter?

2013-02-27 Thread Gastón Dall' Oglio
ups! I feel an idiot. The problem was trying to do these manipulations with XMLWriter class instead of the DOM itself. 2013/2/27 stephane ducasse > +1 > > Mariano I'm about to migrate the XMLParser to SmalltalkHub and I know that > you have a DOMTree and a saxAPI > So with the DOMTree I do not s

Re: [Pharo-project] Is this possible with XMLWriter?

2013-02-27 Thread Gastón Dall' Oglio
add another siblings nodes of first one, its contents will be also written in the stream immediately, and you no longer have a chance to add more children to the first node. 2013/2/27 Esteban A. Maringolo > 2013/2/27 Gastón Dall' Oglio : > > Yes I suspected that this was what you

Re: [Pharo-project] Is this possible with XMLWriter?

2013-02-27 Thread Gastón Dall' Oglio
Yes I suspected that this was what you wanted to say. Regards. 2013/2/27 Mariano Martinez Peck > > > On Wed, Feb 27, 2013 at 4:24 PM, Gastón Dall' Oglio < > gaston.dallog...@gmail.com> wrote: > >> Hi Mariano. >> >> Some like this: >> >

Re: [Pharo-project] Is this possible with XMLWriter?

2013-02-27 Thread Gastón Dall&#x27; Oglio
Hi Mariano. Some like this: xmlWriter := XMLWriter new writeWith: [ :writer | writer enablePrettyPrinting; xml; comment: 'Generated from Pharo.'. writer tag: 'root' with: [ writer tag: 'parent1' with: [ writer tag: 'child1' with: 'grrr'. writer tag: 'child2' with: 'grrr' ]. writer tag: 'parent2'

Re: [Pharo-project] Twibbon

2013-02-18 Thread Gastón Dall&#x27; Oglio
I think exactly the opposite :) Have to make room for curiosity, why I said I prefer the pharo picture (that you put rigth now in twibbon) to the logo that says Pharo Project. Why? because that way it is more likely that someone asks, "hey it's that logo in your picture"? Then you will say, "oh yes

Re: [Pharo-project] SmalltalkHub

2013-02-17 Thread Gastón Dall&#x27; Oglio
I seem to no, see http://code.google.com/p/smalltalk-hub/issues/detail?id=7 2013/2/17 Stéphane Ducasse > Is there a way to remove a file from the repository? > > Stef > >

Re: [Pharo-project] Twibbon

2013-02-17 Thread Gastón Dall&#x27; Oglio
All png images from this zip are transparent, but 512x512 pixels, just resize them to that you need. 2013/2/17 Sean P. DeNigris > Gastón Dall' Oglio wrote > > But, what such to use one picture from pharo-logos.zip [1], like > > icone-pharo-1.png. > > Great ide

Re: [Pharo-project] Twibbon

2013-02-17 Thread Gastón Dall&#x27; Oglio
Good :) But, what such to use one picture from pharo-logos.zip [1], like icone-pharo-1.png. [1] http://www.pharo-project.org/pharo-download/media-files 2013/2/16 Sean P. DeNigris > http://twibbon.com/support/pharo-smalltalk > > > > -- > View this message in context: http://forum.world.st/Twibbo

Re: [Pharo-project] New Issue Tracker

2013-02-09 Thread Gastón Dall&#x27; Oglio
, 9 de febrero de 2013, Gastón Dall' Oglio escribió: > Hello. > > FYI, Redmine is a rewrite in Ruby of Trac (programmed in Python), with > several improvements. Later, some developers from Redmine made a fork of it > named ChiliProject, to go more faster in development. I recommend &

Re: [Pharo-project] New Issue Tracker

2013-02-09 Thread Gastón Dall&#x27; Oglio
Hello. FYI, Redmine is a rewrite in Ruby of Trac (programmed in Python), with several improvements. Later, some developers from Redmine made a fork of it named ChiliProject, to go more faster in development. I recommend ChiliProject over Redmine. ChiliProject have all characteristics that you list

Re: [Pharo-project] broken link beta image in pharo site

2012-12-21 Thread Gastón Dall&#x27; Oglio
Thanks Marcus. 2012/12/21 Marcus Denker > > On Dec 20, 2012, at 7:19 PM, Gastón Dall' Oglio < > gaston.dallog...@gmail.com> wrote: > > Hello. > > In Pharo web site the link to the latest beta image is broken. > > Go to http://www.pharo-project.org/pharo-d

Re: [Pharo-project] broken link beta image in pharo site

2012-12-20 Thread Gastón Dall&#x27; Oglio
mmm I just saw the Pavel's email "wrong ci download scripts"... sorry for he noise. 2012/12/20 Gastón Dall' Oglio > Hello. > > In Pharo web site the link to the latest beta image is broken. > > Go to http://www.pharo-project.org/pharo-download/beta-2-0 and li

[Pharo-project] broken link beta image in pharo site

2012-12-20 Thread Gastón Dall&#x27; Oglio
Hello. In Pharo web site the link to the latest beta image is broken. Go to http://www.pharo-project.org/pharo-download/beta-2-0 and link "Pharo 2.0 one-click" point to http://ci.inria.fr/pharo/view/Pharo%202.0/job/Pharo-2.0/lastSuccessfulBuild/artifact/Pharo-2.0-one-click.zip May be that the li

Re: [Pharo-project] Sending email with Pharo

2012-09-17 Thread Gastón Dall&#x27; Oglio
Hello Hilaire. Zodiac? I used zodiac to send email from contact forms in web sites made with Seaside, and works fine. Although sometimes they go to spam :/ See http://stackoverflow.com/questions/12293670/zodiac-mail-sending-in-pharo-smalltalk But, instead to use ZdcSecureSMTPClient class>>sendUsi

Re: [Pharo-project] What happens with Warning when running in headless image (2.0)?

2012-09-03 Thread Gastón Dall&#x27; Oglio
I evaluate Deprecation compileAll and later Compiler recompileAll and no changes. 2012/8/31 Igor Stasenko > On 31 August 2012 23:22, Gastón Dall' Oglio > wrote: > > I created two bug entries: > > http://code.google.com/p/pharo/issues/detail?id=6624 > > http://c

Re: [Pharo-project] What happens with Warning when running in headless image (2.0)?

2012-08-31 Thread Gastón Dall&#x27; Oglio
I created two bug entries: http://code.google.com/p/pharo/issues/detail?id=6624 http://code.google.com/p/pharo/issues/detail?id=6625 2012/8/31 Gastón Dall' Oglio > Ok thanks for reply anyway. Really I don't have hurry (I fixed that with a > horrible code I wrote), I just want r

Re: [Pharo-project] Pharo summer is 14557 or 14457?

2012-08-31 Thread Gastón Dall&#x27; Oglio
;), thanks you Esteban for your work. Bernardo, I guess that is not necessary open an issue for this little typo. Regards. 2012/8/31 Esteban Lorenzano > oops! > I will fix it :P > > thanks, > Esteban > > On Aug 31, 2012, at 4:40 PM, Gastón Dall' Oglio < > g

Re: [Pharo-project] What happens with Warning when running in headless image (2.0)?

2012-08-31 Thread Gastón Dall&#x27; Oglio
Ok thanks for reply anyway. Really I don't have hurry (I fixed that with a horrible code I wrote), I just want report that issue. 2012/8/31 Igor Stasenko > On 31 August 2012 15:24, Gastón Dall' Oglio > wrote: > > Hi Igor. > > > > Here, in a linux box, I guess

[Pharo-project] Pharo summer is 14557 or 14457?

2012-08-31 Thread Gastón Dall&#x27; Oglio
Hi. I download Pharo-1.4-14557-OneClick.zip (named Pharo Summer in Pharo website), but this image in "System -> About..." dialog is showing Latest update: #14457. But in CI lastest is 1.4 #14459. Maybe it is a typo in zip file name? Another little type, in Linux script of Pharo-1.3-13328-OneClick

Re: [Pharo-project] What happens with Warning when running in headless image (2.0)?

2012-08-31 Thread Gastón Dall&#x27; Oglio
Somebody send recently similar mail to pharo-user list "[Pharo-users] HowTo not show a Debugger when calling deprecated methods in 1.4?" 2012/8/31 Gastón Dall' Oglio > Hi Igor. > > Here, in a linux box, I guess that this warning occurs and raise the > NonInteractive

Re: [Pharo-project] What happens with Warning when running in headless image (2.0)?

2012-08-31 Thread Gastón Dall&#x27; Oglio
ure if it prints something on stdout.. > it could be that it simply ignored and continues running the stuff. > > On 31 August 2012 14:11, Gastón Dall' Oglio > wrote: > > Hello. > > > > I install Seaside in a Pharo 1.4 summer image. Then I run it in headless

Re: [Pharo-project] What happens with Warning when running in headless image (2.0)?

2012-08-31 Thread Gastón Dall&#x27; Oglio
Hello. I install Seaside in a Pharo 1.4 summer image. Then I run it in headless from console and I go to the /status app, and a "MessageNotUnderstood: NonInteractiveUIManager>>openDebuggerOn:context:label:contents:fullView:" exception occurs and the vm close. Then I run this image in gui and an "

Re: [Pharo-project] Log framework

2012-05-29 Thread Gastón Dall&#x27; Oglio
Hi. Today I saw this in pharo news http://code.google.com/p/nagare-logger/ and previusly this thread http://forum.world.st/I-would-really-like-to-get-a-structured-logging-framework-for-Pharo-td4630648.html Early of my last project I saw those (maybe page is obsolete) http://book.pharo-project.org

Re: [Pharo-project] Bug in Pharo-1.4-14438-OneClick.sh

2012-05-22 Thread Gastón Dall&#x27; Oglio
Hi. Another little fix. In the linux I use, zenity ignore the directory change in Pharo-1.4 one-click.sh (cd "$RESOURCES" ), showing my home directory for default when open the dialog. Maybe in Ubuntu work fine, but I don't have one for test. I changed de logic, putting a value in variable "image

Re: [Pharo-project] Adding hooks for well known events in morphic

2012-05-03 Thread Gastón Dall&#x27; Oglio
2012/5/2 Stéphane Ducasse > > I do not see the difference between signals and event. For that reason, I meant about possibility of reuse this existing implementation, if it was useful for your objectives of course. > And yes we look at the code, it is not a really good idea to use > thisConte

Re: [Pharo-project] OSProcess error in 1.3

2012-05-02 Thread Gastón Dall&#x27; Oglio
Hi David. I send some days ago a mail reporting "process never is completed" in Windows, and I propose similar steps to reproduce, see: http://forum.world.st/OSProcess-is-process-done-tp4569088p4570740.html Two notes about this previous mail: Two notes about this previous mail: I say "the image h

Re: [Pharo-project] Artefact - a PDF framework

2012-05-02 Thread Gastón Dall&#x27; Oglio
And in the last page of document says: "Next... Port to VA, GS, Pharo, Squeak (easy for Report4PDF, harder for Smalltalk4PDF)" 2012/5/2 Gastón Dall' Oglio > Sorry, I mean to capabilities of Report4PDF. > > > 2012/5/2 Gastón Dall' Oglio > >> Hi. >&

Re: [Pharo-project] Artefact - a PDF framework

2012-05-02 Thread Gastón Dall&#x27; Oglio
Sorry, I mean to capabilities of Report4PDF. 2012/5/2 Gastón Dall' Oglio > Hi. > > Following the links in Bob blog, I get a pdf document showing capabilities > of PDF4Smalltalk: > > http://www.stic.st/conferences/stic12/stic12-abstracts/pdf4smalltalk-based-report

Re: [Pharo-project] Artefact - a PDF framework

2012-05-02 Thread Gastón Dall&#x27; Oglio
Hi. Following the links in Bob blog, I get a pdf document showing capabilities of PDF4Smalltalk: http://www.stic.st/conferences/stic12/stic12-abstracts/pdf4smalltalk-based-report-framework/ Regards. 2012/5/2 Christian Haider > > Von: pharo-project-boun...@lists.gforge.inria.fr > [mailto:pharo-

Re: [Pharo-project] Adding hooks for well known events in morphic

2012-04-28 Thread Gastón Dall&#x27; Oglio
Hi Guillermo. When you combine these triggers with ads (as in your example), I see an analogy with the model of qt ui, see: http://qt-project.org/doc/qt-4.8/signalsandslots.html In effect: "A signal is emitted when a particular event occurs." -> A Announcement is send when a particular event (tri

Re: [Pharo-project] VNC for pharo 1.3 or 1.4

2012-04-27 Thread Gastón Dall&#x27; Oglio
Hi. Look that you can do with a front-end for xpra, named Win Switch: http://winswitch.org/video/ Regards. El 27 de abril de 2012 17:09, Paul DeBruicker escribió: > > Yanni Chiu wrote > > > > On 26/04/12 10:45 PM, Paul DeBruicker wrote: > >> You could also consider using 'xrpa' which is like s

Re: [Pharo-project] remotely sharing a pharo screen

2012-04-27 Thread Gastón Dall&#x27; Oglio
Hi Dennis. Interesting!! When I read the Bernat post I thought "mmm seem that is like screen command", and yes: http://xpra.org/ Very useful for remote (UI) support. Better yet, would be good to connect to a server on the Internet, similar to teamviewer. it costs nothing to dream :) Regards. El

Re: [Pharo-project] Artefact - a PDF framework

2012-04-25 Thread Gastón Dall&#x27; Oglio
and you can use "transposed" for more elegantly :) > * In PDFFormat>>setPortrait and >>setLandscape maybe #defaultSize should > be used instead of #size to get size, because otherwise, two consecutive > #setLandscape result in a portrait size. > > setPortrait > "Set the page in portrait orientati

Re: [Pharo-project] Artefact - a PDF framework

2012-04-25 Thread Gastón Dall&#x27; Oglio
Hi Olivier. Great have a PDF framework! I am a user of this from now :) I saw a little the code, it is very clear. And I send you some comments: * In PDFFormat>>setPortrait and >>setLandscape maybe #defaultSize should be used instead of #size to get size, because otherwise, two consecutive #set

Re: [Pharo-project] One-click Windows comment

2012-04-20 Thread Gastón Dall&#x27; Oglio
Sorry the typo, no /C, only start at beginning. El 20 de abril de 2012 08:52, Gastón Dall' Oglio escribió: > Hi. > > Personally, I hate windows links :) The .bat can be have /C parameter for > automatically close the open windows. Like this: > start "%~dp0\CogVM.exe&quo

Re: [Pharo-project] One-click Windows comment

2012-04-20 Thread Gastón Dall&#x27; Oglio
Hi. Personally, I hate windows links :) The .bat can be have /C parameter for automatically close the open windows. Like this: start "%~dp0\CogVM.exe" "%~dp0\Contents\Resources\Pharo-1.4-one-click.image" Another little fix, the files readme.txt and OneClick.txt have line ending for Unix, and in W

Re: [Pharo-project] OSProcess - is process done?

2012-04-19 Thread Gastón Dall&#x27; Oglio
Forget to say something, if I unload and reload the OSProcess package, then starts working well again. El 19 de abril de 2012 09:27, Gastón Dall' Oglio escribió: > Hi. > > I use OSProcess in Windows (XP and Seven) and I notice that it hang when I > open the image with OSProce

Re: [Pharo-project] OSProcess - is process done?

2012-04-19 Thread Gastón Dall&#x27; Oglio
Hi. I use OSProcess in Windows (XP and Seven) and I notice that it hang when I open the image with OSProcess already loaded. I try in Seaside-3.0.7-OneClick and Pharo-1.4-14438-OneClick, and I get same error. Step to reproduce: 1. Load OSProcess in a clean image. I use this snippet: Gofer new squ

Re: [Pharo-project] [ANN] Dr. Geo 12.04

2012-04-13 Thread Gastón Dall&#x27; Oglio
I installed 32bits lib compat and I get same error. But you don't worry, this is a Sabayon Linux, there aren't many user of it using DrGeo, I guess :) El 13 de abril de 2012 10:07, Hilaire Fernandes escribió: > Very likely > > Hilaire > > Le 13/04/2012 14:56, Gastón Da

Re: [Pharo-project] [ANN] Dr. Geo 12.04

2012-04-13 Thread Gastón Dall&#x27; Oglio
I have a 64bits Linux, maybe I need install 32bits compat libs. I try... El 13 de abril de 2012 09:53, Damien Cassou escribió: > 2012/4/13 Gastón Dall' Oglio : > > But in Linux I can't open running drgeo.sh > > it works for me on Ubuntu 11.10, 32bits processor. >

Re: [Pharo-project] [ANN] Dr. Geo 12.04

2012-04-13 Thread Gastón Dall&#x27; Oglio
Great work Hilaire! But in Linux I can't open running drgeo.sh, I have this error: $ ./drgeo.sh Segmentation fault -1215663840 SmallInteger>? Violación de segmento This is the info of vm shipped with DrGeo.app-12.04.zip: $ ./Contents/Linux-i686/bin/squeak -version 4.0.3-2202 #1 XShm Tue Apr 13

Re: [Pharo-project] Looking for a package to do some statistics in Pharo

2012-03-04 Thread Gastón Dall&#x27; Oglio
El 4 de marzo de 2012 22:38, Igor Stasenko escribió: > 2012/3/5 Gastón Dall' Oglio : > > :) yes it's funny. Maybe in this video is not apreciated, but in projects > > where there are many developers, this presentation of a repository log > give > > a quick vi

Re: [Pharo-project] Looking for a package to do some statistics in Pharo

2012-03-04 Thread Gastón Dall&#x27; Oglio
:) yes it's funny. Maybe in this video is not apreciated, but in projects where there are many developers, this presentation of a repository log give a quick view of the dinamic of work. Regards. El 4 de marzo de 2012 19:11, Igor Stasenko escribió: > 2012/3/3 Gastón Dal

Re: [Pharo-project] Looking for a package to do some statistics in Pharo

2012-03-03 Thread Gastón Dall&#x27; Oglio
El 3 de marzo de 2012 03:24, Schwab,Wilhelm K escribió: > Stef, > > I think our banned troll is back :( > hehe, no no, I lack the intelligence to be a good troll :) I misunderstood what Stef said, I understood that he wanted to make statistics about Pharo, more specifically on the development

Re: [Pharo-project] Looking for a package to do some statistics in Pharo

2012-03-02 Thread Gastón Dall&#x27; Oglio
Hello. mmm that's is some off topic, but if you want see info about development, see you that interesting tool for version control visualization :) http://code.google.com/p/gource/ Regards. El 2 de marzo de 2012 15:12, Stéphane Ducasse escribió: > Hi guys > > I would like to know if there is a

Re: [Pharo-project] Nautilus Refactorings

2012-02-16 Thread Gastón Dall&#x27; Oglio
Hi Benjamin. Nautilus is really cool, congrats! Is possibly extract the methods comments (comments in the first lines of methods)? If possible, when I see a method, in the comment pane added to the current class comment, I want to can see the related comments. Related how? Well... * One posibili

pharo-project@lists.gforge.inria.fr

2012-01-25 Thread Gastón Dall&#x27; Oglio
Hello. Maybe you are interesting too in CoralCDN. See: http://lists.gforge.inria.fr/pipermail/pharo-project/2011-October/055014.html Regards. 2012/1/25 Stéphane Ducasse > thanks a lot Udo. > We really appreciate that. > > I was in contact with nicolas about SmalltalkHub. They were trying to s

pharo-project@lists.gforge.inria.fr

2012-01-18 Thread Gastón Dall&#x27; Oglio
Ohh right, thanks Yanni for the clarification. I was beggining at believe that I 'm crazy, becouse I remembered that some weeks ago I had to load the wrapper in a 1.3 image, and yes, the difference was that it was core :) 2012/1/18 Yanni Chiu > On 17/01/12 4:45 PM, Gastón Dall'

pharo-project@lists.gforge.inria.fr

2012-01-17 Thread Gastón Dall&#x27; Oglio
mmm, in 1.3 its work, I try with the incorrect 1.3 image Sorry for the noise. 2012/1/17 Gastón Dall' Oglio > Hello Johan. > > >> - Pharo 1.4 / ObjectAsMethodWrapper issues: The redirect package was >> written for 1.3, it uses ObjectAsMethodWrapper (i.e. method wrap

pharo-project@lists.gforge.inria.fr

2012-01-17 Thread Gastón Dall&#x27; Oglio
Hello Johan. > - Pharo 1.4 / ObjectAsMethodWrapper issues: The redirect package was > written for 1.3, it uses ObjectAsMethodWrapper (i.e. method wrappers). I > don't know why ObjectAsMethodWrapper (apparently) is no longer in 1.4 but I > would highly recommend including it as it is a very useful

Re: [Pharo-project] Exception logging

2012-01-16 Thread Gastón Dall&#x27; Oglio
Hello Stefan. The error seem there is in the do: block... I try this and works ok: |file| [ file := StandardFileStream fileNamed: 'loglog.txt'. file nextPutAll: 'Start'. [ file nextPutAll: (Compiler evaluate: '55 + 88 poipuiu') asString] on: Error do: [:ex |* 'not ok' inspect* ]. ] ensure: [file

Re: [Pharo-project] Squeaksource mirror

2012-01-16 Thread Gastón Dall&#x27; Oglio
I try load the mirror in the 1.3 image and I get this warning: This package depends on the following classes: ObjectAsMethodWrapper You must resolve these dependencies before you will be able to load these definitions: MRAfterWrapper MRAfterWrapper>>install MRAfterWrapper>>installed MRAfterWrapper

Re: [Pharo-project] New IDE alternative (was Misc. newbie questions)

2012-01-14 Thread Gastón Dall&#x27; Oglio
Hello Blake. I like discuss about Delphi, but I don't say much more here becouse this is a Smalltalk list :) 2012/1/13 blake > Gaston, > > >> This method is for manage the event, not for do something that is really >> part of the model. A Form, no is part of the model. This is similar in VW: >>

Re: [Pharo-project] [ANN] DBXTalk site and mailing list little news

2012-01-13 Thread Gastón Dall&#x27; Oglio
Congratulation for the team!!! A little comment, in the page of OpenDBX the name and link of DBXTalk are bad (SqueakDBX): http://www.linuxnetworks.de/doc/index.php/OpenDBX

Re: [Pharo-project] New IDE alternative (was Misc. newbie questions)

2012-01-13 Thread Gastón Dall&#x27; Oglio
Hello. Let me say first that several year ago I understand that any ambient of Smalltalk is more powerfull that any IDE Delphi for work with object, but this depend of your skills in one enviroment obviously. For that, I'm a more powerful programer in Delphi that in Smalltalk, for misfortune for me

Re: [Pharo-project] New IDE alternative (was Misc. newbie questions)

2012-01-12 Thread Gastón Dall&#x27; Oglio
For your experiments, maybe are you interest in (and maybe you already know) that the GUI implementation of Smalltalk/X is very compatible with to the VisualWork. See: http://live.exept.de/doc/online/english/tools/uipainter/TOP.html 2012/1/12 Stéphane Ducasse > - One model can propose multiple

Re: [Pharo-project] [Seaside] [OT] squeaksource.com is down

2011-10-22 Thread Gastón Dall&#x27; Oglio
gt; > Gofer new > squeaksource: 'MetacelloRepository'; > package: 'ConfigurationOfMetacello'; > load. > (Smalltalk at: #ConfigurationOfMetacello) perform: #load. > > (ConfigurationOfMetacello project version: #stable) load: #('UI'). > > > Saludos. &

Re: [Pharo-project] [Seaside] [OT] squeaksource.com is down

2011-10-22 Thread Gastón Dall&#x27; Oglio
OfMetacello) perform: #load. (ConfigurationOfMetacello project version: #stable) load: #('UI'). Saludos. 2011/10/22 Guillermo Polito > Thank you!!! :D > > Where can we document that?? :/ > > > 2011/10/22 Gastón Dall' Oglio > >> is this http://www.

Re: [Pharo-project] [Seaside] [OT] squeaksource.com is down

2011-10-22 Thread Gastón Dall&#x27; Oglio
is this http://www.dsal.cl/squeaksource/ 2011/10/22 Gastón Dall' Oglio > Chile had a mirror, right? I need only download a few packages now ... > > > 2011/10/22 Mariano Martinez Peck > >> please? >> >> On Sat, Oct 22, 2011 at 4:16 PM, Sebastian Sastre &l

Re: [Pharo-project] [Seaside] [OT] squeaksource.com is down

2011-10-22 Thread Gastón Dall&#x27; Oglio
Chile had a mirror, right? I need only download a few packages now ... 2011/10/22 Mariano Martinez Peck > please? > > On Sat, Oct 22, 2011 at 4:16 PM, Sebastian Sastre < > sebast...@flowingconcept.com> wrote: > >> sorry to bother with this but squeaksource.com is down since yesterday >> afternoo

Re: [Pharo-project] TWM doesn't work without keymappins and keymappings doesn't work

2011-10-20 Thread Gastón Dall&#x27; Oglio
Hello. Maybe this data are help for choose the best combination of keymappings. http://en.wikipedia.org/wiki/Table_of_keyboard_shortcuts 2011/10/20 laurent laffont > cmd + r should not conflict with cmd + shift + r , this should be >>> handled by keymapping... Guillermo ? >>> >> >> Well

Re: [Pharo-project] data set

2011-09-06 Thread Gastón Dall&#x27; Oglio
Possibly the wikipedia database raw is not as useful, so there are efforts in different ways to structure the information it contains. See: http://dbpedia.org/ Gastón. 2011/9/6 Gastón Dall' Oglio > Hello. > > The Wikipedia database? > http://en.wikipedia.org/wiki/Wikipedia:

Re: [Pharo-project] data set

2011-09-06 Thread Gastón Dall&#x27; Oglio
Hello. The Wikipedia database? http://en.wikipedia.org/wiki/Wikipedia:Database_download Gastón. 2011/9/6 Tudor Girba > Thanks everyone for the suggestions. I will try to look into them. > > Cheers, > Doru > > > > On 5 Sep 2011, at 07:04, Lukas Renggli wrote: > > > Stanford has many large graph

Re: [Pharo-project] Web app security

2011-08-08 Thread Gastón Dall&#x27; Oglio
Hi. with a public SmallHarbour (public fork of SeasideHosting - smallharbour.org) > people can upload images that do bad things: change filesystem, run > commands, , users, services... I don't know about freebsd, but I hear about jails and its advantages over chroot. http://www.freebsd.org/

Re: [Pharo-project] TWM auto tile

2011-06-06 Thread Gastón Dall&#x27; Oglio
lingWM layoutStrategyClassName. TilingWM layoutStrategyClassName: #TWMHorizontalLayoutStrategy. *{WindowOpened. WindowClosed} do: [:annClass| ** ** testWorld announcer ** ** on: annClass * * do: [:ann| windowManager ifNotNil: [windowManager tileLastUsedWindows]]].* 2011/6/6 Gastón Dall' Oglio > Gr

Re: [Pharo-project] TWM auto tile

2011-06-06 Thread Gastón Dall&#x27; Oglio
Great! very very usefull!!! And the tests was passed: 84 run, 81 passes, 3 expected failures, 0 failures, 0 errors, 0 unexpected passes Pharo1.3a Latest update: #13213 2011/6/6 laurent laffont > I've just discovered that I can write this hacky stuff: > > {WindowOpened. WindowClosed} do: [:annCl

Re: [Pharo-project] SimpleWebDoc

2011-06-02 Thread Gastón Dall&#x27; Oglio
ok, thanks 2011/6/2 Stéphane Ducasse > Better focus on the one developed by camillo bruni and that we should put > online when he is back from Japan. > > Stef > > On Jun 2, 2011, at 8:31 PM, Gastón Dall' Oglio wrote: > > > What about the current state

[Pharo-project] SimpleWebDoc

2011-06-02 Thread Gastón Dall&#x27; Oglio
What about the current state of http://www.squeaksource.com/SimpleWebDoc.html ?

Re: [Pharo-project] creating KOTDC

2011-06-02 Thread Gastón Dall&#x27; Oglio
gt;> >> >> On Wed, Jun 1, 2011 at 12:34 PM, laurent laffont < >> laurent.laff...@gmail.com> wrote: >> >>> + 1, and put contents in the Pharo CollaborActive book :) >> >> >> And to HelpSystem! >> > I don't know what this imp

Re: [Pharo-project] Fwd: Background Changer

2011-06-01 Thread Gastón Dall&#x27; Oglio
great :) something that occurs to me that you could add is the ability to automatically change the background image among some preset time to time. Take a look at: http://www.squeaksource.com/Scheduler.html 2011/6/1 Gastón Dall' Oglio > Now it's working, thanks. I try it later. &

Re: [Pharo-project] Fwd: Background Changer

2011-06-01 Thread Gastón Dall&#x27; Oglio
oad. > Greetings, > Daniel Galdames G. > > On Wed, Jun 1, 2011 at 10:56 AM, Alexandre Bergel > wrote: > >> in case of >> >> Begin forwarded message: >> >> *From: *Gastón Dall' Oglio >> *Date: *1 June 2011 10:47:28 GMT-04:00 >> *To: *

[Pharo-project] creating KOTDC

2011-06-01 Thread Gastón Dall&#x27; Oglio
What do you think about creating this?: *Know Of The Day Contest - One Day One Know Rules Each day a not known project is elected. Each day the know will be readed and the project know for more people.* In reality this would not be a contest (which would not be the criterion for selecting the wi

Re: [Pharo-project] Fwd: Background Changer

2011-06-01 Thread Gastón Dall&#x27; Oglio
Lemuus or Alexandre, I get an error when I connect to the repository, you could check it? I want to try! Thanks. 2011/5/25 Mariano Martinez Peck > nice tool :) > I always put backgrounds. > > > On Wed, May 25, 2011 at 5:36 PM, Alexandre Bergel > wrote: > >> FYI >> >> Begin forwarded message: >>

Re: [Pharo-project] TilingWM - layout policies

2011-05-31 Thread Gastón Dall&#x27; Oglio
Great! Perhaps a pattern strategy can be used also for filtering windows, for example if you want to include or not minimized, or writing complex filters like "all windows whose title includes 'Project X'". 2011/5/31 laurent laffont > Thanks to Stefan, Serge, Patrick and Estelle now you can cho

Re: [Pharo-project] TilingWM improvements

2011-05-31 Thread Gastón Dall&#x27; Oglio
; Yes, I see, thanks. >> >> >>> >>> There's a first shot of GUI controls for world snapshot / navigation but >>> it needs more work to be intuitive. >>> >>> >> There are many new features, it is time to make a new scree

Re: [Pharo-project] [squeak-dev] Fwd: usability of Pharo and Squeak

2011-05-31 Thread Gastón Dall&#x27; Oglio
Please, just try TWM now! It may not be the best, but it works and progresses. 2011/5/31 Torsten Bergmann > Igor Stasenko > >window manager can't prevents windows from clutter. > >the real solution is to change the workflow to not open that many windows. > > With more than 20 windows the TWM but

Re: [Pharo-project] A radical proposal (to cut down dead code)

2011-05-28 Thread Gastón Dall&#x27; Oglio
Hello. I do not know about Torch, Moose, and related tools, and I even as a novice in the art of smalltalk, I will tell an idea. If it seems very silly then simply discarded:) I also believe that sending information on that part of the system we use is vital for you to make any decisions with less

Re: [Pharo-project] TilingWM improvements

2011-05-28 Thread Gastón Dall&#x27; Oglio
hehehe "see new version de la barra" is "see new version of the bar", in Spanglish :) 2011/5/28 Gastón Dall' Oglio > Laurent, coincidere change this method (o part of): > > TilingWM>>newTopWindowBoundsInArea: aBlock > SystemWindow topWindow bounds: (

[Pharo-project] TilingWM improvements

2011-05-28 Thread Gastón Dall&#x27; Oglio
Laurent, coincidere change this method (o part of): TilingWM>>newTopWindowBoundsInArea: aBlock SystemWindow topWindow bounds: (aBlock value: world clearArea). to this one: TilingWM>>newTopWindowBoundsInArea: aBlock | topWindow | (topWindow := SystemWindow topWindow) isMaximized ifTrue: [ topWind

Re: [Pharo-project] Tiling windows

2011-05-28 Thread Gastón Dall&#x27; Oglio
Thanks. If there are more ideas and I can encode (and test:), I will send them to you. 2011/5/28 laurent laffont > > > > 2011/5/28 Gastón Dall' Oglio > >> Well, I coded 2 test, that's something: ( >> Laurent, at this point both my changes in your work must

Re: [Pharo-project] Tiling windows

2011-05-27 Thread Gastón Dall&#x27; Oglio
hanks ;) 2011/5/27 laurent laffont > > 2011/5/27 Gastón Dall' Oglio > >> version 11:Added screenshot of bounding of visible windows >> >> test comming soon, give some time :) >> > > > No problem. Tell me when it's ready I will check & m

Re: [Pharo-project] Tiling windows

2011-05-27 Thread Gastón Dall&#x27; Oglio
version 11:Added screenshot of bounding of visible windows test comming soon, give some time :) 2011/5/27 Gastón Dall' Oglio > Ohhh look good and simple! I would suggest you use these renovated, but > it's too late, and also do not know if there may be some licensi

Re: [Pharo-project] Tiling windows

2011-05-27 Thread Gastón Dall&#x27; Oglio
/27 laurent laffont > >> Now added top window placement à la OptimizeLayout. >> >> Need to find nice icons. Someone ? >> >> Laurent. >> >> >> >> 2011/5/26 Gastón Dall' Oglio >> >>> :) >>> >>> >>&

Re: [Pharo-project] Tiling windows

2011-05-26 Thread Gastón Dall&#x27; Oglio
: http://magaloma.blogspot.com/ > Developer group: http://cara74.seasidehosting.st > > > > 2011/5/26 Gastón Dall' Oglio > >> >> 2011/5/26 laurent laffont >> >>> 2011/5/26 Gastón Dall' Oglio >>> >>>> >>>> >>>

Re: [Pharo-project] Tiling windows

2011-05-26 Thread Gastón Dall&#x27; Oglio
2011/5/26 laurent laffont > 2011/5/26 Gastón Dall' Oglio > >> >> >> 2011/5/26 laurent laffont >> >>> Gastòn, >>> >>> I've downloaded the new version - thanks a lot for contributing, it >>> brings fun :) >

Re: [Pharo-project] Tiling windows

2011-05-26 Thread Gastón Dall&#x27; Oglio
example. > > I've merge some of your changes in TWM-LaurentLaffont.5 > :) > > > Laurent Laffont - @lolgzs <http://twitter.com/#!/lolgzs> > > Pharo Smalltalk Screencasts: http://www.pharocasts.com/ > Blog: http://magaloma.blogspot.com/ > Developer group:

Re: [Pharo-project] Tiling windows

2011-05-25 Thread Gastón Dall&#x27; Oglio
2011/5/25 laurent laffont > 2011/5/25 Gastón Dall' Oglio > >> Excelent! >> >> IMHO, it's better that's not integrated to TaskBarMorph, lets it free :) >> For example, click in unused space of the TWMBar and you can move it >> around you

Re: [Pharo-project] Tiling windows

2011-05-24 Thread Gastón Dall&#x27; Oglio
on because now we get excited. > > Stef > > On May 24, 2011, at 8:51 AM, laurent laffont wrote: > > > > > > > 2011/5/24 Gastón Dall' Oglio > > Laurent and corious :) > > > > I add some TasklistMorph behavior. With the open list (cmd-rigth

Re: [Pharo-project] Tiling windows

2011-05-23 Thread Gastón Dall&#x27; Oglio
ter ** The cmd-b work in 1.2.1, in 1.3 you have to change TasklistMorph>>keyStroke: because I use OBSystemBrowser class by way of example and therefore does not perform properly filtered. 2011/5/23 laurent laffont > 2011/5/23 Gastón Dall' Oglio > >> Laurent, I attached

Re: [Pharo-project] Tiling windows

2011-05-23 Thread Gastón Dall&#x27; Oglio
my image and I was forced to kill it. > > 2011/5/23 Gastón Dall' Oglio > >> Laurent, I attached a package I've added some improvements to your work, I >> have found useful. Of course I am not knowledgeable about morph, just added >> some and perhaps can serve as

Re: [Pharo-project] ^ character in ubuntu

2010-10-20 Thread Gastón Dall&#x27; Oglio
sorry, I said: ...can be used for *ê* for example, pressing one and then the "e". * * 2010/10/21 Gastón Dall' Oglio > Hello. > > I press the key twice "^" and then just enter it in the editor... I think > this is the correct behavior, because this key can be

Re: [Pharo-project] ^ character in ubuntu

2010-10-20 Thread Gastón Dall&#x27; Oglio
Hello. I press the key twice "^" and then just enter it in the editor... I think this is the correct behavior, because this key can be used for "e" for example, pressing one and then the "e". Saludos :) 2010/10/20 Diogenes Moreira > joya.. thank you.. > > On 10/20/10, Mariano Martinez Peck wr